@font-face { font-family: "Flame"; src: url("../fonts/subset-Flame-Bold.woff2") format("woff2"), url("../fonts/subset-Flame-Bold.woff") format("woff"), url("../fonts/subset-Flame-Bold.ttf") format("truetype"); font-weight: bold; font-style: normal; font-display: swap; }
@font-face { font-family: "Flame"; src: url("../fonts/subset-Flame-Regular.woff2") format("woff2"), url("../fonts/subset-Flame-Regular.woff") format("woff"), url("../fonts/subset-Flame-Regular.ttf") format("truetype"); font-weight: normal; font-style: normal; font-display: swap; }
@font-face { font-family: "Flame Sans"; src: url("../fonts/subset-FlameSans-Regular.woff2") format("woff2"), url("../fonts/subset-FlameSans-Regular.woff") format("woff"), url("../fonts/subset-FlameSans-Regular.ttf") format("truetype"); font-weight: normal; font-style: normal; font-display: swap; }

:root {
	--azul: #005992;
	--crema: #F5EBDC;
	--crema-over: #DED5C8;
	--red: #FF2D2D;
	--black: #000;
	--white: #FFF;
	--white-over: #DDD;
	--naranja: #FF8732;

	--disabled: #a19d94;
}

html, body {
	height: 100%;
}

body {
	margin: 0 auto;

	font-family: "Flame";
	font-weight: normal;
	font-style: normal;
	font-size: 20px;

	color: var(--white);

	background-color: #000;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;

	display: flex;
	flex-direction: column;
}

html {
	text-align: center;
}

a {
	color: var(--white);
}

a:hover {
	color: var(--white-over);
}

a.red {
	color: var(--red);
}

a.red:hover {
	color: var(--white);
}


button {
	background-color: transparent;
	border: 4px solid var(--red);
	border-radius: 10px;

	display: inline-block;

	font-family: "Flame";
	font-size: 24px;
	color: var(--white);
	text-transform: uppercase;

	padding: 10px 10px 10px 10px;

	position: relative;

	min-width: 200px;
}

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: 16px;
	height: 16px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 4px solid transparent;
	border-top-color: var(--white);
	border-radius: 50%;
	animation: loading 1s ease infinite;
}

input[type=text], input[type=email] {
	width: 100%;
	background-color: transparent;
	color: var(--white);
	border: 4px solid var(--red);
	border-radius: 10px;

	padding: 4px 10px;

	font-family: "Flame Sans";
	font-weight: normal;
	font-style: normal;

	font-size: 20px;
	text-transform: uppercase;

	box-sizing: border-box;

	outline: none;
}

input[type=text]::placeholder, input[type=email]::placeholder {
	color: var(--white);

	font-family: "Flame Sans";
	font-weight: normal;
	font-style: normal;

	font-size: 20px;
	text-transform: uppercase;

	opacity: 1;
}

input[type=text].wh, input[type=email].wh {
	border: 2px solir var(--red);
	color: var(--white);

	text-align: center;
}

span.label {
	font-family: "Flame Sans";
	font-weight: normal;
	font-style: normal;

	font-size: 20px;
	text-transform: uppercase;
	color: var(--white);

	display: inline-block;
}

.nacimiento-container {
	display: flex;
	align-items: center;
	overflow-x: hidden;
	white-space: nowrap;
}

input[type=checkbox] + label {
	display: flex;
	margin: 0;
	cursor: pointer;
	padding-bottom: 10px;

	color: var(--white);
	min-height: 32px;
	line-height: 12px;
	align-items: center;

	font-family: "Flame Sans";
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
}

input[type=checkbox] {
	display: none;
}

input[type=checkbox] + label::before {
	content: "X";
	border: 4px solid var(--red);
	border-radius: 12px;

	width: 32px;
	height: 32px;
	font-size: 32px;

	margin-right: 10px;

	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(--red);
	border-color: var(--red);
	color: var(--white);
}

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;
	background-color: transparent;
	color: var(--white);

	border: 4px solid var(--red);
	border-radius: 10px;

	padding: 4px 10px;

	font-family: "Flame Sans";
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
	text-transform: uppercase;

	cursor: pointer;
}

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: 34px;
	line-height: 30px;
	font-weight: normal;
	text-transform: uppercase;
}

h2 {
	font-size: 30px;
	font-weight: normal;
	text-transform: uppercase;
}

h3 {
	font-size: 28px;
	font-weight: normal;
	text-transform: uppercase;
}

