.carousel-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*display: none;*/
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel-slide.on {
    opacity: 1;
    /*display: block;*/
}

.carousel-indicators {
    position: absolute;
    left: 0;
    bottom: 28px;
    width: 100%;
    text-align: center;
    font-size: 0;
    z-index: 2;
}

.carousel-indicators .indicator {
    display: inline-block;
    width: 48px;
    height: 4px;
    margin: 0 5px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicators .indicator.on {
    /*background: #fff;*/
    background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 100%);
}

