:root {
  font-family: var(--v-font-sans);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-all;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

ul,
ol,
menu {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea,
optgroup,
option {
  font: inherit;
}

[hidden] {
  display: none !important;
}

:root {
  --v-font-sans: Pretendard, -apple-system, BlinkMacSystemFont, system-ui,
    Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR",
    "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    sans-serif;
  --v-font-serif: Gloock, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", serif;
  --v-font-regular: 400;
  --v-font-bold: 700;
  --v-font-black: 900;
  --v-space-0: 0;
  --v-space-1: 4px;
  --v-space-2: 8px;
  --v-space-3: 12px;
  --v-space-4: 16px;
  --v-space-5: 20px;
  --v-space-6: 24px;
  --v-space-7: 32px;
  --v-space-8: 40px;
  --v-space-9: 48px;
  --v-space-10: 52px;
  --v-space-11: 56px;
  --v-space-12: 72px;
  --v-space-13: 80px;
}

:root {
  --v-grid-columns: 6;
  --v-grid-gutter: 8px;
  --v-side-margin: 24px;
}

.v-mo {
  --v-grid-columns: 6;
  --v-grid-gutter: 8px;
  --v-side-margin: 24px;
}

.v-title {
  padding-bottom: var(--v-title-descender-pad, 2px);
  padding-top: var(--v-title-padding-top, 30px);
  margin-bottom: calc(var(--v-title-margin-bottom, 16px) - var(--v-title-descender-pad, 2px));
  margin-inline: var(--v-title-side-margin, var(--v-side-margin));
  font-size: var(--v-title-font-size, 30px);
  line-height: var(--v-title-line-height, 1);
  letter-spacing: var(--v-title-leading, -0.03em);
  text-transform: uppercase;
}
.v-title.v-font-serif {
  --v-title-descender-pad: 3px;
}

.v-title--wide {
  --v-title-side-margin: var(--v-title-wide-side-margin, 0);
}

.v-title:has(~ .v-countdown-timer) {
  --v-title-margin-bottom: 4px;
}

.v-image-title {
  margin-inline: var(--v-title-side-margin, var(--v-side-margin));
}

.v-image-title--wide {
  --v-title-side-margin: 0;
}

.v-corner-header {
  --v-title-padding-top: 0;
  --v-title-margin-bottom: 0;
  --v-title-side-margin: 0;
  --v-timer-margin-top: 0;
  --v-timer-margin-bottom: 0;
  --v-timer-side-margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: var(--v-corner-header-padding-top, 30px);
  padding-inline: var(--v-corner-header-padding-inline, var(--v-side-margin, 24px));
  padding-bottom: var(--v-corner-header-padding-bottom, 16px);
}

.v-corner-header--wide {
  --v-corner-header-padding-inline: 0;
}

.v-image-title {
  overflow: clip;
}
.v-image-title img {
  display: block;
  max-width: 100%;
  height: auto;
}

.v-button {
  background-color: var(--v-button-background-color, transparent);
  color: var(--v-button-text-color, currentColor);
  border-width: var(--v-button-border-width, 0);
  border-style: var(--v-button-border-style, solid);
  border-color: var(--v-button-border-color, currentColor);
  display: var(--v-button-display, inline-flex);
  align-items: center;
  justify-content: center;
  max-width: var(--v-button-max-width, 100%);
  width: var(--v-button-width);
  height: var(--v-button-height);
  padding: var(--v-button-padding);
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  text-decoration: none;
  font-weight: var(--v-button-font-weight, inherit);
  font-size: var(--v-button-font-size, 1em);
  line-height: var(--v-button-line-height, inherit);
  letter-spacing: var(--v-button-leading, normal);
}

.v-button__text {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.v-button--full {
  --v-button-display: flex;
  --v-button-width: 100%;
}

.v-button--outlined {
  height: var(--v-button-height, 40px);
  --v-button-padding: 0.5em;
  --v-button-border-width: 1px;
  font-size: var(--v-button-font-size, 14px);
  --v-button-line-height: 1.3;
  --v-button-leading: -0.01em;
}

.v-button-wrap {
  padding: var(--v-button-wrap-padding, 0 24px 24px);
  margin: var(--v-button-wrap-margin);
}
.v-button-wrap .v-button {
  max-width: var(--v-default-button-max-width);
  margin: 0 auto;
}

:where(video-player) {
  display: block;
}

:where(video) {
  margin: 0 auto;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.v-video-player:is([playing], [paused]),
.v-video-player .vjs-ended {
  --v-big-play-button-opacity: 0;
}
.v-video-player :where(video) {
  width: 100%;
  height: 100%;
}
.v-video-player video {
  object-fit: var(--v-video-fit, var(--v-media-fit, contain));
}
.v-video-player .video-js {
  will-change: transform;
}
.v-video-player .video-js .vjs-icon-placeholder::before {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: var(--v-video-player-icon-size) var(--v-video-player-icon-size);
  background-repeat: no-repeat;
  background-position: 50%;
}
.v-video-player .video-js .vjs-poster {
  opacity: 1;
  transition: opacity 0.1s linear;
  pointer-events: none;
  display: inline-block;
}
.v-video-player .video-js .vjs-poster[hidden] {
  opacity: 0;
  display: inline-block !important;
}
.v-video-player .video-js .vjs-poster img {
  object-fit: cover;
}
.v-video-player .video-js .vjs-big-play-button {
  --v-video-player-icon-size: var(--v-video-player-play-button-size, 40px);
  transition: opacity 0.2s linear;
  opacity: var(--v-big-play-button-opacity, 1);
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: none;
}
.v-video-player .video-js .vjs-big-play-button, .v-video-player .video-js .vjs-big-play-button:hover, .v-video-player .video-js .vjs-big-play-button:focus {
  background: none;
}
.v-video-player .video-js .vjs-big-play-button .vjs-icon-placeholder::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2220%22%20fill%3D%22%23000%22%20opacity%3D%22.3%22%2F%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M16%2026.929V13.07L28.001%2020%2016%2026.929Z%22%20opacity%3D%22.7%22%2F%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-current-time {
  pointer-events: none;
  opacity: var(--v-current-time-opacity, 0);
  transition: opacity 0.2s linear;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  font-size: var(--v-video-current-time-size, 14px);
}
.v-video-player .video-js .vjs-control-bar {
  --v-video-player-icon-size: var(
    --v-video-player-control-button-size,
    36px
  );
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.3);
}
.v-video-player .video-js .vjs-control-bar .vjs-control {
  width: var(--v-video-player-control-button-size, 36px);
  height: var(--v-video-player-control-button-size, 36px);
}
.v-video-player .video-js .vjs-play-control .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-play:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-opacity%3D%22.7%22%20d%3D%22M25%2018%2013%2024.928V11.072L25%2018Z%22%2F%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-pause:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M13.5%2011v14m9-14v14%22%20opacity%3D%22.7%22%2F%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-replay:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cg%20stroke%3D%22%23fff%22%20opacity%3D%22.7%22%3E%3Cpath%20d%3D%22M11.5%2018A6.5%206.5%200%201%200%2018%2011.5H13.821%22%2F%3E%3Cpath%20d%3D%22m16.5%209-3%202.5%203%202.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-volume-low:before,
.v-video-player .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-volume-mid:before,
.v-video-player .video-js .vjs-mute-control .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-volume-high:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cg%20stroke%3D%22%23fff%22%20opacity%3D%22.7%22%3E%3Cpath%20d%3D%22M10.39%2020.852V14.37h4.248l6.706-3.87V25l-6.706-4-4.247-.148Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M24%2014v8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-volume-mute:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cg%20stroke%3D%22%23fff%22%20opacity%3D%22.7%22%3E%3Cpath%20d%3D%22M10.398%2020.852V14.37h4.247L21.352%2011v14L15.39%2022.407M10.203%2024.482%2025.76%2011%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,
.v-video-player .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.v-video-player .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active {
  width: var(--v-video-player-control-button-size, 36px);
}
.v-video-player .video-js .vjs-volume-horizontal {
  display: none;
}
.v-video-player .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-fullscreen-enter:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cpath%20stroke%3D%22%23fff%22%20opacity%3D%22.7%22%20d%3D%22M11.5%2020.5v4h4M24.5%2020.5v4h-4M11.5%2015.5v-4h4M24.5%2015.5v-4h-4%22%2F%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-fullscreen-close-button {
  display: none;
}
.v-video-player .video-js.vjs-fullscreen video {
  --v-video-fit: contain;
}
.v-video-player .video-js.vjs-fullscreen video::-webkit-media-controls-fullscreen-button {
  display: none;
}
.v-video-player .video-js.vjs-fullscreen .vjs-fullscreen-close-button {
  position: absolute;
  top: 0px;
  right: 6px;
  width: 48px;
  height: 56px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-video-player .video-js.vjs-fullscreen .vjs-fullscreen-close-button:before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2034%2034%22%3E%0A%20%20%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23FFF%22%20d%3D%22m8.868%208.868%2016.264%2016.264m0-16.264L8.868%2025.132%22%2F%3E%0A%3C%2Fsvg%3E");
  background-size: cover;
}
.v-video-player[aspect-ratio] {
  position: relative;
}
.v-video-player[aspect-ratio] > .video-js {
  height: auto !important;
  padding-top: 0 !important;
  aspect-ratio: var(--v-video-player-aspect-ratio, 2/3);
}
.v-video-player[currenttimedisplay]:is([playing], [paused]) {
  --v-current-time-opacity: 1;
  --v-duration-opacity: 0;
}
.v-video-player[duration] .v-video-player__duration {
  pointer-events: none;
  position: absolute;
  opacity: var(--v-duration-opacity, 1);
  top: 0;
  right: 0;
  font-size: 10px;
  line-height: 3em;
  min-width: 2em;
  padding-left: 1em;
  padding-right: 1em;
  color: #fff;
}
.v-video-player[duration] .v-video-player__time {
  transform: translate3d(0, 0, 0);
}
.v-video-player .vjs-fullscreen .vjs-big-play-button,
.v-video-player .vjs-fullscreen .vjs-control-bar,
.v-video-player .vjs-fullscreen .vjs-control {
  display: none !important;
}
.v-video-player .vjs-using-native-controls:not(.vjs-playing, .vjs-has-started) .vjs-big-play-button {
  display: block;
}
.v-video-player .vjs-using-native-controls .vjs-user-inactive {
  opacity: 0;
}
.v-video-player .vjs-using-native-controls .vjs-user-active {
  opacity: 1;
}
.v-video-player .vjs-using-native-controls.vjs-playing:not(.vjs-controls-disabled) .vjs-control-bar, .v-video-player .vjs-using-native-controls.vjs-has-started:not(.vjs-controls-disabled) .vjs-control-bar {
  display: flex !important;
}
.v-video-player .vjs-using-native-controls.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-control-bar {
  opacity: 0;
}

.v-media-embed {
  position: relative;
  display: block;
  aspect-ratio: var(--v-media-aspect-ratio);
  width: 100%;
  height: auto;
  overflow: clip;
}

.v-media_aspect_default,
.v-media_aspect_2-3 {
  --v-media-aspect-ratio: 2 / 3;
}

.v-media_aspect_square {
  --v-media-aspect-ratio: 1 / 1;
}

.v-media-embed--cover {
  --v-media-fit: cover;
}

.v-media-embed--dim::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--v-media-dim, rgba(0, 0, 0, 0.03));
}

.v-media-embed__element {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: var(--v-media-aspect-ratio);
  object-fit: var(--v-media-fit, contain);
  object-position: var(--v-media-position, center);
}

.v-item-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(var(--v-item-list-columns, 2), minmax(0, 1fr));
  column-gap: var(--v-item-list-gap-x, var(--v-space-2));
  row-gap: var(--v-item-list-gap-y, var(--v-space-7));
}

