/* ==========================================================================
   carousel.css
   Extracted from: Carousel_new.vue
   ========================================================================== */

.carousel {
    position: relative;
    width: 100%;
    height: auto;
}

.carousel .reference-height {
    opacity: 0;
}

.carousel a {
    width: 100%;
    position: absolute;
    z-index: 1;
    opacity: 0;
    left: 0;
    top: 0;
    -webkit-transition: opacity .4s linear;
    -moz-transition: opacity .4s linear;
    -ms-transition: opacity .4s linear;
    -o-transition: opacity .4s linear;
    transition: opacity .4s linear;
}

.carousel a.active {
    opacity: 1;
    z-index: 5;
}

.carousel img {
    width: 100%;
}

.carousel .arrow {
    position: absolute;
    z-index: 10;
    top: 0;
    width: 50px;
    height: 100%;
    background: transparent;
    border: 0;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    cursor: pointer;
    -webkit-transition: background .2s linear;
    -moz-transition: background .2s linear;
    -ms-transition: background .2s linear;
    -o-transition: background .2s linear;
    transition: background .2s linear;
}

.carousel .arrow:hover {
    background: rgba(0, 0, 0, 0.5);
}

.carousel .arrow.left {
    left: 0;
}

.carousel .arrow.right {
    right: 0;
}

.carousel .arrow .material-icons {
    font-size: 32px;
}

.carousel .arrow:hover .material-icons {
    color: white;
}

.carousel .carousel-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: var(--text-muted);
    opacity: 0.3;
    margin: 0 10px;
    cursor: pointer;
}

.carousel .carousel-indicators button.active {
    opacity: 1;
}

@media screen and (min-width: 1200px) {
    .carousel .arrow {
        width: 80px;
    }

    .carousel .arrow .material-icons {
        font-size: 50px;
    }
}
