.s_bg {
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: shimmer;
          animation-name: shimmer;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background: #ddd;
  background: -webkit-gradient(linear, left top, right top, color-stop(8%, #f6f6f6), color-stop(18%, #f0f0f0), color-stop(33%, #f6f6f6));
  background: linear-gradient(to right, #f6f6f6 8%, #f0f0f0 18%, #f6f6f6 33%);
  background-size: 1200px 100%;
}

@-webkit-keyframes shimmer {
  0% {
    background-position: -1200px 0;
  }
  100% {
    background-position: 1200px 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1200px 0;
  }
  100% {
    background-position: 1200px 0;
  }
}
.s_img {
  border-radius: 1em;
  margin: 0 1em;
}

.s_title {
  margin-top: 0.7em;
}
.s_title > * {
  border-radius: 0.5em;
  width: 90%;
  height: 1em;
  margin-bottom: 0.55em;
}

.bottom-content .s_price {
  border-radius: 0.5em;
  width: 50%;
  height: 1.5em;
  margin-bottom: 0.4em;
}
.bottom-content .s_code_product {
  border-radius: 0.5em;
  width: 30%;
  height: 0.8em;
}

.s_card-btn {
  width: 2em;
  height: 2em;
}

.s_stars {
  font-size: 1.5em;
  letter-spacing: 6px;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}