/*Nav*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    /*background: transparent;*/
    z-index: 100;
    transition: all .3s ease;
}

.navbar-transparent {
    background: none !important;
    background: transparent !important;
    background-color: transparent !important;
}

.left-nav-item {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px 20px;
    border-radius: 10px;
    transition: all .3s ease;
    text-decoration: none !important;
    box-shadow: none;
    color: var(--text-light-3);

    &:hover {
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }
}

.nav-link {
    transition: all .3s ease;
    color: var(--text-primary);

    &:hover {
        text-decoration: 2px solid underline var(--bg-3);
    }
}

.text-decoration-color-bg-2 {
    text-decoration-color: var(--bg-2) !important;
}

.left-nav-item[data-selected='true'] {
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.nav-link[data-selected='true'] {
    text-decoration: 2px solid underline var(--bg-3);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -110vw; 
    background-color: rgba(0, 0, 0, .7); 
    height: 100vh;
    width: 100vw;
    z-index: 200; 
    transition: all .3s ease;
}

.mobile-nav-open {
    left: 0;
}