@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
:root{
	--azul_log: #3ca1b9;
	--naranja: #ff8f00;
	--text_color: #999999;
	--border-color: rgba(190,204,211,0.87);
	/*colores items*/
	--verde: #34AE72;
	--azul: #0871B8;
	--viazul: #3DA0B9;
	--background-azul: #dbedfc;
	--title-color: #071041;
	--input-valid: #adc3c9;
	--input-invalid: #ffd3ab;
}
html{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
	/*overflow-x: hidden !important;*/
	background-color: rgba(120,160,244,0.10);
	background-image: url('../images/background_site.png');
	background-size: cover;
	background-repeat: no-repeat;
}
body{
	width: 100%;
	height: 100vh;
	overflow-x: hidden;
	position: absolute;
	margin: 0px auto;
}
body.login{
	height: 100vh;
	padding-bottom: 0px;
	overflow: hidden;
}
h1,h2,h3,h4,p,ul,li,a,img,ol{
	margin: 0px;
	padding: 0px;
	text-decoration: none;
	font-weight: 100;
	list-style: none;
	font-family: "Roboto";
}
.centre{
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
}
.grids_center{
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
	align-content: center !important;
	align-items: center !important;
	font-size: 0px;
}
.grids_left{
	display: flex !important;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: flex-end;
	align-items: center;
	color: --var(azul_log);
}

/*FRACCIONES*/
.fra-1{width: 100%;}
.fra-2{width: 50%;}
.fra-3{width: 33%;}
.fra-4{width: 25%;}
.fra-5{width: 20%;}
.fra-6{width: 16%;}
.fra-7{width: 14%;}
.fra-8{width: 12%;}
.fra-9{width: 11%;}
.fra-10{width: 10%;}
/*PORCENTAJES*/
.cien-1{width: 10%;}
.cien-2{width: 20%;}
.cien-3{width: 30%;}
.cien-4{width: 40%;}
.cien-5{width: 50%;}
.cien-6{width: 60%;}
.cien-7{width: 70%;}
.cien-8{width: 80%;}
.cien-9{width: 90%;}
.cien-10{width: 100%;}

.box-input{
	padding: 5px;
	display: inline-block;
	position: relative;
	vertical-align: top;
	box-sizing: border-box
}

/* - HEADER -*/
header{
	width: 100%;
	height: 60px;
	display: block;
	position: relative;
	padding: 5px;
	box-sizing: border-box;
	background-color: var(--azul);
	font-size: 0px;
}
header .header-logo{
	width: 120px;
	height: 100%;
	display: inline-block;
	position: relative;
	vertical-align: top;
	margin-right: 20px;
}
header .header-logo img{
	width: 100%;
	height: 100%;
	object-position: center center;
	object-fit: contain;
}
header div.header-title{
	width: auto;
	height: 100%;
	display: inline-flex;
    justify-content: center;
    align-items: center;
	border-left: 1px solid var(--border-color);
	padding: 10px;
	box-sizing: border-box
}
header div.header-title h1{
	font-size: large;
	color: #FFFFFF;	
}
header div.header-title h1 br{
	display: none;
}

/* MAIN - CONTENT */
div.main-content{
	width: 915px;
	max-width: 95%;
	min-height: 500px;
	height: auto;
	display: table;
	margin: 30px auto;
	padding: 25px 15px;
	border-radius: 10px;
	box-sizing: border-box;
	background-color: #FFFFFF;
	border: 1px solid var(--border-color);
	overflow: hidden;
}

