/**
 * Защита от выделения текста
 * Применяется только через JavaScript для SEO-безопасности
 */

/* Класс добавляется JS только для реальных пользователей */
.no-select-protection {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Разрешаем выделение в полях ввода */
.no-select-protection input,
.no-select-protection textarea,
.no-select-protection select,
.no-select-protection [contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Защита изображений */
.no-select-protection img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* НЕ ИСПОЛЬЗУЙТЕ эти свойства - они могут навредить SEO! */
/* 
   visibility: hidden;
   display: none;
   text-indent: -9999px;
   font-size: 0;
   color: transparent;
*/