.select-search{
    padding:12px;
    border-bottom:1px solid #EEF2F5;
}

.select-search input{
    width:100%;
    height:42px;
    border:none;
    outline:none;
    background:#F5F7F9;
    border-radius:12px;
    padding:0 14px;
    font-size:14px;
    color:#46607A;
    box-sizing:border-box;
}

.dropdown-wrap{
    position:relative;
    max-width:320px;
    padding-bottom: 5px;
}

.dropdown-wrap .current-item{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 35px;
    padding: 0 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: .2s;
    color: var(--main-color);
}

.dropdown-wrap .current-item:hover{
    border-color:#C7D4DF;
}

.dropdown-wrap .current-item img{
    max-width:20px;
    object-fit:cover;
    border-radius:2px;
}
.dropdown-wrap .current-item svg{
    width:16px;
    height:16px;
    opacity:.7;
}
.dropdown-wrap .dropdown{
    position:absolute;
    top:100%;
    right:0;
    background:#fff;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #eee;
    padding:6px;
    opacity:0;
    visibility:hidden;
    transition:.2s;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(1, minmax(0,1fr));
    gap: 5px;
    max-height: 400px;
    overflow: auto;
}

.dropdown-wrap:hover .dropdown{
    opacity:1;
    visibility:visible;
}

.dropdown-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border-radius:10px;
    text-decoration:none;
    color:#333;
    transition:.15s;
    cursor: pointer;
}

.dropdown-item:hover{
    background:#f4f8fc;
}

.dropdown-item.active{
    background:#eef6ff;
    color:var(--main-color);
    font-weight:600;
}

.dropdown-item img{
    max-width:20px;
    object-fit:cover;
    border-radius:2px;
}