/*
 * PORNONE 活动模块样式
 * ------------------------------------------------------------
 * 所有选择器和动画均使用 activity- 前缀，避免影响直播首页。
 * 设计宽度：最大 430px；在更宽屏幕上居中显示手机面板。
 * 不依赖任何外部字体、图标库或 SVG。
 */

.activity-root {
  --activity-bg: #001719;
  --activity-bg-deep: #001012;
  --activity-surface: #082426;
  --activity-surface-soft: #0b2d25;
  --activity-line: rgba(145, 255, 28, 0.34);
  --activity-green: #8cff00;
  --activity-green-strong: #62d900;
  --activity-green-dark: #2f8500;
  --activity-gold: #ffd54f;
  --activity-gold-deep: #9d7a00;
  --activity-white: #f7faf6;
  --activity-muted: #aebcb8;
  --activity-danger: #ff6969;
  --activity-banner-height: 36px;
  position: fixed;
  inset: 0;
  z-index: 12000;
  color: var(--activity-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.activity-root[hidden],
.activity-overlay[hidden],
.activity-screen[hidden],
.activity-hidden {
  display: none !important;
}

html.activity-banner-visible body {
  padding-top: var(--activity-banner-height, 36px);
}

body.activity-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.activity-official-banner {
  position: fixed;
  z-index: 12005;
  top: 0;
  left: 50%;
  width: min(100%, 430px);
  min-height: var(--activity-banner-height);
  display: flex;
  padding: 7px 8px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f4ce39, #ffe164, #f2cc37);
  color: #071516;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  text-align: center;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: uppercase;
  box-sizing: border-box;
}

.activity-official-banner a,
.activity-official-banner strong {
  color: #071516;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.activity-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-top: var(--activity-banner-height);
  overflow: hidden;
  box-sizing: border-box;
  background: rgba(0, 7, 9, 0.92);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.activity-panel {
  position: relative;
  width: min(100%, 430px);
  height: calc(100vh - var(--activity-banner-height));
  height: calc(100dvh - var(--activity-banner-height));
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(140, 255, 0, 0.55) rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  border-right: 1px solid rgba(140, 255, 0, 0.23);
  border-left: 1px solid rgba(140, 255, 0, 0.23);
  background:
    radial-gradient(circle at 50% 24%, rgba(88, 220, 0, 0.14), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(20, 120, 66, 0.14), transparent 34%),
    linear-gradient(180deg, var(--activity-bg) 0%, var(--activity-bg-deep) 100%);
  box-shadow: 0 0 44px rgba(0, 0, 0, 0.62);
}

.activity-panel::-webkit-scrollbar {
  width: 5px;
}

.activity-panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.activity-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(140, 255, 0, 0.55);
}

.activity-panel::before {
  position: fixed;
  z-index: 0;
  top: var(--activity-banner-height);
  width: min(100%, 428px);
  height: 1px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--activity-green), transparent);
}

.activity-content {
  min-height: 100%;
}

