html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

:root {
  --rr-safe-area-top: env(safe-area-inset-top, 0px);
  --rr-safe-area-right: env(safe-area-inset-right, 0px);
  --rr-safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --rr-safe-area-left: env(safe-area-inset-left, 0px);
}

@supports (top: constant(safe-area-inset-top)) {
  :root {
    --rr-safe-area-top: constant(safe-area-inset-top);
    --rr-safe-area-right: constant(safe-area-inset-right);
    --rr-safe-area-bottom: constant(safe-area-inset-bottom);
    --rr-safe-area-left: constant(safe-area-inset-left);
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.isloading-overlay {
  background: rgba(0, 0, 0, 0.72);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  overflow: hidden;
  z-index: 100000;
}

.isloading-wrapper {
  position: fixed;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin-top: -90px;
  margin-left: -90px;
}

.loading-div {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  -webkit-animation: none;
  animation: none;
}

.loading-div img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: block;
}

.loading-div::before {
  content: none;
}

@-webkit-keyframes rr-loading-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rr-loading-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@font-face {
  font-family: "Hero_Light";
  src: url("/digitalDynamics/roulette/styles/fonts/Hero_Light.otf");
}

@font-face {
  font-family: "gyreheros";
  src: url("/digitalDynamics/roulette/styles/fonts/texgyreheros-bold.otf");
}

@font-face {
  font-family: "Kolbi Sans";
  src:
    url("/digitalDynamics/responsiveRoulette/styles/fonts/KolbiSans-Regular.woff2") format("woff2"),
    url("/digitalDynamics/responsiveRoulette/styles/fonts/KolbiSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kolbi Sans";
  src:
    url("/digitalDynamics/responsiveRoulette/styles/fonts/KolbiSans-SemiBold.woff2") format("woff2"),
    url("/digitalDynamics/responsiveRoulette/styles/fonts/KolbiSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kolbi Sans";
  src:
    url("/digitalDynamics/responsiveRoulette/styles/fonts/KolbiSans-Bold.woff2") format("woff2"),
    url("/digitalDynamics/responsiveRoulette/styles/fonts/KolbiSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: #0f1724;
  font-family: "Kolbi Sans", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

body.rr-mobile-landscape-lock {
  overflow: hidden;
}

#rr-app {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}

body.rr-mobile-landscape-lock #rr-app {
  visibility: hidden;
  pointer-events: none;
}

.rr-screen {
  display: none;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  width: 100%;
}

.rr-screen.is-active {
  display: flex;
}

.rr-screen-landing {
  background: #1b3a1f;
}

.rr-screen-landing.is-active {
  display: block;
}

.rr-screen-start {
  align-items: flex-end;
  justify-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.rr-screen-flow {
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding:
    calc(1.25rem + var(--rr-safe-area-top))
    calc(1.25rem + var(--rr-safe-area-right))
    calc(1.25rem + var(--rr-safe-area-bottom))
    calc(1.25rem + var(--rr-safe-area-left));
}

.rr-start-overlay {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 calc(59px + var(--rr-safe-area-bottom));
  background: transparent;
}

#rr-start-btn {
  width: 301px;
  height: 85px;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 18px;
  background: var(--rr-start-btn-bg, #ff7a1a);
  color: var(--rr-start-btn-text, #ffffff);
  font-family: "Kolbi Sans", sans-serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.22);
}

.rr-flow-shell {
  width: 100%;
  min-height: 100vh;
  min-height: calc(100svh - var(--rr-safe-area-top) - var(--rr-safe-area-bottom));
  min-height: calc(100dvh - var(--rr-safe-area-top) - var(--rr-safe-area-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr-flow-card {
  width: min(92vw, 846.3px);
  padding: 3.5rem 1.25rem;
  border-radius: 42px;
  background: linear-gradient(
    325deg,
    rgba(210, 246, 210, 0.94) 0%,
    rgba(239, 255, 242, 0.82) 22%,
    rgba(255, 255, 255, 0.98) 58%,
    rgba(255, 255, 255, 0.98) 100%
  );
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.rr-flow-title {
  color: #2d2d2d;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 32px;
  margin-bottom: 0;
  text-align: center;
}

.rr-flow-subtitle {
  color: #5e5e5e;
  font-size: 0.75rem;
  text-align: center;
  margin-bottom: 0;
  margin-top: 15px;
}

#rr-service-form,
#rr-confirm-form {
  display: grid;
  gap: 0.8rem;
}

#rr-service-form {
  margin-top: 1.25rem;
}

#rr-confirm-form {
  margin-top: 1rem;
}

.rr-flow-label {
  color: #4f4f4f;
  font-size: 0.875rem;
}

.rr-service-select__trigger,
#rr-service-number,
#rr-service-identification,
#winner_mail,
#winner_number {
  height: 58px;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  color: #757575;
  border-radius: 16px;
  padding: 0 1rem;
  outline: 0;
  font-size: 1rem;
}

.rr-service-select {
  position: relative;
}

.rr-service-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Kolbi Sans", sans-serif;
  color: #2b2b2b;
  cursor: pointer;
  text-align: left;
}

.rr-service-select__trigger::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #004109;
  border-bottom: 2px solid #004109;
  transform: rotate(45deg) translateY(-2px);
  flex: 0 0 12px;
  transition: transform 180ms ease;
}

.rr-service-select.is-open .rr-service-select__trigger::after {
  transform: rotate(-135deg) translateY(-1px);
}

.rr-service-select__trigger.is-placeholder .rr-service-select__label {
  color: #757575;
}

.rr-service-select__menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  display: none;
  z-index: 30;
}

.rr-service-select.is-open .rr-service-select__menu {
  display: grid;
  gap: 8px;
}

.rr-service-select__option {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  background: #ffffff;
  color: #2b2b2b;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.rr-service-select__option:hover,
.rr-service-select__option.is-active {
  background: #c5ebc5;
  color: #2b2b2b;
}

.rr-service-select__option:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(56, 201, 47, 0.2);
}

#rr-service-number::placeholder,
#rr-service-identification::placeholder {
  color: #757575;
  opacity: 1;
}

.rr-service-select__trigger:focus,
#rr-service-number:focus,
#rr-service-identification:focus,
.rr-code-input:focus,
#winner_mail:focus,
#winner_number:focus {
  border-color: #38c92f;
  box-shadow: 0 0 0 2px rgba(56, 201, 47, 0.15);
}

