.carousel-indicators li.dot-progress {
    border-radius: 0;
    width: 4rem;
    background-color: var(--ice);
    opacity: 1;
    height: 4px;
}
.carousel-indicators li..dot-progress.active:first-child .progress-bar{
    width: 0;
}
.btn.play-pause {
    border: 0;
    background-color: var(--medium-gray);
    color: var(--ice);
}

.btn.play-pause i {
    color: var(--ice);
}



.carousel-indicators {
    align-items: center;
    display: flex;
    align-items: center;
    margin-right: 5%;
}

.progress-bar {
    background-color: var(--yellow);
    height: 100%;
    display: block;
    width: 0;
}

.progress-bar .paused {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.carousel-indicators li.dot-progress.active {
    background-color: var(--ice);
}

.dot-progress.active .progress-bar {
    width: 100%;
}
@keyframes progress-bar-animation{
    0% { width: 0; }
    100% { width: 100%; }
}



