html, body{
	height: 95% !important;
}

.login {
	height: 100%;
	display: -ms-flexbox;
	display: grid;
	-ms-flex-align: center;
	align-items: center;
	background-color: #f5f5f5;
}

.frmLogin {
	width: 100%;
	max-width: 330px;
	padding: 15px;
	margin: auto;
}

.frmLogin .form-control {
	position: relative;
	box-sizing: border-box;
	height: auto;
	padding: 10px;
	font-size: 16px;
}

.frmLogin .form-control:focus {
	z-index: 2;
}

.frmLogin input[type="text"] {
	margin-bottom: -1px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.frmLogin input[type="password"] {
	margin-bottom: 10px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.bg-rojo {
	background-color: #d50032;
}

.bg-azul {
	background-color: #002d72;
}

.bg-gris {
	background-color: #f5f5f5;
}

.card-header a:link, a:visited, a:hover, a:active {
	color: #002d72;
	font-weight: bold;
	text-decoration: none;
}
.pl-x2{
	padding: 0 0.5em!important;
}

main {
	height: 100vh;
}

.menu-lateral ul li a {
	color: #002d72;
	font-weight: bold;
}

.menu-lateral ul li a:hover {
	color: #ffffff;
	background-color: #002d72;
}

.menu-movil ul li a {
	color: #ffffff;
	font-weight: bold;
}

.menu-movil ul li a:hover {
	color: #d50032;
}

.texto-rojo {
	color: #d50032;
}

.texto-azul {
	color: #002d72;
}

td > a {
	color: #d50032;
	font-weight: bold;
}

td > a:visited {
	color: #d50032;
	font-weight: bold;
}

h5 > a {
	color: #d50032;
	font-weight: bold;
}

.nav-pills .nav-link.active{
	background: #d50032;
}

.nav-pills .nav-link{
	color: #d50032;
}

.copyright {
	position:absolute;
	bottom:0px;
	right:0px;
	left: 0px
}

/*
Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically.
*/
@media
	only screen 
	and (max-width: 760px), (min-device-width: 768px) 
	and (max-device-width: 1024px)  {

	.copyright {
		position:absolute;
		bottom:0px;
		right:0px;
		left: 0px
	}

	/* Force table to not be like tables anymore */
	table.movil, thead.movil, tbody.movil, th.movil, td.movil, tr.movil {
		display: block;
	}

	/* Hide table headers (but not display: none;, for accessibility) */
	thead.movil tr.movil {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	tr.movil {
		margin: 0 0 1rem 0;
	}

	tr.movil:nth-child(odd) {
		background: #ccc;
	}

	td.movil {
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-top: 0 !important;
		padding-right: 0 !important;
		padding-bottom: 0 !important;
		padding-left: 35% !important;
	}

	td.movil:before {
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 0;
		left: 6px;
		width: 65%;
		padding-right: 10px;
		white-space: nowrap;
	}

	/*
	Label the data
	You could also use a data-* attribute and content for this. That way "bloats" the HTML, this way means you need to keep HTML and CSS in sync. Lea Verou has a clever way to handle with text-shadow.
	*/
	td.mi-cuenta:nth-of-type(1):before { content: "Medio"; font-weight: bold;}
	td.mi-cuenta:nth-of-type(2):before { content: "Referencia"; font-weight: bold;}

	td.referencias-corte:nth-of-type(1):before { content: "Banco"; font-weight: bold;}
	td.referencias-corte:nth-of-type(2):before { content: "Fecha"; font-weight: bold;}
	td.referencias-corte:nth-of-type(3):before { content: "Convenio"; font-weight: bold;}
	td.referencias-corte:nth-of-type(4):before { content: "Referencia"; font-weight: bold;}
	td.referencias-corte:nth-of-type(5):before { content: "Importe"; font-weight: bold;}

	td.referencias-generales:nth-of-type(1):before { content: "Banco"; font-weight: bold;}
	td.referencias-generales:nth-of-type(2):before { content: "Convenio"; font-weight: bold;}
	td.referencias-generales:nth-of-type(3):before { content: "Referencia"; font-weight: bold;}

	td.clientes:nth-of-type(1):before { content: "Acciones"; font-weight: bold;}
	td.clientes:nth-of-type(2):before { content: "Nombre"; font-weight: bold;}
	td.clientes:nth-of-type(3):before { content: "Importe"; font-weight: bold;}
	td.clientes:nth-of-type(4):before { content: "Celular"; font-weight: bold;}
	td.clientes:nth-of-type(5):before { content: "Email"; font-weight: bold;}
	td.clientes:nth-of-type(6):before { content: "Domicilio"; font-weight: bold;}

	td.vales:nth-of-type(1):before { content: "Acciones"; font-weight: bold;}
	td.vales:nth-of-type(2):before { content: "Folio"; font-weight: bold;}
	td.vales:nth-of-type(3):before { content: "Importe"; font-weight: bold;}
	td.vales:nth-of-type(4):before { content: "Fecha"; font-weight: bold;}
	td.vales:nth-of-type(5):before { content: "Cliente"; font-weight: bold;}

	td.ventas:nth-of-type(1):before { content: ""; font-weight: bold;}
	td.ventas:nth-of-type(2):before { content: "Ver"; font-weight: bold;}
	td.ventas:nth-of-type(3):before { content: "Credivale"; font-weight: bold;}
	td.ventas:nth-of-type(4):before { content: "Total"; font-weight: bold;}
	td.ventas:nth-of-type(5):before { content: "Cliente"; font-weight: bold;}
	td.ventas:nth-of-type(6):before { content: "Compra"; font-weight: bold;}
	td.ventas:nth-of-type(7):before { content: "Lugar"; font-weight: bold;}
	td.ventas:nth-of-type(8):before { content: "Ticket"; font-weight: bold;}
	td.ventas:nth-of-type(9):before { content: "Parcialidad"; font-weight: bold;}
	td.ventas:nth-of-type(10):before { content: "Mínimo"; font-weight: bold;}
	td.ventas:nth-of-type(11):before { content: "Estatus"; font-weight: bold;}

	td.pagos-detalle:nth-of-type(1):before { content: "Corte"; font-weight: bold;}
	td.pagos-detalle:nth-of-type(2):before { content: "Pago"; font-weight: bold;}
	td.pagos-detalle:nth-of-type(3):before { content: "Lugar"; font-weight: bold;}
	td.pagos-detalle:nth-of-type(4):before { content: "Ap. Anticipo"; font-weight: bold;}
	td.pagos-detalle:nth-of-type(5):before { content: "Anticipo"; font-weight: bold;}
	td.pagos-detalle:nth-of-type(6):before { content: "Pago"; font-weight: bold;}
	td.pagos-detalle:nth-of-type(7):before { content: "Descuento"; font-weight: bold;}
	td.pagos-detalle:nth-of-type(8):before { content: "Total"; font-weight: bold;}

	td.sorteos-boletos:nth-of-type(1):before { content: "Ver"; font-weight: bold;}
	td.sorteos-boletos:nth-of-type(2):before { content: "Folio"; font-weight: bold;}
	td.sorteos-boletos:nth-of-type(3):before { content: "Cliente"; font-weight: bold;}

	td.sorteos-saldo:nth-of-type(1):before { content: "Cliente"; font-weight: bold;}
	td.sorteos-saldo:nth-of-type(2):before { content: "Compras"; font-weight: bold;}
	td.sorteos-saldo:nth-of-type(3):before { content: "Utilizado"; font-weight: bold;}
	td.sorteos-saldo:nth-of-type(4):before { content: "Disponible"; font-weight: bold;}
	td.sorteos-saldo:nth-of-type(5):before { content: "Generados"; font-weight: bold;}
	td.sorteos-saldo:nth-of-type(6):before { content: "Obsequio"; font-weight: bold;}
	td.sorteos-saldo:nth-of-type(7):before { content: "Totales"; font-weight: bold;}
	td.sorteos-saldo:nth-of-type(8):before { content: "Por generar"; font-weight: bold;}

	td.eventos:nth-of-type(1):before { content: "Evento"; font-weight: bold;}
	td.eventos:nth-of-type(2):before { content: "Nombre"; font-weight: bold;}
	td.eventos:nth-of-type(3):before { content: "Importe"; font-weight: bold;}

	td.notificaciones:nth-of-type(1):before { content: "Fecha"; font-weight: bold;}
	td.notificaciones:nth-of-type(2):before { content: "Título"; font-weight: bold;}
	td.notificaciones:nth-of-type(3):before { content: "Descripción"; font-weight: bold;}
	
	td.oficinas:nth-of-type(1):before { content: "Nombre"; font-weight: bold;}
	td.oficinas:nth-of-type(2):before { content: "Domicilio"; font-weight: bold;}
	td.oficinas:nth-of-type(3):before { content: "Mapa"; font-weight: bold;}
	td.oficinas:nth-of-type(4):before { content: "Teléfono"; font-weight: bold;}
	td.oficinas:nth-of-type(5):before { content: "Email"; font-weight: bold;}

	td.clientes-boletinados:nth-of-type(1):before { content: "Nombre"; font-weight: bold;}
	td.clientes-boletinados:nth-of-type(2):before { content: "Observaciones"; font-weight: bold;}

	td.quejas:nth-of-type(1):before { content: "Título"; font-weight: bold;}
	td.quejas:nth-of-type(2):before { content: "Descripción"; font-weight: bold;}

	td.sugerencias:nth-of-type(1):before { content: "Título"; font-weight: bold;}
	td.sugerencias:nth-of-type(2):before { content: "Descripción"; font-weight: bold;}

	td.postergar:nth-of-type(1):before { content: ""; font-weight: bold;}
	td.postergar:nth-of-type(2):before { content: "Subcliente"; font-weight: bold;}
	td.postergar:nth-of-type(3):before { content: "Clave"; font-weight: bold;}
	/*td.postergar:nth-of-type(4):before { content: "Teléfono"; font-weight: bold;}*/
	td.postergar:nth-of-type(4):before { content: "Importe"; font-weight: bold;}
	td.postergar:nth-of-type(5):before { content: "Estado"; font-weight: bold;}
	td.postergar:nth-of-type(6):before { content: "F. a postergar"; font-weight: bold;}
	td.postergar:nth-of-type(7):before { content: "Fecha"; font-weight: bold;}

	td.capacitaciones:nth-of-type(1):before { content: "Título"; font-weight: bold;}
	td.capacitaciones:nth-of-type(2):before { content: "Descripción"; font-weight: bold;}
	td.capacitaciones:nth-of-type(3):before { content: "Acciones"; font-weight: bold;}
}

/*========================= LOG IN =======================================*/

.customHeight{

  height: 100vh;
}

.btnLogin{
  -webkit-transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    -moz-transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    -o-transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
     box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  margin: 0.7em 0 0 0;
}

.btnLogin:hover{
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

#backwardsLogin{
  height: 100%;
}

.buttonWrapper{
  display: flex;
  justify-content: center;
    align-items: center;
}

.buttonWrapperText{
	margin-left: 30px;
    margin-bottom: 0!important;
    text-align: center;
}

/*.radio label {
  padding-left: 24px;
}
input[type="radio"] {
  display: none;
}
input[type="radio"] + .box:before,
input[type="radio"] + .box:after {  
  transition: all 0.3s;
}
input[type="radio"] + .box:after {
  position: absolute;
  left: 4px;
  top: 3px;
  margin-top: -5px;
  margin-left: -4px;
  display: inline-block;
  content: ' ';
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  border-radius: 2px;
  background-color: #fff;
  z-index: 1000;
  color: #dc3545;
  border-color: #dc3545;
}
input[type="radio"]:checked + .box:after {
  background-color: #2196f3;
  border-color: #2196f3;
}
input[type="radio"]:checked + .box:before {
  transform: rotate(45deg);
  position: absolute;
  left: 7px;
  top: 0px;
  width: 6px;
  height: 13px;
  border-width: 2px;
  border-style: solid;
  border-top: 0;
  border-left: 0;
  border-color: #fff;
  content: '';
  z-index: 10000;
}*/

@keyframes ripple {
  0% {
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
  }
  50% {
    box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
  }
  100% {
    box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0);
  }
}
.md-radio {
  margin: 0 0 1em 0;
}
.md-radio.md-radio-inline {
  display: inline-block;
}
.md-radio input[type="radio"] {
  display: none;
}
.md-radio input[type="radio"]:checked + label:before {
  border-color: #dc3545;
  animation: ripple 0.2s linear forwards;
}
.md-radio input[type="radio"]:checked + label:after {
  transform: scale(1);
}
.md-radio label {
  display: inline-block;
  height: 20px;
  position: relative;
  padding: 0 30px;
  margin-bottom: 0;
  cursor: pointer;
  vertical-align: bottom;
}
.md-radio label:before, .md-radio label:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  transition: all 0.3s ease;
  transition-property: transform, border-color;
}
.md-radio label:before {
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.54);
}
.md-radio label:after {
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  transform: scale(0);
  background: #dc3545;
}

