.payment-redirect {
  --accent: #e30613;
  --accent-light: #ff2533;
  --text: #16181d;
  --muted: #777c86;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 420px;
  padding: 40px 20px;
  overflow: hidden;

  background: #f7f7f8;
  background-color:transparent !important;

  //font-family: Arial, Helvetica, sans-serif;
}

.payment-redirect__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;

  background: rgba(227, 6, 19, 0.08);
  filter: blur(90px);

  animation: paymentGlow 3s ease-in-out infinite;
}

.payment-redirect__card {
  position: relative;
  z-index: 1;

  width: min(100%, 520px);
  padding: 52px 42px 44px;

  text-align: center;

  background: #fff;
  border: 1px solid #e8e8eb;
  border-radius: 18px;

  box-shadow:
    0 20px 50px rgba(20, 25, 35, 0.07),
    0 2px 8px rgba(20, 25, 35, 0.04);
}

/* LOADER */

.payment-loader {
  position: relative;
  width: 82px;
  height: 82px;
  margin: 0 auto 30px;
}

.payment-loader__ring {
  position: absolute;
  inset: 0;

  border: 3px solid #eeeeef;
  border-top-color: var(--accent);
  border-right-color: var(--accent);

  border-radius: 50%;

  box-shadow: 0 0 18px rgba(227, 6, 19, 0.10);

  animation: paymentSpin 1s linear infinite;
}

.payment-loader__ring::before {
  content: "";
  position: absolute;
  inset: 8px;

  border: 1px solid #f0f0f2;
  border-radius: 50%;
}

.payment-loader__puck {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 26px;
  height: 10px;

  transform: translate(-50%, -50%);

  background: linear-gradient(
    to bottom,
    #444850,
    #111318 65%
  );

  border-radius: 50%;

  box-shadow:
    0 3px 0 #050505,
    0 5px 10px rgba(0, 0, 0, 0.18);

  animation: paymentPuck 1.5s ease-in-out infinite;
}

/* TEXT */

.payment-redirect__eyebrow {
  display: inline-block;
  margin-bottom: 12px;

  color: var(--accent);

  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.payment-redirect__title {
  margin: 0 0 10px;

  color: var(--text);

  font-size: clamp(28px, 5vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.payment-redirect__text {
  margin: 0;

  color: #4f535b;

  font-size: 16px;
  line-height: 1.55;
}

.payment-redirect__hint {
  margin: 10px 0 0;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.5;
}

/* PROGRESS */

.payment-progress {
  position: relative;

  width: 180px;
  height: 3px;

  margin: 30px auto 0;
  overflow: hidden;

  background: #eeeeef;
  border-radius: 50px;
}

.payment-progress__bar {
  position: absolute;
  top: 0;
  left: 0;

  width: 45%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    var(--accent),
    #ff4b56
  );

  border-radius: inherit;

  box-shadow: 0 0 8px rgba(227, 6, 19, 0.25);

  animation: paymentProgress 1.4s ease-in-out infinite;
}

/* ANIMATIONS */

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

@keyframes paymentPuck {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.12);
  }
}

@keyframes paymentProgress {
  0% {
    left: -50%;
  }

  100% {
    left: 105%;
  }
}

@keyframes paymentGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}