.share {
  position: relative;
  display: inline-block;
}
/* Кнопка-триггер */
.share__trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  padding: 5px 5px;
  width: 40px;
  height: 40px;
  border: 0;
  color: #000000;
  font-size: 23px;
  cursor: pointer;
  user-select: none;
  outline: none;
  background-color: transparent;
  transition: background 0.15s, color 0.15s;
}
.share__trigger:hover {
  color: #db553e;
}
/* Всплывающий список */
.share__popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 2px 0;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.15s, transform 0.15s;
  z-index: 2999;
}
.share__popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
/* Пункт списка (общий для <button> и <a>) */
.share__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 16px;
  cursor: pointer;
  text-decoration: none;
  color: #222;
  font-size: 14px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.1s;
  box-sizing: border-box;
}
.share__item:hover {
  background: #f5f5f5;
}
/* Иконки */
.share__icon {
  width: 34px;
  height: 34px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.share__icon--copy {
  background: #e8e8e8;
}
.share__icon--tg {
  background: #29a9eb;
  color: #ffffff;
}
.share__icon--wa {
  background: #25d366;
  color: #ffffff;
}
.share__icon--vk {
  background: #0077ff;
  color: #ffffff;
}
.share__icon--max {
  background: #5534ef;
  color: #ffffff;
}
/* Разделитель */
.share__divider {
  height: 1px;
  background: #ebebeb;
  margin: 0;
}
/* Подсказка «Скопировано» */
.share__copied {
  text-align: center;
  font-size: 12px;
  color: #000000;
  padding: 0 16px 6px;
  display: none;
}
.share__copied.is-visible {
  display: block;
}
/*# sourceMappingURL=share.css.map */