@use 'styles/settings.scss' as s;

.linear-progress {
    width: 120px;
    background: s.$background;
    position: relative;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;

    .progress {
        position: absolute;
        height: 100%;
        border-radius: 5px;
        background: s.$linear-gradient-horizontal;
    }
}