.carousel{
    padding-bottom: 65px;
}
.carousel-inner{
    flex: 1;
    display: flex;
    overflow-x: hidden;
    position: relative;
}
.carousel-item{
    display: flex;
    flex: 1;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    transition: opacity 2s, visibility 2s;
    width: 100vw;
    flex-direction: column;
    justify-content: flex-end;
}
.carousel-item.active{
    opacity: 1;
    visibility: visible;
}
.carousel-indicators{
    margin-top: 30px;
    position: absolute;
    bottom: 25px;
    list-style: none;
}

.carousel-indicators li{
    width: 20px;
    height: 20px;
    margin-right: 30px;
    cursor: pointer;
}

.slider-image{
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--bright-yellow);
    background-position: center;
    /* margin-bottom: var(--margin-default); */
}

.carousel .parkingStatusSidebar .parkingCounter{
    width: 100px;
}
