.v-category-nav {
  display: grid;
  grid-template-columns: 129px minmax(0, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "sidebar body";
  min-height: 0;
  height: 100%;
}

.v-category-nav__sidebar {
  grid-area: sidebar;
  height: 100%;
  padding: 11px 7px;
  background-color: #f7f7f7;
  color: #6d6d6d;
}

.v-category-nav__panel {
  display: none;
}
.v-category-nav__panel.is-active {
  display: block;
}

.v-category-nav__body {
  grid-area: body;
  height: 100%;
  padding-block: 12px;
}

.v-category-nav-button {
  display: block;
  width: 100%;
  height: 2.875em;
  padding: 10px 0 10px 12px;
  border: none;
  border-radius: 8px 0 0 8px;
  background-color: var(--v-category-nav-button-bg, transparent);
  color: var(--v-category-nav-button-text-color, currentColor);
  font-weight: var(--v-category-nav-button-font-weight, 400);
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: -0.05em;
  overflow: hidden;
  overflow: clip;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}
.v-category-nav-button[aria-pressed=true], .v-category-nav-button[aria-selected=true], .v-category-nav-button.is-active {
  --v-category-nav-button-bg: #fff;
  --v-category-nav-button-text-color: #000;
  --v-category-nav-button-font-weight: 700;
}

.v-subcategory-link {
  display: block;
  width: 100%;
  padding: 12px 12px 12px 24px;
  overflow: hidden;
  overflow: clip;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.v-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 9px;
  padding: 24px;
}

.v-service-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 16px;
  line-height: 1.1875;
  letter-spacing: -0.04em;
}
.v-service-link img {
  display: block;
  width: 100%;
  aspect-ratio: 159/83;
  object-fit: cover;
}

.v-service-link__name {
  display: block;
  width: 100%;
  overflow: hidden;
  overflow: clip;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.v-global-nav {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto minmax(0, 1fr);
  grid-template-areas: "tabs" "content";
  min-height: 0;
  height: calc(var(--v-full-height, 100vh) - var(--v-site-header-height, 0px) - var(--v-bottom-bar-height, 0px));
}

.v-global-nav__tabs {
  grid-area: tabs;
}

.v-global-nav__content {
  grid-area: content;
}
.v-global-nav__content > .v-tab-panel {
  height: 100%;
}
.v-global-nav__content .v-tab-panel__empty {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  padding: 24px;
}

.v-scroll-area {
  overflow: auto;
}

.v-nav-tabs {
  display: flex;
  padding-inline: 15px;
  border-bottom: 1px solid #ddd;
}
.v-nav-tabs [role=tab] {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
  padding: 0 10px;
  height: 48px;
  border: 0;
  border-bottom: 2px solid var(--v-tab-underline-color, transparent);
  background: none;
  color: var(--v-tab-text-color, #929292);
  font-weight: var(--v-tab-font-weight, 400);
  font-size: 18px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
}
.v-nav-tabs [role=tab][aria-selected=true], .v-nav-tabs [role=tab][aria-pressed=true] {
  --v-tab-underline-color: #000;
  --v-tab-text-color: #000;
  --v-tab-font-weight: 700;
}