<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

.mainbox_spin {
  position: absolute;
  top: 25%;
  left: 36%;
  width: 515px;
  height: 515px;
}

.mainbox_spin:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url('../images/arrow-bottom.png') no-repeat;
  background-size: 5%;
  left: 5%;
  top: 48%;
  transform: rotate(90deg);
}

.box_spin{
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  border: 18px solid #303030;
  overflow: hidden;
  transition: all ease-in-out 5s;
  transform: rotate(90deg);
}
.box_spin_wheel{
  background: -webkit-linear-gradient(left top, crimson 0%, #f90 100%);
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  border: double 7px transparent;
  /*overflow: hidden;
  transition: all ease-in-out 5s;
  transform: rotate(90deg);*/
  background-image: linear-gradient(white, white), radial-gradient(circle at top left, rgba(223,224,14,1) 0%, rgba(87,115,38,1) 9%, rgb(0 243 255) 24%, rgba(182,15,29,1) 43%, rgba(200,230,20,1) 58%, rgba(104,224,172,1) 73%, rgba(154,50,218,1) 87%, rgba(0,212,255,1) 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.font_spin {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.span1_spinwheel {
  clip-path: polygon(0 1%, 0 50%, 50% 50%);
  background: linear-gradient(90deg, #ffa500 0%, #ffd400 25%);
}

.span2_spinwheel {
  clip-path: polygon(0 3%, 40% 0, 50% 50%);
  background: linear-gradient(90deg, rgba(121,9,102,1) 0%, rgba(247,6,114,1) 52%, rgba(255,0,24,1) 100%);
}

.span3_spinwheel {
  clip-path: polygon(40% 0, 71% 0, 50% 50%);
  background: linear-gradient(90deg, rgba(58,119,180,1) 13%, rgba(29,227,253,1) 57%, rgba(69,252,233,1) 100%);
}

.span4_spinwheel {
  clip-path: polygon(71% 0, 100% 18%, 50% 50%);
  background-color: salmon;
}

.span5_spinwheel {
  clip-path: polygon(100% 18%, 100% 50%, 50% 50%);
  background: #ff8300;
}

.box2_spin .span3_spinwheel {
  background-color: #00ff04;
}

.box2_spin {
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}

.font_spin {
  color: black;
  font-size: 17px;
  font-weight: bold;
  
}

.box1_spin .span1_spinwheel b {
  position: absolute;
  top: 38%;
  right: 58%;
  transform: rotate(200deg);
  text-align: center;
  font-family: blacklives;
  text-shadow:2px 4px 4px #545252;

}

.box1_spin .span2_spinwheel b {
  position: absolute;
  top: 32%;
  right: 51%;
  transform: rotate(-130deg);
  font-family: blacklives;
  text-shadow: 2px 4px 4px #545252;
}

.box1_spin .span3_spinwheel b {
  position: absolute;
  top: 27%;
  right: 38%;
  transform: rotate(-90deg);
  font-family: blacklives;
  text-shadow: 2px 4px 4px #545252;
}

.box1_spin .span4_spinwheel b {
  position: absolute;
  top: 33%;
  right: 27%;
  transform: rotate(-45deg);
  font-family: blacklives;
  text-shadow: 2px 4px 4px #545252;
}

.box1_spin .span5_spinwheel b {
  position: absolute;
  top: 39%;
  right: 5%;
  transform: rotate(-15deg);
  text-align: center;
  font-family: blacklives;
  text-shadow: 2px 4px 4px #545252;
}

.box2_spin .span1_spinwheel b {
  position: absolute;
  top: 39%;
  right: 59%;
  transform: rotate(200deg);
  font-family: blacklives;
  text-shadow: 2px 4px 4px #545252;
}

.box2_spin .span2_spinwheel b {
  position: absolute;
  top: 20%;
  right: 46%;
  transform: rotate(-130deg);
  text-align: center;
  font-family: blacklives;
  text-shadow: 2px 4px 4px #545252;
}

.box2_spin .span3_spinwheel b {
  position: absolute;
  top: 25%;
  right: 37%;
  transform: rotate(270deg);
  font-family: blacklives;
  text-shadow: 2px 4px 4px #545252;
}

.box2_spin .span4_spinwheel b {
  position: absolute;
  top: 30%;
  right: 24%;
  transform: rotate(310deg);
  font-family: blacklives;
  text-shadow: 2px 4px 4px #545252;
}

.box2_spin .span5_spinwheel b {
  position: absolute;
  top: 41%;
  right: 18%;
  transform: rotate(-20deg);
  text-align: center;
  font-family: blacklives;
  text-shadow: 2px 4px 4px #545252;
}

.spin_wheel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: linear-gradient(to bottom, #f8a919, #e3521b);
  background-image: linear-gradient(to bottom, #f8a919, #e3521b);
  border: 4px solid white;
  color: #fff;
  box-shadow: 0 5px 20px #484646;
  font-weight: bold;
  font-size: 22px;
  cursor: pointer;
  z-index: 1000;
}

.spin_wheel:active {
  width: 70px;
  height: 70px;
  font-size: 20px;
}

.mainbox_spin.animate:after {
  animation: animateArrow 0.7s ease infinite;
}

audio {
  display: none;
}

@keyframes animateArrow {
  50% {
    right: -50px;
  }
}

@media only screen and (max-width: 600px) {
  .mainbox_spin {
    width: 290px !important;
    height: 290px !important;
    top: 33%;
    left: 14.5%;
    }
    .spin_wheel{
      font-size: 10px !important;
      width: 50px;
      height: 50px;
    }
    .main_spin_div{
      height: 100vh !important;
    }
    .wheel_stage{
      padding-top: 29% !important;
      
    }
    .font_spin {
      font-size: 8px;
  }
	.fortune_div_sub_sec{
		height: 100vh !important;
	}
	.login_spin_btn{
		bottom: 10%;
    	left: 33%;
	}
	.wheel_stage_div{
		height:90vh;
	}
	.wheel_stage_div_txt{
    				right: 9% !important;
				}
  /*.spin-wheel {
    max-height: 1.75rem !important;
  }*/
}
@media (min-width: 620px) and (max-width: 880px) {
	.mainbox_spin {
		top: 23%;
		left: 22%;
		width: 450px;
		height: 450px;
	}
	.wheel_stage{
		height:90%;
	}
	.font_spin {
    	font-size: 14px;
	}
	.wheel_stage_div{
		height:100vh !important;
	}
	.wheel_stage_div_txt {
  		  right: 31.5% !important;
		}
	.login_spin_btn {
    	bottom: 19.7% !important;
    	left: 44% !important;
	}
}
@media (min-width: 950px) and (max-width: 1020px) {
	.mainbox_spin {
		    top: 24%;
			left: 20%;
			width: 550px;
			height: 550px;
	}
	.wheel_stage {
		height: 100%;
	}
	.font_spin {
   		 font-size: 10px;
	}
	.spin_wheel {
		top: 50%;
    	left: 50%;
		font-size: 12px;
	}
	.wheel_stage_div{
		height:100vh !important;
	}
	.wheel_stage_div_txt {
  		  right: 31.5% !important;
		}
	.login_spin_btn {
    	bottom: 19.7% !important;
    	left: 44% !important;
	}
}
@media (min-width: 1020px) and (max-width: 1275px) {
	.mainbox_spin {
		top: 18%;
		left: 34%;
		width: 320px;
		height: 320px;
	}
	.spin_wheel{
		width: 50px;
    	height: 50px;
		font-size: 13px;
	}
	.font_spin {
    	font-size: 13px;
	}
	.wheel_stage{
		height:100%;
	}
	.wheel_stage_div{
		height:100vh !important;
	}
	.wheel_stage_div_txt {
		top: 3%;
		right: 28%;
	}
	.wheel_stage_div_txt img{
		width: 60%;
	}
	.login_spin_btn {
		bottom: 1.7%;
		left: 44%;
	}
}
@media (min-width: 1280px) and (max-width: 1300px) {
	.mainbox_spin {
		top: 18%;
		left: 34%;
		width: 400px;
		height: 400px;
	}
	.spin_wheel{
		width: 50px;
    	height: 50px;
		font-size: 13px;
	}
	.font_spin {
    	font-size: 13px;
	}
	.wheel_stage{
		height:100%;
	}
	.wheel_stage_div{
		height:100vh !important;
	}
	.wheel_stage_div_txt {
		top: 3%;
		right: 32%;
	}
	.wheel_stage_div_txt img{
		width: 60%;
	}
	.login_spin_btn {
		bottom: 1.7%;
		left: 44%;
	}
	
}
@media only screen and (max-width: 375px) {
  .wheel_stage {
    padding-top: 3% !important;
    height: 94% !important;
}
.mainbox_spin {
  width: 300px !important;
    height: 300px !important;
    top: 24%;
    left: 10%;
}
	.login_spin_btn{
		bottom: 4%;
    	left: 33%;
	}
}
</pre></body></html>