* {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

input, textarea, select, [contenteditable="true"],
.allow-select, .allow-copy {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

img {
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

img.clickable {
    pointer-events: auto;
}

::selection {
    background: transparent;
    color: inherit;
}

input::selection, textarea::selection, select::selection,
.allow-select::selection, .allow-copy::selection {
    background: #5B46F7;
    color: #fff;
}

