/* Protected Banner */

.protected-banner{
    position:relative;
    display:block;
    overflow:hidden;
}

.protected-banner img:first-child{
    width:100%;
    display:block;

    -webkit-user-select:none;
    -moz-user-select:none;
    user-select:none;

    -webkit-user-drag:none;
    pointer-events:none;
}

/* Invisible Overlay */

.image-protection{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    z-index:100;

    cursor:default;

    -webkit-user-select:none;
    -moz-user-select:none;
    user-select:none;

    -webkit-user-drag:none;
    pointer-events:auto;
}