
.header{
    position: relative;
  	/*z-index:22;*/
    width: 100%;
  	/*max-width:1924px;*/
    height: var(--block3);    
    /*-webkit-box-shadow: 0px 5px 15px -2px rgba(0, 0, 0, 0.67);*/
    /*box-shadow: 0px 5px 15px -2px rgba(0, 0, 0, 0.67);*/
  	/*border: 1px solid var(--border-bright);*/
}

@media(max-width:769px){
  
  .header{
      /*wf-left;*/
      /*margin:0;*/
  }
  
}

.header.fixed{
    position:fixed !important;
    width:100%;
    z-index:99;
    height:52px;
    top:0;
    left:0;
}

.header-menu-pos{
	/*padding:0 26px;*/
}

.header-container{
  margin-top:var(--block1);
}
.fixed .header-container{
  margin-top:0 !important;
  /*top:0 !important;*/
}

.fixed .header-top-line{
    display:none;
}

.fixed .logo{
    top:-8px !important;
}
.fixed .menu,
.fixed .menu-item,
.fixed .inline-input{
    top:0 !important;
}

.fixed .searchbox-bottom{
    display:none;
}


header.slideDown {
  animation: slideDown 0.3s forwards;
}

header.slideUp {
  animation: slideUp 0.3s forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}