.loader-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    align-items: center;
    transition: opacity 0.5s, visibility 0.5s;
    z-index: 5;
}

.loading-tire {
    width: 10vw;
    animation: loading 2s ease infinite;
    z-index: 10;

}

.tire-shadow {
    width: 9vw;
    z-index: 10;
}


.loader-div-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes loading {
    from{
        transform: rotate(0turn)
    }
    to{
        transform: rotate(1turn);
    }
}

.bars-text {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: 30vw;
    height: 4vw;
    z-index: 1000;
}

.bars {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-end;
    width: 7vw;
    height: 100%;
}

.loader-div .bar {
    height: 50%;
    width: 20%;
    background-color: rgb(48, 49, 60);
    transition: height .7s;
    border-top-left-radius: .4vw;
    border-top-right-radius: .4vw;
    position: unset;
}

.bar.higher {
    height: 100%;
}

.bar.mid {
    height: 75%;
}

.bar.lower {
    height: 50%;
}

.texts {
    font-size: 2vw;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 5vw;
    width: 100%;
    position: relative;
    overflow: visible;
    white-space: nowrap
}

.load-info {
    padding-right: 2vw;
    text-align: center;
    display: block;
    position: absolute;
    opacity: 0;
    transition: opacity 1.5s;
    top: 100%;
    left: 100%;
    transform: translate(-100%, -100%);
    display: flex;
    flex-direction: column;
    overflow: visible;
    text-align: right;
}

.load-info.active {
    opacity: 1;
}


@media screen and (max-width: 800px) {
    .loading-tire {
        width: 18vw;
    }

    .tire-shadow {
        width: 15vw;
    }

    
    .bars-text {
        height: 7vw;
        width: 47vw;
    }

    .bars {
        width: 12vw;
    }

    .texts {
        font-size: 3vw;
        height: 10vw;
    }
}