@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

.logo_header {
    text-align: center;
    position: relative;
    margin-bottom: 0px;
    float: left;
	width: 100%;
	margin-top: 50px;
}


.logo_header {
    position: absolute;
    top: 25px;
    left: 5px;
    width: 250px;
    margin: 0px;
}



.logo_header img {
    width: 250px;
}

* {
	box-sizing: border-box;
}

body {
	display: flex;
	/*justify-content: center;*/
	align-items: center;
	flex-direction: column;
	font-family: 'Montserrat', sans-serif;
	/*height: 100vh;*/
	margin: -20px 0 50px;
    background-repeat: no-repeat;
    background: url(../img/fondo.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

h1 {
	font-weight: bold;
	margin: 0;
}

h2 {
	text-align: center;
}

p {
	font-size: 14px;
	font-weight: 100;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 20px 0 30px;
}

span {
	font-size: 12px;
}

a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
}

button {
	border-radius: 0px !important;
    border: 1px solid #0AF98D;
    background-color: #0AF98D;
    color: #191919;
    font-size: 17px !important;
    font-weight: bold;
    padding: 10px 15px;
    letter-spacing: 1px;
    text-transform: uppercase !important;
    transition: transform 80ms ease-in;
}

#button_iniciar_r,
#button_iniciar {
    width: 115px;
	font-weight: 900;
	font-family: 'Fira Sans', sans-serif;
}

::-webkit-input-placeholder { 
	color: #fff;
}

:-ms-input-placeholder { 
	color: #fff;
}

::placeholder {
	color: #fff;
}

button:active {
	transform: scale(0.95);
}

input:focus,
button:focus {
	outline: none !important;
}

button.ghost {
	background-color: #0AF98D;
    border-color: #0AF98D;
    margin-top: 20px;
    font-family: 'Fira Sans', sans-serif;
}

form {
	background-color: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
}

.h1_section1 {
	color: #ffffff;
    margin-bottom: 5px;
    font-family: 'Fira Sans', sans-serif;
    font-style: italic;
    font-size: 2.3rem;
    font-weight: bold;
}

.overlay-left h1{
    font-size: 2.3em;
    font-weight: bold;
    font-style: italic;
    font-family: 'Fira Sans', sans-serif;
}

.overlay-left p{
    font-size: 15px;
    font-weight: 300;
    font-family: 'Fira Sans', sans-serif;
}

.h1_section2{
    font-size: 2.3em;
    font-weight: bold;
    font-style: italic;
	font-family: 'Fira Sans', sans-serif;
	color: #fff;
    margin-bottom: 5px;
}

.span_section2_recuperar,
.span_section2{
    font-size: 15px;
    font-weight: 300;
    font-family: 'Fira Sans', sans-serif;
    margin-bottom: 10px;
    color: #fff;
}


.span_section1 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 15px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
}

#text_iniciar_r {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 300;
    font-family: 'Fira Sans', sans-serif;
    color: #fff;
    border-top: 1px solid #ffffff2b;
    padding-top: 17px; 
}

#input_id_r,
#input_id {
	background-color: #0AF98D00;
	padding: 10px 10px;
	margin: 8px 0;
	width: 230px;
	text-align: center;
	font-size: 20px;
	margin-bottom: 40px;
	font-weight: bold;
	color: #fff;
	border: 1px solid #0AF98D;
}

.mensaje_error_recuperar {
    margin-top: 0px !important; 
}

span#registro_recuperar {
    cursor: pointer;
    text-decoration: underline;
}

.mensaje_sucess_recuperar {
    margin-top: 0px; 
}

.container_slider {
    background-color: #ab030300;
    border-radius: 0px;
    box-shadow: 2px 10px 40px rgba(22,20,19,0.4);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 740px;
    margin-bottom: 50px;
    margin-top: 60px;
}

.form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
}

.container_slider.right-panel-active .sign-in-container {
	transform: translateX(100%);
}

.sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.container_slider.right-panel-active .sign-up-container {
    transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	/*animation: show 0.6s;*/
}

