@font-face { font-family: "Montserrat"; src: url("../fonts/subset-Montserrat-LightItalic.woff2") format("woff2"), url("../fonts/subset-Montserrat-LightItalic.woff") format("woff"), url("../fonts/subset-Montserrat-LightItalic.ttf") format("truetype"); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../fonts/subset-Montserrat-MediumItalic.woff2") format("woff2"), url("../fonts/subset-Montserrat-MediumItalic.woff") format("woff"), url("../fonts/subset-Montserrat-MediumItalic.ttf") format("truetype"); font-weight: 500; font-style: italic; font-display: swap; }

@font-face { font-family: "Montserrat"; src: url("../fonts/subset-Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/subset-Montserrat-SemiBold.woff") format("woff"), url("../fonts/subset-Montserrat-SemiBold.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../fonts/subset-Montserrat-Bold.woff2") format("woff2"), url("../fonts/subset-Montserrat-Bold.woff") format("woff"), url("../fonts/subset-Montserrat-Bold.ttf") format("truetype"); font-weight: bold; font-style: normal; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../fonts/subset-Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/subset-Montserrat-ExtraBold.woff") format("woff"), url("../fonts/subset-Montserrat-ExtraBold.ttf") format("truetype"); font-weight: 900; font-style: normal; font-display: swap; }

@font-face { font-family: "Cormorant Infant"; src: url("../fonts/subset-CormorantInfant-SemiBold.woff2") format("woff2"), url("../fonts/subset-CormorantInfant-SemiBold.woff") format("woff"), url("../fonts/subset-CormorantInfant-SemiBold.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }



:root {
	--marron: #53230c;

	--crema: #e8f0f6;
	--celeste: #92bde6;
	--azul: #5b89b4;

	--red: #F3410E;
	--black: #000;

	--white: #FFF;
	--white-over: #EEE;

	--gris: #bbbbbc;

	--disabled: #a19d94;
}

html, body {
	height: 100%;

	font-family: "Montserrat";
	font-weight: 600;
	font-style: normal;
	font-size: 16px;
}

body {
	margin: 0 auto;

	background: var(--white);

	color: var(--celeste);

	display: flex;
	flex-direction: column;
}

body.bg_marron {
	background: var(--marron);
}

body.bg_celeste {
	background: var(--celeste);
}

body.bg_azul {
	background: var(--azul);
}

html {
	text-align: center;
}

a {
	color: var(--azul);
}

a:hover {
	color: var(--celeste);
}

a.red {
	color: var(--red);
}

a.red:hover {
	color: var(--white);
}


button {
	background: var(--celeste);
	border: none;
	border-radius: 4rem;

	display: inline-block;

	font-family: "Montserrat";
	font-weight: bold;

	font-size: 1.5rem;
	line-height: 1.75rem;
	color: var(--marron);
	text-transform: uppercase;

	padding: 1rem 2.5rem;

	position: relative;

	max-width: 25rem;
	box-sizing: content-box;
}

button span {
	display: inline-block;
}

button:hover {
	color: var(--white-over);
	cursor: pointer;
}

button:disabled {
	color: var(--disabled);
	cursor: default;
}

button.loading {
	color: transparent;
}

button.loading::after {
	content: "";
	position: absolute;
	width: 2rem;
	height: 2rem;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 0.5rem solid transparent;
	border-top-color: var(--white);
	border-radius: 50%;
	animation: loading 1s ease infinite;
}

button.btn-turno {
	width: 100%;
	max-width: unset;
	box-sizing: border-box;
	margin-bottom: 0.25rem;
	background: var(--white);
	color: var(--celeste);
	border: 0.25rem solid var(--azul);
}

input[type=text], input[type=email] {
	width: 100%;
	background-color: var(--white);
	color: var(--azul);
	font-family: "Montserrat";
	font-weight: 500;
	font-style: italic;
	font-size: 1.25rem;

	border: 0.2rem solid var(--azul);
	border-radius: 2rem;

	outline: none;
	padding: 0.75rem 0.75rem;
	margin-bottom: 0.25rem;

	box-sizing: border-box;

	text-align: center;
}

input[type=text]::placeholder, input[type=email]::placeholder {
	color: var(--azul);

	font-family: "Montserrat";
	font-size: 1.25rem;
	text-transform: uppercase;

	opacity: 1;
}

input[type=text].wh, input[type=email].wh {
	border: 0.1rem solid var(--azul);
	color: var(--white);

	text-align: center;
}

input[type=text] + label {
	font-size: 1.25rem;
	font-family: "Montserrat";
	text-transform: uppercase;
}

span.label {
	font-family: "Montserrat";
	font-size: 1rem;
	text-transform: uppercase;
	color: var(--white);

	display: inline-block;
}

input[type=checkbox] + label {
	font-family: "Montserrat";
	font-weight: 300;
	font-style: italic;

	display: block;
	margin: 0;
	cursor: pointer;
	padding-bottom: 0.75rem;

	color: var(--azul);
	min-height: 1rem;
	line-height: 1.5rem;
	text-align: left;

	font-size: 1.25rem;
}

input[type=checkbox] {
	display: none;
}

input[type=checkbox] + label:before {
	content: "\2714";
	background: var(--white);

	border: 0.2rem solid var(--azul);
	border-radius: 0;

	width: 1.5rem;
	height: 1.5rem;
	font-size: 1.25rem;

	margin-left: 0.25rem;
	margin-right: 1rem;

	vertical-align: middle;
	color: transparent;
	transition: .2s;

	display: inline-block;
	text-align: center;
	line-height: 1.5rem;
}

input[type=checkbox] + label:active:before {
	transform: scale(0);
}

input[type=checkbox]:checked + label:before {
	border-color: var(--azul);
	color: var(--white);
	background: var(--azul);
}

input[type=checkbox]:disabled + label:before {
	transform: scale(1);
	border-color: var(--disabled);
}

input[type=checkbox]:checked:disabled + label:before {
	transform: scale(1);
	background-color: #444;
	border-color: #444;
}

input[type="radio"] {
	cursor: pointer;

	appearance: none;
	-webkit-appearance: none;

	border-radius: 50%;
	margin: 0;

	background: var(--white);
	border: 0.25rem solid var(--azul);

	width: 2rem;
	height: 2rem;
}

input[type="radio"]:checked {
	background: var(--azul);
}

input[type=radio].circle {
	display: none;
}

input[type="radio"].circle + label {
	font-family: "Montserrat";
	font-weight: bold;
	font-size: 1.75rem;

	cursor: pointer;
	height: 1rem;
	background-color: var(--white);
	color: var(--marron);
	border: 0.1rem solid var(--black);
	height: 3.5rem;
	width: 3.5rem;
	line-height: 3.5rem;
	border-radius: 8rem;
}

input[type="radio"].circle:last-child + label {
	margin-right: 0;
}

input[type="radio"].circle:checked + label {
	background-color: var(--celeste);
	color: var(--white);
}

input[type=radio].circle + label:after {
	display: none;
}

select {
	width: 100%;
	border: none;
	background-color: transparent;
	color: var(--white);
	font-family: "Montserrat";
	font-size: 1rem;
	text-transform: uppercase;

	cursor: pointer;

	padding: 0.25rem;
}

select:disabled {
	cursor: default;
	opacity: 0.2;
}

select option {
	background-color: var(--white);
	color: var(--black);
	text-transform: uppercase;
}

select option:disabled {
	display: none;
}

h1 {
	font-size: 2.5rem;
	line-height: 2.5rem;

	margin: 0;

	font-family: "Montserrat";
	font-weight: normal;
	text-transform: uppercase;
}

h2 {
	font-size: 2.25rem;
	line-height: 2.25rem;

	margin: 0;

	font-family: "Montserrat";
	font-weight: 900;
	font-style: normal;

	text-transform: uppercase;
}

h3 {
	font-size: 1.6rem;
	line-height: 1.75rem;

	margin: 0;

	font-family: "Montserrat";
	font-weight: normal;
	text-transform: uppercase;
}

h4 {
	font-size: 1.4rem;
	line-height: 1.5rem;

	margin: 0;

	font-family: "Montserrat";
	font-weight: 600;
}


#page-container {
	display: flex;
	flex-flow: column;
	flex: 1 0 auto;

	width: 100vw;
	box-sizing: border-box;
	position: relative;

	padding: 1rem;
}

@media screen and (orientation: portrait) and (max-width: 800px) {
	#page-container {
		padding: 1rem;
	}


	#page-container::before,
	#page-container::after {
		height: 15vh;
	}
}

#page-container.nobg::before,
#page-container.nobg::after {
	background: none !important;
}

