body * {
  font-family: "Gilroy", Arial, Helvetica, -apple-system, sans-serif;
  box-sizing: border-box;
}

.lacky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}

@media (max-width: 970px) {
  .lacky {
    display: none !important;
  }
}

.lacky-close {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
  cursor: pointer;
  background-color: white;
  border-radius: 50%;
}

.lacky-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.lacky-body {
  width: 700px;
  height: 340px;
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 24px;
  overflow: hidden;
}

.lacky-body::after {
  content: " ";
  width: 100px;
  height: 100px;
  transform: translate(50%, -50%);
  border-radius: 50%;
  background-color: #f0f0f0;
  position: absolute;
  top: 50%;
  right: 0px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.lacky-body__result-copy {
  border: 2px dashed #f0f0f0;
  padding: 10px 40px 10px 10px;
  font-size: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  cursor: pointer;
  background-image: url("/forms/images/copy.svg");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.lacky-body__content {
  width: 375px;
  text-align: center;
  height: 100%;
  display: grid;
  vertical-align: middle;
  align-items: center;
}

.lacky-body__content-desc {
  margin-top: 10px;
  margin-bottom: 0px;
}

.lacky-body__content-legal {
  font-size: 8px;
  line-height: 11px;
  text-align: left;
}

.lacky-body__content img {
  width: 227px;
}

.lacky-body__content h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 32px;
  margin-top: 10px;
  margin-bottom: 0px;
}

.lacky-body__content form {
  margin-top: 5px;
}

.lacky-body__content form label {
  position: relative;
}

.lacky-body__content form span {
  color: rgba(31, 40, 44, 0.7);
  opacity: 1;
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
  padding-top: 0px;
  width: 100%;
  position: absolute;
  left: 15px;
  margin-top: 7px;
  text-align: left;
}

.lacky-body__content form input {
  padding: 25px 13px 5px 13px;
  width: 100%;
  background-color: rgba(212, 212, 212, 0.3);
  border-radius: 4px;
  border: none;
  font-size: 14px;
  border: 2px solid white;
}

.lacky-body__content form button {
  width: 100%;
  background-color: rgb(95, 96, 97);
  border-radius: 4px;
  padding: 10px 5px 10px 5px;
  border: none;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.lacky .deal-wheel {
  margin-top: 10px;
  --size: clamp(250px, 535px, 700px);
  --lg-hs: 0 3%;
  --lg-stop: 50%;
  --lg: linear-gradient(hsl(var(--lg-hs) 0%) 0 var(--lg-stop),
      hsl(var(--lg-hs) 20%) var(--lg-stop) 100%);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  display: grid;
  grid-gap: calc(var(--size) / 20);
  align-items: center;
  grid-template-areas: "spinner" "trigger";
  font-size: calc(var(--size) / 21);
}

.lacky .deal-wheel>* {
  grid-area: spinner;
}

.lacky .deal-wheel .btn-spin {
  grid-area: trigger;
  justify-self: center;
}

.lacky .spinneer {
  padding: 0px;
  margin: 0px;
  position: relative;
  display: grid;
  align-items: center;
  grid-template-areas: "spinner";
  width: var(--size);
  height: var(--size);
  transform: rotate(calc(var(--rotate, 25) * 1deg));
  border-radius: 50%;
  border: 10px solid #f0f0f0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.lacky .spinneer * {
  grid-area: spinner;
}

.lacky .prize {
  display: flex;
  align-items: center;
  width: 50%;
  height: 50%;
  transform-origin: center right;
  transform: rotate(var(--rotate));
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.lacky .text {
  font-size: 15px;
  padding: 0px 60px 0px 15px;
  text-align: center;
  color: white;
}

.lacky .ticker {
  position: relative;
  left: calc(var(--size) / -15);
  width: calc(var(--size) / 10);
  height: calc(var(--size) / 20);
  z-index: 1;
  transform-origin: center left;
}

.lacky .ticker svg {
  width: 35px;
  height: 35px;
  position: relative;
  top: -5px;
  margin-left: 17px;
  transform: rotate(90deg);
}

.lacky .btn-spin {
  color: white;
  background: black;
  border: none;
  font-size: inherit;
  padding: 0.9rem 2rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.lacky .btn-spin:disabled {
  cursor: progress;
  opacity: 0.25;
}

.lacky .is-spinning .spinneer {
  transition: transform 8s cubic-bezier(0.1, -0.01, 0, 1);
}

.lacky .is-spinning .ticker {
  animation: tick 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes tick {
  40% {
    transform: rotate(-12deg);
  }
}

.lacky .prize.selected .text {
  color: white;
  animation: selected 800ms ease;
}

@keyframes selected {
  25% {
    transform: scale(1.25);
    text-shadow: 1vmin 1vmin 0 hsla(0, 0%, 0%, 0.1);
  }

  40% {
    transform: scale(0.92);
    text-shadow: 0 0 0 hsla(0, 0%, 0%, 0.2);
  }

  60% {
    transform: scale(1.02);
    text-shadow: 0.5vmin 0.5vmin 0 hsla(0, 0%, 0%, 0.1);
  }

  75% {
    transform: scale(0.98);
  }

  85% {
    transform: scale(1);
  }
}

.cform {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}

.cform-close {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.cform-polit {
  color: white;
  font-size: 10px;
}

.cform-polit a {
  color: white;
}

.cform-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.cform-body {
  width: 450px;
  max-width: 98%;
  background-color: #2f2f45;
  border-radius: 30px;
  position: absolute;
  background-size: auto 180px;
  background-position: center top;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  padding: 40px;
}

.cform-body h3 {
  font-size: 25px;
  text-align: center;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.cform-body label {
  color: rgba(255, 235, 58, 0.99);
  width: 100%;
  font-size: 12px;
  margin-bottom: 20px;
  display: block;
}

.cform-body label span {
  width: 100%;
  display: block;
}

.cform-body label input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-top: 5px;
}

.cform-body label input[type=text] {
  width: 100%;
  border: 2px solid white;
}

.cform-body label input[type=time] {
  width: 100px;
  border: 2px solid white;
}

.cform-body button {
  background-image: linear-gradient(86deg, #e5262c 5.12%, #b52820 95.42%);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 15px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.popup-circle {
  position: fixed;
  width: 64px;
  height: 64px;
  bottom: 40px;
  right: 40px;
  background-image: linear-gradient(86deg, #e5262c 5.12%, #b52820 95.42%);
  border-radius: 50%;
  display: flex;
}

.popup-circle svg {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*# sourceMappingURL=style.css.map */