hu-custom-form .hu-form-select{
    display: flex;
    flex-direction: column;
    gap: 26px;
    justify-content: space-between;
    width: 100%;
}

hu-custom-form .hu-form-select__control{
    position: relative;
}

hu-custom-form .hu-form-select__control *{
    font-size: var(--select-control-size, 18px);
    font-weight: 500;
    font-family: var(--font-gotham-medium);
}

hu-custom-form .hu-form-select__field{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

hu-custom-form .hu-form-select__trigger{
    display: flex;
    width: 100%;
    min-height: 68px;
    padding: 16px 28px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
}

hu-custom-form .hu-form-select__input{
    display: block;
    width: 100%;
    min-height: 68px;
    padding: 16px 28px;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 12px;
    outline: none;
}

hu-custom-form .hu-form-select__input::placeholder{
    color: inherit;
    opacity: 0.7;
}

hu-custom-form .hu-form-select__arrow{
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}

hu-custom-form .hu-form-select.is-open .hu-form-select__arrow{
    transform: rotate(180deg);
}

hu-custom-form .hu-form-select__options{
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    left: 0;
    z-index: 10;
    display: none;
    overflow: hidden;
    background: #313131;
    border-radius: 12px;
}

hu-custom-form .hu-form-select.is-open .hu-form-select__options{
    display: block;
}

hu-custom-form .hu-form-select__option{
    display: block;
    width: 100%;
    padding: 22px 32px;
    color: inherit;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
}

hu-custom-form .hu-form-select__option:hover,
hu-custom-form .hu-form-select__option[aria-selected="true"]{
    background: #434343;
}

hu-custom-form .hu-form-select__option + .hu-form-select__option{
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

hu-custom-form .hu-form-select__label{
    font-size: var(--select-label-size, 24px);
    font-weight: 500;
    font-family: var(--font-gotham-medium);
}

@media(max-width:959px){
    hu-custom-form .hu-form-select__trigger,
    hu-custom-form .hu-form-select__input{
        padding: 12px 16px;
    }
    hu-custom-form .hu-form-select__label{
        font-size: var(--select-label-size-mobile, 20px);
    }
    hu-custom-form .hu-form-select__control *{
        font-size: var(--select-control-size-mobile, 20px);
    }
}
