.kp-topbar-launcher-menu {
  --kp-launcher-gap: .5rem;
  width: min(34rem, calc(100vw - 1rem));
  max-width: calc(100vw - 1rem);
  overflow: hidden;
}

.kp-topbar-launcher-scroll {
  max-height: min(72vh, 38rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: .5rem;
}

.kp-topbar-launcher-scroll > .kp-topbar-launcher-grid {
  padding: 0;
}

.kp-topbar-launcher-grid {
  display: grid;
  gap: var(--kp-launcher-gap);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kp-topbar-quick-item.dropdown-item {
  align-items: center;
  background: var(--ct-tertiary-bg);
  border: var(--ct-border-width) solid transparent;
  border-radius: var(--ct-border-radius);
  display: flex;
  gap: .5rem;
  min-height: 4.25rem;
  padding: .5rem;
  white-space: normal;
}

.kp-topbar-quick-item.dropdown-item:hover,
.kp-topbar-quick-item.dropdown-item:focus-visible {
  background: var(--ct-secondary-bg);
  border-color: var(--ct-border-color);
}

.kp-topbar-quick-thumb {
  align-items: center;
  background: var(--ct-secondary-bg);
  border-radius: var(--ct-border-radius-sm);
  color: var(--ct-secondary-color);
  display: flex;
  flex: 0 0 2.75rem;
  height: 2.75rem;
  justify-content: center;
  overflow: hidden;
  width: 2.75rem;
}

.kp-topbar-quick-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.kp-topbar-quick-thumb i {
  font-size: 1.35rem;
}

.kp-topbar-quick-copy {
  min-width: 0;
}

.kp-topbar-quick-title {
  display: -webkit-box;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.15;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.kp-topbar-quick-meta {
  color: var(--ct-secondary-color);
  display: block;
  font-size: .7rem;
  margin-top: .2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kp-topbar-quick-badge {
  font-size: .62rem;
  margin-top: .25rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kp-topbar-launcher-empty {
  color: var(--ct-secondary-color);
  padding: 1rem;
  text-align: center;
}

@media (max-width: 349.98px) {
  .kp-topbar-launcher-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
