/* Mobile dropdowns wrapper */
.hs-mobile-switcher {
    margin-top: 30px; /* Add top padding */
}

.hs-mobile-switcher > div {
    margin-bottom: 10px; /* Add bottom margin to child divs */
}

/* Custom select */
.hs-custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
}

.hs-custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.hs-custom-select-trigger {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.custom-options {
    z-index: 200;
    position: absolute;
    display: none;
    flex-direction: column;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.hs-custom-select.opened .custom-options {
    display: flex;
}

.custom-option {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.custom-option img, .hs-custom-select-trigger img {
    margin-right: 10px;
}

.hs-custom-select-trigger i {
    margin-left: auto; /* Ensure the icon is on the right */
    transition: transform 0.3s ease;
}

.hs-custom-select.opened .hs-custom-select-trigger i {
    transform: rotate(180deg); /* Rotate the icon when the select is opened */
}

.custom-option.selected {
    background: #f0f0f0;
}
