#spin-container {
  max-width:500px;
  padding:0 auto;
}
#spin-parent{
        padding: 10px;
    width: 100%;
    display: grid;
    background-attachment: scroll;
    background-size:cover;
    place-items: center;
}
.spin-to-win {
  max-width:500px;
}
.spin-to-win img {
  width:100%;
  height:auto;
}

#spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align:middle;
}

#spin-btn {
  cursor:pointer;
  background:white;
  background-size:100% 100%;
  box-shadow:0 0 15px rgba(0,0,0,.25);
  border:5px solid rgb(236, 180, 0);
  text-align:center;
}
#spin-btn p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}


#spin-btn, #spin-arrow {
      max-width: 230px;
    width: 46%;
    max-height: 230px;
    height: 38%;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
}

#spin-arrow {
  transition-timing-function: ease-in-out;
  transition:3s;
}
#spin-arrow:after {
  content:'';
  position:absolute;
  left: 15px;
    top: 15px;
  width:calc(100vw * .14167);
  max-width:85px;
  height:calc(100vw * .14167);
  max-height:85px;
  background-color:white; 
  box-shadow:-2px -2px 10px rgba(0,0,0,.25);
}
/* btn styles */

/* OFFER STYLES */
.spin-offer {
  max-width: 600px;
  padding:20px;
/*   border:10px solid lightgray; */
  border-radius:15px;
  text-align:center;
  font-size:24px;
  font-family:sans-serif;
  position:relative;
  display:none;
  vertical-align:middle;
  animation:spin 2s linear forwards;
  color:white;
  box-shadow:10px 10px 10px rgba(0,0,0,.25);
  margin:30px 0;
}
@keyframes spin {
  0% { opacity:0; }
  100% { opacity:1; }
}

.spin-offer .item {
  padding:10px;
}

.spin-title {
  
}
.spin-price {
  font-size:60px;
  line-height:60px;
  padding-bottom:0px !important;
}
.spin-info {
  padding-top:0px !important;
}
.spin-disc {
  font-size:12px;
}

#box_2322{
        height: 600px;
    max-width: 800px;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: center;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border: 6px dashed #fcca19;
    align-items: center;
}
#btn_submit{
        height: 37px;
    padding: 0 20px;
    font-weight: bold;
    background: rgb(236, 180, 0);
}
#close-spinner{
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0 10px 0 10px;
    border-radius: 20px;
    color: #918b8b;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}