@media only screen and (max-width: 1280px) {
  .c-mobile-header__bar {
      position: fixed;
      left: 0;
      bottom: 0;
      z-index: 19;
      width: 100vw;
      background: #fff;
      -webkit-box-shadow: 0 0 5px 0 rgba(15,15,15,.5);
      box-shadow: 0 0 5px 0 rgba(15,15,15,.5);
      position: fixed;
      bottom: 0;
      left: 0;
      display:flex;
      opacity:1;
      pointer-events:all;
  }
  .c-mobile-header__button {
      display: block;
      -webkit-transition: all .3s ease-in-out;
      -o-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out;
      width: calc(100% / 5);
      padding: .5rem 0;
      text-align: center;
      font-size: .875rem;
      fill: #6e6e6e;
      stroke: #6e6e6e;
      color: #6e6e6e;
      font-weight: 500;
  }
  .c-icon {
      vertical-align: middle;
      stroke: inherit;
  }
  .c-burger-button, .c-mobile-header__icon {
      width: 1.5rem;
      height: 1.5rem;
      margin-bottom: .5rem !important;
      fill: none !important;
  }
  .c-burger-button {
      position: relative;
      display: block;
      padding: 0;
      outline: 0;
      cursor: pointer;
      margin: 0 auto;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
  }
  .c-burger-button__burger {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
  }
  .c-burger-button__burger span:nth-child(1) {
      -webkit-transition-delay: .5s;
      -o-transition-delay: .5s;
      transition-delay: .5s;
      top: 3px;
  }
  .c-burger-button__burger span:nth-child(2) {
      -webkit-transition-delay: 625ms;
      -o-transition-delay: 625ms;
      transition-delay: 625ms;
      top: calc(50% - 1px);
  }
  .c-burger-button__burger span:nth-child(3) {
      -webkit-transition-delay: .75s;
      -o-transition-delay: .75s;
      transition-delay: .75s;
      bottom: 3px;
  }
  .c-burger-button__burger span {
      -webkit-transition: width .3s ease-in-out;
      -o-transition: width .3s ease-in-out;
      transition: width .3s ease-in-out;
      position: absolute;
      width: 100%;
      height: 1px;
      display: block;
      background: #6e6e6e;
  }
  .c-burger-button__cross {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  }
  .c-burger-button__cross span {
      position: absolute;
      background: #6e6e6e;
  }
  .c-burger-button__cross span:nth-child(1) {
      -webkit-transition: width .3s ease-in-out;
      -o-transition: width .3s ease-in-out;
      transition: width .3s ease-in-out;
      -webkit-transition-delay: .25s;
      -o-transition-delay: .25s;
      transition-delay: .25s;
      width: 0;
      height: 1px;
      top: calc(50% - 1px);
      left: 0;
  }
  .c-burger-button__cross span:nth-child(2) {
      -webkit-transition: height .3s ease-in-out;
      -o-transition: height .3s ease-in-out;
      transition: height .3s ease-in-out;
      -webkit-transition-delay: 0s;
      -o-transition-delay: 0s;
      transition-delay: 0s;
      width: 1px;
      height: 0;
      left: calc(50% - 1px);
  }
  body.main-menu-active .c-burger-button__burger span {
      width: 0;
  }
  body.main-menu-active .c-burger-button__burger span:nth-child(1) {
    -webkit-transition-delay: .25s;
    -o-transition-delay: .25s;
    transition-delay: .25s;
  }
  body.main-menu-active .c-burger-button__burger span:nth-child(2) {
    -webkit-transition-delay: 375ms;
    -o-transition-delay: 375ms;
    transition-delay: 375ms;
  }
  body.main-menu-active .c-burger-button__burger span:nth-child(3) {
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
  }
  body.main-menu-active .c-burger-button__cross span:nth-child(1) {
    width: 100%;
    -webkit-transition-delay: 625ms;
    -o-transition-delay: 625ms;
    transition-delay: 625ms;
  }
  body.main-menu-active .c-burger-button__cross span:nth-child(2) {
    height: 100%;
    -webkit-transition-delay: .75s;
    -o-transition-delay: .75s;
    transition-delay: .75s;
  }
}