@keyframes show {
	0%, 49.99% {
		opacity: 0;
		z-index: 1;
	}
	
	50%, 100% {
		opacity: 1;
		z-index: 5;
	}
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

.overlay-right h1 {
    font-size: 2.3em;
    font-weight: bold;
    font-style: italic;
    font-family: 'Fira Sans', sans-serif;
}

.overlay-right p {
    font-size: 15px;
    font-weight: 300;
    font-family: 'Fira Sans', sans-serif;
}

.container_slider.right-panel-active .overlay-container{
	transform: translateX(-100%);
}

.overlay {
	background: rgba(250, 11, 26, 0.9);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
  	transform: translateX(0);
	/*transition: transform 0.6s ease-in-out;*/
}

.container_slider.right-panel-active .overlay {
  	transform: translateX(50%);
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.overlay-left {
	transform: translateX(-20%);
}

.container_slider.right-panel-active .overlay-left {
	transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
}

.container_slider.right-panel-active .overlay-right {
	transform: translateX(20%);
}

.mensaje_error_recuperar span, .mensaje_sucess_recuperar span,
.mensaje_error span, .mensaje_sucess span {
    font-size: 16px;
    font-family: 'Fira Sans', sans-serif;
    color: #fff;
    line-height: 28px;
    font-weight: 100;
}

.mensaje_error_recuperar i,
.mensaje_sucess_recuperar i,
.mensaje_error i,
.mensaje_sucess i {
    font-size: 90px;
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 11px;
}

.mensaje_sucess_recuperar i,
.mensaje_sucess i {
    color: #28a745;
}

.mensaje_error_recuperar i,
.mensaje_error i {
    color: #dc3545;
}

.mensaje_sucess_recuperar, .mensaje_error_recuperar,
.mensaje_sucess, .mensaje_error {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 20px;
	line-height: normal;
	margin-top: 50px;
}



/* Input UPAEP */

.input {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 1em;
    max-width: 350px;
    width: calc(100% - 2em);
    vertical-align: top;
}

.input__field {
    position: relative;
    display: block;
    float: right;
    padding: 0.8em;
    width: 60%;
    border: none;
    border-radius: 0;
    background: #ffffff;
    color: #fff;
    font-weight: 400;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-appearance: none;
    font-size: 15px;
    height: 37px;
}

.input__label {
    display: inline-block;
    float: right;
    padding: 0 1em;
    width: 40%;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input__label-content {
    position: relative;
    display: block;
    padding: 1.6em 0;
    width: 100%;
}

.input__field--upaepr {
	width: 100%;
	background-color: #131313;
	border: 1px solid #0AF98D;
	-webkit-transition: background-color 0.25s, border-color 0.25s;
	transition: background-color 0.25s, border-color 0.25s;
}

.input__field--upaepp,
.input__field--upaep {
	width: 100%;
	background-color: #000;
	border: 1px solid #0AF98D;
	-webkit-transition: background-color 0.25s, border-color 0.25s;
	transition: background-color 0.25s, border-color 0.25s;
}

.input__label--upaepp,
.input__label--upaepr,
.input__label--upaep {
	width: 100%;
	text-align: left;
	position: absolute;
	bottom: 100%;
	pointer-events: none;
	overflow: hidden;
	padding: 0 1.25em;
	-webkit-transform: translate3d(0, 3em, 0);
	transform: translate3d(0, 3em, 0);
	-webkit-transition: -webkit-transform 0.25s;
	transition: transform 0.25s ;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}

.input__label-content--upaepp,
.input__label-content--upaepr,
.input__label-content--upaep {
	color: #ffffff;
	padding: 0.25em 0;
	-webkit-transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	font-weight: 500;
	font-size: 16px;
	font-family: 'Fira Sans', sans-serif;
	text-align: center;
	font-weight: bold;
}

.input__label-content--upaepp::after,
.input__label-content--upaepr::after,
.input__label-content--upaep::after {
	content: attr(data-content);
	position: absolute;
	font-weight: bold;
	bottom: 91%;
	left: 0px; 
	height: 18px;
	width: 100%;
	color: #bf0037;
	padding: 1px 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
}

.input__field--upaepp:focus + .input__label--upaepp,
.input--filled .input__label--upaepp,
.input__field--upaepr:focus + .input__label--upaepr,
.input--filled .input__label--upaepr,
.input__field--upaep:focus + .input__label--upaep,
.input--filled .input__label--upaep {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.input__field--upaepp:focus + .input__label--upaepp .input__label-content--upaepp,
.input--filled .input__label-content--upaepp,
.input__field--upaepr:focus + .input__label--upaepr .input__label-content--upaepr,
.input--filled .input__label-content--upaepr,
.input__field--upaep:focus + .input__label--upaep .input__label-content--upaep,
.input--filled .input__label-content--upaep {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.input__field--upaepp:focus + .input__field--upaepp,
.input--filled .input__field--upaepp,
.input__field--upaepr:focus + .input__field--upaepr,
.input--filled .input__field--upaepr,
.input__field--upaep:focus + .input__field--upaep,
.input--filled .input__field--upaep {
	background-color: transparent;
	border-color: #bf0037;
}

.input__field:focus {
	outline: none;
}


.label_input {
    color: #fff;
    font-weight: 400;
    font-family: 'Fira Sans', sans-serif;
    margin-bottom: 5px;
}

.select_fechanacimiento {
	width: 262px;
	margin-bottom: 5px;
}

.loading_localizacion {
    color: #fff;
    font-weight: 100;
    font-family: 'Fira Sans', sans-serif;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 17px;
}

.visualizar_aviso {
    margin-bottom: 20px;
    padding-left: 30px;
}

.visualizar_aviso a, .visualizar_aviso a:hover {
    color: #fff;
    font-weight: 100;
    font-size: 12px;
    font-style: italic;
}

select#dia_fechanacimiento, 
select#mes_fechanacimiento, 
select#ano_fechanacimiento {
    -webkit-appearance: none;
    height: 35px;
    margin-bottom: 4px;
    margin-top: 4px;
    width: 100%;
    border-radius: 0px;
    border: 1px solid #0AF98D;
    background-color: #fff0;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-family: 'Fira Sans', sans-serif;
    outline: none;
    font-size: 16px;
    text-align-last: center;
    background: url(../img/FlechaBajar_obscura.svg);
    background-repeat: no-repeat;
    background-position: 92% 13px;
    background-size: 11px;
}

select#ano_fechanacimiento {
    text-align-last: left;
    padding-left: 7px;
}


/* Checkbox */

.container_checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: 10px;
    color: #fff;
    font-family: 'Fira Sans', sans-serif;
  }
  
  .container_checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  
  .checkmark {
	position: absolute;
	top: -5px;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee0;
	border: 1px solid #0AF98D;
	border-radius: 4px;
	color: #fff;
	}
  
  .container_checkbox:hover input ~ .checkmark {
	background-color: #ccc0;
	}
  
  .container_checkbox input:checked ~ .checkmark {
	background-color: #ff4b2c00;
	}
  
  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  
  .container_checkbox input:checked ~ .checkmark:after {
	display: block;
  }
  
  .container_checkbox .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid #0AF98D;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	}
  
  

  /* Select */

  select#pais {
    -webkit-appearance: none;
    height: 35px;
    margin-bottom: 2px;
    margin-top: 10px;
    width: 262px;
    border-radius: 0px;
    padding-left: 11px;
    border: 1px solid #0AF98D;
    background-color: #fff0;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-family: 'Fira Sans', sans-serif;
    outline: none;
    font-size: 16px;
	text-align-last: center;
	background: url(../img/FlechaBajar_obscura.svg);  
    background-repeat: no-repeat;
    background-position: 96% 11px;
    background-size: 15px;
}

select#estado {
    -webkit-appearance: none;
    height: 35px;
    margin-bottom: 8px;
    margin-top: 18px;
    width: 262px;
    border-radius: 0px;
    padding-left: 11px;
    border: 1px solid #0AF98D;
    background-color: #fff0;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-family: 'Fira Sans', sans-serif;
    outline: none;
	text-align-last: center;
	background: url(../img/FlechaBajar_obscura.svg);  
    background-repeat: no-repeat;
    background-position: 96% 11px;
    background-size: 15px;
}

