@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --azul-mersey: #042433;
    --amarillo: #FECB35;
    --fondo-item: #F9F9F9;
    --fondo-banner: #505F6D;
    --apex-letra: #4d4d4d;
    --apex-etiqueta: #337ac0;
    --apex-fondo-item: #fafafa;
    --borde-form: #f2f2f2;
    --mensaje_verde: rgb(174, 236, 174);
    /*-home-*/
    --home-celeste-fondo: #E7EDFF;
    --home-azul: #293447;
    --home-celeste: #5D86FF;
    /*-hoy-*/
    --hoy-rosa: #FFE0E6;
    --hoy-verde: #E4FCEF;
    --hoy-celeste: #E7EDFF;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

.t-Body-contentInner {
    padding: 0 !important;
}

.w05 {
    width: 5%;
}

.w10 {
    width: 10%;
}

.w15 {
    width: 15%;
}

.w20 {
    width: 20%;
}

.w25 {
    width: 25%;
}

.w30 {
    width: 30%;
}

.w33 {
    width: 33.33%;
}

.w40 {
    width: 40%;
}

.w50 {
    width: 50%;
}

.w60 {
    width: 60%;
}

.w66 {
    width: 66.66%;
}

.w75 {
    width: 75%;
}

.w70 {
    width: 70%;
}

.w80 {
    width: 80%;
}

.w90 {
    width: 90%;
}

.w100 {
    width: 100%;
}

/* TEXTOS Y FORMATO */

.txl {
    text-align: left;
}

.txr {
    text-align: right;
}

.txc {
    text-align: center;
}

.negrita {
    font-weight: bold;
}

.no_mostrar {
    display: none !important;
}

.smf_rojo {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    margin-right: 1rem;
}

.smf_verde {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: green;
    border-radius: 50%;
    margin-right: 1rem;
}

.smf_amarillo {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: yellow;
    border-radius: 50%;
    margin-right: 1rem;
}

.smf_azul {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: blue;
    border-radius: 50%;
    margin-right: 1rem;
}

/* LOGIN */

.login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.login .logo {
    margin: auto;
}

.login .sistema {
    font-size: 2.5rem;
    font-weight: 700;
}

/* TITULO DE LAS PAGINAS | PLANTILLA 000001 */
main.cabecera {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background-color: #505f6d;
    margin-bottom: 10px;
}

main.cabecera .fondo_logo {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    border-right: 3px solid #505f6d;
    padding: 10px;
    height: 120px;
    background: var(--fondo-item);
}

main.cabecera .fondo_logo img.logo {
    height: 100%;
}

main.cabecera .fondo_logo .empresa {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    gap: 10px;
}

main.cabecera .fondo_logo .empresa .nombre {
    font-size: 32px;
    font-weight: 700;
}

main.cabecera .fondo_logo .empresa .lema {
    font-size: 18px;
    font-weight: 100;
}

main.cabecera .titulo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 15px;
}

main.cabecera .titulo .nombre {
    font-size: 30px;
    font-weight: 700;
    color: var(--amarillo);
}

main.cabecera .titulo .descripcion {
    font-size: 18px;
    color: #fff;
}

main.cabecera .usuario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 50px;

}

main.cabecera .usuario span.fa {
    margin-right: 5px;
}


main.cabecera .usuario .user_ico {
    margin-right: 5px;
}

main.cabecera .usuario .nombre_usuario {
    color: white;
    font-size: 15px;
}

main.cabecera .usuario .tipo_usuario {
    font-size: 12px;
    color: #F9CA35;
}

main.cabecera .usuario .sede {
    font-size: 12px;
    color: white;
}


@media (max-width: 767px) {
    main.cabecera {
        flex-direction: column;
    }

    main.cabecera .fondo_logo {
        width: 100%;
    }

    main.cabecera .titulo {
        margin: 10px 0px;
        padding: 5px 0px;

    }

    main.cabecera .usuario {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding: 0px 25px;
        margin: 10px 0px;
    }

    main.cabecera .usuario .nombre_usuario {
        color: white;
        font-size: 12px;
    }

}

@media (max-width: 1024px) {}