.v-item-list_col_1 {
  --v-item-list-columns: 1;
}

.v-item-list_col_2 {
  --v-item-list-columns: 2;
}

.v-item-list_col_3 {
  --v-item-list-columns: 3;
}

.v-item-list_col_4 {
  --v-item-list-columns: 4;
}

.v-item-list_col_5 {
  --v-item-list-columns: 5;
}

countdown-timer {
  display: block;
  font-feature-settings: "tnum";
}

countdown-timer [data-timer] {
  display: flex;
  align-items: center;
}

.v-countdown-timer {
  margin-top: var(--v-timer-margin-top, 0);
  margin-bottom: var(--v-timer-margin-bottom, 16px);
  margin-inline: var(--v-timer-side-margin, var(--v-side-margin));
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.v-wish-button {
  --v-wish-button-icon-base: #999;
  --v-wish-button-icon-fill: #000;
  --v-wish-button-icon-fill-bg: #fff;
  --v-wish-button-icon-fill-bg-opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  margin: 0;
  background: transparent;
  width: var(--v-wish-button-width, var(--v-wish-button-size, 36px));
  height: var(--v-wish-button-height, var(--v-wish-button-size, 36px));
  overflow: clip;
  color: var(--v-wish-button-icon-base);
}
.v-wish-button.on {
  color: var(--v-wish-button-icon-fill);
}
.v-wish-button.on path {
  fill: currentColor;
  stroke: currentColor;
  --v-wish-button-icon-fill-bg-opacity: 1;
}
.v-wish-button svg {
  display: block;
  width: var(--v-wish-button-icon-width, var(--v-wish-button-icon-size, 24px));
  height: var(--v-wish-button-icon-height, var(--v-wish-button-icon-size, 24px));
}
.v-wish-button path {
  stroke: var(--v-wish-button-icon-base);
  fill: var(--v-wish-button-icon-fill-bg);
  fill-opacity: var(--v-wish-button-icon-fill-bg-opacity);
}

pop-over:not(:defined) {
  display: none;
}

.v-has-popover {
  position: relative;
}

.v-popover {
  --popover-max-width: calc(
    min(100vw, 1440px) - var(--popover-left, 0px) - var(
        --popover-right,
        0px
      ) - var(--v-side-margin, 0px) *
      2
  );
  --popover-z-index: calc(var(--v-site-header-z) - 10);
}
.v-popover::part(container) {
  padding: var(--v-popover-padding, 15px 23px 15px 15px);
  margin-top: 8px;
  background-color: #fff;
  color: var(--v-popover-text-color, #6d6d6d);
  border: 1px solid #999;
  font-size: var(--v-popover-font-size, 12px);
  line-height: var(--v-popover-line-height, 1.3);
}

.v-star-rating {
  --v-star-icon-gap: 2px;
  --v-star-icon-size: 12px;
  --v-star-font-size: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.v-star-rating .v-star-icons {
  display: flex;
  gap: var(--v-star-icon-gap);
  width: calc(var(--v-star-icon-size) * var(--v-rating-value, 0) + var(--v-star-icon-gap) * round(var(--v-rating-value, 0.5) - 0.5));
  overflow: hidden;
  overflow: clip;
  color: #131922;
}
.v-star-rating .v-star-icons > svg {
  flex-shrink: 0;
  width: calc(var(--v-star-icon-size) * 5 + var(--v-star-icon-gap) * 4);
}
.v-star-rating .v-star-meta {
  font-size: 12px;
  line-height: 1.5;
  color: #000;
}
.v-star-rating .v-star-rating__review-count {
  color: #808080;
}

has-dropdown:not(:defined) {
  display: inline-flex;
}
has-dropdown:not(:defined) menu {
  display: none;
}

.v-global-overlay {
  position: relative;
  z-index: var(--v-global-overlay-z, var(--v-bottom-bar-z)1);
}

.v-bottom-sheet {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s linear;
  z-index: calc(var(--v-bottom-bar-z, 100) + 10);
}
.v-bottom-sheet.is-open {
  --v-bottom-sheet-y: 0;
  background: rgba(0, 0, 0, 0.7);
}

.v-bottom-sheet__container {
  position: fixed;
  inset: auto 0 0;
  transition: transform 0.3s ease-in-out;
  padding-bottom: env(safe-area-inset-bottom);
  transform: translate3d(0, var(--v-bottom-sheet-y, 100%), 0);
  width: 100%;
  background: #fff;
  color: #000;
}

.v-bottom-sheet__handle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: 16px;
  margin-bottom: 24px;
}
.v-bottom-sheet__handle::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background-color: #b7b7b7;
}

.v-bottom-sheet__title {
  margin-inline: var(--v-side-margin);
  margin-bottom: 8px;
  font-weight: var(--v-font-bold, 700);
  font-size: 16px;
  line-height: 1.3;
}

.v-bottom-sheet__footer {
  margin-top: var(--v-bottom-sheet-footer-top-margin, 48px);
  padding-inline: var(--v-bottom-sheet-footer-side-padding, var(--v-side-margin));
  padding-bottom: var(--v-bottom-sheet-footer-bottom-padding, 24px);
}

.v-well {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--v-well-padding, 24px);
  margin-inline: var(--v-well-side-margin, var(--v-side-margin));
  background-color: var(--v-well-bg-color, #f6f6f6);
  color: var(--v-well-fg-color, #000);
  font-size: var(--v-well-font-size, 16px);
  line-height: var(--v-well-line-height, 1.3);
  text-align: center;
}

.v-panel {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: var(--v-panel-z, calc(var(--v-bottom-bar-z) - 1));
}
.v-panel.is-open {
  --v-panel-x: 0;
}

.v-panel__inner {
  pointer-events: auto;
  transition: transform 0.3s ease-in-out;
  transform: translate3d(var(--v-panel-x, 100vw), 0, 0);
  position: absolute;
  inset: 0;
  padding-bottom: var(--v-bottom-bar-height, 0);
  background: #fff;
}

.v-panel__header {
  position: sticky;
  top: var(--v-panel-header-top, 0);
  right: 0;
  left: 0;
  width: 100%;
}

.v-panel__body {
  height: calc(var(--v-full-height, 100vh) - var(--v-panel-header-height, var(--v-site-header-height, 0)));
  padding-bottom: var(--v-panel-body-padding-bottom, 56px);
  overflow: auto;
  overflow-x: hidden;
}

.v-full-layer {
  position: fixed;
  z-index: var(calc(max(var(--v-site-header-z), var(--v-bottom-bar-z)) + 1));
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  overflow: hidden;
  overflow: clip;
  display: var(--v-full-layer-display, none);
  grid-template-areas: "header" "body";
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  color: #000;
}

div.v-full-layer,
dialog.v-full-layer[open] {
  --v-full-layer-display: grid;
}

div.v-full-layer[hidden] {
  --v-full-layer-display: none;
}

.v-full-layer__header {
  --v-sub-header-position: relative;
  grid-area: header;
}

.v-full-layer__body {
  grid-area: body;
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: auto;
  padding: var(--v-full-layer-body-padding, 0);
}

:root {
  --v-title-wide-side-margin: 8px;
}

:root {
  --swiper-navigation-color: #999;
}

swiper-container[slides-offset-before="24"] {
  --v-carousel-offset-before: 24px;
}
swiper-container[slides-offset-after="24"] {
  --v-carousel-offset-after: 24px;
}
swiper-container[slides-offset-before="40"] {
  --v-carousel-offset-before: 40px;
}
swiper-container[slides-offset-after="40"] {
  --v-carousel-offset-after: 40px;
}

swiper-container:not(:defined) {
  display: flex;
  gap: var(--v-carousel-gap, 8px);
  max-width: calc(100% - var(--v-carousel-offset-before, 0) - var(--v-carousel-offset-after, 0) - var(--v-carousel-side-margin, 0) * 2);
  overflow-y: clip;
  overflow-x: auto;
}
swiper-container:not(:defined)[slides-offset-before] {
  padding-left: var(--v-carousel-offset-before);
}
swiper-container:not(:defined)[slides-offset-after] {
  padding-right: var(--v-carousel-offset-after);
}
swiper-container:not(:defined):not([slides-offset-before][slides-offset-after]) {
  padding-inline: var(--v-carousel-root-pad-x, var(--v-side-margin, 24px));
}
swiper-container:not(:defined) .v-carousel_slot_end {
  padding-left: 0;
  padding-right: 0;
}

swiper-slide:not(:defined) {
  display: block;
  flex-shrink: 0;
  flex-grow: 0;
  width: var(--v-carousel-slide-width, 100%);
}

.v-carousel {
  --v-carousel-slide-width: var(
    --swiper-slide-size,
    calc(
      (
          100% - (var(--v-carousel-slides-per-view, 1) - 1) *
            var(--v-carousel-gap, 8px)
        ) /
        var(--v-carousel-slides-per-view, 1)
    )
  );
  --swiper-navigation-top-offset: calc(
    (var(--v-carousel-slide-width) * 1.5) / 2
  );
  margin-inline: var(--v-carousel-side-margin, 0px);
}
.v-carousel[slides-per-view="1"] {
  --v-carousel-slides-per-view: 1;
}
.v-carousel[slides-per-view="1.3725"] {
  --v-carousel-slides-per-view: 1.3725;
}
.v-carousel[slides-per-view="2"] {
  --v-carousel-slides-per-view: 2;
}
.v-carousel[slides-per-view="2.7551"] {
  --v-carousel-slides-per-view: 2.7551;
}
.v-carousel[slides-per-view="3"] {
  --v-carousel-slides-per-view: 3;
}
.v-carousel[slides-per-view="3.6"] {
  --v-carousel-slides-per-view: 3.6;
}
.v-carousel[slides-per-view="4"] {
  --v-carousel-slides-per-view: 4;
}
.v-carousel[slides-per-view="4.8"] {
  --v-carousel-slides-per-view: 4.8;
}
.v-carousel[slides-per-view="5.55"] {
  --v-carousel-slides-per-view: 5.55;
}

.v-carousel_slot_end {
  padding-top: var(--v-carousel-slot-end-top, 20px);
  padding-right: var(--v-carousel-offset-after, 0px);
  padding-left: var(--v-carousel-offset-before, 0px);
}
.v-carousel_slot_end:not(:has(*)) {
  display: none;
}

.v-carousel:has(.v-quick-link) {
  --swiper-pagination-area-height: 30px;
}

.v-carousel[css-mode=true]::part(wrapper) {
  padding-left: var(--v-carousel-offset-before, 0);
  padding-right: var(--v-carousel-offset-after, 0);
  box-sizing: border-box;
}

.v-carousel[slides-per-view="1"]:has(.v-media-banner) {
  overflow: hidden;
  padding-inline: var(--v-carousel-side-margin, 0px);
  margin-inline: 0;
}
.v-carousel[slides-per-view="1"]:has(.v-media-banner)::part(container) {
  overflow: visible;
}

.v-product-unit {
  --v-media-aspect-ratio: 1 / 1.5;
  --v-media-fit: contain;
  display: flex;
  flex-direction: column;
  gap: var(--v-space-2);
}

.v-product-unit__link {
  display: block;
}

.v-product-unit__media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template: "tl . tr" ". . ." "bl . br";
  height: fit-content;
}
.v-product-unit__media-grid .v-product-unit__link {
  grid-column: 1/-1;
  grid-row: 1/-1;
}

.v-product-unit__top-left,
.v-product-unit__top-right,
.v-product-unit__bottom-left,
.v-product-unit__bottom-right {
  z-index: 1;
  display: flex;
}

.v-product-unit__top-left,
.v-product-unit__bottom-left {
  justify-content: flex-start;
}

.v-product-unit__top-right,
.v-product-unit__bottom-right {
  justify-content: flex-end;
}

.v-product-unit__top-left {
  grid-area: tl;
}

.v-product-unit__top-right {
  grid-area: tr;
}

.v-product-unit__bottom-left {
  grid-area: bl;
}

.v-product-unit__bottom-right {
  grid-area: br;
}

.v-product-unit__content {
  font-size: 12px;
  line-height: 1.3;
}
.v-product-unit__content > * {
  margin-top: 4px;
}
.v-product-unit__content > *:first-child {
  margin-top: 0;
}

.v-product-unit__brand {
  font-weight: var(--v-font-bold);
  line-height: 1.2;
}

.v-product-unit__name {
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  color: #6d6d6d;
}

.v-product-unit__price-group {
  display: flex;
  gap: 8px;
  font-size: 13px;
}

.v-product-unit__price {
  font-weight: var(--v-font-bold);
}

.v-product-unit__discount {
  color: #da291c;
}

.v-product-unit__tags,
.v-product-unit__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: var(--v-product-unit-tag-row-gap, 4px) var(--v-product-unit-tag-column-gap, 8px);
  color: #6d6d6d;
}

