/* =========================
PAGE DECOR
========================= */
.contact-page-decor {
    position: relative;
    min-height: 100vh;
}

/* LEVÁ */
.contact-page-decor::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50px;
    width: 150px;
    height: 100%;
    background: url("/themes/pohadka/images/decor-left.png") repeat-y left top;
    background-size: contain;
    opacity: .7;
    pointer-events: none;
    z-index: 0;
}

/* PRAVÁ */
.contact-page-decor::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50px;
    width: 150px;
    height: 100%;
    background: url("/themes/pohadka/images/decor-right.png") repeat-y right top;
    background-size: contain;
    opacity: .7;
    pointer-events: none;
    z-index: 0;
}

/* zesvětlení */
.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 245, 235, .55);
    z-index: 1;
}

/* obsah */
.contact-page-decor .container {
    position: relative;
    z-index: 2;
}