.placeholder-right::placeholder{text-align: right;}
/* webkit solution */
.placeholder-right::-webkit-input-placeholder { text-align:right; }
/* mozilla solution */
.placeholder-right:-moz-placeholder { text-align:right; }


@media (max-width:768px){
	.btn-movil{
		position: fixed;
	    bottom: 1em;
	    right: 1em;
	}
}

.btn-send{
	width: 100px ;
	color: white !important;
	background-color: red !important;
}

/*Estilos para estado de cuenta*/

/* Smartphones (portrait and landscape) ----------- */


.width-100{
	width: 100% !important;
}

.width-50 {
	width: 50% !important;
}

.div-top-est{
	background-color: #DA1B3E !important;
	color: white !important;
	min-height: 40px !important;
	text-align: center !important;
	padding-top: 6px;
	font-weight: 600;
	font-size: 14pt;
}

.div-detalle-estado{
	background-color: #DA1B3E !important;
	color: white !important;
	min-height: 36px !important;
	text-align: right !important;
	padding-top: 6px;
	padding-right: 6px;
	font-size: 12pt;
}

.div-body-estado-cuenta{
	padding: 30px;
	height: 100% !important;
}

.div-body-estado-fecha{
	width: 50% !important;
	text-align: end;
}

.div-body-estado-tarjeta{
	display: grid;
	border: 1px solid black;
	width: 100% !important;
	margin-top: 20px;
	margin-bottom: 20px;
}

