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

p {
  margin-bottom: 0;
}

/* Global */

/* .gr-preview {
  all: initial;
}

.gr-preview * {
  padding: 0;
  margin: 0;
  all: revert;
  color: unset;
}

.gr-preview a {
  color: #06c;
  text-decoration: underline;
}

.gr-preview a:hover {
  text-decoration: none;
} */

/* Utilities */

/* Text Aligns */

.gr-text-right {
  text-align: right;
}

/* Background Origin */

.gr-bg-origin-border-box {
  background-origin: border-box;
}

/* Height Width */

.gr-w-500px {
  width: 500px;
}

.gr-w-30 {
  width: 30%;
}

.gr-w-70 {
  width: 70%;
}

.gr-w-100 {
  width: 100%;
}

.gr-min-100 {
  min-width: 100%;
}

.gr-max-w-100 {
  max-width: 100%;
}

.gr-h-100 {
  height: 100%;
}

.gr-h-20px {
  height: 20px;
}

.gr-h-30px {
  height: 30px;
}

.gr-w-20px {
  width: 20px;
}

.gr-min-h-100 {
  min-height: 100%;
}

.gr-min-h-25px {
  min-height: 25px;
}

/* Displays */

.gr-d-none {
  display: none;
}

.gr-d-block {
  display: block;
}

.gr-d-inline-block {
  display: inline-block;
}

.gr-d-flex {
  display: flex;
}

/* Flex properties */

.gr-flex-direction-column {
  flex-direction: column;
}

.gr-align-items-center {
  align-items: center;
}

.gr-justify-center {
  justify-content: center;
}

.gr-justify-between {
  justify-content: space-between;
}

.gr-flex-wrap {
  flex-wrap: wrap;
}

.gr-gap-5px {
  gap: 5px;
}

.gr-gap-10px {
  gap: 10px;
}

/* Background */

.gr-bg-size-full {
  background-size: 100% 100%;
}

.gr-bg-position-center {
  background-position: center;
}

.gr-bg-position-center {
  background-position: center;
}

/* Overflow */

.gr-overflow-y-auto {
  overflow-y: auto;

}

/* Word Break */

.gr-break-word {
  word-break: break-word;
}

/* Button */

.gr-btn {
  background-color: transparent;
  border: 0;
  outline: 0;
}

.gr-btn:hover,
.gr-btn:focus {
  border: 0;
  outline: 0;
}

.gr-cta_button {
  min-width: fit-content;
  min-height: fit-content;
}

/* Header */

/* Padding */

.gr-p-15px {
  padding: 15px;
}

/* Object Fit */

.gr-object-cover {
  object-fit: cover;
}

.gr-object-contain {
  object-fit: contain;
}

/* Margin */

.gr-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.gr-mb-5px {
  margin-bottom: 5px;
}

/* Padding */

.gr-text-danger {
  color: #f1416c;
}

.gr-pl-3px {
  padding-left: 3px;
}

.gr-pl-4px {
  padding-left: 4px;
}

.gr-upload-btn {
  cursor: pointer;
  padding: 6px 20px;
  font-weight: 500;
  font-size: small;
  border-radius: 6px;
}

.gr-upload-btn {
  background-color: transparent;
  border: 0;
  outline: 0;
}

.gr-upload-btn:hover,
.gr-upload-btn:focus {
  border: 0;
  outline: 0;
}

.gr-text-success {
  color: #4BB543;
}

.gr-fw-800 {
  font-weight: 800;
}

/* Text Decoration */

.gr-text-underline {
  text-decoration: underline;
}

/* cursor */

.gr-cursor-pointer {
  cursor: pointer;
}

/* Social */

.gr-social-icons .gr-social-ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}