.rr-service-consent {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.45rem;
  color: #4F4F4F;
  font-size: 0.875rem;
  line-height: 1.35;
  cursor: pointer;
}

.rr-service-consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rr-service-consent__box {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #4dcc38;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(77, 204, 56, 0.22);
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.rr-service-consent__check {
  width: 12px;
  height: 7px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(-45deg) translateY(-1px);
}

.rr-service-consent__text {
  padding-top: 3px;
}

.rr-service-consent input[type="checkbox"]:not(:checked) + .rr-service-consent__box {
  background: #d9ead3;
  box-shadow: none;
  border: 2px solid #4dcc38;
}

.rr-service-consent input[type="checkbox"]:not(:checked) + .rr-service-consent__box .rr-service-consent__check {
  opacity: 0;
}

.rr-service-consent input[type="checkbox"]:focus-visible + .rr-service-consent__box {
  box-shadow: 0 0 0 3px rgba(56, 201, 47, 0.2);
}

#rr-service-submit,
#rr-confirm-submit,
#rr-spin-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 190px;
  height: 71px;
  border: 0;
  border-radius: 16px;
  font-family: "Kolbi Sans", sans-serif;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(37, 154, 40, 0.25);
}

#rr-service-submit,
#rr-confirm-submit {
  margin-top: 0.8rem;
  background: #34c924;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
}

#rr-service-submit[disabled],
#rr-confirm-submit[disabled],
.rr-win-modal__action[disabled] {
  background: #c5ebc5;
  color: #32c332;
  box-shadow: 1.05px 3.15px 3.15px 0px #00800073;
  cursor: not-allowed;
  opacity: 1;
}

#rr-service-submit.is-loading,
#rr-confirm-submit.is-loading,
.rr-win-modal__action.is-loading {
  padding-left: 3.15rem;
}

#rr-service-submit.is-loading::before,
#rr-confirm-submit.is-loading::before,
.rr-win-modal__action.is-loading::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border-radius: 50%;
  border: 2px solid #32C332;
  border-top-color: #c5ebc5;
  animation: rr-button-spin 700ms linear infinite;
}

#rr-spin-btn {
  background: var(--rr-spin-btn-bg, #f4c542);
  color: var(--rr-spin-btn-text, #111111);
}

@keyframes rr-button-spin {
  to {
    transform: rotate(360deg);
  }
}

.rr-code-group {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.rr-code-input {
  width: 65px;
  height: 65px;
  border: 1px solid #32c332;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: #2a2a2a;
  font-size: 2rem;
  text-align: center;
  outline: 0;
}

.rr-code-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: #004109;
  margin-bottom: 2.0625rem;
}

.rr-resend-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.rr-link-btn {
  border: 0;
  background: transparent;
  color: #004109;
  text-decoration: underline;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

#rr-resend-counter {
  color: #004109;
  font-weight: 600;
}

.rr-link-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: none;
}

#rr-spin-btn[disabled] {
  opacity: 0.52;
  cursor: not-allowed;
}

