/* ============================================================
   후후페이 — KYC 신분인증 · 카드인증 UI
   Ref: docs/VERIFY_DESIGN_PLAN.md §11
   ============================================================ */

/* ── KYC 인증 전용 CSS 토큰 ── */
:root {
  --kyc-guide-default:    rgba(255, 255, 255, 0.85);
  --kyc-guide-detected:   #3883FF;
  --kyc-guide-captured:   #3B82F6;
  --kyc-guide-error:      #EF4444;

  --kyc-overlay-bg:       rgba(0, 0, 0, 0.82);
  --kyc-step-active:      #3883FF;
  --kyc-step-done:        #3883FF;
  --kyc-step-inactive:    #D1D5DB;

  --kyc-success-bg:       rgba(56, 131, 255, 0.08);
  --kyc-success-border:   #3883FF;
  --kyc-success-text:     #166534;

  --kyc-fail-bg:          rgba(239, 68, 68, 0.08);
  --kyc-fail-border:      #EF4444;
  --kyc-fail-text:        #991B1B;

  --kyc-processing-bg:    rgba(59, 130, 246, 0.08);
  --kyc-processing-border:#3B82F6;

  --kyc-expired-bg:       rgba(107, 114, 128, 0.08);
  --kyc-expired-border:   #9CA3AF;
  --kyc-expired-text:     #6B7280;

  --kyc-camera-h:         56dvh;
  --kyc-card-ratio:       1.586;
}

/* ============================================================
   KYC 전체화면 모달
   ============================================================ */

.kyc-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* iOS safe area */
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.kyc-modal[hidden] {
  display: none;
}

/* ── 모달 헤더 ── */
.kyc-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  padding-top: calc(12px + env(safe-area-inset-top, 0px));
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  flex-shrink: 0;
  gap: 12px;
  z-index: 1;
}

.kyc-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.kyc-modal__close:hover,
.kyc-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.25);
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.kyc-modal__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
  text-align: center;
}

/* 스텝 인디케이터 (●●○○) */
.kyc-modal__steps {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

.kyc-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kyc-step-inactive);
  transition: background 0.3s ease;
}

.kyc-step-dot--active {
  background: var(--kyc-step-active);
}

.kyc-step-dot--done {
  background: var(--kyc-step-done);
}

/* ── 카메라 뷰포트 ── */
.kyc-modal__viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kyc-camera-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 전면 카메라 미러링 */
.kyc-camera-video--mirrored {
  transform: scaleX(-1);
}

.kyc-camera-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── 가이드 프레임 오버레이 ── */
.kyc-guide-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 신분증용 직사각형 가이드 프레임 */
.kyc-guide-frame {
  position: relative;
  border: 3px solid var(--kyc-guide-default);
  border-radius: 8px;
  width: 88%;
  max-width: 340px;
  height: 214px; /* iOS 14- fallback: 340px * (53.98/85.6) ≈ 214px */
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

@supports (aspect-ratio: 1) {
  .kyc-guide-frame {
    height: auto;
    aspect-ratio: 85.6 / 53.98;
  }
}

/* 얼굴용 타원 가이드 프레임 */
.kyc-guide-frame--oval {
  width: 60%;
  max-width: 240px;
  border-radius: 50%;
  height: 320px; /* iOS 14- fallback: 240px * (4/3) ≈ 320px */
}

@supports (aspect-ratio: 1) {
  .kyc-guide-frame--oval {
    height: auto;
    aspect-ratio: 3 / 4;
  }
}

/* 감지 상태 — 초록 */
.kyc-guide-frame--detected {
  border-color: var(--kyc-guide-detected);
  box-shadow: 0 0 0 4px rgba(56, 131, 255, 0.25);
}

/* 캡처 완료 상태 — 파란색 */
.kyc-guide-frame--captured {
  border-color: var(--kyc-guide-captured);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.25);
}

/* 에러 상태 — 빨간색 */
.kyc-guide-frame--error {
  border-color: var(--kyc-guide-error);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.25);
}

/* 가이드 프레임 코너 장식 */
.kyc-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #fff;
  border-style: solid;
}

