.scrollbar { 
    position: relative; 
    width: 100%; 
    height: 10px; 
    background-color: rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

.scrollbar .bar-container { 
    position: relative; 
    left: 0; 
}

.scrollbar .bar-container:hover .bar, .scrollbar .bar-container:active .bar {
    background-color: #00ce59; 
}

.scrollbar .bar-container .bar { 
    width: 100%; 
    height: 10px; 
    border-radius: 10px;
    background: #fff; 
    cursor: pointer;
}