.step10 #page-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 45%;
	max-width: 300px;
	height: 100%;
	background: url("../images/bg_stepStart_tl.svg") no-repeat top left;
	background-size: 100%;
}

.step10 #page-container::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 20%;
	max-width: 150px;
	height: 100%;
	background: url("../images/bg_stepStart_br.svg") no-repeat bottom right;
	background-size: 100%;
}

.step11 #page-container::before,
.step12 #page-container::before,
.step13 #page-container::before,
.step14 #page-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 55%;
	max-width: 300px;
	height: 100%;
	background: url("../images/bg_stepGame_tl.svg") no-repeat top left;
	background-size: 100%;
}

.step11 #page-container::after,
.step12 #page-container::after,
.step13 #page-container::after,
.step14 #page-container::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	max-width: 150px;
	height: 100%;
	background: url("../images/bg_stepGame_br.svg") no-repeat bottom right;
	background-size: 100%;
}

#content-wrap {
	flex: 1 0 auto;
	z-index: 1;

	display: flex;
	flex-direction: column;

	justify-content: center;
}

#footer {
	width: calc(100% + 2rem);
	height: 3rem;
	color: var(--white);
	text-transform: uppercase;
	overflow: hidden;

	flex-shrink: 0;
	margin-top: 1rem;

	font-size: 0.8em;

	padding: 0;

	margin-left: -1rem;

	position: relative;
}


