@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
body {
    margin: 0;
    padding: 0;
}

.d-flex {
    display: flex;
}
.bg-gray-custom {
    background: #343434;
}
.content-title-carousel {
    display: flex;
    justify-content: end;
    padding: 0 35px;
}
.content-title-carousel * {
    color: #fff;
    font-family: sans-serif;
}
.carousel-content, .carousel-content * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.carousel-content {
    display: flex;
    padding: 0 35px;
    align-items: center;
    justify-content: center;
}
.carousel-content.vertical {
    min-height: 500px;
}
.wrapper {
    max-width: 1200px;
    position: relative;
}
.wrapper i {
    top: 50%;
    height: 46px;
    width: 46px;
    cursor: pointer;
    position: absolute;
    font-size: 1.2rem;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    background: #fff;
    transform: translateY(-50%);
    z-index: 2;
}
.wrapper i:first-child {
    left: -23px;
    display: none;
}
.wrapper i:last-child {
    right: -23px;
}
.vertical .wrapper i {
    top: unset;
    transform: unset;
    left: 50%;
    transform: translateX(-50%);
}
.vertical .wrapper i:first-child {
    top: 10px;
    display: none;
}
.vertical .wrapper i:last-child {
    bottom: 10px;
}
.wrapper .carousel {
    font-size: 0px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}
.carousel.dragging {
    cursor: grab;
    scroll-behavior: auto;
}
.carousel.dragging img {
    pointer-events: none;
}
.carousel img {
    object-fit: cover;
    margin-left: 14px;
    width: calc(100% / 3);
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.carousel.cmax-1 img {
    width: 100%;
}
.carousel.cmax-2 img {
    width: calc(100% / 2);
}
.carousel.cmax-3 img {
    width: calc(100% / 3);
}
.carousel.cmax-4 img {
    width: calc(100% / 4);
}
.carousel.cmax-5 img {
    width: calc(100% / 5);
}
.carousel.cmax-6 img {
    width: calc(100% / 6);
}
.carousel.cmax-7 img {
    width: calc(100% / 7);
}
.carousel.ch-200 img {
    height: 200px;
}
.carousel.ch-250 img {
    height: 250px;
}
.carousel.ch-300 img {
    height: 300px;
}
.carousel.ch-350 img {
    height: 350px;
}
.carousel.ch-400 img {
    height: 400px;
}
.carousel.ch-450 img {
    height: 450px;
}
.carousel.ch-500 img {
    height: 500px;
}
.carousel.ch-550 img {
    height: 550px;
}
.carousel.ch-600 img {
    height: 600px;
}
.carousel.ch-650 img {
    height: 650px;
}
.vertical .wrapper .carousel {
    white-space: normal;
    height: 600px;
    width: 150px;
}
.vertical .wrapper .carousel img {
    margin-left: 0px;
    width: 140px;
    margin: 5px;
    height: calc(100% / 4);
}

.carousel img:first-child {
    margin-left: 0px;
}

.carousel img.selected {
    border: 2px solid #3483FA;
    outline: 2px solid #3483FA;
}

.img-expand {
    display: flex;
    width: 100% !important;
}

.img-400 {
    border-radius: 10px;
    width: 400px !important;
    height: 400px !important;
}

@media screen and (max-width: 900px) {
    .carousel.cmax-3 img,
    .carousel.cmax-4 img,
    .carousel.cmax-5 img,
    .carousel.cmax-6 img,
    .carousel.cmax-7 img,
    .carousel img {
        width: calc(100% / 2);
    }
    .carousel.cmax-1 img {
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .vertical {
        display: none;
    }
    .carousel.cmax-1 img {
        width: 100%;
    }
}



@media screen and (max-width: 550px) {
    .carousel.cmax-3 img,
    .carousel.cmax-4 img,
    .carousel.cmax-5 img,
    .carousel.cmax-6 img,
    .carousel.cmax-7 img,
    .carousel img {
        width: 100%;
    }
    .carousel.cmax-1 img {
        width: 100%;
    }
}