.div-body-estado-tarjeta-p{
	display: grid;
	border: 1px solid black;
	width: 100% !important;
	margin-bottom: 20px;
}

.div-body-estado-names{
	display: flex !important;
	width: 100%;
}

.span-name{
	margin-left: .5rem!important;
}

.div-total{
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.div-contenido{
	display: flex;
}

.div-contenidop{
	display: flex;
}

.div-end{
	width: 50%;
	text-align: end;
}

.div-contenedor{
	display: grid;
	width: 100%;
}

.quad-blue{
	background-color: #223D98;
	width: 45px;
	height: 23px;
	color: white;
	text-align: center;
	margin-top: 5px;
}

.background-verde{
	background-color: #007F00;
}

.background-azul{
	background-color: #223D98;
}

.background-gris{
	background-color: #757575;
}

.color-blue{
	color: #223D98;
}

.color-gris{
	color: #77797d;
}

.font-w{
	font-weight: 700;
	font-size: 12pt;
}

.div-bottom{
	width: 100%;
	display: grid;
	color: white;
}

.div-bottom-cont{
	text-align: end;
	width: 100%;
}

.btn-excel{
	width: auto;
}

.btn-back{
	width: auto;
}

.btn-pdf{
	width: auto;
}

.div-modal-telefonos{
	overflow: scroll !important;
	height: auto !important;
	max-height: 620px !important;
}

.div-button-top{
	padding-bottom: 20px;
	justify-self: end;
}

.div-body-pagar{
	width: 100%;
	height: 90% !important;
	padding-top: 20px;
	padding-bottom: 20px;
}

.div-body-subclientes{
	width: 100%;
	height: 100% !important;
	padding-bottom: 20px;
}

.etiqueta100{
	width: 100%;
	height: 100%;
}

.div-check{
	color: white;
	padding-top: 5px;
	padding-left: 10px;
	width: 100%;
	height: 37px !important;
}

.div-check-sub{
	padding-top: 10px;
	padding-left: 10px;
	width: 100%;
	height: 37px !important;
}

.div-title-sub{
	width: 100% !important;
	text-align: -webkit-center;
	padding-right: 30px;
	font-size: 15pt;
	margin-top: -8px
}

.div-scrollable{
	overflow: scroll;
	height: auto;
	max-height: 92%;
}

.div-scrollable-sub{
	overflow: scroll;
	height: auto;
	max-height: 100%;
}

.div-checkboxes{
	width: 40px;
	padding-right: 5px;
	padding-left: 5px;
}

.div-total-bt{
	align-items: center;
	display: flex;
	margin-top: 1.5rem!important;
	width: 100%;
	/*font-size: 16pt;*/
}

.div-select-all{
	display: none;
	place-items: center;
}

.btn-realizar-pago{
	background-color: #007F00;
	color: white;
}

.d-grid{
	display: grid !important;
}

.span-total{
	font-size: 16pt;
}

.span-nom{
	font-size: 16pt;
}

.span-pago{
	font-size: 22pt;
}

.div-btn-bottom{
	padding-top: .5rem!important;
	padding-bottom: .5rem!important;
	width: 100%;
	display: none;
}

.div-nombre-cli{
	font-size: 16pt;
}

.div-fecha-postergar{
	width: 100%;
	display: flex;
}

.sel{
	width: 20%;
}

.btn-mar{
	margin-top: 0;
}

.display-change{
	display: flex;
}

.div-pass{
	text-align: -webkit-center;
}

.w-40{
	width: 40% !important;
}

.w-60{
	width: 60% !important;
}

.w-30{
	width: 30% !important;
}

.w-70{
	width: 70% !important;
}

.img-res{
	max-height: 550px;
	max-width: 360px
}

.img-res-a{
	max-width: 100px;
}

.max-width-10{
	max-width: 50%;
}

.max-content{
	max-width: max-content;
}

.scrollable{
	overflow: scroll;
	height: auto;
	max-height: 800px;
}

.text-center-a{
	text-align: -webkit-center !important;
}

@media only screen
and (max-width: 531px) {
	/* Styles */
	.img-res{
		max-width: 100%;
	}

	.max-width-10{
		max-width: max-content;
	}

	.width-50 {
		width: 100% !important;
	}

	.scrollable{
		overflow: scroll;
		height: auto;
		max-height: 585px;
	}

	.cim{
		display: none;
	}

	.w-30{
		width: 100% !important;
	}

	.w-70{
		width: 100% !important;
	}

	.w-40{
		width: 100% !important;
	}

	.w-60{
		width: 100% !important;
	}

	.div-pass{
		padding-left: 40px;
		padding-right: 40px;
	}

	.display-change{
		display: grid;
	}

	.sel{
		width: 100%;
	}

	.btn-mar{
		margin-top: 20px;
	}

	.div-fecha-postergar{
		display: grid;
	}

	.div-nombre-cli{
		font-size: 10pt;
	}

	.div-btn-bottom{
		padding-top: .5rem!important;
		padding-bottom: .5rem!important;
		width: 100%;
		display: grid;
	}

	.span-pago{
		font-size: 16pt;
	}

	.div-body-estado-names{
		display: grid !important;
	}

	.span-name{
		margin-left: 0 !important;
	}

	.div-top-est{
		font-weight: 500;
		font-size: 12pt;
	}

	.body{
		font-size: 10pt !important;
	}

	.div-body-estado-fecha{
		width: 35% !important;
	}

	.div-total{
		margin-top: 10px;
		flex-wrap: wrap-reverse;
	}

	.div-contenido{
		display: grid;
		margin-top: 10px;
	}

	.div-contenidop{
		display: grid;
	}

	.div-end{
		width: 100%;
		text-align: start;
	}

	.quad-blue{
		background-color: #223D98;
		width: 35px;
		height: 18px;
		margin-top: 3px;
	}

	.btn-pdf{
		margin-right: 0 !important;
	}

	.btn-excel{
		width: 122px;
		font-size: 9pt;
	}

	.btn-pdf{
		width: 110px;
		font-size: 9pt;
	}

	.btn-sms{
		width: 90px;
		font-size: 9pt;
	}

	.btn-pagar{
		width: 100px;
		height: 29px;
		font-size: 9pt;
	}

	.div-check {
		padding-top: 12px;
	}

	.div-body-pagar{
		padding-top: 0;
	}

	.div-body-estado-cuenta {
		padding-left: 30px;
		padding-right: 30px;
		padding-bottom: 30px;
		height: 78% !important;
	}

	.copyright {
		position: relative;
		font-size: 10px;
	}

	.span-total{
		font-size: 12pt;
	}

	#loginCard {
		margin-bottom: 35%;
	}

	.span-nom{
		font-size: 12pt;
	}

	.login{
		display: grid;
		justify-items: center;
	}

	.btn-back{
		font-size: 9pt;
	}

	.disgrid{
		display: grid !important;
	}

	.margin-t{
		margin-top: 50px;
	}

	.change-w-input{
		width: 100% !important;
	}
}

