/* General Popup Styles */
#spin-wheel-popup.popup {
  display: none;
  position: fixed;
  z-index: 99999999999999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: fit-content;
    min-height: 600px;
/*     max-height: 500px; */
  background-color: rgba(0, 0, 0, 0.5);
}


#spin-wheel-popup img.ac_indicator {
    position: absolute;
    right: 0;
    top: 50%;
	    width: 40px;

}
#spin-wheel-popup input#copyvalue {
    width: 25%;
}
#spin-wheel-popup #copy-code-btn,#spin-wheel-popup input#copyvalue{
	height:30px !important;
	min-height:30px !important;
	margin-top:4px;
}
#spin-wheel-popup .popup-content {
  background-color: #fff;
/*   margin: 10% auto; */
  padding: 0px;
  border-radius: 10px;
  width: 100%;
      height: fit-content;
    min-height: 600px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#spin-wheel-popup .close-btn {
 color: #000;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 44px;
    line-height: 45px;
    /* font-weight: bold; */
    cursor: pointer;
    z-index: 999999999999;
}

#spin-wheel-popup .close-btn:hover,
#spin-wheel-popup .close-btn:focus {
  color: #000;
}

/* Spin Wheel Styles */
#spin-wheel-popup .wrapper {
  width: 100%;
  max-width: 34.37em;
      height: fit-content;
    min-height: 600px;
  background-color: #ffffff;
  padding: 1em;
  border-radius: 1em;
/*   box-shadow: 0 4em 5em rgba(27, 8, 53, 0.2); */
  margin: 0 auto;
	
	
	
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
/*     height: 100%; */
}

#spin-wheel-popup .container {
  position: relative;
/*   width: 100%; */
  height: 100%;
	
	
	
	width: 250%;
    transform: scale(.4) translate(-125%, -70%);
    position: absolute;
    left: 50%;
    top: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
	height: fit-content !important;
padding-left: 15px;
    padding-right: 15px;
}

#wheel {
  max-height: inherit;
  width: inherit;
}

#spin-btn {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 70px;
    width: 70px;
    border-radius: 100%;
    cursor: pointer;
    border: 2px soild white;
    background: radial-gradient(#ff6b00 50%, #d88a40 85%);
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    width: 200px;
    height: 200px;
    border: 6px solid #ffffff;
}
#final-value {
  font-size: 16px;
  text-align: center;
  margin-top: 1.5em;
  color: #202020;
}
#final-value p{
	margin-bottom:4px !important;
}
/* Style for spin chances */
#spin-chances {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

#spin-wheel-popup .chance-box {
    width: 50px;
    height: 50px;
    margin: 0 10px;
    background-color: green; /* Active chance */
    border-radius: 5px;
    display: inline-block;
}

.chance-box.used {
    background-color: red; /* Used chance */
}
.copy-button {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.copy-button input {
    width: 200px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.copy-button input:focus {
    outline: none;
    border-color: #0073e6;
}

.copy-button .copybtn {
    padding: 10px 15px;
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.copy-button .copybtn:hover {
    background-color: #005bb5;
}

.copy-button .copybtn:active {
    background-color: #003f8a;
    transform: scale(0.98);
}

@media screen and (max-width: 768px) {
  #spin-wheel-popup .wrapper {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
	#spin-wheel-popup.popup {
  width:55%;
		   position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 90vh;
    min-height: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
	#spin-wheel-popup .popup-content {
		padding:20px;
		background-color: #fff;
  
    border-radius: 10px;
    width: 100%;
    height: 100%;
    min-height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
  
    animation: fadeIn 0.3s ease-in-out;
	}
	#spin-wheel-popup .wrapper {
		margin: 0px auto;
    padding: 0px !important;
		width: 100%;
		display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    height: 100% !important;
		min-height:auto !important;
	    
	}
	#spin-wheel-popup .container{
		width: 130%;
    transform: scale(.5) translate(-100%, -40%);
    position: absolute;
    left: 50%;
    top: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content !important;
    padding: 0px;
	}
	
	
}
