@font-face { font-family: "Gotham"; src: url("../fonts/subset-Gotham-Black.woff2") format("woff2"), url("../fonts/subset-Gotham-Black.woff") format("woff"), url("../fonts/subset-Gotham-Black.ttf") format("truetype"); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Gotham Rounded"; src: url("../fonts/subset-GothamRounded-Bold.woff2") format("woff2"), url("../fonts/subset-GothamRounded-Bold.woff") format("woff"), url("../fonts/subset-GothamRounded-Bold.ttf") format("truetype"); font-weight: bold; font-style: normal; font-display: swap; }
@font-face { font-family: "Gotham Rounded Book"; src: url("../fonts/subset-GothamRounded-Book.woff2") format("woff2"), url("../fonts/subset-GothamRounded-Book.woff") format("woff"), url("../fonts/subset-GothamRounded-Book.ttf") format("truetype"); font-weight: normal; font-style: normal; font-display: swap; }

:root {
	--azul: #000094;
	--crema: #F5EBDC;
	--crema-over: #DED5C8;
	--red: #F3410E;
	--black: #000;
	--white: #FFF;
	--white-over: #EEE;
	--celeste: #069ce1;
	--celeste-over: #3DA9DA;
	--gris: #bbbbbc;

	--disabled: #a19d94;
}

html, body {
	height: 100%;

	font-family: "Gotham";
	font-weight: 900;
	font-style: normal;
	font-size: 16px;
}

body {
	margin: 0 auto;

	background: var(--white);

	color: var(--celeste);

	display: flex;
	flex-direction: column;
}

html {
	text-align: center;
}

a {
	color: var(--white);
}

a:hover {
	color: var(--naranja);
}

a.red {
	color: var(--naranja);
}

a.red:hover {
	color: var(--white);
}


button {
	background : linear-gradient(90deg, rgba(0, 30, 255, 1) 0%, rgba(19, 2, 178, 1) 100%);
	border: none;
	border-radius: 4rem;

	display: inline-block;

	font-family: "Gotham Rounded";
	font-weight: bold;

	font-size: 1.5rem;
	line-height: 1.5rem;
	color: var(--white);
	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(--celeste);
	font-family: "Gotham Rounded Book";
	font-size: 1rem;
	border: 0.25rem 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(--celeste);

	font-family: "Gotham Rounded Book";
	font-size: 1.25rem;
	text-transform: uppercase;

	opacity: 1;
}

input[type=text].wh, input[type=email].wh {
	border: 0.1rem solid var(--naranja);
	color: var(--white);

	text-align: center;
}

input[type=text] + label {
	font-size: 1.25rem;
	font-family: "Chronic";
	text-transform: uppercase;
}

span.label {
	font-family: "Gotham";
	font-size: 1rem;
	text-transform: uppercase;
	color: var(--white);

	display: inline-block;
}

input[type=checkbox] + label {
	display: flex;
	margin: 0;
	cursor: pointer;
	padding-bottom: 0.75rem;

	color: var(--white);
	min-height: 1rem;
	line-height: 0.5rem;
	align-items: center;

	font-size: 1rem;
}

input[type=checkbox] {
	display: none;
}

input[type=checkbox] + label:after {
	content: "\2714";
	border: 0.1rem solid var(--naranja);

	border-radius: 0.25rem;

	width: 1rem;
	height: 1rem;
	font-size: 1rem;

	margin-left: 0.25rem;
	margin-right: 0.25rem;

	vertical-align: bottom;
	color: transparent;
	transition: .2s;

	display: flex;
	align-items: center;
	justify-content: center;
}

input[type=checkbox] + label:active:after {
	transform: scale(0);
}

input[type=checkbox]:checked + label:after {
	border-color: var(--naranja);
	color: var(--white);
}

input[type=checkbox]:disabled + label:after {
	transform: scale(1);
	border-color: var(--disabled);
}

input[type=checkbox]:checked:disabled + label:after {
	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: "Gotham Rounded";
	font-weight: bold;
	font-size: 1.5rem;

	cursor: pointer;

	height: 1rem;
	background-color: var(--white);
	color: var(--black);
	border: 0.25rem solid var(--azul);
	height: 3rem;
	width: 3rem;
	line-height: 3rem;

	border-radius: 6rem;
}

input[type="radio"].circle:last-child + label {
	margin-right: 0;
}

input[type="radio"].circle:checked + label {
	background-color: var(--azul);
	color: var(--white);
}

input[type=radio].circle + label:after {
	display: none;
}

select {
	width: 100%;
	border: none;
	background-color: transparent;
	color: var(--white);
	font-family: "Gotham";
	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: "Gotham Rounded Book";
	font-weight: normal;
	text-transform: uppercase;
}

h2 {
	font-size: 2.25rem;
	line-height: 2.25rem;

	margin: 0;

	font-family: "Gotham Rounded Book";
	font-weight: normal;
	text-transform: uppercase;
}

h3 {
	font-size: 1.5rem;
	line-height: 1.5rem;

	margin: 0;

	font-family: "Gotham";
	font-weight: 900;
	text-transform: uppercase;
}

h4 {
	font-size: 1.25rem;
	line-height: 1.25rem;

	margin: 0;

	font-family: "Gotham Rounded Book";
	font-weight: normal;
	text-transform: uppercase;
}


#page-container {
	display: flex;
	flex-flow: column;
	flex: 1 0 auto;

	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(240, 250, 254, 1) 3.68%, rgba(184, 231, 249, 1) 18.02%, rgba(137, 215, 245, 1) 32.47%, rgba(98, 202, 241, 1) 46.72%, rgba(68, 191, 238, 1) 60.73%, rgba(46, 184, 237, 1) 74.43%, rgba(33, 179, 235, 1) 87.68%, rgba(29, 178, 235, 1) 100%);

	width: 100vw;
	box-sizing: border-box;
	position: relative;

	padding: 13vh 1rem 13vh 1rem;
}


