@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
    font-family: "Montserrat", sans-serif;
    color: white;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


#firma:hover{
  filter:
    drop-shadow(3px 3px 4px rgba(255,255,255, 0.7))
    drop-shadow(-3px -3px 4px rgba(255,255,255, 0.3));
  cursor: pointer;
}

#container-click-firma{
  position: absolute;       /* se superpone sin mover #container */
  top: 0; left: 0;
  width: 100%;              /* o el alto que quieras cubrir */
  height: 100%;             /* aquí cubre todo */
  z-index: 7000;
  display: flex;
  align-items: center;
  justify-content: center;               /* más alto, pintado encima */
}

.glass-forms {
  position: absolute;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  will-change: transform, top, left;
}

#wrapper-glass-forms{
  position: relative;       /* Containing block para ambos hijos */
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: none;
}

#container-glass-forms{
  position: absolute;       /* no relative, para no afectar el flujo */
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;         /* recorta animaciones que rebotan */
  z-index: 6000; 
}

#click-firma{
  display: grid;
  grid-template-columns: 50% 50%;
  width: 60%;
  height: auto;
  padding: 20px;
}

#texto-firma{
  width: 100%;
}

#imagen-firma{
  width: 100%;
  border-radius: 20px;
}

svg {
  fill: white; /* Cambiamos 'color' por 'fill' para que afecte a todos los SVG */
}

.ojoCanvas{
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  margin-left: 20px;
  height: 1.8rem;
}

header {
    width: 100%;
    display: flex;
    justify-content:center;
    align-items:flex-start;
    position: fixed;
    z-index: 5000;
    top: 1rem;
    gap: 1rem;
}

header h1{
    padding: 1rem;
    margin: 0;
}

header #busqueda{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 15px;
}

.disco{
    display: grid;
    grid-template-columns: 700px 1fr;
    gap: 40px;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    margin-top: 2rem;
    z-index: 200;
}

.portada {
  width: 700px;
  height: 700px;
}

.lista-disco{
    background-size: 100% 100%;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 0rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
    font-size: 1.5rem;
    z-index: 200;
    
    /* Ajustes para que el scroll funcione dentro del grid */
    overflow-y: auto;
    height: 700px;
    width: 700px;
}

.album-title {
  font-size: 2rem; /* Un poco más grande */
  text-align: center;
  font-weight: 600;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  margin: 1rem 0 1.2rem 0; /* Espaciado vertical reducido */
}
.album-description {
  font-size: 0.9rem;
  text-align: center;
  padding: 0 2rem;
  margin: -1rem 0 1.5rem 0;
  opacity: 0.8;
  font-style: italic;
  line-height: 1.4;
}



.cancion{
    padding: 0.7rem 2rem;
    wrap: nowrap;
    display: flex;
    font-weight: bolder;
    width: 100%;
    z-index: 250;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative; /* Necesario para el tooltip */
    box-sizing: border-box; /* Evita que el padding cause desbordamiento */
}

.titulo-cancion {
  position: relative;
  display: flex; /* Usamos flex para alinear el texto y el icono */
  align-items: center;
  font-size: 18px;
  width: 70%;
}

.titulo-cancion span {
  display: inline-block;
  background-size: 200% 200%;       /* 2× el tamaño para que el movimiento sea evidente */
  background-repeat: no-repeat;
  /* Clip del background al texto */
  -webkit-background-clip: text;    /* Chrome, Safari */
  background-clip: text;            /* Firefox */
  -webkit-text-fill-color: transparent;
  color: transparent;               /* para navegadores que usen background-clip estándar */
  animation: bgShift 7s ease infinite;
}

.info-icon {
  width: 16px;
  height: 16px;
  fill: white; /* Asignamos un color blanco explícito */
  vertical-align: middle;
  margin-left: 8px;
  cursor: help;
  transition: fill 0.2s;
}

.info-icon:hover {
  fill: rgba(255, 255, 255, 0.7); /* Efecto de hover */
}

