/*--------------------------------------------------------------
# Scroll Progress Bar
--------------------------------------------------------------*/
#scrollPath{
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: rgba(255,255,255,0.05);
}
#progressBar{
    position: fixed;
    top: 0;
    right: 0;
    width: 10px;
    background: linear-gradient(to top, #3D7484, #E59C23);
    animation: scroll 5s linear infinite;
    z-index: 99999;
}
#progressBar:before,
#progressBar:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #3D7484, #E59C23);
    filter: blur(10px);
}
#progressBar:after{
    filter: blur(30px);
}
@keyframes scroll {
    0%, 100%{
        filter: hue-rotate(0deg);
    }
    50%{
        filter: hue-rotate(360deg);
    }
}
::-webkit-scrollbar{
    width: 0;
}
#percent{
    position: fixed;
    top: 50%;
    transform: translateY(-50%) rotateX(180deg) rotateY(180deg);
    right: 15px;
    color: #ff7a00;
    font-size: 2em;
    writing-mode: vertical-lr;
    text-orientation: sideways;
    cursor: default;
    z-index: 99999;
}

@media screen and (max-width: 992px){
    #percent{
        display: none;
    }
}