div.main-content.LecturaPdf{
	display: block;
  justify-content: center;
  align-items: center;
	width: 915px;
	max-width: 95%;
	min-height: 500px;
	height: auto;
	margin: 30px auto;
	padding: 25px 15px;
	border-radius: 10px;
	box-sizing: border-box;
	background-color: #FFFFFF;
	border: 1px solid var(--border-color);
	overflow: hidden;
}
div.main-content h2.title-page{
	width: 100%;
	height: auto;
	text-align: center;
	font-size: large;
	color: var(--title-color);
}
div.main-content h2.title-page span{
	color: var(--naranja);
}
/*ELEMENTOS*/
.button{
	width: auto;
	height: auto;
	display: table;
	padding: 5px 15px;
	box-sizing: border-box;
	font-family: "Roboto";
	border: none;
	border-radius: 5px;
	line-height: 1.5;
	background-color: #5989a6;
	color: #FFFFFF;
	font-weight: 600;
	margin: 0px auto;
}
.button img{
	width: 20px;
	height: 20px;
	position: relative;
	vertical-align: top;
	display: inline-block;
	margin: 0px 5px;
}
.button:hover{
	cursor: pointer;
	background-color: #72a2ba;
}
/*COLORES BUTTONS*/
.button.ColorNaranja{background-color: var(--naranja) !important;}
.button.ColorNaranja:hover{background-color: #f7a961 !important;}
.button.ColorAzul{background-color: var(--title-color) !important;}
.button.ColorAzul:hover{background-color: #1c2756 !important;}
.button.ColorGris{background-color: #808080 !important;color:#333333;}

/*button texto */
button.button-text{
	width: auto;
	display: table;
	margin: 0px auto;
	border: none;
	outline: none;
	background-color: transparent;
	color: var(--title-color);
	font-weight: 600;
	font-size: x-large;
}
button.button-text span{
	color: var(--naranja);
}
button.button-text:hover{
	cursor: pointer;
	text-decoration: underline;
}

nav{
	width: 100%;
	height: 57px;
	display: block;
	margin: 0px auto;
	padding: 5px 10px;
	box-sizing: border-box;
	background-color: var(--azul);
}
nav div > img{
	display: inline-block;
	position: relative;
	vertical-align: top;
	margin: 0px 10px;
	padding: 0px 10px 0px 0px;
	border-right: 1px solid #FFFFFF; 
}
nav div > ul{
	height: 41px;
	margin: 0px;
	display: inline-block;
	position: relative;
	vertical-align: top;
}
nav div > ul li{
	height: 100%;
	line-height: 1.8;
	display: inline-block;
	position: relative;
	vertical-align: top;
	color: #FFFFFF;
	font-size: 24px;
}
nav div > ul li img{
	margin: auto 10px;
}
#container-form:not(.main-content){
	width: 400px;
	height: auto;
	display: block;
	margin: 30px auto;
}
#container-form:not(.main-content) > img.logo-form{
	display: block;
	margin: 0px auto;
}
#container-form:not(.main-content) > img.bar-color{
	margin: 15px auto 25px;
}
#container-form:is(.main-content) img.bar-color{
	display: block;
	margin: 0px auto;
}
/* elementos del formulario */
input[type="text"],input[type="date"],input[type="password"]{
	width: 80%;
	height: 40px;
	display: block;
	margin: 10px auto;
	border-radius: 5px;
	border: 1px solid var(--border-color);
	padding: 5px 10px;
	box-sizing: border-box;
	font-family: "Roboto";
	color: #282828;
	outline: none !important;
}
input#fecha_n::after{
	content: 'Fecha de nacimiento';
}
#container-form:not(.main-content) > form label.title{
	font-weight: 600;
	font-family: "Roboto";
	color: #0071bc;
	margin: 10px 0px;
}
#container-form:not(.main-content) > form #terminos{
	width: 100%;
	height: 200px;
	border-radius: 5px;
	padding: 5px;
	box-sizing: border-box;
	overflow: hidden;
	overflow-y: scroll;
	margin: 10px auto;
	border: 1px solid var(--border-color);
	background-color: #FFFFFF;
	text-align: justify;
	word-wrap: break-word;
	font-size: 13px;
}
#terminos::-webkit-scrollbar {
  width: 10px;
}

/* scroll */
#terminos::-webkit-scrollbar-track {
  background-color: #68a2b9; 
  border-radius: 10px;
}

