﻿
.local_footer {
    font-size: 90%;
    font-weight: 500;
    text-align: center;
    background-color: #f8f8f8;
    border-top: 2px solid #E2E8F0;
    margin-top: 2.5em;
    height: 1.75em;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
}

.local_footer .sticky {
    position: sticky;
}

/* --------------------------- */

.local_header {
    border-bottom: 1px solid #E2E8F0;
}

.local_header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 0rem;
    background-color: #f8f8f8;
    border-bottom: 2px solid #E2E8F0;
}

.local_header .nav-logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 900;
    color: #006060;
}

.local_header .hamburger {
    border: 2px solid #ccc;
    display: none;
    padding-left: 4px;
    padding-right: 4px;
    margin: 0.2em;
    margin-right: 1.0em;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.local_header .bar {
    display: block;
    width: 20px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    background-color: #808080;
    color: #006060;
}

.local_header .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 1em;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
}

.local_header .nav-item {
    margin-left: 1.0rem;
}

.local_header .nav-link.active {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    pointer-events: none;
    cursor: default;
    color:#202020;
}

.local_header .nav-link {
    font-size: 1.0rem;
    padding: 0.1em;
    font-weight: 800;
    color: #808080;
}

.local_header .nav-link:hover {
    color: #303030;
}

.local_header li {
    list-style: none;
}

.local_header a.dropdown-item {
    padding: 0rem 0.4rem;
    margin: 0rem 0rem;
    font-size: 0.8rem;
    font-weight: 800;
    background-color: #f8f8f8;
}

.local_header .dropdown-menu {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-left: 0rem;
}

.local_header .dropdown-menu a.nav-link {
    font-size: 1.0rem !important;
}

.local_header a {
    text-decoration:none;
}

.local_header a .active {
    font-size: 1.0rem !important;
}

.local_header .dropdown-menu a.nav-link.active {
    font-size: 1.0rem !important;
    text-decoration: underline;
}

@media only screen and (max-width: 767.98px) {

    .local_header .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #f6f6f6;
        width: 100%;
        border-radius: 5px;
        border: 1px solid #c0c0c0;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .local_header .nav-menu.active {
        position: absolute;
        display: block;
        z-index: 800;
        top: 2.0rem;
        left: 0px;
    }

    .local_header div.dropdown,
    .local_header div.dropdown li,
    .local_header div.dropdown a,
    .local_header div.dropdown ul,
    .local_header div.dropdown span,
    .local_header a.dropdown-item {
        z-index: 900;
    }

    .local_header .nav-item {
        margin: 0.5rem 0;
    }

    .local_header .hamburger {
        display: block;
        cursor: pointer;
    }

    .local_header .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .local_header .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .local_header .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .local_header ul {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .local_header li.nav-item a.nav-link {
        font-size: 1.2rem;
    }

    .local_header .nav-logo {
        text-decoration: none;
        font-size: 2.0rem;
        font-weight: 900;
        margin-left: -0.7rem;
        padding-left: 0em;
        color: #006060;
    }

    .local_header .nav-menu {
        margin-top: 1.0em;
        padding-top: 0em;
    }

    .local_header li.dropdown {
        padding-top: 0rem;
    }

    .local_header .dropdown-menu {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        margin-left: 0rem;
    }

    .local_header .dropdown-menu a.nav-link {
        font-size: 1.0rem !important;
    }
}
