.sn-nav {
    width: 100%;
    background: rgba( var(--bg-color-rgb), .7);
    position: sticky !important;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.sn-nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 70px;

}

.sn-nav-logo img{
    height: 50px;
}

[theme="dark"] img[logo-light] {
    display: none;
}

[theme="dark"] img[logo-dark] {
    display: unset;
}

[theme="light"] img[logo-dark] {
    display: none;
}

[theme="light"] img[logo-light] {
    display: unset;
}
.sn-nav-actions {
    display: flex;
}
.sn-nav-actions button , .sn-nav-actions a {
    width: 35px;
    aspect-ratio: 1/1;
    outline: none;
    border-radius: 12px;
    border: none;
    background-color: var(--light-primary);
    display: grid;
    place-items: center;
    position: static;
    z-index: 10;
}
.sn-nav-actions button i , .sn-nav-actions a i {
    font-size: 20px;
    transform: translateY(1px);
}
[theme="dark"] .sn-nav-actions button i , [theme="dark"] .sn-nav-actions a i {
    color: var(--text-base2) !important;
}
.sn-nav-actions button:hover , .sn-nav-actions a:hover {
    background-color: var(--bg-primary);
}

[nav-lang] {
    color: var(--text-base2) !important;
}


.side-navbar {
    max-width: 300px;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 70px;
    right: 0;
    z-index: 9;
    background: rgba(219, 211, 211, 0.6);
    backdrop-filter: blur(10px);
    transform: translate(300px , 0);
    display: grid;
    gap: 0;
    place-content: center;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    border-left: 1px solid #ccc;
}

[theme="dark"] .side-navbar {
    background-color: rgba(21, 21, 21, 0.7);
    border-left: 1px solid #0c0c0c;
}

.side-navbar-overlay {
    content: '';
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1;
    background-color: rgba(0, 0, 0 , .1);
    backdrop-filter: blur(10px);
    display: none !important;
}

.sidebar-links {
    transform: translateY(-60px);
    display: flex;
    flex-direction: column;
}

.sidebar-links a , .sidebar-links link{
    color: #0C090D;
    font-size: 25px;
    font-weight: 800;
    margin: 10px 0px;
    width: max-content;
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: block !important;
}

.sidebar-links a span , .sidebar-links link span {
    position: relative;
}

.sidebar-links a::before  , .sidebar-links link::before {
    content: '';
    position: absolute;
    width: 0%;
    left: 0;
    bottom: 10px;
    height: 10px;
    background-color: rgba( var(--bg-primary-rgb), .4);
    z-index: 0;
    transition: width 0.5s ease;
}

.sidebar-links a:hover::before , .sidebar-links link:hover::before {
    background-color: rgba( var(--bg-third-rgb), .6);
}

.sidebar-links a.animate::before , .sidebar-links link.animate::before {
    width: 100%;
}


[theme="dark"] .sidebar-links a , [theme="dark"] .sidebar-links link {
    color:#FEFBF6;
}
