.navbar {
  background-color: white;
  height: 40px;
  font-family: "Cabin";
  font-size: 14px;

  .clip {
    padding: 0px 20px;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
  }

  li {
    cursor: pointer;
    padding: 0 15px;
    line-height: 36px;
    color: #979797;

    transition: all 0.25s;

    &:hover,
    &.active {
      color: black;
    }
  }

  ul {
    position: absolute;
    overflow: auto;
    white-space: nowrap;
  }

  .arrow {
    position: absolute;
  }

  .arrowLeft {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .arrowRight {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
