@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
:root {
    --color-dashboard : #fff;
    --color-dashboard-head: #FAD63E;
}
*{
    font-family: 'Montserrat', sans-serif;
}
.center-page{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.loader{
    background: rgba(46, 46, 46, 0.652);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
}
.loader .spinner-border{
    width: 130px !important;
    height: 130px !important;
    font-size: 30px;
    color: var(--color-dashboard-head);
}
.center-page-login{
    height: calc(100vh - 87px);
    display: flex;
    align-items: center;
    justify-content: center;

}
.navigation{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 300px;
    height: 100vh;
    background: var(--color-dashboard);
    transition: all .3s ease-in-out;
}
.navigarion-header{
    z-index: 2;
    position: fixed;
    top: 0;
    left: 300px;
    width: calc(100% - 300px);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-dashboard-head);
    transition: all .3s ease-in-out;
}
.icons-user{
    display: flex;
    align-items: center;
}
.navigarion-header .icons-user i{
    font-size: 25px;
}
.section-selec{
    height: calc(100% - 124px);
    overflow-y: auto;
}
.section-selec::-webkit-scrollbar{
    width: 5px;
}
.section-selec::-webkit-scrollbar-thumb {
    background: rgb(165, 165, 165);
    border-radius: 50px;
}
.section-selec .seccion{
    padding-left: 0;
    list-style: none;
}
.section-selec .seccion li{
    padding: 10px 20px;
    background: transparent;
}
.section-selec .seccion li:hover {
    background: var(--color-dashboard-head);
}
.active-dashboar-vertical{
    background: var(--color-dashboard-head) !important;
}
.section-selec .seccion li a{
    display: block;
    color: black;
    text-decoration: none !important;
}
.dashboard-body{
    margin-left: 300px;
    margin-top: 67px;
    padding: 15px;
    width: calc(100% - 300px);
    height: calc(100vh - 67px);
    overflow-y: auto;
    transition: all .3s ease-in-out;
}
.sub-menu-user {
    transform-origin: top right;
    transform: scale(0);
    position: absolute;
    width: 200px;
    background: #fff;
    z-index: 5;
    left: -170px;
    border-radius: 10px;
    transition: all .3s ease-in-out;
    top: 100%;
    border: 1px solid rgba(194, 194, 194, 0.418);
}

.sub-menu-user li {
    padding: 5px 12px;
    display: flex;
    align-items: center;
    color: rgb(138, 138, 138);
    transition: color 0.3s ease-in-out;
    font-size: 15px;
}
i{
    pointer-events: none !important;
}
.sub-menu-user li a,
.sub-menu-user li i{
    font-size: 15px !important;
}
table thead tr th{
    text-align: center;
}
.color-active-rol,
.color-active-rol a{
    color: rgba(135, 183, 255, 0.85) !important;
}
.sub-menu-user li:hover,
.sub-menu-user li:hover a {
    color: rgba(135, 183, 255, 0.85);
}

.sub-menu-user li .div-icons {
    width: 18%;
    text-align: center;
}

.sub-menu-user li .link {
    width: 82%;
}
.active-deskt-navigarion-header {
    left: 0;
    width: 100%;
}
.active-deskt-container {
    width: 100%;
    margin-left: 0;
}


.sub-menu-user li a {
    transition: color 0.3s ease-in-out;
    text-decoration: none !important;
    color: rgb(110, 110, 110);
}
.active-widnows-submenu {
    transform: scale(1) !important;
}
@media screen and (max-height: 800px) {
    .center-page{
        height: auto;
    }
}
@media screen and (max-width: 1000px){
    .navigation{
        left: -300px;
        top: 67px;
        z-index: 1;
    }
    .navigarion-header{
        left: 0;
        width: 100%;
    }
    .dashboard-body{
        width: 100%;
        margin-left: 0;
        padding: 8px;
    }
}
.active-movil-dashboard {
    left: 0;
}
.active-deskt-dashboard {
    left: -300px;
}
.active-movil {
    margin-left: 300px;
    position: fixed;
    overflow-x: hidden;
}