.ruleta-container {
	position: relative;
	width: 340px;
	height: 340px;
	margin: 15px auto;
}

.ruleta-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.ruleta {
	transform-origin: center;
	transition: transform 5s ease-out;
}

.boton-girar {
	margin-top: 20px;
	padding: 10px 20px;
	font-size: 16px;
	background-color: #ff6392;
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 5px;
}

.flecha {
position: absolute;
top: 50%;
right: 2px;
transform: translateY(-50%) rotate(-90deg);
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 20px solid var(--color-fucsia);
z-index: 1;
}



/* POPUP */
.popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	text-align: center;
	width: 90%;
	z-index: 11;
}

.popup h2 {
	margin-bottom: 10px;
}

.popup input {
	width: 90%;
	padding: 10px;
	margin: 5px 0;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.popup button {
	margin-top: 10px;
	padding: 10px 20px;
	border: none;
	background-color: #ff6392;
	color: white;
	cursor: pointer;
	border-radius: 5px;
}

small{
	color:#333;
}





.modal_ruleta {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5); /* Fondo semitransparente */
}
.modal_ruleta h4{
	padding: 0;
    margin: 0;
}	
.modal_ruleta .modal-content {
  background-color: #fff;
  margin: 10% auto; /* Centrado vertical y horizontal */
    padding: 20px 0px;
  border: 1px solid #888;
  max-width: 400px; /* Ancho del popup */
  position: relative;
  border-radius: 10px;
}
.modal_ruleta .close_pop, .popup .close_pop{
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.modal_ruleta .close_pop:hover,
.modal_ruleta .close_pop:focus {
  color: #000;
  text-decoration: none;
}