@charset "utf-8";

/* -------- MANUAL CSS --------------- */


/* GENERAL */

body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

* {
    font-family: "Myriad Pro", Helvetica, Arial, "sans-serif";
    margin: 0;
}

p {
    font-weight: 400;
    font-size: 1.0em;
    line-height: 1.35em;
    color: #000000;
    margin: 0.2em 0 0.3em 0;
}


/* ADMONITIONS */

div.warning>div.wrapper-body>p:first-child:before,
div.electric_shock>div.wrapper-body>p:first-child:before,
div.hot_surface>div.wrapper-body>p:first-child:before,
div.fire>div.wrapper-body>p:first-child:before,
div.gas>div.wrapper-body>p:first-child:before,
div.information>div.wrapper-body>p:first-child:before {
    background-size: 2.0em 1.4em;
    background-position: bottom left;
    background-repeat: no-repeat;
    display: inline-block;
    width: 2.0em;
    height: 1.4em;
    margin-right: 0.4em;
    content: "";
}

div.warning>div.wrapper-body>p:first-child:before {
    background-image: url('../icons/WARNING.svg');
}

div.warning {
    margin: 1.0em 0 0.6em 0;
}

div.warning .wrapper-title,
div.warning p {
    font-weight: 700;
    font-size: 1.0em;
    color: #000000;
}

div.electric_shock>div.wrapper-body>p:first-child:before {
    background-image: url('../icons/ELECTRIC SHOCK.svg');
}

div.hot_surface>div.wrapper-body>p:first-child:before {
    background-image: url('../icons/HOT SURFACE.svg');
}

div.fire>div.wrapper-body>p:first-child:before {
    background-image: url('../icons/FIRE.svg');
}

div.gas>div.wrapper-body>p:first-child:before {
    background-image: url('../icons/GAS CONNECTION.svg');
}

div.information>div.wrapper-body>p:first-child:before {
    background-image: url('../icons/TIP.svg');
}

div.information {
    font-style: italic;
    margin: 1.0em 0 0.6em 0;
}


/* OTHER WRAPPERS */

div.figure li {
    break-inside: avoid-column;
}

div.ns>p.wrapper-title {
    display: none;
}

div.symbol_explanation {
    margin-top: 2.0em;
}

div.read_carefully {
    margin-top: 1.0em;
}

div.read-carefully::before {
    background-position: bottom left;
    background-repeat: no-repeat;
    /*background-image: url('lucka_nasvet.svg');*/
}


/* COLLAPSIBLE MENU */

input[type='checkbox'] {
    display: none;
}

.lbl-toggle {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    /*padding: 1rem;*/
    /*color: #3d6b3f;*/
    cursor: pointer;
}

.toggle+lbl-toggle {
    border-radius: 7px;
    transition: all 0.25s ease-out;
}

.lbl-toggle:hover {
    color: #323232;
}

.toggle+.lbl-toggle::before {
    content: ' ';
    display: inline-block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid currentColor;
    vertical-align: middle;
    margin-right: .7em;
    transform: translateY(-2px);
    transition: transform .15s ease-out;
}

.menu-item a {
    text-decoration: none;
    /*color: #323232;*/
    font-size: 0.9em;
    color: #000000;
}


/* Section numbers in menu */


/*
.menu-item a::before {
    display: inline-block;
    content: attr(data-number);
    margin-right: 0.5em;
}
*/


/*
.lbl-toggle>a {
    color: #3d6b3f;
}

.lbl-toggle>a:hover {
    color: #323232;
}
*/

#menu-top+label {
    background-color: #eeeeee;
    padding: 0.3rem;
}

.menu-item {
    padding: 0.2em 1.0em;
    background-color: #eeeeee;
}

.menu-collapsible,
.menu {
    max-height: 0px;
    overflow: hidden;
    transition: max-height .15s ease-in-out;
    background-color: #eeeeee;
}

.toggle:checked+.lbl-toggle+.menu-collapsible,
#menu-top:checked+.lbl-toggle+div.menu {
    max-height: 100vh;
}

.toggle:checked+.lbl-toggle:before {
    transform: rotate(90deg) translateX(-3px);
}

.toggle:checked+.lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}


/* HEADINGS */

div.document-titles {
    margin: 0 0 1.0em 0;
}

div.document-titles p.maintitle,
div.document-titles p.subtitle {
    font-weight: 700;
    font-size: 1.8em;
    color: #000000;
    margin: 0.2em 0 0.5em 0;
}

h1 {
    font-weight: 700;
    font-size: 1.4em;
    color: #000000;
    margin: 2em 0 0.5em 0;
}

h2 {
    font-weight: 700;
    font-size: 1.2em;
    color: #000000;
    /*color: #EC1C24;*/
    margin: 1em 0 0.5em 0;
    clear: both;
}

h3 {
    font-weight: 700;
    font-size: 1.3em;
    color: #000000;
    margin: 0.5em 0 0.5em 0;
}

