/*@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");*/


:root {
    --header-height: 3rem;
    --nav-width: 130px;
    --first-color: #4723D9;
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}

body {
    position: relative;
    /*margin: var(--header-height) 0 0 0;*/
    padding: 0 1rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s;
    padding-right: 0;
    background-color: #ECF1F6;

}

a {
    text-decoration: none!important;
}

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--white-color);
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    color: var(--first-color);
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: -10px;
    z-index: 1000;
    float: right;
    top: 135px;
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

.header_img img {
    width: 40px
}

.l-navbar {
    position: fixed;
    top: 1rem;
    left:1rem;
    width: var(--nav-width);
    height: 97%;
    background-color: #033077;
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed);
    box-shadow: 0px 0px 8px #033077;
    border-radius: 10px;
}

.nav {
    height: 100%;
    display: flex;
    /*flex-direction: column;
    justify-content: space-between;*/
    overflow: hidden
}

.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 2.5rem;
    padding: .5rem 0 .5rem .5rem
}

.nav_logo {

    display: flex;
    align-content: flex-end;
    flex-direction: row;
}

.nav_list{
   padding-top: 1.5rem;
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: #dbdada;
    transition: .3s;
    /*OLD margin: 1.5rem 3.1rem;*/
    margin: 0.5rem 3.1rem;

}

.nav_link:hover {
    color: white;
}

.nav_logo:hover {
    color: transparent!important;
}

.active > svg > path{

    fill:white;
}


.nav_icon {
    font-size: 1.25rem
}

.show_menu {
    left: 1rem;
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem);
}

.padding_analytics_sidebar{
    padding-left: calc(var(--nav-width) + 1rem)!important;
}

.active {
    color: white;
    font-weight: 600;
    /*text-decoration: underline!important;*/
}


/*.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}*/

.height-100 {
    height: 100vh
}

@media screen and (min-width: 768px) {
    body {
        padding-left: calc(var(--nav-width) + 1rem);

    }

    .header {
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
    }

    .header_img {
        width: 40px;
        height: 40px
    }

    .header_img img {
        width: 45px
    }

    .l-navbar {
        padding: 1rem 1rem 0 0
    }

    .show_menu {
        width: calc(var(--nav-width) + 156px)
    }

    .body-pd {
        padding-left: calc(var(--nav-width) + 156px)
    }
}

@media (max-width:767px) and (min-width: 320px) {
    body {
        /*margin: calc(var(--header-height) + 1rem) 0 0 0;*/
        /*padding-left: calc(var(--nav-width) + 2rem)*/
        padding-left: calc(5% + 2rem);
    }

    .header {
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
    }

    .header_img {
        width: 40px;
        height: 40px
    }

    .header_img img {
        width: 45px
    }

    .l-navbar {
        left: .5rem;
        padding-top: 1rem;
        width: 60px;
        padding-right: 0;
    }

    .show_menu {
        width: calc(var(--nav-width) + 156px)
    }

    .body-pd {
        padding-left: calc(140px + 156px);
    }

    #logo_img_sidebar {
        display: none;
    }

    #logo_img_sidebar_mob{

        display: block;
        width: 52px;
        margin-left: -0.2rem;
        padding-top: 2rem;
    }

    .nav_link {
        padding-left: 1.1rem!important;
    }

    .nav_link {
        margin: 0.5rem 0rem!important;
    }

    .wrapper_title{

        flex-direction: column;
        align-items: center;
        color: white;
        font-weight: 600;
        padding-bottom: 0.2rem;
    }
    
    .nav_logo{
    
        column-gap: 1.5rem!important;
    }


}


#logo_img_sidebar{

    width: 100px;
    height: auto;
    margin: 0 .5rem;
    margin-right: 0;
}

#logoname_sidebar{
    width: 72px;
    margin-left: -1.5rem;
}

.transform_icon >svg {

    transform: rotate(180deg);
}

.dashboard_ul{

    padding:0!important;
}

.submenu_dash{
    list-style-type: none;
    padding: 0rem 0rem 0rem 5rem!important;
    display: none;
}

.settings{

    bottom: 0;
    position: absolute;
}

.header_siderbar{

    position: relative;
}

.settings span{

   visibility: hidden;
}

