/* 관리자 신청 목록의 읽기 전용 사용자 결과 미리보기. */
html.admin-result-preview #viewInput,
html.admin-result-preview #viewPaidPreview,
html.admin-result-preview #viewFreeResult .l2v8-share,
html.admin-result-preview #viewFreeResult .l2v8-final,
html.admin-result-preview #viewFreeResult > .again,
html.admin-result-preview .foot,
html.admin-result-preview .toast {
    display: none !important;
}

.admin-result-preview-status {
    display: none;
}

html.admin-result-preview .admin-result-preview-status:not([hidden]) {
    display: grid;
    min-height: 65vh;
    align-content: center;
    justify-items: center;
    padding: 40px 24px;
    color: #737783;
    text-align: center;
}

html.admin-result-preview .admin-result-preview-status span {
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
    border: 3px solid #dce4e3;
    border-top-color: #5f918d;
    border-radius: 50%;
    animation: admin-result-preview-spin .7s linear infinite;
}

html.admin-result-preview .admin-result-preview-status strong {
    color: #30383a;
    font-size: 16px;
}

html.admin-result-preview .admin-result-preview-status p {
    margin-top: 7px;
    font-size: 12px;
}

html.admin-result-preview .admin-result-preview-status.is-error span {
    display: none;
}

html.admin-result-preview .admin-result-preview-status.is-error strong {
    color: #963e49;
}

html.admin-result-preview body {
    background: #f7f8fa;
}

html.admin-result-preview .app {
    max-width: 540px;
    padding-top: 18px;
}

@keyframes admin-result-preview-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    html.admin-result-preview .admin-result-preview-status span {
        animation: none;
    }
}
