/* ---------- variable ---------- */
@import url("https://redtoucan-admin.azurewebsites.net/media/uvdovbjb/variable.css");

/* ---------- mobile ---------- */
.carousel-wrapper .carousel-container {
    background-color: var(--color-grey);
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 auto;   
    max-width: var( --section-max-width);
}

.carousel-wrapper .carousel-container .carousel-controls {
    position: absolute;
    z-index: 999;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

.carousel-wrapper .carousel-container .carousel-controls button {
    background: transparent;
    border: none;
}

.carousel-wrapper .carousel-container .carousel-controls .previous {
    left: 2rem;
}

.carousel-wrapper .carousel-container .carousel-controls .next {
    right: 2rem;
}

.carousel-wrapper .carousel-container .carousel-slides {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.carousel-wrapper .carousel-container .carousel-slides .carousel-single-slide {
    min-width: 100%;
    position: relative;
}
.carousel-wrapper .carousel-container .carousel-slides .carousel-single-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.carousel-wrapper .carousel-container .carousel-slides .carousel-single-slide .carousel-single-slide-captions {
    position: absolute;
    bottom: 0;
    color: var(--color-white);
    text-align: center;
    width: 100%;
    background-color: var(--color-black-transparent-rgba);
    padding: 1rem 1rem 2rem;
    display: flex;
    flex-direction: column;
}

.carousel-wrapper .carousel-container .carousel-slides .carousel-single-slide .carousel-single-slide-captions small:first-of-type {
    font-weight: bold;
}

.carousel-wrapper .carousel-container .carousel-slide-tracking {
    display: flex;
    margin-top: 1rem;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: .5rem 1rem 1rem;
}
                    
.carousel-wrapper .carousel-container .carousel-slide-tracking .slide-indicator {
    display: block;
    background-color: rgba(255, 255, 255, .33333);
    width: .25rem;
    height: .25rem;
    margin: 0 .25rem;
    border-radius: 50%;
    user-select: none;
}
                    
.carousel-wrapper .carousel-container .carousel-slide-tracking .slide-showing-indicator {
    background-color: white;
}

/* ---------- tablet ---------- */
@media screen and (min-width: 62rem) {
    .carousel-wrapper {
        padding: 0;
    }

    .carousel-wrapper .carousel-container {
        margin-top: -4rem;
    }
}