.rr-toast {
  position: fixed;
  top: calc(14px + var(--rr-safe-area-top));
  left: 50%;
  width: min(calc(100vw - 24px - var(--rr-safe-area-left) - var(--rr-safe-area-right)), 640px);
  transform: translate(-50%, -18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  z-index: 10040;
}

.rr-toast.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.rr-toast__body {
  --rr-toast-accent: #6f7f8f;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 76px;
  padding: 0.9rem 1rem 0.9rem 1.15rem;
  border-radius: 24px;
  border-left: 5px solid var(--rr-toast-accent);
  background: #ffffff;
  color: #2d2d2d;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(205, 212, 205, 0.6);
}

.rr-toast.is-error .rr-toast__body {
  --rr-toast-accent: #c1281d;
}

.rr-toast.is-success .rr-toast__body {
  --rr-toast-accent: #1d9d3a;
}

.rr-toast.is-info .rr-toast__body {
  --rr-toast-accent: #5e6f80;
}

.rr-toast__icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rr-toast.is-error .rr-toast__icon::before {
  content: "";
  width: 30px;
  height: 30px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath d='M15 4 27 25H3L15 4Z' fill='none' stroke='%23C1281D' stroke-width='2.4' stroke-linejoin='round'/%3E%3Cpath d='M15 10.2v7.3' stroke='%23C1281D' stroke-width='2.4' stroke-linecap='round'/%3E%3Ccircle cx='15' cy='21.5' r='1.35' fill='%23C1281D'/%3E%3C/svg%3E");
}

.rr-toast.is-success .rr-toast__icon::before {
  content: "✓";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(29, 157, 58, 0.12);
  color: #1d9d3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.rr-toast.is-info .rr-toast__icon::before,
.rr-toast:not(.is-error):not(.is-success) .rr-toast__icon::before {
  content: "i";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(94, 111, 128, 0.14);
  color: #5e6f80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.rr-toast__message {
  margin: 0;
  color: inherit;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 500;
}

.rr-toast__close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #c9c9c9;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rr-orientation-lock {
  position: fixed;
  inset: 0;
  z-index: 200001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(73, 214, 34, 0.32), transparent 42%),
    rgba(7, 15, 11, 0.96);
}

.rr-orientation-lock.is-active {
  display: flex;
}

.rr-orientation-lock__card {
  width: min(100%, 420px);
  padding: 28px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.rr-orientation-lock__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 18px;
  border: 4px solid #34c924;
  position: relative;
  transform: rotate(90deg);
}

.rr-orientation-lock__icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, #58de35 0%, #29b21e 100%);
}

.rr-orientation-lock__title {
  color: #202020;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.04;
}

.rr-orientation-lock__message {
  margin-top: 12px;
  color: #4a4a4a;
  font-size: 18px;
  line-height: 1.3;
}

.rr-screen-wheel {
  align-items: stretch;
  justify-content: flex-start;
  padding: 115px 20px 68px;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

.rr-play-layout {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.rr-wheel-stage {
  width: 100%;
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
}

.rr-wheel-wrap {
  position: relative;
  width: min(86vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr-pointer {
  position: absolute;
  top: 50%;
  right: clamp(-26px, -5.4vw, -14px);
  width: clamp(34px, 9.8vw, 58px);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.36));
  transform: translateY(-50%);
  transform-origin: calc(100% - 4px) 50%;
  z-index: 6;
  overflow: visible;
  pointer-events: none;
}

.rr-pointer-win-badge {
  display: none;
}

.rr-pointer-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}

.rr-pointer.is-ticking {
  animation: rr-pointer-tick 125ms cubic-bezier(0.22, 0.75, 0.35, 1);
}

@keyframes rr-pointer-tick {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  35% {
    transform: translateY(-50%) rotate(-11deg);
  }
  70% {
    transform: translateY(-50%) rotate(5deg);
  }
  100% {
    transform: translateY(-50%) rotate(0deg);
  }
}

.rr-wheel-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: visible;
  background: transparent;
  will-change: transform;
  transform: rotate(0deg);
  z-index: 1;
}

.rr-wheel-core {
  position: absolute;
  inset: 3.4%;
  border-radius: 50%;
  border: 2px solid var(--rr-border, #ffffff);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
}

.rr-wheel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
}

.rr-wheel-segment {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--rr-piece, #3366cc);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.rr-wheel-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.rr-wheel-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.rr-wheel-frame {
  position: absolute;
  top: -4%;
  left: -4%;
  width: 108%;
  height: 108%;
  object-fit: contain;
  pointer-events: none;
  z-index: 3;
}