.activity-close {
  position: absolute;
  z-index: 12;
  top: 10px;
  right: 10px;
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(1, 25, 27, 0.84);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 5px 16px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  transition: color 160ms ease, transform 160ms ease, background 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.activity-close:hover,
.activity-close:focus-visible {
  color: var(--activity-green);
  background: rgba(4, 42, 39, 0.96);
  transform: scale(1.06);
  outline: 2px solid var(--activity-green);
  outline-offset: 2px;
}

.activity-screen {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}

.activity-screen--spin {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 18px;
  text-align: center;
}

.activity-screen--spin .activity-title {
  max-width: 325px;
}

.activity-screen--form,
.activity-screen--confirmed,
.activity-screen--track {
  padding-top: 54px;
}

.activity-state-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: -38px auto 8px;
  place-items: center;
  border: 2px solid var(--activity-green);
  border-radius: 50%;
  background: #052426;
  color: var(--activity-green);
  box-shadow: 0 0 22px rgba(140, 255, 0, 0.15);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.activity-title {
  max-width: 380px;
  margin: 0 auto 10px;
  color: var(--activity-green);
  text-align: center;
  font-size: clamp(24px, 7vw, 31px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(140, 255, 0, 0.2);
}

.activity-screen--form .activity-title,
.activity-screen--confirmed .activity-title,
.activity-screen--track .activity-title {
  max-width: 355px;
  font-size: clamp(24px, 6.8vw, 30px);
  font-weight: 500;
  line-height: 1.03;
}

.activity-official-pill {
  display: inline-flex;
  max-width: 100%;
  min-height: 35px;
  margin: 2px auto 12px;
  padding: 7px 15px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid var(--activity-gold-deep);
  border-radius: 999px;
  background: rgba(94, 69, 0, 0.2);
  color: var(--activity-gold);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.activity-official-pill strong,
.activity-official-pill a {
  margin-left: 4px;
  color: var(--activity-white);
  font-weight: 900;
  text-decoration: none;
}

.activity-copy {
  max-width: 360px;
  margin: 0 auto 12px;
  color: #e8efec;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.28;
}

.activity-highlight {
  display: block;
  color: var(--activity-green);
  font-weight: 900;
}

.activity-wheel-wrap {
  position: relative;
  width: min(90vw, 382px);
  max-width: 100%;
  margin: 14px auto 17px;
  aspect-ratio: 1;
  filter: drop-shadow(0 0 16px rgba(140, 255, 0, 0.42));
}

.activity-wheel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 8px solid #102b1d;
  border-radius: 50%;
  box-sizing: border-box;
  background: conic-gradient(
    from -16.36deg,
    #bcb0df 0% 9.09%,
    #f3d36d 9.09% 18.18%,
    #e9aab8 18.18% 27.27%,
    #bde29f 27.27% 36.36%,
    #c8b7df 36.36% 45.45%,
    #abcce8 45.45% 54.54%,
    #eedc9c 54.54% 63.63%,
    #b8d9bf 63.63% 72.72%,
    #eaa9ad 72.72% 81.81%,
    #acd4e8 81.81% 90.9%,
    #d0ccd2 90.9% 100%
  );
  box-shadow:
    0 0 0 3px var(--activity-green),
    0 0 0 6px rgba(140, 255, 0, 0.22),
    inset 0 0 25px rgba(0, 0, 0, 0.25);
  transition: transform 5.4s cubic-bezier(0.12, 0.72, 0.08, 1);
  will-change: transform;
}

.activity-wheel::before {
  position: absolute;
  z-index: 2;
  inset: 10px;
  border: 3px dotted rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.activity-wheel::after {
  position: absolute;
  z-index: 1;
  inset: 19%;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: rgba(0, 24, 25, 0.1);
}

.activity-wheel.is-spinning,
.activity-wheel--spinning {
  pointer-events: none;
}

.activity-wheel-item {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  width: 78px;
  min-height: 54px;
  margin: -27px 0 0 -39px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #091618;
  text-align: center;
  pointer-events: none;
  transform-origin: 50% 50%;
}

.activity-wheel-item-icon {
  display: block;
  font-size: clamp(23px, 7vw, 36px);
  font-weight: 900;
  line-height: 1;
  filter: drop-shadow(0 2px 1px rgba(255, 255, 255, 0.45));
}

.activity-wheel-item-image {
  display: block;
  max-width: 46px;
  max-height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.24));
}

.activity-wheel-item-image[hidden],
.activity-wheel-item-emoji[hidden],
.activity-prize-image[hidden],
.activity-prize-emoji[hidden] {
  display: none !important;
}

.activity-wheel-item-emoji {
  display: block;
  font-size: clamp(23px, 7vw, 36px);
  font-weight: 900;
  line-height: 1;
  filter: drop-shadow(0 2px 1px rgba(255, 255, 255, 0.45));
}

.activity-wheel-item-label {
  display: block;
  max-width: 75px;
  margin-top: 2px;
  overflow: hidden;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.05;
  white-space: pre-line;
  text-overflow: ellipsis;
}

.activity-wheel-pointer {
  position: absolute;
  z-index: 9;
  top: -9px;
  left: 50%;
  width: 54px;
  height: 48px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #8df400, #3ba800);
  clip-path: polygon(5% 0, 95% 0, 50% 100%);
  filter: drop-shadow(0 6px 5px rgba(0, 0, 0, 0.42));
}

.activity-wheel-spin {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  display: grid;
  width: 128px;
  height: 128px;
  padding: 0;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 5px solid #020e0f;
  border-radius: 50%;
  background: #03191b;
  color: var(--activity-green);
  box-shadow: 0 0 0 2px var(--activity-green), 0 8px 22px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.activity-wheel-spin:hover,
.activity-wheel-spin:focus-visible {
  transform: translate(-50%, -50%) scale(1.04);
  outline: 0;
  background: #092c28;
  box-shadow: 0 0 0 3px var(--activity-green), 0 0 26px rgba(140, 255, 0, 0.34);
}

.activity-wheel-spin:disabled {
  cursor: wait;
  opacity: 0.8;
}

.activity-entry-note {
  display: grid;
  width: 100%;
  margin: auto 0 10px;
  padding: 5px 10px;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
  box-sizing: border-box;
  border-top: 1px solid rgba(140, 255, 0, 0.08);
  border-bottom: 1px solid rgba(140, 255, 0, 0.08);
  background: linear-gradient(90deg, transparent, rgba(140, 255, 0, 0.055), transparent);
  text-align: left;
}

.activity-entry-note::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--activity-green);
  border-radius: 50%;
  content: "🎁";
  font-size: 24px;
}

