.splide .splide__pagination__page {
    background: white;
    width: 0.375rem;
    height: 0.375rem;
}

.splide .splide__pagination__page.is-active {
    background: #69DCB3;
    transform: scale(1);
}

.splide .splide__pagination {
    bottom: 0.5rem;

    &:before {
        content: '';
        display: block;
        height: 80px;
        width: 100%;
        background-image: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
        position: absolute;
        bottom: -1rem;
        left: 0
    }
}
.splide .splide__slide img {
    cursor: pointer;
}

.splide .splide__arrow--next {
    right: 2em;
}
.splide .splide__arrow--prev {
    left: 2em;
}

.splide .splide__arrow{
    background: rgb(0 111 119 / var(--tw-bg-opacity));
    width: 3em;
    height: 3em;
}
.splide .splide__arrow svg {
    fill: white;
}
.slider-wrapper {
    position: fixed;
    transition: opacity 0.2s ease;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 100;
}

.slider-wrapper.active {
    display: flex;
    opacity: 1;
}

.slider-wrapper .backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #00000091;
}

.slider-wrapper .modal-panel {
    z-index: 101;
    width: 90%;
    height: 90%;
}
.slider-wrapper.wrapper-slide.active {
    transform: none;
}

.image-carousels {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-carousels .splide__track {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.modal-btn-close {
    z-index: 100;
    right: 15px;
    top: 15px;
}

@media (max-width: 1024px) {
    .modal-mobile{
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}