/* General */

#button_recuperar,
#button_register{
	padding: 5px 15px;
}

#toast-container>div{
	box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75) !important;
}

.mensaje_recuperar {
    margin-top: 21px;
    color: #0AF98D;
    font-size: 14px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    cursor: pointer;
}

.content_recuperar {
    background-color: #131313;
    margin-top: 20px;
    padding-top: 15px;
    padding-bottom: 20px;
}

.telefonocodigo_cotent_recuperar {
    margin: 11px;
    margin-top: 0px;
    margin-bottom: 20px;
}

span.span_section2_recuperar {
    margin-bottom: 12px !important;
    display: block;
}

.loading_prepas img,
.loading_recuperar img,
.loading_registro img {
    width: 175px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sucess_iniciar {
    color: #fff;
    background-color: #28a7459e;
    border-color: #28a745;
    font-weight: 300 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
}

.error_iniciar {
    color: #fff;
    font-weight: 300 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    background-color: #dc354591;
    border-color: #dc354591;
}

div#iniciar_mensaje_r,
div#iniciar_mensaje {
    color: #ffffff;
    font-family: 'Fira Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 28px;
    padding: 7px;
}


/* Contador */


.fecha {
    position: relative;
    text-align: center;
    float: left;
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    font-family: 'Fira Sans', sans-serif;
    font-style: italic;
    width: 100%;
    margin-top: 40px;
}