.activity-entry-note strong {
  display: block;
  color: var(--activity-green);
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.activity-entry-note small {
  display: block;
  color: #edf4f1;
  font-size: 10px;
  line-height: 1.2;
}

.activity-primary,
.activity-secondary {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 9px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.activity-primary {
  border: 1px solid #70df00;
  background: linear-gradient(180deg, #74e300 0%, #4fb600 100%);
  color: #020b09;
  box-shadow: 0 10px 24px rgba(42, 130, 0, 0.22);
}

.activity-secondary {
  border: 1px solid var(--activity-green);
  background: rgba(140, 255, 0, 0.07);
  color: var(--activity-green);
}

.activity-primary:hover,
.activity-primary:focus-visible,
.activity-secondary:hover,
.activity-secondary:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-1px);
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
}

.activity-primary:disabled,
.activity-secondary:disabled {
  cursor: not-allowed;
  filter: grayscale(0.35);
  opacity: 0.62;
  transform: none;
}

.activity-prize {
  display: flex;
  margin: 8px auto 13px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.activity-prize-media {
  display: grid;
  width: 128px;
  height: 142px;
  margin-bottom: 7px;
  place-items: center;
}

.activity-prize-image {
  display: block;
  max-width: 128px;
  max-height: 142px;
  object-fit: contain;
  filter: drop-shadow(0 9px 12px rgba(0, 0, 0, 0.3));
}

.activity-prize-emoji {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(140, 255, 0, 0.32);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 64px;
}

.activity-prize-name {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 6vw, 25px);
  font-weight: 950;
  line-height: 1.08;
}

.activity-prize-spec {
  margin: 2px 0 0;
  color: #eef4f1;
  font-size: 15px;
  font-weight: 800;
}

.activity-prize-value {
  margin: 5px 0 0;
  color: var(--activity-gold);
  font-size: 27px;
  font-weight: 950;
  line-height: 1;
}

.activity-notice {
  position: relative;
  margin: 14px 0 17px;
  padding: 12px 12px 12px 48px;
  border: 1px solid var(--activity-green-strong);
  border-radius: 10px;
  background: rgba(24, 73, 32, 0.36);
  color: #eff7f2;
  font-size: 11px;
  line-height: 1.24;
}

.activity-notice::before {
  position: absolute;
  top: 50%;
  left: 13px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  content: "!";
  background: var(--activity-green);
  color: #082119;
  font-size: 18px;
  font-weight: 950;
}

.activity-notice strong {
  display: block;
  color: var(--activity-green);
  font-size: 12px;
}

.activity-form {
  display: grid;
  gap: 13px;
  margin-top: 5px;
}

.activity-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.activity-field {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: #edf3ef;
  font-size: 13px;
  font-weight: 850;
}

.activity-field label,
.activity-field-label {
  display: block;
  color: #edf3ef;
  font-size: 13px;
  font-weight: 850;
}

.activity-input {
  width: 100%;
  min-height: 52px;
  padding: 12px 13px;
  box-sizing: border-box;
  border: 1px solid rgba(133, 195, 169, 0.25);
  border-radius: 9px;
  outline: 0;
  background: #092528;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 650;
  resize: vertical;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.activity-input::placeholder {
  color: #7f9190;
  opacity: 1;
}

.activity-input:focus {
  border-color: var(--activity-green);
  background: #0b2c2c;
  box-shadow: 0 0 0 3px rgba(140, 255, 0, 0.12);
}

.activity-input[readonly] {
  color: #f6fbf8;
  cursor: default;
}

.activity-textarea {
  min-height: 88px;
}

.activity-form .activity-primary {
  margin-top: 4px;
}

.activity-error {
  margin: 4px 0 0;
  padding: 9px 11px;
  border: 1px solid rgba(255, 105, 105, 0.62);
  border-radius: 8px;
  background: rgba(112, 14, 14, 0.24);
  color: #ffb5b5;
  font-size: 12px;
  font-weight: 750;
}

.activity-reference {
  display: grid;
  margin: 12px 0 14px;
  overflow: hidden;
  border: 1px solid rgba(132, 203, 171, 0.32);
  border-radius: 11px;
  background: rgba(5, 32, 33, 0.72);
}

.activity-reference-title {
  padding: 12px 14px 4px;
  color: var(--activity-muted);
  text-align: center;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.activity-reference-value {
  padding: 4px 14px 13px;
  overflow-wrap: anywhere;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 950;
}

.activity-reference-row {
  display: grid;
  min-height: 41px;
  padding: 9px 13px;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  box-sizing: border-box;
  border-top: 1px solid rgba(132, 203, 171, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.activity-reference-row:first-child {
  border-top: 0;
}

.activity-reference-row span:first-child {
  color: var(--activity-muted);
  font-weight: 500;
}

.activity-reference-row strong,
.activity-reference-row span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.activity-status-card {
  position: relative;
  margin: 14px 0;
  padding: 14px 14px 14px 80px;
  border: 1px solid rgba(140, 255, 0, 0.52);
  border-radius: 11px;
  background: rgba(18, 64, 31, 0.58);
  color: #f3f7f4;
  font-size: 12px;
  line-height: 1.35;
}

.activity-status-card::before {
  position: absolute;
  top: 50%;
  left: 18px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  content: "📦";
  background: rgba(140, 255, 0, 0.12);
  font-size: 25px;
}

.activity-status-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--activity-muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activity-status-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--activity-green);
  font-size: 15px;
  font-weight: 900;
}

.activity-status-card p,
.activity-delivery-card p {
  margin: 0;
}

.activity-no-payment {
  margin: 11px auto 13px;
  color: #c8d4d0;
  text-align: center;
  font-size: 11px;
  line-height: 1.35;
}

.activity-delivery-card {
  position: relative;
  margin: 14px 0;
  padding: 17px 16px 16px 74px;
  border: 1px solid var(--activity-gold-deep);
  border-radius: 11px;
  background: rgba(83, 65, 5, 0.22);
  color: #f2f2e9;
  font-size: 14px;
  line-height: 1.42;
}

.activity-delivery-card::before {
  position: absolute;
  top: 50%;
  left: 20px;
  content: "🚚";
  transform: translateY(-50%);
  font-size: 32px;
}

.activity-delivery-card strong {
  color: var(--activity-gold);
  font-weight: 900;
}

.activity-delivery-card hr {
  height: 1px;
  margin: 11px 0;
  border: 0;
  background: rgba(255, 213, 79, 0.3);
}

.activity-delivery-reminder {
  color: var(--activity-green);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.activity-footnote {
  margin: 10px auto 13px;
  color: #c4cfcb;
  text-align: center;
  font-size: 10px;
  line-height: 1.3;
}

.activity-screen--confirmed > .activity-primary,
.activity-screen--track > .activity-primary,
.activity-screen--track > .activity-secondary {
  margin-top: 12px;
}

.activity-loading {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.activity-loading::after {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 20, 10, 0.32);
  border-top-color: #00180c;
  border-radius: 50%;
  content: "";
  animation: activity-rotate 700ms linear infinite;
}

.activity-shake {
  animation: activity-shake 360ms ease;
}

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

@keyframes activity-shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

@media (min-width: 431px) {
  .activity-panel {
    border-radius: 0 0 18px 18px;
  }
}

@media (max-width: 389px) {
  .activity-screen {
    padding-right: 15px;
    padding-left: 15px;
  }

  .activity-wheel-wrap {
    width: min(91vw, 350px);
  }

  .activity-wheel-spin {
    width: 112px;
    height: 112px;
    font-size: 19px;
  }

  .activity-wheel-item {
    width: 66px;
    margin-left: -33px;
  }

  .activity-wheel-item-label {
    max-width: 62px;
    font-size: 7px;
  }

  .activity-title {
    max-width: 320px;
  }

  .activity-official-pill {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 11px;
  }

  .activity-reference-row {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

@media (max-width: 340px) {
  .activity-official-banner {
    font-size: 7.5px;
  }

  .activity-field-grid {
    grid-template-columns: 1fr;
  }

  .activity-wheel-item-label {
    display: none;
  }

  .activity-status-card {
    padding-left: 67px;
  }

  .activity-status-card::before {
    left: 12px;
  }

  .activity-delivery-card {
    padding-left: 58px;
  }

  .activity-delivery-card::before {
    left: 12px;
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .activity-close,
  .activity-primary,
  .activity-secondary,
  .activity-input,
  .activity-wheel,
  .activity-wheel-spin {
    scroll-behavior: auto;
    transition-duration: 1ms !important;
  }

  .activity-loading::after,
  .activity-shake {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
