.loading-fullscreen {
    width: 100%;
    height: 100vh;
    background: #F9F9F97F;
    position: fixed;
    top: 0;
    left: 0;
}

.loading {
    position: relative;
    width: 100%;
    height: 100%;
}

.loading .box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0;
    padding: 20px;
}

.loading .indicator {
    width: 10px;
    height: 10px;
    background: #0f95e1;
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: left-right 1s ease-in-out alternate-reverse infinite;
}

.loading .text {
    font-size: 1.3rem;
    opacity: 0.5;
    text-align: center;
    font-weight: 700;
}

.loading small {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 10px;
    text-align: center;
}

@keyframes left-right {
    from {
        transform: translateX(-10px);
    }

    to {
        transform: translateX(10px);
    }
}