.cotizacionScrollable {
  height: 52vh;
  width: 100%;
  overflow: auto;
  -webkit-box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.15);
  border-collapse: separate;
  border-radius: 0.8rem;
  border: 1px solid var(--darkBlue);
}

figure {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.product_s {
  width: 100%;
  height: 100%;
  transition: all 500ms ease-out;
}

.capa {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: all 500ms ease-out;
  opacity: 0;
  visibility: hidden;
  text-align: center;
}

figure:hover > .capa {
  opacity: 1;
  visibility: visible;
}

.productCotizacion {
  background-size: 80%;
  width: 10rem;
  height: 15rem;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 0.8rem;
  -webkit-box-shadow: 0px 10px 30px -12px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 10px 30px -12px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.productoCotizacion__visibleName {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: all 500ms ease-out;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  color: var(--white);
  border-radius: 0.8rem;
}

.productCotizacion__info {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition-property: opacity;
  transition-duration: 900ms;
  transition-timing-function: ease-out;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  color: var(--white);
  border-radius: 0.8rem;
}

.removerBoton {
  color: var(--darkBlue);
  cursor: pointer;
}

.removerBoton:hover {
  color: var(--red);
  cursor: pointer;
}

.productCotizacion > h3 {
  position: relative;
  text-align: center;
  color: var(--darkBlue);
  width: 100%;
  height: 100%;
}

.productCotizacion:hover > .productCotizacion__info {
  opacity: 1;
  visibility: visible;
}

.productCotizacion:hover > h3 {
  opacity: 0;
  visibility: hidden;
  display: none;
}