:root {
	--primary: #004B84;
	--secondary: #83B3DF;
	--pink: #D07989;
	--color-base: #A19E9D;
}

@font-face {
	font-family: 'Verlag';
	src: url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Light.otf');
	src: url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Light.otf?#iefix') format('embedded-opentype'),
		url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Light.woff') format('woff'),
		url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Verlag';
	src: url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Bold.otf');
	src: url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Bold.otf?#iefix') format('embedded-opentype'),
		url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Bold.woff') format('woff'),
		url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Verlag Book';
	src: url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Book.otf');
	src: url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Book.otf?#iefix') format('embedded-opentype'),
		url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Book.woff') format('woff'),
		url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Book.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Verlag Black';
	src: url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Black.otf');
	src: url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Black.otf?#iefix') format('embedded-opentype'),
		url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Black.woff') format('woff'),
		url('https://ruletadelassonrisas.com/assets/fonts/Verlag-Black.ttf') format('truetype');
	font-weight: bolder;
	font-style: normal;
}

* {
	font-family: 'Verlag', sans-serif;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

a:hover {
	text-decoration: none;
}

img {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	pointer-events: none;
}

html,
body {
	height: 100% !important;
}

header {
	display: flex;
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	margin-bottom: 20px !important;
	border-bottom: 1px solid #ecf0f1;
}

footer {
	background-color: white;
	margin-top: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Verlag Black', sans-serif;
}

input[type="tel"],
input[type="email"],
input[type="text"] {
	font-weight: bold;
	font-size: 16px;
	padding: 20px 12px;
	-moz-user-select: unset !important;
	-webkit-user-select: unset !important;
	-ms-user-select: unset !important;
	user-select: unset !important;
}

input[type="text"]::-webkit-input-placeholder {
	color: var(--color-base);
}

input[type="text"]:-moz-placeholder {
	/* Firefox 18- */
	color: var(--color-base);
}

input[type="text"]::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--color-base);
}

input[type="text"]:-ms-input-placeholder {
	color: var(--color-base);
}

input[type="tel"]::-webkit-input-placeholder {
	color: var(--color-base);
}

input[type="tel"]:-moz-placeholder {
	/* Firefox 18- */
	color: var(--color-base);
}

input[type="tel"]::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--color-base);
}

input[type="tel"]:-ms-input-placeholder {
	color: var(--color-base);
}

input[type="email"]::-webkit-input-placeholder {
	color: var(--color-base);
}

input[type="email"]:-moz-placeholder {
	/* Firefox 18- */
	color: var(--color-base);
}

input[type="email"]::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--color-base);
}

input[type="email"]:-ms-input-placeholder {
	color: var(--color-base);
}

#modal-error .modal-title,
#modal-error .modal-body {
	color: white;
}

.main.wrapper {
	background-color: white;
	min-height: 100%;
}

.form-group {
	position: relative;
	margin-bottom: 20px;
}

.error {
	position: absolute;
	display: block;
	background-color: var(--pink);
	padding: 2px 10px;
	border: 1px solid transparent;
	border-radius: 5px;
	z-index: 99;
	color: white;
	bottom: -22px;
	transition: .5s ease;
}

.error::after {
	content: " ";
	z-index: 10;
	top: -16px;
	left: 10px;
	border: solid transparent;
	height: 0;
	width: 0;
	position: absolute;
	border-width: 8px;
	border-bottom-color: var(--pink);
	pointer-events: none;
}

.container-fluid {
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	padding-right: 30px;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}

header .session-info {
	margin-top: 0px;
	background-color: white;
	display: flex;
	align-items: center;
	border-radius: 5px;
	max-height: 40px;
	z-index: 9999999;
}

header .session-info span svg {
	width: 22px;
	margin-right: 5px;
}

header .session-info span svg path {
	fill: var(--secondary);
}

header .session-info span.fname {
	color: var(--secondary);
	padding: 0px 15px;
	font-weight: bold;
	font-style: italic;
	display: flex;
	align-items: center;
	align-content: center;
	white-space: nowrap;
}

