/* =========================================================
   IMAGE PROTECTION
   Prevent casual dragging and selection of website images
   ========================================================= */

img {
    -webkit-user-drag: none !important;
    user-drag: none !important;

    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}