body.ripro-child-down-gate-open {
  overflow: hidden;
}

.ripro-child-down-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.ripro-child-down-gate.is-open {
  display: block;
}

.ripro-child-down-gate__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.ripro-child-down-gate__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vw, 420px);
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.ripro-child-down-gate__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #666;
  font-size: 24px;
  line-height: 32px;
  cursor: pointer;
}

.ripro-child-down-gate__title {
  margin: 0 28px 8px;
  color: #202124;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.ripro-child-down-gate__desc {
  margin: 0 0 16px;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.ripro-child-down-gate__qr {
  display: block;
  width: min(100%, 296px);
  height: auto;
  object-fit: contain;
  margin: 0 auto 18px;
  border-radius: 4px;
}

.ripro-child-down-gate__form {
  display: block;
}

.ripro-child-down-gate__code {
  display: grid;
  grid-template-columns: repeat(4, 48px);
  justify-content: center;
  gap: 10px;
  margin: 2px 0 14px;
}

.ripro-child-down-gate__digit {
  width: 48px;
  height: 52px;
  border: 1px solid #d9dde3;
  border-radius: 6px;
  padding: 0;
  text-align: center;
  color: #202124;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  outline: none;
}

.ripro-child-down-gate__digit:focus {
  border-color: #18a058;
  box-shadow: 0 0 0 3px rgba(24, 160, 88, 0.14);
}

.ripro-child-down-gate__submit {
  height: 42px;
  border: 0;
  border-radius: 6px;
  background: #18a058;
  color: #fff;
  padding: 0 14px;
  font-size: 14px;
  cursor: pointer;
  min-width: 160px;
}

.ripro-child-down-gate__submit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.ripro-child-down-gate__msg {
  min-height: 22px;
  margin-top: 10px;
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

.ripro-child-down-gate__msg.is-error {
  color: #d93025;
}

.ripro-child-down-gate__msg.is-success {
  color: #188038;
}

@media (max-width: 420px) {
  .ripro-child-down-gate__dialog {
    padding: 22px 16px;
  }

  .ripro-child-down-gate__code {
    grid-template-columns: repeat(4, 44px);
    gap: 8px;
  }

  .ripro-child-down-gate__digit {
    width: 44px;
    height: 50px;
  }

  .ripro-child-down-gate__submit {
    width: 100%;
  }
}
