.content__products__title {
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
}

.content__container {
  box-shadow: 0 -50px 50px rgba(0, 0, 0, 0.32);
}

.content__products__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.content__products__cards {
  width: 45%;
  height: 60vw;
  max-height: 400px;
  margin: 5px;
  background-color: var(--color__cuarto);
  border-radius: 5px;
  border: 0.5px solid rgba(0, 0, 0, 0.04);
  max-width: 250px;
}

.content__products__cards__content {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 70% 30%;
  align-items: center;
  position: relative;
  padding: 10px 10px 2px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 2px solid;
}

.content__products__cards__image__container,
.content__products__cards__content__image {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 50px;
  min-width: 50px;
}

.content__products__cards__content__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.content__products__cards__info__container {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-content: space-around;
  justify-content: space-evenly;
}

.content__products__cards__info__description,
.content__products__cards__info__price,
.content__products__cards__info__price__last__price,
.content__products__cards__info__talles,
.content__products__cards__info__price__new__price {
  text-align: center;
  display: -webkit-box;
  overflow: hidden;
}

.content__products__cards__info__price {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  padding: 10px 0;
}

.content__products__cards__info__description {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.content__products__cards__info__price {
  font-size: 15px;
  font-weight: 700;
  -webkit-line-clamp: 1;
}

.content__products__cards__info__price__last__price {
  text-decoration: line-through;
  font-size: 12px;
}

.content__products__cards__info__talles {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: var(--color__secundario);
  max-width: 100px;
  margin: auto;
  font-size: 10px;
}

@media (max-width: 600px) {
  .content__products__cards {
      width: 100%;
      height: 500px;
  }
}
