.lateral-container {
    position: fixed;
    height: 100vh;
    right: 0;
    z-index: 4;
    display: flex;
    color: white;
    border-left: 1px var(--border-color) solid;
    align-items: center;
    justify-content: center;
    width: calc(33vw - 40px);
}

.lateral-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.lateral-content .container {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.container .text {
    font-size: 20px;
    font-weight: 700;
}

.container .cards-group {
display: flex;
flex-direction: column;
width: 100%;
gap: 15px;
justify-content: center;
}

.cards-group .card {
    display: flex;
    width: 90%;
    border: 1px solid #111;
    border-radius: .5rem;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 10px 0 10px 15px;
}

.cards-group .card:hover {
    background-color: #080808;
}

.cards-group .card .mini{
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    user-select: none;
}

.card .card-content {
    display: flex;
    gap: 10px; 
    align-items: center;
}

.textbox {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 0 10px;
    gap: 2px;
    height: 40px;
}

.card .follow_div {
    display: flex;
    height: 100%;
    justify-self: end;
    justify-content: center;
    align-items: center;
}

.follow_div .follow_icon .follow_button {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    background: #121212;
    height: 100%;
    width: 100%;
    border-radius: 50% 0 0 50%;
    padding: 10px;
}

.followed {
    background-color: #3D9BE9 !important;
}

.followed:hover {
    background-color: #2B7CC0 !important;
}

.follow_div .follow_icon .follow_button:hover {
    background: #161616;
}

.follow_icon img {
    height: 24px;
    user-select: none;
}

.textbox .title{
    width: 180px;
    white-space: nowrap;
    display: flex;
    gap: 2px;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

.textbox .title span {
    width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.textbox .verified {
height: 18px;
user-select: none;
}


.textbox .subtitle {
    font-size: 14px;
    font-weight: 400;
}