@media print {

    header, footer{
        display: none!important;
    }

}
* {
    transition: background-color 300ms ease, color 300ms ease;
}
*:focus {
    outline: none;
}
html, body {
    color: rgba(33, 37, 41, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 16px;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
header {
    background-color: rgba(247, 248, 249, 1);
    padding: .4rem 0 0;
}
.menu {
    padding: .4rem 2rem;
}
header ul {
    border-bottom: 1px solid rgba(242, 242, 242, 1);
    list-style-type: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    text-align: right;
}
header li {
    display: inline-block;
}
header li a {
    border-radius: 5px;
    color: rgba(0, 0, 0, .8);
    display: block;
    height: 44px;
    text-decoration: none;
}
header li.menu-item a {
    border-radius: 5px;
    margin: 5px 0;
    height: 38px;
    line-height: 36px;
    padding: .4rem .65rem;
    text-align: center;
    text-transform: uppercase;
}
header li.menu-item a:hover,
header li.menu-item a:focus {
    color: black;
}
header .logo {
    float: left;
    height: 44px;
    padding: .4rem .5rem;
    max-width: 230px;
}

header .logo img {
    max-height: 44px;
    max-width: 100%;
}
header .menu-toggle {
    display: none;
    float: right;
    font-size: 2rem;
    font-weight: bold;
}
header .menu-toggle button {
        border: none;
    border-radius: 3px;
    color: rgb(0 0 0);
    cursor: pointer;
    font: inherit;
    font-size: 1.6rem;
    padding: 0;
    margin: 8px 0;
    overflow: visible;
    width: 40px;
}
section {
    margin: 0 auto;
    max-width: 1280px;
    padding: 2.5rem 1.75rem 3.5rem 1.75rem;

    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box;    /* Firefox, other Gecko */
box-sizing: border-box;         /* Opera/IE 8+ */
}
section.content {
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
}

section h1 {
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}
section h2 {
    font-size: 120%;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}
section pre {
    background-color: rgba(247, 248, 249, 1);
    border: 1px solid rgba(242, 242, 242, 1);
    display: block;
    font-size: .9rem;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    white-space: pre-wrap;
    word-break: break-all;
}
section code {
    display: block;
}
section a {
    color: rgba(221, 72, 20, 1);
}
section svg {
    margin-bottom: -5px;
    margin-right: 5px;
    width: 25px;
}
.further {
    background-color: rgba(247, 248, 249, 1);
    border-bottom: 1px solid rgba(242, 242, 242, 1);
    border-top: 1px solid rgba(242, 242, 242, 1);
}
.further h2:first-of-type {
    padding-top: 0;
}
.svg-stroke {
    fill: none;
    stroke: #000;
    stroke-width: 32px;
}
footer {
    background-color: rgba(221, 72, 20, .8);
    text-align: center;
}
footer .environment {
    color: rgba(255, 255, 255, 1);
    padding: 2rem 1.75rem;
}
footer .copyrights {
    background-color: rgba(62, 62, 62, 1);
    color: rgba(200, 200, 200, 1);
    padding: .25rem 1.75rem;
}

.content {
    min-height: calc(100vh - 238px);
}

@media (max-width: 820px) {

.rightmenu {
position: absolute;
        top: 72px;
        left: 0px;
        width: 100%;
        background: white;
        padding: 12px 0px;
        z-index: 222;
}

.content {
    min-height: calc(100vh - 310px);
}
    .menu {
        padding: .4rem 1rem;
    }

    header ul {
        padding: 0;
    }
    header .menu-item {
        margin: 0 15px;
        width: calc(100% - 30px);
    }
    header .menu-toggle {
        display: block;
    }
    header .nomobile {
        display: none;
    }
    header li.menu-item a {
        background-color: rgb(34 130 51 / 29%);
                text-transform: uppercase;
    }
    header li.menu-item a:hover,
    header li.menu-item a:focus {
        background-color: rgba(221, 72, 20, .7);
        color: rgba(255, 255, 255, .8);
    }
}