nav.greedy2 {

    display: flex;
    align-items: center;

}
div.header{
    position: relative;
}
nav.greedy2 h1 {
    display: flex;
    align-self: stretch;
    align-items: center;
    background: #c6c6c6;
    padding: 0 1rem;
    font-weight: bold;
}

nav.greedy2 button {

    transition: all .4s ease-out;
    padding: 0 1rem 0 1.5rem;
    outline: 0;
    border: 0;
    font-size: 0.9rem;
    font-weight: bold;

    padding: 0px;
    margin-bottom: 30px;
    font-size: 25px;
    color: #034090;
}
body .header-bg nav.greedy2 button {
    font-size: 11px;
}


nav.greedy2 button.hidden {
    transition: none;
    /* border-right: 0.5rem solid #b6b6b6;*/
    width: 0;
    padding: 0;
    overflow: hidden;
}
nav.greedy2 button::after {
    content: attr(count);
    display: none;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    background: #9f9f9f;
    color: #f2f2f2;
    border-radius: 50%;
    font-size: 14px;
    line-height: 14px;
    margin-left: 1rem;
    margin-right: calc(-1rem + -8px);
}
nav.greedy2 ul.links {
    display: flex;
    justify-content: flex-start;
    flex: 1;
    overflow: hidden;
    padding-left: 0px;
}
nav.greedy2 ul.links li {
    flex: none;
    padding: 1rem;
}

nav.greedy2 ul.links li a {
    color: #404040;
}
nav.greedy2 ul.hidden-links {
    position: absolute;
    background: #eee;
    right: 0px;
    top: 102%;
    padding-right: 2em;
}
#guide-menu nav.greedy2 ul.hidden-links li{
    padding: 10px 0px;
}

nav.greedy2 ul.hidden-links.hidden {
    display: none;
}
nav.greedy2 ul.hidden-links li {
    padding: 1rem;
}


.mobile-bar{
    display: none;
    position: fixed;
    z-index: 10;
    top: 50%;
    right: 0px;
    width: 70px;
    transform: translateY(-50%);
    padding: 0px;
    text-align: center;
}
@media (max-width: 1048px) {
    .mobile-bar{
        display : block;
    }
}

.mobile-bar svg{

    fill: white;
    width: 30px;
    height: auto;
    margin-bottom: 5px;
}
.mobile-bar a{
        font-size: .7rem;
        color: white;
        text-decoration: none;

}
.mobile-bar a div{
    background-color: #034090;
    border-bottom: 1px solid white;
}
.mobile-bar a:hover div{
    background-color: #255AB9;
}
.mobile-bar-button{
    padding: 10px;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
@media (max-width: 650px) {
    .mobile-bar {
        display: flex;
        bottom: 0px;
        left: 0px;
        right: 0px;
        transform: none;
        top: auto;
        width: auto;
        justify-content: center;
    }
    .mobile-bar a div{
        border-bottom: 0px;
        border-right: 1px solid white;
    }
    .mobile-bar a:last-child div{
        border-right: 0px;
    }
}

