.banner-nav {
    position: fixed;
    z-index: 102;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    transition: all 0.45s;
}
.bn-fx {
    position: fixed;
}
.banner-nav > button {
    left: auto;
    right: 0;
    position: absolute;
    top: 0;
    width: 32px;
    height: 100%;
    max-height: 56px;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    transition: opacity .1s ease-in-out;
    font-size: 16px;
    line-height: 0;
    cursor: pointer;
    z-index: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.banner-nav > button:before, .banner-nav > button:after {
    top: 50%;
    left: 50%;
    position: absolute;
    display: block;
    content: "";
    width: 12px;
    height: 2px;
    margin: -1px 0 0 -6px;
}
.banner-nav > button:before {
    transform: rotate(-45deg);
}
.banner-nav > button:after {
    transform: rotate(45deg);
}
.banner-nav-content {
    position: relative;
    padding: 8px 20px;
    margin: 0 auto;
    font-size: 16px;
    overflow: hidden;
    text-align: center;
    transition: transform .1s ease-in-out;
    transition-property: transform,opacity,visibility;
    min-height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-nav-text {
    font-family: Roboto Bold;
    line-height: 1.25em;
    min-height: 1.25em;
    vertical-align: top;
    margin: 4px 0;
    display: inline-block;
    padding: 0 4px;
}
.banner-nav-form {
    vertical-align: top;
    margin: 0 4px;
    display: flex;
    flex-wrap: nowrap;
}
.banner-nav-button {
    font-family: Roboto Bold;
    text-decoration: none;
    padding: 5px 5px 8px;
    border-radius: 4px;
    transition: 0.2s;
}

@media (max-width: 680px){
    .banner-nav {
        top: -90px;
    }
}