body {
    margin: 0;
    background-color: var(--background-color);
    font-family: 'Open Sans', sans-serif;
    height: 100vh;
    overflow: hidden;
}

input, select, textarea, button {
    font-family: 'Open Sans', sans-serif;
}

.navbar {
    display: flex;
    width: 90%;
    padding: 1vh 5%;
    align-items: center;
    background-color: var(--foreground-color);
    border-bottom: .3vh solid gray;
}

.navbar .left {
    flex-grow: 100;
}

.navbar .left img {
    height: 7vh;
    width: auto;
}

.navbar .right .search {
    display: flex;
    position: relative;
    align-items: center;
}

.navbar .right .search i {
    position: absolute;
    left: .6vw;
    color: #fff;
    opacity: .5;
    font-size: 1.6vh;
}

.navbar .right .search input[type=text] {
    width: 18vw;
    font-size: 1.6vh;
    color: #fff;
    background-color: var(--background-color);
    padding: 1vh 1.5vw 1vh 2vw;
    border: none;
    outline: none;
    border-radius: .8vh;
}

.navbar .right .search .searchResults {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    top: 5vh;
    background-color: var(--background-color);
    border-radius: .8vh;
    z-index: 2;
}

.navbar .right .search .searchResults.shown {
    display: flex;
    flex-wrap: wrap;
    outline: .2vh solid gray;
}

.navbar .right .search .searchResults .item {
    display: block;
    width: 100%;
    padding: 1vh 5%;
    text-decoration: none;
}

.navbar .right .search .searchResults a.item:hover {
    background-color: var(--foreground-color);
    cursor: pointer;
}

.navbar .right .search .searchResults .item h1 {
    font-size: 1.3vh;
    color: var(--main-color);
    margin: 0vh 0% .5vh 0%;
    text-transform: uppercase;
}

.navbar .right .search .searchResults .item p {
    font-size: 1vh;
    color: #fff;
    margin: 0;
}

.navbar .right .search .searchResults .item p.noData {
    font-size: 1.5vh;
}

.navbar .right .search .searchResults .item p:nth-of-type(2) {
    margin-top: .5vh;
    opacity: .5;
}

.body {
    display: flex;
    padding: 5vh 0% 0vh 0%;
}

.body .left {
    margin-left: 2.5%;
    border-top: .2vh solid gray;
    width: 17vw;
}

.body .left .item {
    border-bottom: .2vh solid gray;
    padding: 1vh .75vw;
}

.body .left .item a {
    display: block;
    font-size: 1.5vh;
    color: #fff;
    margin: 0;
    position: relative;
    padding: .25vh 0%;
    font-weight: 600;
    text-decoration: none;
}

.body .left .item a.active {
    margin-bottom: 1vh;
}

.body .left .item a.active.noMargin {
    margin-bottom: 0vh;
}

.body .left .item a.active:before {
    content: '';
    position: absolute;
    top: 0vh;
    left: -.75vw;
    width: .2vw;
    height: 100%;
    background-color: var(--main-color);
}

.body .left .item .subsections {
    padding-left: .75vw;
}

.body .right {
    padding: 0vh 7vw 2vh 5vw;
    width: 71vw;
    height: 83.4vh;
    overflow: auto;
}

.body .right .pageTitle {
    font-size: 1.7vh;
    color: var(--main-color);
    margin: 0vh 0% 1.5vh 0%;
    text-transform: uppercase;
}

.body .right .pageDescription {
    font-size: 1.4vh;
    color: #fff;
    margin: 0;
}

@media screen and (max-width: 600px), (orientation : portrait) {
    body {
        height: auto;
        overflow: auto;
    }

    .navbar {
        flex-wrap: wrap;
    }

    .navbar .left {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-bottom: 2vh;
    }

    .navbar .right {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .navbar .right .search i {
        left: 2.5vw;
    }

    .navbar .right .search input[type=text] {
        width: 72vw;
        padding: 1vh 1.5vw 1vh 8vw;
    }

    .body {
        display: block;
        width: 80%;
        margin: 5vh 10% 0vh 10%;
        padding: 0vh 0%;
    }

    .body .left {
        width: 100%;
        margin: 0vh 0% 4vh 0%;
    }

    .body .left .item {
        padding: 1vh 2vw;
    }

    .body .left .item a.active:before {
        width: .4vw;
        left: -2vw;
    }

    .body .left .item .subsections a.active:before {
        width: .5vw;
    }

    .body .left .item .subsections {
        padding-left: 2.5vw;
    }

    .body .right {
        width: 100%;
        height: auto;
        overflow: auto;
        padding: 0vh 0% 2vh 0%;
    }
}