.rr-label {
  position: absolute;
  transform: translate(-50%, -50%);
  max-width: 26%;
  text-align: center;
  font-size: clamp(0.54rem, 2.2vw, 0.9rem);
  line-height: 1.12;
  color: var(--rr-text, #ffffff);
  font-family: "Kolbi Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
  word-break: break-word;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  pointer-events: none;
}

.rr-label-radial {
  transform-origin: center center;
}

.rr-label-no-image {
  max-width: 34%;
}

.rr-label-large {
  font-size: clamp(0.72rem, 2.6vw, 1.4rem);
  line-height: 1;
}

.rr-label-medium {
  font-size: clamp(0.66rem, 2.3vw, 1.15rem);
  line-height: 1.02;
}

.rr-label-small {
  font-size: clamp(0.66rem, 2.05vw, 1.02rem);
  line-height: 1.08;
}

.rr-label-image {
  width: clamp(52px, 11.5vw, 145px);
  height: clamp(52px, 11.5vw, 145px);
  object-fit: contain;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.rr-label-image-orbit {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.rr-wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(34px, 10vw, 58px);
  height: clamp(34px, 10vw, 58px);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
}

.rr-wheel-center-image {
  display: block;
  width: 100%;
  height: auto;
}

.rr-right-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.rr-play-headline {
  width: min(88vw, 430px);
  margin: 0;
  color: #ffffff;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.04;
  text-align: center;
  margin-top: 25px;
}

.rr-right-panel-container {
  width: min(92vw, 370px);
  background: rgba(255, 255, 255, 0.5);
  padding: 8px;
  border-radius: 30.45px;
}

.rr-play-panel {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24.36px;
  box-shadow: 0 20px 34px rgba(5, 41, 8, 0.18);
  padding: 16px 24px;
}

.rr-play-user {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: #333333;
  font-family: "Kolbi Sans", sans-serif;
  font-size: clamp(1.25rem, 3.8vw, 1.9rem);
}

.rr-play-user-label,
.rr-play-user-value {
  font-weight: 700;
  font-size: 20px;
  color: #2d2d2d;
}

.rr-play-controls {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.05rem;
}

.rr-attempts-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}

.rr-attempts-count {
  width: 69px;
  min-width: 69px;
  height: 69px;
  padding: 0 6px;
  border-radius: 12px;
  background: #34c924;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 3rem;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.rr-attempts-count.is-three-digits {
  font-size: 2.05rem;
  letter-spacing: -0.08em;
}

.rr-attempts-count.is-four-plus-digits {
  font-size: 1.65rem;
  letter-spacing: -0.1em;
}

.rr-attempts-label {
  margin-top: 0.45rem;
  color: #333333;
  font-size: 13px;
  font-family: "Kolbi Sans", sans-serif;
  text-align: center;
}

#rr-play-panel #rr-spin-btn {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 66px;
  margin: 0;
  border-radius: 18px;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
}

.rr-status {
  color: var(--rr-text, #ffffff);
  opacity: 0.92;
  text-align: center;
  font-size: 0.96rem;
  display: none;
}

.canvasConfetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  pointer-events: none;
}

.rr-result-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
  z-index: 10020;
}

.rr-result-modal.is-active {
  display: flex;
}

.rr-result-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 17, 12, 0.52);
  backdrop-filter: blur(3px);
}

.rr-result-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 806px);
  padding: 40px 40px 72px;
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 24%, rgba(110, 228, 255, 0.85) 0%, rgba(110, 228, 255, 0) 26%),
    linear-gradient(180deg, #16d300 0%, #6ee470 46%, #f7f9f6 100%);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.rr-result-modal__dialog::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.98) 100%);
  pointer-events: none;
}

.rr-div-close-btn {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.rr-result-modal__close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: none;
  cursor: pointer;
}

.rr-result-modal__body {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.15rem;
}

.rr-result-modal__icon-shell {
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr-result-modal__icon {
  width: 100%;
  height: 100%;
  display: block;
}

.rr-result-modal__title {
  max-width: 560px;
  color: #2d2937;
  font-family: "Kolbi Sans", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  line-height: 1.05;
  font-weight: 700;
}

.rr-result-modal__message {
  max-width: 470px;
  color: #32313a;
  font-family: "Kolbi Sans", sans-serif;
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  line-height: 1.1;
  margin-bottom: 60px;
}

.rr-result-modal__action {
  align-self: flex-end;
  min-width: 180px;
  height: 71px;
  padding: 0 2rem;
  border: 0;
  border-radius: 16px;
  background: #35cb2f;
  color: #ffffff;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 12px rgba(16, 112, 19, 0.22);
}

.rr-win-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
  z-index: 10030;
}

.rr-win-modal.is-active {
  display: flex;
}

.rr-win-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 17, 12, 0.52);
  backdrop-filter: blur(3px);
}

.rr-win-modal__dialog {
  position: relative;
  width: min(100%, 806px);
  max-height: 677px;
  padding: 36px 22px 30px;
  border-radius: 42px;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    radial-gradient(circle at 9% 24%, rgba(110, 228, 255, 0.85) 0%, rgba(110, 228, 255, 0) 24%),
    linear-gradient(180deg, #16d300 0%, #6ee470 46%, #f7f9f6 100%);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.rr-win-modal__dialog::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.98) 100%);
  pointer-events: none;
  display: none;
}

.rr-win-modal__close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  background: none;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.rr-win-modal__close,
.rr-result-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr-modal-close__icon {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.rr-win-modal__body {
  position: relative;
  z-index: 1;
}

.rr-win-modal__title {
  color: #ffffff;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.75rem;
}

.rr-win-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: 1rem;
  align-items: start;
}

.rr-win-modal__telco {
  max-width: 680px;
  margin: 0 auto;
}

.rr-win-modal__telco-card {
  min-height: 180px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(223, 255, 223, 0.55));
  padding: 2rem 2.5rem;
  text-align: center;
}

.rr-win-modal__telco-primary {
  color: #2d2937;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.08;
  font-weight: 700;
}

.rr-win-modal__telco-secondary {
  margin-top: 0.5rem;
  color: #32313a;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25;
}

.rr-win-modal__telco-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.rr-win-modal__telco-line {
  color: #2d2937;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.15;
}

