html {
    font-size: 14px;
}

/*html, body {
    height: 100%;
}
*/
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

header {
    background-color: white;
    color: #979797;
}

footer {
    color: black;
    background-color: white;
}

#sidebar {
    color: white;
    background-color: #346095;
    /*width: 300px;
    max-width: 300px;*/
}


#main-content {
    background-color: #EAEAEA;
}


.btn-toggle {
    display: inline-flex;
    align-items: center;
    padding: .15rem .15rem;
    font-weight: 600;
    color: white;
    background-color: transparent;
    border: 0;
}

    .btn-toggle:hover,
    .btn-toggle:focus {
        color: white;
    }

    .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%28255,255,255,.5%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: white;
    }

        .btn-toggle[aria-expanded="true"]::before {
            transform: rotate(90deg);
        }

.btn-toggle-no-items {
    display: inline-flex;
    align-items: center;
    padding: .25rem .5rem;
    font-weight: 600;
    color: white;
    background-color: transparent;
    border: 0;
}

    .btn-toggle-no-items:hover,
    .btn-toggle-no-items:focus {
        color: white;
    }

.btn-toggle-nav a {
    display: inline-flex;
    padding: .1875rem .5rem;
    margin-top: .125rem;
    margin-left: 1.25rem;
    text-decoration: none;
}


.link-white {
    color: #FFFFFF;
}

    .link-white:hover, .link-white:focus {
        color: #AAAAAA;
    }

.link {
    color: #025EE8
}

#report-title {
    color: #346095;
}

li .active a {
    background-color: rgb(85, 120, 68);
}

.bi {
    display: inline-block;
    vertical-align: -.125em;
    fill: currentcolor
}

/*.row.collapse {
    margin-left: -300px;
    left: 0;
    transition: margin-left .15s linear;
}

.row.collapse.show {
    margin-left: 0 !important;
}

.row.collapsing {
    margin-left: -300px;
    left: -0.05%;
    transition: all .15s linear;
}

@media (max-width:768px) {

    .row.collapse,
    .row.collapsing {
        margin-left: 0 !important;
        left: 0 !important;
        overflow: visible;
    }

    .row > .sidebar.collapse {
        display: flex !important;
        margin-left: -100% !important;
        transition: all .25s linear;
        position: fixed;
        z-index: 1050;
        max-width: 0;
        min-width: 0;
        flex-basis: auto;
    }

    .row > .sidebar.collapse.show {
        margin-left: 0 !important;
        width: 100%;
        max-width: 100%;
        min-width: initial;
    }

    .row > .sidebar.collapsing {
        display: flex !important;
        margin-left: -10% !important;
        transition: all .2s linear !important;
        position: fixed;
        z-index: 1050;
        min-width: initial;
    }
}
*/

@media (max-width: 991px) {
    .main-page .container-fluid {
        position: relative;
    }

    .main-page .mobile-side-nav {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -300px;
        -ms-flex: 0 0 300px;
        flex: 0 0 300px;
        max-width: 300px;
        min-width: 300px;
        background-color: #fff;
        box-shadow: 0px 0px 5px #000;
        transition: all 0.5s;
        z-index: 999;
        padding: 15px;
    }

        .main-page .mobile-side-nav.menu-open {
            left: 0;
        }

    body.back-drop:before {
        content: "";
        background-color: rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 11;
    }
}
