@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-VariableFont_opsz,wght.ttf');
}

.sidebar-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(42, 54, 71, 1);
    padding: 64px 0 64px 0;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 501;
    width: 250px;
}

.sidebar-logo {
    cursor: pointer;
}

.sidebar-tabs {
    width: 100%;
    gap: 15px;
    margin-bottom: 64px;
}

.tab-content {
    width: 100%;
    font-size: 16px;
    display: flex;
    gap: 8px;
    cursor: pointer;
}

.tab-content a {
    width: 100%;
    padding: 0 48px;
    color: rgba(205, 205, 205, 1)
}

.tab-content svg {
    cursor: pointer;
}

.tab-content:hover {
    background-color: rgba(9, 25, 49, 1);
}

.tab-content:hover a {
    color: rgba(255, 255, 255, 1);
}

.tab-content:hover svg path {
    fill: rgba(255, 255, 255, 1);
}

.tab-content-inner {
    width: 100%;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.tab-content-inner a {
    width: 100%;
    padding-left: 48px;
}

.terms-privacy {
    width: 100%;
    display: flex;
    flex-direction: column;
}