/* GENERAL */
a {
	text-decoration: none !important;
	outline: none !important;
}
 
a:hover {
	text-decoration: none !important;
}
.clear {
	clear:both;
	display:block;
	height:0;
	overflow:hidden;
	visibility:hidden;
	width:0;
}
.absoluta {
	position: absolute;
}
.relativa {
	position: relative;
}

.oculto {
	display: none;
}
.bold {
	font-weight:bold;
}
.over_hidden {
	overflow:hidden;
}
.redonda {
	border-radius: 50%;
}
.text-center {
	text-align:center;
}
.sin_padding {
	padding:0;
}
.shadow {
	-webkit-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.1); 
	box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.1);
}
.click {
	cursor: pointer;
}
.click:hover {
	opacity: .8;
}
.pointer:hover {
	cursor: pointer;
}
.center {
	text-align: center;
}
.capital {
	text-transform: uppercase;
}
.inactivo {
	cursor: not-allowed !important;
}
video {
	position: absolute;
    top: 0px;
    left: 0;
	width: 100%;
    z-index: 1;
}
.separador {
	position: relative;
	width:340px;
	height:2px;
	margin: 20px auto;
	background:#fe0202;
	border-radius:2px;
}

.animated.bounceIn {
	backface-visibility: hidden;
	transform: translateZ(0);
	-webkit-font-smoothing: subpixel-antialiased;
}
.animado {
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.animado1s {
	-webkit-transition: all 1s ease-out;
	-moz-transition: all 1s ease-out;
	-ms-transition: all 1s ease-out;
	-o-transition: all 1s ease-out;
	transition: all 1s ease-out;
}
.animado10s {
	-webkit-transition: all 10s ease-out;
	-moz-transition: all 10s ease-out;
	-ms-transition: all 10s ease-out;
	-o-transition: all 10s ease-out;
	transition: all 10s ease-out;
}

/* BOTONES */
.boton {
	background: #fe0202;
	color:#fff;
	font-size: 24px;
	text-align:center;
	padding: 10px 20px;
	margin: 0 auto;
	width: fit-content;
	font-family: 'Graphik-Bold';
	
	-webkit-transition: all 1s ease-out;
	-moz-transition: all 1s ease-out;
	-ms-transition: all 1s ease-out;
	-o-transition: all 1s ease-out;
	transition: all 1s ease-out;
}
.boton:hover {
	cursor: pointer;
	opacity: .7 !important;
}

/* POPUPS */
.popup {
	position:absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height:100%;
	background:rgba(0,0,0,.6);
	display:flex;
	align-items: center;
	justify-content:center;
	z-index:30;
}
.popup.oculto {
	display:none;
}
.popup .popup-cerrar {
	position:absolute;
	top: 24px;
    right: 25px;
    width: 20px;
    height: 20px;
	background: url(../img/cerrar-popup.png) no-repeat;
	background-size:100% 100%;
}
.popup .popup-cerrar:hover {
	cursor:pointer;
	opacity:.7;
}
.popup .contenido-popup {
	position:absolute;
	top: 60px;
	left: 60px;
	width: 1290px;
	height:690px;
	padding:10px;
	align-items:flex-start;
	background: #ececec;
}
.popup h2 {
	background: #282722;
	color:#fff;
	text-align:center;
	padding:10px;
	margin:0 0 20px 0;
	font-size:24px;
}
.popup .body-popup {
	margin-top:50px;
}
.popup p {
	padding:10px 20px;
}
.popup img {
	width:95%;
}
#popup-resultados p {
	font-size:30px;
}
/* CONTENIDO */
.splash {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:flex;
	flex-flow:column;
	align-items:center;
	justify-content:center;
}
