*,
::before,
::after {
    box-sizing: border-box
}
.col-main{
    margin: var(--header-height) 0 0 0;
}
.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(--main-bg);
    z-index: var(--z-fixed);
    transition: .5s
}

.header-hr {
    width: 100%;
    height: 3px;
    position: fixed;
    top: 3.5rem;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: transparent;
    z-index: var(--z-fixed);
    transition: .5s
}



.header_toggle {
    color: var(--first-color-light);
    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
}

.theme-btn {
    cursor: pointer;
}
#page-sublinks{
    margin-top: 0.8rem !important;
    width: 20rem;
}
#page-sublinks .nav-item{
    width: 3rem;
    border-bottom: 3px solid red !important;
    z-index: 9999;
}

.navbar-icon {
    margin-top: -8px;
}

#theme-icon {
    width: 20px;
    height: 20px;
}
.text-lime{
    color:#00FF00;
}
.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--first-color);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}
.sidebar-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.balances{
    position: relative;
}
.accBal{
    position: absolute;
    top: -40px;
    left: 0;
    font-weight: bold;
    font-size: 12.5px;
    background-color: var(--first-color);
    filter: brightness(85%);
    padding: 5px;
    width: 100%
    height: 100%;
}

.nav {
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_logo,
.nav_link,
.slide {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.5rem
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo:hover {
    text-decoration: none !important;
    color: var(--hot-pink);
}

.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: var(--first-color-light);
    margin-bottom: 1.5rem;
    transition: .3s
}

.nav_link:hover {
    color: var(--white-color);
    text-decoration: none;
}

.nav_icon {
    font-size: 1.25rem;
}

.nav_icon,
.nav_name {
    z-index: 200;
}

.show-sidebar {
    left: 0
}

.body-pd {
    padding-left: calc(var(--nav-width) + 0.1rem);
}

.nav_link.active {
    color: var(--hot-pink);
    background-color: var(--first-color);
    /* filter: brightness(85%); */
    /* transition: 1s; */
}

.slide {
    position: absolute;
    width: 100%;
    height: 32px;
    top: calc(var(--header-height) + 2.75rem);
    left: 0;
    background-color: var(--first-color);
    filter: brightness(85%);
    margin-bottom: 1.5rem;
    z-index: 101;
    transition: 1s;
    opacity: 0;
}

.nav_link.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color);
    transition: 1s;
    z-index: 200;
}

.nav_list a:nth-child(1).active~.slide {
    content: '(' attr(name) ')';
    top: calc(var(--header-height) + 2.75rem);
    opacity: 1;
}

.nav_list a:nth-child(2).active~.slide {
    top: calc(var(--header-height) + 5.25rem);
    margin-top: 1.5rem;
    opacity: 1;
}

.nav_list a:nth-child(3).active~.slide {
    top: calc(var(--header-height) + 7.75rem);
    margin-top: 3rem;
    opacity: 1;
}

.nav_list a:nth-child(4).active~.slide {
    top: calc(var(--header-height) + 10.25rem);
    margin-top: 4.5rem;
    opacity: 1;
}

.nav_list a:nth-child(5).active~.slide {
    top: calc(var(--header-height) + 12.75rem);
    margin-top: 6rem;
    opacity: 1;
}

.nav_list a:nth-child(6).active~.slide {
    top: calc(var(--header-height) + 15.25rem);
    margin-top: 7.5rem;
    opacity: 1;
}

.quick-btns{
    width: 50%;
    padding: 0 5px;
    text-decoration: none;
}
.credits-btn,
.debits-btn, 
.balAlert-btn{
    margin: 0 5px;
}
.credits-btn:hover,
.debits-btn:hover,
.balAlert-btn:hover{
    text-decoration: none;
    filter: brightness(60%);
}

.noted{
    position: relative;
}
#notie{
    position: absolute;
    left: 35px;
    top: -5px;
    border-radius: 50%;
    z-index: 102;
    width: 20px;
    height:20px;
    font-size: 13px;
    padding: 0;
}
.note-badge{
    border-radius: 50%;
}
@media screen and (min-width: 768px) {
    body {
        
        padding-left: calc(var(--nav-width) + 0.5rem)
    }
    .col-main{
        margin: calc(var(--header-height) + 1rem) 0 0 0;
    }
    .header {
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 0.5rem)
    }
    .header_img {
        width: 40px;
        height: 40px
    }
    .header_img img {
        width: 45px
    }
    .l-navbar {
        left: 0;
        padding: 1rem 1rem 0 0
    }
    .show-sidebar {
        width: calc(var(--nav-width) + 156px)
    }
    .body-pd {
        padding-left: calc(var(--nav-width) + 165px)
    }
}

@media screen and (max-width: 768px) {
    .header-hr{
        top: 3rem;
    }
    .nav_list a:nth-child(1).active~.slide {
        top: calc(var(--header-height) + 2.25rem);
        opacity: 1;
    }
    .nav_list a:nth-child(2).active~.slide {
        top: calc(var(--header-height) + 4.55rem);
        margin-top: 1.7rem;
        opacity: 1;
    }
    .nav_list a:nth-child(3).active~.slide {
        top: calc(var(--header-height) + 6.65rem);
        margin-top: 3.6rem;
        opacity: 1;
    }
    .nav_list a:nth-child(4).active~.slide {
        top: calc(var(--header-height) + 8.75rem);
        margin-top: 5.5rem;
        opacity: 1;
    }
    .nav_list a:nth-child(5).active~.slide {
        top: calc(var(--header-height) + 10.95rem);
        margin-top: 7.3rem;
        opacity: 1;
    }
    .nav_list a:nth-child(6).active~.slide {
        top: calc(var(--header-height) + 13.05rem);
        margin-top: 9.2rem;
    }
    .col-main {
        margin-top: calc(var(--header-height) + 1rem);
    }
    .credits-btn span,
    .debits-btn span,
    .balAlert-btn span{
        display: none;
    }
}
@media screen and (max-width: 915px) {
    .quick-btns{
        width: 70%;
    }
    
}
@media screen and (max-width: 1083px) {
    .text-none{
        display: none;
    }
}