#app {
  width: 400px;
  height: 400px;
  margin: 0 auto;
  position: relative;
}

.marker {
  position: absolute;
  width: 60px;
  left: 172px;
  top: -20px;
  z-index: 2;
}

.wheel {
  width: 100%;
  height: 100%;
}

.button {
  display: block;
  width: 250px;
  margin: 40px auto;
  cursor: pointer;
}

.button:hover {
  opacity: 0.8;
}

.blur {
  animation: blur 10s;
}

@keyframes blur {
  0% {
    filter: blur(1.5px);
  }
  80% {
    filter: blur(1.5px);
  }
  100% {
    filter: blur(0px);
  }
}

.blinking{
    animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText{
    0%{   color: #FFF;        }
    49%{  color: #FFF;        }
    60%{  color: transparent; }
    99%{  color: transparent; }
    100%{ color: #FFF;        }
}


.btn-back {
  font-size: 22px;
  width: 100%;
  background: linear-gradient(to bottom, #02abff 16%, #02abff 44%, #02abff 99%);
  color: rgb(0, 0, 0);
  padding: 5px 15px;
  border: 0px;
  box-shadow: 2px 2px 2px grey;
  border-radius: 30px;
  font-weight: bolder;
}

button.submit {
  font-size: 22px;
  width: 100%;
  background: linear-gradient(to bottom, #ecad00 16%, #ffd563 44%, #ecad00 99%);
  color: rgb(0, 0, 0);
  padding: 5px 15px;
  border: 0px;
  box-shadow: 2px 2px 2px grey;
  border-radius: 30px;
}

input.submit {
  font-size: 22px;
  width: 100%;
  background: linear-gradient(to bottom, #ecad00 16%, #ffd563 44%, #ecad00 99%);
  color: rgb(0, 0, 0);
  padding: 5px 15px;
  border: 0px;
  box-shadow: 2px 2px 2px grey;
  border-radius: 30px;
  font-weight: bolder;
}

.popup-container {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  background: #080808b0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.popup-body {
  width: 347px;
  height: 600px;
  margin: 2% auto;
  background: #313131;
  border-radius: 0px;
  color: white;
}

@media (max-width: 992px) {
  .popup-body {
      margin: 10% auto;
  }
}

@media (max-width: 768px) {
  .logo-pc {
      display: none !important;
  }

  .logo-mobile {
      display: block !important;
      width: 80%;
      margin-top: 10px;
  }
}

@media (min-width: 769px) {
  .logo-pc {
      display: block !important;
  }

  .max-c {
      margin: 0px !important;
      padding: 0px !important;
  }

  .logo-mobile {
      display: none !important;
  }
}

.popup-header {
  height: 48px;
  width: 100%;
  background: red;
  float: left;
}

.popup-close {
  cursor: pointer;
  width: 36px;
  height: 36px;
  background: white;
  color: black;
  float: right;
  padding: 5px;
  border-radius: 100px;
  position: absolute;
  margin-top: -10px;
  margin-left: -9px;
}

.popup-container-ads {
  background-repeat: no-repeat;
  margin: 10% auto;
  border-radius: 18px;
  background-size: 100%;
}

#headerTitle {
  text-shadow: -7px 4px 12px #FFD700;
  color: #000;
}

#canvasContainer {
  position: relative;
  width: 500px;
  padding: 100px 0;
  z-index: 2;
}
#canvas {
  z-index: 1;
  margin-left: 7.75rem;
}

#wheelBorder{
  position: absolute;
  width: 650px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 3;
}

@media only screen and (max-width: 990px) {
  #canvasContainer{
    width: 300px;
    padding: 16px 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
  #canvasContainer{
      width: 387px;
      padding: 16px 0;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
  }
  #canvas {
    z-index: 1;
    margin-left: 2.75rem;
  }
  #wheelBorder{
    width: 100%;
    transform: translateY(-51%) scale(1.1);
  }
}