.contador_date {
    position: relative;
    float: left;
    width: 100%;
}

.aztech {
    position: relative;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    cursor: pointer;
    float: left;
}

.countdown-background {
    width: 100%;
    height: 310px;
    position: absolute;
    left: 0;
    top: 20px;
}

div.banner {
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

table.countdown {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin: 40px auto;
}

table.countdown thead th, table.countdown tfoot td {
    font-weight: 100;
    font-size: 21px;
    text-align: center;
    font-family: 'Fira Sans', sans-serif;
}

table.countdown tbody.countdown-body {
    font-weight: 700;
    font-size: 96px;
}

table.countdown tbody.countdown-body tr td {
    min-width: 155px;
    padding: 0 10px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 900;
}

@media (max-width: 991px) and (min-width: 768px) {
    table.countdown thead th, table.countdown tfoot td {
        font-size: 18px;
    }

    table.countdown tbody.countdown-body {
        font-size: 90px;
    }
}

@media (max-width: 767px) and (min-width: 576px) {
    table.countdown thead th, table.countdown tfoot td {
        font-size: 12px;
    }

    table.countdown tbody.countdown-body {
        font-size: 75px;
    }

    table.countdown tbody.countdown-body tr td {
        min-width: 130px;
        padding: 0 10px;
    }

    table.countdown {
        margin: 70px auto;
    }
}

@media (max-width: 575px) {
    .countdown-background {
        height: 200px !important;
    }

    table.countdown thead th, table.countdown tfoot td {
        font-size: 12px;
    }

    table.countdown tbody.countdown-body {
        font-size: 45px;
    }

    table.countdown tbody.countdown-body tr td {
        min-width: 82px;
        padding: 0 10px;
    }

    div.banner {
        height: 240px !important;
    }
}

@media (max-width: 360px) {
    table.countdown {
        margin: 25px auto;
    }

    table.countdown thead th, table.countdown tfoot td {
        font-size: 14px;
    }

    table.countdown tbody.countdown-body {
        font-size: 35px;
    }

    table.countdown tbody.countdown-body tr td {
        min-width: 80px;
        font-size: 49px;
    }

    div.banner {
        height: 135px !important;
    }

    .countdown-background {
        height: 140px !important;
    }
}

/* Animaciones */

.tracking-in-expand-fwd-bottom {
	-webkit-animation: tracking-in-expand-fwd-bottom 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand-fwd-bottom 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

 @-webkit-keyframes tracking-in-expand-fwd-bottom {
	0% {
	  letter-spacing: -0.5em;
	  -webkit-transform: translateZ(-700px) translateY(500px);
			  transform: translateZ(-700px) translateY(500px);
	  opacity: 0;
	}
	40% {
	  opacity: 0.6;
	}
	100% {
	  -webkit-transform: translateZ(0) translateY(0);
			  transform: translateZ(0) translateY(0);
	  opacity: 1;
	}
  }
  @keyframes tracking-in-expand-fwd-bottom {
	0% {
	  letter-spacing: -0.5em;
	  -webkit-transform: translateZ(-700px) translateY(500px);
			  transform: translateZ(-700px) translateY(500px);
	  opacity: 0;
	}
	40% {
	  opacity: 0.6;
	}
	100% {
	  -webkit-transform: translateZ(0) translateY(0);
			  transform: translateZ(0) translateY(0);
	  opacity: 1;
	}
  }
  

.tracking-in-contract-bck {
	-webkit-animation: tracking-in-contract-bck 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-contract-bck 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

 @-webkit-keyframes tracking-in-contract-bck {
	0% {
	  letter-spacing: 1em;
	  -webkit-transform: translateZ(400px);
			  transform: translateZ(400px);
	  opacity: 0;
	}
	40% {
	  opacity: 0.6;
	}
	100% {
	  -webkit-transform: translateZ(0);
			  transform: translateZ(0);
	  opacity: 1;
	}
  }
  @keyframes tracking-in-contract-bck {
	0% {
	  letter-spacing: 1em;
	  -webkit-transform: translateZ(400px);
			  transform: translateZ(400px);
	  opacity: 0;
	}
	40% {
	  opacity: 0.6;
	}
	100% {
	  -webkit-transform: translateZ(0);
			  transform: translateZ(0);
	  opacity: 1;
	}
  }
  

  /* Responsive */

@media only screen and (max-width: 768px) and (min-width: 300px)  {
	.logo_header {
        position: relative;
		margin-top: 20px;
	}

	.logo_header img {
		width: 180px;
	}

	.fecha {
		margin-top: 36px;
		font-size: 37px;
	}

	div#container {
		width: 320px;
		min-height: 1015px;
		margin: 28px;
	}

	body {
		height: auto;
	}

	form {
		padding: 0 16px !important;
	}

	.container_slider.right-panel-active .sign-up-container {
		transform: inherit !important;
	}

	.sign-in-container,
	.sign-up-container {
		width: 100% !important;
	}

	.overlay-container {
		top: 0% !important;
		left: 0% !important;
		width: 100% !important;
		height: 144px !important;
	}

	.overlay-left h1 {
		font-size: 26px !important;
	}

	.overlay-right h1 {
		font-size: 24px !important;
		margin-top: 12px !important;
		margin: 0px !important;
	}

	.overlay-right p {
		font-size: 12px !important;
		margin: 3px !important;
		line-height: normal !important;
	}

	.overlay-left p {
		font-size: 13px !important;
        margin: 0px !important;
        line-height: normal;
	}

	button.ghost {
		margin-top: 4px !important;
		font-size: 13px !important;
		padding: 7px 22px !important;
	}

	.container_slider.right-panel-active .overlay-container {
		transform: inherit !important;
	}

	.h1_section2 {
		margin-top: 118px !important;
	}
}

/* Idiomas */
.button_idiomas {
    position: absolute;
    top: 20px;
    right: 20px;
}

.button-lenguaje {
    width: 120px;
    height: 37px;
    border: none;
    color: #fff;
    background-color: rgba(250, 11, 26, 0.9);
    border-radius: 0px !important;
    float: right;
    margin-right: 10px;
    padding: 6px;
    text-align: center;
    cursor: pointer;
}

.button-lenguaje span {
    margin-left: 4px;
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 15px;
    font-family: 'Fira Sans', sans-serif;
}

.button-lenguaje .es {
    position: relative;
    height: 20px;
    width: 25px;
    float: right;
    margin-right: 9px;
    margin-left: 9px;
    margin-top: 1px;
    background: transparent url(../../../images/plantillas/iconos/icon_idioma_es.svg);
    background-repeat: no-repeat;
}

.button-lenguaje .en {
    position: relative;
    height: 20px;
    width: 25px;
    float: right;
    margin-right: 9px;
    margin-left: 9px;
    margin-top: 1px;
    background: transparent url(../../../images/plantillas/iconos/icon_idioma_en.svg);
    background-repeat: no-repeat;
}

span.text_aviso {
    font-size: 15px;
    font-weight: 500;
}

/*  Radio slider */


.switch {
    position: relative;
    height: 60px;
    width: 300px;
    margin: 20px auto;
    background: rgb(234 30 35);
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
}

.switch-input {
    display: none;
}

.switch-label-off {
    padding-left: 2px;
}

label.switch-label.switch-label-off {
    color: #3e3e3e;
}

.switch-label {
    position: relative;
    z-index: 2;
    float: left;
    width: 150px;
    line-height: 60px;
    font-size: 21px;
    color: rgb(255, 255, 255);
    text-align: center;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    font-weight: 800;
    font-family: 'Fira Sans', sans-serif;
}

.switch-input:checked + .switch-label {
    font-weight: bold;
    color: rgba(0, 0, 0, 0.65);
    text-shadow: 0 1px rgba(255, 255, 255, 0.25);
    -webkit-transition: 0.15s ease-out;
    -moz-transition: 0.15s ease-out;
    -ms-transition: 0.15s ease-out;
    -o-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
    -webkit-transition-property: color, text-shadow;
    -moz-transition-property: color, text-shadow;
    -ms-transition-property: color, text-shadow;
    -o-transition-property: color, text-shadow;
    transition-property: color, text-shadow;
}

.switch-label-on {
    padding-right: 2px;
}

.switch-input:checked + .switch-label-on ~ .switch-selection {
    left: 60px;
}

.switch-selection {
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    display: block;
    width: 150px;
    height: 60px;
    border-radius: 3px;
    background-color: #0AF98D;
    transition: left 0.15s ease-out;
    color: #000;
}

/* Segunda fase */

.seccion_config {
    padding-top: 60px !important;
    background-color: rgba(0, 0, 0, 0.83);
    padding: 40px;
    color: #fff;
    width: 900px;
    position: relative;
    margin-top: 200px;
}

.seccion_config > .titulo {
    font-size: 27px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
    display: none;
}

.content_brumildo .titulo {
    font-size: 24px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    font-style: italic;
}

.content_carrera .titulo {
    font-size: 24px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    font-style: italic;
}

.content_validacion .titulo {
    font-size: 24px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    font-style: italic;
}

/* OWL */

div#item_brumildo {
    background-color: #fff;
    border-radius: 4px;
    padding: 8px;
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    cursor: pointer;
    height: 160px;
}

div#item_brumildo_prepa {
    background-color: #fff;
    border-radius: 4px;
    padding: 8px;
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    cursor: pointer;
    height: 190px;
}

