/**
* ================================================
* File: public/common/css/app.css
* Purpose: Minor layout polish
* ================================================
*/


/* BEGIN CSS ESPECÍFICO PARA PÁGINA DE LOGIN*/
    .login-logo {
        width: 350px;
        /*height: 90px;*/
    }
    .divider-form:after,
    .divider-form:before {
        content: "";
        flex: 1;
        height: 1px;
        background: #757575;
        opacity: 0.4;
    }
/* END CSS ESPECÍFICO PARA PÁGINA DE LOGIN*/


/* BEGIN CSS GLOBAL*/

    /* Make the layout full height with sidebar */
    html,
    body {
        font-family: "Raleway", Arial, Verdana, Helvetica, Sans-serif;
        font-size: 100%;
        height: 100%;
        /* background-color: hsl(0, 0%, 96%);*/
    }

    .logo {
        width: 200px;
    }


    @media (min-width: 1400px) {
        /* Estilos necesarios para Sidenav */
        main,
        header,
        footer,
        #main-navbar {
            padding-left: 280px;
        }
        #sidebar {
            width: 280px;
        }

    }

    @media (max-width: 991.98px) {
        #sidebar {
            width: 100%;
        }
    }

    /* Sidebar group title styling */
    .sidenav-title {
        letter-spacing: .08em;
    }

/* END CSS GLOBAL*/