.boton-moderno:first-child {
	margin-left: 10px; /* margen solo para el primer boton */
}

.boton-moderno:not(:last-child) {
    margin-right: 2px;
}

/* Estilo básico para botones */
.boton-moderno {
    background-color: transparent; 
    color: rgba(255, 255, 255, 1); 
	border-bottom: 2px solid rgba(255, 255, 255, 1) !important;
    padding: 12px 24px; 
	border: none;
    cursor: pointer; /* Cursor en forma de mano para indicar que es clickeable */
    font-size: 0.9rem; 
	position: relative;	
	outline: none;
}

.boton-moderno:hover,
.boton-moderno:focus {
    color: rgba(255, 255, 255, 1); /* Cambiar el color del texto */
    border-bottom: 2px solid rgba(255, 255, 255, 1) !important;
}
.boton-inactivo {
	color: rgba(255, 255, 255, .4);
	border-bottom: none !important;
}

/* Unlock */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.popup iframe {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 10%;
  left: 10%;
  background-color: white;
}

.cerrar {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Botón de desanclado del iframe */ 

.boton-desanclar {
	display: flex;
	border:none;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	padding: 10px 24px;
	background: transparent;
	width: fit-content;
	font-size: 12px;
	color: #CF3476;
	margin-right: 5px; 
	margin-bottom: 5px; 
}

.boton-desanclar:hover, #guestButton:hover, #loginButton:hover {  
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 8px 0 rgba(0, 0, 0, 0.19); /* Sombra para efecto 3D */
}

.flechadesanclar {
	margin-left: 5px;
	font-size: 18px;
}

.oculto { display: none;}

/******** chip Volume en panel inferior */
.vol-chip-bottom {
    position: absolute;
    bottom: 8rem;
    right: 9.5rem;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: aliceblue;
    cursor: pointer;
    user-select: none;
    opacity: 1;
    transition: opacity 0.15s;
}
.vol-chip-bottom::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 8px;
    border-radius: 1px;
    background: rgba(100,160,100,0.7);
    flex-shrink: 0;
}
.vol-chip-bottom.vol-hidden {
    opacity: 0.35;
}

/******** este es el boton para cerrar y despegar el grid de volumen*/
.boton-cerrar-volumen {
	
	display: block;
	border: none;
	box-shadow: none !important;
	position: absolute; 
    bottom: 8rem; 
    right: 7.5rem; 
    z-index: 10;
    font-size: 0.7rem !important;
	color: aliceblue;
	background-color: #86BE6E;
	height: auto !important;
}
.boton-cerrar-volumen:hover,
.boton-cerrar-volumen:focus {
	background-color: #90CB76  !important;
	box-shadow: none !important;
}

		/******************************************
        *              MEDIA QUERIES              *
        *******************************************/
						
@media (max-width: 850px) {
    .boton-cerrar-volumen { /* El contenedor que indica el asset y lo que ha subido/bajado */
        top: 75%;
        margin-right: 2%;
        display: block;
        border: none;
        box-shadow: none !important;
        position: absolute; 
        right: 3.5rem; 
        z-index: 10;
        font-size: 0.5rem !important;
        color: aliceblue;
        background-color: #86BE6E;
        height: auto !important;
        padding: 0.5rem; /* Ajuste de padding */
        line-height: 0.2; /* Ajuste de la altura de la línea */
    }
}