.body-loader {
    position: absolute;
    height: 100vh;
    width: 100%;
    background-color: #08090a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.preload {
    width: 200px;
}

.preload-status {
    overflow: hidden;
    height: 50px;
    border-left: 4px solid #3d3d3d;
    border-right: 4px solid #3d3d3d; 
}

.preload-status-bar {
    position: relative;
    margin-top: 10px;
    width: 100%;
    height: 30px;
    background: #ff3f29;
    border: 1px solid #ff3f29;
    box-shadow: 0px 0px 4px 1px #ff3f29;
    left: -200px;    
    animation: move 1.5s infinite cubic-bezier(.75, 0, .25, 1);
}

.img-loader {
    width: 180px;
    margin-bottom: 1rem;
    animation: fade 2s infinite cubic-bezier(.75, 0, .25, 1);
}

.preload-status-info {
    opacity: 1;
    margin-top: -22px;
    width: 100%;
    height: 30px;
    font-family: sans-serif;
    font-weight: 700;
    letter-spacing: 5px;
    text-align: center;
    color: #ff3f29;
    animation: fade 1.5s infinite cubic-bezier(.75, 0, .25, 1);
}

@keyframes move {
      0% { transform: translateX(0) }
    100% { transform: translateX(400px) }
}

@keyframes fade {
    0, 100% { opacity: 1; }
    10% { opacity: 1; }
    50% { opacity: 0; }
    90% { opacity: 1; }
}