.rr-win-modal__telco-highlight {
  margin-top: 1rem;
  color: #0d4b10;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 2.25rem;
  line-height: 1.05;
  font-weight: 700;
}

.rr-win-modal__telco-actions {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-end;
}

.rr-win-modal__left,
.rr-win-modal__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rr-win-prize-card {
  min-height: 218px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(223, 255, 223, 0.55));
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.9375rem 1rem;
}

.rr-win-prize-card__image-wrap {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rr-win-prize-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rr-win-prize-card__text {
  color: #2f3430;
  font-family: "Kolbi Sans", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.25;
  font-weight: 700;
}

.rr-win-code-card {
  min-height: 145px;
  border-radius: 20px;
  background: #ffffff;
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.rr-win-code-card__label {
  color: #303030;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.rr-win-code-card__value {
  margin-top: 0.95rem;
  color: #0c4a1d;
  font-family: "Kolbi Sans", sans-serif;
  font-size: clamp(2.7rem, 4vw, 3.35rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.rr-win-form-title, .rr-win-form-subtitle {
  color: #223123;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  
}

.rr-win-form-subtitle {
  margin: 8px 0 4px;
  font-size: 0.875rem;
}

.rr-win-field {
  display: grid;
  gap: 0.28rem;
}

.rr-win-field__label {
  color: #425142;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.1;
}

.rr-win-field__value {
  min-height: 50px;
  border-radius: 16px;
  background: #ffffff;
  padding: 0.95rem 1rem;
  color: #2d2d2d;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 0.98rem;
  line-height: 1.1;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.rr-win-field__value--select {
  position: relative;
  padding-right: 2.75rem;
}

.rr-win-field__value--select::after,
.rr-win-field__value--select::before {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: #21522d;
}

.rr-win-field__value--select::after {
  transform: translateY(-50%) rotate(45deg);
  right: 1.43rem;
}

.rr-win-field__value--select::before {
  transform: translateY(-50%) rotate(-45deg);
}

.rr-win-location-card {
  border-radius: 16px;
  background: #ffffff;
  padding: 0.8rem 0.95rem;
  color: #2d2d2d;
  margin-bottom: 1.25rem;
}

.rr-win-location-card__label {
  font-family: "Kolbi Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 700;
}

.rr-win-location-card__text {
  margin-top: 0.42rem;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 0.92rem;
  line-height: 1.25;
}

.rr-win-location-card__link {
  display: inline-block;
  margin-top: 0.35rem;
  color: #5a5a5a;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 0.88rem;
  line-height: 1.2;
  word-break: break-all;
}

.rr-win-modal__action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 173px;
  height: 63px;
  padding: 0 2rem;
  border: 0;
  border-radius: 16px;
  background: #35cb2f;
  color: #ffffff;
  font-family: "Kolbi Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 12px rgba(16, 112, 19, 0.22);
}

.form-control {
  display: block;
  width: 100%;
  height: 53px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 16px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
  cursor: not-allowed;
}

.form-group {
  margin-bottom: 8px;
}

.error {
  border:1px solid rgba(234,46,28,.5)!important
}

label.error {
  color:#ea2e1c;
  font-size:.75rem;
  padding:0;
  margin-bottom:0;
  border:none!important
}

#rr-win-form label.error {
  display: block !important;
  margin-top: 0.28rem;
  line-height: 1.2;
}

.rr-win-prize-note {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .rr-win-modal__dialog {
    overflow-x: unset;
    overflow-y: unset;
  }

  .rr-win-form {
    max-height: 432px;
    overflow-y: scroll;
    padding-right: 6px;
  }

  .rr-right-panel {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }

  .rr-play-headline {
    font-size: 3rem;
  }

  .rr-code-group {
    margin-bottom: 0.7625rem;
  }

  .rr-code-input {
    width: 82px;
    height: 78px;
  }

  .rr-code-actions {
    margin-bottom: 2.1875rem;
  }

  .rr-start-overlay {
    justify-content: flex-start;
    padding: 0 0 116px 114px;
  }

  #rr-start-btn {
    min-width: 0;
    max-width: none;
    font-size: 2.75rem;
    width: 383px;
    height: 85px;
  }

  .rr-screen-flow {
    padding: 0;
  }

  .rr-flow-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 846.3px;
    width: 100%;
    min-height: 592.2px;
    padding: 4rem 4.5rem;
  }

  .rr-flow-subtitle {
    margin-top: 14px;
    font-size: 1.05rem;
  }

  .rr-flow-title {
    font-size: 50.4px;
  }

  .rr-right-panel-container {
    width: min(80vw, 468px);
    padding: 12px;
  }

  #rr-service-form {
    max-width: 344px;
    width: 100%;
    margin-top: 1.3125rem;
  }

  #rr-confirm-form {
    max-width: 364px;
    width: 100%;
    margin-top: 1.5625rem;
  }

  .rr-flow-label {
    font-size: 1rem;
  }

  .rr-link-btn {
    font-size: 1.05rem;
  }

  .rr-play-layout {
    max-width: 960px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .rr-screen-wheel {
    padding: 140px 32px 40px;
  }

  .rr-wheel-stage {
    justify-content: center;
    align-items: center;
    padding-right: 0;
  }

  .rr-wheel-wrap {
    width: min(72vw, 680px);
    margin-top: 0;
  }

  .rr-play-headline {
    width: min(76vw, 520px);
  }

  .rr-play-panel {
    width: 100%;
    height: auto;
    padding: 24px;
  }

  .rr-play-user {
    font-size: 1.05rem;
    gap: 0.6rem;
  }

  .rr-attempts-count {
    width: 83px;
    min-width: 83px;
    height: 83px;
    padding: 0 8px;
    font-size: 64px;
  }

  .rr-attempts-count.is-three-digits {
    font-size: 48px;
  }

  .rr-attempts-count.is-four-plus-digits {
    font-size: 40px;
  }

  .rr-attempts-label {
    font-size: 15px;
  }

  #rr-service-submit,
  #rr-confirm-submit {
    font-size: 1.575rem;
  }

  #rr-play-panel #rr-spin-btn {
    height: 85px;
    font-size: 44px;
  }

  .rr-status {
    font-size: 0.88rem;
  }

  .rr-play-user-label,
  .rr-play-user-value {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .rr-screen-wheel {
    overflow-y: hidden;
  }

  .rr-right-panel {
    width: 360px;
    flex: 0 0 360px;
    height: auto;
    align-self: stretch;
    padding: 45px 43px  0 0;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0;
  }

  .rr-play-layout {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 28px;
  }

  .rr-screen-wheel {
    padding: 85px 28px 32px;
  }

  .rr-wheel-stage {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    align-items: center;
    padding-right: 0;
  }

  .rr-wheel-wrap {
    width: min(56vw, 660px);
  }

  .rr-pointer {
    right: -18px;
    width: 64px;
  }

  .rr-pointer-win-badge {
    position: absolute;
    left: calc(100% - 14px);
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    height: 54.6px;
    padding: 0 20px 0 28px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, #ff8c25 0%, #ff7313 100%);
    color: #ffffff;
    font-family: "Kolbi Sans", sans-serif;
    font-size: 29.4px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(109, 57, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    z-index: 1;
  }

  .rr-pointer-win-badge.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
  }

  .rr-play-headline {
    margin-top: 0;
    font-size: clamp(52px, 5.4vw, 72px);
    text-align: right;
    max-width: unset !important;
    width: 440px;
    margin-right: 60px;

  }

  .rr-play-panel {
    width: 100%;
    min-width: 0;
    height: 220px;
  }

  .rr-right-panel-container {
    width: 100%;
    margin-top: auto;
  }
}

