/* CAROUSEL HOME PAGE */
.home-carousel {
    min-height: 60vh;
}

@media (max-width: 767.98px) {
    
    .home-carousel {
        min-height: 80vh;
    } 
    
}

/* CAROUSEL PAGINE  */
.page-carousel,
.category-carousel {
    min-height: 40vh;
}

/* INDICATORI - FRECCIE */
.carousel .carousel-control-next-icon, 
.carousel .carousel-control-prev-icon {
    width: 50px;
    height: 50px;
    background-color: #000;
}

/* INDICATORI - RETTANGOLI */
.carousel .carousel-indicators li {
    width: 25px;
    height: 3px;
    border-radius: 0;    
}
@media (min-width: 1200px) { 
        
    .carousel-indicators {
        left: 0;
        margin: 0;
        height: 100%;
        width: 50px;
        width: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .carousel .carousel-indicators li {
        width: 0.8rem;
        height: 5rem;
        border-radius: 0;
        margin-right: 0;
        margin-left: 0;
        background-color: #ffdd00;
        margin: -5px 0;
    }
    .carousel .carousel-indicators li:not(.active) {        
        background-color: #fff;      
        opacity: 1;
    }

}