.song-tooltip {
  visibility: hidden;
  width: 220px;
  background-color: #f9f9f9; /* Fondo blanco */
  color: #333; /* Texto oscuro para contraste */
  font-size: 14px; /* Hacemos el texto del tooltip un poco más pequeño */
  font-weight: normal;
  text-align: center;
  border-radius: 8px; /* Bordes más redondeados */
  padding: 10px;
  position: fixed; /* Lo posicionamos relativo a la ventana, no al padre */
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Sombra para destacarlo */
  border: 1px solid #ddd; /* Borde sutil */
  pointer-events: none; /* Evita que el propio tooltip interfiera con el ratón */
  transform: translate(-50%, -100%); /* Centra el tooltip sobre el icono */
}

@keyframes bgShift {
  0%   { background-position: 0%   0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0%   0%; }
}

/**********************************************************************************************/
.glass-form {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 300px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    height: 1.8rem;
  }

  .glass-form input[type="text"] {
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.1);
    transition: 0.3s ease;
    color: white;
  }
  
  .glass-form input[type="text"]::placeholder {
    color: white;
  }

  .glass-form input[type="text"]:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
  }
/*********************************************************************************************/
  .img-difuminada img{
    height: 100%;
    width: 100%;
    border-radius: 20px;
  }

  
/********************************************************************************************/
  .custom-select {
    position: relative;
    width: 300px;
    user-select: none;
    text-align: left;
  }

  .selected {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-align: left;
    height: 1.8rem;
  }

  .options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-top: 5px;
    display: none;
    flex-direction: column;
    z-index: 5000;
    max-height: 500px;
    overflow-y: scroll;
    max-width: 300px;
  }

  .option {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
    max-width: 300px;
    height: 1000px;
  }

  .option:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .option img,
  .selected img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
  }

  /**************************************************************************************/

  .play-button {
    min-width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    margin-right: 20px;
  }

  .play-button::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 6px;
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }

  .play-button:hover {
    animation: playAnimation .5s ease-in-out forwards;
  }

  @keyframes playAnimation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .pause-button {
    min-width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    margin-right: 20px;
  }

  .pause-button::before,
  .pause-button::after {
    content: '';
    position: absolute;
    top: 7px;
    width: 6px;
    height: 18px;
    background: white;
    border-radius: 2px;
  }

  .pause-button::before {
    left: 18px;
  }

  .pause-button::after {
    right: 18px;
  }

  /**************************************************************************************/
  .change-album {
    animation: changealbum 2s ease-in-out forwards;
  }

  @keyframes changealbum {
    0% {
      transform: scale(1) translateX(0);
    }
    25% {
      transform: scale(0.5)translateX(0);
    }
    50% {
      transform: translateX(-100%) scale(0.5);
    }
    75% {
      transform: scale(1) translateX(-100%);
    }
    100% {
      transform: translateX(0) scale(1);
    }
  }

  .change-album2 {
    animation: changealbum2 2s ease-in-out forwards;
  }

  @keyframes changealbum2 {
    0% {
      transform: scale(1) translateX(0);
    }
    25% {
      transform: scale(0.5)translateX(0);
    }
    50% {
      transform: translateX(100%) scale(0.5);
    }
    75% {
      transform: scale(1) translateX(100%);
    }
    100% {
      transform: translateX(0) scale(1);
    }
  }
  /*********************************************************************************************/

  #visualizador2d{
    position: relative;
    top: 0; left: 0;
    z-index: 10;
    pointer-events: none;
    background: transparent;
    width: 300px;
    height: 30px;
    text-align: left;
  }

  /*********************************************************************************************/

  #container-track-time{
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    height: 50px;
    width: 100%;
    z-index: 5000;
    color: white;
    font-weight: bolder;
    font-size: 20px;
  }

  .time{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), #edf1f4);
    border-radius: 40px;
  }

  #container-slider{
    width: 500px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px
  }

  #slider{
    height: 20px;
    width: 0%;
    border-radius: 10px;
  }

  #progress-tooltip {
    position: absolute;
    padding: 4px 6px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    pointer-events: none;
    white-space: nowrap;
    transform: translateX(150px) translateY(-120%);
    visibility: hidden;
  }
  /*****************************************************************************************************/
  #searchContainer {
    max-width: 600px;
    margin: auto;
  }
  #searchResults {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: none;
    margin-top: 1rem;
    overflow-y:scroll;
    scrollbar-color: grey;
    max-height: 500px;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
  }
  .result {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
  }
  .result:last-child {
    border-bottom: none;
  }
  .result img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 0.75rem;
  }
  .result .info {
    line-height: 1.2;
  }
  .result .info .song {
    font-weight: bold;
  }
  .result .info .meta {
    font-size: 0.9rem;
    color: grey;
  }
  .no-results {
    padding: 1rem;
    text-align: center;
    color: #666;
  }