@media (min-width: 1440px) {
  .rr-play-layout {
    max-width: 1320px;
    gap: 40px;
  }

  .rr-wheel-wrap {
    width: min(58vw, 760px);
  }

  .rr-right-panel {
    width: 392px;
    flex-basis: 392px;
    gap: 48px;
  }

  .rr-play-headline {
    max-width: 360px;
    font-size: 72px;
  }

  .rr-right-panel-container {
    width: 392px;
  }
}

@media (max-width: 767px) {
  .rr-screen-wheel {
    min-height: 100svh;
    min-height: 100dvh;
    justify-content: center;
    padding:
      calc(78px + var(--rr-safe-area-top))
      16px
      calc(24px + var(--rr-safe-area-bottom));
    overflow-y: auto;
  }

  .rr-play-layout {
    min-height: calc(100svh - var(--rr-safe-area-top) - var(--rr-safe-area-bottom) - 102px);
    min-height: calc(100dvh - var(--rr-safe-area-top) - var(--rr-safe-area-bottom) - 102px);
    justify-content: center;
    gap: clamp(12px, 2.2vh, 20px);
  }

  .rr-wheel-stage {
    align-items: center;
  }

  .rr-wheel-wrap {
    width: min(84vw, 82vmin, 320px);
  }

  .rr-right-panel {
    gap: clamp(10px, 1.8vh, 16px);
  }

  .rr-play-headline {
    width: min(88vw, 360px);
    margin-top: 0;
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.08;
  }

  .rr-right-panel-container {
    width: min(92vw, 360px);
    padding: 8px;
  }

  .rr-play-panel {
    padding: clamp(14px, 2.1vh, 18px) clamp(18px, 4.6vw, 24px);
  }

  .rr-play-controls {
    align-items: center;
  }

  .rr-attempts-count {
    width: clamp(64px, 9vh, 72px);
    min-width: clamp(64px, 9vh, 72px);
    height: clamp(64px, 9vh, 72px);
    padding: 0 6px;
    font-size: clamp(2.15rem, 4.3vh, 2.7rem);
  }

  .rr-attempts-count.is-three-digits {
    font-size: clamp(1.75rem, 3.5vh, 2.05rem);
  }

  .rr-attempts-count.is-four-plus-digits {
    font-size: clamp(1.45rem, 2.9vh, 1.7rem);
  }

  #rr-play-panel #rr-spin-btn {
    height: clamp(62px, 8.8vh, 68px);
    font-size: clamp(1.8rem, 4.7vw, 2rem);
  }

  .rr-toast {
    top: calc(10px + var(--rr-safe-area-top));
    width: min(calc(100vw - 16px - var(--rr-safe-area-left) - var(--rr-safe-area-right)), 420px);
  }

  .rr-toast__body {
    gap: 0.7rem;
    min-height: 70px;
    padding: 0.8rem 0.8rem 0.8rem 0.95rem;
    border-radius: 20px;
  }

  .rr-toast__message {
    font-size: 0.95rem;
    line-height: 1.28;
  }

  .rr-toast__close {
    width: 30px;
    height: 30px;
    font-size: 1.32rem;
  }

  .rr-result-modal {
    padding: 12px;
  }

  .rr-result-modal__dialog {
    width: min(100%, 350px);
    padding: 30px 24px 26px;
    border-radius: 36px;
  }

  .rr-result-modal__body {
    gap: 0.95rem;
  }

  .rr-result-modal__icon-shell {
    width: 98px;
    height: 98px;
    margin-top: 0.6rem;
  }

  .rr-result-modal__title {
    font-size: 1.9rem;
    max-width: 260px;
  }

  .rr-result-modal__message {
    max-width: 260px;
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .rr-result-modal__action {
    align-self: center;
    width: min(100%, 211px);
    margin-top: auto;
    font-size: 1.05rem;
  }

  .rr-win-modal {
    padding: 12px;
  }

  .rr-win-modal__dialog {
    width: min(100%, 350px);
    max-height: 600px;
    padding: 40px 20px;
    border-radius: 36px;
  }

  .rr-win-modal__telco-footer {
    margin-top: 2rem;
  }

  .rr-win-modal__grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .rr-win-prize-card {
    min-height: 185px;
  }

  .rr-win-prize-card__text {
    font-size: 0.95rem;
  }

  .rr-win-code-card {
    min-height: 120px;
  }

  .rr-win-code-card__label {
    font-size: 0.95rem;
  }

  .rr-win-code-card__value {
    font-size: 2.2rem;
  }

  .rr-win-form-title {
    font-size: 1.125rem;
  }

  .rr-win-form-subtitle {
    font-size: 1rem;
    margin: 24px 0 4px;
  }

  .rr-win-field__label,
  .rr-win-location-card__label {
    font-size: 0.9rem;
  }

  .rr-win-field__value {
    min-height: 44px;
    font-size: 0.92rem;
  }

  .rr-win-location-card__text,
  .rr-win-location-card__link {
    font-size: 0.8rem;
  }

  .rr-win-modal__action {
    width: 100%;
    height: 66px;
    margin-top: 0.4rem;
  }

  .rr-win-modal__telco-actions {
    justify-content: stretch;
    margin-top: 2.75rem;
  }
}

