.loader-logo-cont {
    background-color: var(--color-loader);
    width: 100%;
    height: 100%;
    position: fixed !important;
    z-index: 10000000000;
    position: fixed;
    top: 0
}

.loader-logo {
    position: relative;
}
.preloader-wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,1);
    z-index: 2;
}

.percentage {
    z-index: 100;
    border: 1px solid #ccc;
    text-align: center;
    color: var(--color-white);
    line-height: 30px;
    font-size: 15px;
}

.loader,
.percentage {
    height: 5px;
    max-width: 200px;
    border-radius: 20px;
    font-weight: 300;
    position: absolute;
    top: 100px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
    .loader:after,
    .percentage:after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 20px;
        left: 0;
    }

.trackbar {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    color: var(--color-white);
    text-align: center;
    line-height: 30px;
    overflow: hidden;
    position: relative;
    opacity: 0.99;
}

.loadbar {
    width: 0%;
    height: 100%;
    background: -o-repeating-linear-gradient( 45deg, var(--color-active), var(--color-active) 10px, var(--color-active) 10px, var(--color-active) 20px );
    background: repeating-linear-gradient( 45deg, var(--color-active), var(--color-active) 10px, var(--color-active) 10px, var(--color-active) 20px ); /* Stripes Background Gradient */
    -webkit-box-shadow: 0px 0px 14px 1px var(--color-active);
    box-shadow: 0px 0px 14px 1px var(--color-active);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: flicker 5s infinite;
    animation: flicker 5s infinite;
    overflow: hidden;
}

.glow {
    width: 0%;
    height: 0%;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 60px 10px rgb(0, 151, 70);
    box-shadow: 0px 0px 60px 10px rgb(0, 151, 70);
    position: absolute;
    bottom: -5px;
    -webkit-animation: animation 5s infinite;
    animation: animation 5s infinite;
}

@-webkit-keyframes animation {
    10% {
        opacity: 0.9;
    }

    30% {
        opacity: 0.86;
    }

    60% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.75;
    }
}

@keyframes animation {
    10% {
        opacity: 0.9;
    }

    30% {
        opacity: 0.86;
    }

    60% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.75;
    }
}