/*COOKIE CONSENT BANNER*/
#cookieConsentBanner {
    display: none; /* Inicialmente oculto, JS lo mostrará */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c2c2c; /* Un color oscuro que combine */
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 10000; /* Asegura que esté por encima de otros elementos */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    font-size: 14px;
    line-height: 1.5;
}

#cookieConsentBanner p {
    margin: 0 0 15px 0;
}

#cookieConsentBanner a {
    color: #77ccff; /* Un color de enlace que destaque */
    text-decoration: underline;
}

#cookieConsentBanner a:hover {
    color: #99ddff;
}

#cookieConsentBanner button {
    background-color: #007bff; /* Un color de botón primario */
    color: white;
    border: none;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#cookieConsentBanner button:hover {
    background-color: #0056b3;
}


  /*****************************************************************************************************/

                                  /*MEDIA QUERYS*/

 /*******************************************************************************************************/

 /*Móvil Vertical*/
 @media (max-width: 770px) and (orientation:portrait) {
  body, html{
    width: 100%;
    padding: 0;
    margin: 0;
    overflow-y: scroll;
  }
  header{
    top: 0.1rem;
    margin:0;
    padding: 0;
    left: 10px;
    width: 80%;
    justify-content: left;
  }
  header #busqueda{
    display: flex;
    flex-direction: column;
    align-items: unset;
    justify-content: center;
  }
  #searchContainer{
    text-align: left;
    margin: unset;
  }
  #songSearch{
    width: 127%;
  }
  #searchResults{
    position: absolute;
    z-index: 10000;
    width: 72%;
  }
  .custom-select{
    width: 140%;
  }
  .options{
    max-height: 900%;
  }
  .disco {
    display: grid;
    grid-template-columns: 100%;
    /*grid-template-rows: 375px 1fr;*/
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    margin:unset;
    top:unset;
    left: unset;
    transform:unset;
    position: relative;
    margin-bottom: 350px;
    gap: 20px;
    margin-top: 170px;
  }
  .lista-disco{
    width: 95%;
    padding: 10px;
    flex: 1 1 auto;
    height: auto;
    left:unset;
    margin-left: 2.5%;
    padding-bottom: 100px;
    box-sizing: border-box;
  }
  .cancion{
    width: 100%;
    padding-left: 0;
    padding-top: 0.7rem;
  }
  .titulo-cancion{
    font-size: 18px;
  }
  .ojoCanvas{
    position: absolute;
    left: -20px;
    top:  83px;
  }
  #firma{
    height: 50px;
    width: auto;
    position: relative;
    top: 10px;
    left: 10px;
  }
  #container-track-time{
    width: 100%;
    position: fixed;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  .time{
    width: 85%;
  }
  .track-time{
    font-size: 10px;
    width: 30%;
  }
  #container-slider{
    width: 70%;
  }
  .portada, .img-difuminada {
    width: 95%;
    height: auto;
    text-align: center;
    justify-self: center; /* Centra el elemento en la celda del grid */
  }
  .img-difuminada{
    background: unset;
  }
  .img-difuminada img{
    width: 100%;
    height: auto;
    
  }
  #container-click-firma{
    position: fixed;
  }
  #click-firma{
    width: 100%;
    display: flex;
    grid-template-columns: unset;
    flex-direction: column-reverse;
  }
}

