
nav[id*=top_nav-] {
    position: fixed;
    top: -1px;
    background-color: white;
    z-index: 50;
    width: 100%;
}
nav#top_nav-container * {
    transition: 500ms height;
}
nav#top_nav-container > div {
    display: table-cell;
    height: 60px;
}
nav#top_nav-container button.menu {
    display: block;
    border: none;
    background-color: #ebebeb;
    max-width: 210px;
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 16px;
    color: #4b4b4b;
    margin: 0px;
}
nav#top_nav-container button.menu > span {
    padding-left: 20px
}
/* Icons */

nav#top_nav-container img.logo,
nav#top_nav-container img.menu {
    height: 20px;
}
nav#top_nav-container img.email {
    height: 17px;
}
nav#top_nav-container img.phone,
nav#top_nav-container img.location {
    height: 25px;
}
/* End Icons */

nav#top_nav-container > div > ul {
    display: table;
    width: 100%;
    padding: 0px;
    margin: 0;
}
nav#top_nav-container > div > ul >li {
    list-style-type: none;
    display: table-cell;
    padding: 0px 25px;
    height: 60px;
    width: 1%;
    vertical-align: middle;
}
nav#top_nav-container > div > ul >li.space {
    width: auto;
}
nav#top_nav-container > div > ul >li span.no_wrap {
    white-space: nowrap;
}
nav#top_nav-container > div.right > ul >li {
    padding: 0px 15px;
}
nav#top_nav-container > div.right > ul >li:last-child {
    /*padding: 0px 30px;*/
}
nav#top_nav-container > div.right > ul >li:not(.active) {
    font-weight: initial;
}
/* Media Queries */

@media (max-width: 992px) {
    nav#top_nav-container > div > ul >li {
        width: 100%;
        text-align: right
    }
    nav#top_nav-container button.menu {
        max-width: 75px;
        padding: 0px;
    }
}
@media all and (min-width: 1200px) and (max-width: 1550px) {
    nav#top_nav-container img.menu {
        height: 15px;
    }
    nav#top_nav-container button.menu > span {
        padding: 0px;
    }
}