.search-select {
    position: relative;
    width: 100%;
}

.search-select-input {
    padding-right: 38px;
    background-image: linear-gradient(45deg, transparent 50%, #68798a 50%), linear-gradient(135deg, #68798a 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.search-select-input::-webkit-search-cancel-button {
    margin-right: 15px;
}

.search-select-menu {
    position: absolute;
    z-index: 50;
    top: calc(100% + 5px);
    right: 0;
    left: 0;
    display: none;
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid #bdcbd9;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(12, 27, 42, .16);
}

.search-select-menu.open {
    display: block;
}

.search-select-option {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid #edf1f5;
    background: #fff;
    color: var(--text);
    text-align: left;
    cursor: pointer;
}

.search-select-option:hover,
.search-select-option.active {
    background: #eaf3ff;
    color: #0d55c3;
}

.search-select-option:first-child {
    color: var(--muted);
}

.search-select-empty,
.search-select-more {
    padding: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

.search-select-more {
    border-top: 1px solid #edf1f5;
    background: #f8fafc;
}
