﻿.loading-bar {
    height: 4px;
    width: 200px;
    background: #e5e5e5;
    overflow: hidden;
    border-radius: 4px;
}

    .loading-bar::before {
        content: "";
        display: block;
        height: 100%;
        width: 40%;
        background: var(--accent);
        animation: loading-bar 1.2s infinite;
    }

.loading-text {
    text-align: center;
    margin-bottom: 10px;
}

.loading-cotent-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
}

@keyframes loading-bar {
    0% {
        transform: translateX(-40%);
    }

    100% {
        transform: translateX(150%);
    }
}
