:root{
    --linear-shadow: linear-gradient(
        45deg,
        #ff0000,
        #ff7300,
        #fffb00,
        #48ff00,
        #00ffd5,
        #002bff,
        #7a00ff,
        #ff00c8,
        #ff0000
    );
}

html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    display:flex;
    background-size: cover;
    height: 80%;
    object-fit: cover;
    background-position:center;
}

.container {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.wheel {
  margin-left: 35px;
  max-height: 500px;
  /* width: 500px; */
  position: absolute;
  max-width: 100%;
}

.wheel2 {
  margin-left: 35px;
  max-height: 500px;
  /* width: 500px; */
  position: absolute;
  max-width: 100%;
}


.marker {
    position: absolute;
    transform: translateX(-50%) ;
    left: 50%;
    max-height: 500px;
    max-width: 100%;
}

.btn-wrapper {
    margin-left: 20px;
    margin-top: 20px;
}

.button {
  max-height: 90px;
  max-width: 100%;
  margin-left: 42%;
  margin-top: 36%;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  animation: scale 0.5s linear infinite alternate;
}


.button2 {
  max-height: 90px;
  max-width: 100%;
  margin-left: 42%;
  margin-top: 36%;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  animation: scale 0.5s linear infinite alternate;
}

.button:before {
  content: "";
  background: var(--linear-shadow);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}

#colorResult {
    display: none;
}