#termsdetails {
	max-width: 600px;
	color: #000;
	display: none;
}

#termsdetails a {
	color: var(--azul);
}

#termsdetails a:hover {
	color: var(--celeste);
}

#termsdetails h3 {
	color: var(--black);
}

#termsdetails div {
	font-size: 10px;
}

#messages {
	display: none;
	z-index: 25;
	color: var(--black);
	text-align: center;
	background-color: var(--crema);

	font-size: 1.25rem;
}

#messages h2 {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

#termsdetails div {
	font-size: 14px;
}

div.loading::after {
	content: "";
	position: absolute;
	width: 2rem;
	height: 2rem;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 0.5rem solid transparent;
	border-top-color: var(--azul);
	border-radius: 50%;
	animation: loading 1s ease infinite;
}

.flex {
	display: flex;
}

.flex-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}

.flex-col {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}

.flex-col-wider {
	flex: 1.5;
}

.flex-col-nc {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}

.flex-center {
	display: flex;
	align-items: initial;
	justify-content: center;
	height: 100%;
}

.flex-filler {
	flex: 1;
}

.flex-dir-col-rev {
	flex-direction: column-reverse;
}

.h100pct {
	height: 100%;
}

.w50pct {
	width: 50% !important;
}

.w100pct {
	width: 100% !important;
}

.w2rem {
	width: 2rem !important;
}

.mauto {
	margin: 0 auto;
}

.inline {
	display: inline;
}

.inlineblock {
	display: inline-block;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

.middle {
	justify-content: center;
}

.center-flex {
	align-items: center;
}

.rounded {
	font-family: "Montserrat";
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

.infant {
	font-family: "Cormorant Infant";
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

.bolded {
	font-weight: bold;
}

.underline {
	text-decoration: underline;
}

.uppercase {
	text-transform: uppercase;
}

.notransform {
	text-transform: none !important;
}

.formbreak {
	display: inline;
}

.column {
	float: left;
	width: 30%;
}

.column-min {
	float: left;
	width: 4%;
}

.paded {
	padding-left: 5px !important;
	padding-right: 5px !important;
}

.pad0 {
	padding: 0 !important;
}

.padleft5 {
	padding-left: 5px;
}

.padleft10 {
	padding-left: 10px;
}

.padright5 {
	padding-right: 5px;
}

.padright10 {
	padding-right: 10px;
}

.padtop5 {
	padding-top: 5px;
}

.padtop10 {
	padding-top: 10px;
}

.padtop15 {
	padding-top: 15px;
}

.padtop20 {
	padding-top: 20px;
}

.padtop30 {
	padding-top: 30px;
}

.padtop40 {
	padding-top: 40px;
}

.padtop1r {
	padding-top: 1rem;
}

.padtop2r {
	padding-top: 2rem;
}

.padbot1r {
	padding-bottom: 1rem;
}

.padbothalfr {
	padding-bottom: 0.5rem;
}

.padbotquartr {
	padding-bottom: 0.25rem;
}

.ls2 {
	letter-spacing: 2px;
}

.ls4 {
	letter-spacing: 4px;
}

.mw400 {
	max-width: 400px;
}

.mw500 {
	max-width: 500px;
}

.mw600 {
	max-width: 600px;
}

.mw650 {
	max-width: 650px;
}

.mw700 {
	max-width: 700px;
}

.mw800 {
	max-width: 800px;
}

.hidden {
	display: none;
}

.red {
	color: var(--red);
}

.marron {
	color: var(--marron);
}

.azul {
	color: var(--azul);
}

.celeste {
	color: var(--celeste);
}

.white {
	color: var(--white);
}

.biggest {
	font-size: 5rem;
	line-height: 5rem;
}

.verybig {
	font-size: 3rem;
	line-height: 3.25rem;
}

.big {
	font-size: 1.75rem;
	line-height: 2rem;
}

.small {
	font-size: 0.75rem;
	line-height: 0.75rem;
}

.ui-dialog { z-index: 25 !important ;}

.blocker {
	z-index: 100;
}

.modal {
	width: auto !important;
	padding: 1.5rem 1.5rem;
	border: none;
	box-shadow: none;
	border-radius: 2rem;
	border-top-right-radius: 0;
}

.modal a.close-modal[class*="close-"] {
	width: 32px;
	height: 32px;
	color: transparent !important;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	text-indent: 0;
	border: none;
	border-radius: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;

	background: var(--marron);
}

.modal a.close-modal[class*="close-"]:after {
	content: "X";
	color: var(--white);
	position: absolute;
}

.blocker {
	background-color: rgba(0,0,0,0.9);
}

#msghead {
	color: var(--marron);
	padding: 1rem;
}

.relative {
	position: relative;
}

/* PERSONAL */



#list-turno {
	font-family: "Montserrat";
	font-size: 1.5rem;
	font-weight: 500;
	font-style: italic;
	display: flex;
	gap: 0.25rem 0.75rem;
	flex-wrap: wrap;
}

#list-turno div.item {
	flex-basis: calc(50% - 0.375rem);
	max-width: calc(50% - 0.375rem);
	flex-grow: 0;
	flex-shrink: 0;
	box-sizing: border-box;
}