/* barra de navegación */
#terminos::-webkit-scrollbar-thumb {
  background: #f2f2f2; 
  border-radius: 10px;
}
/* barra de navegación on hover */
#terminos::-webkit-scrollbar-thumb:hover {
  background: #ff9015; 
}
/* CSS INPUT checkbox */
input[type="checkbox"]{
	display: none;
}
input[type="checkbox"] + label{
	width: 30px;
	height: 30px;
	display: inline-block;
	position: relative;
	vertical-align: top;
	background-color: #F3F3F3;
	border: 4px solid var(--azul);
	border-radius: 10px;
	padding: 3px;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="checkbox"] + label span{
	width: 1px;
	height: 1px;
	display: block;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	border-radius: 5px;
	transition: all 0.1s;
}
input[type="checkbox"]:checked + label span{
	width: 100%;
	height: 100%;
	background-color: var(--naranja);
}
/* inactivos */
input[type="checkbox"]:disabled + label{
	border: 4px solid #828282;
}
/*input[type="checkbox"]:disabled + label span{
	width: 50%;
	height: 50%;
	background-color: #555555;
	border-radius: 2px;
}*/
#container-form:not(.main-content) > form p.title{
	width: auto;
	height: 30px;
	padding: 0px 10px;
	font-size: 12px;
	display: inline-table;
	position: relative;
	vertical-align: top;
	color: #096ea4;
	font-weight: 600;
}
#container-form:not(.main-content) > form button[type="submit"]{
	display: block;
	margin: 15px auto;
	border: none;
	border-radius: 5px;
	outline: none;
	color: #FFFFFF;
	font-family: "Roboto";
	background-color: #5b8ea6;
	padding: 10px 10px;
	box-sizing: border-box;
	cursor: pointer;
}
#container-form:not(.main-content) > form button[type="submit"]:hover{
	background-color: #71A4BC;
}
#container-form:not(.main-content) > form button[type="submit"] img{
	display: inline-block;
	position: relative;
	vertical-align: top;
	margin-left: 10px;
}
#container-form:not(.main-content) > p.footer{
	width: 100%;
	height: auto;
	margin-top: 20px;
	border-top: 1px solid var(--border-color);
	padding: 10px 0px;
	text-align: center;
	font-family: "Roboto";
	color: var(--text_color);
}
#container-form:not(.main-content) > p.footer a{
	color: #096ea4;
	font-weight: 600;
}
#container-form:not(.main-content) > form > div{
	width: auto;
	height: auto;
	display: table;
	margin: 0px auto;
}
/* sin conexion */
.not_fund{
	display: block;
	left: 50%;
	margin: 20px 0 40px;
	transform: translate(-50%);
	position: relative;
}
.title_fund{
	width: 200%;
	text-align: center;
	display: table;
	left: 50%;
	margin: 10px 0 20px;
	transform: translate(-50%);
	position: relative;	
	font-family: "Roboto";
	color: #0071bc;
}
/* css nav responsive */
@media screen and (max-width:1000px){
	nav{
		height: auto;
	}
}
@media screen and (max-width:700px){
	nav div{
		width: auto;
		display: table;
		margin: 0px auto
	}
	.not_fund{
		width: 100%;
	}
	.title_fund{
		width: 100%;
		font-size: large;
	}
	#container-form:is(.main-content) img.bar-color{
	width: 70%;
	}
}
@media screen and (max-width:500px){
	nav > ul > li{
		display: table;
		margin: 10px auto !important;
		line-height: normal !important;
	}
}

/* CSS @MEDIA 1050 < */
@media screen and (max-width:1050px){
	div.main-content{
		width: 95% !important;
		max-width: 95% !important;
		margin-bottom: 50px !important;
	}
}