/*Móvil Horizontal*/
@media (max-height: 600px) and (orientation: landscape){
  body, html{
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
  header{
    top: 0.05rem;
    margin:0;
    padding: 0;
    left: 10px;
    width: 80%;
    justify-content: left;
  }
  header #busqueda{
    display: flex;
    flex-direction: row;
    align-items: unset;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
  }
  #searchContainer{
    text-align: left;
    margin: unset;
  }
  #songSearch{
    width: 100%;
  }
  #searchResults{
    position: absolute;
    z-index: 10000;
    width: 72%;
    max-height: 300%;
  }
  .custom-select{
    width: 50%;
    right: -100px;
    position: absolute;
  }
  .options{
    max-height: 400%;
  }
  .disco {
    display: grid;
    grid-template-columns: 50% 50%;
    /*grid-template-rows: 375px 1fr;*/
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    margin:unset;
    top:unset;
    left: unset;
    transform:unset;
    position: relative;
    gap: 10px;
    margin-top: 70px;
    padding: 10px;
  }
  .lista-disco{
    width: 112%;
    padding: 10px;
    flex: unset;
    height: 55vh;
    padding-bottom: 700px;
    margin-left:-30%;
    overflow-y: scroll;
  }
  .cancion{
    width: 100%;
    padding-left: 0;
    padding-top: 0.7rem;
  }
  .titulo-cancion{
    font-size: 18px;
    width: 70%;
  }
  .ojoCanvas{
    position: fixed;
    right: 10px; 
    bottom: 10px;
    top: unset;
  }
  #firma{
    height: 50px;
    width: auto;
    position: relative;
    top: 10px;
    left: 10px;
  }
  #container-track-time{
    width: 80%;
    position: fixed;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  .time{
    width: 85%;
  }
  .track-time{
    font-size: 10px;
    width: 30%;
  }
  #container-slider{
    width: 70%;
  }
  .portada, .img-difuminada {
    width: 95%;
    height: auto;
    margin-left: 2.5%;
    justify-self: center; /* Centra el elemento en la celda del grid */
  }
  .img-difuminada{
    background: unset;
  }
  .img-difuminada img{
    width: auto;
    height: 60vh;
    margin-left: 2.5%;
  }
  #container-click-firma{
    position: fixed;
  }
  #click-firma{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:20px;
    height: 100%;
    overflow-y: scroll;
    position: absolute;
    z-index: 12000;
  }
  #imagen-firma{
    position: relative;
    width: 50%;
    height: auto;
    margin: 10px;
  }
  #texto-firma{
    width: 90%;
    height: 70%;
    overflow-y: scroll;
    padding: 10px;
  }
}