.gr-social-icons .gr-social-ul .gr-social-icon-li {
  min-width: -webkit-max-content !important;
  min-width: -moz-max-content !important;
  min-width: max-content !important;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gr-social-icons .gr-social-ul .gr-social-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Separator */

.gr-separator {
  height: 0;
  opacity: 1;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

/* Form */

.gr-label {
  display: inline-block;
}

.gr-input {
  padding: 5px 10px;
  border: 2px solid #ccc;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.gr-input:focus {
  border-color: currentColor;
  outline: none;
}

.gr-select {
  padding: 5px 12px;
  border: 2px solid #ccc;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.gr-select:focus {
  border-color: currentColor;
  outline: none;
}

.gr-submit {
  padding: 5px 15px;
  background: #ccc;
  border: 0 none;
  cursor: pointer;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.gr-radio {
  display: none;
}

.gr-radio-label {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
}

.gr-radio-label::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 2px solid currentColor;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: border-color 400ms ease;
}

.gr-radio-label::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  border: 2px solid currentColor;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0);
  transition: transform 400ms ease;
}

.gr-radio:checked+label::before {
  border-color: currentColor;
}

.gr-radio:checked+label::after {
  transform: translateY(-50%) scale(0.55);
}

.gr-check-label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.gr-check-label::before {
  content: "";
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid currentColor;
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  width: 18px;
  height: 18px;
}

.gr-check-input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.gr-check-input:checked+.gr-check-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 2.5px;
  left: 6.5px;
  width: 5px;
  height: 10px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.gr-form-error {
  font-size: 12.025px;
  color: #f1416c;
  line-height: 1.3;
}

/* quill editor text align css */

.ql-align-right {
  text-align: right;
}

.ql-align-left {
  text-align: left;
}

.ql-align-center {
  text-align: center;
}

.ql-align-justify {
  text-align: justify;
}

.gr-powered_by {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.gr-user-select-none {
  user-select: none;
}

.gr-peel-image {
  background-color: #81afcb;
}

#tsparticles {
  /* z-index: 999; */
  opacity: 0.5;
}

/* #tsparticles canvas {
  z-index: 999;
} */

.gr-bg-v-a-blocks {
  background-color: #aca2a273;
}

/* PEEL AND REAVEAL  */

.back-page,
.front-page {
  display: flex;
  flex-direction: column
}

.back-page.gr-d-none {
  display: none;
}

.img-fluid {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

#forground-front-image.img-fluid,
#forground-back-image.img-fluid {
  flex: 1 1 auto;
}

.top-flip-container {
  width: 100%;
  height: 100%;
}

#peel-container .peel-container-inner {
  position: relative;
  max-width: 698px;
  min-width: 100%;
  margin: 0 auto;
  height: 100%;
}

#peel-container .peel-cover {
  position: absolute;
  z-index: 4;
  /* padding: 0 3%; */
  width: 100%;
  height: 100%;
}

#peel-container .peel-view {
  position: absolute;
  width: 100%;
  height: 100%;
}

#peel-container .peel-cover .corner-btn-ltr {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  top: 20px;
  left: 20px;
  /* animation: btn-anim 1.5s ease-in-out infinite both; */
}

#peel-container .peel-cover .corner-btn-rtl {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  top: 20px;
  right: 20px;
}

#peel-container .peel-cover .corner-btn-ltr.anim-ltr-zoom {
  animation: btn-anim-ltr-zoom 1.5s ease-in-out infinite both;
}

#peel-container .peel-cover .corner-btn-ltr.anim-ltr-bounce {
  transform: translate(0px, 0px);
  animation: btn-anim-ltr-bounce 1.5s ease-in-out infinite both;
}

#peel-container .peel-cover .corner-btn-rtl.anim-rtl-zoom {
  animation: btn-anim-rtl-zoom 1.5s ease-in-out infinite both;
}

#peel-container .peel-cover .corner-btn-rtl.anim-rtl-bounce {
  transform: translate(0px, 0px);
  animation: btn-anim-rtl-bounce 1.5s ease-in-out infinite both;
}

#peel-container .peel-cover .next-step-container p {
  text-align: center;
  margin: 5%
}

#peel-container .peel-cover .next-step-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.next-step-bg-image {
  height: 100%;
  width: 100%;
}

#peel-container .next-step-container .next-step-content {
  position: absolute;
  z-index: 11;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%
}