/* CSS @MEDIA 780 < */
@media screen and (max-width:780px){
	div.main-content{
		margin-bottom: 50px !important;
	}
}
/* CSS @MEDIA 420 < */
@media screen and (max-width:420px){
	header div.header-title h1 br{display: block;}
	header .header-logo{width: 100px;margin-right: 10px;}
}

.button{
	width: auto;
	height: auto;
	display: table;
	margin: 30px auto 50px;
	padding: 10px 15px;
	border-radius: 5px;
	background-color: #ff9015;
	font-family: "Roboto";
	font-weight: 600;
	color: #FFFFFF;
	cursor: pointer;
}
.button:hover{
	background-color: #FFA037;
}

/*JQuery-Confirm styles*/
div.jconfirm{
	font-family: "Roboto" !important;
}

@media screen and (max-width:500px){
	div.jconfirm-box{
		width: 60% !important;
	}
}

/* validation_add */
.center_divs label{
	width: 50%;
	display: inline-block;
	position: relative;
	vertical-align: top;
}
img.logo-form{
	margin: 0px auto 20px !important;
}
form.validation > p{
	width: 100%;
	height: auto;
	margin: 0px 0px 20px;
	text-align: justify;
	color: #606060;
}
form.validation > h2{
	width: 100%;
	height: auto;
	margin: 10px auto 20px;
	font-size: large;
	text-align: center;
	font-weight: 600;
	color: var(--azul);
}
.inputs_content{
	width: auto;
	display: table;
	margin: 0px auto;
}
.inputs_content p{
	font-size: smaller !important;
	line-height: 2;
	color: #606060 !important;
}
/* inputs validation */
.radio_family{
	display: none
}
.radio_family + label{
	width: 30px;
	height: 30px;
	padding: 5px;
	margin: 0px 5px;
	cursor: pointer;
	position: relative;
	vertical-align: top;
	border-radius: 100%;
	transition: all 0.2s;
	display: inline-block;
	box-sizing: border-box;
	border: 2px solid var(--border-color);
}
.radio_family + label span{
	width: 100%;
	height: 100%;
	display: block;
	margin: 0px auto;
	border-radius: 100%;
	transition: all 0.2s;
	background-color: var(--border-color);
}
.radio_family:checked + label{
	transition: all 0.2s;
	border: 2px solid var(--naranja);
}
.radio_family:checked + label span{
	transition: all 0.2s;
	background-color: var(--azul);
}

/*Alertas de validación de código*/
.jconfirm-content-pane p{
    margin: 15px 0px;
    text-align: center;
}
.jconfirm-content-pane input[type="radio"]{
    display: none
}
.jconfirm-content-pane input[type="radio"] + label{
    width: auto;
    height: auto;
    margin: 0px 5px;
    cursor: pointer;
    padding: 5px 5px;
    border-radius: 2px;
    position: relative;
    vertical-align: top;
    display: inline-table;
    background-color: #BEBEBE;
    border: 1px solid #494949;
    font-weight: 600;
}
.jconfirm-content-pane input[type="radio"]:checked + label{
    background-color: #3391C1;
    color: #FFFFFF;
}
.jconfirm-content-pane div.center{
    width: auto;
    height: auto;
    display: table;
    margin: 0px auto 15px;
}

/*Campos de opciones en el login*/
.center_inpiut{
	width: auto;
	display: block;
	margin: 0px auto;
}  
.base_datos{
	width: auto;
	height: auto;
	margin: 20px auto !important;
}

/*Datepicker - Jquery UI - Seleccion fecha login*/
.ui-widget-content,
.ui-widget-content,
.ui-datepicker .ui-datepicker-header,
.ui-datepicker .ui-datepicker-title,
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next,
.ui-datepicker table,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-state-default {
  background: #95c9ec;
}

.ui-datepicker .ui-datepicker-month,
.ui-datepicker .ui-datepicker-year {
	background-color: #fff;
	border-style: solid;
    border-radius: 3px;
}

.ui-datepicker .ui-icon {
	color: #fff;
}

