body {
  padding-top: 108px;
}
@media (max-width: 1040px) {
  body {
    padding-top: 60px;
  }
}
.ui-folding {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3);
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.ui-folding.ui-folding-scrolled {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  pointer-events: none;
}
.ui-folding.ui-folding-opened {
  top: 0;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  pointer-events: auto;
  z-index: 2;
}
