.pop-up {
  position: fixed;
  justify-content: center;
  align-content: center;
  background-color: var(--primary-color-dark);
  width: 100%;
  height: 100%;
  z-index: 999;
  overflow-y: auto;
  top: 0;
}
.pop-up .rounded-2 {
  background-color: #F1F2F9;
  border: solid 12px #D03438;
  border-radius: 30px;
}
.pop-up .rounded-2 h2 {
  font-weight: 900;
  font-size: 50px;
  line-height: 48px;
  text-align: center;
  color: #D03438;
}
@media (max-width: 991px) {
  .pop-up .rounded-2 h2 {
    line-height: 1.2rem;
  }
}
.pop-up .rounded-2 .subtitle-pop-up {
  font-weight: 700;
  font-size: 30px;
  line-height: 29px;
  text-align: center;
  color: #26377D;
}
@media (max-width: 991px) {
  .pop-up .rounded-2 .subtitle-pop-up {
    line-height: 1.2rem;
  }
}
.pop-up .rounded-2 h4 {
  font-weight: 900;
  font-size: 35px;
  line-height: 39px;
  color: #D03438;
  text-align: center;
}
@media (max-width: 991px) {
  .pop-up .rounded-2 h4 {
    line-height: 1.2rem;
  }
}
.pop-up .rounded-2 .roulette-content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #231F20;
  text-align: center;
}
@media (max-width: 991px) {
  .pop-up .rounded-2 .roulette-content p {
    line-height: 1.2rem;
  }
  .pop-up .rounded-2 .roulette-content p.very-small {
    text-align: center;
  }
}
.pop-up .very-small {
  font-size: 0.8em;
}
@media (max-width: 499px) {
  .pop-up p {
    font-size: 0.85em !important;
  }
  .pop-up h2,
  .pop-up h3,
  .pop-up h4 {
    font-size: 1em !important;
  }
}

h1,
h2,
h3,
h4 {
  color: var(--primary-color);
  font-weight: 900;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

h2 {
  font-size: 40px;
}
@media (max-width: 991px) {
  h2 {
    font-size: 20px;
  }
}

p {
  font-size: 20px;
}
@media (max-width: 991px) {
  p {
    font-size: 16px;
  }
}

@media (max-width: 499px) {
  .fs-5 {
    font-size: 1em !important;
  }
}

@media (max-width: 499px) {
  .roulette-content .button {
    padding: 0.5em 0.25em;
  }
  .pop-up .very-small {
    font-size: 0.6em !important;
  }
}
.roulette-spinner {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .roulette-spinner {
    position: absolute;
    bottom: -250px;
    left: calc(50% - 250px);
  }
}
.roulette-spinner .arrow {
  position: absolute;
  top: calc(50% - 20px);
  right: -33px;
  max-width: 80px;
  z-index: 9;
}
@media (max-width: 767px) {
  .roulette-spinner .arrow {
    position: absolute;
    top: -19px;
    right: 0;
    left: 0;
    margin: 0 auto;
    rotate: -66deg;
  }
}
.roulette-spinner .circle {
  max-width: 500px;
  width: 400px;
}
@media (max-width: 899px) {
  .roulette-spinner .circle {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .roulette-spinner .circle {
    max-width: 460px;
    width: 460px;
    margin: 0 18px;
  }
}

.flipInX {
  animation-duration: 0.75s;
  animation-duration: 0.75s;
  animation-name: flipInX;
  animation-fill-mode: both;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
    opacity: 1;
  }
}
@keyframes glowUp {
  0% {
    box-shadow: 0 0 4px gold;
  }
  50% {
    box-shadow: 0 0 60px gold;
  }
  100% {
    box-shadow: 0 0 4px gold;
  }
}
.fade-out {
  animation: fadeOut 0.4s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@media (max-width: 767px) {
  .logo {
    max-width: 120px !important;
  }
}

@media (max-width: 767px) {
  .roulette-content {
    padding-bottom: 220px;
  }
}
.roulette-content.after {
  display: none;
  opacity: 0;
  z-index: -1;
}
.roulette-content.after.flipInX {
  display: block;
  z-index: 9;
}

.spinning {
  animation: rotateroulette forwards 6s;
  transition-timing-function: cubic-bezier(0, 0.55, 0.47, 0.99);
}
@media (max-width: 767px) {
  .spinning {
    animation: rotateroulette-mob forwards 6s;
    transition-timing-function: cubic-bezier(0, 0.55, 0.47, 0.99);
  }
}

@keyframes rotateroulette {
  0% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(4158deg);
  }
  90% {
    transform: rotate(4150deg);
  }
  100% {
    transform: rotate(4152deg);
  }
}
@keyframes rotateroulette-mob {
  0% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(5150deg);
  }
  90% {
    transform: rotate(5130deg);
  }
  100% {
    transform: rotate(5132deg);
  }
}
.spinning-bndl1 {
  animation: rotateroulette-bndl1 forwards 6s;
  transition-timing-function: cubic-bezier(0, 0.55, 0.47, 0.99);
}
@media (max-width: 767px) {
  .spinning-bndl1 {
    animation: rotateroulette-bndl1-mob forwards 6s;
    transition-timing-function: cubic-bezier(0, 0.55, 0.47, 0.99);
  }
}

