/*estilos*/

*{
   margin: 0;
}

.boton-top
{
    cursor:pointer;
    opacity:0.3;
    position:fixed;
    display:none;
}

.boton
{       
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #000000;
       
    font-family: 'Candara';
    font-size: 14pt;
    color: white;
}

.boton:hover
{
    cursor: pointer;
    background: #444444;
}

.boton_circular
{
    -moz-border-radius: 35px;
    border-radius: 35px;
    background:#3399cc;
    color:white;
}

.boton_circular:hover
{
    cursor: pointer;
    background:#006699;
}

.boton_cerrar_ventanas{
    float: right;
    -moz-border-radius: 35px;
    border-radius: 35px;
    background: #C40000;
    color: white;
}

.boton_cerrar_ventanas i{
    color: white;
    position: relative;
}

.boton_cerrar_ventanas:hover{
    cursor: pointer;
    background: #8A0000;
}

.btn_google3 {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    
    padding-left: 13px;
    padding-right: 13px;
    padding-top: 13px;
    padding-bottom: 13px;
    box-sizing: border-box;

    font-size: 13px;
    font-family: Roboto-Regular, sans-serif;

    font-weight: bold; 
    
    /*-webkit-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.35); 
    -moz-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.35); 
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.35);*/
}

.btn_google3:hover {
    /*background: #3399FF;*/
    background: #222222;
    cursor: pointer;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn_radius {
    -webkit-border-radius: 20px;
    border-radius: 20px;
    
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    
    padding-left: 13px;
    padding-right: 13px;
    padding-top: 13px;
    padding-bottom: 13px;
    box-sizing: border-box;

    font-size: 13px;
    font-family: Roboto-Regular, sans-serif;
}

.btn_radius:hover {
    background: #222222;
    cursor: pointer;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.caja
{
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 1px 12px 1px 12px;
              
    border-left: solid 1px LightGray;
    border-right: solid 1px LightGray;
    border-top: solid 1px LightGray;
    border-bottom: solid 1px LightGray;
       
    font-family: 'Calibri Light';
    font-size: 11pt;
    color: #565656;
       
    text-transform: uppercase;
}

.caja2{
    width: 100%;
    margin-top: 10px;

    border: none;
    outline: none;

    -webkit-border-radius: 8px !important;
    border-radius: 8px !important;

    padding: 10px 12px 10px 12px !important;
    box-sizing: border-box !important;
              
    border: solid 1px gainsboro !important;
    background: #ffffff;

    font-size: 15px !important;
    color: #393a3a;
    font-family:  Roboto-Regular, sans-serif;

    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;

    -webkit-transition: border .3s, -webkit-box-shadow .3s;
            transition: border .3s, -webkit-box-shadow .3s;
            transition: box-shadow .3s, border .3s;
            transition: box-shadow .3s, border .3s, -webkit-box-shadow .3s;

    box-sizing: border-box;
}

.caja2:focus{
    border: solid 1px #C40000 !important;
}

.combo
{
    border: none;
    outline: none;
    
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 8px 14px 8px 12px;
       
    border-left: solid 1px LightGray;
    border-right: solid 1px LightGray;
    border-top: solid 1px LightGray;
    border-bottom: solid 1px LightGray;
       
    font-family: 'Calibri Light';
    font-size: 11pt;
    color: #565656;
       
    cursor: pointer;
}

.combo2
{
    border: none;
    outline: none;
    
    -webkit-border-radius: 8px;
    border-radius: 8px;

    padding: 8px 5px 8px 5px !important;
    box-sizing: border-box !important;
       
    border: solid 1px silver;
    background: #f2f7fd;
       
    cursor: pointer;
    width: 100%;

    font-size: 14px;
    color: gray;
    font-family:  Roboto-Regular, sans-serif;
}

.combo2:focus{
    border: solid 1px #A88628 !important;
}

.combo2 option{
    -webkit-border-radius: 8px;
    border-radius: 8px;

    padding: 20px;
    background: #ffffff;
    color: #222222;
    border: solid 1px #34abb7;
}

.combo2 option:hover{
    background: #eeeeee !important;
}

.liga1
{
    text-align: center;
    cursor: pointer;
}

.liga1:hover
{
    opacity:.7;
    -moz-opacity: 0.7;
    filter: alpha(opacity=70);
}

.aumento1
{
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.aumento1:hover
{
    transform : scale(1.1);
	-moz-transform : scale(1.1); /* Firefox */
	-webkit-transform : scale(1.1); /* Chrome - Safari */
	-o-transform : scale(1.1); /* Opera */
	-ms-transform : scale(1.1); /* IE9 */
}

.fondo:hover
{
    background: #f7f7f7;
}


/*Elementos circulares*/
.circulo{
    -moz-border-radius: 80px;
    border-radius: 80px;
    cursor: pointer;
}



.header_saci{
    width: 100%; 
    height: 70px; 

    background: linear-gradient(#8A0000, #C40000);

    position: fixed;
    z-index: 600;
    box-sizing: border-box;
    
    display: flex; justify-content: space-around; align-items: center;
}

.header_saci2{
    width: 100%; 
    height: 70px; 

    background: linear-gradient(#A88628, #C39C2F);

    position: fixed;
    z-index: 600;
    box-sizing: border-box;
}

.content_prin{
    padding-top: 70px; 
    width: 100%;
    height: 100%; 
    position: absolute;
    overflow-y: auto; 
    box-sizing: border-box;
}

.box1 {
    background: #ffffff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.box1:hover {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;

    transform : scale(1.05);
    -moz-transform : scale(1.05); /* Firefox */
    -webkit-transform : scale(1.05); /* Chrome - Safari */
    -o-transform : scale(1.05); /* Opera */
    -ms-transform : scale(1.05); /* IE9 */ 
}



/*-------textos------*/
p{
    box-sizing: border-box;
    color: #222222;
    font-size: 14px;
    font-family: Roboto-Regular, sans-serif;
}

h1,h2,h3,h4,h5,h6{
    box-sizing: border-box;
    color: #222222;
    font-family: Roboto-Regular, sans-serif;
}

a{
    text-decoration: none;
    font-family: Roboto-Regular, sans-serif;
}

li{
    box-sizing: border-box;
    color: #222222;
    font-size: 14px;
    font-family: Roboto-Regular, sans-serif;
}


/*Font Awesome*/
.menu_1{
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    font-family: Roboto-Regular, sans-serif;
}

.menu_1:hover
{
    color: #f7f7f7;
    cursor: pointer;
}

.menu_2{
    color: #777777;
    font-size: 14px;
    text-decoration: none;
    font-family: Roboto-Regular, sans-serif;
}

.menu_2:hover
{
    color: #444444;
    cursor: pointer;
}


/*----------Menú superior------------*/
.menuCSS3 ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    float: right;/*------*/
}

.menuCSS3 a {
    float: right;/*------*/
    width: 100%;/*------*/

    display: block;
    padding: 0px;
    /*background: #4B277A;*/
    text-decoration: none;
        
    font-size: 10pt;
    text-align: center;
    font-family: NotoSans-Regular, sans-serif;
    /*border-bottom: solid 1px #4B4B4B;*/

    -webkit-border-radius: 12px;
    border-radius: 12px;
}

.menuCSS3 a:hover {
    /*background: #f7f7f7;*/
    /*color: #1d1d1d;*/
}

.menuCSS3 ul li ul {
    background: #ffffff;
    display: none;

    -webkit-border-radius: 12px;
    border-radius: 12px;

    -webkit-box-shadow: 2px 5px 8px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 5px 8px 0px rgba(0,0,0,0.75);
    box-shadow: 2px 5px 8px 0px rgba(0,0,0,0.75);
}

.menuCSS3 ul li ul a:hover {
    background: #f7f7f7;
}

.menuCSS3 ul li ul a {
    background: #ffffff;
    color: gray;
    padding: 10px;
    box-sizing: border-box;
    width: 200px;/*------*/
    text-align: left;
}

.menuCSS3 ul li ul a i {
    color: #000000;
}

.menuCSS3 ul li a:hover + ul, .menuCSS3 ul li ul:hover {
    display: block;
    margin-top: 100px;
}

.menuCSS3Static_item 
{
    cursor: pointer;
    float: right;/*------*/
    width: 200px;/*------*/

    display: block;
    padding: 0px;
    background-color: #ffffff;
    text-decoration: none;
        
    font-size: 1.1em !important;
    color: gainsboro;
    font-family: sans-serif;
}



/*SCROLLBARS*/
::-webkit-scrollbar {
    width: 9px;
    height: 8px;
}
 
::-webkit-scrollbar-track {
    /*background: rgba(0,0,0,0.3);*/
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2); */
    border-radius: 0px;
}
 
::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.1);
    border-radius: 0px;
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
}



/*CAPAS MODALES*/
.capa_modal{
   display: none;
   z-index: 700;

   width: 100%;
   height: 100%;
   position: fixed;
   
   /*background: rgba(255,255,255,.5);*/
   background: rgba(0,0,0,.2);
   overflow-y: auto;
}

.capa_modal_light{
   display: none;
   z-index: 700;
   
   width: 100%; 
   height: 100%; 
   position: fixed; 

   background: linear-gradient(#fff, #f2f2f2);
   overflow-y: auto;
}

.ventana_modal{
    z-index: 701;

    -webkit-border-radius: 8px;
    border-radius: 8px;
    background: #ffffff;

    border: solid 1px silver;

    margin: auto;
    position: relative;
    top: 50%;
    transform: translatey(10%);
}

.contenedor_inicio {
    width: 80%; margin: auto; padding-bottom: 25px;
}

.ventana_modal4{
    z-index: 701;

    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #ffffff;

    width: 96%;
    margin: auto;

    -webkit-box-shadow: -1px 5px 8px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 5px 8px 0px rgba(0,0,0,0.75);
    box-shadow: -1px 5px 8px 0px rgba(0,0,0,0.75);
}

.cabecera{
    width: 100%;
    background: #C39C2F;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing:  border-box;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn_close2 {
    cursor: pointer;
    color: #ffffff;
    margin-left: 10px;
}

.modal_interno {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;   
}



/*TABLAS*/
.mitabla
{
    border-collapse: collapse;
    width: 100%;
}

.mitabla td
{
    /*padding: 2px;
    box-sizing: border-box;*/
    /*border-style: dotted;*/
}

.titulos
{
    background: #56c4cf;
    /*font-variant: small-caps;*/

    padding: 8px;
    box-sizing: border-box;
    
    /*padding-left: 8px;
    padding-right: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
    box-sizing: border-box;*/
    
    font-size: 13px;
    text-align: center;
    color: #ffffff;
    font-family: Roboto-Regular, sans-serif;
}





@media (max-width: 750px) {
    .contenedor_registro {
        width: 96%; margin: auto; padding-bottom: 15px;
    }

    .contenedor_inicio {
        width: 96%; margin: auto; padding-bottom: 25px;
    }
}




@font-face {
    font-family: 'soberana titular';
	/*src: url('Fuentes/SoberanaTitular-Regular.eot');
	src: local('☺'), url('Fuentes/SoberanaTitular-Regular.woff') format('woff'), url('Fuentes/SoberanaTitular-Regular.ttf') format('truetype'), url('Fuentes/SoberanaTitular-Regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;*/
	src: url("../fonts/Lato-Regular.ttf") /* TTF file for CSS3 browsers */
}

@font-face {
    font-family: 'soberana sans light';
	/*src: url('Fuentes/SoberanaSans-Light.eot');
	src: local('☺'), url('Fuentes/SoberanaSans-Light.woff') format('woff'), url('Fuentes/SoberanaSans-Light.ttf') format('truetype'), url('Fuentes/SoberanaSans-Light.svg') format('svg');
	font-weight: normal;
	font-style: normal;*/
	src: url("../fonts/Lato-Regular.ttf") /* TTF file for CSS3 browsers */
}

@font-face {
    font-family: 'Roboto-Regular';
	src: url("../fonts/Lato-Regular.ttf") /* TTF file for CSS3 browsers */
}
