:root
{
    --percent: 0
}
.loader-wrapper
{
    display: block;
    position: fixed;
    place-items: center;
    place-content: center;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background-color: var(--primary);
    transition: height .5s ease;  
     overflow: hidden;
}
.cursor-follower {
    min-height: 10px;
    min-width: 10px;
    background-color: #c0c0c0;
    position: fixed;
    border-radius: 50px;
    mix-blend-mode: difference;
    pointer-events: none; /* Prevent pointer interference */
    z-index: 100000;
}
.loader 
{
    transition: .4s;
}

.loader-bar
{
    width: 50%;
    height: 2.5px;
    background-color: #4b4b4b;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    margin: auto;
}
.loader-bar::before
{
    content: "";
    position: absolute;
    width: var(--percent);
    height: 100%;
    background-color: var(--secondary);
    transition: .2s;
}
.percent
{
    display: block;
    color: var(--secondary);
    font-family: nineByFive;
    text-align: center;
    font-size: 20px;
}
@media screen and (max-width: 1200px) {
    .cursor-follower
    {
        display: none;
    }
    
}