html {
    height: 100%;
}

body {
    font-family: sans-serif;
    font-size: 14px;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 0 0;
    box-shadow: 0 0 9px 10px #f9f9f9;
    overflow-x: hidden;
}

.page {
    display: flex; 
    flex-direction: column;
}

.header {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 2px 0 2px 0;
    margin: 0 0 0 0;
    box-shadow: rgb(223, 227, 235) 0px 2px 12px 0px;
}

#headerIndentor {
    margin-left: 20px;
}

#title {
    color: black;
    font-family: Helvetica;
    font-size: 24px;
    font-weight: bold;
    flex: 1 1 auto;
}

#menuButton {}

.header-button {
    color: rgb(253, 126, 20);
    cursor: pointer;
    margin-right: 15px;
}

.search-button {}

.menuAndContent {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.gutter.gutter-horizontal {
    cursor: ew-resize;
}

.menu {
    padding: 0 0 0 0;
    margin: 5px 0 0 0;
    background-color: white;
    box-shadow: rgb(223, 227, 235) 2px 3px 12px 0px;
    overflow: auto;
}

.menu-dropdown-btn {
    padding: 6px 8px 6px 0px;
    text-decoration: none;
    color: rgb(253, 126, 20);
    display: block;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
}

.menu a {
    color: rgb(253, 126, 20);
    width: 100%;
}

.menu-label {
    flex: 1 1 auto;
    text-decoration: none;
}

.menu-expander {
    width: 16px;
    text-align: center;
}

.menu-dropdown-btn-1 {}

.menu-dropdown-btn-2 {}

.menu-dropdown-btn:hover {
    background-color: rgb(253, 237, 224);
}

.active {
    background-color: green;
    color: white;
}

.menu-dropdown-container {
    padding-left: 12px
}

.menu-level {}

.menu-level-1 {}

.menu-level-2 {}

.menu-dropdown-container-1 {}

.menu-dropdown-container-2 {}

.content {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
}

.content h1 {
    padding-left: 5px;
    padding-right: 5px;
    margin: 0 0 0 0;
    color: #fff;
    background: #f68934;
    font-weight: 700;
    font-size: 25px;
    text-transform: uppercase;
}

img {
    margin-left: 0;
    max-width: calc(100% - 30px);
}

@media (max-width: 799px) {
    .menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        height: 100%;
        z-index: 99;
    }
}

@media (min-width: 800px) {
    #menuButton {
        display: none;
    }
}