header .session-info a.btn-logout {
	background-color: var(--secondary);
	padding: 5px 15px;
	width: 100%;
	height: 100%;
	display: flex;
	align-content: center;
	align-items: center;
	color: white;
	font-weight: bolder;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	transition: .5s ease;
	border-color: var(--secondary);
	border-width: 1px;
	border-style: solid;
}

header .session-info a.btn-logout:hover {
	color: var(--secondary);
	background-color: white;
	border-color: var(--secondary);
}


.caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 2px;
	vertical-align: middle;
	border-top: 4px solid;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}

.error-message {
	position: absolute;
	z-index: 9999;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 30px !important;
	border-radius: 50%;
}

.row-form .slider-prize {
	position: relative;
	top: 0;
	left: 0;
	width: 300px;
	max-width: 300px;
	/* display: none; */
}

.row-form .head-init-smiles {
	/* margin-top: -220px; */
	margin-bottom: 165px;
}

.row-form .item-prize-container {
	margin-top: 20px;
	position: relative;
	border-style: none;
	width: 300px;
	height: 300px;
	display: none;
}

.row-form .item-prize-container>.item-prize {
	width: 300px;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
	border-width: 10px;
	border-color: white;
	border-style: solid;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	width: 100%;
	text-align: center;
	font-family: 'Verlag Black', sans-serif;
	font-weight: bolder;
	font-size: 32px;
	line-height: 32px;
}

.row-form .item-prize-container .title,
.row-form .item-prize-container .smiles {
	/* margin-top: 300px; */
	font-family: 'Verlag Black', sans-serif;
	font-weight: bolder;
	font-size: 42px;
	line-height: 42px;
	color: white;
	text-transform: uppercase;
	width: 100%;
	text-align: center;
	/* display: none; */
}


.row-form .col-form .btn-submit {
	font-family: 'Verlag Black', sans-serif;
	border-radius: 60px;
	padding-top: .5em;
	padding-bottom: .5em;
	margin-top: 30px;
}

.btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-primary:hover {
	background-color: white;
	border-color: var(--primary);
	color: var(--primary);
}

.btn-secondary {
	background-color: var(--secondary);
	border-color: var(--secondary);
}

.btn-secondary:hover {
	background-color: white;
	border-color: var(--secondary);
	color: var(--secondary);
}

.row-thanks .container-thanks-results {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 450px;
	padding-left: 50px;
	padding-right: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
	max-width: 500px;
}

.row-thanks .container-thanks-results {
	margin: auto;
}

@media (max-width: 997px) {}

.row-thanks .container-thanks-results h1 {
	color: #FF595A;
	font-weight: bold;
	font-size: 56px !important;
	line-height: 1.2em !important;
	margin-bottom: 0px;
	margin-top: 0px;
}

.row-thanks .container-thanks-results h3.lose {
	color: #004987;
	font-weight: bold;
	font-size: 40px;
	line-height: 1.2em;
}

.row-thanks .container-thanks-results>h3 {
	color: #004987;
	font-weight: bold;
	line-height: 1.2em;
	margin-bottom: 0px;
	font-size: 32px;
	line-height: 1.2em;
}

.row-thanks .container-thanks-results p {
	color: #004987;
	font-weight: 700;
	font-size: 48px;
	line-height: 48px;
}

.row-thanks .container-thanks-results svg {
	width: 200px;
	max-width: 200px;
	margin-bottom: 30px;
}

.row-thanks .container-thanks-results svg path {
	fill: #FF595A;
}

