.orma-loader-overlay {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    z-index: 9999;
    pointer-events: none;
}

.orma-loader-overlay.is-visible {
    display: flex;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: auto;
}

.orma-loader-overlay.is-shading.is-visible {
    background: rgba(0, 0, 0, 0.65);
}

.orma-loader-lockup {
    width: calc(696px * 0.58);
    height: calc(296px * 0.58);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orma-loader-stage {
    position: relative;
    width: 696px;
    height: 296px;
    flex: none;
    transform: scale(0.58);
    transform-origin: center center;
}

.orma-loader-rest {
    position: absolute;
    inset: 0;
    width: 696px;
    height: 296px;
    z-index: 2;
}

.orma-loader-spin-o {
    position: absolute;
    left: 14px;
    top: 22px;
    width: 158px;
    height: 168px;
    transform-origin: 50% 50%;
    animation: orma-spin 1.25s cubic-bezier(.66,0,.34,1) infinite;
    will-change: transform;
    z-index: 3;
}

@keyframes orma-spin {
    to {
        transform: rotate(360deg);
    }
}

.orma-loader-whirl {
    position: absolute;
    left: -6.5px;
    top: 6px;
    width: 200px;
    height: 200px;
    z-index: 1;
    pointer-events: none;
}

.orma-loader-orbit {
    transform-origin: 100px 100px;
    animation: orma-orbit 1.05s linear infinite;
}

.orma-loader-orbit.reverse {
    animation: orma-orbit-rev 1.995s linear infinite;
}

@keyframes orma-orbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes orma-orbit-rev {
    to {
        transform: rotate(-360deg);
    }
}

.orma-loader-message {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    font-family: Roboto, sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.orma-loader-message:empty {
    display: none;
}

.orma-loader-message:not(:empty)::after {
    content: "";
    animation: orma-dots 1.4s steps(4, end) infinite;
    display: inline-block;
    text-align: left;
    width: 1.2em;
}

@keyframes orma-dots {
    0% {
        content: "";
    }

    25% {
        content: ".";
    }

    50% {
        content: "..";
    }

    75% {
        content: "...";
    }

    100% {
        content: "";
    }
}

.dx-loadpanel-wrapper {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .orma-loader-spin-o,
    .orma-loader-orbit,
    .orma-loader-orbit.reverse {
        animation-duration: 3s;
    }

    .orma-loader-message:not(:empty)::after {
        animation: none;
        content: "\2026";
    }
}