/*Tablet vertical*/
@media (min-width: 771px) and (orientation: portrait) {
  body, html{
    width: 100%;
    padding: 0;
    margin: 0;
    overflow-y: scroll;
  }
  header{
    top: 0.1rem;
    margin:0;
    padding: 10px;
    left: unset;
    width: 100%;
    justify-content: left;
  }
  header #busqueda{
    display: flex;
    flex-direction: row;
    align-items: unset;
    justify-content: center;
    width: 100%;
  }
  #searchContainer{
    text-align: unset;
    margin: unset;
  }
  #songSearch{
    width: 100%;
  }
  #searchResults{
    position: absolute;
    z-index: 10000;
    width: 72%;
  }
  .custom-select{
    width: 40%;
    position: relative;
    right: -20px;
  }
  .options{
    max-height: 900%;
  }
  .disco {
    display: grid;
    grid-template-columns: 100%;
    /*grid-template-rows: 375px 1fr;*/
    width: 100%;
    justify-content: center;
    align-items: center;
    margin:unset;
    top:unset;
    left: unset;
    transform:unset;
    position: relative;
    margin-bottom: 900px;
    gap: 20px;
    margin-top: 170px;
  }
  .lista-disco{
    width: 91%;
    padding: 2%;
    height: auto;
    left:unset;
    margin-left: 2.5%;
  }
  .cancion{
    width: 100%;
    padding-left: 0;
    padding-top: 0.7rem;
  }
  .titulo-cancion{
    font-size: 18px;
  }
  .ojoCanvas{
    position: relative;
    left: unset;
    top:  unset;
  }
  #firma{
    height: 50px;
    width: auto;
    position: relative;
    top: 10px;
    left: 10px;
  }
  #container-track-time{
    width: 100%;
    position: fixed;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  .time{
    width: 85%;
  }
  .track-time{
    font-size: 15px;
    width: 30%;
  }
  #container-slider{
    width: 70%;
  }
  .img-difuminada{
    background: unset;
  }
  .img-difuminada img{
    width: 95%;
    height: auto;
    margin-left: 2.5%;
  }
  #container-click-firma{
    position: fixed;
  }
  #click-firma{
    width: 100%;
    display: flex;
    grid-template-columns: unset;
    flex-direction: column-reverse;
  }
  .sphereRanges{
    right: unset;
    left: 0px;
    width:30%
  }
}

/*Tablet Horizontal*/
@media (min-height: 760px) and (max-height: 900px) and (orientation: landscape){
  body, html{
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
  header{
    top: 0.05rem;
    margin:0;
    padding: 0;
    left: 10px;
    width: 100%;
    justify-content: center;
  }
  header #busqueda{
    display: flex;
    flex-direction: row;
    align-items: unset;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }
  #searchContainer{
    text-align: left;
    margin-left: 60px;
  }
  #songSearch{
    width: 100%;
  }
  #searchResults{
    position: absolute;
    z-index: 10000;
    width: 72%;
    max-height: 700%;
  }
  .custom-select{
    width: 25%;
    right: 250px;
    position: absolute;
  }
  .options{
    max-height: 970%;
  }
  .disco {
    display: grid;
    grid-template-columns: 50% 50%;
    /*grid-template-rows: 375px 1fr;*/
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    margin:unset;
    top:unset;
    left: unset;
    transform:unset;
    position: relative;
    margin-top: 70px;
    padding: 10px;
    gap:10px;
  }
  .lista-disco{
    width: 90%;
    padding: 10px;
    flex: unset;
    height: 57vh;
    margin-left: unset;
    overflow-y: scroll;
    position:relative;
    margin-left: 0px;
    top: 80px;
    padding-bottom: 100px;
  }
  .cancion{
    width: 100%;
    padding-left: 0;
    padding-top: 0.7rem;
  }
  .titulo-cancion{
    font-size: 15px;
    width: 70%;
  }
  .ojoCanvas{
    position: relative;
    right: unset; 
    bottom: unset;
    left:0px
  }
  #firma{
    height: 50px;
    width: auto;
    position: relative;
    top: 10px;
    left: 10px;
  }
  #container-track-time{
    width: 100%;
    position: fixed;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  .time{
    width: 85%;
  }
  .track-time{
    font-size: 18px;
    width: 30%;
  }
  #container-slider{
    width: 85%;
  }
  .img-difuminada{
    background: unset;
  }
  .img-difuminada img{
    width: auto;
    height: 60vh;
    margin-left: 2.5%;
    position: relative;
    top: 80px;
  }
  #container-click-firma{
    position: fixed;
  }
  #click-firma{
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap:20px;
    height: 100%;
    overflow-y: scroll;
    position: absolute;
    z-index: 12000
  }
  #imagen-firma{
    position: relative;
    width: 50%;
    height: auto;
    margin: 10px;
  }
  #texto-firma{
    width: 90%;
    height: 50%;
    overflow-y: scroll;
  }
}