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

.form-signin .col-sm-10 {
  padding: 0 !important;
  display: flex;
  justify-content: center;
}

.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;        }
}

.wheelText {
  font: 16px serif;
  font-family: "Arial Black", Gadget, sans-serif;
  font-weight:normal;
  text-align: center;
  text-shadow: 2px 2px #555555;
  -webkit-appearance: none;
  -webkit-box-shadow: 3px 3px 6px 6px #555555;
  fill: white;
}

#modal-header>button {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 10px;
  top: 0;
  right: 0;
  background-color: #28a745;
  color: #fff;
  border: 0;
}

.modal-content>img {
  max-height: 800px;
}

.form-content {
  position: relative;
  top: -10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#spinForm input {
  width: 100%;
  max-width: 330px;
  margin: 5px auto 10px auto;
  padding: 2px 24px;
  border-radius: 45px;
  border: none;
  outline: none;
  font-size: 28px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  
}

#spinForm button {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}
#spinForm button img.redeem-button {
  height: auto;
  transition: transform 0.3s;
}
#spinForm button img.redeem-button:hover {
  transform: scale(1.05);
}

.form-content .row.no-gutters {
  margin-left: 22px;
  margin-right: 12px;
}

.form-content .row .col-6 img {
  width: 100%;
  transition: transform 0.3s ease;
}
.form-content .row .col-6 img:hover {
  transform: scale(1.2);
}

.col-6 {
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.form-frame { 
  background: url('../img/border.webp') no-repeat center center;
  width: 100%;
  max-width: 490px;
  background-size: 100% 100%;
  background-position: center;
  padding: 130px 14px 30px;
  margin-top: -135px;
  opacity: 0.9;
  height: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
  .form-content {
    position: relative;
    top: -15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 1.5;

  }

  #spinForm {
    margin-bottom: 10px;
  }
  
  #spinForm input {
    width: 70%;
    max-width: none;
    padding: 2px 24px;
    font-size: 24px;
    border-radius: 40px;
    margin-bottom: 20px;
  }

  .overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.95);
    opacity: 0;
    pointer-events: none;
    z-index: 9999990;
    transition: opacity 2.5s ease;
  }
  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  .hint {
    color: white;
    font-size: 1.5rem;
  }
  .overlayModal {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .gif-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #modalGif {
    width: 50%;
    height: 50%;
  }