.owl-carousel .owl-item #item_brumildo_prepa img {
    height: 170px;
    object-fit: contain;
}

.nombre_brumildo {
    color: #616161;
    font-size: 18px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 600;
    text-align: center;
    margin-top: 13px;
}

.owl-carousel .owl-item img {
    height: 140px;
    object-fit: contain;
}

.owl-nav {
    color: #eaeaeafa;
    position: relative;
    float: left;
    width: 100%;
}

.owl-prev, .owl-next {
    font-size: 45px;
    width: 50%;
    position: relative;
    float: left;
    text-align: center;
}

.owl-dots {
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.owl-dot.active span {
    opacity: 1;
}

.owl-dots span {
    display: block;
    width: 24px;
    height: 24px;
    margin: 5px 7px;
    filter: Alpha(Opacity=50);
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #eaeaea;
    cursor: pointer;
}


.bulled_menu .bulled_item {
    width: 15px;
    height: 15px;
    border-radius: 30px;
    margin: 8px;
    border: 2px solid #0AF98D;
    position: relative;
    float: left;
}

.bulled_menu .bulled_item_active {
    background-color: #0AF98D;
}

.bulled_menu {
    position: absolute;
    top: 15px;
    right: 9px;
}


.msg_success_validacion {
    width: 100%;
    text-align: center;
    font-weight: 400;
    color: #fff;
    font-family: 'Fira Sans', sans-serif;
    font-style: italic;
    position: relative;
    float: left;
    margin: 0 auto;
    margin-bottom: 10px;
    margin-top: 90px;
}

.msg_success_validacion i {
    display: block;
    font-size: 80px;
    margin-bottom: 15px;
}

.msg_success_validacion span {
    font-size: 31px;
}

.check_padrefamilia .titulo {
    font-size: 24px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    font-style: italic;
}


/* Check Carrera */

.container_carrera {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.container_carrera input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
.checkmark_carrera {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 3px solid rgb(26 219 132); 
    border-radius: 24px;
}

.container_carrera:hover input ~ .checkmark_carrera {
    background-color: rgb(26 219 132 / 20%);
}

.container_carrera input:checked ~ .checkmark_carrera {
    background-color: rgb(26 219 132);
}

.checkmark_carrera:after {
    content: "";
    position: absolute;
    display: none;
}

.container_carrera input:checked ~ .checkmark_carrera:after {
    display: block;
}

.container_carrera .checkmark_carrera:after {
    left: 9px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid #ffffff00;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


h1.nombre_decanato {
    font-size: 23px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 200;
    margin-bottom: 15px;
    text-align: left;
    padding-bottom: 5px;
}

.item_decanato ul {
    padding: 0px;
}

.container_carrera {
    font-size: 15px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    text-align: left;
}

span.modalidad_span {
    margin-left: 7px;
    font-style: italic;
    font-weight: 200;
    font-size: 13px;
}

button#button_list_carrera {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 20px;
}

input#verificar_id {
    background-color: #0AF98D00;
    padding: 7px 8px;
    margin: 0px 0;
    width: 230px;
    text-align: center;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: bold;
    color: #fff;
    border: 1px solid #0AF98D;
    height: 49px;
}

button#button_verificar_id {
    height: 49px;
    border: 4px solid #0AF98D;
}

