@font-face { font-family: "HelveticaNowDisplay"; src: url("../fonts/subset-HelveticaNowDisplay-Regular.woff2") format("woff2"), url("../fonts/subset-HelveticaNowDisplay-Regular.woff") format("woff"), url("../fonts/subset-HelveticaNowDisplay-Regular.ttf") format("truetype"); font-weight: normal; font-style: normal; font-display: swap; }
@font-face { font-family: "HelveticaNowDisplay"; src: url("../fonts/subset-HelveticaNowDisplay-Bold.woff2") format("woff2"), url("../fonts/subset-HelveticaNowDisplay-Bold.woff") format("woff"), url("../fonts/subset-HelveticaNowDisplay-Bold.ttf") format("truetype"); font-weight: bold; font-style: normal; font-display: swap; }
@font-face { font-family: "HelveticaNowDisplay"; src: url("../fonts/subset-HelveticaNowDisplay-ExtraBold.woff2") format("woff2"), url("../fonts/subset-HelveticaNowDisplay-ExtraBold.woff") format("woff"), url("../fonts/subset-HelveticaNowDisplay-ExtraBold.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }


:root {
	--blue: #0000a5;
	--red: #ad1244;
	--black: #000;
	--white: #FFF;
	--white-over: #DDD;
	--gris: #545454;
	--grisoscuro: #1d1d1b;

	--disabled: #a19d94;
}

html, body {
	height: 100%;
	font-size: 18px;
}

body {
	margin: 0 auto;

	font-family: "HelveticaNowDisplay";
	font-weight: normal;
	font-style: normal;

	color: var(--white);
	background-color: var(--black);

	background-repeat: no-repeat;
	background-size: cover;


	display: flex;
	flex-direction: column;
}

.nobg {
	background: #FFF !important;
}

html {
	text-align: center;
}

a {
	color: var(--gris);
	text-decoration: none;
}

a:hover {
	color: var(--blue);
}

a.black {
	color: var(--black);
}

a.black:hover {
	color: var(--black);
}

a.white {
	color: var(--white);
}

a.white:hover {
	color: var(--white);
}

button {
	border: none;

	display: inline-block;

	font-family: "HelveticaNowDisplay";
	font-weight: bold;
	font-size: 1.25rem;
	letter-spacing: 0.01rem;
	color: var(--blue);
	background: var(--white);
	text-transform: uppercase;

	border-radius: 2rem;

	padding: 0.4rem 1.5rem;

	position: relative;

	min-width: 10rem;
}

button span {
	display: inline-block;
}

button:hover {
	color: var(--blue);
	cursor: pointer;
}

button:disabled {
	color: var(--disabled);
	cursor: default;
}


button.loading {
	color: transparent;
}

button.loading::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 4px solid transparent;
	border-top-color: var(--blue);
	border-radius: 50%;
	animation: loading 1s ease infinite;
}

input[type=text], input[type=email] {
	width: 100%;
	box-sizing: border-box;

	background-color: transparent;
	color: var(--white);

	font-family: "HelveticaNowDisplay";
	font-weight: normal;
	font-style: normal;
	font-size: 1rem;

	text-transform: uppercase;

	border: none;
	border-bottom: 0.15rem solid var(--white);
	border-radius: 0;
	outline: none;

	padding: 0 0 0.2rem 1.25rem;
}

input[type=text]::placeholder, input[type=email]::placeholder {
	color: var(--white);

	font-family: "HelveticaNowDisplay";
	font-weight: normal;
	font-style: normal;
	font-size: 1rem;

	text-transform: lowercase;

	opacity: 0.8;
}

label.arrow {
	color: var(--white);
	font-family: "HelveticaNowDisplay";
	font-weight: normal;
	font-style: normal;
	font-size: 1rem;
	text-transform: uppercase;
	opacity: 1;
	text-align: left;
	display: block;
	position: relative;
}

label.arrow:before {
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 24.4 14.3'%3E%3Cdefs%3E%3Cstyle%3E .st0 %7B fill: none; stroke: %23FFF; stroke-miterlimit: 10; stroke-width: 1.6px; %7D .st1 %7B fill:%23FFF; opacity: .5; %7D %3C/style%3E%3C/defs%3E%3Cg class='st1'%3E%3Cg%3E%3Cline class='st0' x1='1.2' y1='7.1' x2='21.4' y2='7.1'/%3E%3Cpolygon points='16.1 13.7 15.1 12.5 20.8 7.1 15.1 1.8 16.1 .6 23.2 7.1 16.1 13.7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	width: 1rem;
	height: auto;
	display: block;
	position: absolute;
}


span.label {
	font-size: 20px;
	text-transform: uppercase;
	color: var(--gris);

	display: inline-block;
}

.nacimiento-container {
	display: flex;
	align-items: center;
	overflow-x: hidden;
	white-space: nowrap;
}

input[type=checkbox] + label {
	display: flex;
	flex-wrap: wrap;

	margin: 0;
	cursor: pointer;
	padding-bottom: 10px;

	color: var(--white);
	align-items: center;
	justify-content: flex-start;

	text-transform: uppercase;

	font-size: 0.75rem;
}

input[type=checkbox] {
	display: none;
}

input[type=checkbox] + label:before {
	content: "X";
	border: none;
	border-radius: 0;

	background-color: transparent;
	border: 0.1rem solid var(--white);

	width: 1rem;
	height: 1rem;
	font-size: 1rem;

	margin-right: 0.5rem;

	vertical-align: bottom;
	color: transparent;
	transition: .2s;

	display: flex;
	align-items: center;
	justify-content: center;
}

input[type=checkbox] + label:active:before {
	transform: scale(0);
}

input[type=checkbox]:checked + label:before {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--blue);
}

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;
}

