#ymsProgressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #7367f0, #00cfe8);
    box-shadow: 0 0 8px rgba(115, 103, 240, .6);
    z-index: 20000;
    opacity: 0;
    pointer-events: none;
    transition: width .2s ease, opacity .2s ease;
}

#ymsProgressBar.yms-progress-active {
    opacity: 1;
}

#ymsProgressBar.yms-progress-done {
    transition: width .15s ease, opacity .3s ease .15s;
    opacity: 0;
}
