/* Swiper slider */
.swiper {
    display: flex !important;
    justify-content: center !important;
    width: fit-content;
    max-width: 1500px;
    height: 600px !important;
    margin: 0 auto !important;
    padding: 0 20px 50px 20px !important;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height 0.3s ease;
    cursor: pointer;
}

.swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.7) !important;
    background: transparent !important;
    margin: auto;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-active {
    width: 48.5% !important;
}

.swiper-slide-prev, .swiper-slide-next {
    display: flex !important;
    justify-content: center !important;
    width: 25% !important;
    background: transparent !important;
    margin: auto;
}

.swiper-button-next,
.swiper-button-prev {
    display: flex !important;
    align-items: center !important;
    font-size: 30px !important;
    color: #ccc !important;
    transition: color 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-prev {
    left: 352px !important;
}

.swiper-button-next {
    right: 352px !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #050549 !important;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-top: 20px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.swiper-pagination-bullet {
    z-index: 1000;
    font-size: 0;
    background-color: #ccc;
    width: 12px !important;
    height: 12px !important;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    outline: none;
    margin: 0 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #050549;
}

@media (max-width: 1440px) {
    .swiper {
        max-width: 1300px;
        height: 500px !important;
    }

    .swiper-button-prev {
        left: 305px !important;
    }

    .swiper-button-next {
        right: 305px !important;
    }
}

@media (max-width: 1300px) {
    .swiper {
        max-width: 1100px;
        height: 450px !important;
    }

    .swiper-slide-active {
        width: 48.2% !important;
    }

    .swiper-button-prev {
        left: 260px !important;
    }

    .swiper-button-next {
        right: 260px !important;
    }
}

@media (max-width: 1100px) {
    .swiper {
        max-width: 900px;
        height: 400px !important;
    }

    .swiper-slide-active {
        width: 47.8% !important;
    }

    .swiper-button-prev {
        left: 210px !important;
    }

    .swiper-button-next {
        right: 210px !important;
    }
}

@media (max-width: 900px) {
    .swiper {
        max-width: 800px;
        height: 350px !important;
    }

    .swiper-slide-active {
        width: 47.5% !important;
    }

    .swiper-button-prev {
        font-size: 25px !important;
        top: 45% !important;
        left: 188px !important;
    }

    .swiper-button-next {
        font-size: 25px !important;
        top: 45% !important;
        right: 188px !important;
    }
}

@media (max-width: 768px) {
    .swiper {
        max-width: 500px;
        height: 300px !important;
    }

    .swiper-slide {
        width: 100% !important;
    }

    .swiper-button-prev, .swiper-button-next  {
        display: none !important;
    }

    .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
    }
}

@media (max-width: 425px) {
    .swiper {
        max-width: 400px;
        height: 270px !important;
    }
}

@media (max-width: 375px) {
    .swiper {
        max-width: 350px;
        height: 200px !important;
    }
}

/* Slick slider */
.slider-wrapper {
    width: 100%;
    max-width: 1000px;
    height: 600px !important;
    margin: 0 auto;
    position: relative;
    padding-bottom: 50px;
}

.slider-wrapper.single-hut-slider-wrapper {
    width: 90% !important;
}

.slick-list {
    display: grid !important;
}

.slick-list.draggable {
    max-height: 600px !important;
}

.slick-initialized .slick-slide {
    display: flex !important;
    justify-content: center;
    cursor: pointer;
}

.slider .slide img {
    width: 100%;
    object-fit: contain !important;
    max-height: 600px;
}

.slick-dots {
    position: static;
    display: flex;
    justify-content: center;
    list-style: none;
    padding-top: 20px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots button {
    font-size: 0;
    background-color: #ccc;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    outline: none;
}

.slick-dots .slick-active button {
    background-color: #050549;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

.slick-prev::before,
.slick-next::before {
    content: '';
}

.slick-prev i,
.slick-next i {
    font-size: 30px;
    color: #ccc;
    transition: color 0.3s ease;
}

.slick-prev:hover i,
.slick-next:hover i {
    color: #050549;
}

.tourmaster-room-single-feature-thumbnail.tourmaster-item-mglr.tourmaster-media-image.tourmaster-room-single-feature-thumbnail .tourmaster-single-header-gallery-wrap {
    z-index: 1000;
    transform: translateY(-15px);
}

@media (max-width: 1000px) {
    .single-hut-slider-wrapper {
        max-width: 600px;
        height: 600px !important;
        padding-bottom: 30px;
    }

    .slick-prev {
        left: -40px;
    }

    .slick-next {
        right: -40px;
    }

    .slick-prev,
    .slick-next {
        width: 30px;
        height: 30px;
    }

    .slick-prev i,
    .slick-next i {
        font-size: 25px;
    }

    .slick-dots {
        padding-top: 10px;
    }

    .slick-dots button {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 768px) {
    .slick-prev {
        display: none !important;
    }

    .slick-next {
        display: none !important;
    }

    .slider-wrapper {
        max-width: 600px;
        height: 500px !important;
        padding-bottom: 30px;
    }

    .slick-list.draggable {
        max-height: 500px !important;
    }

    .slider .slide img {
        max-height: 500px;
    }

    .tourmaster-room-single-feature-thumbnail.tourmaster-item-mglr.tourmaster-media-image.tourmaster-room-single-feature-thumbnail .tourmaster-single-header-gallery-wrap {
        z-index: 1000;
        transform: translateY(-95px);
    }
}

@media (max-width: 425px) {
    .slick-prev {
        display: none !important;
    }

    .slick-next {
        display: none !important;
    }

    .slider-wrapper {
        max-width: 400px;
        height: 300px !important;
        padding-bottom: 20px;
    }

    .slick-list.draggable {
        max-height: 300px !important;
    }

    .slider .slide img {
        max-height: 300px;
    }
}