@keyframes rotateroulette-bndl1 {
  0% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(7168deg);
  }
  90% {
    transform: rotate(7160deg);
  }
  100% {
    transform: rotate(7162deg);
  }
}
@keyframes rotateroulette-bndl1-mob {
  0% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(6900deg);
  }
  90% {
    transform: rotate(6892deg);
  }
  100% {
    transform: rotate(6894deg);
  }
}
.spinning-bndl2 {
  animation: rotateroulette-bndl2 forwards 6s;
  transition-timing-function: cubic-bezier(0, 0.55, 0.47, 0.99);
}
@media (max-width: 767px) {
  .spinning-bndl2 {
    animation: rotateroulette-bndl2-mob forwards 6s;
    transition-timing-function: cubic-bezier(0, 0.55, 0.47, 0.99);
  }
}

@keyframes rotateroulette-bndl2 {
  0% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(4080deg);
  }
  90% {
    transform: rotate(4070deg);
  }
  100% {
    transform: rotate(4072deg);
  }
}
@keyframes rotateroulette-bndl2-mob {
  0% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(3080deg);
  }
  90% {
    transform: rotate(3070deg);
  }
  100% {
    transform: rotate(3072deg);
  }
}
@media (max-width: 426px) {
  body.spinner {
    font-size: 16px;
  }
}
body.spinner .no-thanks {
  max-width: 600px;
}
body.spinner .very-small {
  font-size: 0.8em;
}
body.spinner .offer-box {
  background: linear-gradient(180deg, #F3F3F3 0%, white 100%);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  border: 13px #F9F9F9 solid;
  position: relative;
}
body.spinner .offer-box::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 229px;
  width: 115%;
  height: 49px;
  background: #D03438;
  border-radius: 24.5px;
  z-index: -1;
}
@media (max-width: 1300px) {
  body.spinner .offer-box::before {
    display: none;
  }
}
body.spinner .offer-box::after {
  content: "";
  position: absolute;
  left: -14%;
  top: 95px;
  width: 125%;
  height: 49px;
  background: #26377D;
  border-radius: 24.5px;
  z-index: -1;
}
@media (max-width: 1300px) {
  body.spinner .offer-box::after {
    display: none;
  }
}
body.spinner .offer-box .p-3 {
  border-radius: 30px 30px 0 0;
}
body.spinner .offer-box .py-3.p-md-3 {
  border-radius: 0 0 30px 30px;
}
body.spinner .offer-box h2 {
  color: white;
  margin: 0 auto;
  text-align: center;
}
body.spinner .offer-box .row {
  margin-left: auto;
  margin-right: auto;
}
body.spinner .offer-box .price {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00af66;
  font-size: 4em;
  font-weight: 900;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
body.spinner .offer-box .price > div {
  font-size: 0.35em;
  font-weight: normal;
  color: var(--text-color);
}
body.spinner .offer-box .price s {
  display: block;
  text-decoration-color: red;
  color: grey;
  font-weight: bold;
}
@media (max-width: 767px) {
  body.spinner h2,
  body.spinner h3,
  body.spinner h4 {
    font-size: 1.25em !important;
  }
}