

.vh-select {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.vh-select .vh-value .vh-value-text {
    flex-grow: 1;
}

.vh-select .vh-value {
    padding: 0px 20px;
    height: 50px;
    border-radius: 50px;
    border: 2px solid var(--brandGreen);
    background: none;
    color: var(--brandGreen);
    background: #eee;
    font-size: 16px;
    appearance: none;
    position: relative;
    width: auto;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    cursor: pointer;
    z-index: 1;
}

.vh-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 7px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    /* hidden by default; opened with .is-open via JS */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1),
        transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1),
        visibility 0s linear 0.2s;
    z-index: 3;
        max-height: 220px;
    overflow-y: auto;
}

.vh-options.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1),
        transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1),
        visibility 0s linear 0s;
}

.vh-option {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 10px;
    padding: 6px;
    background: #fff;
    color: var(--brandGreen);
    font-weight: 500;
    transition: all 0.15s cubic-bezier(0.075, 0.82, 0.165, 1);
    cursor: pointer;
    border-radius: 10px;
    border: none;
    width: 100%;

}

.vh-option-text,
.vh-value-text {
    max-width: 100%;
    text-align: left;
    line-height: 1;
}

.vh-option:hover {
    background: var(--brandDullGreen);
    color: #fff;
}

.vh-option:hover .vh-option-icon {
    background: var(--brandLightGreen);
}

.vh-option .vh-option-icon {
    min-width: 40px;
    height: 40px;
    background: var(--brandLightGreen);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.15s cubic-bezier(0.075, 0.82, 0.165, 1);

}

.vh-option .vh-option-icon img {
    width: 24px;
    height: auto;
    object-fit: contain;
}


.filter-box .vh-select {
    margin-bottom: 20px;
}

.filter-box .vh-select .vh-value {
    border: 1px solid #BFBFBF;
    background-color: #fff;
    padding-right: 12px;
    font-size:20px;
}

.filter-box .vh-select .vh-value i {
    color: var(--brandLightGreen);
    font-size: 21px;
}

.section-banner .vh-select .vh-value {
    background: var(--brandGreen);
    color: #fff;
}

.section-banner .vh-select .vh-value i {
    color: var(--brandLightGreen);
}@media (max-width: 767px) {
    .filter-box .vh-select .vh-value {
        padding-right: 10px;
        font-size: 16px;
        height: 40px;
    }

    .filter-box .vh-select .vh-value i {
        font-size: 16px;
    }

    .filter-box .vh-select {
        margin-bottom: 16px;
    }
}