:root {
    --color--background: linear-gradient(to bottom, yellow 0, gold 45%, goldenrod 100%);
    --color-header--color: gold;
    --color-header--border-color: gold;
    --color-header--background-color: #0004;

    --color-window-content--background: #fff;
    --color-window--color: #000;
    --color-window-comment--color: #000a;
    --color-headings--color: gold;

    --color-button--background: linear-gradient(to bottom, #000d 0, #0009 100%);
    --color-button--color: #fff;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--color--background);
    background-attachment: fixed;
    color: var(--color-window--color);
    font-family: Arial, Helvetica, sans-serif;
}

section.content {
    max-width: 960px;
    width: 90%;
    margin: 45px auto;
    padding: 20px 40px;
    background: var(--color-window-content--background);
    border-radius: 9px;
    line-height: 1.67;
    box-shadow: 0 0 35px #000a;

    box-sizing: border-box;
}

section.content a {
    color: royalblue;
}

body > header {
    padding: 30px 0;
    text-align: center;
}

body > header > a {
    display: inline-block;
    padding: 15px;

    background: var(--color-button--background);
    color: var(--color-button--color);
    border-radius: 3px;
}

body > section > iframe[data-iframe-mode] {
    min-height: 167px;
    max-width: 960px;
    width: 90%;
    background: #fff;
}

body > section > iframe[data-iframe-mode="window-mode"] {
    position: relative;
    top: 20px;left: 50%;
    transform: translate(-50%);
    margin: 0 auto;
    border-top: 32px solid #efefef;
    border-radius: 9px 9px 0 0;
}

.commercial-offer--notify {
    color: #fff !important;
    background-color: #232323f0 !important;
    box-shadow: 0 0 15px #000 !important;
}

.commercial-offer--notify a {
    color: gold !important;
    text-decoration: none;
}

.commercial-offer--notify strong {
    color: goldenrod !important;
}

.commercial-offer--notify > article,
.commercial-offer--notify--about,
.commercial-offer--notify--demo-details {
    display: none;
}

.policy-notify-info-block--popup .cookie-popup--parent {
    background-color: #c0c0c0aa !important;
}

@media (max-height: 600px) {
  .commercial-offer--notify {
    max-width: 450px !important;
    padding: 25px 20px !important;
    left: initial !important;
    right: 25px !important;
    width: calc( 100vw - 30px ) !important;
  }
}

section.content pre code,
section.content .table-container {
    display: block;
    box-sizing: border-box;
    overflow-x: auto;
    width: 100%;
}

section.content table {
    font-family: monospace;
}

section.content table th,
section.content table td {
    padding: 5px 21px;
    border: 1px solid #ccc5;
}
section.content table thead th {
    background: #0001;
}
