.sidebar-responsive {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2a3647;
    font-family: "Inter", sans-serif;
    z-index: 3;
}

.sidebar-menu-responsive {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    margin: 4px 16px;
    box-sizing: border-box;
}

.sidebar-menu-responsive img {
    height: 24px;
    width: 24px;
}

.sidebar-responsive a {
    width: 76px;
    font-size: 14px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    padding: 15px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #cdcdcd;
    border-radius: 16px;
}

.sidebar-responsive p {
    margin: 0;
}

.dNone {
    display: none;
}

@media (max-width: 800px) {
    .sidebar {
        display: none;
    }
}

@media (min-width: 801px) {
    .sidebar-responsive {
        display: none;
    }
}
