/* Новые элементы и блоки на сайте */
/* 19.09.2025 Кнопка "Поделиться" в карточке товара */
.share_blcks {
  position: relative;
}
.good_item_actions_bttn.share {
  cursor: pointer;
}
.good_item_actions_bttn.share:hover path {
  fill: rgb(85, 50, 133);
}
.good_item_actions_bttn.share.active {
  background: #553285;
}
.good_item_actions_bttn.share.active path {
  stroke: #FCFDFF;
}
.share_info_blcks {
  display: none;
  position: absolute;
  background: #FCFDFF;
  width: 250px;
  left: -100px;
  top: 60px;
  border-radius: 8px;
  padding: 15px 20px;
  z-index: 3;
  -webkit-box-shadow: 5px 5px 40px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 5px 5px 40px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 40px 0px rgba(0, 0, 0, 0.1);
}
.share_info_blcks.active {
  display: flex;
  flex-direction: column;
}
.share_info_blcks::after {
  content: '';
  position: absolute;
  border: 20px solid transparent;
  border-bottom: 20px solid #FCFDFF;
  top: -35px;
  z-index: 4;
  left: 100px;
}
.share_info_blcks .share_blck {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #000;
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1.3px solid #E7E4ED;
  cursor: pointer;
}
.share_info_blcks .share_blck:hover span {
  color: #553285;
}
.share_info_blcks .share_blck svg {
  width: auto;
}
.share_info_blcks .share_blck:first-child {
  padding-top: 0;
}
.share_info_blcks .share_blck:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.copy-notice {
  display: flex;
  position: fixed;
  top: 140px;
  left: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform:translateX(-50%);
  transition: opacity 0.3s ease;
  z-index: 5;
}
.copy-notice.active {
  opacity: 1;
}
.copy-notice .notice_blcks {
  margin: auto;
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 25px;
  border-radius: 8px;
  background: #454546;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
}
.copy-notice .notice_blcks svg {
  width: auto;
}

@media (max-width: 991px) {
  .share_info_blcks {
    left: -210px;
  }
  .share_info_blcks::after {
    left: 208px;
  }
  .copy-notice .notice_blcks {
    width: 310px;
    justify-content: center;
  }
}
/* END 19.09.2025 Кнопка "Поделиться" в карточке товара */