#page-container::before,
#page-container::after {
	content: "";
	position: absolute;
	display: inline-block;

	height: 12vh;
	width: 100%;

	background-size: auto 100%;
	background-repeat: repeat-x;
}


@media screen and (orientation: portrait) and (max-width: 800px) {
	#page-container {
		padding: 16vh 1rem 16vh 1rem;
	}


	#page-container::before,
	#page-container::after {
		height: 15vh;
	}
}

#page-container::before {
	top: 0;
	left: 0;
	background-image: url("../images/bg-top.svg");
	background-position: top;
}

#page-container::after {
	bottom: 0;
	left: 0;
	background-image: url("../images/bg-bottom.svg");
	background-position: bottom;
}

#page-container.nobg::before,
#page-container.nobg::after {
	background-image: none;
}



#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(--naranja);
}

#termsdetails a:hover {
	color: var(--red);
}

#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(--white);
}

#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(--naranja);
	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: "Gotham Rounded Book";
	font-weight: normal;
	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);
}

.white {
	color: var(--white);
}

.biggest {
	font-size: 5rem;
	line-height: 5rem;
}

.verybig {
	font-size: 3rem;
	line-height: 3rem;
}

.big {
	font-size: 2rem;
	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: 0;
	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 : linear-gradient(90deg, rgba(0, 30, 255, 1) 0%, rgba(19, 2, 178, 1) 100%);
}

.modal a.close-modal[class*="close-"]:after {
	content: "X";
	color: var(--white);
	position: absolute;
}

#msghead {
	color: var(--celeste);
	padding: 1rem;
}

.relative {
	position: relative;
}

/* PERSONAL */

.list-turno {
	font-family: "Gotham Rounded Book";
	font-size: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-top: 0.5rem;;
}

.list-turno input[type="radio"] {
	display: none;
}

.list-turno label {
	display: block;
	padding: 0.75rem;
	border-radius: 4rem;
	background: var(--gris);
	color: var(--white);
	cursor: pointer;
	transition: background 0.3s;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

.list-turno input[type="radio"]:checked + label {
	background: var(--azul);
	color: var(--white);
	font-weight: bold;
}

#footer a {
	color: inherit;
}

.step {
	margin-top: 2rem;

	display: none;
	align-items: center;
	justify-content: center;
}

.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;
}

.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-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(--celeste);
	border-radius: 0;

	position: relative;

	padding: 8% 9% 18% 9%;

	background: var(--white);
	box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.4);

	clip-path: polygon(
		0.5rem 0,                         /* sup-izq */
		calc(100% - 0.75rem) 1rem,         /* sup-der (borde superior con otra inclinación) */
		100% 100%,         /* inf-der */
		0.25rem calc(100% - 1rem)                        /* inf-izq (borde vertical con su propia inclinación) */
	);
}


#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;
	}

	.mw400,
	.mw500 {
		padding-left: 8%;
		padding-right: 8%;
	}

	.mw600,
	.mw650 {
		padding-left: 6%;
		padding-right: 6%;
	}

	.mw700,
	.mw800 {
		padding-left: 4%;
		padding-right: 4%;
	}

	h1 {
		font-size: 2.25rem;
		line-height: 2.25rem;
	}

	h2 {
		font-size: 2rem;
		line-height: 2rem;
	}

	h3 {
		font-size: 1.5rem;
		line-height: 1.5rem;
	}

	h4 {
		font-size: 1.1rem;
		line-height: 1.1rem;
	}

}



@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; }
}