h4 {
    font-weight: 700;
    font-size: 1em;
    color: #000000;
    margin: 0.5em 0 0.5em 0;
}


/* Display section numbers */


/*
.section-title::before {
    display: inline-block;
    content: attr(data-number);
    margin-right: 0.5em;
}
*/


/* TABLES */

table {
    position: relative;
    border-collapse: collapse;
    /* change to separate if sticky table headers are used */
    border-spacing: 0px;
    margin-top: 1.0em;
    margin-bottom: 2.0em;
    overflow-x: auto;
    /*word-break: break-all;*/
}

th,
td {
    /*border: solid thin #000000;*/
    padding: 0.4em;
    background-clip: padding-box;
}

table p,
table li {
    font-size: 0.9em;
}

table ul,
table ol {
    padding-left: 0.8em;
}

thead th {
    /* Top positioning is defined in the Responsive section */
    /*position: sticky;*/
    background-color: #E6E8EC;
    vertical-align: bottom;
}

span.table-note {
    vertical-align: super;
    font-weight: 400;
    font-size: 0.8em;
}

span.table-note:after {
    content: ")";
}

div.annotation {
    display: none;
}

:hover+div.annotation {
    display: block;
}

div.vertical {
    transform: rotate(270deg);
    white-space: nowrap;
}


/*
p.table-note span.table-note-number {
    vertical-align: super;
    font-size: 0.8em;
}

p.table-note span.table-note-number:after {
    content: ")";
}
*/

table[data-type-grey] tr:nth-child(even) {
    background-color: #e6e6e6;
}

table[data-type-grey] tr:nth-child(odd) {
    background-color: #f4f4f4;
}


/* VARIOUS TYPES */

div.section[data-flexclass='safety'] {
    font-size: 1.2em;
    clear: both;
}

div.section[data-flexclass='safety']>h1::after {
    float: right;
    background-size: 3.0em 3.0em;
    background-position: bottom left;
    background-repeat: no-repeat;
    background-image: url('../icons/WARNING.svg');
    width: 3.0em;
    height: 3.0em;
    content: "";
}

[data-type-BiggerFont] {
    font-size: 1.4em;
}

span.affix {
    margin-right: 1em;
}


/* LIST NUMBERING */

ol {
    list-style: none;
    counter-reset: listcounter;
    padding-left: 0em;
}

ol li:before {
    display: inline-block;
    counter-increment: listcounter;
    content: counter(listcounter) ". ";
}

ol li>* {
    padding-left: 1.5em;
    position: relative;
    top: -1.45em;
}

ol[data-type-continued] {
    counter-reset: none !important;
}

div.definitions ol {
    padding-inline-start: 0;
}

div.definitions ol li>*:first-child:before {
    width: 2.0em;
}

div.definitions>p {
    margin-bottom: 1.0em;
}

ul {
    padding-inline-start: 1em;
}


/* FIGURES */

img {
    margin-bottom: 2em;
}

img[data-type-inline] {
    margin: 0;
    padding: 0;
}

div.figure[data-type-calloutcolumn] li {
    border-top: dashed 1px #000000;
    display: table;
    table-layout: fixed;
    width: 100%;
}

div.figure[data-type-calloutcolumn] li>*:first-child:before {
    content: '';
    counter-increment: none;
}

div.figure[data-type-calloutcolumn] li:before {
    counter-increment: listcounter;
    display: table-cell;
    content: counter(listcounter);
    font-size: 1.5em;
    width: 1.5em;
    font-weight: bold;
}


/* TOP LAYOUT */


/* Positioning and sizing are defined in the Responsive section */

#menu-top {
    color: #3d6b3f;
    text-decoration: none;
}

a#toplink {
    position: fixed;
    right: 1.0em;
    text-decoration: none;
    color: #000000;
    font-size: 1.3rem;
}

div#menu-top {
    background-color: #E6E8EC;
    padding: .5rem 1rem;
    opacity: 100%;
    z-index: 1;
}

div#menu {
    background-color: #E6E8EC;
}

div#content {
    background-color: #FFFFFF;
    padding: .5rem 1rem;
}


/* --------  RESPONSIVE  ------------- */


/* -------- MOBILE 766PX and down ------------- */

