body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    font-family: 'Poppins', sans-serif;
}

html {
    height: -webkit-fill-available;
    margin: 0;
}

main {
    display: flex;
    flex-wrap: nowrap;
    height: 100vh;
    height: -webkit-fill-available;
    max-height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
}

.title{
    color: #af730a;
}

a {
    color: #283618;
}

a:hover {
    color: #739c45;
}

.side-bar {
    background-color: white;
    color: #283618;
}

.nav-pills .nav-link {
    color: #283618;
}

.nav-pills .nav-link:hover {
    color: #739c45;
    background-color: #283618;
}

.nav-pills .nav-link.active {
    color: #283618;
    background-color: #739c45;
}

.content {
    flex-shrink: 0;
    width: calc(100% - 280px);
    height: 100vh;
    background-color: #f4f3ef;
    overflow-y: auto;
}


.dropdown-toggle {
    outline: 0;
}

.nav-flush .nav-link {
    border-radius: 0;
}

.nav-item {
    font-size: 0.7rem;
}

.btn-toggle {
    display: inline-flex;
    align-items: center;
    padding: .25rem .5rem;
    font-weight: 400;
    font-size: 0.7rem;
    color: #283618;
    background-color: transparent;
    border: 0;
}

.btn-toggle:hover,
.btn-toggle:focus {
    color: #739c45;
    background-color: #283618;

}

.btn-toggle::before {
    width: 1.25em;
    line-height: 0;
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,1%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    transition: transform .35s ease;
    transform-origin: .5em 50%;
}

.btn-toggle[aria-expanded="true"] {
    color: #739c45;
}

.btn-toggle[aria-expanded="true"]::before {
    transform: rotate(90deg);
}

.btn-toggle-nav a {
    display: inline-flex;
    padding: .1875rem .5rem;
    margin-top: .125rem;
    margin-left: 1.25rem;
    text-decoration: none;
}

.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
    background-color: #283618;
}

.scrollarea {
    overflow-y: auto;
}

.iframe {
    width: 100%;
    height: calc(100% - 98px);
    border: 0;
    display: block;
}