

#header.menufixed {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .11);
}
#header.menufixed.animationenabled{
    animation:0.9s ease 0s normal both 1 running fixedAnim;
    -webkit-animation: 0.9s ease 0s normal both 1 running fixedAnim; /* Safari 4+ */
    -moz-animation: 0.9s ease 0s normal both 1 running fixedAnim; /* Fx 5+ */
    -o-animation: 0.9s ease 0s normal both 1 running fixedAnim; /* Opera 12+ */
     z-index:9999;
}

@-webkit-keyframes fixedAnim{0%{top:-130px;}100%{top:0;}}
@-moz-keyframes fixedAnim{0%{top:-130px;}100%{top:0;}}
@keyframes fixedAnim{0%{top:-130px;}100%{top:0;}}

#header.menufixed .header-nav {
    display: none;
}

#header.menufixed .header-top {
    padding-top: 5px
}

@media (min-width: 579px){
    .menufixed .modal-dialog {
        margin-top: 140px!important;
    }
}