@media (max-width: 1023px) and (max-height: 320px) and (orientation: landscape) and (pointer: coarse) {
  .rr-orientation-lock.is-active {
    display: flex;
  }
}

@media (max-width: 1023px) and (orientation: landscape) and (pointer: coarse) {
  .rr-screen-wheel {
    padding: 18px 14px 14px;
  }

  .rr-label {
    font-size: 8px;
  }

  .rr-label-large,
  .rr-label-medium,
  .rr-label-small {
    font-size: 8px;
    line-height: 1.05;
  }

  .rr-label-image {
    width: 50px;
    height: 50px;
  }

  .rr-play-layout {
    max-width: 100%;
    margin: 0 auto;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
  }

  .rr-wheel-stage {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    align-items: center;
    padding-right: 0;
  }

  .rr-wheel-wrap {
    width: min(43vw, 300px);
  }

  .rr-pointer {
    right: -12px;
    width: 44px;
  }

  .rr-right-panel {
    width: 248px;
    flex: 0 0 248px;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0;
    padding: 8px 0 6px;
  }

  .rr-play-headline {
    width: 100%;
    margin-top: 0;
    font-size: clamp(28px, 5.2vw, 42px);
    text-align: right;
  }

  .rr-right-panel-container {
    width: 100%;
    padding: 8px;
    margin-top: auto;
  }

  .rr-play-panel {
    padding: 14px 16px;
    border-radius: 20px;
  }

  .rr-play-user {
    gap: 0.45rem;
  }

  .rr-play-user-label,
  .rr-play-user-value {
    font-size: 15px;
  }

  .rr-play-controls {
    gap: 0.7rem;
    margin-top: 0.75rem;
  }

  .rr-attempts-count {
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0 4px;
    border-radius: 10px;
    font-size: 2.2rem;
  }

  .rr-attempts-count.is-three-digits {
    font-size: 1.45rem;
  }

  .rr-attempts-count.is-four-plus-digits {
    font-size: 1.15rem;
  }

  .rr-attempts-label {
    margin-top: 0.3rem;
    font-size: 11px;
  }

  #rr-play-panel #rr-spin-btn {
    height: 54px;
    border-radius: 14px;
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .rr-win-modal__telco-primary {
    font-size: 2.25rem;
  }

  .rr-win-modal__telco-secondary {
    font-size: 1rem;
    margin-top: 0.625rem;
  }

  .rr-win-modal__title {
    font-size: 3rem;
    margin-bottom: 1.2rem;
  }

  .rr-win-modal__telco-line {
    font-size: 1.5rem;
  }

  .rr-win-modal__telco-highlight {
    font-size: 2.75rem;
  }

  .rr-win-modal__right {
    min-height: 438px;
  }
}

