/* Без синего tap-highlight и outline на кнопках/ссылках */
*,
*::before,
*::after {
    -webkit-tap-highlight-color: transparent;
}

button,
a,
[role="button"],
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

button:focus,
a:focus,
[role="button"]:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

::selection {
    background: rgba(128, 128, 128, 0.35);
    color: inherit;
}

::-moz-selection {
    background: rgba(128, 128, 128, 0.35);
    color: inherit;
}
