/* ==========================================================
   DISCÍPULO ONLINE ERP
   LAYOUT V7
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{

    width:100%;
    height:100%;

    font-family:'Poppins',sans-serif;

    background:#F4F6FA;

    color:#1F2937;

    transition:
        background .25s,
        color .25s;

}

/*==========================================================*/

.wrapper{

    min-height:100vh;

}

/*==========================================================
CONTEÚDO
==========================================================*/

.main-content{

    margin-left:200px;

    margin-top:56px;

    min-height:calc(100vh - 56px);

    display:flex;

    flex-direction:column;

    transition:margin-left .25s ease;

}

/*==========================================================*/

body.sidebar-collapsed .main-content{

    margin-left:64px;

}

/*==========================================================*/

.container-fluid{

    flex:1;

    padding:25px;

}

/*==========================================================*/

a{

    color:inherit;

    text-decoration:none;

}

img{

    display:block;

    max-width:100%;

}

button{

    font-family:inherit;

}

/*==========================================================
MODO ESCURO
==========================================================*/

body.dark-mode{

    background:#111827;

    color:#E5E7EB;

}

body.dark-mode .main-content{

    background:#111827;

}

body.dark-mode .container-fluid{

    background:#111827;

}

/*==========================================================
RESPONSIVO
==========================================================*/

@media(max-width:992px){

    .main-content{

        margin-left:64px;

    }

}

@media(max-width:768px){

    .container-fluid{

        padding:18px;

    }

}