@media print {
    html, body {
        /* Hide the whole page */
        display: none;
    }
}


/* html, body { user-select: none; } */

/* https://www.geeksforgeeks.org/is-it-possible-to-prevent-users-from-taking-screenshots-of-webpage/ */
.notAllowedContent {
    position: fixed !important;
    display: none;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 999999;
    padding: 30px;
    margin: auto !important;
    background: #FFF;
    margin: auto;
    max-width: max-content;
    max-HEIGHT: max-content;
    border-radius: 5px;
}
.notAllowedContent img {
    max-width: 150px;
    margin: 0px auto;
    margin-bottom: 20px;
    display: block;
}
.notAllowedContent button {
    max-width: 150px;
    margin: 0px auto;
    margin-top: 20px;
    display: block;
}
.notAllowedContent b {
    color: #545454;
}
.notAllowedContent ul {
    list-style: outside;
    padding-left: 40px;
    line-height: 30px;
    margin-top: 10px;
}
.notAllowedContentBG {
    position: fixed !important;
    display: none;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 999998;
    background: #0000008f;
}

iframe {
	border: 0px;
}