@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

:root {
    --header-height: 3rem;
    --nav-width: 60px;
    --first-colorxxx: #061121;
    --first-color-light: #1195f3;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}

.header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: #373838;
    z-index: var(--z-fixed);
    transition: top .3s
}

.headerlocal {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: red;
    z-index: var(--z-fixed);
    transition: top .3s
}

.header_toggle {
    color: #061121;
    font-size: 1.5rem;
    cursor: pointer
}

.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: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: #061121;
    padding: .5rem 1rem 0 0;
    transition: top .5s;
    z-index: var(--z-fixed);
    overflow-y: auto
}

.body-pd {
    padding-left: 20px;
    padding-right: 20px;
}

.activenavbar {
    color: var(--white-color)
}

.activenavbar::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.height-100 {
    height: 100vh
}

.content-div{
    margin-top: 80px;
}
