.splide-caroussel-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 80vh;
}

#main-slider {
    height: 90%;
}


#main-slider .splide__track {
    height: 100%;
}

#main-slider .splide__arrow {
    background-color: unset;
    border: none;
}

#main-slider .splide__arrow svg {
    display: none;
}

#main-slider .splide__arrow--prev::before {
    content: "\e138" !important;
    font-family: "Phosphor-Light", sans-serif !important;
    font-size: 20px !important;
    color: #000;
}

#main-slider .splide__arrow--next::before {
    content: "\e13a" !important;
    font-family: "Phosphor-Light", sans-serif !important;
    font-size: 20px !important;
    color: #000;
}

#main-slider .splide__slide {
    width: 100%;
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#main-slider .splide__slide a {
    height: 100% !important;
}

#main-slider .splide__slide img {
    object-fit: cover;
    height: 100%;
    width: auto;
}


#thumbnail-slider {
    height: 10%;
}

#thumbnail-slider .splide__list {
    gap: 8px !important;
    justify-content: center;
}

#thumbnail-slider .splide__slide {
    margin: 0 !important;
    max-width: 60px;
    max-height: 60px;
    opacity: 0.8;
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all .2s ease;
}

#thumbnail-slider .splide__slide.is-active {
    opacity: 1;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

#thumbnail-slider .splide__slide img {
    height: 100%;
    object-fit: cover;
}


@media screen and (max-width: 767px) {
    .splide-caroussel-container {
        gap: 16px;
        height: 50vh;
    }

    #main-slider .splide__arrow--prev::before {
        font-size: 24px !important;
    }

    #main-slider .splide__arrow--next::before {
        font-size: 24px !important;
    }

    #thumbnail-slider .splide__slide{
        max-width: 40px;
    }
}