.product_breadcrumbs {
  margin-bottom: 20px;
}
.product__title {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 22px;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .product__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
.product__wrap {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .product__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
}
.product__product_gallery {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

.product__like_icons {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 50px;
  height: 50px;
  background-color: #05aa82;
  border-radius: 100%;
  text-align: center;
  padding: 14px 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
  -o-transition: opacity 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
  transition: opacity 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
  z-index: 9;
  cursor: pointer;
}
.product__like_icons svg {
  width: 23px;
  height: 21px;
}
.product__like {
  fill: #d9f2ed;
  opacity: 1;
  -webkit-transition: opacity 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
  -o-transition: opacity 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
  transition: opacity 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.product__like_icons:hover .product__like {
  opacity: 0;
}

.product__like_check {
  fill: #ff6954;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
  -o-transition: opacity 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
  transition: opacity 250ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.product__like_icons:hover .product__like_check {
  opacity: 1;
}

@media screen and (min-width: 1260px) {
  .product__product_gallery {
    width: calc(43% - 35px);
    margin-right: 35px;
    margin-bottom: 0;
  }
}
.product__product_card {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .product__product_card {
    width: calc(60% - 44px);
    margin-right: 44px;
  }
}
@media screen and (min-width: 1260px) {
  .product__product_card {
    width: calc(33% - 44px);
  }
}
.product__product_info {
  display: none;
}
@media screen and (min-width: 768px) {
  .product__product_info {
    display: block;
    width: 40%;
  }
}
@media screen and (min-width: 1260px) {
  .product__product_info {
    width: 24%;
  }
}

.relink {
    padding: 5px;
    background-color: #fff;
    border: 2px solid #eef8fb;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #05aa82;
    cursor: pointer;
    -webkit-transition: background-color 250ms cubic-bezier(.45,.05,.55,.95), color 250ms cubic-bezier(.45,.05,.55,.95);
    -o-transition: background-color 250ms cubic-bezier(.45,.05,.55,.95),color 250ms cubic-bezier(.45,.05,.55,.95);
    transition: background-color 250ms cubic-bezier(.45,.05,.55,.95), color 250ms cubic-bezier(.45,.05,.55,.95);
    margin: 0 5px 9px 0;
    transition: .3s;
}
.relink:hover {
    padding: 5px;
    background-color: #eef8fb;
    border: 2px solid #05aa82;
}