/*
 * 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 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;
}

.cp-noscript-box {
    width: 100%;
    max-width: 560px;
    font-family: Arial, sans-serif;
}

.cp-noscript-title {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
}

.cp-noscript-text {
    font-size: 17px;
    line-height: 1.7;
}