/* Wrapper that holds image and overlay */
/*.image-protect-wrapper {
    position: relative;
    width: 100%;
}

.image-protect-wrapper img {
    display: block;
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
    pointer-events: none;
    max-width: 100%;
    height: auto;
}*/

/* Transparent overlay placed above the image to capture contextmenu/drag */
/*.image-protect-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10;
    cursor: default;
}*/

/* Make sure overlays don't break layout for background-image based elements */
/*.image-protect-wrapper .protect-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}*/