/* .product_card {
  width: 100%;
} */

.product_card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.product_card__actions {
    display: flex;
    flex-direction: column;
    min-height: calc(100% - 100px);
    justify-content: center;
}

.product_card__out_of_stock {
    padding: 30px;
    width: 100%;
    text-align: center;
    background-color: #f6f6f5;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #808d8a;
}
.product_card__row:last-child {
  margin-bottom: 0;
}

.product_card__row--full {
  flex-direction: column;
}

.product_card__stock {
  padding: 6px 10px;
  font-weight: 400;
  font-size: 16px;
  border-radius: 8px;
  color: #000000;
}
.product_card__stock--in_stock {
  background: #d9f2ed;
}
.product_card__stock--out_stock {
  background: rgb(255 207 84 / 26%);
}
.product_card__vendor_code {
  color: #5a6765;
  font-size: 16px;
}

.product_card__rating_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_card__rating_box span {
  font-size: 16px;
  color: #5a6765;
  margin-right: 10px;
}

.product_card__rating {
  width: 90px;
  height: 18px;
}

.product_card__reviews_amount {
  font-size: 16px;
  color: #5a6765;
  text-decoration: underline;
}

.product_card__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: #eef8fb;
}

.product_card__short_text {
    background-color: #f6f6f5;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    min-height: 114px;
}
.product_card__short_text_scroll{
  overflow: hidden;
  max-height: 54px;
  position: absolute;
  margin: 0 -15px;
  width: 100%;
  padding: 0 15px 15px;
  background-color: #f6f6f5;
  transition: .3s;
  border-radius: 10px;
}

.product_card__short_text:hover .product_card__short_text_scroll {
    max-height: 150px;
    overflow-y: auto;
}
@media screen and (min-width: 480px) {
  .product_card__prices {
    padding: 10px 20px;
  }
}
.product_card__prices--sale {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  background: rgba(255, 207, 84, 0.13);
}

.product_card__price_current {
  font-weight: 700;
  font-size: 25px;
  color: #333333;
}
@media screen and (min-width: 480px) {
  .product_card__price_current {
    font-size: 36px;
  }
}

.product_card__prices--sale .product_card__price_current {
  width: calc(50% - 10px);
  margin-right: 10px;
  text-align: center;
  color: #ff5454;
}

.product_card__price_sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(50% - 10px);
  margin-left: 10px;
}
@media screen and (min-width: 480px) {
  .product_card__price_sale {
    padding-left: 15px;
  }
}
.product_card__price_old {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
}
.product_card__price_old::after {
  content: "";
  position: absolute;
  height: 2px;
  width: calc(100% - 20px);
  background-color: #ff5454;
  left: 0;
  top: 10px;
  -webkit-transform: rotate(347deg);
  -ms-transform: rotate(347deg);
  transform: rotate(347deg);
}

.product_card__price_term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 5px;
  font-size: 14px;
}

.product_card__price_icon {
  margin-right: 5px;
  stroke: #333333;
  height: 14px;
  width: 14px;
}

.product_card__amount {
  height: 44px;
  margin-right: 10px;
  width: calc(50% - 10px);
}

.product_card__cart {
  width: calc(50% - 10px);
  margin-left: 10px;
  height: 44px;
}

.product_card__cart_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #05aa82;
  -webkit-box-shadow: 0px 4px 15px rgba(5, 170, 130, 0.35);
  box-shadow: 0px 4px 15px rgba(5, 170, 130, 0.35);
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background-color 250ms
    cubic-bezier(0.45, 0.05, 0.55, 0.95);
  -o-transition: background-color 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
  transition: background-color 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.product_card__cart_btn:hover {
  background-color: #059975;
}
.product_card__cart_btn span {
  margin-left: 8px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}

.product_card__cart_icon {
  fill: #ffffff;
  height: 24px;
  width: 25px;
}

.product_card__buyclick_btn {
  width: 100%;
  padding: 8px;
  background-color: #ffffff;
  border: 2px solid #05aa82;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  color: #05aa82;
  cursor: pointer;
  -webkit-transition: background-color 250ms
      cubic-bezier(0.45, 0.05, 0.55, 0.95),
    color 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
  -o-transition: background-color 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95),
    color 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
  transition: background-color 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95),
    color 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.product_card__buyclick_btn:hover {
  background-color: #05aa82;
  color: #ffffff;
}

.product_card__subtitle {
  width: 100%;
  color: #3e4746;
  margin-bottom: 10px;
  font-weight: 500;
}

.product_card__select {
  width: 100%;
  height: 40px;
}

.product_card__radio_group {
  flex-wrap: wrap;
  width: 100%;
  display: none;
}

.product_card__radio_group-show {
    display: flex;
}

.product_card__radio {
  width: calc((100% - 10px) / 2);
  margin-right: 10px;
  margin-top: 10px;
}
.product_card__radio:nth-child(-n + 2) {
  margin-top: 0;
}
.product_card__radio:nth-child(2n) {
  margin-right: 0;
}
