body {
  margin: 0;
  padding: 0;
  font-family: Roboto-Medium, "Arial", sans-serif;
  scroll-behavior: smooth;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}
body button {
  outline: none;
  border: none;
  cursor: pointer;
  background: transparent;
}
body a {
  text-decoration: none;
}
body select {
  border: none;
  outline: none;
}
body input {
  border: none;
  outline: none;
  background: transparent;
}
body input[type=number]::-webkit-outer-spin-button,
body input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body input[type=number] {
  -moz-appearance: textfield;
}
body #toast-container {
  margin-top: 10px !important;
}

.v-wrapper {
  width: 100%;
  height: 100vh;
  background: url("/event/wheel2022/images/wbg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.v-wrapper .home-btn {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #fff;
  font-size: 2rem;
  z-index: 2;
}
.v-wrapper .home-btn:hover {
  text-decoration: none;
  color: white;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #d69d18;
}
.v-wrapper .times-wrapper {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  z-index: 2;
}
.v-wrapper .times-wrapper > span {
  font-size: 2rem;
  color: #fff;
}
.v-wrapper .symbol-wrapper {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.v-wrapper .symbol-wrapper.active {
  animation: symbol-animation ease-out 0.3s forwards;
}
.v-wrapper .symbol-wrapper.active > img:first-of-type {
  animation: 2s scale ease-out infinite;
}
.v-wrapper .symbol-wrapper.active > img:not(:first-of-type) {
  animation: 2s shaking ease-out infinite;
}
.v-wrapper .symbol-wrapper > img.full {
  width: 100%;
  height: 100%;
}
.v-wrapper .symbol-wrapper > img.first {
  left: 10%;
  transform: translate(-10%);
}
.v-wrapper .symbol-wrapper > img.second {
  left: 15%;
  bottom: 20%;
  transform: translate(-15%, -20%);
}
.v-wrapper .symbol-wrapper > img.third {
  top: 15%;
  right: 15%;
  transform: translate(15%, -15%);
}
.v-wrapper .symbol-wrapper > img.fourth {
  right: 5%;
  bottom: 10%;
  transform: translate(5%, -10%);
}
.v-wrapper .symbol-wrapper > img:not(:first-of-type) {
  position: absolute;
  width: auto;
  height: auto;
}
.v-wrapper .v-container {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.v-wrapper .v-container .roulette-wrapper {
  width: 42%;
  margin-top: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: url(../images/wheel_back.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 3.2% 0.7% 3.1%;
}
.v-wrapper .v-container .roulette-wrapper #roulette {
  width: 87%;
  transform-origin: 50% 48.5%;
  height: auto;
  z-index: 2;
}
.v-wrapper .v-container .roulette-wrapper #pointer {
  width: 21%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(22%, -50%);
  z-index: 3;
}
.v-wrapper .v-container .roulette-wrapper #roulette-centre {
  width: 18%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  margin-top: -3px;
  margin-left: -1px;
}
.v-wrapper .v-container .btn-wrapper {
  display: flex;
  transform: translate(0, -20%);
}
.v-wrapper .v-container .btn-wrapper > button {
  cursor: pointer;
  outline: none;
}
.v-wrapper .v-container .btn-wrapper > button:hover {
  filter: brightness(1.1);
}
.v-wrapper .v-container .btn-wrapper > button:disabled {
  filter: grayscale(1);
}
.v-wrapper .v-container .btn-wrapper > button > img {
  width: 85%;
  height: auto;
}
.v-wrapper #prizeModal .modal-content {
  border: none;
  position: relative;
  background: linear-gradient(#231f20, #00140f);
}
.v-wrapper #prizeModal .modal-content > i {
  color: #fff;
  font-size: 1.5em;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 2;
  transition: 0.5s ease-out;
}
.v-wrapper #prizeModal .modal-content > i:hover {
  transform: rotate(360deg);
}
.v-wrapper #prizeModal .modal-content > .modal-body {
  padding: 5rem;
}
.v-wrapper #prizeModal .modal-content > .modal-body > .prize-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.v-wrapper #prizeModal .modal-content > .modal-body > .prize-wrapper > img {
  height: auto;
  max-height: 150px;
  margin-bottom: 15px;
}
.v-wrapper #prizeModal .modal-content > .modal-body > .prize-wrapper > span {
  font-weight: bold;
  font-size: 1.2em;
  white-space: nowrap;
  color: #fff;
}
.v-wrapper #prizeModal .modal-content > .modal-body > .prize-wrapper > span > span {
  color: #efe53c;
  font-size: 1.3em;
  margin: 0 5px;
}

