.v-best {
  --v-site-header-height: 48px;
  --v-button-height: auto;
  --v-button-font-size: 16px;
  --v-button-text-color: #6d6d6d;
  min-height: calc(100vh - var(--v-site-header-height, 0px) - var(--v-footer-height, 290px));
  margin-inline: var(--v-side-margin);
  padding-top: 48px;
}
.v-best .v-button[aria-selected=true] {
  --v-button-text-color: #000;
  --v-button-font-weight: var(--v-font-bold);
}

.v-best-body {
  margin-bottom: 59px;
  min-height: var(--v-best-body-min-height);
  height: var(--v-best-body-height);
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: auto;
  padding-bottom: var(--v-best-body-padding-bottom, var(--v-bottom-bar-height, 0));
}
.v-best-body .v-well {
  margin-block: 24px;
}

.v-sticky-bar {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  position: sticky;
  right: 0;
  left: 0;
  top: var(--v-site-header-heigt, 76px);
  z-index: calc(var(--v-site-header-z) - 1);
}
.v-sticky-bar .v-tab {
  --v-tab-button-padding-bottom: 21px;
  --v-tab-button-font-size: 20px;
  --v-tab-button-color: #6d6d6d;
  font-weight: var(--v-button-font-weight, 400);
  font-size: var(--v-button-font-size, 12px);
  color: var(--v-button-color, #929292);
  line-height: var(--v-button-line-height, 1.3);
  padding-block: var(--v-tab-button-padding-bottom);
}

.v-best-controls {
  display: grid;
  grid-template-areas: "lead . trail";
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: minmax(0, 1fr);
  padding-top: 16px;
  padding-block: var(--v-best-head-margin, var(--v-space-5));
  background-color: #fff;
  font-weight: var(--v-button-font-weight, 400);
  font-size: var(--v-button-font-size, 12px);
  color: var(--v-button-color, #929292);
  line-height: var(--v-button-line-height, 1.3);
}
.v-best-controls .v-best-controls__small-text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  line-height: var(--v-button-line-height, 1.334);
}
.v-best-controls .v-best-controls__small-text .v-best-controls__tooltip-button {
  line-height: var(--v-button-line-height, 1.3);
}
.v-best-controls .v-best-controls__small-text .v-best-controls__tooltip-button svg {
  width: 20px;
  height: 20px;
}
.v-best-controls has-dropdown {
  --dropdown-min-width: auto;
  --dropdown-offset-top: 8px;
  --dropdown-right: 0px;
  z-index: 2;
}
.v-best-controls has-dropdown .v-menu-button {
  --v-button-padding: 6px 24px;
}
.v-best-controls has-dropdown .v-menu-button:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.v-best-controls has-dropdown .v-menu-button[aria-selected=true] {
  --v-button-text-color: #000;
  --v-button-font-weight: var(--v-font-bold);
}

.v-best-controls__lead,
.v-best-controls__trail {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.v-best-controls__lead {
  grid-area: lead;
}

.v-best-controls__trail {
  grid-area: trail;
}

.v-best-controls__filter-button {
  --v-button-width: auto;
}
.v-best-controls__filter-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease-in-out;
  transform-origin: center;
  transform: rotate(var(--v-angle, 0deg));
}

.v-best-head__title {
  text-align: center;
  font-size: var(--v-best-title-font-size, 36px);
  line-height: var(--v-best-title-line-height, 1.3);
}

.v-best-body__title {
  padding: 24px var(--v-side-margin, 24px) 0;
  font-weight: var(--v-font-bold);
  font-size: 16px;
  line-height: 1.3;
}