/* .modal-handler {
    color: var(--PRIMARY);
}

.modal ul {
    list-style-type: disc;
}

.facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.facility {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-body .swiper {
    height: 200px;
}

@media (min-width: 992px) {
    .modal-handler:hover {
        cursor: pointer;
        color: var(--PRIMARY-DARK);
    }

    .modal-body .swiper {
        width: 100%;
        max-width: 450px;
        height: 282px;
    }

    .modal-body .swiper img {
        width: 100%;
    }

    .modal-body .options {
        height: 300px;
        width: 292px;
    }

    .modal-body .options .options-icons {
        overflow-y: scroll;
    }

    .modal-body .options .options-icons::-webkit-scrollbar {
        width: 8px;
    }

    .modal-body .options .options-icons::-webkit-scrollbar-thumb {
        height: 32px;
        background-color: var(--SCROLLBAR);
        border-radius: 100px;
    }

    @-moz-document url-prefix() {
        .modal-body .options .options-icons {
            scrollbar-width: thin;
            scrollbar-color: var(--SCROLLBAR) var(--WHITE);
        }
    }
} */