.wheeler-wrapper {
  position: relative;
  transform: scale(1.5, 1.5);
  margin-top: 100px;
}

.wheeler-wrapper::before {
  position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    background-color: #0057fe;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(9px);
    opacity: 0.7;
    margin-top: 3px;
}

.wheeler-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -13px;
  z-index: 1;
  cursor: pointer;
}

.wheeler-frame {
  position: absolute;
  top: -19px;
  left: -10px;
  width: 480px;
  max-width: 480px;
  z-index: 1;
}

.contenedor-ruleta {
  transform: rotate(180deg);
  position: relative;
}

.ruleta {
  background-color: white;
  border-radius: 360px;
  position: relative;
  overflow: hidden;

  -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1.04);
  animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1.04);
  -webkit-animation-duration: 5.8s;
  animation-duration: 5.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* .ruleta::before {
  content: "";
  width: 100px;
  height: 100px;
  background-color: #fff;
  position: absolute;
  z-index: 9999;
  border-radius: 360px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
} */

.opcion {
  border: 0 solid transparent;
  position: absolute;
  transform-origin: top center;
  top: 50%;
  border-bottom-color: #020D13 !important;
}

.opcion-content {
  z-index: 99999;
  position: absolute;
  display: block;
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  font-family: sans-serif;
  width: 40px;
  line-height: 40px;
  left: -20px;
  margin-top: 125px;
  transform: rotate(180deg);
}


/* win modal css start */
.win-modal {
  /* display: none; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: rgba(0,0,0,0.85);
  z-index: 9999999999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.win-modal.active {
  opacity: 1;
  visibility: visible;
}

.win-modal-inner {
  width: 750px;
  position: relative;
}

.modal-inner-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 110px;
}

.modal-inner-content .cmn-btn {
  border-radius: 16px;
}
/* win modal css end */

@media (max-width: 991px) {
  .wheeler-wrapper {
    transform: scale(1, 1);
  }

  .banner-section .overlay .banner-content {
    padding-top: 100px;
  }

  .header-section .title {
    width: 100%;
    order: 3;
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
  }

  .win-modal-inner {
    width: 100%;
    padding-inline: 20px;
  }
}

@media (max-width: 767px) {
  .modal-inner-content {
    bottom: 30px;
  }
}


@media (max-width: 575px) {
  .banner-section.index .overlay .banner-content {
    padding-top: 110px;
    padding-bottom: 300px;
  }
  .wheeler-wrapper {
    transform: scale(0.7, 0.7) translateX(65px);
    margin-left: -97px;
  }

  .banner-section {
    overflow: hidden;
  }

  .navbar-brand img {
    max-height: 32px;
  }

  .btn-cmn {
    padding: 12px 20px;
  }

  .banner-section.index .overlay .banner-content {
    padding-top: 35px;
    padding-bottom: 200px;
  }

  .win-modal-inner .modal-img {
    height: 430px;
  }

  .modal-inner-content {
    padding-inline: 12px;
  }
}