.collection-rows-swiper {
  display: none;
  position: relative;
  overflow: hidden;
}
.collection-rows-swiper > .row-collections {
  position: relative;
  width: 99.5%;
  margin: 8px auto;
}
.collection-rows-swiper > .row-collections .row-collection {
  width: 350px;
  padding: 0;
  margin-bottom: 12px;
}
@media (max-width: 500px) {
  .collection-rows-swiper > .row-collections .row-collection {
    width: 300px;
  }
}
.collection-rows-swiper > .row-collections .row-collection .image-container {
  background: rgba(120, 120, 120, 0.2);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  user-select: none;
}
.collection-rows-swiper > .row-collections .row-collection .image-container > .image-wrapper {
  background-position: 50%;
  padding-top: 50%;
  background-size: cover;
  max-width: 100%;
  width: 100%;
  height: auto;
  transition: transform 0.2s ease-in-out;
}
.collection-rows-swiper > .row-collections .row-collection .image-container > .image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0) 70%),
              radial-gradient(ellipse at center, rgba(0,0,0,0) 0,rgba(0,0,0,0.35) 100%),
              linear-gradient(225deg, rgba(0,0,0,0.5) 26%, rgba(0,0,0,0) 29%);
}
.collection-rows-swiper > .row-collections .row-collection .info-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5%;
  overflow: hidden;
  user-select: none;
}
.collection-rows-swiper > .row-collections .row-collection .info-container_title {
  /* height: 66%; */
  max-width: 70%;
  color: var(--text-on-primary);
  font-family: "Exo 2";
  border-top: unset;
  text-shadow: unset;
  margin-top: unset;
  background-image: none;
  overflow: hidden;
}
.collection-rows-swiper > .row-collections .row-collection .info-container_title h5 {
  display: -webkit-box;
  margin: 0;
  margin-bottom: 0.25rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
  overflow: hidden;
  color: hsla(0,0%,100%,.9);
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
}
.collection-rows-swiper > .row-collections .row-collection .info-container_title p {
  display: -webkit-box;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  word-break: break-word;
  overflow: hidden;
  color: hsla(0,0%,100%,.77);
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (max-width: 500px) {
  .collection-rows-swiper > .row-collections .row-collection .info-container_title p {
    -webkit-line-clamp: 3;
  }
}
.collection-rows-swiper > .row-collections .row-collection .info-container .info-container_rating {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.collection-rows-swiper > .row-collections .row-collection .info-container .info-container_stars {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.collection-rows-swiper > .row-collections .row-collection .info-container .info-container_stars span {
  color: hsla(0,0%,100%,.9);
  font-family: "Exo 2";
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.235;
  white-space: nowrap;
}
.collection-rows-swiper > .row-collections .row-collection .info-container .info-container_stars svg {
  fill: #D3A81E;  /* #ff8d29 */
  height: 25px;
  width: 25px;
}
/* .collection-rows-swiper > .row-collections .row-collection .info-container .info-container_stars svg path {
  stroke: black;
  stroke-width: 1px;
  stroke-linejoin: round;
} */
.collection-rows-swiper > .row-collections .row-collection .info-container .info-container_button {
  display: none;
  padding: 4% 14%;
  pointer-events: none;
}
.collection-rows-swiper > .row-collections .row-collection a {
  display: block;
  position: relative;
  outline: none;
}
.collection-rows-swiper > .row-collections .row-collection a::after {
  transition: opacity 125ms ease-in-out 0s;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: white;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: 0px;
}
.collection-rows-swiper > .row-collections .row-collection a:hover {
  text-decoration: none;
}
.collection-rows-swiper > .row-collections .row-collection a:hover::after {
  opacity: 0.1;
}
.collection-rows-swiper > .row-collections .row-collection a:hover .image-container > .image-wrapper {
  transform: scale(1.025);
}
.collection-rows-swiper > .row-collections h3 {
  font-family: "Exo 2";
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.235;
  margin: 12px;
}