@media only screen
and (min-width: 532px)
and (max-width: 991px) {
	.change-w-input{
		width: 60% !important;
	}
}

@media only screen
and (max-width: 650px) {
	.wid-50{
		width: 100% !important;
	}
}

@media only screen
and (max-width: 760px) {
	.div-select-all{
		display: flex;
		place-items: center;
	}

	.metas_card {
		width: 100% !important;
	}
}

.metas_body-container {
	padding: 2rem 1rem 1rem 1rem;
	display: flex;
	flex-wrap: wrap;
}

.metas_container-flex-box {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-grow: initial;
}

.metas_item-flex-box {
	flex-grow: 3;
}

.metas_container-item {
	display: grid;
}

.metas_card {
	width: 25vw;
	margin: 0 .5vw 1vh 0;
}

.metas_mensaje {
	margin-top: 10px;
	background-color: #dc3545;
	color: #ffffff;
	padding: 5px;
	text-align: justify;
	border-radius: 5px;
}

.ps-principal {
	justify-items: center;
	display: grid;
}
.ps-sub {
	width: 100%;
	text-align: -webkit-center;
}

.btn-aplicar-servicios {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	border: 1px solid transparent;
	padding: .375rem 3rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	color: white;
	background-color: black;
}

.btn-aplicar-servicios:not(:disabled) {
	cursor: pointer;
}