.msg_error_prepa,
.msg_error_validacion {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.msg_error_prepa i,
.msg_error_validacion i {
    color: #dc3545;
    font-size: 40px;
}

.msg_error_prepa span,
.msg_error_validacion span {
    color: #fff;
    font-size: 20px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 100;
    text-align: center;
    display: block;
    margin-top: 5px;
}

.content_validacion {
    text-align: center;
}

select#codigo_pais_recuperar,
select#codigo_pais {
    -webkit-appearance: none;
    height: 37px;
    margin-bottom: 4px;
    margin-top: 4px;
    padding-left: 7px;
    width: 100%;
    border-radius: 0px;
    border: 1px solid #0AF98D;
    background-color: #fff0;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-family: 'Fira Sans', sans-serif;
    outline: none;
    font-size: 16px;
    text-align-last: left;
    background: url(../img/FlechaBajar_obscura.svg);
    background-repeat: no-repeat;
    background-position: 92% 13px;
    background-size: 11px;
}

.telefonocodigo_cotent {
    margin-bottom: 10px;
    width: 262px;
    position: relative;
    float: left;
}

.codigo_content {
    position: relative;
    width: 120px;
    float: left;
    margin-top: 8px;
}

.telefono_content {
    position: relative;
    width: 130px;
    float: left;
    margin-left: 10px;
}

