#navigator {
  margin: 15px auto 10px;
  position: sticky;
  top: 0;
  background: #f1f3f6;
}

.navigator {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}

.navigator .navigator-item {
  display: inline-block;
  background: #fff;
  height: 33px;
  padding: 6px 7px;
  border-radius: 7px;
  margin-left: 4px;
  border: solid 1px #f9fbfe;
  cursor: pointer;
  transition: background 0.1s, border 0.25s, box-shadow 0.25s;
  user-select: none;
}

.navigator .navigator-item:hover {
  background: #f9fbfe;
  border-color: #f9fbfe;
}

.navigator .navigator-item:active {
  background: #f4f6f9;
  border-color: #f4f6f9;
  box-shadow: inset 0 0 3px #ccc;
}

.navigator .navigator-item:last-of-type {
  margin-left: 0;
}

.navigator .navigator-item.shown,
.navigator .navigator-item.shown:hover,
.navigator .navigator-item.shown:active {
  border-color: #b4b6b9;
  background: #f4f6f9;
  box-shadow: inset 0 0 5px #ccc;
}

@media (max-width: 740px) {
  .navigator {
    padding: 10px 4px;
  }

  .navigator .navigator-item {
    flex: 1;
    margin: 0 0 0 5px;
  }

  .navigator .navigator-item span {
    display: none;
  }
}

@media (max-width: 420px) {
  .navigator {
    padding: 10px 2px;
  }

  .navigator .navigator-item,
  .navigator .navigator-item:last-of-type {
    margin: 0 2px;
  }

  .navigator .navigator-item span {
    display: none;
  }
}