.info-container {
	padding: 10px;
	border: 1px solid #e0e0e0;
	border-radius: .5rem;
}

.info-span {
	font-weight: 700;
	color: #909090;
}

.res-span {
	font-size: 11pt;
	font-weight: 600;
}

.msg-error {
	color: #ec4c4c;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none !important;
	margin: 0 !important;
	-moz-appearance:textfield !important;
}

.terminos-condiciones {
	text-decoration-line: underline;
}

.terminos-condiciones:hover {
	cursor: pointer;
}

.modal-footer {
	justify-content: center !important;
	display: grid !important;
}

.modal-footer__buttons {
	justify-self: center !important;
}

.modal-footer__condiciones {
	text-align: center;
	margin-top: 25px;
}

#condiciones_uso {
	display: grid;
	text-align: justify;
	padding: 0 2rem;
}

#condiciones_uso span {
	display: list-item;
}

.span_condiciones_uso {
	font-size: 13pt;
	font-weight: 600;
	margin-bottom: 25px;
}

.span-modal {
	font-weight: 700;
}

.btn-outline-blue {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	padding: .375rem 1rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	color: white;
	background-color: #223D98;
	border: 1px solid #223D98;
}

.btn-outline-blue:hover {
	cursor: pointer;
	background-color: #223D98;
}