.row-form .col-info {
	background-image: url(https://ruletadelassonrisas.com/assets/img/bg.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.row-game .col-info img,
.row-thanks .col-info img,
.row-form .col-info img {
	margin-bottom: 60px;
	max-width: 280px;
}

.row-game .col-info h5,
.row-thanks .col-info h5,
.row-form .col-info h5 {
	color: var(--primary);
	font-family: 'Verlag', sans-serif;
	font-weight: bold;
	font-size: 20px;
	line-height: 32px;
	margin-bottom: 60px;
}

.row-form .col-info h5 {
	font-size: 28px;
}

.row-thanks .col-info h5 {
	font-size: 28px;
	line-height: 48px;
}

.row-game .col-info h5 br {
	display: block;
}

.row-game .col-info h5 {
	font-size: 28px;
	margin-bottom: 0px;
}

.row-form .col-info p {
	line-height: 24px;
	font-size: 20px;
	color: white;
	padding-left: .2em;
	margin-bottom: 5px;
}

.row-form .col-img {
	/* background-image: url(https://ruletadelassonrisas.com/assets/img/chica.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover; */
}

.row-form .col-img>div {
	background-color: #ececec;

}

.row-form .col-form h3 {
	color: var(--primary);
	margin-bottom: 50px;
}

.row-form .col-form label {
	font-weight: bold;
	font-size: 16px;
	color: #A19E9D;
	margin-bottom: 10px;
}

.row-form .col-form .form-check-input {
	margin-left: -15px;
}

.row-form .col-form .form-check-label {
	font-style: italic;
	font-weight: normal;
}

.row-footer a {
	font-family: 'Verlag', sans-serif;
	color: var(--primary);
	font-size: 14px;
	font-weight: bold;
	border-bottom: 2px solid var(--secondary);
}

.row-thanks .col-info h5 {
	margin-bottom: 0px;
}

.row-thanks .col-message>div {
	max-width: 500px;
}

.row-thanks .col-message p {
	color: var(--primary);
	margin-bottom: 40px;
	font-size: 22px;
	font-weight: bold;
}

.row-thanks .col-message .btn {
	font-family: 'Verlag Black', sans-serif;
	border-radius: 60px;
	padding-top: .5em;
	padding-bottom: .5em;
	margin-top: 30px;
}

.row-thanks .col-prize img {
	position: absolute;
	bottom: calc(100% + 14px);
	margin-right: auto;
	margin-left: auto;
	left: 0px;
	width: 300px;
	right: 0px;
	z-index: 999;
	max-width: 90%;
}

.row-thanks .col-prize::after {
	content: " ";
	display: block;
	border: 50px solid #90D5DA;
	top: -15px;
	left: calc(50% - 275px);
	width: calc(100% + 30px);
	height: calc(100% + 30px);
	position: absolute;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border-radius: 50px;
	z-index: 99;
	transition: .5s ease;
	max-width: 550px;
}
/* .row-thanks .col-prize::before {
	content: " ";
	display: block;
	border: 50px solid white;
	top: -15px;
	left: calc(50% - 275px);
	width: calc(100% + 30px);
	height: calc(100% + 30px);
	position: absolute;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border-radius: 50px;
	z-index: 99;
	transition: .5s ease;
	max-width: 550px;
	z-index: 1;
} */




.head-init-smiles {
	color: var(--primary);
	text-transform: uppercase;
	margin-top: -135px;
	margin-bottom: 145px;
	display: block;
}

.row-game .col-game input[type="button"] {
	z-index: 9999;
}

.row-game .col-game canvas {
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.row-game .over-canvas {
	background-color: #F6F7F8;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	border: 15px solid white;
	position: absolute;
	z-index: 999;
	left: calc(50% - 200px);
	top: calc(50% - 200px);
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.row-game .over-canvas::before {
	content: " ";
	width: 32px;
	height: 64px;
	position: absolute;
	left: calc(50% - 16px);
	top: -120px;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../img/select.png);
	z-index: 99;
}

.row-game .over-canvas::after {
	content: " ";
	display: block;
	border: 12px solid #004B84;
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
}

.row-game .btn-spin:hover {
	text-decoration: none;
}

.row-game .btn-spin {
	cursor: pointer;
	z-index: 9999;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
	text-decoration: none;
	position: absolute;
}

.row-game .btn-spin span:nth-child(1) {
	font-family: 'Verlag Black', sans-serif;
	font-weight: 900;
	font-size: 70px;
	color: #f17287;
	line-height: 46px;
}

.row-game .btn-spin span:nth-child(2) {
	font-family: 'Verlag Black', sans-serif;
	font-weight: 700;
	font-size: 36px;
	color: #004671;
}

.row-game .btn-spin span:nth-child(3) {
	font-family: 'Verlag', sans-serif;
	font-size: 40px;
	color: #004671;
	line-height: 26px;
}

.row-game .ribbon-prize {
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	width: 200px;
	margin-left: auto;
	margin-right: auto;
	display: none;
}

.circle-outline {
	border-width: 10px;
	border-color: #40c1d1;
	border-radius: 50%;
	border-style: solid;
	width: 250px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
	padding: 30px;
}

.js-prizes-title {
	font-family: 'Verlag Black', sans-serif;
	font-weight: bolder;
	font-size: 42px !important;
	line-height: 1em;
	color: #40c1d1;
}

.js-prizes-subtitle {
	font-family: 'Verlag Black', sans-serif;
	font-weight: bolder;
	font-size: 32px;
	line-height: 32px;
	color: #40c1d1;
	text-transform: uppercase;
}

.js-prizes-rotating {
	display: flex;
	width: 100%;
	/*height: 56px;*/
	justify-content: center;
	align-items: center;
	align-content: center;
}

.js-prizes-rotating .item {
	position: absolute;
}

.col-results {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.container-svg {
	padding: 40px;
	width: 100%;
	height: 100%;
	display: block;
}

.container-svg svg {
	max-width: 100%;
	max-height: 100%;
}

.container-svg.prize {
	padding: 70px;
}

.container-svg.prize svg {
	width: 100%;
	height: 100%;
}

.container-svg.prize svg path {
	fill: #e0e0e0;
}

.container-svg.lose {
	display: flex;
	position: absolute;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.container-svg.lose h3 {
	text-transform: uppercase;
	text-align: center;
	font-size: 22px;
	margin-top: 15px;
}

.container-svg.lose svg {
	width: 50%;
	height: 50%;
}

.container-svg.lose svg path {
	fill: #004B84;
}

.container-results {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 30px;
	max-height: 100%;
	overflow-y: auto;
}

.row-game .container-results h4 {
	text-transform: uppercase;
	font-size: 28px;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #4BA6DE;
	width: auto;
	display: table;
	color: #004B84;
}

.row-game .container-results h6 {
	color: #004B84;
	margin-bottom: 0px;
	font-size: 22px;
}

.row-game .container-results .body-results p {
	color: #4BA6DE;
	font-style: italic;
	margin-bottom: 15px;
	font-size: 22px;
}

.prize-result-container {
	position: absolute;
	display: flex;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 40px;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.prize-result-container h5 {
	text-align: center;
	color: #004B84;
	font-size: 42px;
	line-height: 42px;
	margin-bottom: 0px;
	margin-top: 15px;
}

.prize-result-container .value {
	font-family: 'Verlag Black', sans-serif;
	display: block;
	width: 100%;
	text-align: center;
	font-size: 110px;
	line-height: 110px;
	font-weight: bold;
	margin-top: 0px;
	font-size: 32px !important;
	line-height: 1.2em !important;
}

.prize-result-container p {
	font-size: 42px;
	line-height: 42px;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
}

.row-game .prize-result-container svg.prize-small {
	max-width: 80px;
}


/*  */

.lds-spinner {
	color: official;
	display: none;
	position: relative;
	width: 20px;
	height: 20px;
}

#btn-go.busy .lds-spinner {
	display: inline-block;
}

#btn-go span {
	font-family: 'Verlag Black', sans-serif;
}

.btn-secondary.focus,
.btn-secondary:focus {
	box-shadow: unset;
}

#btn-go.busy {
	border-color: #414040 !important;
	background-color: #414040 !important;
	color: rgb(161, 160, 160) !important;
}

.lds-spinner div {
	transform-origin: 10px 10px;
	animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
	content: " ";
	display: block;
	position: absolute;
	top: .75px;
	left: 9.25px;
	width: 1.5px;
	height: 4.5px;
	border-radius: 20%;
	background: #fff;
}

.lds-spinner div:nth-child(1) {
	transform: rotate(0deg);
	animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
	transform: rotate(30deg);
	animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
	transform: rotate(60deg);
	animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
	transform: rotate(90deg);
	animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
	transform: rotate(120deg);
	animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
	transform: rotate(150deg);
	animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
	transform: rotate(180deg);
	animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
	transform: rotate(210deg);
	animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
	transform: rotate(240deg);
	animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
	transform: rotate(270deg);
	animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
	transform: rotate(300deg);
	animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
	transform: rotate(330deg);
	animation-delay: 0s;
}

@keyframes lds-spinner {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@media (max-width: 1600px) {
	.prize-result-container {
		padding: 20px;
	}

	.prize-result-container h5 {
		font-size: 30px;
		line-height: 30px;
		margin-top: 10px;
	}

	.prize-result-container .value {
		font-size: 30px !important;
		line-height: 1.2em !important;
		margin-top: 0px;
	}

	.prize-result-container p {
		font-size: 30px;
		line-height: 30px;
	}

	.row-game .container-svg.prize {
		padding: 40px;
	}

	.row-game .container-results h4 {
		font-size: 18px;
	}

	.row-game .container-results h6 {
		font-size: 1rem;
	}

	.head-init-smiles {
		color: var(--primary);
		text-transform: uppercase;
		margin-top: -100px;
		margin-bottom: 120px;
		display: block;
	}

	.row-game .container-results .body-results p {
		font-size: 18px;
	}

	.row-game .col-game canvas {
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	.js-prizes-title {
		font-size: 65px;
		margin-top: -10px;
	}

	.js-prizes-subtitle {
		font-size: 22px;
		line-height: 22px;
	}

	.row-game .over-canvas {
		width: 300px;
		height: 300px;
		left: calc(50% - 150px);
		top: calc(50% - 150px);
	}

	.row-game .over-canvas::before {
		width: 32px;
		height: 64px;
		left: calc(50% - 16px);
		top: -105px;
	}

	.row-game .over-canvas::after {
		width: 470px;
		height: 470px;
	}

	.circle-outline {
		width: 200px;
		height: 200px;
	}

	.row-game .btn-spin span:nth-child(1) {
		font-size: 50px;
		line-height: 40px;
	}

	.row-game .btn-spin span:nth-child(2) {
		font-size: 26px;
	}

	.row-game .btn-spin span:nth-child(3) {
		font-size: 30px;
	}

	.row-thanks .col-message p {
		font-size: 1rem;
	}

	.row-thanks .col-prize::after {
		left: 0;
		max-width: 100%;
	}

	.row-thanks .container-thanks-results svg {
		width: 150px;
		max-width: 150px;
		margin-bottom: 30px;
	}

	.row-thanks>.col-prize>.container-thanks-results>h3 {
		font-size: 26px;
	}
}

@media (max-width: 1366px) {
	.row-game .col-info h5 br {
		display: block;
	}

	.row-thanks .container-thanks-results svg {
		width: 150px;
		max-width: 150px;
		margin-bottom: 25px;
	}

	.row-form .col-form .form-check {
		margin-left: 5px !important;
	}

	.form-group label {
		display: flex;
		flex-direction: column;
	}

	.form-group label .form-check {
		margin-top: 5px;
	}

	.form-group label .form-check .form-check-label {
		margin-left: 10px !important;
		margin-bottom: 0px;
	}

	.row-thanks .col-prize::after {
		left: calc(50% - 225px);
		max-width: 450px;
	}

	.row-thanks .container-thanks-results h3.lose {
		font-size: 28px;
	}
}



@media (max-width: 1280px) {}

@media (max-width: 1200px) {

	.row-thanks .col-info {
		padding-bottom: 180px !important;
	}

	.container-svg.lose h3 {
		font-size: 14px;
		line-height: 16px;
	}

	.prize-result-container h5 {
		font-size: 20px;
		line-height: 20px;
		margin-top: 10px;
	}

	.prize-result-container .value {
		font-size: 22px !important;
		line-height: 1.2em !important;
		margin-top: 0px;
	}

	.prize-result-container p {
		font-size: 20px;
		line-height: 20px;
	}

	.row-game .col-info h5 br {
		display: block;
	}

	.head-init-smiles h2 {
		font-size: 22px;
	}

	.form-group label {
		flex-direction: row;
	}

	.row-game .col-game canvas {
		-moz-transform: scale(.85);
		-webkit-transform: scale(.85);
		transform: scale(.85);
	}

	.row-game .over-canvas {
		width: 230px;
		height: 230px;
		left: calc(50% - 115px);
		top: calc(50% - 115px);
		border: 10px solid white;
	}

	.row-game .over-canvas::before {
		top: -100px;
	}

	.row-game .over-canvas::after {
		width: 400px;
		height: 400px;
	}

	.row-thanks .container-thanks-results h3.lose {
		font-size: 24px;
	}
}

@media (min-width: 992px) and (max-width: 1092px) {

	.row-game .col-lg-4:nth-child(1),
	.row-thanks .col-lg-4:nth-child(1),
	.row-game .col-lg-4:nth-child(3),
	.row-thanks .col-lg-4:nth-child(3) {
		-ms-flex: 0 0 30%;
		flex: 0 0 30%;
		max-width: 30%;
	}

	.row-game .col-lg-4:nth-child(2),
	.row-thanks .col-lg-4:nth-child(2) {
		-ms-flex: 0 0 40%;
		flex: 0 0 40%;
		max-width: 40%;
	}

	.row-thanks .col-info h5 {
		font-size: 18px;
		line-height: 28px;
	}

	.row-thanks .col-info img {
		margin-bottom: 30px;
	}
}

@media (max-width: 992px) {

	.row-thanks .container-thanks-results {
		max-width: 350px;
	}

	header .session-info {
		margin-top: 0px;
	}

	.row-form .col-info {
		padding-bottom: 20px !important;
	}

	.row-form .col-form {
		padding-top: 0px !important;
	}

	.row-form .col-form h3 {
		margin-top: 25px;
		margin-bottom: 25px;
	}

	.row-form .col-info h5 {
		margin-bottom: 20px;
	}

	.row-game .col-info {
		text-align: center;
	}

	.row-thanks .col-info img,
	.row-form .col-info img,
	.row-game .col-info img {
		padding-right: 0px;
		padding-left: 0px;
		margin-left: 0px;
		margin-bottom: 15px;
		width: 300px;
	}

	.row-game .col-game {
		height: 400px;
	}

	.row-game .col-results {
		min-height: 380px;
	}

	.row-thanks .container-thanks-results h3.lose {
		font-size: 40px;
		max-width: 350px;
	}
}

@media (max-width: 992px) and (orientation: portrait) {
	.row-form .col-form h3 {
		margin-top: 25px;
		margin-bottom: 25px;
	}
}

@media (max-width: 768px) {}

@media (max-width: 768px) and (orientation: portrait) {}

@media (max-width: 576px) {
	.wrapper-content {
		flex-grow: 1;
		align-items: center;
		justify-content: center;
		display: flex;
	}

	header {
		margin-bottom: 0px;
	}

	header>.row {
		padding-bottom: 0px;
		gap: 40px;
	}

	header>.row>.col-12 {
		display: flex;
		justify-content: center;
	}

	.error-message {
		font-size: 12px;
		padding: 10px !important;
	}

	.prize-result-container {
		padding: 15px;
	}

	.prize-result-container h5 {
		font-size: 16px;
		line-height: 16px;
		margin-top: 10px;
	}

	.prize-result-container .value {
		font-size: 16px !important;
		line-height: 1.2em !important;
		margin-top: 0px;
	}

	.prize-result-container p {
		font-size: 16px;
		line-height: 16px;
	}

	.form-group label {
		display: flex;
		flex-direction: column;
	}

	.form-group label .form-check {
		margin-top: 5px;
	}

	.form-group label .form-check .form-check-label {
		margin-left: 10px !important;
		margin-bottom: 0px;
	}

	.container-fluid {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.row-form .col-info {
		padding-top: 30px !important;
		padding-bottom: 15px !important;
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.row-form .col-form {
		padding-top: 0px !important;
		padding-bottom: 45px !important;
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.row-form .col-form .form-check {
		margin-left: 10px !important;
	}

	.row-form .col-info h5 {
		margin-bottom: 20px;
	}

	.row-form .col-info img {
		padding-right: 0px;
		padding-left: 0px;
		margin-left: 0px;
		margin-bottom: 20px;
	}

	.row-game .col-info {
		display: none;
		padding-top: 30px !important;
		padding-bottom: 15px !important;
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.row-game .col-info h5 {
		margin-bottom: 20px;
		text-align: center !important;
	}

	.row-game .col-info img {
		padding-right: 0px;
		padding-left: 0px;
		margin-left: 0px;
		margin-bottom: 20px;
	}

	.row-game .col-results {
		display: none;
		padding-top: 15px !important;
		padding-right: 15px !important;
		padding-left: 15px !important;
		padding-bottom: 45px !important;
		min-height: 380px;
	}

	.row-game .col-game {
		height: 330px;
	}

	.row-game .col-game canvas {
		-moz-transform: scale(.68);
		-webkit-transform: scale(.68);
		transform: scale(.68);
	}

	.row-game .over-canvas {
		width: 180px;
		height: 180px;
		left: calc(50% - 90px);
		top: calc(50% - 90px);
		border: 8px solid white;
	}

	.row-game .over-canvas::before {
		width: 28px;
		height: 60px;
		left: calc(50% - 14px);
		top: -88px;
	}

	.row-game .over-canvas::after {
		width: 330px;
		height: 330px;
	}

	.row-game .btn-spin span:nth-child(1) {
		font-size: 35px;
	}

	.row-game .btn-spin span:nth-child(2) {
		font-size: 20px;
	}

	.row-game .btn-spin span:nth-child(3) {
		font-size: 20px;
	}

	.container-svg {
		padding: 20px;
	}

	.row-thanks {
		margin-top: 0px;
		margin-bottom: 0px;
	}

	.row-thanks .col-info img {
		padding-right: 0px;
		padding-left: 0px;
		margin-left: 0px;
		margin-bottom: 20px;
		max-width: 200px;
	}

	.row-thanks .col-info {
		padding-top: 30px !important;
		padding-bottom: 100px !important;
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.row-thanks .container-thanks-results h1 {
		font-size: 32px !important;
		line-height: 32px !important;
	}

	.row-thanks .container-thanks-results h3 {
		font-size: 28px;
		line-height: 28px;
	}

	.row-thanks .container-thanks-results p {
		font-size: 30px;
		line-height: 30px;
	}

	.row-thanks .col-prize::after {
		left: calc(50% - calc((100vw - 80px) / 2));
		max-width: calc(100vw - 80px);
		border: 30px solid #90D5DA;
	}

	.row-thanks .col-prize img {
		width: 200px;
	}

	.row-thanks .col-info h5 {
		margin-bottom: 20px;
		text-align: center !important;
	}

	.row-thanks .col-message {
		padding-top: 45px !important;
		padding-right: 30px !important;
		padding-left: 30px !important;
		padding-bottom: 45px !important;
	}

	.row-thanks .container-thanks-results {
		min-height: 300px;
		;
	}

	.row-thanks .container-thanks-results h1 {
		font-size: 100px;
		line-height: 100px;
		margin-top: 0px;
	}

	.row-thanks .container-thanks-results h3.lose {
		font-size: 32px;
		line-height: 32px;
		max-width: 280px;
	}

	.row-thanks .container-thanks-results svg {
		width: 100px;
		max-width: 100px;
		margin-bottom: 20px;
	}

	.row-thanks .col-message p {
		margin-bottom: 10px;
	}
}