@media (max-width: 767px) {
    #menu-top+label::before {
        background-image: url('../icons/menu.svg');
        background-position-y: top;
        background-repeat: no-repeat;
        background-size: 1.8rem 1.2rem;
        margin-left: 0.7rem;
        display: inline-block;
        width: 3.0rem;
        height: 2.0rem;
        content: "";
    }
    #menu-top:checked+label::before {
        background-image: url('../icons/cross.svg');
        background-position-y: top;
        background-repeat: no-repeat;
        background-size: 1.8rem 1.2rem;
        margin-left: 0.7rem;
        display: inline-block;
        width: 3.0rem;
        height: 2.0rem;
        content: "";
    }
    #menu-top+label {
        position: fixed;
        left: 0;
        top: 0;
        height: 2.0rem;
        width: 100%;
        z-index: 1;
    }
    div.menu {
        position: fixed;
        top: 2.0rem;
        width: 100%;
        overflow-y: scroll;
        z-index: 1;
    }
    div#content {
        position: fixed;
        top: 2.0rem;
        max-height: 100vh;
        width: 100%;
        overflow-y: scroll;
        /*margin-top: 2.0rem;*/
    }
    thead th {
        top: 2.0rem;
    }
    img,
    table {
        max-width: 100vw;
    }
    [data-type-landscape] img,
    [data-type-landscape] table {
        max-width: 200vw;
    }
    div.figure[data-type-callout]>div.graphic img,
    div.figure[data-type-calloutNarrow]>div.graphic img,
    div.figure[data-type-calloutWide]>div.graphic img,
    div.figure[data-type-calloutcolumn] img {
        max-width: 100vw;
    }
}


/* -------- TABLET 768PX - 979PX ------------- */

@media (max-width: 979px) and (min-width: 768px) {
    #menu-top+label::before {
        background-image: url('../icons/menu.svg');
        background-position-y: top;
        background-repeat: no-repeat;
        background-size: 1.8rem 1.2rem;
        margin-left: 0.7rem;
        display: inline-block;
        width: 3.0rem;
        height: 2.0rem;
        content: "";
    }
    #menu-top:checked+label::before {
        background-image: url('../icons/cross.svg');
        background-position-y: top;
        background-repeat: no-repeat;
        background-size: 1.8rem 1.2rem;
        margin-left: 0.7rem;
        display: inline-block;
        width: 3.0rem;
        height: 2.0rem;
        content: "";
    }
    #menu-top+label {
        position: fixed;
        left: 0;
        top: 0;
        height: 2.0rem;
        width: 100%;
        z-index: 1;
    }
    div.menu {
        position: fixed;
        top: 2.0rem;
        width: 100%;
        overflow-y: scroll;
        z-index: 1;
    }
    div#content {
        position: fixed;
        top: 2.0rem;
        max-height: 100vh;
        width: 100%;
        overflow-y: scroll;
        /*margin-top: 2.0rem;*/
    }
    thead th {
        top: 2.0rem;
    }
    img,
    table {
        max-width: 100vw;
    }
    [data-type-landscape] img,
    [data-type-landscape] table {
        max-width: 200vw;
    }
    /* CALLOUT WRAPPERS */
    div.figure[data-type-callout],
    div.figure[data-type-calloutNarrow],
    div.figure[data-type-calloutWide] {
        column-count: 2;
    }
    div.figure[data-type-callout]>div.graphic div.figure[data-type-calloutNarrow]>div.graphic,
    div.figure[data-type-calloutWide]>div.graphic {
        break-after: column;
    }
    /*div.figure[data-type-callout] ol {
        padding-left: 1em;
    }*/
    div.figure[data-type-calloutcolumn] ol {
        column-count: 2;
    }
    div.figure[data-type-callout]>div.graphic img,
    div.figure[data-type-calloutNarrow]>div.graphic img,
    div.figure[data-type-calloutWide]>div.graphic img,
    div.figure[data-type-calloutcolumn]>img {
        max-width: 100vw;
    }
}


/* -------- FULL SCREEN OVER 980PX ------------- */

@media (min-width: 980px) {
    #menu-top+label::before {
        background-image: url('../icons/menu.svg');
        background-position-y: top;
        background-repeat: no-repeat;
        background-size: 1.8rem 1.2rem;
        margin-left: 0.7rem;
        display: inline-block;
        width: 3.0rem;
        height: 2.0rem;
        content: "";
    }
    #menu-top+label {
        position: fixed;
        left: 0;
        top: 0;
        height: 2.0rem;
        width: 30vw;
    }
    div.menu {
        position: fixed;
        left: 0;
        top: 2.0rem;
        width: 30vw;
        overflow-y: auto;
        max-height: 100vh;
    }
    a#toplink {
        left: 27.5vw;
    }
    div#content {
        margin-left: 30vw;
        margin-top: 0;
    }
    #menu-top+.lbl-toggle::before {
        border: none;
    }
    thead th {
        top: 0;
    }
    img,
    table {
        max-width: 65vw;
    }
    [data-type-landscape] img,
    [data-type-landscape] table {
        max-width: 100vw;
    }
    /* CALLOUT WRAPPERS */
    div.figure[data-type-callout] {
        column-count: 2;
    }
    div.figure[data-type-callout]>div.graphic {
        break-after: column;
    }
    /*    div.figure[data-type-callout] ol {
        padding-left: 1em;
    }*/
    div.figure[data-type-calloutcolumn] ol {
        column-count: 3;
    }
    div.figure[data-type-callout]>div.graphic img,
    div.figure[data-type-calloutNarrow]>div.graphic img,
    div.figure[data-type-calloutWide]>div.graphic img,
    div.figure[data-type-calloutcolumn]>img {
        width: 65vw;
    }
}