.ui-datepicker a.ui-state-default,
.ui-datepicker th {
  color: #282828 !important;
  border: none !important;
  text-align: center !important;
  border-radius: 3px;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  background: var(--azul) !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  background: var(--naranja) !important;
}

#terminosCondicionesLabel:hover{
	color: rgb(255,144,21)!important;
}

.codigo-correcto{
display: inline-block;
background-color: #fff;
border-radius: 30px;
width: -webkit-fill-available;
height: fit-content;
text-align: center;
border: outset;
border-color: #7fff00;
}

.codigo-incorrecto{
display: inline-block;
background-color: #fff;
border-radius: 30px;
width: -webkit-fill-available;
height: fit-content;
text-align: center;
border: outset;
border-color: #fd0000;
}

.m-signature-pad {
  /*position: absolute;*/
  font-size: 10px;
  width: 400px;
  height: 200px;
  top: 23%;
  left: 46%;
  margin-left: -350px;
 /* margin-top: -152px;*/
  border: 1px solid #e8e8e8;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.08) inset;
   border: 1px solid black;
}

.m-signature-pad:before, .m-signature-pad:after {
    position: absolute;
  z-index: -1;
  content: "";
    width: 40%;
    height: 10px;
    left: 20px;
    bottom: 10px;
    background: transparent;
    -webkit-transform: skew(-3deg) rotate(-3deg);
    -moz-transform: skew(-3deg) rotate(-3deg);
    -ms-transform: skew(-3deg) rotate(-3deg);
    -o-transform: skew(-3deg) rotate(-3deg);
    transform: skew(-3deg) rotate(-3deg);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

.m-signature-pad:after {
    left: auto;
    right: 20px;
    -webkit-transform: skew(3deg) rotate(3deg);
    -moz-transform: skew(3deg) rotate(3deg);
    -ms-transform: skew(3deg) rotate(3deg);
    -o-transform: skew(3deg) rotate(3deg);
    transform: skew(3deg) rotate(3deg);
}

.m-signature-pad--body {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  bottom: 60px;
  border: 1px solid #f4f4f4;
}

.m-signature-pad--body
  canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.02) inset;
  }

.m-signature-pad--footer {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  height: 40px;
}

.m-signature-pad--footer
  .description {
    color: #C3C3C3;
    text-align: center;
    font-size: 1.2em;
    margin-top: 1.8em;
  }

.m-signature-pad--footer
  .button {
    position: absolute;
    bottom: 0;
  }

.m-signature-pad--footer
  .button.clear {
    left: 0;
  }

.m-signature-pad--footer
  .button.save {
    right: 0;
  }

@media screen and (max-width: 800px) {
  .m-signature-pad {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    min-width: 250px;
    min-height: 140px;
    margin: 5%;
  }
  #github {
    display: none;
  }
}

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .m-signature-pad {
    margin: 10%;
  }
}

@media screen and (max-height: 320px) {
  .m-signature-pad--body {
    left: 0;
    right: 0;
    top: 0;
    bottom: 32px;
  }
  .m-signature-pad--footer {
    left: 20px;
    right: 20px;
    bottom: 4px;
    height: 28px;
  }
  .m-signature-pad--footer
    .description {
      font-size: 1em;
      margin-top: 1em;
    }
}

.forms{
	width: 100%;
  height: 30px;
  padding: 5px;
  top: 0px;
  left: 0px;
  display: block;
  font-weight: 400;
  font-size: medium;
  text-align: center;
  font-family: "Roboto";
  box-sizing: border-box;
  color: #FFFFFF;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  background-color: #6699cc;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

#login input.fecha{
	width: 25%!important;
    display: inline-flex;
}
.fecha-nacimiento-container{
	width: 80%;
	text-align: center;
}
#login .input-login-label{
	width: 80%;
    display: block;
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Roboto";
    color: #282828;
    outline: none !important;
}
#toast-container{
	font-family: "Roboto"!important;
	font-size: small;
}