/*html {
    overflow: scroll;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}
::-webkit-scrollbar-thumb {
}*/
body {
	font-family: 'Open Sans', sans-serif;
	background: #fafafa;
	color: #616161;
}
.mm-slideout { 
	background: #fafafa;
}
.beginning-wrapper {
	/*background-color: #fafafa;*/
	padding: 0;
	height: auto !important;
}
.parsley-error {
    border-color: #ef5350 !important;
}
.parsley-errors-list > li {
    font-size: 12px;
    list-style: none;
    color: #f6504d;
}

.fondo-patron-sd{
	background-image: url("../images/pattern.png");
}

.seleccionar-usuario{
  height: 45px;
  border: solid 1px #ccc;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
}

.seleccionar-usuario.seleccionado{
  height: 45px;
  border: solid 1px #0074D9;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  color: #0074D9;
}
#error-captcha{
  color: red;
  margin-left:15px;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
input:-webkit-autofill, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

/*CONTAINER LEFT CSS*/
.movil {
	display: none;
}
.container-left {
	margin-top: 20px;
	padding: 0;
}
.container-left-hijo {
	padding: 0;
}
.container-titulo-ingresar {

}
.titulo-ingresar {

}
.titulo-ingresar span {
	font-size: 24px;
    color: #fff;
    float: right;
    padding: 5px 0;
    font-weight: 600;
    background: #0074D9;
    color: #fff;
    font-weight: 700;
    margin-top: 0;
    padding-bottom: 8px;
    padding-left: 405px;
    padding-right: 30px;
    padding-top: 8px;
    width: auto;
    padding-left: 535px;
}
.ingresar-beneficios-titulo {
	font-size: 14px;
	padding: 15px 0 30px 0;
	font-weight: 600;
}
.ingresar-beneficios-hijo {
	font-size: 14px;
	padding: 0 0 20px 15px;
	display: flex;
}
.icono-ok-circled {
	padding-right: 5px;
	color: #0074D9;
	font-size: 20px;
	position: relative;
	bottom: 5px;
}
.img-boy img {
	position: absolute;
    right: 200px;
    bottom: -242px;
    height: 283px;
}

/*Radio buttons personalizados Hombre y Mujer*/

/* El contenedor */
.contenedor {
    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;
    /*border: solid 1px #cccccc;*/
    border-radius: 4px;
    height: 41px;

}

/* Esconder el radio button default */
.contenedor input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Crear el radio button personalizado */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 45px;
    width: 100%;
    /*background-color: #fff;*/
    /* border-radius: 50%; */
    border-radius: 4px;
    border: solid 1px #cccccc;
}

/* Cuando le hagas hover con el mouse, ponerle borde */
.contenedor:hover input ~ .checkmark {
    /*background-color: #ccc;*/
    border: solid 1px #2196f3;
}

/* Cuando se selecciona la opcion, se pone el borde mas grueso */
.contenedor input:checked ~ .checkmark {
    border: solid 2px #0074D9;
}
/* Cuando se selecciona la opcion, se pone el texto en negritas y azul*/
.contenedor input:checked ~ .icon-texto-check {
    /*background-color: #2196F3;*/
    color: #0074D9;
    font-weight: bold;
}

/* Se oculta el checked, cuando no este seleccionado */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Muestra el indicador cuando esta seleccionado */
.contenedor input:checked ~ .checkmark:after {
    display: block;
}

/* Estilo del indicador (en este caso estÃ¡ oculto, no necesita estilo) */
.contenedor .checkmark:after {
 	
}

/*----Termina radio buttons personalizados hombre y mujer-----*/

/*---- INICIA PERSONALIZACION DE CHECKBOX ----*/
/* Customize the label (the container) */
.contenedor-check {
  display: block;
  position: relative;
  padding-left: 35px;
  /*margin-bottom: 12px;*/
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 400;
}