#list-turno input[type="radio"] {
	display: none;
}

#list-turno label {
	display: block;
	padding: 0.75rem;
	border-radius: 4rem;
	background: var(--white);
	color: var(--azul);
	cursor: pointer;
	transition: background 0.3s;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	border: 0.2rem solid var(--azul);
}

#list-turno input[type="radio"]:checked + label {
	background: var(--celeste);
	color: var(--white);
	font-weight: bold;
}

#footer a {
	color: inherit;
}

.step {
	margin-top: 2rem;

	display: none;
	align-items: center;
	justify-content: center;
}

.mailcontainer {
	gap: 1rem;
	display: flex;
	flex-direction: column;
	max-width: 800px;
}

.qrcontainer {
	background-color: var(--white);
	width: 18rem;
	display: inline-block;
	height: 100%;
	aspect-ratio: 1/1;
	border-radius: 15%;
	padding: 1rem;
	box-sizing: border-box;
	border: 0.2rem solid var(--marron);
	display: flex;
	justify-content: center;
	margin: 0 auto;
	align-items: center;
}

.qrcontainer img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.img-filled {
	max-width: 95%;
	margin: 0 auto;
}

.img-semi-filled {
	max-width: 65%;
	margin: 0 auto;
}

.img-half-filled {
	max-width: 50%;
	margin: 0 auto;
}


.img-quarter-filled {
	max-width: 30%;
	margin: 0 auto;
}

.img-qr-filled {
	width: 100%;
	height: 100%;
	margin: 0 auto;
}


.img-logo-brand {
	max-width: 15%;
	margin: 0 auto;
}

.logo {
	display: flex;
	flex-direction: column;
}

.box {
	color: var(--marron);
	border-radius: 2rem;

	position: relative;

	padding: 1.25rem 1.5rem;

	background: var(--crema);
}


#sad {
	width: 8rem;
	height: 8rem;
}

ul.register, ul.confirm {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

ul.register li, ul.confirm li {
	list-style: none;
	margin: 0 auto;
}

ul.register li {
	padding-bottom: 1rem;
	width: 50%;
}

.codigoinput {
	margin: 0 auto;
	width: 50%;
}

.qrconfirm img {
	width: 70%;
	max-width: 35%;
}

.gap2r {
	gap: 2rem;
}

.gap3r {
	gap: 3rem;
}

@media only screen and (max-width: 1650px) {
	html, body {
		font-size: 16px;
	}
}

@media only screen and (max-width: 1366px) {
	html, body {
		font-size: 14px;
	}
}

@media only screen and (max-width: 1280px) {
	html, body {
		font-size: 12px;
	}
}

@media only screen and (max-width: 980px) {
	html, body {
		font-size: 10px;
	}
}

@media screen and (orientation: portrait), (max-width: 1152px) {
	html, body {
		font-size: 12px;
	}

	#footer {
		height: 2.5rem;
	}

	#footer::before {
		left: 1.5rem;
	}

	.onlyhoriz {
		display: none;
	}

	.onlyvert {
		display: flex;
	}

	.flex-row {
		flex-direction: column;
	}

	.flex-col {
		flex-direction: row;
		flex: auto;

		padding-left: 5%;
		padding-right: 5%;
	}

	.flex-col-wider {
		flex: auto;
	}

	.vert-separator {
		padding-top: 1.5rem;
	}

	h1 {
		font-size: 2.5rem;
		line-height: 2.75rem;
	}

	h2 {
		font-size: 2rem;
		line-height: 2rem;
	}

	h3 {
		font-size: 1.25rem;
		line-height: 1.25rem;
	}

	h4 {
		font-size: 1.4rem;
		line-height: 1.5rem;
	}

}



@media screen and (max-resolution: 192dpi) {
	html {
		font-size: 15px;
	}
}

@keyframes loading {
	from {
		transform: rotate(0turn);
	}

	to {
		transform: rotate(1turn);
	}
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
