/* select */
.search-option {
    height: 100%;
    min-width: 146px;
    background-color: var(--color-background);
    border-radius: 100px;
    background-color: #eff1f3;
}

.select-menu {
    width: 100%;
    height: 100%;
    border: none;
}

.select-menu .select-btn {
    display: flex;
    height: 100%;
    font-size: 15px;
    font-weight: 400;
    border-radius: 6px;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
}

.select-btn i {
    font-size: 20px;
    transition: 0.3s ease;
    margin-top: 4px;
    color: #6b7280;
}
.sBtn-text {
    color: #6b7280;
    font-size: 20px;
    font-weight: 400;
}

.select-menu .options {
    position: relative;
    padding: 8px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
    display: none;
    opacity: 0;
    animation: fadeIn 0.3s ease-in-out;
    max-height: 0;
    z-index: 99;
    animation: slideUp 0.5s ease forwards;
    min-width: 220px;
}

.select-menu.active .options {
    display: block;
    opacity: 1;
    max-height: 360px;
    position: absolute;
}

.options .option {
    display: flex;
    height: 42px;
    cursor: pointer;
    padding: 0 16px;
    border-radius: 8px;
    align-items: center;
    background: #fff;
}

.options .option:hover {
    background: #f2f2f2;
}

.option .option-text {
    font-size: 16px;
    font-weight: 400;
    color: #404040;
    text-wrap: nowrap;
    white-space: nowrap;
}
