/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.rich[contenteditable="true"] {
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  user-modify: read-only;
}
/* Colors */
/* Фильтры для svg иконок https://codepen.io/sosuke/pen/Pjoqqp */
/* Breakpoints */
/* Base heading style */
/* Base button style */
/* old colors */
/* Fonts */
/* variables */
/* filters https://codepen.io/sosuke/pen/Pjoqqp */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes button-loading {
  0% {
    background-color: #F2F2F2;
    border-color: #F2F2F2;
  }
  50% {
    background-color: #717171;
    border-color: #717171;
  }
  100% {
    background-color: #F2F2F2;
    border-color: #F2F2F2;
  }
}
.tingle-modal .share__popup {
  display: block;
}
.tingle-modal.share-popup .tingle-modal-box {
  max-width: 420px;
}
.share__button {
  padding: 24px 0 0;
  outline: none;
  border: none;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #000;
}
@media (min-width: 768px) {
  .share__button {
    padding: 0 0 0 29px;
  }
}
.share__button::before {
  content: "";
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/Share_Android_24_Regular.svg');
  background-position: center;
  filter: invert(92%) sepia(1%) saturate(0%) hue-rotate(176deg) brightness(86%) contrast(88%);
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
}
@media (min-width: 768px) {
  .share__button::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.share__button:focus,
.share__button:hover {
  color: #EF7D05;
}
.share__button:focus::before,
.share__button:hover::before {
  filter: invert(50%) sepia(71%) saturate(3526%) hue-rotate(11deg) brightness(106%) contrast(96%);
}
.share__popup {
  display: none;
}
.share__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  margin: 0 0 30px;
}
.share__link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF;
  position: relative;
}
.share__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.share__link_vkontakte::before {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/vk.svg');
  background-position: center;
  background-size: auto;
}
.share__link_telegram::before {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/telegram.svg');
  background-position: center;
  background-size: auto;
}
.share__link_whatsapp::before {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/whatsapp.svg');
  background-position: center;
  background-size: auto;
}
.share__email {
  display: block;
  width: 100%;
  max-width: 60px;
  height: 44px;
  background-color: #F2F2F2;
  border-radius: 5px;
  position: relative;
}
.share__email::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/Mail_24_Regular.svg');
  background-position: center;
}
.share__email:hover::before {
  filter: invert(50%) sepia(71%) saturate(3526%) hue-rotate(11deg) brightness(106%) contrast(96%);
}
.share__bottom-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 15px;
}
@media (min-width: 575px) {
  .share__bottom-btns {
    gap: 0 20px;
  }
}
.share__bottom {
  position: relative;
}
.share__bottom::before {
  content: '';
  display: block;
  height: 1px;
  border-top: 1px solid #ECECEC;
  background-color: #fff;
  width: calc(100% + 30px);
  margin: 0 -15px;
  padding: 15px 0 0;
}
@media (min-width: 575px) {
  .share__bottom::before {
    width: calc(100% + 60px);
    margin: 0 -30px;
    padding: 30px 0 0;
  }
}
.share-copy {
  width: 100%;
  position: relative;
}
.share-copy__status_button {
  cursor: pointer;
  box-shadow: none;
  box-sizing: border-box;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  letter-spacing: 0;
  transition: all 0.35s;
  background-color: #000;
  border-color: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 15px;
  font-size: 14px;
  width: 100%;
  position: relative;
  padding: 11px 6px;
  gap: 5px;
}
.share-copy__status_button.disabled,
.share-copy__status_button:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.share-copy__status_button:hover,
.share-copy__status_button:focus {
  background-color: #EF7D05;
  border-color: #EF7D05;
  color: #fff;
}
.share-copy__status_button[disabled],
.share-copy__status_button[disabled]:hover,
.share-copy__status_button[disabled]:focus {
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #fff;
}
@media (min-width: 575px) {
  .share-copy__status_button {
    font-size: 16px;
    gap: 10px;
  }
}
.share-copy__status_button::before {
  content: "";
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/Share_Android_24_Regular.svg');
  background-position: center;
  width: 24px;
  height: 24px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(100%) contrast(103%);
}
.share-copy__status_copied {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: absolute;
  inset: 0;
  cursor: pointer;
  box-shadow: none;
  box-sizing: border-box;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  letter-spacing: 0;
  transition: all 0.35s;
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 15px;
  pointer-events: none;
  font-size: 14px;
  width: 100%;
  padding: 11px 6px;
  gap: 5px;
}
.share-copy__status_copied.disabled,
.share-copy__status_copied:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.share-copy__status_copied:hover,
.share-copy__status_copied:focus {
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #EF7D05;
}
.share-copy__status_copied[disabled],
.share-copy__status_copied[disabled]:hover,
.share-copy__status_copied[disabled]:focus {
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #fff;
}
@media (min-width: 575px) {
  .share-copy__status_copied {
    font-size: 16px;
    gap: 10px;
  }
}
.share-copy__status_copied::before {
  content: "";
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/Share_Android_24_Filled.svg');
  background-position: center;
  width: 24px;
  height: 24px;
  filter: invert(0%) sepia(94%) saturate(0%) hue-rotate(240deg) brightness(102%) contrast(101%);
}
.share-copy.share-copy_copied .share-copy__status_button {
  opacity: 0;
  visibility: hidden;
}
.share-copy.share-copy_copied .share-copy__status_copied {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  margin: 0;
}

