.bar {
  display: flex;
  cursor: pointer;
}

@media only screen and (max-width: 992px) {
  .bar {
    justify-content: space-between;
  }
  .bar > div:last-child {
    display: none;
  }
}