@media (min-width: 1200px) {
  .rr-play-layout {
    max-width: unset;
  }
  .rr-wheel-stage {
    justify-content: flex-end;
    padding-right: 70px;
  }
}

@media (min-width: 1440px) {
  .rr-wheel-stage {
    padding-right: 90px;
  }
}

@media (min-width: 2200px) {
  .rr-play-layout {
    max-width: 1580px;
    gap: 32px;
  }

  .rr-wheel-stage {
    justify-content: center;
    padding-right: 0;
  }

  .rr-wheel-wrap {
    width: min(62vw, 920px);
  }

  .rr-right-panel {
    padding-right: 0;
  }
}

@media (min-width: 1024px) and (max-height: 700px) {
  .rr-screen-flow {
    padding: 12px 20px;
  }

  .rr-flow-shell {
    min-height: calc(100vh - 24px);
  }

  .rr-flow-card {
    max-width: 780px;
    min-height: 0;
    padding: 2rem 3.25rem 1.75rem;
    border-radius: 34px;
  }

  .rr-flow-title {
    font-size: 42px;
  }

  .rr-flow-subtitle {
    margin-top: 10px;
    font-size: 0.95rem;
  }

  #rr-service-form,
  #rr-confirm-form {
    gap: 0.6rem;
  }

  #rr-service-form {
    margin-top: 0.95rem;
  }

  #rr-confirm-form {
    margin-top: 1rem;
  }

  .rr-flow-label {
    font-size: 0.95rem;
  }

  .rr-service-select__trigger,
  #rr-service-number,
  #rr-service-identification,
  .rr-code-input {
    height: 52px;
    font-size: 0.95rem;
  }

  .rr-service-consent {
    gap: 0.55rem;
    margin-top: 0.1rem;
    font-size: 0.81rem;
    line-height: 1.22;
  }

  .rr-service-consent__box {
    width: 24px;
    height: 24px;
  }

  .rr-service-consent__check {
    width: 10px;
    height: 6px;
  }

  #rr-service-submit,
  #rr-confirm-submit {
    min-width: 180px;
    height: 60px;
    font-size: 1.35rem;
  }

  .rr-screen-wheel {
    padding: 28px 24px 18px;
    overflow-y: hidden;
  }

  .rr-play-layout {
    max-width: 1120px;
    align-items: center;
    gap: 20px;
  }

  .rr-wheel-stage {
    align-items: center;
    padding-right: 24px;
  }

  .rr-wheel-wrap {
    width: min(40vw, 500px);
  }

  .rr-pointer {
    width: 54px;
    right: -14px;
  }

  .rr-right-panel {
    width: 320px;
    flex-basis: 320px;
    align-self: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 12px 0 0;
  }

  .rr-play-headline {
    width: 320px;
    margin-right: 0;
    font-size: clamp(38px, 4.2vw, 56px);
  }

  .rr-right-panel-container {
    margin-top: 0;
    padding: 8px;
  }

  .rr-play-panel {
    height: auto;
    padding: 16px 18px;
  }

  .rr-play-user-label,
  .rr-play-user-value {
    font-size: 18px;
  }

  .rr-play-controls {
    gap: 0.75rem;
    margin-top: 0.8rem;
  }

  .rr-attempts-count {
    width: 58px;
    min-width: 58px;
    height: 58px;
    padding: 0 5px;
    font-size: 2.05rem;
  }

  .rr-attempts-count.is-three-digits {
    font-size: 1.65rem;
  }

  .rr-attempts-count.is-four-plus-digits {
    font-size: 1.35rem;
  }

  .rr-attempts-label {
    margin-top: 0.3rem;
    font-size: 11px;
  }

  #rr-play-panel #rr-spin-btn {
    height: 56px;
    border-radius: 16px;
    font-size: 30px;
  }

  .rr-status {
    font-size: 0.82rem;
  }
}
.rr-recaptcha-shell {
	margin: 14px 0 6px;
	display: flex;
	justify-content: center;
	min-height: 78px;
}

.rr-recaptcha-shell--confirm {
	margin-top: 18px;
}

.rr-recaptcha-shell.is-hidden {
	display: none;
}

.rr-recaptcha-shell .g-recaptcha {
	transform-origin: center top;
}

body .grecaptcha-badge {
	transform: scale(0.8);	
  right: -174px !important;
}

body .grecaptcha-badge:hover {
  right: -25px !important;
}

body.rr-recaptcha-badge-hidden .grecaptcha-badge {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

@media (max-width: 420px) {
	.rr-recaptcha-shell .g-recaptcha {
		transform: scale(0.9);
	}

	body .grecaptcha-badge {
		transform: scale(0.7);
		right: -170px !important;
	}
}