.kyc-corner--tl { top: -2px; left: -2px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.kyc-corner--tr { top: -2px; right: -2px; border-width: 3px 3px 0 0; border-radius: 0 4px 0 0; }
.kyc-corner--bl { bottom: -2px; left: -2px; border-width: 0 0 3px 3px; border-radius: 0 0 0 4px; }
.kyc-corner--br { bottom: -2px; right: -2px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }

/* 방향 화살표 (좌/우 촬영 안내) */
.kyc-direction-arrow {
  position: absolute;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  animation: kycArrowLeft 1.2s ease-in-out infinite;
}

.kyc-direction-arrow--left  { left: 12px; }
.kyc-direction-arrow--right { right: 12px; animation-name: kycArrowRight; }

@keyframes kycArrowLeft {
  0%, 100% { transform: translateX(0);    opacity: 0.6; }
  50%       { transform: translateX(-8px); opacity: 1;   }
}

@keyframes kycArrowRight {
  0%, 100% { transform: translateX(0);   opacity: 0.6; }
  50%       { transform: translateX(8px); opacity: 1;   }
}

/* ── 카운트다운 숫자 ── */
.kyc-countdown {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 2;
  animation: kycCountPulse 1s ease-in-out;
}

@keyframes kycCountPulse {
  0%   { transform: translateX(-50%) scale(1.4); opacity: 0; }
  20%  { transform: translateX(-50%) scale(1);   opacity: 1; }
  80%  { transform: translateX(-50%) scale(1);   opacity: 1; }
  100% { transform: translateX(-50%) scale(0.8); opacity: 0; }
}

/* ── 캡처 플래시 애니메이션 ── */
.kyc-flash {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  pointer-events: none;
  z-index: 10;
  animation: kycFlash 0.25s ease-out forwards;
}

@keyframes kycFlash {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

/* ── 스텝 슬라이드 전환 ── */
@keyframes kycSlideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

@keyframes kycSlideOutLeft {
  from { transform: translateX(0);     opacity: 1; }
  to   { transform: translateX(-100%); opacity: 0; }
}

.kyc-slide-in {
  animation: kycSlideInRight 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── 모달 푸터 (안내 텍스트 + 촬영 버튼) ── */
.kyc-modal__footer {
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 16px;
  text-align: center;
  z-index: 1;
}

.kyc-guide-main {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}

.kyc-guide-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
}

/* 수동 촬영 버튼 */
.kyc-capture-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.kyc-capture-btn:hover,
.kyc-capture-btn:focus-visible {
  background: rgba(255, 255, 255, 0.25);
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* ── 성공 화면 ── */
.kyc-result {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface, #fff);
  padding: 32px 24px;
  gap: 16px;
  z-index: 5;
}

.kyc-result[hidden] { display: none; }

.kyc-result--success .kyc-result__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--kyc-success-bg);
  border: 3px solid var(--kyc-guide-detected);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: kycSuccessPop 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.kyc-result--failed .kyc-result__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--kyc-fail-bg);
  border: 3px solid var(--kyc-fail-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes kycSuccessPop {
  0%   { transform: scale(0.4); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}

/* 체크마크 SVG 애니메이션 */
.kyc-success-checkmark {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: kycDrawCheck 0.4s ease 0.2s forwards;
}

@keyframes kycDrawCheck {
  to { stroke-dashoffset: 0; }
}

.kyc-result__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary, #1C2B4A);
  text-align: center;
  margin: 0;
}

.kyc-result__desc {
  font-size: 0.875rem;
  color: var(--text-muted, #6B7280);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.kyc-result__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 9999px;
  background: var(--color-primary, #3883FF);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s ease;
}

.kyc-result__btn:hover { background: var(--color-primary-dark, #0075FF); }

/* ── 로딩 (처리 중) 화면 ── */
.kyc-processing {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface, #fff);
  gap: 20px;
  z-index: 5;
  pointer-events: none;
}

.kyc-processing[hidden] { display: none; }

.kyc-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(56, 131, 255, 0.2);
  border-top-color: var(--color-primary, #3883FF);
  border-radius: 50%;
  animation: kycSpin 0.8s linear infinite;
}

@keyframes kycSpin {
  to { transform: rotate(360deg); }
}

.kyc-processing__text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary, #1C2B4A);
  margin: 0;
}

.kyc-processing__sub {
  font-size: 0.8125rem;
  color: var(--text-muted, #6B7280);
  margin: 0;
}

/* ── 에러 화면 (권한 거부, 브라우저 미지원 등) ── */
.kyc-error-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface, #fff);
  padding: 32px 24px;
  gap: 12px;
  z-index: 6;
  text-align: center;
}

.kyc-error-screen[hidden] { display: none; }

.kyc-error-icon {
  font-size: 3rem;
  line-height: 1;
}

.kyc-error-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary, #1C2B4A);
  margin: 0;
}

.kyc-error-desc {
  font-size: 0.875rem;
  color: var(--text-muted, #6B7280);
  line-height: 1.5;
  margin: 0;
}

.kyc-error-guide {
  font-size: 0.8125rem;
  color: var(--text-muted, #6B7280);
  text-align: left;
  border: 1px solid var(--border, #E2DDD6);
  border-radius: 8px;
  padding: 8px 12px;
  width: 100%;
  max-width: 320px;
}

.kyc-error-guide summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-secondary, #374151);
  margin-bottom: 4px;
}

.kyc-error-guide p {
  margin: 4px 0 0;
  line-height: 1.4;
}

.kyc-error-retry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 9999px;
  background: var(--color-primary, #3883FF);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s ease;
}

.kyc-error-retry-btn:hover { background: var(--color-primary-dark, #0075FF); }

/* ── 카드 이미지 미리보기 (카드 인증 Step 2) ── */
.kyc-preview-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 16px;
  gap: 12px;
  z-index: 4;
}

.kyc-preview-wrap[hidden] { display: none; }

.kyc-preview-img {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}

.kyc-preview-hint {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.kyc-preview-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
}

.kyc-retake-btn {
  flex: 1;
  padding: 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.kyc-retake-btn:hover { background: rgba(255, 255, 255, 0.2); }

.kyc-submit-btn {
  flex: 2;
  padding: 12px;
  border-radius: 9999px;
  background: var(--color-primary, #3883FF);
  border: none;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.kyc-submit-btn:hover  { background: var(--color-primary-dark, #0075FF); }
.kyc-submit-btn:disabled {
  background: var(--kyc-step-inactive, #D1D5DB);
  cursor: not-allowed;
}

/* ============================================================
   채팅 내 인라인 KYC 카드 (고객용)
   ============================================================ */

/* 공통 KYC 카드 베이스 */
.kyc-card {
  background: var(--bg-surface, #fff);
  border: 1px solid var(--border, #E2DDD6);
  border-radius: 12px;
  padding: 16px;
  padding-left: max(env(safe-area-inset-left, 0px), 16px);
  padding-right: max(env(safe-area-inset-right, 0px), 16px);
  max-width: 320px;
  width: 100%;
  box-sizing: border-box;
}

.kyc-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.kyc-card__icon {
  font-size: 1.25rem;
  line-height: 1;
}

.kyc-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary, #1C2B4A);
}

.kyc-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted, #6B7280);
  margin: 0 0 10px;
  line-height: 1.5;
}

.kyc-card__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.kyc-card__checklist li {
  font-size: 0.8125rem;
  color: var(--text-secondary, #374151);
  padding: 2px 0;
  padding-left: 16px;
  position: relative;
}

.kyc-card__checklist li::before {
  content: '●';
  position: absolute;
  left: 0;
  font-size: 0.375rem;
  top: 5px;
  color: var(--color-primary, #3883FF);
}

/* "카메라 열기" 버튼 (전체 너비, 파란색) */
.kyc-card__open-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: #2563EB;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
}

.kyc-card__open-btn:hover  { background: #1d4ed8; }
.kyc-card__open-btn:disabled {
  background: var(--kyc-step-inactive, #D1D5DB);
  cursor: not-allowed;
}

.kyc-card__capture-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: #2563EB;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
  margin-bottom: 8px;
}

.kyc-card__capture-btn:hover  { background: #1d4ed8; }

/* 만료 카운트다운 */
.kyc-card__expire {
  font-size: 0.75rem;
  color: var(--text-muted, #6B7280);
  margin: 10px 0 0;
  text-align: center;
}

.kyc-card__expire-timer {
  font-weight: 600;
  color: var(--color-danger, #991B1B);
}

/* ── 처리 중 상태 카드 ── */
.kyc-card--processing {
  border-color: var(--kyc-processing-border);
  background: var(--kyc-processing-bg);
}

.kyc-card__processing-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.kyc-spinner-sm {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-top-color: #3B82F6;
  border-radius: 50%;
  animation: kycSpin 0.8s linear infinite;
  flex-shrink: 0;
}

/* ── 성공/실패 결과 카드 ── */
.kyc-result-card {
  background: var(--bg-surface, #fff);
  border: 2px solid var(--kyc-success-border);
  border-radius: 12px;
  padding: 16px;
  padding-left: max(env(safe-area-inset-left, 0px), 16px);
  padding-right: max(env(safe-area-inset-right, 0px), 16px);
  max-width: 320px;
  width: 100%;
  box-sizing: border-box;
}

.kyc-result-card--success {
  border-color: var(--kyc-success-border);
  background: var(--kyc-success-bg);
}

.kyc-result-card--failed {
  border-color: var(--kyc-fail-border);
  background: var(--kyc-fail-bg);
}

.kyc-result-card--expired {
  border-color: var(--kyc-expired-border);
  background: var(--kyc-expired-bg);
  color: var(--kyc-expired-text);
}

.kyc-result-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.kyc-result-card__icon {
  font-size: 1.25rem;
  line-height: 1;
}

.kyc-result-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
}

.kyc-result-card--success .kyc-result-card__title { color: var(--kyc-success-text); }
.kyc-result-card--failed  .kyc-result-card__title { color: var(--kyc-fail-text); }
.kyc-result-card--expired .kyc-result-card__title { color: var(--kyc-expired-text); }

.kyc-result-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted, #6B7280);
  margin: 0;
  line-height: 1.5;
}

.kyc-result-card--success .kyc-result-card__desc { color: var(--kyc-success-text); }
.kyc-result-card--failed  .kyc-result-card__desc { color: var(--kyc-fail-text); }

/* 재촬영 버튼 (실패 시) */
.kyc-result-card__retry-btn {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: var(--kyc-fail-border);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  text-align: center;
  transition: opacity 0.2s ease;
}

.kyc-result-card__retry-btn:hover { opacity: 0.85; }

/* ============================================================
   반응형 — 540px 이하 중간 소형 기기
   ============================================================ */
@media (max-width: 540px) {
  .kyc-card,
  .kyc-result-card {
    padding: 14px;
    padding-left: max(env(safe-area-inset-left, 0px), 14px);
    padding-right: max(env(safe-area-inset-right, 0px), 14px);
  }

  .kyc-modal__footer {
    padding: 12px;
  }

  .kyc-guide-main { font-size: 0.875rem; }
  .kyc-guide-sub  { font-size: 0.75rem; margin-bottom: 12px; }

  .kyc-result {
    padding: 24px 16px;
    gap: 12px;
  }
}

/* ============================================================
   반응형 — 360px 이하 초소형 기기 (갤럭시 미니 등)
   ============================================================ */
@media (max-width: 360px) {
  .kyc-card,
  .kyc-result-card {
    padding: 12px;
    padding-left: max(env(safe-area-inset-left, 0px), 12px);
    padding-right: max(env(safe-area-inset-right, 0px), 12px);
    border-radius: 10px;
  }

  .kyc-card__title      { font-size: 0.875rem; }
  .kyc-card__desc,
  .kyc-card__checklist li { font-size: 0.75rem; }

  .kyc-card__open-btn,
  .kyc-card__capture-btn { font-size: 0.875rem; padding: 10px; }

  .kyc-modal__footer    { padding: 10px 12px; }
  .kyc-guide-main       { font-size: 0.8125rem; }
  .kyc-guide-sub        { font-size: 0.6875rem; margin-bottom: 10px; }

  .kyc-capture-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }

  .kyc-result {
    padding: 20px 12px;
    gap: 10px;
  }

  .kyc-result__title  { font-size: 1rem; }
  .kyc-result__desc   { font-size: 0.8125rem; }
  .kyc-result__btn    { padding: 10px 28px; font-size: 0.875rem; }

  .kyc-error-guide    { max-width: 100%; }
}

/* ============================================================
   접근성 — prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .kyc-flash,
  .kyc-countdown,
  .kyc-spinner,
  .kyc-spinner-sm,
  .kyc-direction-arrow,
  .kyc-success-checkmark,
  .kyc-result--success .kyc-result__icon-wrap,
  .kyc-slide-in {
    animation: none !important;
    transition: none !important;
  }
}
