.loading-wrapper {
    background-color: #dddddd;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    z-index: 999999999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-bar {
    position: relative;
    width: 130px;
    height: 130px;
    background: #fff;
    border: px solid #3c3c3c;
    border-radius: 50%;
    text-align: center;
    line-height: 111px;
    font-family: sans-serif;
    font-size: 15px;
    color: #047498;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px #047498;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
}

.loading-bar:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 5px solid #047498;
    border-right: 5px solid #047498;
    border-radius: 50%;
    animation: animateC 2s linear infinite;
}

.text {
    color: #047498;
}

@keyframes letter {
    0% {
        font-size: 15px;
    }

    50% {
        font-size: 20px;
    }

    100% {
        font-size: 15px;
    }
}

.letter {
    animation: letter 1s infinite;
}

.letter1 {
    animation-delay: 0s;
}

.letter2 {
    animation-delay: -0.9s;
}

.letter3 {
    animation-delay: -0.8s;
}

.letter4 {
    animation-delay: -0.7s;
}

.letter5 {
    animation-delay: -0.6s;
}

.letter6 {
    animation-delay: -0.5s;
}

.letter7 {
    animation-delay: -0.4s;
}

.letter8 {
    animation-delay: -0.3s;
}

.letter9 {
    animation-delay: -0.2s;
}

.letter10 {
    animation-delay: -0.1s;
}

@keyframes animateC {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}
