﻿.navbar {
    background-color: #ffffff;
    background-color: var(--ohio-white);
    box-shadow: 0 4px 2px -2px #ccc;
    box-shadow: 0 4px 2px -2px var(--ohio-shadow);
    box-sizing: border-box;
    display: flex;
    height: 5em;
    height: var(--ohio-navbar-height);
    justify-content: space-between;
    padding-left: 4.6em;
    position: fixed;
    right: 0;
    top: 0;
    transition: padding-left 0.5s ease-in-out;
    width: 100%;
    z-index: 999;
}

.navbar-home-link {
    display: flex;
    text-decoration: none;
}

.navbar-left {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    padding-left: 1em;
    height: 5em;
    height: var(--ohio-navbar-height);
}

.navbar-left > .logo {
    max-width: 100%;
    max-height: 100%;
}

    .navbar-left > .brand-name {
        color: #36353a;
        color: var(--ohio-black);
        font-family: OpenSans-Bold;
        font-size: 2em;
    }

.navbar-right {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    padding-right: 1em;
    margin-bottom: 0.2em;
}

.navbar-right > .navbar-logout-link > .logout {
    max-width: 100%;
    max-height: 100%;
    width: 1.4em;
}

.navbar-logout-link {
    display: flex;
    text-decoration: none;
}
