/*
=========================================================
SELECTIVE CONTENT PROTECTION
=========================================================
*/

.gi-protected-content {

    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;

}

/*
=========================================================
PROTECT IMAGES
=========================================================
*/

.gi-protected-content img {

    -webkit-user-drag: none;
    user-drag: none;
	-webkit-touch-callout: none;
    pointer-events: auto;

}


/*
=========================================================
OPTIONAL PRINT WATERMARK
=========================================================
*/

@media print {

    body::before {

        content: "© GreatIndian.net";

        position: fixed;
        top: 40%;
        left: 10%;

        font-size: 60px;
        font-weight: bold;

        color: rgba(255, 140, 0, 0.12);

        transform: rotate(-25deg);

        z-index: 999999;

        pointer-events: none;

        white-space: nowrap;

    }

}