/* =====================================================
   Watermark
===================================================== */

.watermark {
    position: relative;
    overflow: hidden;
}

.watermark::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        url("../images/watermark.svg")
        center center
        no-repeat;

    background-size: 320px;

    opacity: .04;

    pointer-events: none;
    user-select: none;

    z-index: 0;
}

.watermark > * {
    position: relative;
    z-index: 1;
}

/* =====================================================
   Print
===================================================== */

@media print {

    body {
        background: white;
        color: black;
    }

    .nav,
    .top-actions,
    .btn,
    button {
        display: none !important;
    }

    .content {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .panel,
    .card {
        border: none;
        box-shadow: none;
    }

    .watermark::after {
        opacity: .06;
    }

}