.v-product-unit__tags {
  font-weight: var(--v-font-bold);
}

.v-product-unit__rank {
  margin: 5px 1px 5px 5px;
  font-size: 20px;
  font-weight: var(--v-font-bold);
  line-height: 1;
  text-align: center;
  color: #6d6d6d;
}

.v-product-unit__ratings:empty, .v-product-unit__ratings:not(:has(*)) {
  display: none;
}
.v-product-unit__tags:not(:has(.v-product-unit__tag)) {
  display: none;
}
.v-product-unit__keywords:not(:has(.v-product-unit__keyword)) {
  display: none;
}

.v-product-unit--gift-wrap:has(.v-product-thumbnail-list > li:first-child [aria-pressed=true]) {
  --v-product-unit-ui-display: flex;
}
.v-product-unit--gift-wrap .v-product-unit__top-right,
.v-product-unit--gift-wrap .v-product-unit__overlay {
  display: var(--v-product-unit-ui-display, none);
}

.v-product-thumbnail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.v-product-thumbnail-button {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  border: none;
  padding: 0;
  background: #f7f7f7;
  font: inherit;
}
.v-product-thumbnail-button[aria-pressed=true] {
  outline: 1px solid #000;
  outline-offset: -1px;
}
.v-product-thumbnail-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.03);
}

