@media (max-width: 768px) {
  .mobile-callbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #0b5ed7;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
  }

  .mobile-callbar__inner {
    padding: 10px 14px;
  }

  .mobile-callbar__toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
  }

  .mobile-callbar__menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
  }

  .mobile-callbar.open .mobile-callbar__menu {
    max-height: 220px;
  }

  .mobile-callbar__menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.2);
  }

  body {
    padding-top: 56px;
  }
}

@media (min-width: 769px) {
  .mobile-callbar {
    display: none;
  }
}