html.voc-processing-active,
body.voc-processing-active {
    overflow: hidden !important;
}

.voc-processing-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    cursor: wait;
    touch-action: none;
}

.voc-processing-overlay__inner {
    display: table;
    width: 100%;
    height: 100%;
}

.voc-processing-overlay__panel {
    display: table-cell;
    padding: 20px;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
}

.voc-processing-overlay__panel strong,
.voc-processing-overlay__panel > span:last-child {
    display: block;
}

.voc-processing-overlay__panel > span:last-child {
    margin-top: 4px;
    font-size: 15px;
}

.voc-processing-overlay__spinner {
    display: block;
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    border: 5px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: voc-processing-spin 0.8s linear infinite;
}

@keyframes voc-processing-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .voc-processing-overlay__spinner {
        animation: none;
    }
}