h4 {
	font-size: 14px;
	font-weight: normal;
}

#header {
	width: 100%;
	padding-top: 40px;
	position: relative;
}

#header img.logo {
	max-height: 100px;
}

#page-container {
	display: flex;
	flex-flow: column;
	height: 100vh;
	overflow-y: scroll;

	padding: 15px;
}

#content-wrap {
	flex: 1 0 auto;
	z-index: 1
}

#footer {
	width: 100%;
	height: 2.5rem;
	color: var(--white);
	text-transform: uppercase;
	overflow: hidden;

	flex-shrink: 0;
	margin-top: 20px;

	font-size: 0.8em;

	padding-top: 5px;
	padding-bottom: 5px;
}

#footer div.wrap {
	max-width: 80%;
	margin: 0 auto;
	height: 100%;
}

#termsdetails {
	max-width: 600px;
	color: #000;
	display: none;
}

#termsdetails a {
	color: #444;
}

#termsdetails a:hover {
	color: var(--red);
}

#termsdetails h3 {
	color: var(--red);
}

#termsdetails div {
	font-size: 10px;
}

#messages {
	display: none;
	z-index: 25;
	color: var(--black);
	text-align: center;
	background-color: var(--white);
}

#messages h3 {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

#termsdetails div {
	font-size: 14px;
}

#results-cont {
	gap: 0.5rem;
}

div.loading::after {
	content: "";
	position: absolute;
	width: 64px;
	height: 64px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 4px solid transparent;
	border-top-color: var(--white);
	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%;
}

.h100pct {
	height: 100%;
}

.w50pct {
	width: 50% !important;
}

.w100pct {
	width: 100% !important;
}

.w2rem {
	width: 2rem !important;
}

.w3rem {
	width: 3rem !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;
}

.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;
}

.padtop20 {
	padding-top: 20px;
}

.padtop30 {
	padding-top: 30px;
}

.padtop40 {
	padding-top: 40px;
}

.ls2 {
	letter-spacing: 2px;
}

.ls4 {
	letter-spacing: 4px;
}

.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);
}

.biggest {
	font-size: 72px;
}

.verybig {
	font-size: 48px;
}

.small {
	font-size: 16px;
}

.ui-dialog { z-index: 25 !important ;}

.blocker {
	z-index: 100;
}

.modal {
	width: auto !important;
	border-radius: 10px;
	border: 4px solid var(--red);
}

.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(--red);
	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;
}

.relative {
	position: relative;
}

/* PERSONAL */
.ganador {
	padding-top: 10px;
	padding-bottom: 10px;

	border-bottom: 2px solid var(--white);

	font-size: 20px;
}

.ganador:last-child {
	border: none;
}

#mobile-social {
	display: none;
}

#mobile-social .social-icon {
	max-width: 45%;
}

#mobile-social .wrap {
	display: flex;
	width: 100%;
	justify-content: end;
}

#header-social {
	position: absolute;
	top: 20px;
	right: 40px;
	display: flex;
	z-index: 50;
}

#header-social div {
	padding-left: 10px;
	padding-right: 10px;
}

#header-social .social-icon {
	max-width: 32px;
	max-height: 32px;
}

#footer a {
	color: inherit;
}

.step {
	display: none;
	height: 100%;
}

.img-filled {
	max-width: 95%;
	margin: 0 auto;
}

.img-semi-filled {
	max-width: 75%;
	margin: 0 auto;
}

.img-logo-brand {
	max-width: 30%;
	margin: 0 auto;
}

.logo {
	display: flex;
	flex-direction: column;
}

#begin {
	padding-top: 40px;
	padding-bottom: 40px;
	font-size: 36px;
	margin: 0 auto;
}

#begin p {
	padding: 0;
	margin: 0;
}

#btn-step1 {
	max-width: 160px;
}

#resultspreloader {
	min-height: 150px;
}

.box {
	border: 4px solid var(--red);
	border-radius: 10px;
	padding: 20px;
}

.boxmini {
	border: 4px solid var(--red);
	border-radius: 10px;
	padding: 12px;
}

.boxminiest {
	border: 4px solid var(--red);
	border-radius: 10px;
	padding: 2px;
}

