
/** Botón de lista de deseos */

.btnDeseos {
    height: auto;
    position: fixed;
    z-index: 9999;
    cursor: pointer;
  }
  
  @media (min-width: 992px) {
    .btnDeseos {
      width: 4vw;
      bottom: 2vw;
      right: 2vw;
    }
  }
  
  @media (max-width: 991px) {
    .btnDeseos {
      width: 16vw;
      bottom: 5vw;
      right: 5vw;
    }
  }
  
  /** Ventana Lista de Deseos */
  
  @media (min-width: 992px) {
    .lista-deseos-box {
      position: fixed;
      z-index: 9999;
      width: 26vw;
      height: 30vw;
      bottom: -31vw;
      right: 4vw;
      background-color: #EFEFEF;
    }
  
    .lista-deseos-header {
      width: 100%;
      height: 3.5vw;
      background-color: var(--inx-secondary-color);
      padding: 0.8vw;
      font-size: 1.3vw;
    }
  
    .lista-deseos-titulo {
      padding: 1vw;
    }
  
    .lista-deseos-textarea {
      width: 88%;
      resize: none !important;
      border: none;
    }
  
    .lista-deseos-boton {
      margin-top: 1.6vw;
    }
  }
  
  @media (max-width: 991px) {
    .lista-deseos-box {
      position: fixed;
      z-index: 9999;
      width: 92vw;
      height: 118vw;
      bottom: -118vw;
      right: 4vw;
      background-color: #EFEFEF;
    }
  
    .lista-deseos-header {
      width: 100%;
      height: 13.5vw;
      background-color: var(--inx-primary-color);
      padding: 2.4vw;
      font-size: 5.8vw;
    }
  
    .lista-deseos-titulo {
      padding: 4vw;
    }
  
    .lista-deseos-textarea {
      width: 88%;
      resize: none !important;
      border: none;
    }
  
    .lista-deseos-boton {
      margin-top: 1.6vw;
    }
  }
  