.barra-envio-gratis {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: .5rem 0rem;
  display: flex;
  align-items: unset;

}

.contenedor-envio-gratis {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
  max-width: 1500px;
  margin: 0 auto;
  justify-content: center;
}

.icono-envio img {
  width: 30px;
  height: 30px;
}

.icono-info {
  position: relative;
  cursor: pointer;
}

.icono-info img {
  width: 18px;
  height: 18px;
}

.mensaje-envio-gratis {
  font-size: 1.2rem;
  color: #333;
  flex: 1;
  line-height: 1.4;
  margin: 0;
}

.mensaje-envio-gratis strong {
  font-weight: 600;
}

.mensaje-envio-gratis a {
  text-decoration: underline;
  font-size: 1rem;
  margin-left: .5rem;
  margin-right: .5rem;
  color: #333;
}

/* barra progreso */

.barra-progreso {
  flex: 1;
  height: 8px;
  background-color: #E1E1E1;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 6px;
  position: relative;
}

.barra-progreso .progreso {
  height: 100%;
  background-color: #0072CE;
  /* verde Sodimac */
  width: 0%;
  transition: width 0.5s ease-in-out;
  border-radius: 4px 0 0 4px;
}

/* tooltip */

.icono-info::after {
  content: "La promoción de envío gratis no aplica para productos de gran tamaño.";
  position: absolute;
  bottom: 28px;
  right: -10px;
  width: 260px;
  background: #2f2f2f;
  color: white;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 8px;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
}

.icono-info::before {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 8px;
  border-width: 6px;
  border-style: solid;
  border-color: #2f2f2f transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
}

.icono-info:hover::after,
.icono-info:hover::before {
  opacity: 1;
  visibility: visible;
  z-index: 10;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}