/* Let the user panel overlap content on website pages */
body .i-secondary-header{
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: transparent;
}

  body .i-secondary-header__inner::before{
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: currentColor;
    opacity: 0.15;
	-webkit-mask: linear-gradient(to right, rgba(0,0,0,0), rgb(0, 0, 0) 100px, rgb(0, 0, 0) calc(100% - 100px), rgba(0,0,0,0));
    mask: linear-gradient(to right, rgba(0,0,0,0), rgb(0, 0, 0) 100px, rgb(0, 0, 0) calc(100% - 100px), rgba(0,0,0,0));
  }

@media (min-width: 980px){
  #elCmsPageWrap > :first-child::before{
    content: '';
    display: block;
    height: 58px;
  }
}