/*
 * Copy Protection
 * Version: 2.0.0
 */


/*
 * Prevent normal text selection.
 */
body {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}


/*
 * Keep form fields and editable elements usable.
 */
input,
textarea,
select,
option,
button,
[contenteditable="true"],
[contenteditable=""],
[contenteditable="plaintext-only"] {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}


/*
 * JavaScript disabled overlay.
 */
.cp-noscript-overlay {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 2147483647;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;
    box-sizing: border-box;

    background: #fff;
    color: #111;

    text-align: center;
}


/*
 * Message is generated by CSS,
 * not added as HTML text.
 */
.cp-noscript-overlay::before {
    content: "يجب تفعيل JavaScript لاستخدام هذا الموقع.";

    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
}