
#mhSoftNavProgress{
  position:fixed;
  left:0;top:0;
  width:100%;
  height:3px;
  z-index:10000;
  pointer-events:none;
  opacity:0;
  background:linear-gradient(90deg,#8a633f 0%,#d7b37f 50%,#8a633f 100%);
  transform:scaleX(0);
  transform-origin:left center;
  transition:opacity .2s ease, transform .6s ease;
}
#mhSoftNavProgress.is-active{
  opacity:1;
  transform:scaleX(.85);
}