/* Hide the browser's default checkbox */
.contenedor-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark-check {
  position: absolute;
  top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.contenedor-check:hover input ~ .checkmark-check {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.contenedor-check input:checked ~ .checkmark-check {
  background-color: #0074D9;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark-check:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.contenedor-check input:checked ~ .checkmark-check:after {
  display: block;
}

/* Style the checkmark/indicator */
.contenedor-check .checkmark-check:after {
  left: 8px;
  top: 4px;
  width: 9px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ---- TERMINA PERSONALIZACION DE CHECKBOX ----*/


.contenedor span i{
	font-size: 22px;
    vertical-align: middle;
}

/*CONTAINER RIGHT*/
.container-formulario-ingresar {
	background-color: #fff;
	padding: 0;
}
#contenedorLogin .formulario-hijo {
	padding-bottom: 15px; 
}
#contenedorLogin .formulario-hijo:nth-child(3),
#contenedorLogin .formulario-hijo:nth-child(4),
#contenedorLogin .formulario-hijo:nth-child(5) {
	padding: 0 30px 15px 30px;
}
#contenedorLogin .formulario-hijo:last-child {
	padding: 0px 30px 50.5% 30px;
}
.parsley-errors-list {
	margin-bottom: 0;
}
#contenedorLogin .formulario-header-titulo1 {
	font-size: 18px;
	color: #616161;
	font-weight: 600;
	padding: 30px 30px 25px 30px;
}
#contenedorLogin .formulario-header-titulo2 {
	font-size: 14px;
	padding: 0 30px 25px 30px;
}
/*.underline, .underline:hover {
	color: #616161;
}*/
#contenedorLogin .input-titulo {
	font-size: 14px;
	padding-bottom: 5px;
}
#contenedorLogin .input-titulo-radio {
	font-size: 12px;
	padding-bottom: 10px;
}
#contenedorLogin .form-control {
	height: 40px;
	border-radius: 0;
	padding: 6px 34px;
	font-size: 14px;
}
#contenedorLogin .form-control[readonly] {
	background-color: #fff;
}
#contenedorLogin .formulario-hijo-nieto {
	padding-bottom: 15px;
}
#contenedorLogin .formulario-footer-titulo1 {
	font-size: 12px;
	text-align: center;
	text-decoration: underline;
}
#contenedorLogin .formulario-footer-titulo1 a,
#contenedorLogin .formulario-footer-titulo1 a:hover,
#contenedorLogin .formulario-footer-titulo1 a:focus {
	color: #616161;
	outline: 0;
}
#contenedorLogin .formulario-footer-titulo2 {
	font-size: 14px;
	padding-top: 15px;
	padding-bottom: 5px;
	text-align: center;
	border-top: 1px solid #f1f1f1;
}
#contenedorLogin .icono-formulario {
	left: 40px;
    top: 33px;
    color: #ccc;
    font-size: 1em;
    position: absolute;
    /*cursor: pointer;*/
    height: 30px;
    width: 30px;
}
#contenedorLogin .icono-formulario-dos {
	position: absolute;
	right: 40px;
	top: 33px;
	color: #ccc;
    font-size: 1em;
    cursor: pointer;
}
#contenedorLogin .inputFecha-oculto {
	display: none;
}
/*.icono-formulario-dos-modal {
	position: absolute;
	right: 22px;
	top: 33px;
	color: #ccc;
    font-size: 1em;
    cursor: pointer;
}*/
#contenedorLogin #LoginBtn-Ingresar {
	border-radius: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	background-color: #0074D9;
	height: 40px;
}
#contenedorLogin .container-btn-ingresar {
	padding: 0;
	padding-bottom: 15px;
}
#contenedorLogin #LoginBtn-Ingresar:focus {
	outline: 0;
}
#contenedorLogin .formulario-hijo:last-child .formulario-hijo-nieto:last-child {
	text-align: center;
	height: 35px;
	padding-top: 7px;
	outline: 0;
	border: 2px solid #0074D9;
    border-radius: 0;
    background: #fff;
    color: #0074D9;
    font-weight: 600;
}
#contenedorLogin .LoginBtn-Registrar {
	height: 35px;
	color: #616161;
	font-weight: 600;
	padding: 0;
}
#contenedorLogin .LoginBtn-Registrar:active {
	/*box-shadow: inset 0 3px 5px rgba(0,0,0,.125);*/
}
#contenedorLogin .LoginBtn-Registrar:hover, .LoginBtn-Registrar:focus {
    color: #616161;
    text-decoration: none;
    outline: 0;
}
#contenedorLogin .Loginspinner {
  	position: absolute;
    right: 50px;
    top: 12px;
    display: none;
}
#contenedorLogin .Loginspinner > div {
  width: 8px;
  height: 8px;
  background-color: #fff;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

#contenedorLogin .Loginspinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

#contenedorLogin .Loginspinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

button i{
    vertical-align: middle;
    font-size: 25px;
}

.container-ingresa-inicio, .container-ingresa-ticket{
    color: #AFAFAF;
    background-color: #fff;
    padding: 0;
    height: 100%;
}

.container-ingresa-inicio .inicio-btn{
	padding: 5px;
    width: 58%;
    background-color: #fff;
    border: solid 2px #0074D9;
    border-radius: 4px;
    text-align: left;
    height: 71px;
    font-size: 16px;
    font-weight: bold;
    outline: none;
    transition: .3s;
}

/*Cambio Active de botones*/
.container-ingresa-inicio .inicio-btn:hover{
	border: solid 2px #0057A3;
}