#peel-container .reward-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@keyframes btn-anim-ltr-zoom {
  from {
    transform: scale(1);
    transform-origin: bottom right;
    animation-timing-function: ease-out;
  }

  10% {
    transform: scale(0.91);
    transform-origin: bottom right;
    animation-timing-function: ease-in;
  }

  17% {
    transform: scale(0.98);
    transform-origin: bottom right;
    animation-timing-function: ease-out;
  }

  33% {
    transform: scale(0.87);
    transform-origin: bottom right;
    animation-timing-function: ease-in;
  }

  45% {
    transform: scale(1);
    transform-origin: bottom right;
    animation-timing-function: ease-out;
  }
}

@keyframes btn-anim-ltr-bounce {
  from {
    transform: translate(0px, 0px);
    animation-timing-function: ease-out;
  }

  10% {
    transform: translate(10px, 10px);
    animation-timing-function: ease-in;
  }

  17% {
    transform: translate(0px, 0px);
    animation-timing-function: ease-out;
  }

  33% {
    transform: translate(10px, 10px);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translate(-10px, -10px);
    animation-timing-function: ease-out;
  }
}

@keyframes btn-anim-rtl-zoom {
  from {
    transform: scale(1);
    transform-origin: bottom right;
    animation-timing-function: ease-out;
  }

  10% {
    transform: scale(0.91);
    transform-origin: bottom right;
    animation-timing-function: ease-in;
  }

  17% {
    transform: scale(0.98);
    transform-origin: bottom right;
    animation-timing-function: ease-out;
  }

  33% {
    transform: scale(0.87);
    transform-origin: bottom right;
    animation-timing-function: ease-in;
  }

  45% {
    transform: scale(1);
    transform-origin: bottom right;
    animation-timing-function: ease-out;
  }
}

@keyframes btn-anim-rtl-bounce {
  from {
    transform: translate(0px, 0px);
    animation-timing-function: ease-out;
  }

  10% {
    transform: translate(-10px, 10px);
    animation-timing-function: ease-in;
  }

  17% {
    transform: translate(0px, 0px);
    animation-timing-function: ease-out;
  }

  33% {
    transform: translate(-10px, 10px);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translate(10px, -10px);
    animation-timing-function: ease-out;
  }
}

/* Form File Upload Loading */
@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0.25;
    transform: scale(0.75);
  }
}

/* SPIN THE WHEEL */
.sWheel-title {
  padding-left: 15%;
}

/* SLOT MACHINE */
#reels {
  display: flex;
  justify-content: space-evenly;
  padding: 1px 12px 5px;
  gap: 6px;
}

.reel {
  /* overflow: visible; */
  overflow: hidden;
  height: 65px;
  width: 65px;
  border-radius: 6px;
}

.slot-container {
  /* padding: 5px; */
  border-radius: 6px;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reel>.icons.down {
  display: flex;
  flex-direction: column-reverse;
}

.reel>.icons>img {
  /* height: auto;
  width: 100%; */
  height: 65px;
  width: 65px;
  object-fit: cover;
  /* enable gpu accelaration, fixes iOS flicker */
  transform: translate3d(0, 0, 0);
}

.reel img {
  width: 100%;
}

#controls {
  background-color: rgba(255, 255, 255, 0.9);
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 30px;
}

#controls label {
  display: flex;
  align-items: center;
  margin: 0;
}

#controls label input {
  margin-right: 5px;
}

#jackpot {
  color: #d5ad6d;
  font-size: 40px;
  text-align: center;
}

#slot.inverted .reel>.icons>img {
  width: 100%;
}

.translateY {
  transform: translateY(-138px);
}

.sWheel-center {
  cursor: pointer;
}

.cursor-pointer {
  cursor: pointer;
}

.pulse-container {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pulse-bubble {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: currentColor;
}

.pulse-bubble-1 {
  animation: pulse 0.4s ease 0s infinite alternate;
}

.pulse-bubble-2 {
  animation: pulse 0.4s ease 0.2s infinite alternate;
}

.pulse-bubble-3 {
  animation: pulse 0.4s ease 0.4s infinite alternate;
}