select {
	width: 100%;
	border: none;
	border-radius: 0;

	background-color: var(--white);
	color: var(--gris);
	font-family: "HelveticaNowDisplay";
	font-size: 20px;

	cursor: pointer;

	padding: 1rem;
	appearance: initial;
	-webkit-appearance: initial;
}

select:disabled {
	cursor: default;
	opacity: 0.2;
}

select option {
	background-color: var(--white);
	color: var(--blue);
}

select option:disabled {
	display: none;
}

h1 {
	font-size: 2.25rem;
	font-family: "HelveticaNowDisplay";
	font-weight: bold;
	text-transform: uppercase;
	margin: 0;
}

h2 {
	font-size: 1.75rem;
	font-family: "HelveticaNowDisplay";
	font-weight: bold;
	text-transform: uppercase;
	margin: 0;
}

h3 {
	font-size: 1.25rem;
	font-family: "HelveticaNowDisplay";
	margin: 0;
}

#header {
	width: 100%;
	height: 24vh;
	position: relative;
	padding-bottom: 4vh;
}

footer {
	width: 860px;
	max-width: 94%;
	margin: 0 auto;
	height: 2rem;
	padding: 3% 2%;
	color: var(--white);
	font-size: 0.75rem;
	display: flex;

	align-items: center;
}

#page-container {
	display: flex;
	flex-flow: column;
	height: 100vh;
	overflow-y: scroll;
}

#cover_img{
	filter: drop-shadow(0.5rem 0.5rem 1rem #121618);
}

#content-wrap {
	flex: 1 0 auto;
	z-index: 1;
	margin: 0 auto;

	padding: 3% 2%;
}

#termsdetails {
	font-family: "HelveticaNowDisplay";
	max-width: 600px;
	color: #000;
	display: none;
}

#termsdetails a {
	color: var(--blue);
}

#termsdetails a:hover {
	color: var(--blue);
}

#termsdetails h3 {
	color: var(--blue);
}

#termsdetails div {
	font-size: 0.9rem;
}

#messages {
	display: none;
	z-index: 25;
	color: var(--blue);
	text-align: center;
	background-color: var(--white);
}

#messages h2 {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

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(--blue);
	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: center;
	justify-content: center;
	height: 100%;
}

.flex-end {
	justify-content: end !important;
}

.flex-start {
	align-items: flex-start !important;
}

.flex-filler {
	flex: 1;
}

.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;
}

.bolded {
	font-weight: bold;
}

.extrabolded {
	font-weight: 700;
}

.italic {
	font-style: italic;
}

.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;
}

.leftdesktop {
	text-align: left;
}

.padtop40 {
	padding-top: 40px;
}

.ls2 {
	letter-spacing: 2px;
}

.ls4 {
	letter-spacing: 4px;
}

