/************************* Dashboard Navigation *************************/
.dashboard_navigation {
    position: fixed;
    height: calc(100vh - 96px);
    min-height: 700px;
    padding: 25px;
    box-sizing: border-box;
    background-color: var(--hour7-blue);
}

.dashboard_navigation_container {
    text-align: center;
    width: 190px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 0;
}

.dashboard_navigation_container li a {
    padding: 0 32px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 46px !important;
    background-color: var(--hour7-light-blue);
    text-align: center;
    color: var(--white);
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px;
    text-decoration: none;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 1;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: 0.1s all ease-in-out;
    box-shadow: 0px 3px 10px #0000000D;
    margin-bottom: 25px;
}

.dashboard_navigation_container li a i {
    width: 35px;
    margin-left: -7px;
}

.dashboard_navigation_container li a .fa-flask {
    margin-left: -9px;
    margin-right: 2px;
}

.dashboard_navigation_container li a:hover {
    background-color: var(--hour7-gold);
    color: var(--black);
    transition: 0.15s all ease-in-out;
}

.dashboard_navigation_container li .settings_link {
    margin-bottom: 0;
}

.selected_dash {
    background-color: var(--hour7-gold) !important;
    color: var(--hour7-blue) !important;
    box-shadow: 0px 3px 10px #0000000D;
}

.mobile_dashboard_navigation {
    display: none;
}

@media (max-width: 900px) {
    .dashboard_navigation {
        height: calc(100vh - 86px);
        padding: 20px;
    }
}

@media (max-width: 800px) {
    .dashboard_navigation_container {
        display: none;
    }

    .dashboard_navigation {
        width: 100%;
        height: 86px;
        display: flex;
        flex-grow: 1;
        flex-direction: row;
        align-items: center;
        bottom: 0;
        left: 0;
        min-height: unset;
        padding: 20px;
        z-index: 900;
        overflow-x: scroll;
    }

    .dashboard_navigation::-webkit-scrollbar {
        display: none;
    }

    .mobile_dashboard_navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
    }

    .mobile_dashboard_navigation li {
        width: max-content;
    }

    .mobile_dashboard_navigation li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--navy);
        font-weight: 700;
        height: 46px;
        margin-right: 20px;
        background-color: var(--navy);
        text-align: center;
        color: var(--white);
        border: none;
        outline: none;
        border-radius: 5px;
        padding: 0 20px;
        font-size: 14px;
        transition: 0.2s all ease-in-out;
    }

    .mobile_dashboard_navigation li:last-of-type a {
        margin-right: 0;
    }

    .mobile_dashboard_navigation li a:hover {
        opacity: 0.9;
        transition: 0.2s all ease-in-out;
    }

    .mobile_dashboard_navigation li a i {
        font-size: 16px;
        margin-right: 8px;
    }

    .mobile_dashboard_navigation .selected_dash {
        background-color: var(--pale-blue);
        color: var(--navy);
        opacity: 1;
        transition: 0.2s all ease-in-out;
    }
}