/* .tlv2-general-search-container {
    position: relative;
    margin-bottom: 15px;
    padding: 0px 10px;
    width: 100%;
    box-sizing: border-box;
} */

/* @media (min-width: 992px) {
    .tlv2-general-search-container {
        position: relative;
        margin-bottom: 4px;
        padding: 0px 0px;
    }
} */



.gensrchv2-search-result-row {
    padding: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
}

.gensrchv2-search-result-avatar {
    pointer-events: none;
    user-select: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--fw-white-450);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    background-size: cover;
    background-position: center;
}


.tlv2-general-search-container{
    position: relative;
    /* display: flex; */
    align-items: center; 
    justify-content: center;
}

.gensrchv2-search-results {
    font-family: 'Albert Sans', sans-serif;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--fw-black-400);
    background-color: var(--fw-white-050);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin-top: 2px;
    z-index: 2;
    box-sizing: border-box;
    padding: 5px 5px;
}

.gensrchv2-search-result-row:hover {
    color: var(--fw-black-200);
    background-color: var(--fw-white-200);
}


.search-close-button{
    width: 33px;
    height: 33px;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    /* right: 0px; */
    top: 0px;
    padding: 0px 3px;
    cursor: pointer;
    /* z-index: 1001; */
    right: 3px;
    /* transform: translateX(-50%); */
}
.search-close-button:hover{
    color: var(--fw-black-000);
    /* background-color: var(--fw-white-150); */
}


