.choices[data-type*=select-one]{
    height: 41px !important;
}

.choices[data-type*=select-one] .choices__inner {
    padding-bottom: 0px !important;
}

.choices[data-type*=select-one]::after {
    content: '' !important;
    background-image: url('/assets/chevron-down.svg')!important; /* Path to your custom icon */
    background-size: contain!important;
    background-repeat: no-repeat!important;
    width: 16px!important; /* Set width and height */
    height: 16px!important;
    display: inline-block!important;
    position: unset!important;
    border-width: 0px !important;
    /* You can add more styling here */
}

.choices[data-type*=select-one].is-open::after {
    content: '' !important;
    background-image: url('/assets/chevron-down.svg')!important; /* Path to your custom icon */
    background-size: contain!important;
    background-repeat: no-repeat!important;
    width: 16px!important; /* Set width and height */
    height: 16px!important;
    display: inline-block!important;
    position: unset!important;
    border-width: 0px !important;
    margin-top: 0px !important;
    transform: rotate(180deg);
    /* You can add more styling here */
}

.choices__list--dropdown, .choices__list[aria-expanded] {
    width: 100% !important;
    left: 0 !important;
    z-index: 9999 !important;
}

.iti--inline-dropdown .iti__dropdown-content {
    width: 290px !important;
    left: 0 !important;
    border: unset !important;
    border: none !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    box-shadow: 0 7px 7px rgba(0, 0, 0, 0.1) !important;
}

#mobile-btn {
    display: none;
}

#home-image {
    width: 500px;
    max-width: 100%;
    margin-right: 20%;
}

@media screen and (max-width: 768px) {
    #home-image {
        width: 100%;
        margin-right: 0;
    }

    #mobile-btn {
        display: block;
    }
}

.page {
    display: block;
    width: 100vw;
    height: 100vh;
}