.navbar {
  position: relative;
  margin-right: var(--sidebar-collapsed-width);
  border-bottom: 1px solid #eee;

  .vertical-line {
    position: relative;

    &::before {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      height: 50%;
      margin: auto;
      border-right: 1px solid #ddd;
    }
  }
}

.sidebar-toggler {
  position: absolute;
  right: var(--sidebar-toggler-right);
  top: 1em;
  border-radius: 50%;
  border: 1px solid #eee;
  width: 1.7em;
  height: 1.7em;
  padding: 0;
  background: #fff;
  z-index: 99;
  transition: all 0.2s;
  box-shadow: 0px 0px 5px 0px #ccc;

  &.expanded {
    transform: rotate(180deg);
    transition: all 0.2s;
  }
}

.toggle-mobile-nav {
  display: none;
  background-color: transparent;
  border: 0;
  padding: 6px 16px;
  // margin: 0 0 0 -15px;
  height: 46px;
  color: #333238;
  // transform: rotateY(180deg);

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}