.minw35vw {
	min-width: 35vw;
}

.mw400 {
	max-width: 400px;
}

.mw500 {
	max-width: 500px;
}

.mw600 {
	max-width: 600px;
}

.mw650 {
	max-width: 650px;
}

.mw800 {
	max-width: 800px;
}

.hidden {
	display: none;
}

.red {
	color: var(--red);
}

.orange {
	color: var(--naranja);
}

.blue {
	color: var(--blue);
}

.darkgray {
	color: var(--grisoscuro);
}

.big {
	font-size: 1.25rem;
}

.small {
	font-size: 0.75rem;
}

.ui-dialog { z-index: 25 !important ;}

.blocker {
	z-index: 100;
}

.modal {
	width: auto !important;
	border-radius: 20px;
	border: 4px solid var(--rojo);
	background-color: var(--white) !important;
	color: var(--blue) !important;
}

.modal a.close-modal[class*="close-"] {
	top: -16px;
	right: -16px;
	width: 32px;
	height: 32px;
	color: transparent !important;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	text-indent: 0;
	background: var(--blue);
	border: 2px solid var(--white);
	border-radius: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
}

.modal a.close-modal[class*="close-"]:after {
	content: "X";
	color: var(--white);
	position: absolute;
}

#msghead {
	margin: 0;
}

.relative {
	position: relative;
}

/* PERSONAL */
#header-logo {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#header-logo img {
	width: 60%;
	max-width: 650px;
}

.footer-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	height: 100%;
}

.footer-logo a {
	height: 100%;
}

.footer-logo img {
	max-height: 100%;
	max-width: 100%;
}

.step {
	display: none;
	height: 100%;
}

.img-column {
	width: 400px;
}

.img-filled {
	max-width: 95%;
	margin: 0 auto;
}

.img-semi-filled {
	max-width: 80%;
	margin: 0 auto;
}

.img-half-filled {
	max-width: 50%;
	margin: 0 auto;
}

.img-logo-brand {
	max-width: 85%;
	margin: 0 auto;
}

.logo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo-big {
	max-width: 80vw;
	max-height: 50vh;
}

ul.register {
	padding: 0;
	margin: 0;
	display: flex;
	row-gap: 1rem;
	flex-direction: column;
}

ul.register li {
	list-style: none;
	margin: 0 auto;
}

ul.register li {
	width: 100%;
}

ul.register li.nopad {
	padding-bottom: 0;
}

#msgbody {
	padding-top: 10px;
	color: var(--gris);
}

#formreg,
#formpost {
	width: 100%;
	gap: 3rem;
}

.vert-separator-always {
	padding-top: 2rem;
}

.onlymobile {
	display: none;
}

@media only screen and (max-width: 1080px) {
	.onlydesktop {
		display: none;
	}

	.onlymobile {
		display: block;
	}

	h1 {
		font-size: 26px;
		line-height: 25px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		margin: 10px;
		font-size: 22px;
	}

	.logo img {
		max-width: 90%;
	}

	.flex-col-wider {
		flex: auto;
	}

	.big {
		font-size: 1.5rem;
	}

	.confirmts-div {
		min-width: 80%;
	}

	.codigoinput {
		width: 100%;
	}

	#formreg,
	#formpost {
		flex-direction: column;
		gap: 1.5rem;
	}

	.flex-row {
		flex-direction: column;
	}

	.vert-separator {
		padding-top: 2rem;
	}

	.leftdesktop {
		text-align: center;
	}

	.footer-logo.flex-end {
		justify-content: center !important;
	}
}

@media only screen and (max-width: 600px) {
	.img-filled {
		max-width: 70%;
	}

	#content-wrap {
		padding: 4% 10%;
	}

	footer {
		padding: 3rem 1rem;
		width: calc(100% - 2rem);
		height: 1.5rem;
		font-size: 0.5rem;
	}

	footer .big {
		font-size: 0.75rem;
	}
}
@media (orientation: landscape) {
	body {
		background-image: url("../images/background-horiz.jpg");
		background-position: bottom;
	}
}

@media (orientation: portrait) {
	body {
		background-image: url("../images/background-vert.jpg");
		background-position: center;
	}
}

@keyframes loading {
	from {
		transform: rotate(0turn);
	}

	to {
		transform: rotate(1turn);
	}
}