.fade {

}

.indicator-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    margin: 0px;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
}
.indicator-dot.active {
    background-color: rgba(255, 255, 255, 1);
}
