
.app-loading-wp {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

.app-loading-wp .text {
    margin-top: 20px;
    background: #673ab7;
    color: white;
    padding: 7px 8px 5px;
    border-radius: 1px;
    transform: scale(1.0);
    animation-name: loading-text;
    animation-duration: 1.1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

@keyframes loading-text {
    50.0% {
        box-shadow: 0 0 2px 2px rgba(103, 58, 183, 0.53);
        color: #673ab7;
        background: white;
        transform: scale(1.1);
    }
}

