:root {
    /*Colores*/
    --primario: rgb(30, 58, 138);
    --secundario: rgb(59, 130, 246);
    --terciario: rgb(239, 246, 255);
    --sombraPrimario: rgb(30, 58, 138, 0.1);
    --sombraSecundario: rgb(59, 130, 246, 0.043);
    --sombraTerciario: rgb(239, 246, 255, 0.4);
    --sombraRoja:              rgb(255, 0, 0, 0.1);
    --sombraGris:              rgb(0, 0, 0, 0.03);
    --sombraSeleccion: rgb(30, 58, 138, 0.4);
    --gris: rgb(129, 127, 127);
    --verde: #28A745;
    --naranja: #FD7E14;
    --amarillo: #FFC107;
    --rojo: #DC3545;

    --monserrat: "monserrat";
    --monserrat_bold: "monserrat_bold";
    --opensans_light: "opensans_light";
    --opensans_bold: "opensans_bold";
}

@font-face {
    font-family: 'monserrat';
    src: url('../fuentes/monserrat.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'monserrat_bold';
    src: url('../fuentes/monserrat_bold.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'opensans_light';
    src: url('../fuentes/opensans_light.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'opensans_bold';
    src: url('../fuentes/opensans_bold.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: var(--opensans_light);
}

div {
    display: flex;
}

img {
    object-fit: contain;
}

input{
    border: none;
    outline: none;
    background: none;
}

input[type=number] {
    -moz-appearance: textfield;
  }
  
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#contenedor{
    width: 100%;
    height: 100%;
    flex-direction: row;
    align-items: center;
    background: #ffffff;
}

#menu{
    width: 250px;
    min-width: 250px;
    height: 100%;
    flex-direction: column;
    background: var(--sombraSecundario);
    border-right: solid 0.5px var(--sombraTerciario);
    padding: 16px;
}


#caja_logo{
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: solid 0.5px var(--sombraPrimario);
}

#logo_zignus{
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0.7px 2px rgba(0, 0, 0, 0.34));
}

#p_logo{
    width: auto;
    height: auto;
    font-size: 25px;
    font-family: var(--monserrat_bold);
    margin-left: 20px;
    color: var(--primario);
    filter: drop-shadow(0 0.7px 2px rgba(0, 0, 0, 0.34));
}

.btn_menu{
    width: 100%;
    height: 52px;
    flex-direction: row;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px;
    border-bottom: solid 1px var(--sombraSecundario);
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.5s;
}

#btn_volver{
    display: none;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
}

.btn_menu:hover{
    transform: scale(1.01);
}

.icono_menu{
    width: 30px;
    height: 30px;
    pointer-events: none;
}

.p_menu{
    width: 100%;
    height: auto;
    margin-left: 25px;
    color: var(--primario);
    font-family: var(--monserrat_bold);
    pointer-events: none;
}

#principal{
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 20px;
}

#head_principal{
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.icono_volver{
    width: 30px;
    height: 30px;
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

#titulo_seccion{
    width: 100%;
    height: auto;
    font-size: 25px;
    color: var(--primario);
    font-family: var(--monserrat_bold);
    margin-bottom: 15px;
}

.seccion{
    display: none;
    width: 100%;
    height: 100%;
    flex-direction: column;
    overflow-y: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
}

.titulo_registro{
    width: auto;
    height: auto;
    font-size: 15px;
    font-family: var(--opensans_bold);
    margin-bottom: 11px;
    opacity: 0.7;
}

.dato_perfil{
    width: auto;
    height: auto;
    color: var(--primario);
    font-family: var(--opensans_bold);
    font-size: 18px;
    margin-bottom: 25px;
}

.p_formulario{
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    font-size: 16px;
}

.span_azul{
    color: var(--primario);
    font-family: var(--opensans_bold);
}

.input_registro{
    width: 400px;
    height: 30px;
    font-size: 18px;
    margin-bottom: 22px;
    padding: 7px;
    border: solid 1px var(--sombraPrimario);
    border-radius: 9px;
}