.glow {
    font-size: 80px;
    color: #fff;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}
  
@keyframes glow {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }
    to {
      text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
}


.footer_ul {
  display: flex;
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px !important;
}

.footer .footer-text {
  /* padding: 7px; */
  padding: 0px;
  font-size: 129%;
  /* padding-top: 13px; */
  padding-top: 0px;
}

.footer {
  position: absolute;
  width: 100%;
  max-width: 500px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 0 15px #222;
  box-shadow: 0 0 15px #222;
  text-align: center;
  color: #000;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  z-index: 99;
  background-image: linear-gradient(to bottom right,#efd465, #fff);
}

.footer_ul a {
  width: 33% !important;
}

.footer_ul li {
  color: #000;
  padding-bottom: 6px;
}

.head{
  font-size: 40px;
  margin-top: 3%;
  margin-right: 3%;
  text-align: right;
  color: #fff;
}



/* share modal */

.popup{
  background: rgb(255, 254, 254);
  padding: 25px;
  border-radius: 15px;
  top: 10%;
  max-width: 380px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  transform: translate(-50%, -50%) scale(1.2);
  transition: top 0s 0.2s ease-in-out,
              opacity 0.2s 0s ease-in-out,
              transform 0.2s 0s ease-in-out;
  margin-left:50%;
  margin-top:-20%;
  
}
.popup.show{
  top: 50%;
  left: 50%;
  opacity: 1;
  pointer-events: auto;
  transform:translate(-50%, -50%) scale(1);
  transition: top 0s 0s ease-in-out,
              opacity 0.2s 0s ease-in-out,
              transform 0.2s 0s ease-in-out;
  

}
.popup :is(header, .icons, .field){
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup header{
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebedf9;
}
header span{
  font-size: 21px;
  font-weight: 600;
}
header .close, .icons a{
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  transition: all 0.3s ease-in-out;
} 
header .close{
  color: #878787;
  font-size: 17px;
  background: #f3f3f3;
  height: 33px;
  width: 33px;
  cursor: pointer;
  margin-left: 70%;
}

header .close:hover{
  background: #ebedf9;
}
.popup .content{
  margin: 20px 0;
}
.popup .icons{
  display:flex;
  margin: 15px 0 20px 0;
}
.content p{
  font-size: 16px;
}
.content .icons a{
  height: 50px;
  width: 50px;
  font-size: 20px;
  text-decoration: none;
  border: 1px solid transparent;
}
.icons a i{
  transition: transform 0.3s ease-in-out;
}
.icons a:nth-child(1){
  color: #1877F2;
  border-color: #b7d4fb;
}
.icons a:nth-child(1):hover{
  background: #1877F2;
}
.icons a:nth-child(2){
  color: #46C1F6;
  border-color: #b6e7fc;
}
.icons a:nth-child(2):hover{
  background: #46C1F6;
}
.icons a:nth-child(3){
  color: #e1306c;
  border-color: #f5bccf;
}
.icons a:nth-child(3):hover{
  background: #e1306c;
}
.icons a:nth-child(4){
  color: #25D366;
  border-color: #bef4d2;
}
.icons a:nth-child(4):hover{
  background: #25D366;
}
.icons a:nth-child(5){
  color: #0088cc;
  border-color: #b3e6ff;
}
.icons a:nth-child(5):hover{
  background: #0088cc;
}
.icons a:hover{
  color: #fff;
  border-color: transparent;
}
.icons a:hover i{
  transform: scale(1.2);
}
.content .field{
  margin: 12px 0 -5px 0;
  height: 45px;
  border-radius: 4px;
  padding: 0 5px;
  border: 1px solid #757171;
}
.field.active{
  border-color: #7d2ae8;
}
.field i{
  font-size: 18px;
  text-align: left;
}
.field.active i{
  color: #7d2ae8;
}
.field input{
  width: 90%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  background-color: transparent;
}
.field button{
  color: #fff;
  padding: 5px 18px;
  background: #7d2ae8;
}
.field button:hover{
  background: #8d39fa;
}

.winners_list_scroll
{
    font-size: 20px;
    color:yellow;
    font-weight: bold;
}
.winners_list_player_id
{
    color: #2eb8ce;
}
.winners_list_reward
{
    font-weight: bold;
    color: red;
}

/* css for rewards list */
.content__container {
    font-weight: 600;
    overflow: hidden;
    height: 92px;
    padding: 0 40px;
    margin-left: 25%;
    margin-top: 10%;
    margin-right: 25%;
}

.content__container__text {
    display: inline;
    float: left;
    margin: 0;
}
.content__container__list {
margin-top: 70px;
padding-left: 110px;
text-align: left;
list-style: none;
-webkit-animation-name: change;
-webkit-animation-duration: 10s;
-webkit-animation-iteration-count: infinite;
animation-name: change;
animation-duration: 5s;
animation-iteration-count: infinite;
}
.content__container__list__item {
line-height: 55px;
margin: 0;
font-size: 30px;

}

@keyframes change {
0%   {transform: translateY(-10%)}
25%  {transform: translateY(-25%)}
50%  {transform: translateY(-50%)}
75%  {transform: translateY(-75%)}
100% {transform: translateY(-100%)}
}



@keyframes scale {
  0% {
      transform: scale(1.2);
  }

  100% {
      transform: scale(1);
  }
}



@media only screen and (max-width: 1024px) {

  .container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 15%;
  }

  .wheel {
    margin-left: 0px;
    max-height: 500px;
    position: absolute;
    max-width: 100%;
  }
  .button {
    margin-left: 41%;
    margin-top: 40%;

  }
  .wheel2 {
    margin-left: 5px;
    max-height: 500px;
    position: absolute;
    max-width: 100%;
}

  .button2 {
    margin-left: 41%;
    margin-top: 40%;
  }

  .content__container {
    font-weight: 600;
    overflow: hidden;
    height: 192px;
    padding: 0 40px;
    margin-left: 10%;
    margin-top: 0%;
    margin-right: 10%;
  }

}

@media only screen and (max-width: 820px) {
  .wrapper {
      display: block;
  }

  .container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 25%;
  }

  .wheel {
    margin-left: 50px;
    max-height: 500px;
    position: absolute;
    max-width: 100%;
  }
  .button {
  
    margin-left: 42%;
    margin-top: 35%;

  }
    .wheel2 {
      margin-left: 50px;
      max-height: 500px;
      position: absolute;
      max-width: 100%;
  }

  .button2 {
      margin-left: 42%;
      margin-top: 35%;
  }

  .content__container {
    font-weight: 600;
    overflow: hidden;
    height: 192px;
    padding: 0 40px;
    margin-left: 10%;
    margin-top: 0%;
    margin-right: 10%;
  }

}
@media only screen and (max-width: 735px) {

  .container {
   
    padding-bottom: 35%;
  }

  .content__container__list {
    margin-top: 70px;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 600px) {
  .head{
    font-size: 30px;
    margin-top: 3%;
    margin-right: 3%;
    text-align: right;
  }

  .wrapper {
      display: block;
      margin-top: 10%;
  }

  .container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 40%;
  }

  .wheel {
    margin-left: 0px; 
    max-height: 500px;
    position: absolute;
    max-width: 100%;
  }
  .button {
  
    margin-left: 39%;
    margin-top: 39%;

  }
    .wheel2 {
      margin-left: 0px; 
      max-height: 500px;
      position: absolute;
      max-width: 100%;
  }
    .button2 {
    
      margin-left: 39%;
      margin-top: 39%;
    
  }

  .content__container {
      font-weight: 600;
      overflow: hidden;
      height: 192px;
      padding: 0 40px;
      margin-left: 0%;
      margin-top: 10%;
      margin-right: 0%;
  }

}

@media only screen and (max-width: 412px) {

  .button {
    margin-left: 40%;
    margin-top: 39%;
  }

  .button2 {
    margin-left: 40%;
    margin-top: 39%;
  }

  .container {
    padding-bottom: 40%;
  }

}

@media only screen and (max-width: 390px) {

  .button {
    margin-left: 38%;
    margin-top: 38%;
  }

  .button2 {
  
    margin-left: 38%;
    margin-top: 38%;

  }
}
  

  


  
