.bb-slider {
    width: 100%;
    height: 100%;
    position: relative;   
    
}

.bb-slide { 
    width: 100%;
    height: 100%;   
    position: absolute;  
    opacity: 0;
    transition: opacity 600ms ease-in;    
}

.bb-slide.bb-active {
    opacity: 1;
}

.bb-dots {
    position: absolute;
    bottom: -12px;
    left: 95%;
    transform: translateX(-50%);
    display: flex;
    color:#fff;
}

.bb-dot {
    display: inline-block;
    width: 16px;
    height: 2px;
   
    background: #183f72;
    
    cursor: pointer;
}
.bb-dot.bb-active {
    
    cursor: default;
    background:#2c8bd8;
}
.bb-dot:not(:last-child) {
    margin-right: 4px;
}