.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    bottom: 0;
    border-right: 1px var(--border-color) solid;
    width: 22vw;
    padding: 20px;
}
    
.sidebar-navigation {
    display: flex;
    padding: 10px 0 0 0;
    flex-direction: column;
    align-items: center;
    height: 60vh;
    gap: 10px;
    justify-content: start;
    border-radius: .5rem;
}
    
.sidebar-navigation .logo {
    object-fit: contain;
    width: auto;
    height: 35px;
    user-select: none;
    margin-bottom: 5px;
}

.sidebar-navigation ul li a{
    color: white;
    user-select: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    font-weight: lighter;
    padding: 10px 0;
    width: 100%;
    border-radius: 2rem;
    transition: .5s;
}

.bold {
    font-weight: bold !important;
}

.sidebar-navigation ul li a:hover {
    background-color: rgba(31, 31, 31, 0.473);
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    width: 30px;
}

.icon img {
height: 32px;
}

.sidebar-navigation ul li a .text {
    font-size: 18px;
    font-weight: 400;
}

.sidebar-navigation ul {
    list-style: none;
    gap: 5px;
    display: flex;
    flex-direction: column;
}

.sidebar-navigation .login {
    background-color: white;
    padding: 10px;
    margin-top: 2rem;
    border-radius: 2rem;
    user-select: none;
    border: none;
    color: black;
    font-size: 22px;
    font-weight: bold;
    width: 240px;
    transition: .5s;
}

.sidebar-navigation .login:hover {
    background-color: #ebebeb;
    cursor: pointer;
}