.search-select {
    position: relative;
    width: 100%;
}
.search-select select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.search-select-input {
    width: 100%;
    height: 42px;
    padding: 10px 62px 10px 12px;
    border: 1px solid #cdd5e1;
    border-radius: 8px;
    background: #fff;
    color: #172033;
    outline: 0;
}
.search-select-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px #2563eb18;
}
.search-select-input:disabled {
    background: #f1f5f9;
    color: #64748b;
    cursor: not-allowed;
}
.search-select:after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1.8px solid #47635a;
    border-bottom: 1.8px solid #47635a;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}
.search-select-clear {
    position: absolute;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #e7eef0;
    color: #47635a;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}
.search-select-clear:hover {
    background: #d1fae5;
    color: #047857;
}
.search-select-input:disabled ~ .search-select-clear {
    display: none;
}
.search-select-list {
    display: none;
    position: absolute;
    z-index: 50;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    box-shadow: 0 8px 20px #1e293b20;
}
.search-select.open .search-select-list {
    display: block;
}
.search-select-option {
    padding: 9px 12px;
    cursor: pointer;
    color: #172033;
}
.search-select-option:hover,
.search-select-option.active {
    background: #eff6ff;
    color: #1d4ed8;
}
.search-select-empty {
    padding: 9px 12px;
    color: #6f7b91;
}
