/*---------------------------------------------------
    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;
  }
}
.social-networks__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 12px;
  text-align: center;
}
@media (min-width: 1024px) {
  .social-networks__title {
    text-align: left;
  }
}
.social-networks__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .social-networks__wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.social-networks__link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(100%) contrast(103%);
}
.social-networks__link:hover {
  filter: invert(50%) sepia(71%) saturate(3526%) hue-rotate(11deg) brightness(106%) contrast(96%);
}
.social-networks__link:last-child {
  margin-right: 0;
}
.social-networks__link.vk {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/icon-vk.svg');
  background-position: center;
}
.social-networks__link.facebook {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/icon-facebook.svg');
  background-position: center;
}
.social-networks__link.youtube {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/icon-youtube.svg');
  background-position: center;
}
.social-networks__link.telegram {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/icon-telegram.svg');
  background-position: center;
}