.container-ingresa-inicio .inicio-btn:hover span,
.container-ingresa-inicio .inicio-btn:hover i{
	color: #0057A3;
}

.container-ingresa-inicio .inicio-btn:active, 
.container-ingresa-inicio .inicio-btn:focus{
	border: solid 2px #3390E1;	
}

.container-ingresa-inicio .inicio-btn:active span,
.container-ingresa-inicio .inicio-btn:focus span,
.container-ingresa-inicio .inicio-btn:active i,
.container-ingresa-inicio .inicio-btn:focus i{
	color: #3390E1;
}

.container-ingresa-ticket .btn-atras div:hover{
	border: solid 2px #0057A3;
	color: #0057A3;
}

.container-ingresa-ticket .btn-atras div:active{
	border: solid 2px #3390E1;
	color: #3390E1;
}

.container-ingresa-ticket .btn-continuar button:hover,
.container-ingresa-ticket .btn-continuarMi button:hover,
.container-ingresa-ticket .btn-continuarMas button:hover{
	background-color: #0057A3;
}

.container-ingresa-ticket .btn-continuar button:active,
.container-ingresa-ticket .btn-continuarMi button:active,
.container-ingresa-ticket .btn-continuarMas button:active{
	background-color: #3390E1;
}
/*Fin*/

.container-ingresa-inicio .inicio-btn i{
	/*color: #4F4F4F;*/
    font-size: 30px;
}

.container-ingresa-inicio .inicio-btn span{
	color: #0074D9;
}

.container-ingresa-ticket input{
	border-radius: 4px;
	/*margin-bottom: 15px;*/
	padding-top: 18px;
}

.container-ingresa-ticket .btn-atras div{
    background-color: #fff;
    border: solid 2px #0074D9;
    border-radius: 4px;
    width: 100%;
    padding: 14px;
    color: #0074D9;
    margin-bottom: 10px;
    height: 50px;
    text-align: center;
}

.container-ingresa-ticket .btn-continuar button,
.container-ingresa-ticket .btn-continuarMi button,
.container-ingresa-ticket .btn-continuarMas button{
    background-color: #0074D9;
    border: none;
    border-radius: 4px;
    width: 100%;
    padding: 10px;
    color: #fff;
    margin-bottom: 10px;
    height: 50px;
    outline: none;
    transition: .3s;
}

.ver-password{
	position: absolute; 
	font-size: 20px; 
	top: 13px;
	right: 17px;
	cursor: pointer;
}

.ver-password:hover{
	color: #616161;
}

.inputText:focus{
	border:solid 1px #0074D9;
}

/*Floating placeholders*/
input:focus ~ .floating-label,
input:not(:focus):valid ~ .floating-label,
input:focus ~ .floating-label-pass,
input:not(:focus):valid ~ .floating-label-pass{
  top: 1px;
  bottom: 10px;
  left: 28px;
  font-size: 14px;
  opacity: 1;
  color: #AFAFAF;
}

input:focus ~ .pvw-title span,
input:not(:focus):valid ~ .pvw-title span{
  display: none;
}

input:focus ~ .pvw-title:after,
input:not(:focus):valid ~ .pvw-title:after{
  content:'Contraseña mí­nima 8 caracteres';
}

.inputText {
  font-size: 16px;
  height: 45px;
}

.container-formulario-registro input{
  font-size: 16px;
  height: 45px;
} 

.floating-label, .floating-label-pass {
  position: absolute;
  pointer-events: none;
  left: 28px;
  top: 10px;
  font-size: 16px;
  transition: 0.2s ease all;
}
/*------*/

.form-btns{
	text-align: center;
    margin-bottom: 15px;
}

.container-right{
	height: 100%;
}

.container-izquierda{
    margin-top: 0px !important;
    padding: 44px !important;
    text-align: center;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
#contenedorLogin #con-close-modal .modal-dialog {
	width: 450px !important;
	margin: 143px auto !important;
}
.gif {
	background: url(../images/GIFTICKET.gif);
	height: 688px;
    background-position: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    display: block;
    float: none;
    margin: 0 auto;
}
#contenedorLogin .close {
    font-size: 30px;
    padding-right: 5px !important;
}
/*FOOTER*/
#contenedorLogin .footer {
    border-top: 1px solid #d1d1d1;
    padding: 13px;
    position: relative;
    bottom: 0;
}
#contenedorLogin .footer p {
    color: #93928c;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}
/*Modificaciones JC*/
#contenedorLogin #LoginBtn-Ingresar:hover {
	background-color: #0066BF;
}
#contenedorLogin #LoginBtn-Ingresar:active {
	background-color: #0088FF;
}
.formulario-footer-titulo1 {
	/*padding-left: 0;*/
}