ul.register {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

ul.register li {
	list-style: none;
	width: 50%;

	box-sizing: border-box;
	padding: 0.5rem 1.5rem;
}

ul.register li:nth-child(even) {
	padding: 0.5rem 0 0.5rem 1.5rem;
}

ul.register li:nth-child(odd) {
	padding: 0.5rem 1.5rem 0.5rem 0;
}

ol.answers {
	counter-reset: list;
	padding: 0;
	margin: 0;

	width: 100%;
}

ol.answers li {
	list-style: none;
	list-style-position: inside;
	counter-increment: list;

	height: 40px;

	margin-bottom: 15px;


	font-family: "Flame Sans";
	font-weight: normal;
	font-style: normal;

	font-size: 22px;
	text-align: left;

	border: 4px solid var(--red);
	border-radius: 10px;

	cursor: pointer;

	position: relative;

	display: flex;
	align-items: center;
}

ol.answers li .circle {
	position: absolute;

	border: 2px solid var(--crema);
	height: 60px;
	left: -2px;
	top: -2px;
	width: 60px;
	border-radius: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 38px;
}

ol.answers li .text {
	padding-left: 15px;
	padding-right: 15px;
}

.timeunit {
	font-size: 20px;
}

.confirmts-div {
	min-width: 280px;
	padding: 5px;
}


@media only screen and (max-width: 1650px) {
	.mw800 {
		padding-left: 5%;
		padding-right: 5%;
	}

	#header-social {
		top: 10px;
		right: 20px;
	}
}

@media only screen and (max-width: 1366px) {
	#header-social {
		top: 5px;
		right: 10px;
	}

	#footer {
		font-size: 12px;
	}

	.mw600 {
		padding-left: 5%;
		padding-right: 5%;
	}
}

@media only screen and (max-width: 768px) {
	h1 {
		font-size: 24px;
		line-height: 22px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		margin: 10px;
		font-size: 18px;
	}

	.ganador {
		font-size: 18px;
	}

	#begin {
		padding-top: 25px;
		padding-bottom: 25px;
		font-size: 24px;
	}

	#mobile-social {
		display: flex;
		padding-bottom: 20px;
		z-index: 50;
	}

	#header-social {
		display: none;
	}

	#header {
		padding-top: 20px;
	}

	#header img.logo {
		max-width: 30%;
	}

	.logo {
		max-width: 50%;
		position: relative;
		top: 2%;
	}

	#footer {
		font-size: 9px;
	}

	#footer div.wrap {
		max-width: 95%;
	}

	#step1 .logomain {
		max-width: 90%;
		display: block !important;
	}

	#step1 .logomain img {
		max-height: 100%;
	}

	#step10 h2 {
		margin: 8px;
	}

	ul.register li {
		width: 100%;

		padding: 0.5rem 1.5rem !important;
	}

	.flex-col {
		flex-direction: row;
		flex: auto;

		padding-left: 5%;
		padding-right: 5%;
	}

	.flex-col-wider {
		flex: auto;
	}

	.vert-separator {
		padding-top: 30px;
	}

	.vert-separator-logo {
		padding-top: 25%;
	}

	.box {
		padding: 15px;
	}

	ol.answers li {
		font-size: 18px;
		line-height: 16px;
	}

	ol.answers li .text {
		padding-left: 10px;
		padding-right: 10px;
	}

	.biggest {
		font-size: 50px;
	}

	.verybig {
		font-size: 36px;
	}

	.mw600 {
		padding-left: 3%;
		padding-right: 3%;
	}

	.mw500 {
		padding-left: 4%;
		padding-right: 4%;
	}

	.mw400 {
		padding-left: 5%;
		padding-right: 5%;
	}

	#page-container {
		padding: 8px;
	}

	#results-cont {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
	}

	#results-cont .results-div {
		flex:1 1 auto;
		width: 40%;
		max-height: 68px;
		padding-top: 25px;
	}

	.confirmts-div {
		min-width: 80%;
	}

	.boxmini {
		min-width: 95%;
	}

	.boxminiest {
		min-width: 95%;
	}

	#results-cont {
		gap: 0;
	}
}

@media only screen and (max-width: 400px) {
	.flex-col {
		padding-left: 2%;
		padding-right: 2%;
	}
}


@media (orientation: landscape) {
	body {
		background: url("../images/fondo.jpg") no-repeat center center fixed;
	}
}

@media (orientation: portrait) {
	body {
		background: url("../images/fondo_vert.jpg") no-repeat center center fixed;
	}
}

@keyframes loading {
	from {
		transform: rotate(0turn);
	}

	to {
		transform: rotate(1turn);
	}
}