select#dia_fechanacimiento option, 
select#mes_fechanacimiento option, 
select#ano_fechanacimiento option,
#pais option,
#estado option{
    margin: 40px;
    background: #000000fc;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

div#input_search {
    width: 215px;
    margin: 0 auto;
    margin-bottom: 30px;
}

input#search {
    width: 100%;
    height: 100%;
    padding: 0 10% 0 10px;
    font-weight: 400;
    background: transparent;
    -webkit-transition: font-size 0.5s cubic-bezier(0.7,0,0.3,1);
    transition: font-size 0.5s cubic-bezier(0.7,0,0.3,1);
    font-size: 15px;
    border: 1px solid #767374;
    height: 37px;
    font-family: 'Fira Sans', sans-serif;
    color: #fff;
    background: url(https://upaep.mx/templates/licenciaturas/css/magnifier.svg) no-repeat center center;
    background-size: 18px 18px;
    background-position: 95% 9px;
}

.titulo_validacion span {
    font-size: 20px;
}

.titulo_validacion {
    font-size: 20px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    font-style: italic;
}

div#button_verificar_2 {
    margin-top: 21px;
    color: #0AF98D;
    font-size: 14px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    cursor: pointer;
}

p#p_verificar_2 {
    text-align: center;
    font-size: 16px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
}

