.vytal-slider-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: space-between;
}

@media (max-width: 1557px) {
    .vytal-slider-wrapper {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 786px) {
    .vytal-slider-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        gap: 3.5rem;
    }
}

.vytal-slider-div,
.vytal-slider-div-reverse {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

@media (max-width: 786px) {
    .vytal-slider-div {
        flex-direction: column !important;
        max-width: 21rem;
    }

    .vytal-slider-div-reverse {
        flex-direction: column-reverse !important;
        max-width: 21rem;
    }
}

@media (max-width: 375px) {
    .vytal-slider-div,
    .vytal-slider-div-reverse {
        max-width: 95%;
    }
}

.tb-slider,
.tb-slider-2 {
    width: 21rem;
    border-radius: 1rem;

    &.large {
        width: 40rem;
    }
}

@media (max-width: 680px) {
    .large {
        max-width: 100% !important;
    }
}

@media (max-width: 425px) {
    .tb-slider,
    .tb-slider-2 {
        max-width: 100% !important;
    }
}

.tb-slide {
    display: none !important;
}

.tb-slide.is-active {
    display: flex !important;
}

.tb-slide img {
    display: block;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    animation: tbFadeIn .45s ease;
}

@keyframes tbFadeIn {
    from {
        opacity: 0;
        transform: scale(0.985);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}