navigation-bar {
  height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  margin-bottom: 8px;

  > ng-transclude > .btn {
    background: none;
  }

  time-filter {
    border: none;

    ng-transclude {
      border-left: none !important;
    }
  }

  .nav-title {
    display: inline-flex;
    font-size: 13px;
    color: #616161;
    overflow: hidden;
    padding: 0 15px;

    .fa-home {
      transform: scale(1.2);
    }

    .fa-angle-right {
      margin: 0 8px;
      font-size: 12px;
      height: 1em;
      align-self: center;
      transform: scale(1, 1.8);
      color: #AAA;
    }

    a {
      color: inherit;
      max-width: 300px;
      transition: color .2s;

      &:not(.pointer) {
        cursor: default;
        color: inherit;
      }

      &.pointer:hover {
        color: var(--global-theme-color-deep, #3bb4a6);
        user-select: none;
      }

      &:last-child {
        color: var(--global-theme-color-heavy, #00C8C1);
      }
    }
  }

  &[color-type=moon] {
    background: rgba(255,255,255,0.10);

    .fa-home {
      color: #00C8C1;
    }

    .fa-angle-right {
      color: #DFDFDF;
    }

    .title-level1, .title-level2, .title-level3 {
      color: rgba(255,255,255, 0.5);
    }
  }
}