button.btn.footer_modal_close {
    font-family: 'Fira Sans', sans-serif;
}

h4#title_verificar_2 {
    margin-bottom: 5px;
    font-family: 'Fira Sans', sans-serif;
    font-style: italic;
    font-size: 24px;
    font-weight: bold;
}

input#verificar_id_2 {
    background-color: #0AF98D00;
    padding: 10px 10px;
    width: 230px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #585858;
    border: 1px solid #d0d0d0;
    margin: 0 auto;
    display: flex;
    margin-bottom: 20px;
}

button#button_verificar_id_2 {
    margin: 0 auto;
    display: flex;
    background-color: rgba(250, 11, 26, 0.9); 
    border: 0;
    color: #fff;
}

#verificar_id_2::placeholder {
    color: #585858 !important;
}

#verificar_id_2:-ms-input-placeholder { 
    color: #585858 !important;
}

#verificar_id_2::-ms-input-placeholder { 
    color: #585858 !important;
}

div#button_verificar_3 {
    margin-top: 21px;
    color: #0AF98D;
    font-size: 14px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    cursor: pointer;
}

.check_prepaupaep .titulo {
    font-size: 24px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    font-style: italic;
}


.check_prepaupaep .titulo2 {
    font-size: 24px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    font-style: italic;
}

.form_prepa {
    text-align: center;
    width: 300px;
    margin: 0 auto;
}

div#return_login_prepa {
    font-size: 16px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
    font-style: italic;
    margin-top: 35px;
    cursor: pointer;
}

.check_orientadorvocacional .titulo {
    font-size: 24px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    font-style: italic;
}


.check_orientadorvocacional .titulo2 {
    font-size: 24px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    font-style: italic;
}

input#text_orientacionvocacinal {
    background-color: #0AF98D00;
    padding: 10px 10px;
    margin: 8px 0;
    width: 300px;
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: bold;
    color: #fff;
    border: 1px solid #0AF98D;
    display: block;
    margin: 0 auto;
}

button#button_orientacion {
    margin: 0 auto;
    display: block;
    margin-top: 30px;
}

.asesor_ficha {
    position: fixed;
    bottom: 15px;
    left: 0px;
    width: 310px;
}


@media only screen and (max-width: 768px) and (min-width: 300px)  {

    .asesor_ficha {
        width: 210px;
        z-index: 3;
    }

    .button_idiomas {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 999;
    }

    .button-lenguaje {
        width: 74px;
        height: 59px;
    }

    .button-lenguaje span {
        margin-left: 0px;
        font-size: 14px;
    }

    .button-lenguaje .es,
    .button-lenguaje .en {
        position: relative;
        height: 20px;
        width: 25px;
        float: left;
        margin-right: 19px;
        margin-left: 19px;
        margin-top: 1px;
        background: transparent url(../../../images/plantillas/iconos/icon_idioma_en.svg);
        background-repeat: no-repeat;
    }

    .seccion_config {
        width: 100%;
        padding: 20px;
        padding-top: 50px !important;
        margin-bottom: 20vh;
        margin-top: 46px;
    }

    .bulled_menu {
        top: 5px;
    }

    .msg_success_validacion {
        margin-top: 36px !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    table.countdown.text-center {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .msg_success_validacion span {
        font-size: 20px !important;
    }

    body{
        background-color: #00052b !important;
    }

    .telefono_content {
        width: 100%;
        margin-left: 0px;
    }

    select#codigo_pais_recuperar,
    select#codigo_pais {
        text-align-last: center;
    }

    .codigo_content {
        width: 100%;
        float: left;
    }

    select#ano_fechanacimiento{
        text-align-last: center;
    }

    .sign-in-container form{
        justify-content: normal;
        padding-top: 172px !important;
    }

}