.btn-outline-blue:focus {
	border: none;
}

.btn-outline-red {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	padding: .375rem 1rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	color: white;
	background-color: #d70000;
	border: 1px solid #d70000;
}

.btn-outline-red:hover {
	cursor: pointer;
	background-color: #d70000;
}

.btn-outline-red:focus {
	border: none;
}

.custom-loading {
	display: inline-block;
	width: 0;
	height: 20px;
}

.custom-loading:after {
	content: " ";
	display: block;
	width: 28px;
	height: 28px;
	margin: 0 4px;
	border-radius: 50%;
	border: 2px solid;
	border-color: #000000 transparent #000000 transparent;
	animation: lds-dual-ring .8s linear infinite;
}

@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.informacion {
	display: flex;
	flex-wrap: wrap;
	padding: 0 !important;
}

.informacion .left {
	display: flex;
	flex-direction: column;
	padding: 0 !important;
}

.left p {
	text-align: justify;
	padding: 0 !important;
}

.informacion .right {
	display: flex;
	justify-content: space-between;
	padding: 0 !important;
	gap: 1.5rem 2.5rem;
}

.informacion .informacion-item .item-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.item-content .r-titulo {
	color: #223352;
}

.item-content .r-nivel {
	font-size: 14pt;
	padding: 5px 30px;
	border: 2px #C10E08 solid;
}

.m-motivacional {
	width: 100%;
	text-align: center;
}

.beneficios-container {
	padding: 1.5rem 0;
	margin-top: 1rem;
}

.beneficios-container h4 {
	color: #223352;
	text-align: center;
}

#beneficios{
	padding: 0 !important;
}

#beneficios, #convenciones, #sin_info {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-evenly;
}

.beneficios-card {
	padding: .2rem;
	display: grid;
	border: 2px #C10E08 solid;
}

.beneficios-card ul {
	padding: 10px;
}

.beneficios-card ul li {
	list-style-type: none;
	display: flex;
}

.beneficios-card h5 {
	color: #C10E08;
	text-align: center;
}

.row {
	justify-content: center !important;
}