.input_number{
    width: 100px;
    height: 30px;
    font-size: 18px;
    padding: 7px;
    margin-bottom: 22px;
    border: solid 1px var(--sombraPrimario);
    border-radius: 9px;
}

.caja_fechas{
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    margin-bottom: 22px;
}

.input_fecha{
    width: 180px;
    min-width: 180px;
    height: 40px;
    font-size: 18px;
    margin-right: 25px;
    padding: 7px;
    border: solid 1px var(--sombraPrimario);
    border-radius: 9px;
}

.caja_horas{
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 7px;
    border: solid 1px var(--sombraPrimario);
    border-radius: 9px;
    margin-right: 25px;
}

.input_hora{
    width: 40px;
    min-width: 40px;
    height: auto;
    font-size: 18px;
    text-align: center;
}

.p_fecha{
    width: 10px;
    height: auto;
    font-size: 22px;
    margin-right: 25px;
    text-align: center;
}

.btn_registro{
    width: 160px;
    height: 45px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 15px;
    background: var(--primario);
    margin-top: 16px;
    cursor: pointer;
    transition: all 0.5s;
}

.btn_registro:hover{
    transform: scale(1.007);
}

.icono_btn{
    width: 25px;
    height: 25px;
}

#btn_registro_contratista{
    width: 133px;
}

#btn_actualizar_perfil{
    width: 178px;
}

.p_registro{
    width: auto;
    height: auto;
    font-size: 20px;
    color: #ffffff;
    font-family: var(--opensans_bold);
    margin-right: 20px;
    pointer-events: none;
}

.icono_registro{
    width: 30px;
    height: 30px;
    pointer-events: none;
    margin-right: 16px;
}

.msj_enviando{
    width: 100%;
    height: 43px;
    min-height: 43px;
    color: var(--primario);
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
    opacity: 0;
    font-size: 18px;
    font-family: var(--opensans_bold);
}

.p_msj_registro{
    width: 100%;
    height: auto;
    font-size: 18px;
    font-family: var(--opensans_bold);
    color: var(--primario);
    pointer-events: none;
    margin-right: 12px;
}

#continuar_bienvenida{
    width: auto;
    height: auto;
    font-size: 22px;
    color: var(--primario);
    font-family: var(--monserrat_bold);
    margin-top: 40px;
    padding-bottom: 1.5px;
    border-bottom: solid 1px var(--primario);
    opacity: 0.7;
    transition: all 0.5s;
    cursor: pointer;
    margin-right: auto;
}

#continuar_bienvenida:hover{
    opacity: 1;
}

.msj_formulario{
    width: auto;
    height: 43px;
    margin-top: 30px;
    color: var(--primario);
    font-family: var(--monserrat_bold);
    text-align: center;
    align-content: center;
    font-size: 20px;
}

.buscador{
    width: 450px;
    height: auto;
    flex-direction: row;
    align-items: center;
    border: solid 0.5px var(--sombraPrimario);
    padding: 11px;
    padding-top: 7px;
    padding-bottom: 7px;
    border-radius: 20px;
}

