@media (min-width: 1181px) {
  .dashboard-shell > .topbar .view-tabs,
  .profile-topbar .view-tabs {
    position: relative;
    overflow-x: hidden !important;
    scrollbar-width: none;
  }

  .dashboard-shell > .topbar .view-tabs::-webkit-scrollbar,
  .profile-topbar .view-tabs::-webkit-scrollbar {
    display: none;
  }
}

.dlc-nav-overflow-toggle {
  position: fixed;
  z-index: 1600;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  color: #111;
  font: inherit;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2px;
  background: #fff;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
}

.dlc-nav-overflow-toggle.is-visible {
  display: inline-flex;
}

.dlc-nav-overflow-toggle:hover,
.dlc-nav-overflow-toggle[aria-expanded="true"],
.dlc-nav-overflow-toggle.has-active-item {
  background: #fff0b8;
}

.dlc-nav-overflow-toggle:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.dlc-nav-overflow-menu {
  position: fixed;
  z-index: 1700;
  display: none;
  grid-template-columns: 1fr;
  gap: 5px;
  width: min(330px, calc(100vw - 24px));
  max-height: min(70vh, 560px);
  padding: 8px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #d2d9d5;
  border-radius: 15px;
  box-shadow: 0 20px 48px rgb(26 35 30 / 22%);
}

.dlc-nav-overflow-menu.is-open {
  display: grid;
}

.dlc-nav-overflow-menu button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  color: #111;
  font: inherit;
  font-weight: 750;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.dlc-nav-overflow-menu button:hover,
.dlc-nav-overflow-menu button:focus-visible,
.dlc-nav-overflow-menu button.is-active {
  background: #fff0b8;
  outline: none;
}

@media (max-width: 1180px) {
  .dlc-nav-overflow-toggle,
  .dlc-nav-overflow-menu {
    display: none !important;
  }

  .responsive-nav-icon {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: auto;
  }

  .responsive-nav-icon i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }
}


@media (min-width: 1181px) {
  .dashboard-shell > .topbar {
    justify-content: flex-start;
    gap: 16px;
  }

  .dashboard-shell > .topbar > .brand-lockup,
  .profile-topbar > .brand-lockup,
  .dashboard-shell > .topbar > .topbar-access,
  .profile-topbar > .access-controls {
    flex: 0 0 auto;
  }

  .dashboard-shell > .topbar > .responsive-nav,
  .profile-topbar > .responsive-nav {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
  }

  .dashboard-shell > .topbar .view-tabs,
  .profile-topbar .view-tabs {
    position: relative;
    left: auto;
    width: 100%;
    max-width: none;
    min-width: 0;
    transform: none;
  }

  .dashboard-shell > .topbar > .topbar-access,
  .profile-topbar > .access-controls {
    margin-left: 0;
  }

  .profile-topbar {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
  }
}

@media (max-width: 1180px) {
  .dashboard-shell > .topbar .responsive-nav {
    justify-content: flex-end;
  }

  .profile-topbar .responsive-nav {
    justify-self: end;
  }
}
