section#SearchSelect {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff3d;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

section#SearchSelect.show {
    opacity: 1;
    pointer-events: auto;
}

section#SearchSelect .popupContainer {
    background: black;
    height: 650px;
    max-height: 90vh;
    padding: 10px 30px;
    border-radius: 8px;
    width: 350px;
    max-width: 100vw;
    box-sizing: border-box;
}

.searchSelectItem {
    padding: 5px;
    border-bottom: 1px solid #ffffff1c;
    align-items: center;
    cursor: pointer;
}

.searchSelectItem img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.searchSelectItem i {
    font-size: 17px;
    margin-right: 16px;
    margin-left: 8px;
}

.searchSelectItem:hover {
    background: #ffffff21;
    border-radius: 4px;
    border-bottom: 1px solid transparent;
}

.searchSelectItem.selected {
    background: #8a2036;
    border-radius: 4px;
    border-bottom: 1px solid transparent;
    z-index: 1;
    position: relative;
}

.searchSelectItem small {
    margin-top: -2px;
    display: block;
}

.searchSelectContent {
    height: calc(100% - 225px);
    overflow: auto;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.searchSelectContent::-webkit-scrollbar {
    width: 0;
}

.closePanelBtn{
    cursor: pointer;
    font-size: 20px;
}