


/**/

/**/

/*
 * Page Scroll Indicator - Simple Page Scroll Indicator based on Vanilla JS
 * Copyright (c) 2018 Gregor Laan - https://github.com/gregorlaan/page-scroll-indicator
 * License: MIT
 */
.page-scroll-indicator {
    width: 100%;
    height: 6px;
    background: rgba(66, 75, 69, 1.00);
    z-index: 9999;
    position: fixed;
    top: 0;
}

.page-scroll-indicator-progress {
    width: 0%;
    height: 6px;
    background: rgba(255, 0, 0, 1.00);
}

/**/