.padre-botones-login {}
.m-b10{

}

/*Fin modificaciones JC*/
@media (max-width: 1199px) {
	#contenedorLogin .img-boy {
		display: none;
	}
	#contenedorLogin .Loginspinner {
    	right: 25px;
	}
	#contenedorLogin .titulo-ingresar span {
		margin-right: -23.031px;
	}
}
@media (max-width: 991px) {

	#contenedorLogin .Loginspinner {
    	right: 65px;
	}
	#contenedorLogin .movil {
		display: block;
	}
	#contenedorLogin .web {
		display: none;
	}
	#contenedorLogin .formulario-hijo:last-child {
    	padding: 0px 30px 2.5% 30px;
	}
	.container-izquierda{
		display: none;
	}
}
@media (max-width: 614px){
	.container-ingresa-inicio .inicio-btn{
		width: 100%;
	}
}
@media (max-width: 767px) {

	.container-ingresa-inicio .inicio-btn{
	    height: 50px;
	}
	#contenedorLogin .LoginBtn-Registrar,
	#contenedorLogin .container-btn-ingresar {
		display: block;
		float: none;
		margin: 0 auto;
		width: 345px;
	}
	#contenedorLogin #con-close-modal .modal-dialog {
		width: auto !important;
		margin: 10px !important;
	}
	#contenedorLogin .titulo-ingresar {
		width: 125px;
	}
	#contenedorLogin .titulo-ingresar span {
		padding-right: 15px;
	}
	#contenedorLogin .formulario-hijo:last-child {
    	padding: 0px 30px 7.5% 30px;
  }
  .padre-botones-login {
    display: flex;
    flex-flow: column;
  }
  .padre-botones-login a {
    order: 2;
  }
  .padre-botones-login div {
    order: 1;
  }
  .padre-botones-login div button {
    margin-bottom: 10px;
  }
  .m-b10{
    margin-bottom:  10px;
  }
}
@media (max-width: 480px) {
	#contenedorLogin .Loginspinner > div {
    	width: 7px;
    	height: 7px;
	}
}
@media (max-width: 450px) {
	#contenedorLogin .LoginBtn-Registrar,
	#contenedorLogin .container-btn-ingresar {
		width: 92%;
	}
}
@media (max-width: 420px) {
	#contenedorLogin .Loginspinner {
    	right: 17%;
	}
}
@media screen and (max-width: 414px) and (max-height: 736px) {
	.gif {
		height: 716px;
	}
}
@media screen and (max-width: 412px) and (max-height: 732px) {
	.gif {
		height: 640px;
	}
}
@media (max-width: 390px) {
	#contenedorLogin .Loginspinner {
    	right: 14%;
	}
	#contenedorLogin .popover-content {
		font-size: 12px;
    	width: 230px;
	}
}
@media screen and (max-width: 375px) and (max-height: 667px) {
	.gif {
		height: 648px;
	}
}
@media (max-width: 370px) {
	#contenedorLogin .Loginspinner {
    	right: 12%;
	}
}
@media screen and (max-width: 360px) and (max-height: 640px) {
	.gif {
		height: 620px;
	}
}
@media (max-width: 350px) {
	#contenedorLogin .Loginspinner {
    	right: 10%;
	}
	#contenedorLogin .form-control {
    	font-size: 12px;
	}
}
@media (max-width: 334px) {
	#contenedorLogin .formulario-header-titulo2 {
	    font-size: 12px;
	}
	#contenedorLogin .input-titulo {
    	font-size: 12px;
	}
	#contenedorLogin .formulario-footer-titulo2 {
    	font-size: 12px;
	}
}
@media (max-width: 330px) {
	#contenedorLogin .Loginspinner {
    	right: 7%;
	}
	#contenedorLogin .popover-content {
    	width: 200px;
	}
}
@media screen and (max-width: 320px) and (max-height: 568px) {
	.gif {
		height: 548px;
	}
}



/*Efecto Boton */
.inicio-btn:after,
.btn-atras:after,
.btn-continuar:after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 3px;
  background: #effcff;
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
  z-index: 99999;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

/*.inicio-btn:focus:not(:active)::after,
.btn-atras:focus:not(:active)::after,
.btn-continuar:focus:not(:active)::after{
  animation: ripple 1s ease-out;
}*/

/*.inicio-btn{
  position: relative;
  overflow: hidden;
} Para que este dentro del boton*/

.spinner{
    position: absolute;
    right: 35px;
    top: 15px;
    display: none;
}
.spinner > div{
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1{
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.spinner .bounce2{
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}