.v-product-thumbnail {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: contain;
}

.v-line-banner {
  display: flex;
  gap: var(--v-space-2);
  align-items: center;
  justify-content: space-between;
  height: var(--v-line-banner-height, 36px);
  padding-inline: var(--v-space-6);
  margin-inline: var(--v-line-banner-side-margin, var(--v-side-margin));
  text-decoration: none;
  background-color: var(--v-line-banner-bg, #000);
  color: var(--v-line-banner-text-color, #f8f9fa);
  transition: background 0.3s ease;
  cursor: pointer;
}
.v-line-banner:hover {
  background-color: var(--v-line-banner-bg-hover, #111);
}

.v-line-banner__content {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  font-size: 16px;
  line-height: 1.3;
}

.v-line-banner__icon {
  flex-grow: 0;
  flex-shrink: 0;
  width: 7px;
  height: auto;
}
.v-line-banner__icon path {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v-line-banner--wide {
  --v-line-banner-side-margin: 0;
}

.v-media-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: var(--v-media-content-gap, 20px);
}

.v-media-banner__media {
  margin-inline: var(--v-media-banner-media-side, var(--v-side-margin));
}
.v-media-banner__media a {
  display: block;
}

.v-media-banner__content,
.v-media-banner__text,
.v-media-banner__header {
  display: flex;
  flex-direction: column;
}

.v-media-banner__content {
  gap: var(--v-text-button-gap, var(--v-space-5));
  padding-inline: var(--v-media-banner-content-side, var(--v-side-margin));
}

.v-media-banner__text {
  gap: var(--v-header-banner-sub-name-gap, var(--v-space-3));
}

.v-media-banner__header {
  gap: var(--v-small-title-banner-name-gap, var(--v-space-2));
}

.v-media-banner__separator {
  height: var(--v-media-banner-separator-height, 2px);
  background: currentColor;
}

.v-media-banner__small-title,
.v-media-banner__name {
  text-transform: uppercase;
}

.v-media-banner__small-title {
  font-size: var(--v-small-title-size, 12px);
  line-height: var(--v-small-title-line-height, 1.3);
  letter-spacing: var(--v-small-title-leading, -0.01em);
}

.v-media-banner__name {
  font-size: var(--v-banner-name-size, 32px);
  line-height: var(--v-banner-name-line-height, 1);
  letter-spacing: var(--v-banner-name-leading, -0.03em);
}

.v-media-banner__sub-name {
  font-size: var(--v-banner-sub-name-size, 14px);
  line-height: var(--v-banner-sub-name-line-height, 1.3);
  letter-spacing: var(--v-banner-sub-name-leading, -0.02em);
}

.v-media-banner--layered {
  --v-media-banner-media-side: 0;
  color: #fff;
}
.v-media-banner--layered .v-media-banner__media {
  grid-column: 1/-1;
  grid-row: 1/-1;
}
.v-media-banner--layered .v-media-banner__content {
  z-index: 1;
  grid-column: 1/-1;
  grid-row: auto/-1;
  padding-bottom: 24px;
}
.v-media-banner--layered .v-media-embed--dim:after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.v-media-banner--wide {
  --v-media-banner-media-side: 0;
}

.v-media-banner--hero {
  --v-small-title-size: 14px;
  --v-banner-name-size: 36px;
  --v-banner-sub-name-size: 16px;
}

.v-media-banner--stretched {
  --v-media-banner-media-side: 0;
  --v-media-banner-content-side: 0;
}

.v-carousel[check-height=".v-media-banner__content"] .v-media-banner__content {
  height: var(--swiper-checked-height);
  justify-content: space-between;
}

.v-quick-link {
  --v-media-aspect-ratio: 131/196;
  display: flex;
  flex-direction: column;
  gap: var(--v-quick-link-gap, 8px);
  text-decoration: none;
  color: inherit;
}

.v-quick-link__text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: var(--v-quick-link-font-size, 12px);
  line-height: var(--v-quick-link-line-height, 1.5);
}

.v-html-embed {
  overflow: clip;
  margin-inline: var(--v-html-embed-side, var(--v-side-margin));
}

.v-html-embed--wide {
  --v-html-embed-side: 0;
}

tab-container {
  --swiper-pagination-area-height: 0;
  display: block;
  width: 100%;
}
tab-container swiper-container:not(:defined) {
  display: flex;
  gap: var(--v-tablist-gap, 16px);
  min-width: 100%;
  overflow-y: clip;
  overflow-x: auto;
  padding: 0 var(--v-slides-offset, 24px);
}
tab-container swiper-slide {
  width: auto !important;
}
tab-container swiper-slide:not(:defined) {
  display: block;
  flex-shrink: 0;
  flex-grow: 0;
  width: auto !important;
}

.v-tab {
  padding-bottom: var(--v-tab-button-padding-bottom, 20px);
}

.v-tab-button {
  --v-button-max-width: 320px;
  --v-button-font-weight: var(--v-tab-button-font-weight, 400);
  --v-button-font-size: var(--v-tab-button-font-size, 14px);
  --v-button-line-height: var(--v-tab-button-line-height, 1.3);
  --v-button-text-color: var(--v-tab-button-color, #929292);
  display: block;
  text-overflow: ellipsis;
}
.v-tab-button[aria-selected=true] {
  --v-tab-button-color: #000;
  --v-button-font-weight: var(--v-tab-button-font-weight-selected, 900);
}

.v-tab-panel {
  display: none;
}
.v-tab-panel.is-active {
  display: block;
}

.v-video-product {
  display: flex;
  flex-direction: column;
  gap: var(--v-video-product-gap, 16px);
}
.v-video-product .v-media-embed--dim::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.v-video-product__banner {
  position: relative;
}

.v-video-product__live-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow: clip;
  white-space: nowrap;
  text-indent: 110%;
  background: transparent;
  border: none;
}

.v-video-product__link {
  display: block;
  transform: translate3d(0, 0, 0);
}

.v-video-product__product {
  position: absolute;
  right: var(--v-video-product-inset, 12px);
  bottom: var(--v-video-product-inset, 12px);
  left: var(--v-video-product-inset, 12px);
  display: grid;
  grid-template-areas: "thumbnail info";
  grid-template-columns: var(--v-video-product-thumbnail-width, 60px) minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: 12px;
  color: var(--v-video-product-text-color, #fff);
  font-size: var(--v-video-product-font-size, 12px);
  line-height: 1.3;
}

.v-video-product__thumbnail {
  grid-area: thumbnail;
  width: 100%;
  --v-media-aspect-ratio: 1/1.5;
  background-color: #fff;
}

.v-video-product__info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: var(--v-video-product-info-gap, 2px);
  margin-top: 12px;
}

.v-video-product__price {
  font-weight: var(--v-font-bold);
}

.v-video-product__text {
  display: flex;
  width: var(--v-video-product-text-width, calc(100% - 21px));
  flex-direction: column;
  gap: var(--v-video-product-text-gap, 3px);
  font-size: var(--v-video-product-text-size, 14px);
  line-height: var(--v-video-product-text-line-height, 1.2857142857);
}

:root {
  --v-site-header-z: 100;
  --v-site-header-height: 56px;
  --v-site-header-button-width: 36px;
  --v-site-header-button-height: 46px;
  --v-site-header-icon-size: 24px;
}

.v-main-header {
  --v-line-banner-side-margin: 0;
  z-index: var(--v-site-header-z);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.v-main-header__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: 1fr;
  grid-template-areas: "lead main trail";
  align-items: center;
  width: 100%;
  height: var(--v-site-header-height);
  padding-inline: 18px;
  background-color: var(--v-site-header-bg-color, #fff);
  color: var(--v-site-header-fg-color, #000);
}

.v-main-header__main {
  grid-area: main;
  grid-row: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.v-main-header__lead {
  grid-area: lead;
}

.v-main-header__trail {
  grid-area: trail;
}

.v-main-header__logo {
  display: grid;
  grid-template-areas: ". logo button";
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  grid-template-rows: 1fr;
  gap: 4px;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.v-logo-shinsegaev {
  grid-area: logo;
  height: 100%;
}
.v-logo-shinsegaev img {
  display: block;
  width: 130px;
  height: 100%;
  max-height: var(--v-site-header-height);
}

.v-main-header__button--mall {
  --v-site-header-button-width: 24px;
  grid-area: button;
  color: #999;
}
.v-main-header__button--mall .v-main-header__icon {
  transform: translateY(7px);
}

.v-main-header__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--v-site-header-button-width);
  height: var(--v-site-header-button-height);
}

.v-shopping-bag__count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  width: 12px;
  overflow: clip;
  font-weight: var(--v-font-bold);
  font-size: 8px;
  line-height: 1.3;
}

.v-main-header__icon {
  flex-shrink: 0;
  width: var(--v-site-header-icon-size);
  height: var(--v-site-header-icon-size);
  overflow: visible;
}

.v-sub-header {
  --v-line-banner-side-margin: 0;
  --v-site-header-button-width: 36px;
  z-index: var(--v-site-header-z);
  position: var(--v-site-header-position, sticky);
  left: 0;
  right: 0;
  width: 100%;
  top: var(--v-site-header-top, 0);
}

.v-sub-header--dark {
  --v-site-header-bg-color: #999;
  --v-site-header-fg-color: #fff;
}

.v-sub-header__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: 1fr;
  grid-template-areas: "lead . trail";
  align-items: center;
  height: var(--v-site-header-height);
  padding-inline: var(--v-site-header-bar-padding-inline, 18px);
  background-color: var(--v-site-header-bg-color, #fff);
  color: var(--v-site-header-fg-color, #000);
}

.v-sub-header__lead {
  grid-area: lead;
  display: flex;
}

.v-sub-header__trail {
  grid-area: trail;
  display: flex;
}

.v-sub-header__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--v-site-header-button-width, 36px);
  height: var(--v-site-header-button-height, 46px);
}
.v-sub-header__button.on::after {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  right: 8px;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #da291c;
}

.v-sub-header__icon {
  width: auto;
  height: 24px;
}

.v-sub-header__main {
  grid-row: 1/-1;
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: var(--v-site-header-justify, center);
  padding-left: var(--v-site-header-main-padding-left, calc(var(--v-site-header-button-width) * 2));
  padding-right: var(--v-site-header-main-padding-right, calc(var(--v-site-header-button-width) * 2));
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v-sub-header__main :is(h1, h2, h3, h4, h5, h6) {
  font: inherit;
}
.v-sub-header__main :is(img) {
  max-width: 170px;
  max-height: 35px;
}

.v-sub-header--freeform {
  --v-site-header-justify: flex-start;
  --v-site-header-main-padding-left: 0;
  --v-site-header-main-padding-right: 0;
}
.v-sub-header--freeform .v-sub-header__main {
  grid-column: 2/-2;
}

.v-sub-header--transparent {
  --v-site-header-top: calc(-1 * var(--v-site-header-height));
  --v-site-header-bg-color: transparent;
}
.v-sub-header--transparent .v-sub-header__bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.v-sub-header--transparent:not(.is-above) {
  --v-site-header-fg-color: #fff;
}
.v-sub-header--transparent:not(.is-above) .v-sub-header__main img {
  filter: invert(1);
}
.v-sub-header--transparent.is-above {
  --v-site-header-bg-color: #fff;
}
.body-scroll-up .v-sub-header--transparent {
  --v-site-header-top: 0;
}

.v-sub-header--offline {
  --v-site-header-justify: flex-start;
  --v-site-header-bar-padding-inline: 24px;
  --v-site-header-main-padding-left: 0;
  --v-site-header-main-padding-right: 0;
}
.v-sub-header--offline .v-sub-header__trail {
  font-size: 18px;
}

.v-sub-header__search-bar {
  width: calc(100% - 7px);
  padding-block: 6px 8px;
  border-bottom: 2px solid var(--v-header-search-bar-fg-color, currentColor);
  margin-inline: 2px 5px;
}
.v-sub-header__search-bar input {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  font-size: 16px;
  line-height: 1;
}
.v-sub-header__search-bar input::placeholder {
  color: var(--v-header-search-bar-placeholder-color, #999);
}

.v-shopping-bag__count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  width: 12px;
  overflow: clip;
  font-size: 8px;
  line-height: 1.3;
}

body:has(.v-sub-header--autohide).scroll-up {
  --v-sub-header-y: 0px;
}
body:has(.v-sub-header--autohide).scroll-down {
  --v-sub-header-y: calc(var(--v-site-header-height, 0px) * -1);
}
body:has(.v-sub-header--autohide) .v-sub-header {
  height: var(--v-site-header-height);
}
body:has(.v-sub-header--autohide) .v-sub-header__inner {
  position: fixed;
  transition: transform var(--v-sub-header-transition-duration, 0.2s) var(--v-sub-header-transition-easing, ease-in-out);
  top: 0;
  right: 0;
  left: 0;
  transform: translate3d(0, var(--v-sub-header-y, 0px), 0);
}

:root {
  --v-bottom-bar-z: calc(var(--v-site-header-z, 100) + 20);
  --v-bottom-bar-height: 56px;
}

body:has(.v-bottom-bar):not(:has(.v-footer)) {
  padding-bottom: calc(env(safe-area-inset-bottom, 0) + var(--v-bottom-bar-height));
}

.v-bottom-bar {
  z-index: var(--v-bottom-bar-z);
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

.v-bottom-bar__inner {
  width: 100%;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--v-bottom-bar-bg-color, #fff);
  color: var(--v-bottom-bar-fg-color, #000);
}

.v-bottom-bar__nav {
  display: flex;
  min-width: 0;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  height: var(--v-bottom-bar-height);
}

.v-bottom-bar__button {
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v-bottom-bar__icon {
  width: auto;
  height: 24px;
}

:root {
  --v-footer-height: 310px;
}

.v-footer {
  width: 100%;
  padding-bottom: var(--v-bottom-bar-height);
  background: var(--v-bottom-bar-bg-color, #f6f6f6);
}

.v-footer__inner {
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + var(--v-side-margin));
  color: var(--v-bottom-bar-fg-color, #000);
  font-size: 12px;
  font-weight: var(--v-font-regular, 400);
  line-height: 1.3;
  color: #6d6d6d;
}
.v-footer__inner > * {
  padding-inline: var(--v-side-padding, var(--v-side-margin));
}

.v-footer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
  background: #ffffff;
  border-top: 1px solid #dddddd;
  padding-inline: var(--v-side-padding, calc(var(--v-side-margin) - 10px));
}
.v-footer__nav .v-footer__nav-button {
  height: 100%;
  padding: 16px 10px;
  font-size: 14px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v-footer__folder .v-footer__folder-title {
  width: 100%;
  padding: 15px 0;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.v-footer__folder .v-footer__folder-title::-webkit-details-marker {
  display: none;
}
.v-footer__folder .v-footer__folder-title span {
  font-size: 16px;
  font-weight: var(--v-font-bold, 700);
  font-family: var(--v-font-sans);
  color: #000000;
}
.v-footer__folder .v-footer__folder-icon {
  width: 24px;
  height: 24px;
}
.v-footer__folder .v-footer__folder-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.v-footer__folder .v-footer__folder-info {
  --v-footer-info-gap: 4px;
  --v-footer-info-Space: 16px;
  display: flex;
  flex-direction: column;
  gap: var(--v-footer-info-gap);
  padding-bottom: var(--v-footer-info-Space);
}
.v-footer__folder .v-footer__folder-info span:last-child {
  margin-top: calc(var(--v-footer-info-Space) - var(--v-footer-info-gap));
}
.v-footer__folder .v-footer__folder-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 20px;
}
.v-footer__folder .v-footer__folder-link-button {
  font-size: 12px;
  line-height: 1.2;
  position: relative;
  padding-right: 14px;
}
.v-footer__folder .v-footer__folder-link-button::after {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" ><path d="M4 3L8 6L4 9" stroke="currentColor" stroke-linecap="square"/></svg>');
  background-repeat: no-repeat;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

details[open] .v-footer__folder-content {
  max-height: 10000px;
  opacity: 1;
}
details[open] .v-footer__folder-icon {
  transform: rotate(180deg);
  transition: 0.2s;
}

.v-footer__link {
  border-top: 1px solid #dddddd;
  padding: var(--v-side-margin);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v-footer__link .v-footer__link-list .v-footer__link-list__button {
  line-height: 1.3;
  color: #000;
}
.v-footer__link .v-footer__link-list .v-footer__link-list__button::after {
  content: "";
  display: block;
  width: 1px;
  height: 8px;
  margin: 0 10px;
  background-color: #eeeeee;
  position: relative;
  top: -1px;
}
.v-footer__link .v-footer__link-list .v-footer__link-list__button:last-child::after {
  display: none;
}
.v-footer__link .v-footer__link-sns {
  display: flex;
  gap: 8px;
}
.v-footer__link .v-footer__link-sns svg {
  width: 24px;
  height: auto;
}

.v-footer__copyright {
  letter-spacing: -0.01em;
}

body.show-top-button {
  --v-top-button-o: 1;
  --v-floating-buttons-y: 0;
}

.v-floating-buttons {
  position: fixed;
  right: 13px;
  bottom: var(--v-floating-bottom, calc(var(--v-bottom-bar-height) + 20px));
  padding-bottom: env(safe-area-inset-bottom);
  display: flex;
  flex-direction: column;
  touch-action: manipulation;
  gap: 12px;
  z-index: var(--v-floating-z, calc(var(--v-bottom-bar-z, 120) - 1));
  transition: transform 0.3s ease-in-out;
  transform: translateY(var(--v-floating-buttons-y, calc(env(safe-area-inset-bottom) + var(--v-bottom-bar-height))));
}
.v-floating-buttons .v-button {
  width: 44px;
  overflow: visible;
}
.v-floating-buttons svg,
.v-floating-buttons img {
  width: 100%;
  height: auto;
  overflow: visible;
}
.v-floating-buttons .v-top-button {
  transition: opacity 0.2s linear;
  opacity: var(--v-top-button-o, 0);
}

swiper-container:not(:defined)[slides-per-view="1"] {
  --swiper-slide-size: calc(
    100vw - var(--v-carousel-root-pad-x, var(--v-side-margin, 24px)) * 2
  );
}

.v-carousel::part(root) {
  padding-inline: var(--v-carousel-root-pad-x, var(--v-side-margin, 24px));
}
.v-carousel.v-carousel--wide, .v-carousel[slides-offset-before], .v-carousel[slides-offset-after] {
  --v-carousel-root-pad-x: 0px;
}
.v-carousel[pagination=true][slides-per-view="1"]:has(swiper-slide:nth-of-type(2)), .v-carousel[pagination=true][slides-per-view="2"]:has(swiper-slide:nth-of-type(3)), .v-carousel[pagination=true][slides-per-view="3"]:has(swiper-slide:nth-of-type(4)), .v-carousel[pagination=true][slides-per-view="4"]:has(swiper-slide:nth-of-type(5)), .v-carousel[pagination=true][slides-per-view="5"]:has(swiper-slide:nth-of-type(6)) {
  --swiper-pagination-area-height: 56px;
}
.v-carousel[css-mode=true]::part(wrapper) {
  padding-left: var(--v-carousel-offset-before, 0);
  padding-right: var(--v-carousel-offset-after, 0);
  box-sizing: border-box;
}
.v-carousel.v-carousel--wide {
  --swiper-navigation-color: #fff;
}
.v-carousel:has(.v-quick-link) {
  --swiper-pagination-area-height: 30px;
}

[class*=v-tmpl--img-1-text-out] .v-media-banner {
  --v-media-aspect-ratio: 375 / 562;
  --v-media-fit: cover;
}

.v-carousel--wide .v-media-banner--layered {
  --v-small-title-size: 14px;
  --v-banner-name-size: 36px;
  --v-banner-sub-name-size: 16px;
}

.v-mall-selector {
  padding: 0 var(--v-side-margin, 0) 40px;
}
.v-mall-selector p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.1428571429;
}

.v-mall-selector__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v-mall-selector__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #eee;
}
.v-mall-selector__banner img {
  display: block;
  width: 100%;
  max-width: 327px;
  height: auto;
  aspect-ratio: 327/70;
  object-fit: contain;
}

.v-mall-selector-unit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 17px 24px;
  background: #f1f1f1;
}

.v-mall-selector-unit__name {
  font-size: 18px;
  line-height: 0.8888888889;
}

.v-mall-selector-unit__subline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}
.v-mall-selector-unit__subline::after {
  content: "";
  display: block;
  width: 8px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 12'%3E%3Cpath stroke='%233F3F3F' stroke-linecap='square' d='M2 9.5 6 6 2 2.5' opacity='.7'/%3E%3C/svg%3E");
}

.v-wish-list-frame {
  --swiper-slide-size: 131px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: var(--v-full-height, 100vh);
}
.v-wish-list-frame .v-wish-list {
  --v-bottom-sheet-footer-top-margin: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.v-wish-list-frame swiper-slide {
  width: var(--swiper-slide-size, 131px);
}

.v-wish-list {
  --v-bottom-sheet-footer-top-margin: 28px;
  --swiper-pagination-area-height: 0;
}
.v-wish-list .v-product-unit__keywords {
  display: flex;
  min-height: 15.6px;
}
.v-wish-list .v-product-unit__brand {
  line-height: 1.3;
}

.v-search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-block: 16px 8px;
  margin-inline: 24px;
  border-bottom: 2px solid #000;
}

.v-search-box__input input {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: 16px;
  line-height: 1.3;
}
.v-search-box__input input:focus {
  outline: none;
}
.v-search-box__input input::placeholder {
  color: #999;
}

.v-search-box__actions {
  display: flex;
  gap: 12px;
}

.v-search-box__button {
  --v-button-width: 24px;
  --v-button-height: 24px;
}

.v-search-box__icon {
  width: 18px;
  height: auto;
}

.v-search-box__button--reset {
  --v-button-display: var(--v-search-reset-display, inline-flex);
}

.v-search-box__button--image-search {
  --v-button-display: var(--v-search-image-display, none);
}
.v-search-box__button--image-search svg {
  width: 24px;
  height: auto;
}

.v-search-box:has(input:placeholder-shown) {
  --v-search-reset-display: none;
  --v-search-image-display: inline-flex;
}

.v-recent-search-keywords {
  --v-delete-button-display: none;
  --v-dropdown-button-display: flex;
  position: relative;
}
.v-recent-search-keywords .v-section-header {
  position: relative;
  z-index: 10;
}
.v-recent-search-keywords .v-dropdown-button {
  --v-button-display: var(--v-dropdown-button-display);
}
.v-recent-search-keywords .v-menu-button {
  --v-menu-button-text-color: #000;
  --v-menu-button-font-weight: var(--v-font-bold);
}
.v-recent-search-keywords .v-menu-button:disabled {
  --v-menu-button-text-color: #6d6d6d;
  --v-menu-button-font-weight: var(--v-font-normal);
}

.v-recent-search-keywords_mode_delete {
  --v-delete-button-display: flex;
  --v-dropdown-button-display: none;
}

.v-recent-search-keyword-list {
  --swiper-pagination-area-height: 0;
}
.v-recent-search-keyword-list::part(container), .v-recent-search-keyword-list::part(wrapper) {
  height: fit-content;
}
.v-recent-search-keyword-list swiper-slide {
  width: auto;
  height: fit-content;
}

.v-recent-search-keyword {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  line-height: 1.3;
}

.v-section-header__text-button {
  --v-button-display: var(--v-delete-button-display);
}

.v-recent-search-keyword__delete-button {
  --v-button-display: var(--v-delete-button-display);
  --v-button-width: 12px;
  --v-button-text-color: #999;
  margin-right: -4px;
}
.v-recent-search-keyword__delete-button svg {
  width: 100%;
  height: auto;
  fill: none;
}

.v-rank-list {
  list-style: none;
}

.v-rank-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-block: 12px;
  font-size: 16px;
  line-height: 1.3;
}

.v-rank-item__place {
  width: 18px;
}

.v-rank-item__keyword {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.v-rank-item__diff-icon {
  width: 12px;
  height: auto;
}

.v-search-suggestions {
  margin-top: 16px;
}

.v-keyword-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v-keyword-link {
  display: grid;
  gap: 8px;
  width: 100%;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.3;
}

.v-keyword-link--has-tag {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.v-keyword-link__tag {
  background: var(--v-keyword-tag-bg-color, #000);
  color: var(--v-keyword-tag-fg-color, #fff);
  padding: 3px 6px;
  font-size: 12px;
  text-box: trim-both;
}

.v-keyword-link__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
}
.v-keyword-link__text:has(mark) {
  color: #999;
}
.v-keyword-link__text mark {
  background: none;
  color: #000;
}

.v-keyword-link__chevron {
  flex: 0 0 16px;
  width: 16px;
  height: auto;
  fill: none;
  color: #999;
}

:root {
  --v-search-box-height: 50px;
}

.v-search-layer {
  --v-section-margin-top: 40px;
  --v-section-header-margin-bottom: 16px;
  --v-sub-header-position: relative;
  --v-full-layer-body-padding: 0 0 56px;
  --v-search-width: 100dvw;
  --v-search-height: var(--v-full-height, 100vh);
  --v-search-position: fixed;
  --v-search-z-index: calc(
    max(var(--v-site-header-z), var(--v-bottom-bar-z)) + 1
  );
  position: var(--v-search-position);
  z-index: var(--v-search-z-index);
  inset: 0;
  width: var(--v-search-width);
  height: var(--v-search-height);
  overflow: hidden;
  overflow: clip;
  background: #fff;
}
.v-search-layer.v-search-app {
  --v-search-width: 100%;
  --v-search-height: 100%;
  --v-search-position: relative;
  --v-search-z-index: 0;
}
.v-search-layer.v-search-app .v-search-app__header {
  position: sticky;
  top: var(--v-site-header-height);
  z-index: var(--v-site-header-z);
  background-color: #fff;
}

.v-search-layer .v-full-layer__header {
  position: relative;
  z-index: var(--v-site-header-z);
}

.v-image-search-options-layer {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(var(--v-full-height, 100vh) - var(--v-layer-header-height, 106px));
  overflow: hidden;
  overflow: clip;
  background: rgba(0, 0, 0, 0.7);
}

.v-image-search-options {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2px;
  padding: 0 12px;
  background: #fff;
}

.v-image-search-options__button {
  --v-button-padding: 24px;
  gap: 6px;
}
.v-image-search-options__button .v-button__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
.v-image-search-options__button .v-button__label {
  font-size: 14px;
  line-height: 1.3;
}

.v-bottom-sheet--notice-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s linear;
}
.v-bottom-sheet--notice-popup.is-open {
  z-index: 140;
  background: rgba(0, 0, 0, 0.7);
}

.v-notice-popup {
  max-height: calc(var(--v-full-height, 100vh) - var(--v-notice-popup-top-spacing, 56px));
  overflow: auto;
}

.v-notice-popup__content .v-carousel {
  --v-media-aspect-ratio: 750/840;
  --swiper-pagination-progressbar-bg-color: rgba(255, 255, 255, 0.4);
  --swiper-pagination-color: #fff;
  --swiper-pagination-area-height: 58px;
}
.v-notice-popup__content .v-carousel::part(root) {
  padding-bottom: 0;
}
.v-notice-popup__content .v-media-embed {
  --v-media-bg: #fff;
  --v-media-fit: cover;
}

.v-notice-popup__footer {
  position: sticky;
  bottom: 0;
  z-index: 2;
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding-inline: var(--v-notice-popup-footer-side-padding, var(--v-side-margin));
  padding-top: var(--v-notice-popup-footer-top-padding, 16px);
  padding-bottom: var(--v-notice-popup-footer-bottom-padding, 16px);
  border-top: 1px solid #e0e0e0;
}

.v-notice-popup__action--close {
  --v-button-font-size: 14px;
  --v-button-line-height: 24px;
  margin-left: auto;
}

.v-product-unit--gift-wrap {
  display: grid;
  grid-template-areas: "media" "thumbnails" "info";
  grid-template-columns: 100%;
  overflow: clip;
  gap: 0;
}

.v-product-unit__media-grid {
  grid-area: media;
}

.v-product-unit__link:has(.v-product-unit__content) {
  grid-area: info;
  margin-top: 8px;
}

.v-product-unit__thumbnails {
  grid-area: thumbnails;
  margin-top: 7px;
}

.v-banner-product {
  --v-header-banner-sub-name-gap: var(--v-space-5);
}

.v-banner-product__products {
  margin-top: var(--v-banner-products-gap, var(--v-space-5));
}

.v-tmpl--img-1-text-out-product .v-carousel::part(wrapper) {
  align-items: stretch;
}
.v-tmpl--img-1-text-out-product swiper-slide {
  height: auto;
  align-self: stretch;
}
.v-tmpl--img-1-text-out-product swiper-slide .v-banner-product {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  grid-template-columns: 1fr;
  grid-template-areas: "banner" "products";
  height: 100%;
}
.v-tmpl--img-1-text-out-product swiper-slide .v-banner-product__banner {
  grid-area: banner;
}
.v-tmpl--img-1-text-out-product swiper-slide .v-banner-product__products {
  grid-area: products;
  height: var(--swiper-checked-height);
}
.v-tmpl--img-1-text-out-product swiper-slide .v-media-banner {
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
}
.v-tmpl--img-1-text-out-product swiper-slide .v-media-banner__content {
  justify-content: space-between;
}

.v-tmpl--img-1-text-in-product-peakaboo .v-banner-product__banner {
  --v-media-aspect-ratio: 375 / 562;
  --v-media-fit: cover;
  margin-inline: var(--v-side-margin);
}
.v-tmpl--img-1-text-in-product-peakaboo .v-banner-product__banner:has(.v-media-banner--wide) {
  margin-inline: 0;
}

:root {
  --v-full-height: 100vh;
  --v-full-height: 100dvh;
}

.v-visually-hidden:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.v-no-scrollbar {
  scrollbar-width: none;
}
.v-no-scrollbar::-webkit-scrollbar {
  display: none;
}

.v-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-wrap: nowrap !important;
}

.v-line-clamp-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.v-line-clamp-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.v-line-clamp-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.v-line-clamp-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.v-line-clamp-6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.v-line-clamp-7 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.v-line-clamp-8 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

.v-line-clamp-9 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
}

.v-line-clamp-10 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
}

.v-side-margin {
  margin-inline: var(--v-side-margin);
}

.v-side-padding,
.v-wide {
  padding-inline: var(--v-side-padding, var(--v-side-margin));
}

.v-grid {
  display: grid;
  grid-template-columns: repeat(var(--v-grid-columns), minmax(0, 1fr));
  column-gap: var(--v-grid-gutter);
}

.v-grid__full {
  grid-column: 1/-1;
}

.v-col-span-1 {
  grid-column: span 1;
}

.v-col-start-1 {
  grid-column-start: 1;
}

.v-col-end-1 {
  grid-column-end: 1;
}

.v-col-span-2 {
  grid-column: span 2;
}

.v-col-start-2 {
  grid-column-start: 2;
}

.v-col-end-2 {
  grid-column-end: 2;
}

.v-col-span-3 {
  grid-column: span 3;
}

.v-col-start-3 {
  grid-column-start: 3;
}

.v-col-end-3 {
  grid-column-end: 3;
}

.v-col-span-4 {
  grid-column: span 4;
}

.v-col-start-4 {
  grid-column-start: 4;
}

.v-col-end-4 {
  grid-column-end: 4;
}

.v-col-span-5 {
  grid-column: span 5;
}

.v-col-start-5 {
  grid-column-start: 5;
}

.v-col-end-5 {
  grid-column-end: 5;
}

.v-col-span-6 {
  grid-column: span 6;
}

.v-col-start-6 {
  grid-column-start: 6;
}

.v-col-end-6 {
  grid-column-end: 6;
}

.v-col-span-7 {
  grid-column: span 7;
}

.v-col-start-7 {
  grid-column-start: 7;
}

.v-col-end-7 {
  grid-column-end: 7;
}

.v-col-span-8 {
  grid-column: span 8;
}

.v-col-start-8 {
  grid-column-start: 8;
}

.v-col-end-8 {
  grid-column-end: 8;
}

.v-col-span-9 {
  grid-column: span 9;
}

.v-col-start-9 {
  grid-column-start: 9;
}

.v-col-end-9 {
  grid-column-end: 9;
}

.v-col-span-10 {
  grid-column: span 10;
}

.v-col-start-10 {
  grid-column-start: 10;
}

.v-col-end-10 {
  grid-column-end: 10;
}

.v-col-span-11 {
  grid-column: span 11;
}

.v-col-start-11 {
  grid-column-start: 11;
}

.v-col-end-11 {
  grid-column-end: 11;
}

.v-col-span-12 {
  grid-column: span 12;
}

.v-col-start-12 {
  grid-column-start: 12;
}

.v-col-end-12 {
  grid-column-end: 12;
}

.v-col-auto {
  grid-column: auto;
}

.v-col-start-auto {
  grid-column-start: auto;
}

.v-col-end-auto {
  grid-column-end: auto;
}

.v-flex-y {
  display: flex;
  flex-direction: column;
  row-gap: var(--v-gap-y);
}

.v-flex-x {
  display: flex;
  flex-direction: row;
  column-gap: var(--v-gap-x);
}

.v-flex-wrap {
  flex-wrap: wrap;
}

.v-gap-0 {
  --v-gap-x: var(--v-space-0);
  --v-gap-y: var(--v-space-0);
}

.v-gap-x-0 {
  --v-gap-x: var(--v-space-0);
}

.v-gap-y-0 {
  --v-gap-y: var(--v-space-0);
}

.v-gap-1 {
  --v-gap-x: var(--v-space-1);
  --v-gap-y: var(--v-space-1);
}

.v-gap-x-1 {
  --v-gap-x: var(--v-space-1);
}

.v-gap-y-1 {
  --v-gap-y: var(--v-space-1);
}

.v-gap-2 {
  --v-gap-x: var(--v-space-2);
  --v-gap-y: var(--v-space-2);
}

.v-gap-x-2 {
  --v-gap-x: var(--v-space-2);
}

.v-gap-y-2 {
  --v-gap-y: var(--v-space-2);
}

.v-gap-3 {
  --v-gap-x: var(--v-space-3);
  --v-gap-y: var(--v-space-3);
}

.v-gap-x-3 {
  --v-gap-x: var(--v-space-3);
}

.v-gap-y-3 {
  --v-gap-y: var(--v-space-3);
}

.v-gap-4 {
  --v-gap-x: var(--v-space-4);
  --v-gap-y: var(--v-space-4);
}

.v-gap-x-4 {
  --v-gap-x: var(--v-space-4);
}

.v-gap-y-4 {
  --v-gap-y: var(--v-space-4);
}

.v-gap-5 {
  --v-gap-x: var(--v-space-5);
  --v-gap-y: var(--v-space-5);
}

.v-gap-x-5 {
  --v-gap-x: var(--v-space-5);
}

.v-gap-y-5 {
  --v-gap-y: var(--v-space-5);
}

.v-gap-6 {
  --v-gap-x: var(--v-space-6);
  --v-gap-y: var(--v-space-6);
}

.v-gap-x-6 {
  --v-gap-x: var(--v-space-6);
}

.v-gap-y-6 {
  --v-gap-y: var(--v-space-6);
}

.v-gap-7 {
  --v-gap-x: var(--v-space-7);
  --v-gap-y: var(--v-space-7);
}

.v-gap-x-7 {
  --v-gap-x: var(--v-space-7);
}

.v-gap-y-7 {
  --v-gap-y: var(--v-space-7);
}

.v-gap-8 {
  --v-gap-x: var(--v-space-8);
  --v-gap-y: var(--v-space-8);
}

.v-gap-x-8 {
  --v-gap-x: var(--v-space-8);
}

.v-gap-y-8 {
  --v-gap-y: var(--v-space-8);
}

.v-gap-9 {
  --v-gap-x: var(--v-space-9);
  --v-gap-y: var(--v-space-9);
}

.v-gap-x-9 {
  --v-gap-x: var(--v-space-9);
}

.v-gap-y-9 {
  --v-gap-y: var(--v-space-9);
}

.v-gap-10 {
  --v-gap-x: var(--v-space-10);
  --v-gap-y: var(--v-space-10);
}

.v-gap-x-10 {
  --v-gap-x: var(--v-space-10);
}

.v-gap-y-10 {
  --v-gap-y: var(--v-space-10);
}

.v-gap-11 {
  --v-gap-x: var(--v-space-11);
  --v-gap-y: var(--v-space-11);
}

.v-gap-x-11 {
  --v-gap-x: var(--v-space-11);
}

.v-gap-y-11 {
  --v-gap-y: var(--v-space-11);
}

.v-gap-12 {
  --v-gap-x: var(--v-space-12);
  --v-gap-y: var(--v-space-12);
}

.v-gap-x-12 {
  --v-gap-x: var(--v-space-12);
}

.v-gap-y-12 {
  --v-gap-y: var(--v-space-12);
}

.v-gap-13 {
  --v-gap-x: var(--v-space-13);
  --v-gap-y: var(--v-space-13);
}

.v-gap-x-13 {
  --v-gap-x: var(--v-space-13);
}

.v-gap-y-13 {
  --v-gap-y: var(--v-space-13);
}

.v-font-sans {
  font-family: var(--v-font-sans) !important;
}

.v-font-serif {
  font-family: var(--v-font-serif) !important;
}

.v-font-regular {
  font-weight: var(--v-font-regular, 400) !important;
}

.v-font-bold {
  font-weight: var(--v-font-bold, 700) !important;
}

.v-font-black {
  font-weight: var(--v-font-black, 900) !important;
}

:where(body) {
  width: 100%;
}

body:has(.v-main-header, .v-sub-header) {
  --v-main-start: var(--v-site-header-height, 0px);
}

body:has(.v-footer) {
  --v-main-end: var(--v-footer-height, 0px);
}

main {
  min-height: calc(var(--v-full-height, 100vh) - var(--v-main-start, 0px) - var(--v-main-end, 0px) - env(safe-area-inset-bottom, 0px));
}

*:focus {
  outline: none;
}

a,
button,
input {
  -webkit-tap-highlight-color: transparent;
}

.v-section {
  margin-top: var(--v-section-margin-top);
  margin-bottom: var(--v-section-margin-bottom);
}

.v-section-title {
  font-weight: var(--v-font-bold);
  font-size: 16px;
  line-height: 1.3;
}

.v-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: var(--v-section-header-side-margin, var(--v-side-margin));
  margin-bottom: var(--v-section-header-margin-bottom);
}

.v-section-header__main {
  flex: 1;
  min-width: 0;
}

.v-section-header__aside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.v-section-header__button {
  --v-button-width: 24px;
  --v-button-height: 24px;
}

.v-section-header__text-button {
  --v-button-text-color: #6d6d6d;
  --v-button-font-size: 14px;
  --v-button-line-height: 24px;
}

.v-section-header__icon {
  width: 24px;
  height: auto;
}

.v-section-header__small-text {
  font-size: 12px;
  color: #999;
}

.v-has-dropdown {
  --v-button-display: flex;
}
.v-has-dropdown .v-menu-button {
  --v-button-width: 100%;
  --v-button-padding: 6px 16px;
  --v-button-font-size: 14px;
  --v-button-line-height: 1.3;
  --v-button-text-color: var(--v-menu-button-text-color, #6d6d6d);
  --v-button-font-weight: var(
    --v-menu-button-font-weight,
    var(--v-font-normal)
  );
  text-align: left;
  justify-content: flex-start;
}