.bloque-entradas-novedades {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.88rem 0;
  background: #fff;
}

.bloque-entradas-novedades .entradas-overflow {
  overflow: hidden;
  width: 100%;
  display: flex;
}

.bloque-entradas-novedades .entradas-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-animation: novedadesloop 40s linear infinite;
    -moz-animation: novedadesloop 40s linear infinite;
    -o-animation: novedadesloop 40s linear infinite;
    width: fit-content;
    transform-box: content-box;
}

.bloque-entradas-novedades .producto-novedad {
  display: flex;
  gap: 0.94rem;
  padding: 0 0.98rem;
  text-decoration: none;
  color: 1px solid var(--Neutral-1A1A1A, #1A1A1A);
  opacity: 0.5;
  transition: all 0.25s ease-in-out 0s;
}

.bloque-entradas-novedades .producto-novedad:hover {
  opacity: 1;
  transition: all 0.25s ease-in-out 0s;
}

.bloque-entradas-novedades .entradas-overflow:hover .entradas-wrapper, .bloque-entradas-novedades .entradas-overflow:focus-within .entradas-wrapper{
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.bloque-entradas-novedades .producto-novedad .novedad-tipo {
  color: #000;
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 94%;
  text-transform: uppercase;
  white-space: nowrap;
  padding-left: 1.88rem;
}

.bloque-entradas-novedades .producto-novedad .novedad-imagen img {
  width: auto;
  height: 4.22581rem;
}

@keyframes novedadesloop {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 959px) {
  .bloque-entradas-novedades {
    padding: 0.81369rem;
  }

  .bloque-entradas-novedades .producto-novedad {
    gap: 0.41rem;
    align-items: center;
    padding: 0.45rem;
  }

  .bloque-entradas-novedades .producto-novedad .novedad-imagen img {
    height: 2rem;
  }

  .bloque-entradas-novedades .producto-novedad .novedad-tipo {
    font-size: 1.95288rem;
    padding-left: 0rem;
  }

  .bloque-entradas-novedades .producto-novedad .novedad-imagen {
    display: flex;
    align-items: center;
    height: 100%;
  }
}
