/* BEGIN club sidebar active marker */
.sidebar .club-sidebar-link {
  position: relative;
}

.sidebar .club-sidebar-link::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 4px;
  height: 0;
  border-radius: 0 999px 999px 0;
  background-color: var(--bs-emphasis-color);
  opacity: 0;
  transform: translateY(-50%);
  transition: height 0.15s ease, opacity 0.15s ease;
  pointer-events: none;
}

.sidebar .club-sidebar-link:not(.is-club-active):hover::before,
.sidebar .club-sidebar-link:not(.is-club-active):focus-visible::before {
  height: 18px;
  opacity: 1;
}

.sidebar .club-sidebar-link.is-club-active::before {
  height: 28px;
  opacity: 1;
}

.sidebar .club-sidebar-link.is-club-active img {
  box-shadow: 0 0 0 2px rgba(var(--bs-primary-rgb), 0.35);
}
/* END club sidebar active marker */
