﻿img.hover-shadow {
    transition: all 0.3s;
}

.swiper {
    overflow: auto !important;
}

.carousel-row {
    width: 100% !important;
    padding: 36px 0 20px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    height: fit-content;
}

.carousel-row--img {
    margin: 0 auto;
    height: 181px;
    display: flex;
    border-radius: 4px;
    grid-column: span 1 !important;
}

    .carousel-row--img img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        cursor: pointer;
        transition: 0.4s;
        border-radius: 4px;
    }

        .carousel-row--img img:hover {
            box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 12px 20px 0 rgba(0, 0, 0, 0.19);
        }

@media (min-width: 992px) {
    .carousel-row {
        max-width: 90%;
        padding: 24px 0 20px;
        margin: 0 auto;
        display: grid;
        gap: 16px;
        grid-template-rows: auto auto ;
        grid-template-columns: repeat(3,minmax(0,1fr)) ;
    }
    .carousel-row--img {
        height: 240px;
    }
    .carousel-row--img {
        aspect-ratio: unset !important;
        width: 100% !important;
    }
}



.column-box {
    white-space: nowrap;
    background-color: transparent;
    width: 100%;
    overflow: hidden;
}

    .column-box .column {
        width: 20%;
        height: 100px;
        display: inline-block;
        transition: all 1s;
    }

        .column-box .column img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
        }

.first--img {
    grid-row-start: 1;
    grid-row-end: 3;
}

/* The Modal */
.modal-hoteldetails {
    display: none;
}

.modal.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.modal-content {
    margin: auto;
    width: 70%;
    overflow: hidden;
}

@media only screen and (max-width: 991px) {
    .modal-content {
        width: 86%;
        margin: 20% auto;
    }
}

/*@@keyframes anime {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}*/

.my-slides {
    display: none;
    height: 60vh;
    transition: all 2s;
    overflow: hidden;
    animation: anime 0.8s ease-in;
    position: relative;
}

@media (max-width: 767px) {
    .my-slides {
        height: 30vh;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .my-slides {
        height: 44vh;
    }
}



.my-slides img {
    object-fit: fill;
    width: 100%;
    height: 100%;
}

.my-slides--number {
    color: #f2f2f2;
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    background-color: #333;
    border-bottom-right-radius: 15px
}

.demo {
    opacity: 0.5;
    transition: all 0.4s;
}

    .demo.active, .demo:hover {
        opacity: 1;
    }
/* Caption text */
.caption-container {
    text-align: center;
    padding: 6px 16px;
    color: white;
}

/* The Close Button */
.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

    .close:hover, .close:focus {
        color: #999;
        text-decoration: none;
        cursor: pointer;
    }