.em-7 {
	width: .7em !important;
}

.img-container-top {
	text-align: center;
	width: 100%;
}

.img-container-top img {
	width: 70%;
}

.c-container {
	width: 100%;
	display: flex;
	justify-content: center;
}

.c-info-container {
	margin: 10px 0 20px 0;
	display: flex;
	justify-content: space-between;
	width: 70%;
}

.c-info-container img{
	width: 55%;
	height: fit-content;
}

.c-importes {
	display: flex;
	flex-direction: column;
	gap: 1rem 0;
}

.c-importes-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.c-importes-item h5 {
	text-align: center;
	color: #223352;
}

.c-importes-item span {
	text-align: center;
	padding: 8px 0;
	width: 50%;
	border: 2px #C10E08 solid;
	border-radius: 3px;
}

.c-importes-item svg {
	color: #223352;
	font-size: 1.5rem;
	align-self: flex-end;
}

.metas .nav-link.active {
	background: #C10E08 !important;
}

.metas .nav-link {
	color: #C10E08;
}

.button-pagar{
	width: 100%;
	font-size: 10pt;
	display: flex;
	gap: 0.3rem;
	align-items: center;
	justify-content: center;
}

.border-green {
	border: 1px solid #00a200;
	color: #00a200;
}

.border-black {
	border: 1px solid black;
	color: black;
}

.btn-aceptar {
	background-color: #002d72 !important;
	color: white !important;
}

.wait-message-flex {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.lds-ring {
	display: inline-block;
	position: relative;
	width: 25px;
	height: 25px;
}
.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 20px;
	height: 20px;
	margin: 4px;
	border: 2px solid black;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: black transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}
@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 768px) {
	.beneficios-card {
		flex: 32% !important;
		max-width: 32% !important;
	}

	.beneficios-card h5 {
		font-size: 1rem;
	}

	.beneficios-card ul {
		padding: 0;
		font-size: 8pt;
	}

	#beneficios {
		justify-content: center;
		gap: .2rem;
	}

	#convenciones {
		padding: 0 !important;
	}

	.c-info-container {
		align-items: center;
	}

	.img-container-top img, .c-info-container {
		width: 100%;
	}

	.c-info-container img{
		width: 60%;
	}
	.c-importes-item span {
		width: 90%;
	}
}

.w30 {
	width: 30%;
}

.w45 {
	width: 45%;
}

.contenedor-principal {
	display: flex;
	flex-wrap: wrap;
	/*display: grid;*/
	gap: 1rem;
	justify-content: center;
	/*background-color: #f0f0f0;*/
	padding: 15px 0;
}

.contenedor-cliente {
	width: 100%;
	display: grid;
	gap: 0.5rem;
	padding: 1rem;
	box-shadow: 1px 1px 5px 1px #e8e5e5;
	border-radius: 6px;
	background-color: white;
}

.cc1 {
	display: grid;
	gap: 0.2rem;
	justify-items: center;
}

.cc2 {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.cc2-item {
	display: grid;
	gap: 0.5rem;
	justify-items: center;
}

.cc2-linea {
	width: 2px;
	background-color: #e3e3e3;
	height: 95%;
}

.cc2-border {
	background-color: white;
	border-radius: 6px;
	box-shadow: 1px 1px 5px 1px #e8e5e5;
	padding: 15px;
}


.texto-gris {
	/*color: #afafaf;*/
	text-align: center;
	font-weight: bold;
	font-size: 14pt;
}

.contenedor-apartados {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.card-apartados {
	background-color: white;
	border-radius: 6px;
	padding: 10px 5px;
	display: grid;
	gap: 0.7rem;
	text-align: center;
	justify-items: center;
	box-shadow: 1px 1px 5px 1px #e8e5e5;
}

.contenedor-cliente-2 {
	width: 100%;
	display: grid;
	gap: 0.5rem;
	padding: 0.5rem;
	box-shadow: 1px 1px 5px 1px #e8e5e5;
	border-radius: 6px;
	background-color: white;
}

.subtitulos {
	font-size: 13pt;
}

.valores {
	font-size: 12pt;
}

.icono {
	width: 50px;
	height: 50px;
}

.text-center {
	text-align: center;
}

.pointer {
	cursor: pointer;
}

.btn-acceso-convencion {
    background-color: #c7c7c7!important;
    width: 90%!important;
    border: none!important;
    cursor: pointer!important;
    padding: 6px!important;
}