@media (max-width: 576px) {
  .v-wrapper {
    width: 100%;
    height: 100vh;
    background: url("/event/wheel2022/images/mbg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
  }
  .v-wrapper .home-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    font-size: 2rem;
    z-index: 2;
  }
  .v-wrapper .home-btn:hover {
    text-decoration: none;
    color: white;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #d69d18;
  }
  .v-wrapper .v-container {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .v-wrapper .v-container .roulette-wrapper {
    margin-top: 0%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url(../images/wheel_back.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 8.1% 4.7% 8.1%;
  }
  .v-wrapper .v-container .roulette-wrapper #roulette {
    width: 93%;
    height: auto;
    z-index: 2;
  }
  .v-wrapper .v-container .roulette-wrapper #pointer {
    width: 18%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(22%, -50%);
    z-index: 3;
  }
  .v-wrapper .v-container .roulette-wrapper #roulette-centre {
    width: 17%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    margin-top: -1px;
    margin-left: 0;
  }
  .v-wrapper .v-container .btn-wrapper {
    display: flex;
    margin-top: 17%;
  }
  .v-wrapper .v-container .btn-wrapper > button {
    cursor: pointer;
    outline: none;
  }
  .v-wrapper .v-container .btn-wrapper > button:hover {
    filter: brightness(1.1);
  }
  .v-wrapper .v-container .btn-wrapper > button:disabled {
    filter: grayscale(1);
  }
  .v-wrapper .v-container .btn-wrapper > button > img {
    width: 80%;
    height: auto;
  }
  .v-wrapper .times-wrapper {
    position: absolute;
    top: 12px;
    right: 15px;
    display: flex;
    align-items: center;
    z-index: 2;
  }
  .v-wrapper .times-wrapper > span {
    font-size: 2rem;
    color: #fff;
  }
  .v-wrapper .symbol-wrapper > img.mobile {
    height: 87vh;
  }
  .v-wrapper #prizeModal .modal-content {
    border: none;
    position: relative;
    background: linear-gradient(#231f20, #00140f);
  }
  .v-wrapper #prizeModal .modal-content > i {
    color: #fff;
    font-size: 1.5em;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    z-index: 2;
    transition: 0.5s ease-out;
  }
  .v-wrapper #prizeModal .modal-content > i:hover {
    transform: rotate(360deg);
  }
  .v-wrapper #prizeModal .modal-content > .modal-body {
    padding: 5rem;
  }
  .v-wrapper #prizeModal .modal-content > .modal-body > .prize-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .v-wrapper #prizeModal .modal-content > .modal-body > .prize-wrapper > img {
    height: auto;
    max-height: 150px;
    margin-bottom: 15px;
  }
  .v-wrapper #prizeModal .modal-content > .modal-body > .prize-wrapper > span {
    font-weight: bold;
    font-size: 1.2em;
    white-space: nowrap;
    color: #fff;
  }
  .v-wrapper #prizeModal .modal-content > .modal-body > .prize-wrapper > span > span {
    color: #efe53c;
    font-size: 1.3em;
    margin: 0 5px;
  }
}
@keyframes symbol-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.01);
    filter: brightness(1.5);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}
@keyframes shaking {
  0% {
    transform: rotate(0deg);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  10% {
    transform: rotate(-12deg);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  20% {
    transform: rotate(12deg);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  28% {
    transform: rotate(-10deg);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  36% {
    transform: rotate(10deg);
    transition-timing-function: cubic-bezier(0.755, 0.5, 0.855, 0.06);
  }
  42% {
    transform: rotate(-8deg);
    transition-timing-function: cubic-bezier(0.755, 0.5, 0.855, 0.06);
  }
  48% {
    transform: rotate(8deg);
    transition-timing-function: cubic-bezier(0.755, 0.5, 0.855, 0.06);
  }
  52% {
    transform: rotate(-4deg);
    transition-timing-function: cubic-bezier(0.755, 0.5, 0.855, 0.06);
  }
  56% {
    transform: rotate(4deg);
    transition-timing-function: cubic-bezier(0.755, 0.5, 0.855, 0.06);
  }
  60% {
    transform: rotate(0deg);
    transition-timing-function: cubic-bezier(0.755, 0.5, 0.855, 0.06);
  }
  100% {
    transform: rotate(0deg);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}/*# sourceMappingURL=index.css.map */