.loading-on{
    visibility: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 32px;
    width: 100%;
    height: 15vh;

}

.loading-off{
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top:-200%;
    position: absolute;
    width: 100%;

}

.loading-options{
    background-color: #eeeeee;
    width: 500px;
    height: 75px;
    top:20%; box-shadow: 1px 1px 2px 1px #b4b4b4;

}
.load-ops{
    display: flex;
    justify-content: center;
}

.loading-info{
    display: flex; justify-content: center;
}

.loading-bars0{
    width: 10px;
    height: 30px;
    margin-right: 5px;
    background-color: #210101;
    align-self: center;
    animation: grow 1s linear .25s infinite;
}
.loading-bars1{
    margin-right: 5px;
    width: 10px;
    height: 30px;
    background-color: #210101;
    align-self: center;
    animation: grow 1s linear  .5s infinite;
}
.loading-bars2{
    width: 10px;
    height: 30px;
    background-color: #210101;
    align-self: center;
    animation: grow 1s linear .75s infinite;
}


#loading-box{
    display: flex;
    width: 500px;
}
.loading-bar {
    background: linear-gradient(to bottom right, blue, #de0026);
    border-radius: 12px 12px;
    height: 2px;
}
@media screen and (max-device-width: 750px) {
    .loading-options{
        background-color: #eeeeee;
        width: 300px;
        height: 75px;
        top:20%; box-shadow: 1px 1px 2px 1px #b4b4b4;

    }

    #loading-box{
        display: flex;
        width:  300px;
    }
}

@keyframes grow {
    0% {
        transform:scaleY(0); opacity: 0;
    }
    50% {
        transform:scaleY(1); opacity: 1;
    }
    100% {
        transform:scaleY(0); opacity: 0;
    }
}