: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);

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

@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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: var(--opensans_light);
    -webkit-tap-highlight-color: transparent;
    /* iOS */
    -moz-outline-style: none;
    outline-style: none;
    /* Firefox */
    outline: none;
    /* Todos los demás navegadores */
}

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: 8px;
    cursor: pointer;
    transition: all 0.5s;
}

.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;
}

#btn_menu_dashboard{
    background: var(--sombraPrimario);
}