.icono_buscar{
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.input_buscador{
    width: 100%;
    height: 30px;
    margin-left: 16px;
    font-size: 18px;
}

.paginador{
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
}

.head_paginador{
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background: var(--sombraSecundario);
    border-radius: 5px 5px 0px 0px;
    padding-top: 7px;
    padding-bottom: 7px;
    border-bottom: solid 0.5px var(--secundario);
}

.filtro_paginador{
    height: auto;
    font-size: 16px;
    font-family: var(--opensans_bold);
    text-align: start;
    color: var(--primario);
    padding-left: 10px;
    padding-right: 10px;
}

.cuerpo_paginador{
    width: 100%;
    flex-direction: column;
}

.obj_paginador{
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    border-bottom: solid 1px var(--sombraPrimario);
    transition: all 0.5s;
}

.obj_paginador:hover{
    transform: scale(1.003);
    background: var(--sombraSecundario);
}

.p_paginador{
    height: auto;
    text-align: start;
    padding: 10px;
}

.icono_paginador{
    width: 22px;
    height: 22px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.5s;
}

.icono_paginador:hover{
    opacity: 1;
    transform: scale(1.002);
}

.footer_paginador{
    width: 100%;
    height: 34px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    position: relative;
}

.flecha_invisible{
    visibility: hidden;
    width: 25px;
    height: 25px;
}

.flecha_visible{
    visibility: visible;
    width: 25px;
    height: 25px;
    pointer-events:all;
    cursor: pointer;
}

.p_pagina{
    width: 150px;
    min-width: 150px;
    height: auto;
    text-align: center;
}

.caja_opciones_paginador{
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
}

.boton_agregar{
    width: 150px;
    min-width: 150px;
    height: auto;
    align-items: center;
    justify-content: center;
    background: var(--primario);
    border-radius: 11px;
    padding: 11px;
    padding-bottom: 7px;
    padding-top: 7px;
    margin-left: auto;
    color: #ffffff;
    font-family: var(--monserrat_bold);
    cursor: pointer;
}

.div_check{
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    margin-right: 61px;
}

.btn_check{
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    border: solid 1px var(--primario);
    padding: 2.5px;
    cursor: pointer;
}

.icono_check{
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.p_check{
    width: auto;
    height: auto;
    font-size: 20px;
    margin-left: 11px;
}

#seccion_registro_proyecto{
    flex-direction: row;
}

.columna_registro{
    width: 100%;
    height: auto;
    flex-direction: column;
}

.div_check_trabajo{
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    margin-top: 15px;
}

.input_otros{
    width: 400px;
    height: 30px;
    font-size: 18px;
    margin-top: 22px;
    margin-bottom: 22px;
    padding: 7px;
    border: solid 1px var(--sombraPrimario);
    border-radius: 9px;
}

.contenedor_progreso{
    width: 100%;
    height: 11px;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    border: solid 0.5px rgb(0, 0, 0, 0.7);
    border-radius: 11px;
}

.barra_progreso{
    height: 100%;
    border-radius: 11px;
}

.p_paginador_progreso{
    width: 100%;
    height: auto;
    margin-top: 11px;
    text-align: right;
}

.btn_head{
    width: 160px;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 7px;
    border-radius: 11px 11px 0px 0px;
    margin-right: 11px;
    font-family: var(--opensans_bold);
    font-size: 18px;
    color: var(--primario);
    cursor: pointer;
    transition: all 0.5s;
}

.btn_head:hover{
    transform: scale(1.006);
}

#btn_proyecto_contratistas{
    background: var(--primario);
    color: #ffffff;
}

.subseccion{
    width: 100%;
    height: auto;
    flex-direction: row;
}

#btn_guardar_contratistas{
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 7px;
    margin-left: 52px;
    padding-right: 11px;
    border: solid 1px var(--sombraSecundario);
    border-radius: 16px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.5s;
}

#btn_guardar_contratistas:hover{
    opacity: 1;
}

.icono_guardar{
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.p_btn_guardar{
    width: auto;
    height: auto; 
    font-size: 20px;
    margin-left: 16px;
    pointer-events: none;
}

#seccion_dashboard{
    display: flex;
    flex-direction: row;
}

.columna_grafico{
    width: 100%;
    height: auto;
    flex-direction: column;
}

#total_archivos{
    width: 100%;
    height: auto;
    font-size: 22px;
    align-items: center;
    text-align: center;
    font-family: var(--opensans_bold);
}

#contenedor_grafico{
    width: 100%;
    height: auto;
    flex-direction: column;
    margin-top: 25px;
}

.lista_faltantes{
    width: 100%;
    height: auto;
    flex-direction: column;
    padding-left: 34px;
}

.obj_dashboard{
    width: 250px;
    height: auto;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 25px;
    border-bottom: solid 1px var(--sombraPrimario);
}

.p_proyecto_dashboard{
    width: auto;
    height: auto;
}

.caja_progreso_dashboard{
    width: auto;
    height: auto;
    flex-direction: column;
    margin-top: 16px;
}