:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical>.swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide {
    transform-style: preserve-3d;
  }
.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
  }
.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start;
  }
.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
    }
.swiper-css-mode.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
      -webkit-margin-start: var(--swiper-slides-offset-before);
              margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
.swiper-css-mode.swiper-horizontal>.swiper-wrapper>.swiper-slide:last-child {
      -webkit-margin-end: var(--swiper-slides-offset-after);
              margin-inline-end: var(--swiper-slides-offset-after);
    }
.swiper-css-mode.swiper-vertical>.swiper-wrapper {
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
    }
.swiper-css-mode.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
      -webkit-margin-before: var(--swiper-slides-offset-before);
              margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
.swiper-css-mode.swiper-vertical>.swiper-wrapper>.swiper-slide:last-child {
      -webkit-margin-after: var(--swiper-slides-offset-after);
              margin-block-end: var(--swiper-slides-offset-after);
    }
.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
      -ms-scroll-snap-type: none;
          scroll-snap-type: none;
    }
.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
      scroll-snap-align: none;
    }
.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
      -webkit-margin-start: var(--swiper-centered-offset-before);
              margin-inline-start: var(--swiper-centered-offset-before);
    }
.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
      -webkit-margin-before: var(--swiper-centered-offset-before);
              margin-block-start: var(--swiper-centered-offset-before);
    }
.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal .swiper-button-prev,.swiper-horizontal .swiper-button-next,.swiper-horizontal~.swiper-button-prev,.swiper-horizontal~.swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
.swiper-horizontal .swiper-button-prev,.swiper-horizontal~.swiper-button-prev,.swiper-horizontal.swiper-rtl .swiper-button-next,.swiper-horizontal.swiper-rtl~.swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
.swiper-horizontal .swiper-button-next,.swiper-horizontal~.swiper-button-next,.swiper-horizontal.swiper-rtl .swiper-button-prev,.swiper-horizontal.swiper-rtl~.swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
.swiper-vertical .swiper-button-prev,.swiper-vertical .swiper-button-next,.swiper-vertical~.swiper-button-prev,.swiper-vertical~.swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
.swiper-vertical .swiper-button-prev,.swiper-vertical~.swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
  }
.swiper-vertical .swiper-button-next,.swiper-vertical~.swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
  }
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled {
    display: none !important;
  }
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
.swiper-pagination-bullet:only-child {
    display: none !important;
  }
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid>.swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column>.swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
      transition-timing-function: ease-out;
    }
.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
  }
:is(.swiper-fade .swiper-slide) .swiper-slide {
      pointer-events: none;
    }
.swiper-fade .swiper-slide-active {
    pointer-events: auto;
  }
:is(.swiper-fade .swiper-slide-active) .swiper-slide-active {
      pointer-events: auto;
    }
.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
  }
:is(.swiper-cube .swiper-slide) .swiper-slide {
      pointer-events: none;
    }
.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
.swiper-cube .swiper-slide-next+.swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    z-index: 1;
  }
:is(.swiper-flip .swiper-slide) .swiper-slide {
      pointer-events: none;
    }
.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    overflow: hidden;
  }
.icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
    fill: currentColor;
}
.icon-question_circle, .icon-remove_circle, .icon-expand_and_collapse, .icon-information_circle, .icon-password {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    pointer-events: none;
    fill: currentColor;
}
:lang(en),
.font-family-base {
    font-family: "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.font-family-serif {
    font-family: "baskerville-display-pt", "Georgia", "Times New Roman", "Times", serif;
}
.font-family-cormorant {
    font-family: "Cormorant", "Georgia", "Times New Roman", "Times", serif;
}
.futura-medium {
    font-weight: 500;
}
:lang(zh),
:lang(zh_cn) {
    font-family: "source-han-sans-simplified-c", "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
:lang(zh_tw) {
    font-family: "source-han-sans-traditional", "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
:lang(ko) {
    font-family: "source-han-sans-korean", "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
:lang(ja),
:lang(jp) {
    font-family: "source-han-sans-japanese", "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
:lang(th) {
    font-family: "Sarabun", "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
:lang(ar) {
    font-family: "Almarai", "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
:lang(vi) {
    font-family: "SFU Futura Book", "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 0.875rem;
}
:root {
    --blue: #06f;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #f00;
    --orange: #f90;
    --yellow: #ffc107;
    --green: #090;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #333;
    --secondary: #ccc;
    --success: #090;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #f00;
    --light: #ccc;
    --dark: #000;
    --breakpoint-xs: 0;
    --breakpoint-sm: 375px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-hd: 1920px;
    --font-family-sans-serif: "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: sfmono-regular, menlo, monaco, consolas, "Liberation Mono", "Courier New", monospace;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article, aside, figcaption, figure, footer, header, main, nav, section {
    display: block;
}
body {
    margin: 0;
    font-family: "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    text-align: left;
    background-color: #fff;
}
[tabindex="-1"]:focus {
    outline: 0 !important;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 18px;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}
ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}
dt {
    font-weight: 700;
}
dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}
blockquote {
    margin: 0 0 1rem;
}
b,
strong {
    font-weight: bolder;
}
small {
    font-size: 80%;
}
sub {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
a {
    color: #000;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
a:hover {
    color: black;
    text-decoration: underline;
}
a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
    outline: 0;
}
pre,
code {
    font-family: sfmono-regular, menlo, monaco, consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}
pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}
figure {
    margin: 0 0 1rem;
}
img {
    vertical-align: middle;
    border-style: none;
}
svg {
    overflow: hidden;
    vertical-align: middle;
}
table {
    border-collapse: collapse;
}
caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}
th {
    text-align: inherit;
}
label {
    display: inline-block;
    margin-bottom: 19px;
}
button {
    border-radius: 0;
}
button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}
input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
html [type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}
input[type=radio],
input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}
input[type=date],
input[type=time],
input[type=month] {
    -webkit-appearance: listbox;
}
textarea {
    overflow: auto;
    resize: vertical;
}
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}
[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none;
}
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}
output {
    display: inline-block;
}
summary {
    display: list-item;
    cursor: pointer;
}
template {
    display: none;
}
[hidden] {
    display: none !important;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 18px;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
}
h1, .h1 {
    font-size: 24px;
}
h2, .h2 {
    font-size: 1.875rem;
}
h3, .h3 {
    font-size: 1.640625rem;
}
h4, .h4 {
    font-size: 1.40625rem;
}
h5, .h5 {
    font-size: 18px;
}
h6, .h6 {
    font-size: 0.9375rem;
}
.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
}
.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #ccc;
}
small,
.small {
    font-size: 80%;
    font-weight: 400;
}
mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.list-inline {
    padding-left: 0;
    list-style: none;
}
.list-inline-item {
    display: inline-block;
}
.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}
.blockquote {
    margin-bottom: 1rem;
    font-size: 1.171875rem;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.figure {
    display: inline-block;
}
code {
    font-size: 87.5%;
    color: #e83e8c;
    word-break: break-word;
}
a>code {
    color: inherit;
}
pre {
    display: block;
    font-size: 87.5%;
    color: #212529;
}
pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 375px) {
    .container {
        max-width: 365px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 640px;
    }
}
@media (min-width: 1024px) {
    .container {
        max-width: 940px;
    }
}
@media (min-width: 1280px) {
    .container {
        max-width: 1250px;
    }
}
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}
.col-hd-4,
.col-xl,
.col-xl-12,
.col-xl-11,
.col-xl-10,
.col-xl-9,
.col-xl-8,
.col-xl-7,
.col-xl-6,
.col-xl-5,
.col-xl-4,
.col-xl-3,
.col-xl-2,
.col-xl-1,
.col-lg,
.col-lg-12,
.col-lg-11,
.col-lg-10,
.col-lg-9,
.col-lg-8,
.col-lg-7,
.col-lg-6,
.col-lg-5,
.col-lg-4,
.col-lg-3,
.col-lg-2,
.col-md,
.col-md-12,
.col-md-11,
.col-md-10,
.col-md-9,
.col-md-8,
.col-md-7,
.col-md-6,
.col-md-5,
.col-md-4,
.col-md-3,
.col-md-2,
.col-md-1,
.col-sm,
.col-sm-12,
.col-sm-11,
.col-sm-10,
.col-sm-9,
.col-sm-8,
.col-sm-6,
.col-sm-5,
.col-sm-4,
.col-sm-3,
.col-sm-2,
.col,
.col-auto,
.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}
.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}
.col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
}
.col-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}
.col-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
}
.col-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
}
.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
}
.col-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.order-first {
    order: -1;
}
.order-last {
    order: 13;
}
.order-0 {
    order: 0;
}
.order-1 {
    order: 1;
}
.order-2 {
    order: 2;
}
.order-3 {
    order: 3;
}
.order-4 {
    order: 4;
}
.order-5 {
    order: 5;
}
.order-6 {
    order: 6;
}
.order-7 {
    order: 7;
}
.order-8 {
    order: 8;
}
.order-9 {
    order: 9;
}
.order-12 {
    order: 12;
}
.offset-1 {
    margin-left: 8.3333333333%;
}
.offset-2 {
    margin-left: 16.6666666667%;
}
.offset-3 {
    margin-left: 25%;
}
.offset-4 {
    margin-left: 33.3333333333%;
}
.offset-5 {
    margin-left: 41.6666666667%;
}
.offset-6 {
    margin-left: 50%;
}
.offset-7 {
    margin-left: 58.3333333333%;
}
.offset-8 {
    margin-left: 66.6666666667%;
}
.offset-9 {
    margin-left: 75%;
}
.offset-11 {
    margin-left: 91.6666666667%;
}
@media (min-width: 375px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-sm-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-sm-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        order: -1;
    }

    .order-sm-last {
        order: 13;
    }

    .order-sm-1 {
        order: 1;
    }

    .order-sm-2 {
        order: 2;
    }

    .offset-sm-2 {
        margin-left: 16.6666666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }
}
@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-md-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-md-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-md-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-md-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        order: -1;
    }

    .order-md-last {
        order: 13;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-3 {
        order: 3;
    }

    .order-md-4 {
        order: 4;
    }

    .order-md-5 {
        order: 5;
    }

    .order-md-6 {
        order: 6;
    }

    .order-md-7 {
        order: 7;
    }

    .order-md-8 {
        order: 8;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.3333333333%;
    }

    .offset-md-2 {
        margin-left: 16.6666666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.3333333333%;
    }

    .offset-md-5 {
        margin-left: 41.6666666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.3333333333%;
    }

    .offset-md-8 {
        margin-left: 66.6666666667%;
    }
}
@media (min-width: 1024px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-lg-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-lg-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-lg-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        order: -1;
    }

    .order-lg-last {
        order: 13;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .order-lg-4 {
        order: 4;
    }

    .order-lg-5 {
        order: 5;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.3333333333%;
    }

    .offset-lg-2 {
        margin-left: 16.6666666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.3333333333%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.3333333333%;
    }

    .offset-lg-8 {
        margin-left: 66.6666666667%;
    }
}
@media (min-width: 1280px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-xl-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-xl-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-xl-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-xl-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-last {
        order: 13;
    }

    .order-xl-1 {
        order: 1;
    }

    .order-xl-2 {
        order: 2;
    }

    .order-xl-3 {
        order: 3;
    }

    .order-xl-4 {
        order: 4;
    }

    .order-xl-5 {
        order: 5;
    }

    .order-xl-7 {
        order: 7;
    }

    .order-xl-8 {
        order: 8;
    }

    .order-xl-9 {
        order: 9;
    }

    .order-xl-10 {
        order: 10;
    }

    .order-xl-11 {
        order: 11;
    }

    .order-xl-12 {
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.3333333333%;
    }

    .offset-xl-2 {
        margin-left: 16.6666666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.3333333333%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }
}
@media (min-width: 1920px) {

    .col-hd-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
}
.table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}
.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #ccc;
}
.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #ccc;
}
.table tbody+tbody {
    border-top: 2px solid #ccc;
}
.table .table {
    background-color: #fff;
}
.table-sm th,
.table-sm td {
    padding: 0.3rem;
}
.table-bordered {
    border: 1px solid #ccc;
}
.table-bordered th,
.table-bordered td {
    border: 1px solid #ccc;
}
.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}
.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}
.table-active,
.table-active>th,
.table-active>td {
    background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover>td,
.table-hover .table-active:hover>th {
    background-color: rgba(0, 0, 0, 0.075);
}
.table .thead-dark th {
    color: #fff;
    background-color: #333;
    border-color: #fff;
}
.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #ccc;
}
.table-dark.table-bordered {
    border: 0;
}
@media (max-width: 374.98px) {
    .table-responsive-sm>.table-bordered {
        border: 0;
    }
}
@media (max-width: 767.98px) {
    .table-responsive-md>.table-bordered {
        border: 0;
    }
}
@media (max-width: 1023.98px) {
    .table-responsive-lg>.table-bordered {
        border: 0;
    }
}
@media (max-width: 1279.98px) {
    .table-responsive-xl>.table-bordered {
        border: 0;
    }
}
@media (max-width: 1919.98px) {
    .table-responsive-hd>.table-bordered {
        border: 0;
    }
}
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive>.table-bordered {
    border: 0;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(2.46875rem + 2px);
    padding: 0.625rem 0.9375rem;
    font-size: 0.9375rem;
    line-height: 1.3;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}
.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}
.form-control:focus {
    color: #000;
    background-color: #fff;
    border-color: #000;
    outline: 0;
    box-shadow: none;
}
.form-control::-moz-placeholder {
    color: #ccc;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #ccc;
    opacity: 1;
}
.form-control::placeholder {
    color: #ccc;
    opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}
select.form-control:focus::-ms-value {
    color: #000;
    background-color: #fff;
}
.col-form-label {
    padding-top: calc(0.625rem + 1px);
    padding-bottom: calc(0.625rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.3;
}
select.form-control[size], select.form-control[multiple] {
    height: auto;
}
textarea.form-control {
    height: auto;
}
.form-group {
    margin-bottom: 15px;
}
.form-text {
    display: block;
    margin-top: 0.25rem;
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
.form-row>.col,
.form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
}
.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}
.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}
.form-check-input:disabled~.form-check-label {
    color: #6c757d;
}
.form-check-label {
    margin-bottom: 0;
}
.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 20px 10px;
    margin-top: 0.1rem;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    background-color: #009900;
    border-radius: 5px;
}
.was-validated .form-control:valid, .form-control.is-valid, .was-validated .custom-select:valid, .custom-select.is-valid {
    border-color: #090;
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
    border-color: #090;
    box-shadow: 0 0 0 0 rgba(0, 153, 0, 0.25);
}
.was-validated .form-control:valid~.valid-tooltip,
.form-control.is-valid~.valid-tooltip,
.was-validated .custom-select:valid~.valid-tooltip,
.custom-select.is-valid~.valid-tooltip {
    display: block;
}
.was-validated .form-check-input:valid~.form-check-label, .form-check-input.is-valid~.form-check-label {
    color: #090;
}
.was-validated .form-check-input:valid~.valid-tooltip,
.form-check-input.is-valid~.valid-tooltip {
    display: block;
}
.was-validated .custom-control-input:valid~.custom-control-label, .custom-control-input.is-valid~.custom-control-label {
    color: #090;
}
.was-validated .custom-control-input:valid~.custom-control-label::before, .custom-control-input.is-valid~.custom-control-label::before {
    background-color: #1aff1a;
}
.was-validated .custom-control-input:valid~.valid-tooltip,
.custom-control-input.is-valid~.valid-tooltip {
    display: block;
}
.was-validated .custom-control-input:valid:checked~.custom-control-label::before, .custom-control-input.is-valid:checked~.custom-control-label::before {
    background-color: #00cc00;
}
.was-validated .custom-control-input:valid:focus~.custom-control-label::before, .custom-control-input.is-valid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0 rgba(0, 153, 0, 0.25);
}
.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.9375rem;
    color: #f00;
}
.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 20px 10px;
    margin-top: 0.1rem;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    background-color: red;
    border-radius: 5px;
}
.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .custom-select.is-invalid {
    border-color: #f00;
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
    border-color: #f00;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.25);
}
.was-validated .form-control:invalid~.invalid-feedback,
.was-validated .form-control:invalid~.invalid-tooltip,
.form-control.is-invalid~.invalid-feedback,
.form-control.is-invalid~.invalid-tooltip,
.was-validated .custom-select:invalid~.invalid-feedback,
.was-validated .custom-select:invalid~.invalid-tooltip,
.custom-select.is-invalid~.invalid-feedback,
.custom-select.is-invalid~.invalid-tooltip {
    display: block;
}
.was-validated .form-check-input:invalid~.form-check-label, .form-check-input.is-invalid~.form-check-label {
    color: #f00;
}
.was-validated .form-check-input:invalid~.invalid-feedback,
.was-validated .form-check-input:invalid~.invalid-tooltip,
.form-check-input.is-invalid~.invalid-feedback,
.form-check-input.is-invalid~.invalid-tooltip {
    display: block;
}
.was-validated .custom-control-input:invalid~.custom-control-label, .custom-control-input.is-invalid~.custom-control-label {
    color: #f00;
}
.was-validated .custom-control-input:invalid~.custom-control-label::before, .custom-control-input.is-invalid~.custom-control-label::before {
    background-color: #ff8080;
}
.was-validated .custom-control-input:invalid~.invalid-feedback,
.was-validated .custom-control-input:invalid~.invalid-tooltip,
.custom-control-input.is-invalid~.invalid-feedback,
.custom-control-input.is-invalid~.invalid-tooltip {
    display: block;
}
.was-validated .custom-control-input:invalid:checked~.custom-control-label::before, .custom-control-input.is-invalid:checked~.custom-control-label::before {
    background-color: #ff3333;
}
.was-validated .custom-control-input:invalid:focus~.custom-control-label::before, .custom-control-input.is-invalid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0 rgba(255, 0, 0, 0.25);
}
@media (min-width: 375px) {
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    .form-inline .custom-select {
        width: auto;
    }
}
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    border: 1px solid transparent;
    padding: 0.625rem 0.9375rem;
    font-size: 0.9375rem;
    line-height: 1.3;
    border-radius: 5px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}
.btn:hover, .btn:focus {
    text-decoration: none;
}
.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: none;
}
.btn.disabled, .btn:disabled {
    opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}
.btn-primary {
    color: #fff;
    background-color: #333;
    border-color: #333;
}
.btn-primary:hover {
    color: #fff;
    background-color: #202020;
    border-color: #1a1a1a;
}
.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #333;
    border-color: #333;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #1a1a1a;
    border-color: #131313;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.5);
}
.btn-secondary:not(:disabled):not(.disabled).active {
    color: #212529;
    background-color: #b3b3b3;
    border-color: #acacac;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-success {
    color: #fff;
    background-color: #090;
    border-color: #090;
}
.btn-success:hover {
    color: #fff;
    background-color: #007300;
    border-color: #006600;
}
.btn-success:focus, .btn-success.focus {
    box-shadow: 0 0 0 0 rgba(0, 153, 0, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #090;
    border-color: #090;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #006600;
    border-color: #005900;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(0, 153, 0, 0.5);
}
.btn-info:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}
.btn-warning:not(:disabled):not(.disabled).active {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}
.btn-danger:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #cc0000;
    border-color: #bf0000;
}
.btn-danger:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
}
.btn-light {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
}
.btn-light:hover {
    color: #212529;
    background-color: #b9b9b9;
    border-color: #b3b3b3;
}
.btn-light:focus, .btn-light.focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show>.btn-light.dropdown-toggle {
    color: #212529;
    background-color: #b3b3b3;
    border-color: #acacac;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-dark {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.btn-dark:hover {
    color: #fff;
    background-color: black;
    border-color: black;
}
.btn-dark:focus, .btn-dark.focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: black;
    border-color: black;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.btn-outline-primary {
    color: #333;
    background-color: transparent;
    background-image: none;
    border-color: #333;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: #333;
    border-color: #333;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #333;
    background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #333;
    border-color: #333;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.5);
}
.btn-outline-secondary {
    color: #ccc;
    background-color: transparent;
    background-image: none;
    border-color: #ccc;
}
.btn-outline-secondary:hover {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #ccc;
    background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show>.btn-outline-secondary.dropdown-toggle {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>.btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-outline-success:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #090;
    border-color: #090;
}
.btn-outline-success:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(0, 153, 0, 0.5);
}
.btn-outline-info:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}
.btn-outline-warning:not(:disabled):not(.disabled).active {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}
.btn-outline-danger:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #f00;
    border-color: #f00;
}
.btn-outline-danger:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
}
.btn-outline-light {
    color: #ccc;
    background-color: transparent;
    background-image: none;
    border-color: #ccc;
}
.btn-outline-light:hover {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
}
.btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #ccc;
    background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show>.btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show>.btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-outline-dark {
    color: #000;
    background-color: transparent;
    background-image: none;
    border-color: #000;
}
.btn-outline-dark:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #000;
    background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show>.btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.btn-link {
    font-weight: 400;
    color: #000;
    background-color: transparent;
}
.btn-link:hover {
    color: black;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent;
}
.btn-link:focus, .btn-link.focus {
    text-decoration: underline;
    border-color: transparent;
    box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
    pointer-events: none;
}
.btn-group-lg>.btn {
    padding: 0.5rem 1rem;
    font-size: 1.171875rem;
    line-height: 1.5;
    border-radius: 5px;
}
.btn-group-sm>.btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.8203125rem;
    line-height: 1.5;
    border-radius: 5px;
}
.btn-block {
    display: block;
    width: 100%;
}
.btn-block+.btn-block {
    margin-top: 0.5rem;
}
input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
    width: 100%;
}
.fade {
    transition: opacity 0.15s linear;
}
@media screen and (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}
.fade:not(.show) {
    opacity: 0;
}
.collapse:not(.show) {
    display: none;
}
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}
.dropup,
.dropdown {
    position: relative;
}
.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
    margin-left: 0;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 106px;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 0.9375rem;
    color: #000;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}
.dropdown-menu-right {
    right: 0;
    left: auto;
}
.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
    margin-left: 0;
}
.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.25rem;
    clear: both;
    font-weight: 400;
    color: #000;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
    color: #000;
    text-decoration: none;
    background-color: transparent;
}
.dropdown-item.active, .dropdown-item:active {
    color: #000;
    text-decoration: none;
    background-color: transparent;
}
.dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    background-color: transparent;
}
.dropdown-menu.show {
    display: block;
}
.dropdown-header {
    display: block;
    padding: 0.5rem 1.25rem;
    margin-bottom: 0;
    font-size: 0.8203125rem;
    color: #6c757d;
    white-space: nowrap;
}
.dropdown-item-text {
    display: block;
    padding: 0.25rem 1.25rem;
    color: #000;
}
.btn-group>.btn,
.btn-group-vertical>.btn {
    position: relative;
    flex: 0 1 auto;
}
.btn-group>.btn:hover,
.btn-group-vertical>.btn:hover {
    z-index: 1;
}
.btn-group>.btn:focus, .btn-group>.btn:active, .btn-group>.btn.active, .btn-group-vertical>.btn:focus, .btn-group-vertical>.btn:active, .btn-group-vertical>.btn.active {
    z-index: 1;
}
.btn-group .btn+.btn,
.btn-group .btn-group+.btn,
.btn-group-vertical .btn+.btn,
.btn-group-vertical .btn-group+.btn {
    margin-left: -1px;
}
.btn-group>.btn:first-child {
    margin-left: 0;
}
.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
.btn-group>.btn-group:not(:last-child)>.btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.btn-group>.btn:not(:first-child),
.btn-group>.btn-group:not(:first-child)>.btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
    padding-right: 0.703125rem;
    padding-left: 0.703125rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after {
    margin-left: 0;
}
.btn-group-vertical .btn {
    width: 100%;
}
.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn-group+.btn {
    margin-top: -1px;
    margin-left: 0;
}
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical>.btn-group:not(:last-child)>.btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.btn-group-vertical>.btn:not(:first-child),
.btn-group-vertical>.btn-group:not(:first-child)>.btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.btn-group-toggle>.btn,
.btn-group-toggle>.btn-group>.btn {
    margin-bottom: 0;
}
.btn-group-toggle>.btn input[type=radio],
.btn-group-toggle>.btn input[type=checkbox],
.btn-group-toggle>.btn-group>.btn input[type=radio],
.btn-group-toggle>.btn-group>.btn input[type=checkbox] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.input-group>.form-control,
.input-group>.custom-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
.input-group>.form-control+.form-control,
.input-group>.form-control+.custom-select,
.input-group>.custom-select+.form-control,
.input-group>.custom-select+.custom-select,
.input-group>.custom-file+.form-control,
.input-group>.custom-file+.custom-select {
    margin-left: -1px;
}
.input-group>.form-control:focus,
.input-group>.custom-select:focus {
    z-index: 3;
}
.input-group>.form-control:not(:last-child),
.input-group>.custom-select:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group>.form-control:not(:first-child),
.input-group>.custom-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group-prepend,
.input-group-append {
    display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
    position: relative;
    z-index: 2;
}
.input-group-prepend .btn+.btn,
.input-group-prepend .input-group-text+.btn,
.input-group-append .btn+.btn,
.input-group-append .input-group-text+.btn {
    margin-left: -1px;
}
.input-group-prepend {
    margin-right: -1px;
}
.input-group-append {
    margin-left: -1px;
}
.input-group-lg>.form-control,
.input-group-lg>.input-group-prepend>.btn,
.input-group-lg>.input-group-append>.btn {
    height: calc(2.7578125rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.171875rem;
    line-height: 1.5;
    border-radius: 5px;
}
.input-group-sm>.form-control,
.input-group-sm>.input-group-prepend>.btn,
.input-group-sm>.input-group-append>.btn {
    height: calc(1.73046875rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.8203125rem;
    line-height: 1.5;
    border-radius: 5px;
}
.input-group>.input-group-prepend>.btn,
.input-group>.input-group-append:not(:last-child)>.btn,
.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group>.input-group-append>.btn,
.input-group>.input-group-prepend:not(:first-child)>.btn,
.input-group>.input-group-prepend:first-child>.btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.custom-control {
    position: relative;
    display: block;
    min-height: 1.40625rem;
    padding-left: 1.6875rem;
}
.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    background-color: #fff;
}
.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, none;
}
.custom-control-input:active~.custom-control-label::before {
    color: #fff;
    background-color: #8c8c8c;
}
.custom-control-input:disabled~.custom-control-label {
    color: #000;
}
.custom-control-input:disabled~.custom-control-label::before {
    background-color: #fff;
}
.custom-control-label {
    position: relative;
    margin-bottom: 0;
}
.custom-control-label::before {
    position: absolute;
    top: 0.078125rem;
    left: -1.6875rem;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: #fff;
}
.custom-control-label::after {
    position: absolute;
    top: 0.078125rem;
    left: -1.6875rem;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}
.custom-checkbox .custom-control-label::before {
    border-radius: 3px;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #fff;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
    background-color: #fff;
}
.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #fff;
}
.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
    background-color: #fff;
}
.custom-radio .custom-control-label::before {
    border-radius: 50%;
}
.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #fff;
}
.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 40'%3E%3Cpath fill='%23fff' d='M0,24.985,4.982,19.94,15.006,30.03,45.018,0,50,4.985,15.006,40Z'/%3E%3C/svg%3E");
}
.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #fff;
}
.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(2.46875rem + 2px);
    padding: 0 1.5rem 0 0.5rem;
    line-height: 1.3;
    color: #000;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -4 10 10'%3E%3Cpath fill='%23000' d='M8.833.188A.918.918,0,0,1,9.333,0,.624.624,0,0,1,9.8.226a.994.994,0,0,1,.2.6.8.8,0,0,1-.3.6L6.067,4.436A1.882,1.882,0,0,1,5,5a1.858,1.858,0,0,1-1.1-.564L.267,1.429A.891.891,0,0,1,0,.827.819.819,0,0,1,.2.263.561.561,0,0,1,.667,0a.761.761,0,0,1,.5.188L4.833,3.233c.067.038.1.075.133.075A.243.243,0,0,0,5.1,3.233Z'/%3E%3C/svg%3E") no-repeat right 0.5rem center;
    background-size: 18px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.custom-select:focus {
    border-color: #000;
    outline: 0;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.custom-select:focus::-ms-value {
    color: #000;
    background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.5rem;
    background-image: none;
}
.custom-select:disabled {
    color: #ccc;
    background-color: #fff;
}
.custom-select::-ms-expand {
    opacity: 0;
}
.custom-control-label::before,
.custom-select {
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
    .custom-control-label::before,
.custom-select {
        transition: none;
    }
}
.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
    text-decoration: none;
}
.nav-link.disabled {
    color: #6c757d;
}
.nav-tabs {
    border-bottom: 1px solid transparent;
}
.nav-tabs .nav-item {
    margin-bottom: -1px;
}
.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    border-color: transparent transparent #ccc;
}
.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #000;
    background-color: #fff;
    border-color: transparent transparent #333;
}
.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.nav-pills .nav-link {
    border-radius: 5px;
}
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #333;
}
.nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center;
}
.nav-justified .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}
.tab-content>.tab-pane {
    display: none;
}
.tab-content>.active {
    display: block;
}
.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}
.navbar>.container,
.navbar>.container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}
.navbar-nav .dropdown-menu {
    position: static;
    float: none;
}
.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}
.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.171875rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 5px;
}
.navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none;
}
.navbar-toggler:not(:disabled):not(.disabled) {
    cursor: pointer;
}
@media (max-width: 374.98px) {
    .navbar-expand-sm>.container,
.navbar-expand-sm>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}
@media (min-width: 375px) {
    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-sm>.container,
.navbar-expand-sm>.container-fluid {
        flex-wrap: nowrap;
    }
}
@media (max-width: 767.98px) {
    .navbar-expand-md>.container,
.navbar-expand-md>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}
@media (min-width: 768px) {
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-md>.container,
.navbar-expand-md>.container-fluid {
        flex-wrap: nowrap;
    }
}
@media (max-width: 1023.98px) {
    .navbar-expand-lg>.container,
.navbar-expand-lg>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}
@media (min-width: 1024px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-lg>.container,
.navbar-expand-lg>.container-fluid {
        flex-wrap: nowrap;
    }
}
@media (max-width: 1279.98px) {
    .navbar-expand-xl>.container,
.navbar-expand-xl>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}
@media (min-width: 1280px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-xl>.container,
.navbar-expand-xl>.container-fluid {
        flex-wrap: nowrap;
    }
}
@media (max-width: 1919.98px) {
    .navbar-expand-hd>.container,
.navbar-expand-hd>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}
@media (min-width: 1920px) {
    .navbar-expand-hd .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-hd>.container,
.navbar-expand-hd>.container-fluid {
        flex-wrap: nowrap;
    }
}
.navbar-expand {
    flex-flow: row nowrap;
    justify-content: flex-start;
}
.navbar-expand>.container,
.navbar-expand>.container-fluid {
    padding-right: 0;
    padding-left: 0;
}
.navbar-expand .navbar-nav {
    flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}
.navbar-expand>.container,
.navbar-expand>.container-fluid {
    flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}
.navbar-expand .navbar-toggler {
    display: none;
}
.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
    color: rgba(0, 0, 0, 0.9);
}
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .show>.nav-link,
.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 5px;
}
.card>hr {
    margin-right: 0;
    margin-left: 0;
}
.card>.list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.card>.list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}
.card-title {
    margin-bottom: 0.75rem;
}
.card-text:last-child {
    margin-bottom: 0;
}
.card-link:hover {
    text-decoration: none;
}
.card-link+.card-link {
    margin-left: 1.25rem;
}
.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
    border-radius: calc(5px - 1px) calc(5px - 1px) 0 0;
}
.card-header+.list-group .list-group-item:first-child {
    border-top: 0;
}
.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
    border-radius: 0 0 calc(5px - 1px) calc(5px - 1px);
}
.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}
.card-img-top {
    width: 100%;
    border-top-left-radius: calc(5px - 1px);
    border-top-right-radius: calc(5px - 1px);
}
.card-deck .card {
    margin-bottom: 15px;
}
@media (min-width: 375px) {
    .card-deck .card {
        display: flex;
        flex: 1 0 0%;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }
}
.card-group>.card {
    margin-bottom: 15px;
}
@media (min-width: 375px) {
    .card-group>.card {
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .card-group>.card+.card {
        margin-left: 0;
        border-left: 0;
    }
    .card-group>.card:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .card-group>.card:last-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .card-group>.card:only-child {
        border-radius: 5px;
    }
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) {
        border-radius: 0;
    }
}
.card-columns .card {
    margin-bottom: 0.75rem;
}
@media (min-width: 375px) {
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}
.accordion .card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 0;
    border-radius: 0;
}
.accordion .card:not(:first-of-type) .card-header:first-child {
    border-radius: 0;
}
.accordion .card:first-of-type {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.accordion .card:last-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 18px 0;
    margin-bottom: 4px;
    list-style: none;
    background-color: transparent;
    border-radius: 5px;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: 6px;
}
.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 6px;
    color: #ccc;
    content: "|";
}
.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: underline;
}
.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: none;
}
.breadcrumb-item.active {
    color: #000;
}
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 5px;
}
.badge {
    display: inline-block;
    padding: 0.3888888889em 0.5555555556em;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3px;
}
.badge:empty {
    display: none;
}
.btn .badge {
    position: relative;
    top: -1px;
}
.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
}
.badge-primary {
    color: #fff;
    background-color: #333;
}
.badge-primary[href]:hover, .badge-primary[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #1a1a1a;
}
.badge-secondary {
    color: #212529;
    background-color: #ccc;
}
.badge-secondary[href]:hover, .badge-secondary[href]:focus {
    color: #212529;
    text-decoration: none;
    background-color: #b3b3b3;
}
.badge-success {
    color: #fff;
    background-color: #090;
}
.badge-success[href]:hover, .badge-success[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #006600;
}
.badge-info {
    color: #fff;
    background-color: #17a2b8;
}
.badge-info[href]:hover, .badge-info[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #117a8b;
}
.badge-warning {
    color: #212529;
    background-color: #ffc107;
}
.badge-warning[href]:hover, .badge-warning[href]:focus {
    color: #212529;
    text-decoration: none;
    background-color: #d39e00;
}
.badge-danger {
    color: #fff;
    background-color: #f00;
}
.badge-danger[href]:hover, .badge-danger[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #cc0000;
}
.badge-light {
    color: #212529;
    background-color: #ccc;
}
.badge-light[href]:hover, .badge-light[href]:focus {
    color: #212529;
    text-decoration: none;
    background-color: #b3b3b3;
}
.badge-dark {
    color: #fff;
    background-color: #000;
}
.badge-dark[href]:hover, .badge-dark[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: black;
}
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    border: 1px solid transparent;
    border-radius: 0;
}
.alert-heading {
    color: inherit;
}
.alert-link {
    font-weight: 700;
}
.alert-dismissible {
    padding-right: 3.90625rem;
}
.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}
.alert-primary {
    color: #1b1b1b;
    background-color: #d6d6d6;
    border-color: #c6c6c6;
}
.alert-primary hr {
    border-top-color: #b9b9b9;
}
.alert-primary .alert-link {
    color: #020202;
}
.alert-secondary {
    color: #6a6a6a;
    background-color: whitesmoke;
    border-color: #f1f1f1;
}
.alert-secondary hr {
    border-top-color: #e4e4e4;
}
.alert-secondary .alert-link {
    color: #515151;
}
.alert-success {
    color: #005000;
    background-color: #ccebcc;
    border-color: #b8e2b8;
}
.alert-success hr {
    border-top-color: #a6dba6;
}
.alert-success .alert-link {
    color: #001d00;
}
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.alert-info hr {
    border-top-color: #abdde5;
}
.alert-info .alert-link {
    color: #062c33;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert-warning hr {
    border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
    color: #533f03;
}
.alert-danger {
    color: #850000;
    background-color: #ffcccc;
    border-color: #ffb8b8;
}
.alert-danger hr {
    border-top-color: #ff9f9f;
}
.alert-danger .alert-link {
    color: #520000;
}
.alert-light {
    color: #6a6a6a;
    background-color: whitesmoke;
    border-color: #f1f1f1;
}
.alert-light hr {
    border-top-color: #e4e4e4;
}
.alert-light .alert-link {
    color: #515151;
}
.alert-dark {
    color: black;
    background-color: #cccccc;
    border-color: #b8b8b8;
}
.alert-dark hr {
    border-top-color: #ababab;
}
.alert-dark .alert-link {
    color: black;
}
@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}
.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.703125rem;
    background-color: #e9ecef;
    border-radius: 5px;
}
.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #333;
    transition: width 0.6s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}
.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}
.media {
    display: flex;
    align-items: flex-start;
}
.media-body {
    flex: 1;
}
.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}
.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}
.list-group-item-action:active {
    color: #000;
    background-color: #e9ecef;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.list-group-item:hover, .list-group-item:focus {
    z-index: 1;
    text-decoration: none;
}
.list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    background-color: #fff;
}
.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #333;
    border-color: #333;
}
.list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}
.list-group-flush:first-child .list-group-item:first-child {
    border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
    border-bottom: 0;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: #1b1b1b;
    background-color: #b9b9b9;
}
.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #1b1b1b;
    border-color: #1b1b1b;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
    color: #6a6a6a;
    background-color: #e4e4e4;
}
.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #6a6a6a;
    border-color: #6a6a6a;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
    color: #005000;
    background-color: #a6dba6;
}
.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #005000;
    border-color: #005000;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
    color: #0c5460;
    background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
    color: #856404;
    background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #856404;
    border-color: #856404;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
    color: #850000;
    background-color: #ff9f9f;
}
.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #850000;
    border-color: #850000;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
    color: #6a6a6a;
    background-color: #e4e4e4;
}
.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #6a6a6a;
    border-color: #6a6a6a;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
    color: black;
    background-color: #ababab;
}
.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: black;
    border-color: black;
}
.close {
    float: right;
    font-size: 1.40625rem;
    font-weight: 700;
    line-height: 1;
    color: #ccc;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
}
.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
    color: #ccc;
    text-decoration: none;
    opacity: 0.75;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}
.modal-open {
    overflow: hidden;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -25%);
}
@media screen and (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}
.modal.show .modal-dialog {
    transform: translate(0, 0);
}
.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}
.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - (0.5rem * 2));
    content: "";
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    outline: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1019;
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show {
    opacity: 0.7;
}
.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1.25rem;
}
.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1.25rem;
    border-top: 1px solid #e9ecef;
}
.modal-footer>:not(:first-child) {
    margin-left: 0.25rem;
}
.modal-footer>:not(:last-child) {
    margin-right: 0.25rem;
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
@media (min-width: 375px) {
    .modal-dialog {
        max-width: 860px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }
    .modal-dialog-centered::before {
        height: calc(100vh - (1.75rem * 2));
    }

    .modal-sm {
        max-width: 337px;
    }
}
@media (min-width: 1024px) {
    .modal-lg {
        max-width: 800px;
    }
}
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 14px;
    word-wrap: break-word;
    opacity: 0;
}
.tooltip.show {
    opacity: 1;
}
.tooltip .arrow {
    position: absolute;
    display: block;
    width: 20px;
    height: 10px;
}
.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}
.bs-tooltip-top {
    padding: 10px 0;
}
.bs-tooltip-top .arrow {
    bottom: 0;
}
.bs-tooltip-top .arrow::before {
    top: 0;
    border-width: 10px 10px 0;
    border-top-color: #fff;
}
.bs-tooltip-right {
    padding: 0 10px;
}
.bs-tooltip-right .arrow {
    left: 0;
    width: 10px;
    height: 20px;
}
.bs-tooltip-right .arrow::before {
    right: 0;
    border-width: 10px 10px 10px 0;
    border-right-color: #fff;
}
.bs-tooltip-bottom {
    padding: 10px 0;
}
.bs-tooltip-bottom .arrow {
    top: 0;
}
.bs-tooltip-bottom .arrow::before {
    bottom: 0;
    border-width: 0 10px 10px;
    border-bottom-color: #fff;
}
.bs-tooltip-left {
    padding: 0 10px;
}
.bs-tooltip-left .arrow {
    right: 0;
    width: 10px;
    height: 20px;
}
.bs-tooltip-left .arrow::before {
    left: 0;
    border-width: 10px 0 10px 10px;
    border-left-color: #fff;
}
.tooltip-inner {
    max-width: 200px;
    padding: 20px 10px;
    color: #000;
    text-align: center;
    background-color: #fff;
    border-radius: 5px;
}
.carousel {
    position: relative;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}
.carousel-item {
    transition: transform 0.6s ease;
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    margin-left: unset;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
@media screen and (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}
.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
    transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
    transform: translateX(-100%);
}
.carousel-fade .carousel-item {
    transform: none;
    opacity: 0;
    transition-property: opacity;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    z-index: 1;
    opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    transition: opacity 0s 0.6s;
    z-index: 0;
    opacity: 0;
}
@media screen and (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
        transition: none;
    }
}
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
}
.carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}
.carousel-control-prev {
    right: unset;
    left: 0;
}
.carousel-control-next {
    right: 0;
    left: unset;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
}
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    margin-right: 15%;
    margin-left: 15%;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    list-style: none;
}
.carousel-indicators li {
    position: relative;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
.carousel-indicators li::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
}
.carousel-indicators li::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
}
.carousel-indicators .active {
    background-color: #fff;
}
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}
.minicart-recommender .carousel-control-prev {
    left: 1px;
}
.minicart-recommender .carousel-control-next {
    right: 1px;
}
.align-middle {
    vertical-align: middle !important;
}
.align-bottom {
    vertical-align: bottom !important;
}
.align-text-bottom {
    vertical-align: text-bottom !important;
}
.bg-secondary {
    background-color: #ccc !important;
}
a.bg-secondary:hover, a.bg-secondary:focus, button.bg-secondary:hover, button.bg-secondary:focus {
    background-color: #b3b3b3 !important;
}
.bg-light {
    background-color: #ccc !important;
}
a.bg-light:hover, a.bg-light:focus, button.bg-light:hover, button.bg-light:focus {
    background-color: #b3b3b3 !important;
}
.bg-dark {
    background-color: #000 !important;
}
a.bg-dark:hover, a.bg-dark:focus, button.bg-dark:hover, button.bg-dark:focus {
    background-color: black !important;
}
.bg-white {
    background-color: #fff !important;
}
.bg-transparent {
    background-color: transparent !important;
}
.border {
    border: 1px solid #ccc !important;
}
.border-bottom {
    border-bottom: 1px solid #ccc !important;
}
.border-0 {
    border: 0 !important;
}
.border-top-0 {
    border-top: 0 !important;
}
.rounded {
    border-radius: 5px !important;
}
.rounded-circle {
    border-radius: 50% !important;
}
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
.d-none {
    display: none !important;
}
.d-inline {
    display: inline !important;
}
.d-inline-block {
    display: inline-block !important;
}
.d-block {
    display: block !important;
}
.d-flex {
    display: flex !important;
}
.d-inline-flex {
    display: inline-flex !important;
}
@media (min-width: 375px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-flex {
        display: flex !important;
    }
}
@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-flex {
        display: flex !important;
    }
}
@media (min-width: 1024px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: inline-flex !important;
    }
}
@media (min-width: 1280px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-flex {
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: inline-flex !important;
    }
}
@media (min-width: 1920px) {
    .d-hd-none {
        display: none !important;
    }

    .d-hd-block {
        display: block !important;
    }
}
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.embed-responsive::before {
    display: block;
    content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive-16by9::before {
    padding-top: 56.25%;
}
.embed-responsive-4by3::before {
    padding-top: 75%;
}
.embed-responsive-1by1::before {
    padding-top: 100%;
}
.flex-row {
    flex-direction: row !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-row-reverse {
    flex-direction: row-reverse !important;
}
.flex-column-reverse {
    flex-direction: column-reverse !important;
}
.flex-wrap {
    flex-wrap: wrap !important;
}
.flex-nowrap {
    flex-wrap: nowrap !important;
}
.flex-fill {
    flex: 1 1 auto !important;
}
.flex-grow-0 {
    flex-grow: 0 !important;
}
.flex-grow-1 {
    flex-grow: 1 !important;
}
.justify-content-start {
    justify-content: flex-start !important;
}
.justify-content-end {
    justify-content: flex-end !important;
}
.justify-content-center {
    justify-content: center !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.justify-content-around {
    justify-content: space-around !important;
}
.align-items-start {
    align-items: flex-start !important;
}
.align-items-end {
    align-items: flex-end !important;
}
.align-items-center {
    align-items: center !important;
}
.align-items-baseline {
    align-items: baseline !important;
}
.align-self-start {
    align-self: flex-start !important;
}
.align-self-end {
    align-self: flex-end !important;
}
.align-self-center {
    align-self: center !important;
}
@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row !important;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important;
    }

    .justify-content-md-start {
        justify-content: flex-start !important;
    }

    .justify-content-md-center {
        justify-content: center !important;
    }
}
@media (min-width: 1024px) {
    .flex-lg-row {
        flex-direction: row !important;
    }

    .justify-content-lg-start {
        justify-content: flex-start !important;
    }

    .justify-content-lg-center {
        justify-content: center !important;
    }

    .align-items-lg-center {
        align-items: center !important;
    }
}
@media (min-width: 1280px) {

    .flex-xl-grow-0 {
        flex-grow: 0 !important;
    }

    .align-items-xl-center {
        align-items: center !important;
    }
}
.float-right {
    float: right !important;
}
.position-static {
    position: static !important;
}
.position-relative {
    position: relative !important;
}
.position-absolute {
    position: absolute !important;
}
.position-fixed {
    position: fixed !important;
}
.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.w-50 {
    width: 50% !important;
}
.w-100 {
    width: 100% !important;
}
.w-auto {
    width: auto !important;
}
.h-25 {
    height: 25% !important;
}
.h-50 {
    height: 50% !important;
}
.h-75 {
    height: 75% !important;
}
.h-100 {
    height: 100% !important;
}
.mw-100 {
    max-width: 100% !important;
}
.m-0 {
    margin: 0 !important;
}
.mt-0,
.my-0 {
    margin-top: 0 !important;
}
.mr-0 {
    margin-right: 0 !important;
}
.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}
.ml-0 {
    margin-left: 0 !important;
}
.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}
.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}
.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}
.m-2 {
    margin: 0.5rem !important;
}
.mt-2 {
    margin-top: 0.5rem !important;
}
.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}
.mt-3,
.my-3 {
    margin-top: 1rem !important;
}
.mr-3 {
    margin-right: 1rem !important;
}
.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}
.ml-3 {
    margin-left: 1rem !important;
}
.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}
.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}
.mt-5,
.my-5 {
    margin-top: 3rem !important;
}
.mr-5 {
    margin-right: 3rem !important;
}
.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}
.p-0 {
    padding: 0 !important;
}
.pt-0,
.py-0 {
    padding-top: 0 !important;
}
.pr-0,
.px-0 {
    padding-right: 0 !important;
}
.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
    padding-left: 0 !important;
}
.p-1 {
    padding: 0.25rem !important;
}
.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}
.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}
.p-2 {
    padding: 0.5rem !important;
}
.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}
.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}
.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}
.p-3 {
    padding: 1rem !important;
}
.pt-3,
.py-3 {
    padding-top: 1rem !important;
}
.pr-3,
.px-3 {
    padding-right: 1rem !important;
}
.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
    padding-left: 1rem !important;
}
.p-4 {
    padding: 1.5rem !important;
}
.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}
.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}
.p-5 {
    padding: 3rem !important;
}
.pt-5,
.py-5 {
    padding-top: 3rem !important;
}
.pr-5,
.px-5 {
    padding-right: 3rem !important;
}
.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}
.pl-5,
.px-5 {
    padding-left: 3rem !important;
}
.pb-6 {
    padding-bottom: 4rem !important;
}
.m-auto {
    margin: auto !important;
}
.mt-auto,
.my-auto {
    margin-top: auto !important;
}
.mr-auto,
.mx-auto {
    margin-right: auto !important;
}
.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
    margin-left: auto !important;
}
@media (min-width: 375px) {
    .m-sm-0 {
        margin: 0 !important;
    }

    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .mb-sm-0 {
        margin-bottom: 0 !important;
    }

    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mt-sm-3 {
        margin-top: 1rem !important;
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important;
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .pr-sm-0,
.px-sm-0 {
        padding-right: 0 !important;
    }

    .px-sm-0 {
        padding-left: 0 !important;
    }

    .pt-sm-2 {
        padding-top: 0.5rem !important;
    }

    .px-sm-2 {
        padding-right: 0.5rem !important;
    }

    .px-sm-2 {
        padding-left: 0.5rem !important;
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important;
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .pt-sm-5,
.py-sm-5 {
        padding-top: 3rem !important;
    }

    .py-sm-5 {
        padding-bottom: 3rem !important;
    }
}
@media (min-width: 768px) {

    .mt-md-0,
.my-md-0 {
        margin-top: 0 !important;
    }

    .mr-md-0,
.mx-md-0 {
        margin-right: 0 !important;
    }

    .mb-md-0,
.my-md-0 {
        margin-bottom: 0 !important;
    }

    .ml-md-0,
.mx-md-0 {
        margin-left: 0 !important;
    }

    .mt-md-1 {
        margin-top: 0.25rem !important;
    }

    .mt-md-2,
.my-md-2 {
        margin-top: 0.5rem !important;
    }

    .mb-md-2,
.my-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .mt-md-3,
.my-md-3 {
        margin-top: 1rem !important;
    }

    .mb-md-3,
.my-md-3 {
        margin-bottom: 1rem !important;
    }

    .mt-md-4 {
        margin-top: 1.5rem !important;
    }

    .mr-md-4 {
        margin-right: 1.5rem !important;
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .mt-md-5,
.my-md-5 {
        margin-top: 3rem !important;
    }

    .mr-md-5 {
        margin-right: 3rem !important;
    }

    .mb-md-5,
.my-md-5 {
        margin-bottom: 3rem !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .pt-md-0,
.py-md-0 {
        padding-top: 0 !important;
    }

    .pr-md-0,
.px-md-0 {
        padding-right: 0 !important;
    }

    .pb-md-0,
.py-md-0 {
        padding-bottom: 0 !important;
    }

    .pl-md-0,
.px-md-0 {
        padding-left: 0 !important;
    }

    .py-md-1 {
        padding-top: 0.25rem !important;
    }

    .pr-md-1,
.px-md-1 {
        padding-right: 0.25rem !important;
    }

    .pb-md-1,
.py-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-md-1,
.px-md-1 {
        padding-left: 0.25rem !important;
    }

    .pt-md-2,
.py-md-2 {
        padding-top: 0.5rem !important;
    }

    .pr-md-2,
.px-md-2 {
        padding-right: 0.5rem !important;
    }

    .pb-md-2,
.py-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-md-2,
.px-md-2 {
        padding-left: 0.5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .pt-md-3,
.py-md-3 {
        padding-top: 1rem !important;
    }

    .pr-md-3,
.px-md-3 {
        padding-right: 1rem !important;
    }

    .pb-md-3,
.py-md-3 {
        padding-bottom: 1rem !important;
    }

    .pl-md-3,
.px-md-3 {
        padding-left: 1rem !important;
    }

    .pt-md-4,
.py-md-4 {
        padding-top: 1.5rem !important;
    }

    .pr-md-4,
.px-md-4 {
        padding-right: 1.5rem !important;
    }

    .pb-md-4,
.py-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-md-4,
.px-md-4 {
        padding-left: 1.5rem !important;
    }

    .pt-md-5,
.py-md-5 {
        padding-top: 3rem !important;
    }

    .pr-md-5,
.px-md-5 {
        padding-right: 3rem !important;
    }

    .pb-md-5,
.py-md-5 {
        padding-bottom: 3rem !important;
    }

    .pl-md-5,
.px-md-5 {
        padding-left: 3rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mt-md-auto,
.my-md-auto {
        margin-top: auto !important;
    }

    .mx-md-auto {
        margin-right: auto !important;
    }

    .my-md-auto {
        margin-bottom: auto !important;
    }

    .mx-md-auto {
        margin-left: auto !important;
    }
}
@media (min-width: 1024px) {

    .mt-lg-0,
.my-lg-0 {
        margin-top: 0 !important;
    }

    .mx-lg-0 {
        margin-right: 0 !important;
    }

    .mb-lg-0,
.my-lg-0 {
        margin-bottom: 0 !important;
    }

    .mx-lg-0 {
        margin-left: 0 !important;
    }

    .mt-lg-1 {
        margin-top: 0.25rem !important;
    }

    .mb-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .mt-lg-3 {
        margin-top: 1rem !important;
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important;
    }

    .mt-lg-4,
.my-lg-4 {
        margin-top: 1.5rem !important;
    }

    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important;
    }

    .pt-lg-0,
.py-lg-0 {
        padding-top: 0 !important;
    }

    .pr-lg-0,
.px-lg-0 {
        padding-right: 0 !important;
    }

    .pb-lg-0,
.py-lg-0 {
        padding-bottom: 0 !important;
    }

    .pl-lg-0,
.px-lg-0 {
        padding-left: 0 !important;
    }

    .pt-lg-1 {
        padding-top: 0.25rem !important;
    }

    .py-lg-2 {
        padding-top: 0.5rem !important;
    }

    .px-lg-2 {
        padding-right: 0.5rem !important;
    }

    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .px-lg-2 {
        padding-left: 0.5rem !important;
    }

    .pt-lg-3,
.py-lg-3 {
        padding-top: 1rem !important;
    }

    .pr-lg-3,
.px-lg-3 {
        padding-right: 1rem !important;
    }

    .pb-lg-3,
.py-lg-3 {
        padding-bottom: 1rem !important;
    }

    .pl-lg-3,
.px-lg-3 {
        padding-left: 1rem !important;
    }

    .pt-lg-4,
.py-lg-4 {
        padding-top: 1.5rem !important;
    }

    .px-lg-4 {
        padding-right: 1.5rem !important;
    }

    .pb-lg-4,
.py-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-lg-4,
.px-lg-4 {
        padding-left: 1.5rem !important;
    }

    .pt-lg-5,
.py-lg-5 {
        padding-top: 3rem !important;
    }

    .pr-lg-5,
.px-lg-5 {
        padding-right: 3rem !important;
    }

    .pb-lg-5,
.py-lg-5 {
        padding-bottom: 3rem !important;
    }

    .pl-lg-5,
.px-lg-5 {
        padding-left: 3rem !important;
    }

    .mr-lg-auto {
        margin-right: auto !important;
    }

    .ml-lg-auto {
        margin-left: auto !important;
    }
}
@media (min-width: 1280px) {

    .mt-xl-0 {
        margin-top: 0 !important;
    }

    .mr-xl-0 {
        margin-right: 0 !important;
    }

    .mb-xl-0 {
        margin-bottom: 0 !important;
    }

    .ml-xl-0 {
        margin-left: 0 !important;
    }

    .mt-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mx-xl-3 {
        margin-right: 1rem !important;
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important;
    }

    .mx-xl-3 {
        margin-left: 1rem !important;
    }

    .mt-xl-5 {
        margin-top: 3rem !important;
    }

    .mb-xl-5 {
        margin-bottom: 3rem !important;
    }

    .ml-xl-6 {
        margin-left: 4rem !important;
    }

    .pt-xl-0,
.py-xl-0 {
        padding-top: 0 !important;
    }

    .pr-xl-0,
.px-xl-0 {
        padding-right: 0 !important;
    }

    .pb-xl-0,
.py-xl-0 {
        padding-bottom: 0 !important;
    }

    .px-xl-0 {
        padding-left: 0 !important;
    }

    .pt-xl-2 {
        padding-top: 0.5rem !important;
    }

    .px-xl-2 {
        padding-right: 0.5rem !important;
    }

    .pl-xl-2,
.px-xl-2 {
        padding-left: 0.5rem !important;
    }

    .pr-xl-3,
.px-xl-3 {
        padding-right: 1rem !important;
    }

    .pl-xl-3,
.px-xl-3 {
        padding-left: 1rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
    }

    .pr-xl-4,
.px-xl-4 {
        padding-right: 1.5rem !important;
    }

    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-xl-4,
.px-xl-4 {
        padding-left: 1.5rem !important;
    }

    .pt-xl-5,
.py-xl-5 {
        padding-top: 3rem !important;
    }

    .pr-xl-5,
.px-xl-5 {
        padding-right: 3rem !important;
    }

    .pb-xl-5,
.py-xl-5 {
        padding-bottom: 3rem !important;
    }

    .pl-xl-5,
.px-xl-5 {
        padding-left: 3rem !important;
    }

    .ml-xl-auto {
        margin-left: auto !important;
    }
}
@media (min-width: 1920px) {

    .mb-hd-3 {
        margin-bottom: 1rem !important;
    }
}
.text-justify {
    text-align: justify !important;
}
.text-nowrap {
    white-space: nowrap !important;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}
@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}
@media (min-width: 1024px) {
    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-right {
        text-align: right !important;
    }
}
@media (min-width: 1280px) {
    .text-xl-left {
        text-align: left !important;
    }
}
.text-lowercase {
    text-transform: lowercase !important;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.text-capitalize {
    text-transform: capitalize !important;
}
.font-weight-normal {
    font-weight: 400 !important;
}
.font-weight-bold {
    font-weight: 700 !important;
}
.font-italic {
    font-style: italic !important;
}
.text-white {
    color: #fff !important;
}
.text-success {
    color: #090 !important;
}
a.text-success:hover, a.text-success:focus {
    color: #006600 !important;
}
.text-danger {
    color: #f00 !important;
}
a.text-danger:hover, a.text-danger:focus {
    color: #cc0000 !important;
}
.text-light {
    color: #ccc !important;
}
a.text-light:hover, a.text-light:focus {
    color: #b3b3b3 !important;
}
.text-dark {
    color: #000 !important;
}
a.text-dark:hover, a.text-dark:focus {
    color: black !important;
}
.text-muted {
    color: #6c757d !important;
}
.visible {
    visibility: visible !important;
}
.invisible {
    visibility: hidden !important;
}
@media print {
    *,
*::before,
*::after {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    a:not(.btn) {
        text-decoration: underline;
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
blockquote {
        border: 1px solid #adb5bd;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
img {
        page-break-inside: avoid;
    }

    p,
h2,
h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
h3 {
        page-break-after: avoid;
    }
    body {
        min-width: 1024px !important;
    }

    .container {
        min-width: 1024px !important;
    }

    .navbar {
        display: none;
    }

    .badge {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }
    .table td,
.table th {
        background-color: #fff !important;
    }

    .table-bordered th,
.table-bordered td {
        border: 1px solid #dee2e6 !important;
    }

    .table .thead-dark th {
        color: inherit;
        border-color: #ccc;
    }
}
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}
.owl-carousel .owl-stage {
    position: relative;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}
.owl-carousel.owl-loaded {
    display: block;
}
.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}
.owl-carousel.owl-hidden {
    opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}
.owl-carousel.owl-rtl {
    direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
    float: right;
}
.no-js .owl-carousel {
    display: block;
}
.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
    z-index: 0;
}
.owl-carousel .owl-animated-out {
    z-index: 1;
}
.owl-carousel .fadeOut {
    animation-name: fadeOut;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.owl-height {
    transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
    /**
    	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
    	calculation of the height of the owl-item that breaks page layouts
     */
}
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
    transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}
.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}
.badge {
    font-size: 10px;
    line-height: 13px;
}
.badge:lang(vi) {
    font-size: 9px;
}
.badge-outline-primary {
    padding: 0.2777777778em 0.7222222222em;
    border: 1px solid #333;
    font-weight: 400;
    vertical-align: middle;
}
.badge-outline-secondary {
    padding: 0.2777777778em 0.7222222222em;
    border: 1px solid #ccc;
    font-weight: 400;
    vertical-align: middle;
}
.badge-outline-success {
    padding: 0.2777777778em 0.7222222222em;
    border: 1px solid #090;
    font-weight: 400;
    vertical-align: middle;
}
.badge-outline-info {
    padding: 0.2777777778em 0.7222222222em;
    border: 1px solid #17a2b8;
    font-weight: 400;
    vertical-align: middle;
}
.badge-outline-warning {
    padding: 0.2777777778em 0.7222222222em;
    border: 1px solid #ffc107;
    font-weight: 400;
    vertical-align: middle;
}
.badge-outline-danger {
    padding: 0.2777777778em 0.7222222222em;
    border: 1px solid #f00;
    font-weight: 400;
    vertical-align: middle;
}
.badge-outline-light {
    padding: 0.2777777778em 0.7222222222em;
    border: 1px solid #ccc;
    font-weight: 400;
    vertical-align: middle;
}
.badge-outline-dark {
    padding: 0.2777777778em 0.7222222222em;
    border: 1px solid #000;
    font-weight: 400;
    vertical-align: middle;
}
.badge-custom_success {
    font-weight: 400;
    color: #019a01;
    background-color: rgba(1, 154, 1, 0.1);
    text-transform: uppercase;
}
.badge-custom_confirmed {
    font-weight: 400;
    color: #090;
    background-color: rgba(0, 153, 0, 0.1);
    text-transform: uppercase;
}
.badge-custom_warning {
    font-weight: 400;
    color: #f90;
    background-color: rgba(255, 153, 0, 0.1);
    text-transform: uppercase;
}
.badge-custom_warning_experiment {
    font-weight: 400;
    color: #c00;
    background-color: rgba(204, 0, 0, 0.1);
    text-transform: uppercase;
}
.badge-custom_danger {
    font-weight: 400;
    color: #f00;
    background-color: rgba(255, 0, 0, 0.1);
    text-transform: uppercase;
}
.badge-custom_pending {
    font-weight: 400;
    color: #999;
    background-color: rgba(153, 153, 153, 0.1);
    text-transform: uppercase;
}
.badge-custom_warning_experiment {
    background-color: #fff5e5;
}
.badge[data-id=preorder] {
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    color: #000;
}
.badge_image-icon {
    max-width: 100px;
    height: 10px;
    max-height: 10px;
}
.badge--non_promo {
    display: flex;
    align-items: center;
    padding: 2.5px;
    border: 1px solid #f90;
    color: #f90;
}
.badge-icon {
    width: 15px;
    height: 11px;
}
.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-family: "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.8203125rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 5px;
}
.popover>.arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 5px;
}
.popover>.arrow::before, .popover>.arrow::after {
    content: "";
    position: absolute;
    display: block;
    border-style: solid;
    border-color: transparent;
}
.bs-popover-top {
    margin-bottom: 0.5rem;
}
.bs-popover-top>.arrow {
    bottom: calc((0.5rem + 1px) * -1);
}
.bs-popover-top>.arrow::before, .bs-popover-top>.arrow::after {
    border-width: 0.5rem 0.5rem 0;
}
.bs-popover-top>.arrow::before {
    bottom: 0;
    border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top>.arrow::after {
    bottom: 1px;
    border-top-color: #fff;
}
.bs-popover-right {
    margin-left: 0.5rem;
}
.bs-popover-right>.arrow {
    left: calc((0.5rem + 1px) * -1);
    width: 0.5rem;
    height: 1rem;
    margin: 5px 0;
}
.bs-popover-right>.arrow::before, .bs-popover-right>.arrow::after {
    border-width: 0.5rem 0.5rem 0.5rem 0;
}
.bs-popover-right>.arrow::before {
    left: 0;
    border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right>.arrow::after {
    left: 1px;
    border-right-color: #fff;
}
.bs-popover-bottom {
    margin-top: 0.5rem;
}
.bs-popover-bottom>.arrow {
    top: calc((0.5rem + 1px) * -1);
}
.bs-popover-bottom>.arrow::before, .bs-popover-bottom>.arrow::after {
    border-width: 0 0.5rem 0.5rem 0.5rem;
}
.bs-popover-bottom>.arrow::before {
    top: 0;
    border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom>.arrow::after {
    top: 1px;
    border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -0.5rem;
    border-bottom: 1px solid #f7f7f7;
}
.bs-popover-left {
    margin-right: 0.5rem;
}
.bs-popover-left>.arrow {
    right: calc((0.5rem + 1px) * -1);
    width: 0.5rem;
    height: 1rem;
    margin: 5px 0;
}
.bs-popover-left>.arrow::before, .bs-popover-left>.arrow::after {
    border-width: 0.5rem 0 0.5rem 0.5rem;
}
.bs-popover-left>.arrow::before {
    right: 0;
    border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left>.arrow::after {
    right: 1px;
    border-left-color: #fff;
}
.popover-header {
    margin-bottom: 0;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #ebebeb;
    font-size: 0.9375rem;
    color: inherit;
    background-color: #f7f7f7;
    border-top-left-radius: calc(5px - 1px);
    border-top-right-radius: calc(5px - 1px);
}
.popover-header:empty {
    display: none;
}
.popover-body {
    padding: 0.5rem 0.75rem;
    color: #000;
}
.alert-green {
    color: #019a01;
    background-color: rgba(1, 154, 1, 0.1);
}
.alert-orange {
    color: #f90;
    background-color: rgba(255, 153, 0, 0.1);
}
.alert-red {
    color: #f00;
    background-color: rgba(255, 0, 0, 0.1);
}
.custom_tooltip {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 7px;
    cursor: pointer;
    vertical-align: top;
}
.tooltip_field_right {
    position: absolute;
    top: 1px;
    right: 9px;
}
.tooltip {
    /* stylelint-disable declaration-empty-line-before */
}
.tooltip-inner {
    border: 1px solid #999;
    text-align: left;
    font-size: 0.9375rem;
}
.tooltip-inner:lang(vi) {
    font-size: 0.875rem;
}
.tooltip.bs-tooltip {
    /* stylelint-enable declaration-empty-line-before */
}
.tooltip.bs-tooltip-right {
    /*rtl:ignore*/
    padding-left: 20px;
}
.tooltip.bs-tooltip-right .arrow {
    /*rtl:begin:ignore*/
    right: unset;
    left: 10px;
    /*rtl:end:ignore*/
}
.tooltip.bs-tooltip-right .arrow::before, .tooltip.bs-tooltip-right .arrow::after {
    content: "";
    position: absolute;
    z-index: 101;
    width: 0;
    height: 0;
    border-style: solid;
}
.tooltip.bs-tooltip-right .arrow::after {
    z-index: 100;
}
.tooltip.bs-tooltip-right .arrow::after {
    /*rtl:begin:ignore*/
    left: 0px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #999 transparent transparent;
    /*rtl:end:ignore*/
}
.tooltip.bs-tooltip-right .arrow::before {
    /*rtl:begin:ignore*/
    left: 1px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
    /*rtl:end:ignore*/
}
.tooltip.bs-tooltip-left {
    /*rtl:ignore*/
    padding-right: 20px;
}
.tooltip.bs-tooltip-left .arrow {
    /*rtl:begin:ignore*/
    right: 11px;
    left: unset;
    /*rtl:end:ignore*/
}
.tooltip.bs-tooltip-left .arrow::before, .tooltip.bs-tooltip-left .arrow::after {
    content: "";
    position: absolute;
    z-index: 101;
    width: 0;
    height: 0;
    border-style: solid;
}
.tooltip.bs-tooltip-left .arrow::after {
    z-index: 100;
}
.tooltip.bs-tooltip-left .arrow::after {
    /*rtl:begin:ignore*/
    left: 1px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #999;
    /*rtl:end:ignore*/
}
.tooltip.bs-tooltip-left .arrow::before {
    /*rtl:begin:ignore*/
    left: 0;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
    /*rtl:end:ignore*/
}
.tooltip.bs-tooltip-top .arrow::before, .tooltip.bs-tooltip-top .arrow::after {
    content: "";
    position: absolute;
    z-index: 101;
    width: 0;
    height: 0;
    border-style: solid;
}
.tooltip.bs-tooltip-top .arrow::after {
    z-index: 100;
}
.tooltip.bs-tooltip-top .arrow::after {
    top: 0px;
    border-width: 10px 10px 0;
    border-color: #999 transparent transparent transparent;
}
.tooltip.bs-tooltip-top .arrow::before {
    top: -1px;
    border-width: 10px 10px 0;
    border-color: #fff transparent transparent transparent;
}
.tooltip.bs-tooltip-bottom .arrow::before, .tooltip.bs-tooltip-bottom .arrow::after {
    content: "";
    position: absolute;
    z-index: 101;
    width: 0;
    height: 0;
    border-style: solid;
}
.tooltip.bs-tooltip-bottom .arrow::after {
    z-index: 100;
}
.tooltip.bs-tooltip-bottom .arrow::after {
    top: 0px;
    border-width: 0 10px 10px;
    border-color: transparent transparent #999 transparent;
}
.tooltip.bs-tooltip-bottom .arrow::before {
    top: 1px;
    border-width: 0 10px 10px;
    border-color: transparent transparent #fff transparent;
}
.carousel-control {
    opacity: 1;
}
.carousel-prev {
    justify-content: flex-start;
}
.carousel-next {
    justify-content: flex-end;
}
.carousel-control_icon {
    width: 30px;
    height: 30px;
    opacity: 1;
    color: #ccc;
}
[dir=rtl] .carousel-control_icon {
    transform: rotate(180deg);
}
.carousel-indicators {
    margin: 0;
}
@media (min-width: 1280px) {
    .carousel-indicators {
        display: none;
    }
}
.carousel-indicators li, .carousel-indicators-indicator {
    width: 7px;
    height: 7px;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: #ccc;
}
.carousel-indicators li.active, .carousel-indicators-indicator.active {
    border-color: #000;
}
.modal .modal-body {
    flex: 0 0 auto;
}
.bs-modal_body_fix {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.bs-modal_fix {
    display: table;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    pointer-events: none;
}
.bs-modal_fix-helper {
    display: table-cell;
    pointer-events: none;
    vertical-align: middle;
}
.modal-content {
    width: inherit;
    max-width: inherit;
    height: inherit;
    margin: 0 auto;
    pointer-events: all;
}
.modal-content .close {
    z-index: 10;
}
.modal.show .modal-dialog {
    transform: initial;
}
.custom-control-input:disabled:checked~.custom-control-label::before, .custom-control-input:disabled:indeterminate~.custom-control-label::before, .custom-control-input:disabled:checked~.custom-control-label::after, .custom-control-input:disabled:indeterminate~.custom-control-label::after {
    opacity: 0.3;
}
.custom-control-input.is-invalid[type=checkbox]~.custom-control-label::before {
    border-color: #f00;
    background-color: #fff;
}
.custom-control-input.is-invalid[type=checkbox]~.custom-control-label .content-asset>a {
    color: #f00;
}
.custom-control-input-error .maxchar_is-invalid {
    border-color: unset;
}
.custom-control-input-error .maxchar_is-invalid:focus {
    border-color: unset;
}
.custom-control-input-error .maxchar_invalid-feedback {
    color: unset;
}
.custom-checkbox .custom-control-label::before {
    border: 1px solid #999;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSI3Ljk5NSI+ICA8cGF0aCBkPSJNMCA0Ljk5NGwxLTEuMDA4TDMgNmw2LTYgMSAxLTcgN3oiLz48L3N2Zz4=");
}
.custom-checkbox--dark .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSI3Ljk5NSI+ICA8cGF0aCBkPSJNMCA0Ljk5NGwxLTEuMDA4TDMgNmw2LTYgMSAxLTcgN3oiIGZpbGw9IiNmZmYiLz48L3N2Zz4=");
}
.custom-checkbox--dark .custom-control-input[type=checkbox]:checked~.custom-control-label::before,
.custom-checkbox--dark .custom-control-input[type=checkbox]:indeterminate~.custom-control-label::before {
    border-color: #333;
    background-color: #333;
}
.custom-radio .custom-control-label::before {
    border: 1px solid #ccc;
    background: #f0f0f0;
}
.custom-radio .custom-control-input~.custom-control-label::before, .custom-radio .custom-control-input~.custom-control-label::after {
    width: 15px;
    height: 15px;
    top: 4px;
    left: -25px;
}
.custom-radio .custom-control-input~.custom-control-label.custom-control-label--kr::before, .custom-radio .custom-control-input~.custom-control-label.custom-control-label--kr::after {
    left: -145px;
}
.custom-radio .custom-control-input.is-invalid~.custom-control-label::before {
    border: 1px solid #f00;
    background-color: #f0f0f0;
}
.custom-radio .custom-control-input:checked~.custom-control-label::before {
    border-color: #333;
    background: #333;
}
.custom-radio .custom-control-input:disabled~.custom-control-label::before {
    border-color: #f0f0f0;
}
.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #000;
}
.custom-radio--large .custom-control-input~.custom-control-label::before, .custom-radio--large .custom-control-input~.custom-control-label::after {
    width: 20px;
    height: 20px;
    top: 0;
    left: -27px;
    border: 1px solid #999;
    border-radius: 50%;
    background: #fff;
}
.custom-radio--large .custom-control-input:checked~.custom-control-label::before {
    border-color: #999;
    background: #fff;
}
.custom-radio--large .custom-control-input:checked~.custom-control-label::after {
    width: 12px;
    height: 12px;
    border: 0;
    background-color: #333;
    background-image: none;
    transform: translate(4px, 4px);
}
.custom-radio--large .custom-control-label {
    padding-left: 10px;
}
.custom-radio--revamped_dropdown {
    padding-left: 19px;
}
.custom-radio--revamped_dropdown .custom-control-input~.custom-control-label::before, .custom-radio--revamped_dropdown .custom-control-input~.custom-control-label::after {
    width: 15px;
    height: 15px;
    top: 3px;
    left: -16px;
    border: 1px solid #999;
    border-radius: 50%;
    background: #fff;
}
.custom-radio--revamped_dropdown .custom-control-input:checked~.custom-control-label::before {
    border-color: #999;
    background: #fff;
}
.custom-radio--revamped_dropdown .custom-control-input:checked~.custom-control-label::after {
    width: 9px;
    height: 9px;
    border: 0;
    background-color: #333;
    background-image: none;
    transform: translate(3px, 3px);
}
.custom-radio--revamped_dropdown .custom-control-label {
    margin-bottom: 15px;
    padding-left: 10px;
}
@media (min-width: 1024px) {
    .custom-radio--revamped_dropdown .custom-control-label {
        margin-bottom: 13px;
    }
}
.custom-select--disabled {
    color: #000 !important;
}
.custom-select:disabled {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -4 10 10'%3E%3Cpath fill='%23ccc' d='M8.833.188A.918.918,0,0,1,9.333,0,.624.624,0,0,1,9.8.226a.994.994,0,0,1,.2.6.8.8,0,0,1-.3.6L6.067,4.436A1.882,1.882,0,0,1,5,5a1.858,1.858,0,0,1-1.1-.564L.267,1.429A.891.891,0,0,1,0,.827.819.819,0,0,1,.2.263.561.561,0,0,1,.667,0a.761.761,0,0,1,.5.188L4.833,3.233c.067.038.1.075.133.075A.243.243,0,0,0,5.1,3.233Z'/%3E%3C/svg%3E");
}
.custom-select--gradient {
    /*rtl:begin:ignore*/
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -4 10 10'%3E%3Cpath fill='%23000' d='M8.833.188A.918.918,0,0,1,9.333,0,.624.624,0,0,1,9.8.226a.994.994,0,0,1,.2.6.8.8,0,0,1-.3.6L6.067,4.436A1.882,1.882,0,0,1,5,5a1.858,1.858,0,0,1-1.1-.564L.267,1.429A.891.891,0,0,1,0,.827.819.819,0,0,1,.2.263.561.561,0,0,1,.667,0a.761.761,0,0,1,.5.188L4.833,3.233c.067.038.1.075.133.075A.243.243,0,0,0,5.1,3.233Z'/%3E%3C/svg%3E") no-repeat right 0.5rem center/18px 10px, linear-gradient(to top, #f0f0f0, #fff);
    /*rtl:end:ignore*/
}
.custom-select--gradient:focus::-ms-value {
    background: linear-gradient(to top, #f0f0f0, #fff) !important;
}
.custom-select-phone_code-disabled {
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -4 10 10'%3E%3Cpath fill='%23ccc' d='M8.833.188A.918.918,0,0,1,9.333,0,.624.624,0,0,1,9.8.226a.994.994,0,0,1,.2.6.8.8,0,0,1-.3.6L6.067,4.436A1.882,1.882,0,0,1,5,5a1.858,1.858,0,0,1-1.1-.564L.267,1.429A.891.891,0,0,1,0,.827.819.819,0,0,1,.2.263.561.561,0,0,1,.667,0a.761.761,0,0,1,.5.188L4.833,3.233c.067.038.1.075.133.075A.243.243,0,0,0,5.1,3.233Z'/%3E%3C/svg%3E");
    color: #ccc;
    pointer-events: none;
}
.custom-select-phone_code-disabled--ID {
    pointer-events: none;
}
.birth-select:disabled {
    color: #000;
}
:root {
    --app-height: 100%;
}
html,
body {
    height: 100%;
}
dt {
    color: #495057;
    font-weight: normal;
}
input {
    filter: none;
    /* The cross sign on the input fields (only MS related) - hidden for Edge */
}
input::-ms-clear {
    display: none;
}
h1 {
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
@media (min-width: 768px) {
    h1 {
        text-align: left;
        margin-bottom: 20px;
    }
}
dt {
    color: inherit;
}
dd {
    margin-bottom: 0;
}
.nav-tabs .nav-link {
    position: relative;
    padding: 0 0 4px;
    border: 0;
    border-bottom: 1px solid #ccc;
    color: #999;
}
.nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    border-bottom: 1px solid transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    font-weight: 700;
}
.nav-tabs .nav-link.active::after,
.nav-tabs .nav-item.show .nav-link::after {
    border-color: transparent transparent #333;
}
.nav-tabs .nav-item+.nav-item {
    margin-left: 27px;
}
.tab-content>.tab-pane {
    padding: 16px 0 14px;
}
.card {
    margin-bottom: 1em;
}
.card-header h4 {
    margin-bottom: 0;
}
@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.slideInUp {
    animation-name: slideInUp;
}
@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(0, -100%, 0);
        visibility: hidden;
    }
}
.slideOutUp {
    animation-name: slideOutUp;
}
.help_text {
    color: #999;
}
.cursor-not_allowed {
    cursor: not-allowed;
}
.u-btn_responsive {
    min-width: 100%;
}
@media (min-width: 768px) {
    .u-btn_responsive {
        min-width: 136px;
    }
}
.u-overflow-hidden {
    overflow: hidden;
}
.u-overflow-y-auto {
    overflow-y: auto;
}
@media (min-width: 1280px) {
    .u-narrow_padding--right {
        padding-right: 10.5px;
    }
    .u-narrow_padding--left {
        padding-left: 10.5px;
    }
}
.focusable {
    outline: none;
}
.focusable:focus {
    outline: none;
}
.focusable:focus-visible {
    border-radius: 4px;
    outline: 2px solid #333;
    outline-offset: 2px;
}
.focusable-btn {
    outline: none;
}
.focusable-btn:focus {
    outline: none;
}
.focusable-btn:focus-visible {
    border-radius: 5px;
    outline: 2px solid #333;
}
.text-white {
    color: #fff !important;
}
.text-black {
    color: #000 !important;
}
.text-light {
    color: #ccc !important;
}
.text-grey4 {
    color: #999 !important;
}
.text-grey5 {
    color: #666 !important;
}
.text-grey8 {
    color: #333 !important;
}
.font-weight-book {
    font-weight: 400 !important;
}
.font-weight-medium {
    font-weight: 500 !important;
}
.font-weight-demi {
    font-weight: 700 !important;
}
.fz-12px {
    font-size: 12px !important;
}
.fz-14px {
    font-size: 14px !important;
}
.fz-15px {
    font-size: 15px !important;
}
.fz-16px {
    font-size: 16px !important;
}
.fz-18px {
    font-size: 18px !important;
}
.fz-20px {
    font-size: 20px !important;
}
.fz-24px {
    font-size: 24px !important;
}
.fz-26px {
    font-size: 26px !important;
}
.line-height-1 {
    line-height: 1 !important;
}
.line-height-21px {
    line-height: 21px !important;
}
.line-height-23px {
    line-height: 23px !important;
}
.line-height-24px {
    line-height: 24px !important;
}
.line-height-32px {
    line-height: 32px !important;
}
.line-height-35px {
    line-height: 35px !important;
}
.text-wrap {
    white-space: normal !important;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.text-underlined, .text-underlined:hover, .text-underlined:active, .text-underlined:focus {
    text-decoration: underline !important;
}
.text-no-decoration, .text-no-decoration:hover, .text-no-decoration:active, .text-no-decoration:focus {
    text-decoration: none !important;
}
.mx-n5px {
    margin-right: -5px !important;
    margin-left: -5px !important;
}
.ml-n15px {
    margin-left: -15px !important;
}
.mx-n32px {
    margin-right: -32px !important;
    margin-left: -32px !important;
}
.m-0 {
    margin: 0 !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mr-0 {
    margin-right: 0 !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.ml-0 {
    margin-left: 0 !important;
}
.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.mt-1 {
    margin-top: 0.25rem !important;
}
.mr-1 {
    margin-right: 0.25rem !important;
}
.mb-1 {
    margin-bottom: 0.25rem !important;
}
.ml-1 {
    margin-left: 0.25rem !important;
}
.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}
.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}
.mr-5px {
    margin-right: 5px !important;
}
.mb-5px {
    margin-bottom: 5px !important;
}
.mt-8px {
    margin-top: 8px !important;
}
.mr-8px {
    margin-right: 8px !important;
}
.ml-8px {
    margin-left: 8px !important;
}
.mt-10px {
    margin-top: 10px !important;
}
.mb-12px {
    margin-bottom: 12px !important;
}
.mt-14px {
    margin-top: 14px !important;
}
.mb-14px {
    margin-bottom: 14px !important;
}
.mb-18px {
    margin-bottom: 18px !important;
}
.mt-20px {
    margin-top: 20px !important;
}
.mb-20px {
    margin-bottom: 20px !important;
}
.mb-28px {
    margin-bottom: 28px !important;
}
.mt-30px {
    margin-top: 30px !important;
}
.mb-30px {
    margin-bottom: 30px !important;
}
.mt-32px {
    margin-top: 32px !important;
}
.mb-40px {
    margin-bottom: 40px !important;
}
.mx-40px {
    margin-right: 40px !important;
    margin-left: 40px !important;
}
.mb-50px {
    margin-bottom: 50px !important;
}
.px-5px {
    padding-right: 5px !important;
    padding-left: 5px !important;
}
.px-7px {
    padding-right: 7px !important;
    padding-left: 7px !important;
}
.pt-10px {
    padding-top: 10px !important;
}
.pb-10px {
    padding-bottom: 10px !important;
}
.pl-10px {
    padding-left: 10px !important;
}
.pb-18px {
    padding-bottom: 18px !important;
}
.pt-20px {
    padding-top: 20px !important;
}
.pb-20px {
    padding-bottom: 20px !important;
}
.px-25px {
    padding-right: 25px !important;
    padding-left: 25px !important;
}
.pt-30px {
    padding-top: 30px !important;
}
.pb-30px {
    padding-bottom: 30px !important;
}
.pl-30px {
    padding-left: 30px !important;
}
.position-absolute {
    position: absolute;
}
.position-relative {
    position: relative;
}
.position-static {
    position: absolute;
}
.t-0 {
    top: 0 !important;
}
.t-50 {
    top: 50% !important;
}
.r-0 {
    right: 0 !important;
}
.b-0 {
    bottom: 0 !important;
}
.l-0 {
    left: 0 !important;
}
.l-50 {
    left: 50% !important;
}
.translate-y-n50 {
    transform: translateY(-50%) !important;
}
.translate-n50 {
    transform: translate(-50%, -50%) !important;
}
@media (min-width: 375px) {

    .m-sm-0 {
        margin: 0 !important;
    }

    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .mb-sm-0 {
        margin-bottom: 0 !important;
    }
}
@media (min-width: 768px) {

    .text-md-black {
        color: #000 !important;
    }

    .text-md-grey8 {
        color: #333 !important;
    }

    .fz-md-14px {
        font-size: 14px !important;
    }

    .fz-md-16px {
        font-size: 16px !important;
    }

    .fz-md-18px {
        font-size: 18px !important;
    }

    .fz-md-24px {
        font-size: 24px !important;
    }

    .fz-md-48px {
        font-size: 48px !important;
    }

    .line-height-md-62px {
        line-height: 62px !important;
    }

    .mx-md-n8px {
        margin-right: -8px !important;
        margin-left: -8px !important;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }

    .mr-md-0 {
        margin-right: 0 !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .ml-md-0 {
        margin-left: 0 !important;
    }

    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .mt-md-1 {
        margin-top: 0.25rem !important;
    }

    .mb-md-12px {
        margin-bottom: 12px !important;
    }

    .mt-md-14px {
        margin-top: 14px !important;
    }

    .mt-md-20px {
        margin-top: 20px !important;
    }

    .mr-md-20px {
        margin-right: 20px !important;
    }

    .mb-md-20px {
        margin-bottom: 20px !important;
    }

    .ml-md-20px {
        margin-left: 20px !important;
    }

    .mb-md-30px {
        margin-bottom: 30px !important;
    }

    .ml-md-60px {
        margin-left: 60px !important;
    }

    .px-md-8px {
        padding-right: 8px !important;
        padding-left: 8px !important;
    }

    .px-md-9px {
        padding-right: 9px !important;
        padding-left: 9px !important;
    }

    .pt-md-10px {
        padding-top: 10px !important;
    }

    .pt-md-38px {
        padding-top: 38px !important;
    }

    .position-md-absolute {
        position: absolute;
    }

    .t-md-50 {
        top: 50% !important;
    }

    .r-md-0 {
        right: 0 !important;
    }

    .b-md-auto {
        bottom: auto !important;
    }

    .b-md-50 {
        bottom: 50% !important;
    }

    .translate-y-md-50 {
        transform: translateY(50%) !important;
    }

    .translate-y-md-n50 {
        transform: translateY(-50%) !important;
    }
}
@media (min-width: 1024px) {

    .fz-lg-32px {
        font-size: 32px !important;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .mt-lg-1 {
        margin-top: 0.25rem !important;
    }

    .pr-lg-10px {
        padding-right: 10px !important;
    }

    .pl-lg-10px {
        padding-left: 10px !important;
    }

    .position-lg-absolute {
        position: absolute;
    }
}
@media (min-width: 1280px) {

    .mt-xl-0 {
        margin-top: 0 !important;
    }

    .mr-xl-0 {
        margin-right: 0 !important;
    }

    .mb-xl-0 {
        margin-bottom: 0 !important;
    }

    .ml-xl-0 {
        margin-left: 0 !important;
    }

    .mt-xl-1 {
        margin-top: 0.25rem !important;
    }
}
@media (min-width: 1920px) {

    .mt-hd-44px {
        margin-top: 44px !important;
    }

    .pt-hd-100px {
        padding-top: 100px !important;
    }
}
.page {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 50px;
}
.page--has_header {
    padding-top: 0 !important;
}
.page-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto !important;
}
.page-header_banner_wrapper--empty {
    height: 40px;
    visibility: hidden;
}
.page-flex {
    flex: 1 0 auto;
}
.page:not(.page--home) .page_header-logo .logo {
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
@media (min-width: 1024px) {
    .page:not(.page--home) .page_header-logo .logo {
        left: 31px;
    }
}
@media (min-width: 1280px) {
    .page:not(.page--home) .page_header-logo .logo {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    [dir=rtl] .page:not(.page--home) .page_header-logo .logo {
        right: auto;
        left: 50%;
    }
}
@media (max-width: 1279.98px) {
    .page--removed_banner .page_header-inner {
        top: 0 !important;
    }
}
.page--removed_banner .product_revamped_list-sortby_filter.had-banner {
    top: 0 !important;
}
.page--removed_banner .product_revamped_list-sortby_filter.had-nobanner.nav-down {
    top: 50px !important;
}
.page--removed_banner .pdp-product_bar_wrapper {
    padding-top: 0 !important;
}
.page--removed_banner.page--search {
    padding-top: 10px;
}
@media (min-width: 1280px) {
    .page--removed_banner .cart_sticky_bar.is-stuck {
        top: 0;
    }
    .page--removed_banner .cart_sticky_bar.nav-down {
        top: 50px !important;
    }
}
@media (min-width: 768px) {
    .container-fluid-md {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        padding-right: 31px;
        padding-left: 31px;
    }
}
@media (min-width: 1920px) {
    .container-hd {
        max-width: 1918px;
        padding-right: 31px;
        padding-left: 31px;
    }
}
.item-attributes {
    vertical-align: top;
    padding-left: 0;
}
.line-item-attributes,
.line-item-option {
    font-size: 0.813rem;
    margin: 0;
}
.line-item-name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #333;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 0.313em;
}
.line-item-pricing-info {
    margin-bottom: 0;
}
.line-item-pricing-info+.price {
    font-size: 1em;
    font-weight: bolder;
}
.line-item-pricing-info+.unit-price .price {
    font-size: 1em;
    font-weight: bolder;
}
.line-item-pricing-info+.unit-price .price {
    font-size: 1em;
    font-weight: bolder;
}
.pricing {
    font-size: 1em;
    font-weight: bolder;
}
.item-image {
    height: 5.625em;
    width: 5.625em;
    margin-right: 0.938em;
    flex-grow: 0;
    flex-shrink: 0;
}
.item-image img.product-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    max-height: 5.625em;
}
.line-item-promo {
    color: #090;
    font-size: 0.813em;
}
.line-item-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.bundle-includes {
    font-size: 0.813em;
    margin-bottom: 0.625em;
}
.line-dotted {
    border-top: 0.063em dashed #ccc;
}
.line-item-availability {
    font-size: 0.813rem;
}
.product-line-item-details {
    overflow-y: auto;
}
.minicart {
    position: relative;
}
.minicart h1 {
    font-size: 1rem;
}
.minicart .cart {
    padding-top: 0.625em;
    padding-bottom: 0.625em;
    background-color: #fff;
}
.minicart .remove-btn {
    color: #999;
    float: right;
    background-color: white;
    border: none;
    font-size: 1.625em;
    margin-top: -0.313em;
    padding: 0;
}
.minicart .product-summary {
    margin-right: -0.938em;
    max-height: 21.875em;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.938em;
}
.minicart .card-body {
    padding: 0.625em;
}
.minicart .quantity-label {
    font-size: 0.813em;
}
.minicart .quantity {
    width: 100%;
}
.minicart .popover {
    top: 100%;
    left: auto;
    right: 0;
    min-width: 23.44rem;
    max-width: 23.44rem;
    min-height: 22.7rem;
    display: none;
}
.minicart .popover::before {
    left: auto;
    right: 15px;
}
.minicart .popover::after {
    left: auto;
    right: 16px;
}
.minicart .popover.show {
    display: block;
}
.minicart .sub-total {
    font-size: 1em;
    font-weight: 600;
}
.minicart .line-item-name {
    width: 90%;
}
.btn-primary {
    color: #fff;
    background-color: #333;
    border-color: #333;
}
.btn-primary:hover {
    color: #fff;
    background-color: #333;
    border-color: #333;
}
.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #333;
    border-color: #333;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #333;
    border-color: #333;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.5);
}
.btn-secondary:not(:disabled):not(.disabled).active {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-success {
    color: #fff;
    background-color: #090;
    border-color: #090;
}
.btn-success:hover {
    color: #fff;
    background-color: #090;
    border-color: #090;
}
.btn-success:focus, .btn-success.focus {
    box-shadow: 0 0 0 0 rgba(0, 153, 0, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #090;
    border-color: #090;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #090;
    border-color: #090;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(0, 153, 0, 0.5);
}
.btn-info:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}
.btn-warning:not(:disabled):not(.disabled).active {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}
.btn-danger:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #f00;
    border-color: #f00;
}
.btn-danger:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
}
.btn-light {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
}
.btn-light:hover {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
}
.btn-light:focus, .btn-light.focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show>.btn-light.dropdown-toggle {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-dark {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.btn-dark:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.btn-dark:focus, .btn-dark.focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.btn-outline-primary {
    color: #333;
    background-color: transparent;
    background-image: none;
    border-color: #333;
}
.btn-outline-primary:hover {
    color: #333;
    background-color: transparent;
    border-color: #333;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #333;
    background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: transparent;
    border-color: #333;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.5);
}
.btn-outline-secondary {
    color: #ccc;
    background-color: transparent;
    background-image: none;
    border-color: #ccc;
}
.btn-outline-secondary:hover {
    color: #ccc;
    background-color: transparent;
    border-color: #ccc;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #ccc;
    background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show>.btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: transparent;
    border-color: #ccc;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>.btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-outline-success:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: transparent;
    border-color: #090;
}
.btn-outline-success:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(0, 153, 0, 0.5);
}
.btn-outline-info:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: transparent;
    border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}
.btn-outline-warning:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: transparent;
    border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}
.btn-outline-danger:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: transparent;
    border-color: #f00;
}
.btn-outline-danger:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
}
.btn-outline-light {
    color: #ccc;
    background-color: transparent;
    background-image: none;
    border-color: #ccc;
}
.btn-outline-light:hover {
    color: #ccc;
    background-color: transparent;
    border-color: #ccc;
}
.btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #ccc;
    background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show>.btn-outline-light.dropdown-toggle {
    color: #fff;
    background-color: transparent;
    border-color: #ccc;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show>.btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.5);
}
.btn-outline-dark {
    color: #000;
    background-color: transparent;
    background-image: none;
    border-color: #000;
}
.btn-outline-dark:hover {
    color: #000;
    background-color: transparent;
    border-color: #000;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #000;
    background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show>.btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: transparent;
    border-color: #000;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.btn:not(.btn-link) {
    text-transform: uppercase;
}
.btn-link {
    text-decoration: underline;
}
.btn-gradient {
    background-image: linear-gradient(to top, #f0f0f0, #fff);
    color: #000;
}
.btn-gradient:hover {
    color: #000;
}
.btn-dark--hover {
    border-color: #000;
    background-color: #000;
    color: #fff;
}
.btn-dark--hover:hover {
    border-color: #333;
    background-color: #333;
    color: #fff;
}
.btn-outline-light:hover {
    border-color: #000;
}
.btn-outline-light--hover {
    border-color: #ccc;
}
.btn-outline-light--hover.btn-gradient:hover {
    border-color: #000;
    color: #000;
}
.btn-outline-light--hover:hover {
    background-color: #000;
    color: #fff;
}
.btn-outline-light--hover:not(:disabled):not(.disabled):active, .btn-outline-light--hover:not(:disabled):not(.disabled).active {
    color: #fff;
}
.btn-outline-light,
.btn-outline-dark,
.btn-outline-primary {
    color: #000;
}
.btn-outline-light:hover,
.btn-outline-dark:hover,
.btn-outline-primary:hover {
    color: #000;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active {
    color: #000;
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    background-color: rgba(51, 51, 51, 0.2);
    color: #fff;
    opacity: 1;
}
.btn-outline-primary--hover {
    border-color: #333;
    background-color: #fff;
    color: #000;
}
.btn-outline-primary--hover:hover {
    background-color: #000;
    color: #fff;
}
.btn-outline-primary--hover:not(:disabled):not(.disabled):active, .btn-outline-primary--hover:not(:disabled):not(.disabled).active {
    color: #fff;
}
.btn-outline-dark--hover {
    border-color: #000;
    background-color: #fff;
    color: #000;
}
.btn-outline-dark--hover:hover {
    background-color: #000;
    color: #fff;
}
.btn-outline-dark--hover.btn-gradient:hover {
    background-image: none;
}
.btn-outline-dark--hover:not(:disabled):not(.disabled):active, .btn-outline-dark--hover:not(:disabled):not(.disabled).active {
    color: #fff;
}
.btn-primary--hover {
    border-color: #333;
    background-color: #333;
    color: #fff;
}
.btn-primary--hover:hover {
    border-color: #000;
    background-color: #000;
    color: #fff;
}
.btn-primary--hover:disabled, .btn-primary--hover.disabled {
    color: #ccc;
    border-color: #ccc;
    background-color: transparent;
    opacity: 1;
    pointer-events: none;
}
.btn-primary--hover:not(:disabled):not(.disabled):active, .btn-primary--hover:not(:disabled):not(.disabled).active {
    border-color: #000;
    background-color: #000;
}
.btn-primary--gradient {
    background: linear-gradient(#666, #333);
    color: #fff;
}
.btn-primary--plain {
    background: #fff;
    color: #000;
}
.btn-secondary--hover:not(:disabled):not(.disabled).active {
    border-color: #000;
    background-color: #000;
}
.close {
    width: 29px;
    height: 29px;
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    border-radius: 3px;
    background-color: #333;
    opacity: 1;
}
.close:hover, .close:focus {
    opacity: 1;
}
.close:focus {
    outline: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
    opacity: 1;
}
.close .icon {
    width: 15px;
    height: 15px;
    margin: auto;
    fill: #ccc;
}
.btn-back .icon {
    width: 9px;
    height: 15px;
    transform: rotate(180deg);
}
.btn-promotions {
    white-space: inherit;
}
.btn-flex {
    display: flex;
    justify-content: center;
    font-size: 0.8203125rem;
}
.forgot_password-link {
    color: #999;
}
.btn.amazon-product-type-selection-btn .icon {
    width: 100%;
    max-width: 84px;
}
@media (min-width: 1280px) {
    .breadcrumb {
        padding: 14px 0 25px;
    }
}
.breadcrumb--current {
    font-weight: 700;
}
.breadcrumb--hidden {
    height: 0;
    padding: 0 !important;
    visibility: hidden;
    pointer-events: none;
}
@media (max-width: 767.98px) {
    .breadcrumb-container {
        max-width: 100%;
    }
}
.breadcrumb-item::after {
    content: "|";
    display: inline-block;
    padding-right: 6px;
    padding-left: 4px;
    color: #ccc;
}
.breadcrumb-item+.breadcrumb-item {
    padding: 0;
}
.breadcrumb-item+.breadcrumb-item::before {
    display: none !important;
}
.breadcrumb-item:last-child::after {
    display: none;
}
.breadcrumb_item--img_link:hover {
    text-decoration: none;
}
.breadcrumb_item--link {
    display: inline-block;
}
.breadcrumb_item--link:hover {
    text-decoration: underline;
}
.breadcrumb_item--image {
    max-width: 100px;
    height: 9px;
    max-height: 9px;
    vertical-align: unset;
}
.breadcrumb-wrapper {
    padding: 20px 16px 10px 13px;
}
.breadcrumb-wrapper-jp {
    padding: 10px 16px 15px 13px;
    font-size: 12px;
}
.breadcrumb-wrapper-jp:not(.empty_cart):has(.breadcrumb--hidden) {
    padding: 0;
}
@media (min-width: 1024px) {
    .breadcrumb-wrapper-jp {
        font-size: 14px;
    }
}
.breadcrumb.breadcrumb--truncated {
    position: relative;
    display: block;
    max-height: 2.3rem;
    margin: 0 !important;
    padding: 0 10px 0 0 !important;
    overflow: hidden;
    text-overflow: inherit;
}
.breadcrumb.breadcrumb--truncated::before {
    content: "...";
    position: absolute;
    inset-block-end: 0;
    inset-inline-end: 0;
}
.breadcrumb.breadcrumb--truncated::after {
    content: "";
    position: absolute;
    inset-inline-end: 0;
    width: 0.6rem;
    height: 2rem;
    background: #fff;
}
.breadcrumb.breadcrumb--truncated .breadcrumb-item {
    display: inline;
}
.breadcrumb.breadcrumb--truncated .breadcrumb-item:last-child {
    word-break: break-all;
}
@media (max-width: 767.98px) {
    .breadcrumb.breadcrumb--truncated .breadcrumb-item {
        padding: 0;
    }
    .breadcrumb.breadcrumb--truncated .breadcrumb-item::after {
        padding: 0;
    }
}
.breadcrumb.breadcrumb--truncated .breadcrumb--current {
    display: inline;
    white-space: normal;
}
.page_footer {
    padding: 0;
    background-color: #fff;
    color: #000;
}
.page_footer-wrapper {
    max-width: none;
}
.page_footer-container {
    padding: 0;
}
@media (min-width: 1280px) {
    .page_footer-container {
        padding: 30px 0 0;
    }
}
.page_footer-container a {
    color: #000;
}
.page_footer-heading {
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}
.page_footer-heading .heading_title {
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    line-height: 1.2;
    cursor: pointer;
}
@media (min-width: 1280px) {
    .page_footer-heading .heading_title {
        margin-bottom: 10px;
        font-weight: 700;
        cursor: default;
    }
}
.page_footer-heading:not(.collapsed) .heading_title {
    font-weight: 700;
}
.page_footer-heading.collapsed .heading_title {
    font-weight: 400;
}
@media (min-width: 1280px) {
    .page_footer-heading.collapsed .heading_title {
        font-weight: 700;
    }
}
@media (min-width: 1280px) {
    .page_footer-heading {
        font-weight: 400;
        text-transform: uppercase;
    }
}
.page_footer-heading .icon {
    width: 5px;
    height: 10px;
    margin: 0 12px 0 0;
    transform: rotate(90deg);
    transition: transform 0.2s;
    fill: #999;
}
.page_footer-heading.collapsed .icon {
    transform: rotate(0);
}
.page_footer-menu {
    padding: 0 0 0 30px;
}
@media (min-width: 1280px) {
    .page_footer-menu {
        padding: 0;
    }
}
.page_footer-menu li {
    margin: 0 0 5px;
    font-weight: 500;
}
.page_footer-item {
    margin: 20px 0 0;
    padding: 0 !important;
}
@media (min-width: 1280px) {
    .page_footer-item {
        margin: 0 0 2px;
        padding: 0 20px 0 0 !important;
    }
    .page_footer-item:last-child {
        padding-right: 0 !important;
    }
}
.page_footer-download::after, .page_footer-download::before {
    right: 0 !important;
    left: 0 !important;
}
@media (max-width: 767.98px) {
    .page_footer-download {
        padding: 0 !important;
    }
    .page_footer-download h3 {
        font-weight: 700;
    }
}
.page_footer-download_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
@media (min-width: 1280px) {
    .page_footer-download_wrapper {
        display: none;
    }
}
.page_footer-download_title {
    font-weight: 700;
}
.page_footer-download_button {
    padding: 10px 15px;
    border-width: 1px;
    border-color: #000 !important;
    border-radius: 5px;
    background: #fff;
    color: #000;
}
.page_footer .container {
    max-width: none;
    padding-right: 15px;
    padding-left: 15px;
}
@media (min-width: 1280px) {
    .page_footer .container {
        max-width: 1440px;
        padding-right: 30px;
        padding-left: 30px;
    }
}
.page_footer-propositions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3px;
    margin: 20px 0;
    padding: 0 15px;
}
@media (min-width: 1024px) {
    .page_footer-propositions {
        flex-direction: row;
    }
}
@media (min-width: 1280px) {
    .page_footer-propositions {
        max-width: 1920px;
        margin-right: auto;
        margin-left: auto;
        padding: 0 30px;
    }
}
.page_footer-divider {
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
.page_footer-divider--long {
    width: calc(100% + 30px);
    margin: 0 -15px;
}
@media (min-width: 1280px) {
    .page_footer-divider {
        display: none;
    }
}
@media (min-width: 1280px) {
    .page_footer-divider--desktop {
        display: block;
    }
}
.page_footer-social {
    padding: 0 !important;
}
.page_footer-location {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    height: 51px;
    padding: 15px 0;
}
@media (min-width: 1280px) {
    .page_footer-location {
        justify-content: normal;
    }
}
.page_footer-location .country_switch-title {
    display: inline !important;
}
.page_footer-location .country_switch {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: underline;
    font-size: 0.9375rem;
}
.page_footer-location .language_switch {
    flex: 0 0 auto;
}
.page_footer-location .country_switch,
.page_footer-location .language_switch-text {
    text-decoration: underline;
    font-size: 0.9375rem;
}
.page_footer-location .dropdown-menu.country_switch_selector {
    position: fixed;
    top: 0% !important;
    z-index: 1020;
    border-radius: 0;
    transform: translate(100%, 0%) !important;
    left: unset;
}
@media (min-width: 1280px) {
    .page_footer-location .dropdown-menu.country_switch_selector {
        position: absolute;
        top: 100% !important;
        left: 0 !important;
        width: 320px;
        border-radius: 5px;
        transform: translate(0%, 20%) !important;
    }
}
.page_footer-location .dropdown-menu.country_switch_selector.show {
    left: 0;
    width: 100%;
    max-width: 100%;
    transform: translate(0%, 0%) !important;
}
@media (min-width: 420px) {
    .page_footer-location .dropdown-menu.country_switch_selector.show {
        right: 0;
        left: unset;
        width: 420px;
        min-width: 420px !important;
        max-width: 420px;
    }
}
@media (min-width: 1280px) {
    .page_footer-location .dropdown-menu.country_switch_selector.show {
        top: 0 !important;
        width: 320px;
        min-width: 320px !important;
        transform: translate(0%, -100%) !important;
    }
}
@media (min-width: 1280px) {
    .page_footer-location .country_switch_selector::before {
        left: 40%;
    }
}
@media (max-width: 1279.98px) {
    .page_footer-location .country_switch_selector-close {
        display: none;
    }
}
.page_footer-location .language_switch-list {
    top: unset !important;
    right: 0 !important;
    bottom: 0;
    width: 120px;
    transform: translateY(100%);
}
@media (min-width: 1280px) {
    .page_footer-location .language_switch-list {
        top: 0 !important;
        right: unset !important;
        bottom: unset !important;
        transform: translateY(-100%);
    }
}
@media (max-width: 1279.98px) {
    .page_footer-location .language_switch-list::before {
        top: -5px;
        right: 13px;
        left: unset;
        transform: rotate(180deg);
    }
}
.page_footer-location_title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    margin-right: 8px;
}
.page_footer-location_content {
    max-width: calc(100% - 100px);
}
.page_footer-entity {
    margin-bottom: 25px;
}
@media (min-width: 1280px) {
    .page_footer-entity {
        margin-bottom: 0;
    }
}
@media (max-width: 1919.98px) {
    .page_footer .row {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}
.shopping_with_us {
    z-index: 0;
    padding: 0 15px;
    background-color: #f8f8f8;
}
.shopping_with_us--visibility {
    visibility: hidden;
}
.shopping_with_us-list {
    display: flex;
    margin: 0;
    padding: 15px 0;
    background-color: #f8f8f8;
    list-style: none;
    font-size: 15px;
    line-height: 22px;
    text-transform: uppercase;
}
.shopping_with_us-item::after {
    content: "|";
    display: inline-block;
    margin-left: 15px;
    color: #ccc;
}
.shopping_with_us-item:last-child::after {
    content: "";
}
.shopping_with_us-slide {
    color: #f00;
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
}
.page_footer_proposition {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    padding-left: 20px;
    background-color: #f8f8f8;
}
@media (min-width: 375px) {
    .page_footer_proposition {
        padding-left: 13%;
    }
}
@media (min-width: 768px) {
    .page_footer_proposition {
        padding-left: 35%;
    }
}
@media (min-width: 1024px) {
    .page_footer_proposition {
        justify-content: center;
        padding-left: 0;
    }
}
.page_footer_proposition svg {
    width: 44px;
    height: 30px;
}
.page_footer_proposition-text {
    display: flex;
    flex-direction: column;
    line-height: 22px;
}
.page_footer_proposition-title {
    font-weight: 600;
}
.checkout-login .checkout_footer-heading {
    font-size: 14px;
}
.checkout-login .list-unstyled {
    font-size: 14px;
}
.footer_newsletter-input {
    height: auto;
    padding: 13px;
    border-color: #000;
    border-right-width: 0;
}
.footer_newsletter-input.is-invalid {
    border-right-width: 1px;
}
.footer_newsletter-input:focus {
    z-index: auto !important;
}
.footer_newsletter-btn, .footer_newsletter-error_message::after {
    min-width: 53px;
    padding: 0.5rem 14.5px;
    border-width: 1px;
    border-color: #000 !important;
    background: #000;
    color: #fff;
}
.footer_newsletter-error_message {
    justify-content: flex-start;
    order: 3;
    margin: 5px 0 0;
    font-size: 0.9375rem;
}
[lang=th] .footer_newsletter-error_message {
    font-size: 0.8203125rem;
    position: relative;
}
.form-control.is-invalid~.footer_newsletter-error_message {
    display: flex;
}
.footer_newsletter-error_message_th {
    position: relative;
}
.footer_newsletter-append {
    margin-left: 0;
}
.footer_newsletter_revamped {
    margin-top: 30px;
    margin-bottom: 30px;
}
@media (min-width: 1280px) {
    .footer_newsletter_revamped {
        margin-top: 0;
        margin-bottom: 70px;
    }
}
.footer_newsletter_revamped-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.newsletter {
    padding: 0 20px;
    background-color: transparent;
}
@media (min-width: 1280px) {
    .newsletter {
        padding: 0;
    }
}
.newsletter .invalid-feedback {
    position: absolute;
    top: 100%;
}
.newsletter_landing_page-banner {
    margin-top: 20px;
    padding: 125px 30px 120px;
}
@media (min-width: 1280px) {
    .newsletter_landing_page-banner {
        margin-bottom: 30px !important;
        padding: 100px;
    }
}
.newsletter_landing_page-banner_text {
    text-align: center;
}
.newsletter_landing_page-header {
    font-size: 36px;
    text-transform: uppercase;
}
@media (min-width: 1280px) {
    .newsletter_landing_page-header {
        font-size: 50px;
    }
}
.nl_join_the_list-wrapper {
    margin-bottom: 120px;
    padding-top: 40px;
    padding-bottom: 4px;
    text-align: center;
}
@media (min-width: 1280px) {
    .nl_join_the_list-wrapper {
        padding-top: 30px;
    }
}
.nl_join_the_list-header {
    text-transform: uppercase;
}
.nl_join_the_list-subtitle {
    font-size: 20px;
    padding-right: 25px;
    padding-left: 25px;
}
@media (min-width: 1280px) {
    .nl_join_the_list-subtitle {
        padding-right: 0;
        padding-left: 0;
    }
}
.newsletter_brand_profile {
    display: flex;
    flex-direction: column;
    margin: 60px 30px;
}
@media (min-width: 1280px) {
    .newsletter_brand_profile {
        flex-direction: row;
        margin: 105px 70px;
    }
}
@media (min-width: 1280px) {
    .newsletter_brand_profile-image {
        width: 50%;
        height: auto;
    }
}
.newsletter_brand_profile_about_block {
    padding: 25px 25px 10px;
    font-size: 15px;
    background-color: #f8f8f8;
}
@media (min-width: 1280px) {
    .newsletter_brand_profile_about_block {
        width: 50%;
        padding: 90px 30px 70px;
        font-size: 16px;
    }
}
.newsletter_brand_profile_about_block-header {
    text-transform: uppercase;
    font-size: 20px;
}
.newsletter_top_categories-header {
    font-size: 20px;
    text-align: center;
}
.page_footer-copyright {
    padding: 0;
    color: #999;
}
@media (min-width: 1280px) {
    .page_footer-copyright {
        margin-top: 20px;
    }
}
.page_footer-copyright .page_footer-menu {
    margin: 0;
    padding: 20px 5px 0;
}
@media (min-width: 768px) {
    .page_footer-copyright .page_footer-menu {
        padding-top: 13px;
    }
}
.page_footer-copyright_heading {
    display: none;
}
.page_footer-copyright_text {
    display: block;
    padding: 10px 0 15px;
    text-align: center;
}
.social-links {
    margin: 30px 0 0;
    padding: 0 0 30px;
}
@media (min-width: 1280px) {
    .social-links {
        margin: 0;
        padding: 0;
    }
}
.social-links svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
    fill: currentColor;
    display: block;
    color: #333;
}
.social-item {
    display: inline-block;
    margin: 0 15px 0 0;
    vertical-align: middle;
    font-weight: 700;
}
.social-item:first-child {
    display: none;
    margin-bottom: 7px;
}
@media (min-width: 1280px) {
    .social-item:first-child {
        display: block;
    }
}
@media (min-width: 375px) and (max-width: 767.98px) {
    .social-item:last-child {
        margin: 0;
    }
}
@media (min-width: 1280px) {
    .social-item {
        margin: 0 15px 10px 0;
    }
}
@media (min-width: 1280px) {
    .social-item--narrow-xl {
        margin-right: 15px;
    }
}
@media (min-width: 1280px) {
    :lang(fr) .social-item {
        margin-right: 10px;
    }
}
.newsletter_success-btn {
    width: auto;
    margin: 10px 0 15px;
    border: none;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .newsletter_success-btn {
        margin: 10px 0 20px;
    }
}
.newsletter_success-content {
    display: flex;
    align-items: center;
    max-width: 479px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
}
.newsletter_success-content .account_menu_modal-close.close {
    color: #ccc;
}
.newsletter_success-text {
    max-width: 275px;
}
@media (min-width: 768px) {
    .newsletter_success-text {
        max-width: 420px;
    }
}
.newsletter_success-icon {
    margin: 0 auto;
}
.newsletter_success-dialog {
    transform: translate(0, 0) !important;
    transition: transform 0s !important;
}
:lang(fr) .newsletter_success-btn {
    width: unset;
}
.success_icon {
    display: block;
    width: 50px;
    height: 50px;
    fill: #333;
}
.back_to_top {
    position: fixed;
    right: 22px;
    bottom: 85px;
    z-index: 999;
    display: none;
}
@media (min-width: 1280px) {
    .back_to_top {
        right: 24px;
        bottom: 80px;
    }
}
@media (max-width: 1279.98px) {
    .page_cart_show .back_to_top {
        bottom: 120px;
    }
}
.back_to_top-icon {
    width: 40px;
    height: 40px;
}
@media (max-width: 1279.98px) {
    .livechat-position .back_to_top {
        bottom: 176px;
    }
}
@media (max-width: 1279.98px) {
    .livechat-position-cart .back_to_top {
        bottom: 186px;
    }
}
.suggestions {
    align-content: flex-start;
    height: calc(100vh - 55px);
    height: calc(var(--app-height, 100vh) - 55px);
    margin: 0;
    overflow: auto;
    background-color: #f8f8f8;
    color: initial;
}
.suggestions .product-number {
    padding-top: 0;
}
@media (min-width: 768px) {
    .suggestions {
        height: calc(100vh - 106px);
        height: calc(var(--app-height, 100vh) - 106px);
    }
}
@media (min-width: 1280px) {
    .suggestions {
        flex-wrap: nowrap;
        max-width: 640px;
        height: auto;
        margin-right: auto;
        margin-left: auto;
        padding: 20px 31px;
        overflow: visible;
        background-color: #fff;
    }
}
@media (min-width: 1280px) {
    .suggestions--has_products {
        max-height: calc(var(--app-height, 100vh) - 65px);
    }
}
@media (max-width: 1023.98px) {
    .suggestions--open {
        overflow: hidden;
    }
}
.suggestions-full {
    width: 100%;
}
@media (min-width: 1280px) {
    .suggestions-full .suggestions-block:nth-child(n+4) {
        display: none;
    }
}
@media (min-width: 1280px) {
    .suggestions-single .suggestions-sep {
        display: none;
    }
    .suggestions-single .suggestions-block:nth-child(n+4) {
        display: none;
    }
}
.suggestions-block {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
}
@media (min-width: 1024px) {
    .suggestions-block {
        min-width: 280px;
        margin-bottom: 0;
        padding: 0;
    }
}
@media (min-width: 1280px) {
    .suggestions-block {
        min-width: 268px;
    }
}
@media (min-width: 1280px) {
    .suggestions-product_row {
        gap: 10px;
    }
}
.suggestions-sep {
    display: none;
}
@media (min-width: 1024px) {
    .suggestions-sep {
        position: relative;
        display: flex;
        flex-grow: 0;
        min-width: 41px;
    }
    .suggestions-sep::after {
        content: "";
        position: absolute;
        top: -20px;
        bottom: -20px;
        left: 20px;
        width: 1px;
        background-color: #000;
        opacity: 0.7;
    }
}
@media (min-width: 1280px) {
    .suggestions-sep::after {
        background-color: #f0f0f0;
    }
}
.suggestions-step {
    padding-top: 10px;
    padding-bottom: 10px;
}
@media (min-width: 1024px) {
    .suggestions-step_item:first-child .suggestions-step {
        padding-top: 0;
    }
}
.suggestions-value {
    display: block;
    max-width: 220px;
    margin-right: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.suggestions-content_img {
    margin-right: 10px;
}
.suggestions-wrapper {
    position: relative;
}
@media (min-width: 1280px) {
    .suggestions-wrapper {
        border-top: 1px solid #f8f8f8;
        overflow: auto;
    }
}
.suggestions-wrapper--mobile {
    display: none;
}
.suggestions-wrapper--mobile.sg-active {
    display: block;
}
.suggestions-heading {
    color: #999;
    text-transform: uppercase;
    padding: 15px 20px;
    background-color: #f8f8f8;
}
@media (min-width: 1024px) {
    .suggestions-heading {
        padding: 0 0 8px;
        border-bottom: 1px solid #ccc;
        background-color: transparent;
    }
}
@media (min-width: 1280px) {
    .suggestions-heading {
        padding: 0 0 10px;
        border-bottom: none;
    }
}
.suggestions-top_heading {
    padding: 0 0 5px;
    background-color: transparent;
}
@media (min-width: 1024px) {
    .suggestions-top_heading {
        padding: 0 0 8px;
        border-bottom: 1px solid #ccc;
    }
}
@media (min-width: 1280px) {
    .suggestions-top_heading {
        padding: 0 0 10px;
        border-bottom: none;
    }
}
.suggestions-items {
    margin: 5px 0 0;
}
.suggestions-item {
    margin: 15px 0 0;
    padding: 0 0 15px;
    border-bottom: 1px solid #f0f0f0;
}
.suggestions-item:last-child {
    border: 0;
}
.suggestions-item_info {
    padding-left: 0;
}
.suggestions-expanded_items {
    padding: 0 20px;
}
@media (min-width: 1024px) {
    .suggestions-expanded_items {
        padding: 15px 0 0;
    }
}
@media (min-width: 1280px) {
    .suggestions-expanded_items {
        padding: 0;
    }
}
.suggestions-expanded_item {
    display: flex;
    margin: 0;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.suggestions-expanded_item:last-child {
    border: 0;
}
@media (min-width: 1024px) {
    .suggestions-expanded_item {
        margin: 0 0 9px;
        padding: 0;
        border: 0;
    }
}
@media (max-width: 767.98px) {
    .suggestions-products_block, .suggestions-articles {
        flex: 1 1 100%;
    }
    .suggestions-products_block {
        order: 1;
        margin-bottom: 30px !important;
    }
    .suggestions-articles {
        order: 2;
    }
}
.header_search .suggestions-single .suggestions-sep {
    display: none;
}
.suggestions-needle {
    font-weight: 700;
    color: #000;
}
.suggestions-noresult_info {
    padding-top: 9px;
    color: #666;
}
.suggestions-noresult_info a {
    color: inherit;
}
.suggestions-noresult_line {
    padding: 9px 0;
}
@media (min-width: 1024px) {
    .suggestions-noresult_line {
        padding-top: 0;
    }
}
.suggestions-correction_value {
    font-weight: 700;
    text-decoration: underline;
}
@media (min-width: 1024px) {
    .suggestions-block {
        max-width: 320px;
    }
}
.suggestions-category_block {
    padding-top: 8px;
}
@media (min-width: 1024px) {
    .suggestions-category_block {
        padding-top: 0;
    }
}
@media (min-width: 1024px) {
    .suggestions--has_products .suggestions-category_block .suggestions-view_all_link {
        padding-top: 0;
    }
}
.suggestions-icon_go {
    width: 10px !important;
    height: 10px !important;
    color: #999;
    margin-right: 0 !important;
}
@media (max-width: 1023.98px) {
    .suggestions--long_term .suggestions-trending_heading {
        padding-top: 0;
    }
}
@media (min-width: 1024px) {
    .suggestions-image_wrapper {
        max-width: 85px;
    }
}
@media (min-width: 1280px) {
    .suggestions-image_wrapper {
        max-width: 100px;
    }
}
.suggestions-image {
    width: 75px;
    max-width: 100%;
    height: auto;
}
@media (min-width: 1280px) {
    .suggestions-image {
        width: 100px;
    }
}
.suggestions-image_giftcard {
    border-radius: 5px;
}
.suggestions-product_title {
    margin-bottom: 1px;
}
.suggestions-product_badge {
    transform: translateY(-5px);
}
.suggestions .price,
.suggestions .price .sales {
    font-size: 0.9375rem;
    font-weight: 400;
}
.suggestions .price .strike-through {
    margin-right: 3px;
    color: #000;
}
.suggestions .price .sales-discount {
    color: #c00;
}
.suggestions .discount_percentage {
    text-align: left;
}
.suggestions-products_block {
    min-width: 285px;
    padding-top: 0;
}
@media (min-width: 1024px) {
    .suggestions-products_block {
        min-width: 280px;
        padding-right: 20px;
        padding-left: 20px;
    }
}
@media (min-width: 1024px) {
    .suggestions-products_items {
        margin-top: -10px;
        margin-right: -20px;
        margin-left: -20px;
    }
}
@media (min-width: 1280px) {
    .suggestions-products_items {
        margin-right: 0;
    }
}
.suggestions-products_top_view_all {
    border-bottom: 1px solid #f0f0f0;
}
.suggestions-products_top_view_all .suggestions-icon_go {
    display: none;
}
@media (min-width: 1024px) {
    .suggestions-products_top_view_all {
        margin-bottom: 4px;
        border-color: #ccc;
        text-transform: none;
    }
}
.suggestions-products_view_all {
    margin-bottom: 6px;
}
.suggestions-recent_clear {
    font-size: 11px;
    padding: 0 21px 0 0;
}
.suggestions-recent_clear_all {
    position: absolute;
    top: 0;
    right: 0;
}
.suggestions .suggestions-recent_clear_item {
    text-decoration: none;
}
.suggestions .suggestions-recent_clear_item:hover {
    text-decoration: underline;
}
.suggestions-recent_clear_item_txt {
    line-height: 1.4;
    color: #666;
}
.suggestions-recent_clear_sign {
    top: 49%;
    right: 1px;
}
.suggestions-recent .suggestions-recent_clear_sign {
    right: 0;
}
.modal-background {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
}
.modal-background::after {
    content: "";
}
input[placeholder] {
    text-overflow: ellipsis;
}
.hide-order-discount {
    display: none !important;
}
.hide-shipping-discount {
    display: none !important;
}
.error-messaging {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
}
.error-message {
    margin-bottom: 20px;
    background-color: rgba(255, 0, 0, 0.1);
    color: #000;
}
.error-message-text {
    margin-bottom: 0;
}
@media (max-width: 1279.98px) {
    .error-message {
        margin-bottom: 20px;
    }
}
.h-show {
    display: block;
}
.h-show--flex {
    display: flex;
}
.h-hide {
    display: none;
}
@media (min-width: 1280px) {
    .container_center_desktop {
        max-width: 1220px;
        margin-bottom: 0;
        padding: 0;
    }
}
@media (max-width: 1279.98px) {
    .container_full_width--lg_down {
        width: 100%;
        max-width: none;
    }
}
.collapser {
    overflow: hidden;
}
.collapser-btn {
    display: inline-block;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
}
.collapser-is_hidden p:last-child {
    margin-bottom: 0;
}
.collapser--new_line .collapser-btn {
    display: block;
}
.warning_msg {
    display: flex;
    padding: 20px;
    background-color: #ffe5e5;
}
.warning_msg.cart_detail_msg {
    margin-bottom: 20px;
}
.warning_msg.cart_detail_msg--top {
    margin-top: -3px;
}
.warning_msg.mini_cart_msg {
    margin-bottom: 10px;
    padding: 15px 20px;
    border-bottom: 1px solid #ccc;
}
.warning_msg-icon {
    margin-right: 10px;
}
.warning_msg--modal {
    margin: -15px -20px 15px;
    padding-top: 40px;
    border-radius: 5px;
}
.is-mobile_app .u-mobile-hide {
    display: none;
}
@keyframes placeHolderShimmer {
    0% {
        background-position: -400px 0;
    }
    100% {
        background-position: 400px 0;
    }
}
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}
.map-location {
    width: 100%;
    height: 300px;
    margin-top: 20px;
    margin-bottom: 30px;
}
@supports (-webkit-touch-callout: none) {
  @media (max-width: 1023.98px) {
        input,
textarea {
            font-size: 16px !important;
        }
  }
}
.modal-body {
    padding-bottom: 0;
}
.modal-body_title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}
.country_switch_dialog .content-asset a {
    text-decoration: underline;
}
.country_switch_dialog .content-asset a:hover {
    text-decoration: none;
}
.country_switch_dialog .content-asset a:hover {
    text-decoration: underline;
}
.country_switch_dialog_footer {
    flex-direction: column;
    padding: 0 0 1rem;
    border: none;
}
.country_switch_dialog_footer-link {
    text-decoration: underline;
}
.country_switch_dialog_footer-link:hover {
    text-decoration: none;
}
.country_switch_dialog_footer-link:hover {
    text-decoration: underline;
}
.language_selector {
    margin: 10px 25px;
}
.language_selector-title {
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}
.language_selector-content {
    padding-bottom: 30px;
}
.language_selector-item {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    line-height: 40px;
    text-align: center;
}
.wishlist_confirm_modal {
    right: 0;
    left: 0;
    z-index: 1061;
}
.wishlist_confirm_modal-body {
    padding: 0 0 0 35px;
    text-align: start;
}
.wishlist_confirm_modal-body .btn-link {
    color: #fff;
}
.wishlist_confirm_modal-body .modal-body_text {
    font-size: 15px;
    line-height: 23px;
}
.wishlist_confirm_modal-name {
    display: inline;
    font-weight: 700;
}
.wishlist_confirm_modal-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 18px;
    fill: #fff;
}
.wishlist_confirm_modal-dialog {
    margin: 0;
    padding-bottom: 59px;
    vertical-align: bottom;
}
.wishlist_confirm_modal-content {
    position: absolute;
    bottom: 0;
    left: 100%;
    width: 100%;
    max-width: 100%;
    padding: 15px 41px 15px 14px;
    border: none;
    border-radius: 0;
    background-color: #333;
    color: #fff;
}
@media (min-width: 768px) {
    .wishlist_confirm_modal-content {
        padding: 15px 44px 15px 30px;
    }
}
.wishlist_confirm_modal-content .close {
    top: 15px;
    right: 7px;
}
.wishlist_confirm_modal-link {
    color: #fff;
}
.wishlist_confirm_modal-link:hover {
    color: #fff;
}
.wishlist_auth_modal-content,
.checkout_auth_modal-content {
    max-width: 335px !important;
    padding: 30px;
    text-align: center;
}
@media (min-width: 768px) {
    .wishlist_auth_modal-content,
.checkout_auth_modal-content {
        max-width: 350px !important;
    }
}
@media (min-width: 768px) {
    .wishlist_auth_modal-content--extended,
.checkout_auth_modal-content--extended {
        max-width: 477px !important;
    }
}
.wishlist_auth_modal-registration, .wishlist_auth_modal-registration--wishlist, .checkout_auth_modal-registration, .checkout_auth_modal-registration--wishlist {
    width: 100%;
    max-width: 478px !important;
    max-height: 100%;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.wishlist_auth_modal-registration_pdp,
.checkout_auth_modal-registration_pdp {
    padding-bottom: 30px;
}
.wishlist_auth_modal-header,
.checkout_auth_modal-header {
    justify-content: center;
    padding: 0;
    border-bottom: none;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}
.wishlist_auth_modal-text,
.checkout_auth_modal-text {
    margin-block: 20px;
}
.wishlist_auth_modal-login_title,
.checkout_auth_modal-login_title {
    text-transform: uppercase;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}
.condition_modal-content {
    max-width: 335px;
    padding: 15px 20px 27px;
}
@media (min-width: 768px) {
    .condition_modal-content {
        max-width: 375px;
    }
}
.condition_modal-states {
    display: block;
    font-weight: 700;
}
@media (min-width: 768px) {
    .condition_modal-states {
        display: inline;
    }
}
.account_delete-link {
    text-align: center;
}
.account_delete-form {
    max-width: 100%;
}
@media (min-width: 768px) {
    .account_delete-form {
        max-width: 460px;
    }
}
.account_delete-title {
    text-transform: uppercase;
    margin-top: 10px;
}
.account_delete-status {
    color: #f00;
}
.account_delete-text p {
    margin-bottom: 20px;
}
.account_delete-footer {
    padding-top: 15px;
}
.account_delete-footer-button {
    padding: 0 10px !important;
}
.modal_edit-content {
    max-width: 601px !important;
}
.modal_edit-header {
    display: block;
    margin: 0 40px;
    padding: 14px 0 0;
    font-size: 1.125rem;
    text-transform: uppercase;
    text-align: center;
    border-bottom: none;
    font-weight: 700;
}
.modal_edit-body {
    padding-top: 12px;
    padding-bottom: 25px;
}
@media (min-width: 768px) {
    .modal_edit-body {
        padding: 13px 67px 20px;
    }
}
.modal_edit-row {
    padding-bottom: 6px;
}
@media (min-width: 768px) {
    .modal_edit-row {
        padding-bottom: 8px;
    }
}
.modal_edit-label {
    padding-bottom: 3px;
}
@media (min-width: 768px) {
    .modal_edit-label {
        width: 160px;
        padding-bottom: 0;
        line-height: 40px;
    }
}
.modal_edit-note {
    padding-top: 14px;
    padding-bottom: 27px;
}
@media (min-width: 768px) {
    .modal_edit-note {
        padding-top: 9px;
        line-height: 24px;
    }
}
@media (min-width: 768px) {
    .modal_edit-select {
        width: 305px;
    }
}
@media (min-width: 768px) {
    .modal_edit-select_group {
        width: 112px;
    }
}
@media (max-width: 767.98px) {
    .modal_edit-delivery_day {
        min-width: 59px;
    }
}
@media (max-width: 767.98px) {
    .modal_edit-delivery_year {
        min-width: 73px;
    }
}
.modal_edit .form_separator::after {
    right: 0;
    border-color: #ccc;
    transform: rotate(18deg);
}
.modal_edit-btn {
    width: 100%;
}
@media (min-width: 768px) {
    .modal_edit-btn {
        width: auto;
    }
}
.modal_edit-feedback {
    width: 100%;
    margin-top: -10px;
    margin-bottom: 8px;
    line-height: 18px;
}
@media (min-width: 768px) {
    .modal_edit-feedback {
        width: 66%;
        margin-left: 160px;
    }
}
@media (min-width: 1280px) {
    .modal_edit-feedback {
        width: 73%;
    }
}
.modal_message-content,
.modal_acc-content {
    max-width: 475px !important;
}
.modal_message-body {
    padding: 20px 30px;
}
.modal_acc-body {
    padding: 20px 20px 30px;
}
.modal_acc-text {
    padding-bottom: 30px;
}
.modal_acc-btn_row {
    margin-right: -10px;
    margin-left: -10px;
}
@media (min-width: 768px) {
    .modal_acc-btn_row {
        margin-right: -15px;
        margin-left: -15px;
    }
}
.modal_acc-btn_col {
    padding-right: 10px;
    padding-left: 10px;
}
@media (min-width: 768px) {
    .modal_acc-btn_col {
        padding-right: 15px;
        padding-left: 15px;
    }
}
.edit_delivery_modal-content {
    max-width: 335px !important;
}
@media (min-width: 768px) {
    .edit_delivery_modal-content {
        max-width: 394px !important;
    }
}
.edit_delivery_modal-body {
    padding: 20px 25px 30px;
}
.edit_delivery_modal-text {
    max-width: 250px;
    margin: 0 auto 20px;
    line-height: 24px;
}
@media (min-width: 1280px) {
    .timeslot_edit-body {
        padding-right: 20px;
        padding-left: 20px;
    }
}
.timeslot_edit .modal_edit-header:lang(ja) {
    font-size: 16px;
}
@media (min-width: 1280px) {
    .timeslot_edit .modal_edit-header:lang(ja) {
        font-size: 18px;
    }
}
.timeslot_edit .modal_edit-body:lang(ja) {
    font-size: 14px;
}
.timeslot_edit .modal_edit-note:lang(ja) {
    font-size: 14px;
}
.timeslot_edit .modal_edit-select_group .form-control:lang(ja) {
    font-size: 14px;
}
@media (min-width: 1280px) {
    .confirmation_delete-dialog {
        max-width: 476px !important;
    }
}
.confirmation_delete-body {
    padding: 40px 20px 15px;
}
.confirmation_delete-title {
    margin-bottom: 20px;
}
.confirmation_delete-btn {
    width: 100%;
    max-width: 132px;
    margin: 0 15px 15px;
}
.confirmation_delete-btn--registered_remove {
    width: 85%;
}
@media (min-width: 768px) {
    .confirmation_delete-btn--registered_remove {
        width: 50%;
    }
}
.confirmation_delete-btn_wishlist {
    width: 85%;
}
@media (min-width: 768px) {
    .confirmation_delete-btn_wishlist {
        width: 50%;
    }
}
.confirmation_delete-product_title {
    font-size: 30px;
    font-weight: 700;
}
@media (min-width: 768px) {
    .confirmation_delete-product_title {
        font-size: 35px;
    }
}
.product_info-image {
    max-width: 120px !important;
}
.product_info-wrap {
    max-width: 85%;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .product_info-wrap {
        max-width: 50%;
    }
}
.modal-backdrop.hide {
    opacity: 0;
}
.swatch-circle-beige {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #f5f5dc;
    position: relative;
    display: block;
}
.swatch-circle-beige.disabled {
    opacity: 0.2;
}
.swatch-filter-beige {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #f5f5dc;
    position: relative;
    display: block;
    background-color: #f5f5dc;
}
.swatch-filter-beige.disabled {
    opacity: 0.2;
}
.swatch-circle-black {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #000;
    position: relative;
    display: block;
}
.swatch-circle-black.disabled {
    opacity: 0.2;
}
.swatch-filter-black {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #000;
    position: relative;
    display: block;
    background-color: #000;
}
.swatch-filter-black.disabled {
    opacity: 0.2;
}
.swatch-circle-blue {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #06f;
    position: relative;
    display: block;
}
.swatch-circle-blue.disabled {
    opacity: 0.2;
}
.swatch-filter-blue {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #06f;
    position: relative;
    display: block;
    background-color: #06f;
}
.swatch-filter-blue.disabled {
    opacity: 0.2;
}
.swatch-circle-brown {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #a52a2a;
    position: relative;
    display: block;
}
.swatch-circle-brown.disabled {
    opacity: 0.2;
}
.swatch-filter-brown {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #a52a2a;
    position: relative;
    display: block;
    background-color: #a52a2a;
}
.swatch-filter-brown.disabled {
    opacity: 0.2;
}
.swatch-circle-green {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #090;
    position: relative;
    display: block;
}
.swatch-circle-green.disabled {
    opacity: 0.2;
}
.swatch-filter-green {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #090;
    position: relative;
    display: block;
    background-color: #090;
}
.swatch-filter-green.disabled {
    opacity: 0.2;
}
.swatch-circle-grey {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #8f979d;
    position: relative;
    display: block;
}
.swatch-circle-grey.disabled {
    opacity: 0.2;
}
.swatch-filter-grey {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #8f979d;
    position: relative;
    display: block;
    background-color: #8f979d;
}
.swatch-filter-grey.disabled {
    opacity: 0.2;
}
.swatch-circle-navy {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #000080;
    position: relative;
    display: block;
}
.swatch-circle-navy.disabled {
    opacity: 0.2;
}
.swatch-filter-navy {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #000080;
    position: relative;
    display: block;
    background-color: #000080;
}
.swatch-filter-navy.disabled {
    opacity: 0.2;
}
.swatch-circle-orange {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #ffa500;
    position: relative;
    display: block;
}
.swatch-circle-orange.disabled {
    opacity: 0.2;
}
.swatch-filter-orange {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #ffa500;
    position: relative;
    display: block;
    background-color: #ffa500;
}
.swatch-filter-orange.disabled {
    opacity: 0.2;
}
.swatch-circle-pink {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #fe249a;
    position: relative;
    display: block;
}
.swatch-circle-pink.disabled {
    opacity: 0.2;
}
.swatch-filter-pink {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #fe249a;
    position: relative;
    display: block;
    background-color: #fe249a;
}
.swatch-filter-pink.disabled {
    opacity: 0.2;
}
.swatch-circle-purple {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #800080;
    position: relative;
    display: block;
}
.swatch-circle-purple.disabled {
    opacity: 0.2;
}
.swatch-filter-purple {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #800080;
    position: relative;
    display: block;
    background-color: #800080;
}
.swatch-filter-purple.disabled {
    opacity: 0.2;
}
.swatch-circle-red {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #f00;
    position: relative;
    display: block;
}
.swatch-circle-red.disabled {
    opacity: 0.2;
}
.swatch-filter-red {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #f00;
    position: relative;
    display: block;
    background-color: #f00;
}
.swatch-filter-red.disabled {
    opacity: 0.2;
}
.swatch-circle-white {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #fff;
    position: relative;
    display: block;
}
.swatch-circle-white.disabled {
    opacity: 0.2;
}
.swatch-filter-white {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #fff;
    position: relative;
    display: block;
    background-color: #fff;
}
.swatch-filter-white.disabled {
    opacity: 0.2;
}
.swatch-circle-yellow {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #ff0;
    position: relative;
    display: block;
}
.swatch-circle-yellow.disabled {
    opacity: 0.2;
}
.swatch-filter-yellow {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #ff0;
    position: relative;
    display: block;
    background-color: #ff0;
}
.swatch-filter-yellow.disabled {
    opacity: 0.2;
}
.swatch-circle-miscellaneous {
    position: relative;
    display: block;
    width: 2.5em;
    height: 2.5em;
    border: 0.063em solid rgba(0, 0, 0, 0.3);
    border-radius: 1.25em;
    background: linear-gradient(0deg, #821e91 0, #821e91 25%, #edd134 25%, yellow 50%, #edd134 50%, #59ba00 50%, #59ba00 76%, #111 76%, #111 100%), linear-gradient(0deg, #0e5cd1 0, #0e5cd1 50%, #e20b0b 50%, #e20b0b 100%);
    background-repeat: repeat-y, repeat;
    background-size: 50% 100%, 100% 100%;
    transform: rotate(35deg);
}
.swatch-circle-miscellaneous.disabled {
    opacity: 0.2;
}
.swatch-circle-miscellaneous.selected::after {
    transform: rotate(-35deg);
}
.product-name {
    margin: 0 0 3px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: none;
    text-align: left;
}
@media (min-width: 1280px) {
    .product-name--xl_large {
        font-size: 18px;
    }
}
.product-name:lang(ja) {
    font-size: 16px;
}
@media (min-width: 1280px) {
    .product-name:lang(ja) {
        font-size: 18px;
    }
}
.product-number {
    padding-top: 6px;
    padding-bottom: 6px;
    color: #999;
    font-size: 9px;
}
[dir=rtl] .product-number {
    display: flex;
}
.product-badge {
    margin: 0 0 6px;
}
[dir=rtl] .product-badge {
    display: table;
}
.product-installment_info, .product-installment_name {
    color: #666;
}
div.quantity {
    float: right;
    width: 25%;
    padding: 0;
}
.quantity-feedback {
    position: absolute;
    width: 157px;
    height: 57px;
    text-align: left !important;
    font-family: "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    font-style: normal;
    margin-left: 10px;
}
@media (min-width: 768px) {
    .quantity-feedback {
        display: block;
        width: 180px;
        height: 37px;
        margin-left: 25px;
        line-height: 20px;
    }
}
@media (max-width: 1023.98px) {
    .quantity-form {
        display: flex;
        align-items: center;
        gap: 2px;
    }
}
.cart-and-ipay {
    text-align: center;
}
@media (max-width: 374.98px) {
    .cart-and-ipay .btn {
        display: block;
        width: 98%;
        margin: 1%;
    }
}
.simple-quantity {
    margin-top: 1em;
}
.collection_title {
    color: #666;
    font-size: 0.8203125rem;
    text-transform: uppercase;
}
.badge:not(.d-none)+.collection_title {
    margin-top: 5px;
}
@media (min-width: 768px) {
    .badge:not(.d-none)+.collection_title {
        margin-top: 10px;
    }
}
.attribute-title {
    display: flex;
    margin-bottom: 8px;
}
.attribute-name {
    margin-bottom: 0;
    font-weight: 400;
}
.attribute-values {
    display: flex;
    flex-wrap: wrap;
}
.attribute-values--swatches {
    margin-right: -15px;
}
.attribute-hidden {
    display: none;
}
.attribute-text_value {
    font-weight: 700;
}
.attribute-size_arrow--pdp.icon {
    width: 10px;
    height: 10px;
    color: #999;
    margin-left: 5px;
}
[dir=rtl] .attribute-size_arrow--pdp.icon {
    transform: rotate(180deg);
}
.attribute-conversion_size_label {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #999;
}
.attribute-swatch_value {
    margin-right: 15px;
}
@media (min-width: 768px) {
    .findInStore_modal-product_detail .attribute-swatch_value {
        margin-right: 14px;
    }
}
.attribute-size_error {
    display: none;
    font-weight: 700;
    color: #f00;
}
.attribute-value_link:hover {
    text-decoration: none;
}
.attribute-availability {
    margin-left: 15px;
    line-height: initial;
}
.attribute-size_guide {
    margin-left: auto;
}
[dir=rtl] .attribute-size_guide {
    margin-right: auto;
    margin-left: 0;
}
.swatch-value {
    position: relative;
}
.swatch-circle {
    margin-bottom: 6px;
    border-radius: 10px;
    background: #fff;
    width: 20px;
    height: 20px;
}
.swatch-circle::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 1px solid #fff;
    border-radius: 50%;
}
.swatch-circle.selected::after {
    border-radius: 50%;
}
.swatch-circle.unselectable {
    opacity: 0.8;
}
.swatch-rectangle {
    min-width: 55px;
    height: 30px;
    margin-bottom: 5px;
    padding: 0.5em;
    border-radius: 5px;
    line-height: 1;
}
@media (min-width: 1280px) {
    .swatch-rectangle {
        min-width: 53px;
    }
}
.swatch-rectangle.selected::after {
    border-radius: 5px;
}
.swatch-rectangle.unselectable {
    color: #ccc;
}
.swatch-rectangle.unselectable::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='100%25' x2='100%25' y2='0' stroke='%23ccc' stroke-width='1px' /%3E%3C/svg%3E");
}
.swatch-circle, .swatch-rectangle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    background-size: 100%;
    cursor: pointer;
    transition: border-color 0.2s ease-in-out;
}
.swatch-circle:hover, .swatch-rectangle:hover {
    border-color: #000;
}
.swatch-circle.selected, .swatch-rectangle.selected {
    border-color: transparent;
}
.swatch-circle.selected::after, .swatch-rectangle.selected::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    border: 2px solid #000;
}
.swatch-circle--static {
    width: 20px;
    height: 20px;
    margin-bottom: 0;
}
.swatch-circle--static.selected {
    border-color: #000;
}
.swatch-circle--static.selected::after {
    display: none;
}
@media (max-width: 654.98px) {
    .attribute-values--rectangle {
        margin: 0 -7.5px;
    }
}
@media (min-width: 355px) and (max-width: 654.98px) {
    .attribute-values--rectangle {
        margin: 0 -2.1%;
    }
}
@media (min-width: 375px) and (max-width: 654.98px) {
    .attribute-values--rectangle {
        margin: 0 -7.5px;
    }
}
@media (max-width: 654.98px) {
    .attribute-value_link--rectangle {
        padding: 0 7.5px;
    }
}
@media (min-width: 355px) and (max-width: 654.98px) {
    .attribute-value_link--rectangle {
        padding: 0 7.5px;
        text-align: center;
    }
}
@media (min-width: 375px) and (max-width: 654.98px) {
    .attribute-value_link--rectangle {
        padding: 0 7.5px;
    }
}
@media (max-width: 654.98px) {
    .swatch-rectangle {
        display: flex;
        width: 100%;
        margin-right: 0;
    }
}
@media (min-width: 355px) and (max-width: 654.98px) {
    .swatch-rectangle {
        display: inline-flex;
        width: auto;
        min-width: 0;
    }
}
@media (min-width: 375px) and (max-width: 654.98px) {
    .swatch-rectangle {
        display: flex;
        width: auto;
        min-width: 55px;
    }
}
.geo_ip-body {
    padding-bottom: 20px;
}
@media (max-width: 767.98px) {
    .geo_ip-body {
        padding: 20px 0 0;
    }
}
.geo_ip-content {
    max-width: 804px;
}
.geo_ip-btn {
    width: 100%;
    white-space: normal;
}
.geo_ip-btn--current {
    margin-top: 10px;
}
.geo_ip-text {
    margin: 20px 17px;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}
@media (min-width: 768px) {
    .geo_ip-text {
        font-size: 36px;
        line-height: 40px;
    }
}
.geo_ip-success_text {
    margin-top: 20px;
    margin-bottom: 20px;
}
.geo_ip-footer_text, .geo_ip-contact_us, .geo_ip-contact_us>a {
    color: #666;
}
.geo_ip-footer_text {
    margin: 0 24px;
}
.geo_ip-contact_us {
    margin-bottom: 20px;
    padding: 20px 28px 0;
    font-size: 12px;
}
@media (min-width: 768px) {
    .geo_ip-contact_us {
        font-size: 0.9375rem;
    }
}
.geo_ip-countries {
    padding-right: 0;
    padding-left: 0;
}
@media (min-width: 768px) {
    .geo_ip-countries {
        margin-bottom: 0;
        padding-right: 20px;
        padding-left: 20px;
    }
}
.geo_ip-success_text~.geo_ip-countries {
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .geo_ip-success_text~.geo_ip-countries {
        margin-bottom: 0;
    }
}
.geo_ip-currency {
    white-space: nowrap;
}
.geo_ip-country_top {
    margin-bottom: 15px;
}
@media (min-width: 768px) {
    .geo_ip-country_top {
        margin-bottom: 0;
    }
}
.geo_ip[dir=rtl] .geo_ip-country_bottom {
    order: 0 !important;
}
@media (min-width: 768px) {
    .geo_ip[dir=rtl] .geo_ip-country_bottom {
        order: 1 !important;
    }
}
.geo_ip[dir=rtl] .geo_ip-country_top {
    order: 1 !important;
}
@media (min-width: 768px) {
    .geo_ip[dir=rtl] .geo_ip-country_top {
        order: 0 !important;
    }
}
.geo_ip-block_success {
    max-width: 472px !important;
    margin: auto;
    padding: 24px 16px 10px;
    line-height: 24px;
}
@media (min-width: 768px) {
    .geo_ip-block_success {
        padding: 30px 60px 0;
    }
}
.geo_ip-locale-selector {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    color: #333;
}
.geo_ip-locale-dropdown {
    padding-right: 15px;
    border: none;
    background: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 3.75032C10.4999 3.60828 10.4594 3.46919 10.3832 3.34924C10.307 3.22928 10.1983 3.1334 10.0697 3.07274C9.94108 3.01208 9.79786 2.98914 9.65671 3.0066C9.51555 3.02405 9.38225 3.08117 9.27234 3.17132L5.4852 6.27832L1.71509 3.17232C1.56088 3.05129 1.36538 2.99531 1.17038 3.01634C0.975377 3.03737 0.796352 3.13375 0.671576 3.28487C0.546799 3.43599 0.486174 3.62987 0.502659 3.82504C0.519145 4.02022 0.611435 4.20121 0.759797 4.32932L5.00655 7.82832C5.14097 7.93876 5.30964 7.99915 5.4837 7.99915C5.65777 7.99915 5.82643 7.93876 5.96085 7.82832L10.2256 4.32832C10.3113 4.25823 10.3804 4.17004 10.4278 4.07009C10.4752 3.97014 10.4999 3.86093 10.5 3.75032Z' fill='%23333333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right;
    background-position-y: 7px;
    background-size: 11px;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    text-decoration: underline;
    color: #333;
}
.country_block {
    margin: auto;
    padding: 30px 20px;
    background-color: #f9f9f9;
}
.country_block-list {
    margin-left: 20px;
    word-break: break-word;
}
@media (min-width: 768px) {
    .country_block {
        max-width: 352px;
        height: 100%;
    }
}
.country_block-top {
    flex-direction: row;
    margin-bottom: 10px;
}
@media (min-width: 768px) {
    .country_block-top {
        flex-direction: column;
        margin-bottom: 0;
    }
}
.country_block-image {
    max-width: 60px;
    max-height: 40px;
    margin-right: 10px;
    filter: drop-shadow(3px 3px 6px #ccc);
}
@media (min-width: 768px) {
    .country_block-image {
        align-self: center;
        max-width: 120px;
        min-height: 80px;
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.country_block-title {
    display: block;
    align-self: center;
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .country_block-title {
        align-self: flex-start;
    }
}
.country_block_select {
    margin: auto;
    padding: 20px 15px;
    background-color: #f9f9f9;
}
@media (min-width: 768px) {
    .country_block_select {
        max-width: 536px;
        padding: 30px 60px 20px;
    }
}
html[dir=rtl] .geo_ip[dir=ltr] .country_block-list {
    margin-right: 20px;
    margin-left: 0;
}
html[dir=rtl] .geo_ip[dir=ltr] .close {
    right: auto;
    left: 10px;
}
html[dir=rtl] .geo_ip[dir=ltr] .text-left {
    text-align: right !important;
}
html[dir=rtl] .geo_ip[dir=ltr] .pl-0 {
    padding-right: 0 !important;
}
.menu-toggleable--left.navbar-toggleable {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -150%;
    display: block;
    max-width: 100%;
    transition: left 0.7s cubic-bezier(1, 0, 0.5, 1);
}
.menu-toggleable--left.navbar-toggleable.in {
    left: 0;
    margin: 0;
}
.menu-toggleable--left.navbar-toggleable {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -150%;
    display: block;
    max-width: 100%;
    transition: left 0.7s cubic-bezier(1, 0, 0.5, 1);
}
.menu-toggleable--left.navbar-toggleable.in {
    left: 0;
    margin: 0;
}
.menu-toggleable--left.navbar-toggleable {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -150%;
    display: block;
    max-width: 100%;
    transition: left 0.7s cubic-bezier(1, 0, 0.5, 1);
}
.menu-toggleable--left.navbar-toggleable.in {
    left: 0;
    margin: 0;
}
.menu-toggleable--left.navbar-toggleable {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -150%;
    display: block;
    max-width: 100%;
    transition: left 0.7s cubic-bezier(1, 0, 0.5, 1);
}
.menu-toggleable--left.navbar-toggleable.in {
    left: 0;
    margin: 0;
}
.menu-toggleable--left.navbar-toggleable {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -150%;
    display: block;
    max-width: 100%;
    transition: left 0.7s cubic-bezier(1, 0, 0.5, 1);
}
.menu-toggleable--left.navbar-toggleable.in {
    left: 0;
    margin: 0;
}
.menu-toggleable--left.navbar-toggleable {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -150%;
    display: block;
    max-width: 100%;
    transition: left 0.7s cubic-bezier(1, 0, 0.5, 1);
}
.menu-toggleable--left.navbar-toggleable.in {
    left: 0;
    margin: 0;
}
.menu-toggleable.navbar-toggleable {
    position: fixed;
    top: 0;
    right: -150%;
    bottom: 0;
    left: unset;
    display: block;
    width: 100%;
    transition: right 0.5s cubic-bezier(0, 1, 0.5, 1);
}
.menu-toggleable.navbar-toggleable.in {
    right: 0;
    margin: 0;
}
@media (min-width: 420px) {
    .menu-toggleable.navbar-toggleable {
        width: 420px;
        max-width: 100%;
    }
}
@media (min-width: 1280px) {
    .menu-toggleable.navbar-toggleable {
        left: -150%;
        width: 100%;
        transition: left 0.5s cubic-bezier(0, 1, 0.5, 1);
    }
    .menu-toggleable.navbar-toggleable.in {
        left: 0;
    }
}
.main-menu {
    background-color: #fff;
}
.site_nav_list .blvck_menu .nav-link:hover {
    cursor: url("../images/blvck_single_rose.png") 16 16, auto;
}
@media (min-width: 1280px) {
    .site_nav_list .holiday_menu .nav-link {
        padding-right: 15px !important;
    }
    .site_nav_list .holiday_menu:hover .nav-link {
        background-image: url("../images/holiday-menu-ribbon.svg") !important;
        background-repeat: no-repeat;
        background-position: left 10px bottom -6px;
        background-size: cover;
    }
}
.blvck_menu-dropdown:hover {
    cursor: url("../images/blvck_single_rose.png") 16 16, auto;
}
.blvck_menu-dropdown a:hover {
    cursor: url("../images/blvck_single_rose.png") 16 16, auto !important;
}
.navbar.bg-inverse {
    padding: 0;
    background-color: transparent !important;
}
@media (min-width: 1280px) {
    .navbar.bg-inverse .navbar-nav .nav-link {
        padding: 0 5px;
        padding: 0 clamp(5px, 0.55vw, 15px);
        white-space: nowrap;
        line-height: 36px;
    }
}
@media (min-width: 1280px) and (min-width: 1280px) {
    .navbar.bg-inverse .navbar-nav .nav-link {
        line-height: 39px;
    }
}
.nav-item.nav_sale .nav-link:hover,
.nav-item.nav_sale .nav-link:focus,
.nav-item.nav_sale.show .nav-link {
    color: #c00;
}
.nav-item.nav_magenta .nav-link:hover,
.nav-item.nav_magenta .nav-link:focus,
.nav-item.nav_magenta.show .nav-link {
    color: #a6192e;
}
.main-menu.menu-toggleable {
    z-index: 4;
    background-color: transparent;
}
.multilevel-dropdown .dropdown-menu {
    top: 100%;
    border: 0;
    border-radius: 0;
}
.multilevel-dropdown .navbar>.close-menu>.back {
    display: none;
}
.multilevel-dropdown .dropdown-item .dropdown-link {
    display: block;
}
.multilevel-dropdown .dropdown-item.top-category>.nav-link {
    padding-left: 0;
}
.menu-toggleable .menu-group {
    flex: 0 0 100%;
}
.menu-toggleable li>.close-menu {
    margin-right: 0;
    margin-left: 0;
}
.menu-toggleable .bg-inverse {
    background-color: #fff !important;
    color: #222;
}
.menu-toggleable.closing {
    right: -100% !important;
    transition: right 0.3s cubic-bezier(1, 0, 0.5, 1);
}
.menu-toggleable.closing .menu-group {
    visibility: hidden;
}
.menu-toggleable.closing .navbar-nav {
    flex-direction: column;
}
@media (min-width: 1280px) {
    .menu-toggleable.closing {
        left: -100% !important;
    }
}
@media (max-width: 1023.98px) {
    .menu-toggleable.in {
        right: 0;
        margin-right: 1.25em;
        /* 20/16 */
    }
}
.menu-toggleable.in .site_nav-container::after {
    height: 50px !important;
}
.menu-toggleable.in .dropdown {
    position: static;
    display: block;
}
.menu-toggleable.in .dropdown-toggle::after {
    display: none;
}
.menu-toggleable.in .site_nav_list-item>.nav-link {
    position: relative;
    height: 50px;
    line-height: 50px;
    text-transform: capitalize;
    color: #000;
    font-size: 22px;
    text-align: start;
}
.menu-toggleable.in .site_nav_list-item>.nav-link.no-border {
    border-bottom: 0;
}
.menu-toggleable.in .site_nav_list-item>.nav-link:focus {
    outline: none;
}
.menu-toggleable.in .site_nav_list-item>.nav-link:focus-visible {
    border-radius: 4px;
    outline: 2px solid #333;
    outline-offset: -2px;
}
.menu-toggleable.in .site_nav_list-item>.nav-link .arrow-right {
    position: absolute;
    top: 35%;
    right: 0;
    display: inline-block;
    width: 12px;
    height: 20px;
    padding: 3px;
}
[dir=rtl] .menu-toggleable.in .site_nav_list-item>.nav-link .arrow-right {
    transform: scale(-1);
}
.menu-toggleable.in .site_nav_list-item>.nav-link .nav_logo-menu {
    height: 10px;
    max-height: 10px;
}
.menu-toggleable.in .site_nav_list-item>.nav-link:lang(ja) {
    font-size: 20px;
}
.menu-toggleable.in .site_nav_list-item.nav-logo .nav-link {
    display: flex;
}
.menu-toggleable.in .site_nav_list-item.nav-logo .nav_logo-menu {
    height: auto;
    max-height: 100%;
}
@media (min-width: 354px) {
    .menu-toggleable.in .site_nav_list-item {
        margin: 0 20px;
    }
    .menu-toggleable.in .site_nav_list-item>.nav-link {
        padding: 0;
    }
}
@media (max-width: 354px) {
    .menu-toggleable.in .site_nav_list-item {
        margin: 0 21px;
    }
    .menu-toggleable.in .site_nav_list-item>.nav-link {
        padding: 0 5px 0 0;
    }
}
.menu-toggleable.in .site_nav_list {
    flex-flow: column;
    flex-wrap: nowrap;
    height: calc(100dvh - 50px);
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
}
@media (min-width: 1280px) {
    .menu-toggleable.in .site_nav_list {
        border-right: 1px solid #f8f8f8;
    }
}
@media (min-width: 1280px) {
    .menu-toggleable.in .site_nav_list.submenu-opened .nav-item:not(.is-hovered)>.nav-link {
        color: #999;
    }
}
.menu-toggleable.in .dropdown-menu {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 0;
    min-width: 0;
    height: 100%;
    border: 0 none;
    transition: left 0.7s cubic-bezier(1, 0, 0.5, 1);
}
@media (min-width: 1280px) {
    .menu-toggleable.in .dropdown-menu {
        display: block;
        min-width: 380px;
        height: 100vh;
    }
}
@media (min-width: 1280px) {
    .menu-toggleable.in .dropdown-menu--closed {
        left: 0;
        visibility: hidden;
        opacity: 0;
        transition: left 0.7s cubic-bezier(1, 0, 0.5, 1);
    }
}
.menu-toggleable.in .show>.dropdown-menu {
    left: 0;
}
.menu-toggleable--left.in .site_nav-container .dropdown-menu {
    left: -120%;
}
.menu_logo-img, .menu_logo-text {
    display: none;
}
@media (max-width: 1279.98px) {
    .menu_logo-wrap[data-show-on-mobile=false] .menu_logo-text,
.menu_logo-wrap[data-show-on-mobile=true] .menu_logo-img {
        display: inline-block;
    }
}
@media (min-width: 1280px) {
    .menu_logo-wrap[data-show-on-desktop=true] .menu_logo-img,
.menu_logo-wrap[data-show-on-desktop=false] .menu_logo-text {
        display: inline-block;
    }
}
@media (max-width: 1279.98px) {
    .nav-logo-dropdown .menu_logo-wrap[data-show-on-mobile=true] .menu_logo-text {
        display: inline-block;
    }
    .nav-logo-dropdown .menu_logo-wrap[data-show-on-mobile=true] .menu_logo-img {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 1919.98px) and (orientation: portrait) {
    .site_nav-menu_wrapper {
        align-items: start;
        height: 100vh;
    }
}
@media (min-width: 768px) and (max-width: 1919.98px) and (orientation: portrait) and (min-width: 1280px) {
    .site_nav-menu_wrapper {
        height: auto;
    }
}
@media (min-width: 768px) and (max-width: 1919.98px) and (orientation: portrait) {
    .language_change {
        bottom: -2px;
    }
    .language_change-content {
        align-items: flex-start !important;
    }
}
.nav_dropdown_category-list {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100% - 50px);
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
}
@media (min-width: 420px) {
    .nav_dropdown_category-list {
        width: 420px;
    }
}
@media (min-width: 1280px) {
    .nav_dropdown_category-list {
        position: relative;
        width: 100%;
    }
}
.nav_dropdown_category-list .product-tile .quickview,
.nav_dropdown_category-list .product-tile .js-wishlist-tile,
.nav_dropdown_category-list .color-swatches {
    display: none;
}
.nav_dropdown_category-list .tile-body {
    text-align: center;
    padding-bottom: 0;
}
@media (min-width: 1280px) {
    .site_nav .site_nav_list-top {
        text-align: center;
    }
    .site_nav .site_nav_list-top[data-title]::before {
        content: attr(data-title);
        display: block;
        font-weight: 700;
        height: 1px;
        color: transparent;
        overflow: hidden;
        visibility: hidden;
    }
}
.menu_edits_banner {
    gap: 15px;
}
@media (min-width: 1024px) {
    .menu_edits_banner {
        gap: 10px;
    }
}
.menu_edits_banner-item {
    align-items: center;
    gap: 10px;
    margin-left: -20px;
    padding: 0 0 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.menu_edits_banner-item:last-of-type {
    border: none;
}
@media (min-width: 1024px) {
    .menu_edits_banner-item {
        margin: 0;
        padding: 0;
        border: none;
    }
}
.menu_edits_banner-text {
    gap: 5px;
}
.menu_edits_banner-title {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
}
.menu_edits_banner-link {
    color: #333;
}
.menu_edits_banner-image {
    width: 90px;
    height: 90px;
}
@media (min-width: 1024px) {
    .menu_edits_banner-image {
        width: 60px;
        height: 60px;
    }
}
@media (min-width: 1280px) {
    .menu_edits_banner-image {
        width: 90px;
        height: 90px;
    }
}
.submenu-first_column {
    position: absolute;
    top: 0;
    left: 380px;
    min-width: 380px;
    height: 100vh;
    background-color: #fff;
    transition: left 0.5s cubic-bezier(0, 1, 0.5, 1);
}
.submenu-second_column {
    position: absolute;
    left: 760px;
    display: block;
    width: 380px;
    height: 100vh;
    margin: 0;
    padding-top: 50px;
    border-left: 1px solid #f8f8f8;
    overflow-y: auto;
    background-color: #fff;
    transition: left 0.5s cubic-bezier(0, 1, 0.5, 1);
}
.submenu--closed {
    left: 0;
    transition: left 0.5s cubic-bezier(0, 1, 0.5, 1);
}
@media (min-width: 1024px) {
    .menu-scrollbar {
        height: calc(100dvh - 50px);
        overflow-x: hidden;
        overflow-y: auto;
        scrollbar-width: thin;
    }
}
.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    overflow: hidden;
}
.navbar>.container,
.navbar>.container-fluid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.navbar-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}
.navbar-nav .dropdown-menu {
    position: static;
    float: none;
    font-size: 1rem;
}
@media (min-width: 1024px) {
    .navbar-nav .dropdown-menu {
        font-size: 0.875rem;
    }
}
.navbar-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
}
.navbar-toggler {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    border: 1px solid transparent;
    background-color: transparent;
    font-size: 1.171875rem;
    line-height: 1;
    border-radius: 5px;
}
@media (max-width: 1279.98px) {
    .navbar-toggler {
        width: 30px;
        height: 30px;
    }
}
.navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none;
    outline: none;
}
@media (min-width: 768px) {
    .navbar-toggler {
        display: block;
        width: auto;
        height: auto;
        padding: 0.25rem;
        padding-right: 9px;
    }
}
@media (min-width: 1280px) {
    .navbar-toggler {
        max-width: 34%;
    }
}
.navbar-toggler:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.navbar-toggleable .navbar-collapse {
    display: block !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 15px 40px;
}
.navbar-toggleable .navbar-collapse.collapse:not(.show) {
    display: none !important;
}
@media (min-width: 1280px) {
    .navbar-toggleable .navbar-collapse.collapse:not(.show):not(.m_level-area--3) {
        display: flex !important;
    }
}
@media (min-width: 1280px) {
    .navbar-toggleable {
        justify-content: flex-start;
    }
    .navbar-toggleable .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-toggleable .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-toggleable>.container,
.navbar-toggleable>.container-fluid {
        flex-wrap: nowrap;
    }
    .navbar-toggleable .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .navbar-toggleable .navbar-toggler {
        display: none;
    }
}
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75);
}
.show>.navbar-dark .navbar-nav .nav-link, .active>.navbar-dark .navbar-nav .nav-link, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}
.burger_menu--active {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.burger_close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    display: inline-flex;
    flex: 0 0 39px;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 1px;
    margin-left: 0;
    border: 0;
    line-height: 1;
    color: #333;
    background-color: #fff;
    cursor: pointer;
}
.burger_close:hover, .burger_close:focus {
    outline: none;
}
.burger_close:focus-visible {
    outline: 2px solid #333;
}
@media (min-width: 375px) {
    .burger_close {
        flex-basis: 49px;
    }
}
@media (min-width: 1280px) {
    .burger_close {
        left: 10px;
    }
}
.burger_close::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 39px;
    height: auto;
}
@media (min-width: 375px) {
    .burger_close::before {
        width: 49px;
    }
}
.burger_close-icon.icon {
    width: 15px;
    height: 15px;
}
.main_menu {
    flex-shrink: 1;
}
@media (min-width: 1280px) {
    .main_menu {
        z-index: 1020;
        max-width: 380px;
    }
}
.site_nav-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 100%;
    margin-left: 0;
}
@media (min-width: 420px) {
    .site_nav {
        width: 420px;
    }
}
@media (min-width: 1280px) {
    .site_nav {
        width: 100%;
        max-width: 380px;
    }
}
.menu-toggleable--left.navbar-toggleable.in {
    width: 100%;
}
@media (min-width: 1280px) {
    .menu-toggleable--left.navbar-toggleable.in {
        width: auto;
    }
}
.site_nav_login-account_icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.site_nav_login-wishlist_link {
    display: flex;
    align-items: center;
}
.site_nav_login-wishlist_link .wishlist-icon {
    width: 20px;
    height: 20px;
    vertical-align: unset;
    margin-right: 10px;
}
.site_nav_login-wishlist_link .wishlist_label {
    color: #000;
    font-size: 1rem;
}
.site_nav_login-btn {
    display: flex;
    align-items: center;
    color: #000;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 1rem;
}
.site_nav_login .arrow-right {
    width: 10px;
    height: 10px;
    vertical-align: unset;
}
.site_nav_menu-header {
    display: inline-block;
    width: 100%;
    height: 50px;
}
.nav_dropdown {
    margin: 0;
    padding: 0;
}
.nav_breadcrumb {
    padding: 0 20px;
}
.nav_breadcrumb-link {
    display: block;
    height: 51px;
    line-height: 51px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
}
.nav_breadcrumb-link .nav_logo-menu {
    height: 12px;
    max-height: 12px;
}
.nav_breadcrumb:hover {
    background: none;
}
.nav_breadcrumb-header {
    position: relative;
}
@media (min-width: 1280px) {
    .nav_breadcrumb-header {
        height: 50px;
    }
}
.nav_breadcrumb-header .close-menu {
    margin-top: 0;
}
.nav_dropdown_back {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
}
.nav_dropdown_back-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 1px 0 0;
    text-align: center;
    border: 0;
}
.nav_dropdown_back .back-nav-icon {
    width: 9px;
    height: 15px;
    transform: rotate(180deg);
}
.site_nav_sign_in-list {
    padding: 30px 0;
    list-style: none;
}
.site_nav_sign_in-item:not(:last-child) {
    margin-bottom: 20px;
}
.site_nav_footer {
    margin-top: auto;
    padding-bottom: 80px;
    background-color: #f8f8f8;
}
@media (min-width: 1280px) {
    .site_nav_footer {
        padding-bottom: 30px;
    }
}
.site_nav_footer-location {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 51px;
    padding: 16px 20px;
    background-color: #f0f0f0;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
@media (min-width: 1280px) {
    .site_nav_footer-location {
        position: relative;
        justify-content: normal;
        height: auto;
        margin: 20px 20px 0;
        padding: 20px 0 0;
        border-top: 1px solid #ccc;
        background-color: transparent;
        box-shadow: none;
    }
}
.site_nav_footer-location .country_switch-title {
    display: inline !important;
}
.site_nav_footer-location .country_switch,
.site_nav_footer-location .language_switch-text {
    text-decoration: underline;
    font-size: 0.9375rem;
}
.site_nav_footer-location .dropdown-menu {
    border-radius: 5px;
}
@media (min-width: 1280px) {
    .site_nav_footer-location .dropdown-menu {
        border-radius: 0;
    }
}
.site_nav_footer-location .dropdown-menu.country_switch_selector {
    width: 320px;
    border-radius: 5px;
    min-width: 100% !important;
}
@media (max-width: 1279.98px) {
    .site_nav_footer-location .country_switch_selector-close {
        display: none;
    }
}
.site_nav_footer-location .language_switch-list {
    width: 120px !important;
}
.site_nav_list-asset {
    font-size: 1rem;
    position: relative;
    margin: 0 20px;
    padding-top: 15px;
}
.site_nav_list-asset:first-child {
    padding-top: 20px;
}
.site_nav_list-asset:lang(ja) {
    font-size: 15px;
}
@media (min-width: 1280px) {
    .site_nav_list-asset:lang(ja) {
        font-size: 1rem;
    }
}
.nav_dropdown_category-item>.menu-link {
    position: relative;
    display: block;
    padding: 0 0 0 15px;
    line-height: 42px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    background-color: #f8f8f8;
    font-size: 0.9375rem;
}
.nav_dropdown_category-item>.menu-link:lang(ja) {
    font-size: 14px;
}
@media (max-width: 1279.98px) {
    .nav_dropdown_category-item {
        display: none;
        min-height: 50px;
        padding: 0;
    }
    .nav_dropdown_category-item .nav-arrow-icon {
        position: absolute;
        top: 18px;
        left: 3px;
        z-index: -1;
        width: 10px;
        height: 12px;
        transform: rotate(90deg);
    }
    [dir=rtl] .nav_dropdown_category-item .nav-arrow-icon {
        right: 75%;
    }
    .nav_dropdown_category-item>.menu-link .m_level-text .nav_logo-menu {
        height: 10px;
        max-height: 10px;
    }
    .nav_dropdown_category-item>.menu-link.collapsed {
        font-weight: 400;
    }
    .nav_dropdown_category-item>.menu-link.collapsed .nav-arrow-icon {
        width: 6px;
        transform: rotate(0);
    }
    .nav_dropdown_category-item>.menu-link.no-collapsed {
        font-weight: 400;
    }
    .nav_dropdown_category-item .product_tile-image {
        min-height: 304px;
    }
    .nav_dropdown_category-item .carousel-control {
        display: none;
    }
    .category_tertiary.collapsing {
        height: auto;
        overflow: initial;
        transition: initial;
    }

    .category_tertiary_item>.menu-link {
        display: flex;
        align-items: center;
        padding: 8px 0;
        font-size: 18px;
    }
}
@media (max-width: 1279.98px) and (min-width: 1280px) {
    .category_tertiary_item>.menu-link {
        max-width: 285px;
    }
}
@media (max-width: 1279.98px) {
    .category_tertiary_item>.menu-link .m_level-text .nav_logo-menu {
        height: 10px;
    }
}
@media (max-width: 1279.98px) {
    .site_nav_list-gradient {
        position: fixed;
        bottom: 51px;
        z-index: 1;
        width: 100%;
        max-width: 420px;
        height: 120px;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
        pointer-events: none;
    }
    .site_nav_list-gradient--sub_category {
        bottom: 0;
        height: 180px;
    }
}
@media (max-width: 1279.98px) {
    .nav_icon_asset {
        position: absolute;
        top: 21px;
        left: 2px;
    }
}
@media (max-width: 1279.98px) {
    .site_nav_footer_sign_in {
        padding: 15px;
        border-top: 1px solid #ccc;
        text-align: center;
        text-transform: uppercase;
    }
    .site_nav_footer_sign_in--bottom {
        color: #666;
    }
}
@media (max-width: 1279.98px) {
    .icon_asset-delivery-truck {
        top: 24px;
        width: 19px;
        height: 12px;
    }
    .icon_asset-carton-box {
        width: 18px;
        height: 20px;
    }
    .icon_asset-pin {
        top: 20px;
        left: 4px;
        width: 15px;
        height: 20px;
    }
    .icon_asset-language {
        width: 20px;
        height: 20px;
    }
    .icon_asset-order-tracking {
        width: 20px;
        height: 17px;
    }
}
@media (max-width: 1279.98px) {
    .nav_baner_section {
        justify-content: center;
        width: 100%;
    }
}
@media (min-width: 1280px) {
    .category_tertiary {
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
    }
}
.iconic-wrapper .iconic_item {
    position: relative;
}
.iconic-wrapper .iconic_item-name {
    position: absolute;
    bottom: 7px;
    line-height: 14px;
    left: 50%;
    transform: translate(-50%);
}
.iconic-wrapper .iconic_item-image {
    width: 100%;
    height: 100%;
}
.iconic_item:nth-child(n+5) {
    -webkit-mask-image: linear-gradient(to bottom, #000 -50%, rgba(0, 0, 0, 0) 51%);
            mask-image: linear-gradient(to bottom, #000 -50%, rgba(0, 0, 0, 0) 51%);
}
.iconic_item:nth-child(n+7) {
    display: none;
}
.iconic {
    width: 100%;
}
.iconic-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: -70px;
    margin-inline: -20px;
}
.iconic-view_less {
    display: none;
    margin-top: 15px;
    margin-bottom: 25px;
    cursor: pointer;
    text-align: center;
    text-decoration: underline;
    line-height: 14px;
}
.iconic-view_more {
    position: relative;
    bottom: 20px;
    left: calc(50% - 50px);
    transform: translate(-50%);
    cursor: pointer;
    text-decoration: underline;
    line-height: 14px;
    color: #333;
}
.iconic.show .iconic_item:nth-child(n+5) {
    -webkit-mask-image: none;
            mask-image: none;
    display: block;
}
.iconic.show .iconic-wrapper {
    margin-bottom: 0;
}
.iconic.show .iconic-view_less {
    position: relative;
    left: 50%;
    display: block;
    grid-column: 1/2;
    color: #333;
}
.iconic.show .iconic-view_more {
    display: none;
}
.nav-item.collapsed~.iconic-view_more {
    display: none;
}
@media (min-width: 1280px) {
    .site_nav_login_wishlist,
.nav_dropdown_back {
        display: none;
    }

    .mega_dropdown-inner {
        border: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .mega_overlay::after {
        content: "";
        position: absolute;
        top: 100%;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        height: 0;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        transition: opacity 1ms linear 300ms;
        transition: opacity 1ms linear var(--show-menu-delay, 300ms);
    }
    .mega_overlay.is-shown::after {
        height: 100vh;
        opacity: 1;
    }

    .nav_logo-menu {
        width: auto;
        height: 10px;
        max-height: 10px;
        vertical-align: baseline;
    }

    .site_nav_list .site_nav_list-top {
        padding-top: 0;
        padding-bottom: 0;
        color: #333;
        text-transform: uppercase;
        border-bottom: 2px solid #fff;
        background-color: #fff;
        background-image: none !important;
    }
    .site_nav_list .site_nav_list-top.dropdown-toggle::after {
        display: none;
    }
    .site_nav_list .list_item_animated_icon {
        position: absolute !important;
        max-height: 0;
        background-color: linear-gradient(to right, #97999b 0%, #272525 50%, #505052 100%);
        transition: 1s ease-out;
        transition-property: max-height, transform;
    }
    .site_nav_list .list_item_animated_icon--1 {
        top: 32%;
        left: -1%;
        width: 9px;
    }
    .site_nav_list .list_item_animated_icon--2 {
        top: 66%;
        left: 27%;
        width: 3px;
    }
    .site_nav_list .list_item_animated_icon--3 {
        top: 68%;
        left: 62%;
        width: 5px;
    }
    .site_nav_list .list_item_animated_icon--4 {
        top: 32%;
        left: 90%;
        width: 5px;
    }
    .site_nav_list .list_item_animated_icon--5 {
        top: 17%;
        left: 80%;
        width: 9px;
    }
    .site_nav_list .list_item_animated_icon--6 {
        top: 18%;
        left: 56%;
        width: 4px;
    }
    .site_nav_list .list_item_animated_icon--7 {
        top: 18%;
        left: 6%;
        width: 6px;
    }
    .site_nav_list-item_text_animation {
        transition: all 1s;
    }
    .site_nav_list-item_text_animation:hover .nav-link_text {
        position: relative;
        background: linear-gradient(to right, #97999b 0%, #272525 50%, #505052 100%);
        -webkit-background-clip: text;
        /* stylelint-disable-line property-no-vendor-prefix */
        background-clip: text;
    }
    .site_nav_list-item_text_animation:hover .nav-link_text .list_item_animated_icon {
        transition: 0.5s ease-out;
        transition-property: max-height, transform;
    }
    .site_nav_list-item_text_animation:hover .nav-link_text .list_item_animated_icon--1 {
        max-height: 9px;
    }
    .site_nav_list-item_text_animation:hover .nav-link_text .list_item_animated_icon--2 {
        max-height: 3px;
        transform: rotate(30deg);
    }
    .site_nav_list-item_text_animation:hover .nav-link_text .list_item_animated_icon--3 {
        max-height: 5px;
        transform: rotate(30deg);
        transition-delay: 0.3s;
    }
    .site_nav_list-item_text_animation:hover .nav-link_text .list_item_animated_icon--4 {
        max-height: 5px;
        transform: rotate(30deg);
        transition-delay: 0.3s;
    }
    .site_nav_list-item_text_animation:hover .nav-link_text .list_item_animated_icon--5 {
        max-height: 9px;
    }
    .site_nav_list-item_text_animation:hover .nav-link_text .list_item_animated_icon--6 {
        max-height: 4px;
    }
    .site_nav_list-item_text_animation:hover .nav-link_text .list_item_animated_icon--7 {
        max-height: 6px;
    }
    .site_nav_list-item_text_animation:hover .nav-link_text .m_level-link {
        border-image-source: linear-gradient(to right, #97999b 0%, #272525 50%, #505052 100%) !important;
        border-image-slice: 1;
        background: linear-gradient(to right, #97999b 0%, #272525 50%, #505052 100%);
        -webkit-background-clip: text;
        /* stylelint-disable-line property-no-vendor-prefix */
        background-clip: text;
        color: transparent !important;
        transition: color 1s ease-out;
    }
    .site_nav_list-item {
        position: static;
    }
    .site_nav_list-item:last-child {
        color: #f00;
    }
    .site_nav_list-item.show .nav-link_text {
        font-weight: 700;
        border-bottom: 2px solid #333;
    }
    .site_nav_list-item.is-hovered .nav-link_text {
        border-bottom: 2px solid #333;
        font-weight: 700;
    }
    .site_nav_list-item.nav_sale .site_nav_list-top {
        color: #c00;
    }

    .nav_dropdown {
        width: 100%;
    }
    .nav_dropdown.show {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

    .category_tertiary_item>.menu-link .nav_logo-menu {
        height: 9px;
    }

    .nav_dropdown_category-item {
        float: left;
        clear: none;
        width: 248px;
        margin: 0;
        border: none;
    }
    .nav_dropdown_category-item img {
        max-width: 100%;
    }
    .nav_dropdown_category-item>.menu-link {
        padding: 0 15px;
        font-weight: 700;
    }
    .nav_dropdown_category-item .nav-arrow-icon {
        display: none;
    }

    .nav_dropdown_category-item_wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .megamenu-new-text-1,
.megamenu-new-text-2,
.megamenu-curated-text-1,
.megamenu-curated-text-2 {
        display: block;
        padding-top: 5px;
    }

    .megamenu-new-text-1 {
        text-transform: uppercase;
    }

    .megamenu-new-text-2 {
        text-transform: capitalize;
    }

    .menu_banner {
        flex-shrink: 0;
    }
    .menu_banner-title {
        margin-top: 5px;
        font-size: 18px;
        line-height: 23px;
    }
    .menu_banner-title:lang(ja) {
        font-size: 16px;
    }
    .menu_banner-img {
        -o-object-fit: contain;
           object-fit: contain;
    }

    .menu_banner-media img {
        width: 100%;
        max-width: 100%;
    }
}
@media (min-width: 1280px) and (max-width: 1279.98px) {
    .menu_banner-media img {
        min-width: 77px;
    }
}
@media (min-width: 1280px) {
    .menu_edits_banner {
        gap: 10px;
    }
}
@media (min-width: 1280px) {
    .menu_edits_banner-item {
        align-items: center;
        gap: 10px;
    }
}
@media (min-width: 1280px) {
    .menu_edits_banner-text {
        gap: 5px;
    }
}
@media (min-width: 1280px) {
    .menu_edits_banner-title {
        font-size: 11px;
        color: #999;
        text-transform: uppercase;
    }
}
@media (min-width: 1280px) {
    .menu_edits_banner-image {
        width: 90px;
        height: 90px;
    }
}
@media (min-width: 1280px) and (min-width: 1024px) {
    .menu_edits_banner-image {
        width: 60px;
        height: 60px;
    }
}
@media (min-width: 1280px) and (min-width: 1280px) {
    .menu_edits_banner-image {
        width: 90px;
        height: 90px;
    }
}
@media (min-width: 1280px) {
    .menu_edits_banner-link {
        color: #333;
    }
}
.nav_baner {
    display: none;
}
@media (min-width: 1280px) {
    .nav_baner {
        display: flex;
    }
}
.nav_baner_section {
    padding: 0 !important;
}
.nav_baner_section .swiper {
    max-width: 420px !important;
}
@media (min-width: 1280px) {
    .nav_baner_section .swiper {
        max-width: 365px !important;
    }
}
.nav_magenta .site_nav_list-top {
    color: #a6192e;
}
.nav_magenta .site_nav_list-top:hover {
    border-bottom: 2px solid #a6192e;
}
@media (min-width: 1920px) {
    .nav_dropdown_category {
        max-width: 1918px;
        margin-right: auto;
        margin-left: auto;
    }
}
.mega_menu-the_edit .menu_banner.type_1 {
    margin-top: 3px;
}
.the_edit_asset {
    max-width: 49.5vw;
}
@media (min-width: 1920px) {
    .the_edit_asset {
        max-width: 49vw;
    }
}
.the_edit_asset-gap_left {
    margin-left: 3.3vw;
}
@media (min-width: 1920px) {
    .the_edit_asset-gap_left {
        margin-left: 4.45vw;
    }
}
.the_edit_asset-title {
    padding-top: 4px;
    padding-bottom: 10px;
}
.the_edit_asset-readmore {
    font-size: 0.875em;
}
.the_edit_asset-item.col-4 {
    font-size: 10px;
}
@media (min-width: 1280px) {
    .the_edit_asset-item.col-4 {
        font-size: 12px;
    }
}
@media (min-width: 1920px) {
    .the_edit_asset-item.col-4 {
        font-size: 14px;
    }
}
.the_edit_asset-img_link {
    flex: 0 0 10.55vw;
}
@media (min-width: 1920px) {
    .the_edit_asset-img_link {
        flex: 0 0 11.15vw;
    }
}
.the_edit_asset-item.col-4 .the_edit_asset-img_link {
    flex: 0 0 7vw;
}
.m_level--2 {
    margin: 0;
}
.m_level--2_has_children {
    border-bottom: 0 !important;
}
.m_level--3 {
    border-top: 1px solid #f0f0f0;
}
.m_level-arrow--2 {
    position: relative !important;
    top: -1px !important;
    left: 5px !important;
    width: 5px !important;
    height: 10px !important;
}
.collapsed .m_level-arrow--2 {
    top: -2px !important;
    left: 8px !important;
}
.m_level-link {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-decoration: none;
}
.m_level-link:hover {
    text-decoration: none;
}
.m_level-link--2 {
    display: flex;
    padding: 8px 0;
    font-size: 18px;
}
.m_level-link--2, .m_level-link--3 {
    text-transform: none !important;
}
.m_level-link--3 {
    display: block;
    padding-left: 76px;
}
.m_level-link--2:lang(ja) {
    font-size: 16px;
}
@media (min-width: 1280px) {
    .m_level--active {
        display: block;
        width: 100%;
    }
    .m_level--1 {
        width: 100%;
        padding: 0;
    }
}
@media (min-width: 1280px) and (min-width: 1024px) {
    .m_level-link--0 {
        font-size: 14px;
    }
}
@media (min-width: 1280px) and (min-width: 1280px) {
    .m_level-link--0 {
        font-size: 15px;
    }
}
@media (min-width: 1280px) and (min-width: 1920px) {
    .m_level-link--0 {
        font-size: 16px;
    }
}
@media (min-width: 1280px) {
    .m_level-link--1 {
        text-transform: uppercase;
        pointer-events: none;
        font-weight: 700;
    }
    .m_level-link--1:hover {
        text-decoration: none;
    }
}
@media (min-width: 1280px) {
    .m_level-link--2, .m_level-link--3 {
        cursor: pointer !important;
    }
    .m_level-link--2:hover, .m_level-link--3:hover {
        color: #333;
    }
}
@media (min-width: 1280px) {
    .m_level-text--2_has_children[data-title]::before {
        content: attr(data-title);
        display: block;
        font-weight: 700;
        height: 1px;
        color: transparent;
        overflow: hidden;
        visibility: hidden;
    }
    .m_level-text--3 {
        line-height: 1.75;
    }
}
@media (min-width: 1280px) {
    .m_level-arrow--2 {
        position: static !important;
        display: block !important;
        width: 5px !important;
        height: 10px !important;
        margin-left: 6px;
        transform: none !important;
    }
    [dir=rtl] .m_level-arrow--2 {
        transform: rotate(180deg) !important;
    }
}
@media (min-width: 1280px) {
    .m_level-nav_dropdown--0 {
        justify-content: flex-start !important;
        overflow: hidden;
    }
}
@media (min-width: 1280px) {
    .m_level .m_level-area--3 {
        display: none !important;
    }
}
@media (min-width: 1280px) {
    .menu_animation {
        display: inline-block;
        animation-duration: 1s;
        animation-fill-mode: both;
    }
}
@media (min-width: 1280px) {
  @keyframes fadeInLeft {
        0% {
            transform: translateX(-20px);
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            opacity: 1;
        }
  }
}
@media (min-width: 1280px) {
    .fadeInLeft {
        animation-name: fadeInLeft;
    }
}
.category_presenter {
    flex-grow: 1;
    flex-shrink: 0;
    max-width: 100%;
}
.category_presenter--active {
    display: flex;
}
.category_presenter-scene {
    position: relative;
    flex-grow: 1;
}
.category_presenter-scene_inner::before {
    content: "";
    position: absolute;
    top: -17px;
    right: 0;
    right: -100vw;
    bottom: -30px;
    left: 0;
    z-index: -1;
    background-color: #f8f8f8;
}
.category_presenter-close {
    top: -8px !important;
    right: auto !important;
    left: 13px;
    display: none !important;
    float: none;
}
@media (min-width: 1024px) and (hover: none) {
    .category_presenter-close {
        display: inline-flex !important;
    }
}
.category_presenter-content {
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
}
@media (min-width: 1024px) {
    .category_presenter-menu {
        flex-shrink: 0;
    }
}
@media (min-width: 1024px) {
    .category_presenter-menu_list {
        position: relative;
        margin-top: 51px;
        margin-right: 50px;
        margin-left: 30px;
    }
}
.category_presenter-trigger--active:hover {
    font-weight: 400 !important;
    color: #666;
}
.new_label_sticker::after {
    content: attr(data-after-content);
    position: relative;
    bottom: 2px;
    display: inline-block;
    width: 26px;
    height: 14px;
    margin-left: -26px;
    border-radius: 3px;
    background-color: #f0f0f0;
    text-align: center;
    font-size: 8px;
    line-height: 14px;
    text-transform: uppercase;
    color: #333;
}
.header_banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    max-height: 40px;
    overflow: hidden;
    background-color: #333;
    transition: max-height 0.2s ease-in-out;
    text-align: center;
    line-height: 1.2;
    color: #fff;
}
.header_banner a {
    color: #fff;
    text-decoration: none;
}
.header_banner a:hover {
    text-decoration: underline;
}
.header_banner.hide {
    max-height: 0;
}
.header_banner-content {
    position: relative;
    display: flex;
    align-items: center;
}
.header_banner .owl-stage {
    display: flex;
    align-items: center;
}
.header_banner .header-promotion {
    display: -webkit-box;
    /* stylelint-disable-line value-no-vendor-prefix */
    margin: 10px 0;
    padding: 0 15px;
    overflow: hidden;
    white-space: wrap;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
@media (min-width: 1024px) {
    .header_banner .header-promotion {
        -webkit-line-clamp: 1;
    }
}
.header_banner-close {
    width: 20px;
    height: 20px;
    z-index: 1;
    cursor: pointer;
    color: #999 !important;
}
.rotating_banner.show {
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 !important;
}
.rotating_banner.show .modal-dialog {
    max-width: none;
}
.rotating_banner-content {
    position: relative;
    max-width: unset;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: 0;
    background-color: #f0f0f0;
}
.rotating_banner-body {
    height: 100%;
}
.rotating_banner-carousel {
    height: 100%;
}
.rotating_banner-carousel_inner {
    height: 100%;
    padding: 10px 0 46px;
}
@media (min-width: 1024px) {
    .rotating_banner-carousel_inner {
        padding: 20px 45px 55px;
    }
}
@media (min-width: 1024px) {
    .rotating_banner-carousel-item {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}
.rotating_banner .carousel-indicators {
    display: flex;
    gap: 5px;
    margin: 0;
}
.rotating_banner .carousel-indicator {
    width: 6px;
    height: 6px;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: #999;
    margin-inline: 0;
}
.rotating_banner .carousel-indicator.active {
    width: 15px;
    border: none;
    border-radius: 6px;
    background-color: #999;
    transition: width 0.2s linear;
}
.visenze_button .vi_tooltip-module__tooltipContent {
    display: none;
}
.logo {
    position: absolute;
    top: 50%;
    display: inline-block;
    transform: translateY(-50%);
    transition: top 0.4s ease-in-out;
    color: inherit;
}
.logo:hover, .logo:focus {
    color: inherit;
}
.logo:focus-visible {
    outline-offset: 3px;
}
@media (min-width: 768px) {
    .logo {
        margin-bottom: 0;
    }
}
@media (min-width: 1280px) {
    .logo {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    [dir=rtl] .logo {
        right: auto;
        left: 50%;
    }
}
.logo-img {
    width: 220px;
    height: auto;
    transition: width 0.4s ease-in-out;
    fill: currentColor;
}
@media (min-width: 1280px) {
    .logo-img {
        width: 298px;
    }
}
.logo_pl-20 {
    padding-left: 20px;
}
@media (max-width: 415px) {
    .logo-img_mobile {
        width: 190px;
    }
}
@media (max-width: 374px) {
    .logo-img_mobile {
        width: 150px;
    }
}
@media (min-width: 415px) {
    .logo-img_mobile {
        width: 220px;
    }
}
.page_header {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 1019;
    width: 100%;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0 3px 3px 0;
    line-height: 1.5;
    font-size: 14px;
}
@media (max-width: 1279.98px) {
    .page_header--cart-offset {
        margin-top: -40px;
    }
}
@media (min-width: 1280px) {
    .page_header {
        border-bottom: 0;
    }
}
.page_header--sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}
@media (min-width: 1280px) {
    .page_header--dynamic {
        top: -40px;
    }
}
.page_header.nav-down, .page_header.nav-up {
    position: fixed !important;
    box-shadow: none;
    transition: 0.2s ease-in-out;
}
.page_header.invisible {
    opacity: 0;
    transition: opacity 0;
}
.page_header.nav-down {
    border-bottom: 1px solid #f0f0f0;
}
@media (min-width: 1280px) {
    .page_header.nav-down {
        top: 0;
    }
}
.page_header.nav-up {
    top: -50px;
}
@media (min-width: 1280px) {
    .page_header.nav-up {
        top: -95px;
    }
}
.page_header.is-sticky, .page_header.is-stuck {
    position: fixed !important;
}
.page_header-wide_screen {
    position: absolute;
    width: 100%;
    height: 50px;
    background-color: #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.4s ease-in-out;
}
.page_header-inner {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 50px;
    padding-top: 0;
    background-color: #fff;
    transition: background-color 0.4s ease-in-out;
}
@media (min-width: 1280px) {
    .page_header-inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
.page_header-inner_transparent {
    top: 100%;
    background-color: transparent;
    color: #fff;
}
@media (min-width: 1280px) {
    .page_header-inner_transparent {
        top: auto;
    }
}
.page_header-inner_transparent .logo {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    transition: top 0.4s ease-in-out;
}
@media (max-width: 1279.98px) {
    [dir=rtl] .page_header-inner_transparent .logo {
        right: auto;
        left: 50%;
    }
}
@media (min-width: 1280px) {
    .page_header-inner_transparent .logo {
        top: 50px;
        transition: top 0.4s ease-in-out;
    }
}
.page_header-inner_transparent .logo-img {
    width: 342px;
    transition: width 0.4s ease-in-out;
}
@media (max-width: 767.98px) {
    .page_header-inner_transparent .logo-img {
        width: 300px;
    }
}
@media (min-width: 1280px) {
    .page_header-inner_transparent .logo-img {
        width: 596px;
    }
}
.page_header-inner_transparent .minicart-quantity {
    width: 15px;
    height: 15px;
    background-color: #fff;
    color: #000;
    transform: translate(1px, -2px);
    line-height: 1.3;
}
.page_header-inner_transparent~.page_header-wide_screen {
    background-color: transparent;
    box-shadow: none;
}
.page_header-minicart {
    margin-right: 1px;
}
@media (min-width: 768px) {
    .page_header-minicart {
        margin-right: 0;
    }
}
.page_header-item {
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease-in-out;
}
@media (min-width: 1280px) {
    .page_header-notification {
        margin-right: 10px;
    }
}
.page_header-notification_btn {
    position: relative;
    width: 30px;
    padding: 4px 5px;
    background-color: transparent;
    color: inherit;
}
.page_header-notification_btn.btn {
    transition: none;
}
.page_header-divider {
    display: inline-block;
    height: 20px;
    margin: 2px 8px 0;
    border-left: 1px solid #ccc;
}
.page_header-menu_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding-left: 0;
    list-style: none;
    font-size: 0.9375rem;
}
.page_header-menu_item {
    text-transform: uppercase;
    cursor: pointer;
}
.page_header-menu_item:not(:last-child) {
    margin-right: 20px;
}
.page_header-menu_item span:focus-visible {
    outline-offset: 3px;
}
.page_header-logo {
    display: inline-flex;
    width: 200px;
    max-width: 500px;
    height: 22px;
    max-height: 90px;
    transition: color 0.4s ease-in-out;
    color: inherit;
}
@media (min-width: 768px) {
    .page_header-logo {
        max-width: 490px;
    }
}
@media (min-width: 1024px) {
    .page_header-logo {
        max-width: 450px;
        height: 44px;
    }
}
@media (min-width: 1280px) {
    .page_header-logo {
        flex-grow: 1;
        align-items: center;
        max-width: unset;
        overflow: visible;
    }
    .page_header-logo .content-asset {
        margin-right: auto;
        margin-left: auto;
    }
}
@media (min-width: 1280px) {
    .page_header-wishlist {
        width: 30px;
        margin-right: 10px;
    }
    .page_header-minicart {
        width: 30px;
        margin-right: 10px;
    }
    .page_header-search {
        margin-right: 20px;
    }
    [dir=rtl] .page_header-search {
        margin-left: 0;
    }
}
.page_header-back_btn {
    position: relative;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 29px;
    height: 50px;
    margin-left: -10px;
    background: #fff;
}
.page_header-back_btn_icon {
    color: #999;
    width: 14px;
    height: 13px;
}
.page_header-giftcard_banner .logo {
    position: static;
    transform: unset !important;
}
.smartbanner--show .page_header--dynamic {
    top: 0;
    transition: 0.2s ease-in-out;
}
@media (min-width: 1280px) {
    .smartbanner--show .page_header--dynamic {
        top: -40px;
    }
}
.smartbanner--show .page_header.nav-down {
    top: 0;
}
@media (min-width: 1280px) {
    .smartbanner--show .page_header.nav-down {
        top: -40px;
    }
}
.smartbanner--show .page_header.nav-up {
    top: -50px;
}
@media (min-width: 1280px) {
    .smartbanner--show .page_header.nav-up {
        top: -95px;
    }
}
.header_account {
    width: 24px;
    height: 30px;
    position: relative;
    justify-content: center;
    margin-right: 8px;
}
@media (min-width: 1280px) {
    .header_account {
        width: 30px;
        height: 30px;
        margin-right: 0;
    }
}
.header_account, .header_account:hover, .header_account:focus {
    color: inherit;
}
.header_account-icon {
    width: 16px;
    height: 20px;
}
.header_account-icon--dot {
    width: 18px;
    height: 22px;
}
.header_link {
    white-space: nowrap;
}
.header_link, .header_link:hover, .header_link:focus {
    color: inherit;
    font-size: 13px;
    line-height: inherit;
    text-decoration: none;
}
.header_link:focus-visible {
    border-radius: 4px;
    outline-offset: 2px;
}
.header_link .show .header_link-text, .header_link:hover .header_link-text, .header_link:focus .header_link-text {
    text-decoration: underline;
}
.header_link .show:lang(vi), .header_link:hover:lang(vi), .header_link:focus:lang(vi) {
    font-size: inherit;
}
.burger_menu {
    position: relative;
    padding: 0 1.5rem 0 0;
    color: inherit;
}
.burger_menu-icon {
    width: 20px;
    height: 20px;
}
.wishlist_btn {
    display: inline-block;
}
@media (min-width: 1280px) {
    .wishlist_btn {
        width: 30px;
        padding: 5px 4px;
        text-align: center;
    }
}
.wishlist_btn-icon {
    width: 20px;
    height: 20px;
}
.icon.wishlist_btn-icon {
    width: 20px;
    height: 20px;
}
.notification_btn-icon {
    width: 19px;
    height: 20px;
}
.header_storelocator {
    display: inline-flex;
    align-items: baseline;
}
.header_storelocator-icon.icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    transform: translateY(4px);
}
.logo_static-img {
    width: 100%;
    max-width: 100%;
}
.logo_static-img_desktop {
    width: 298px;
    max-width: 298px;
    transform: translateX(12px);
}
@media (min-width: 1280px) {
    .logo_static-img_desktop {
        transform: none;
    }
}
.logo_static-img_mobile {
    width: 175px;
    max-width: 175px;
    transform: translateX(-5px);
}
a.normal {
    color: #333;
    text-decoration: underline;
}
.sticky-header-banner {
    position: relative;
}
.sticky-header-banner.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
}
.language_switch {
    position: relative;
    display: flex;
}
.language_switch::before {
    content: "|";
    position: static;
    display: block;
    padding-right: 13px;
}
.language_switch--mobile:hover {
    text-decoration: none;
}
.language_switch--mobile .popover {
    /*rtl:begin:ignore*/
    top: 7px !important;
    right: unset !important;
    left: -22px !important;
    padding-top: 10px;
    padding-bottom: 15px;
    font-size: 0.9375rem;
    /*rtl:end:ignore*/
}
[dir=rtl] .language_switch--mobile .popover {
    /*rtl:begin:ignore*/
    left: 22px !important;
    /*rtl:end:ignore*/
}
.language_switch-list {
    position: absolute !important;
    top: -30px !important;
    left: unset !important;
    display: none !important;
    flex-direction: column;
    min-width: -webkit-fit-content !important;
    min-width: -moz-fit-content !important;
    min-width: fit-content !important;
    height: auto !important;
    border-radius: 5px !important;
    transform: translateY(-100%);
    filter: drop-shadow(rgba(0, 0, 0, 0.25) 0 0 2px);
    -webkit-padding-before: 10px;
            padding-block-start: 10px;
    -webkit-padding-after: 15px;
            padding-block-end: 15px;
}
@media (min-width: 1280px) {
    .language_switch-list {
        top: -20px !important;
    }
}
.language_switch-list.show {
    display: flex !important;
}
[dir=rtl] .language_switch-list {
    left: auto;
}
.language_switch-list::before {
    /* stylelint-disable order/properties-order */
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    margin-top: -4px;
    /* stylelint-enable order/properties-order */
    bottom: -9px;
    left: 50%;
    transform: translate(-50%, 0);
}
[dir=rtl] .language_switch-list::before {
    margin-left: 0;
}
.language_switch-item {
    order: 1;
    padding: 5px 17px;
    text-transform: capitalize;
}
.language_switch-item--active {
    order: 2;
    background-color: #f0f0f0;
}
.language_switch-item:hover, .language_switch-item:focus {
    text-decoration: underline;
}
.language_switch-link {
    color: inherit;
    display: flex;
    gap: 8px;
}
.language_switch-link::before {
    content: "";
    position: absolute;
    top: 1.5em;
    bottom: -64px;
    z-index: 1;
    display: none;
    width: 100%;
}
.language_switch-link:hover, .language_switch-link:focus {
    color: inherit;
}
.language_switch-icon {
    margin: 0 2px 0 4px;
}
.language_switch-text {
    padding-right: 2px;
    text-decoration: underline;
}
.language_switch-text--mobile {
    display: inline-block;
    max-width: none;
}
.header_lang_switch {
    position: relative !important;
    display: flex;
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 15px;
    background-color: #f8f8f8;
}
.header_lang_switch::before {
    display: none;
}
.header_lang_switch-list {
    position: absolute !important;
    left: 50%;
    display: none !important;
    flex-direction: column;
    width: 120px;
    min-width: -webkit-fit-content !important;
    min-width: -moz-fit-content !important;
    min-width: fit-content !important;
    height: auto !important;
    border-radius: 5px;
    transform: translate(-50%, 10px);
    filter: drop-shadow(rgba(0, 0, 0, 0.25) 0 0 2px);
    padding-block: 15px;
}
.header_lang_switch-list.show {
    display: flex !important;
}
.header_lang_switch-list::before {
    /* stylelint-disable order/properties-order */
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    margin-bottom: -4px;
    /* stylelint-enable order/properties-order */
    top: -9px;
    left: 82%;
    transform: translate(-50%, 0);
}
.header_lang_switch-item {
    order: 1;
    padding: 5px 17px;
    text-transform: capitalize;
}
.header_lang_switch-item--active {
    order: 2;
    background-color: #f0f0f0;
}
.header_lang_switch-item:hover, .header_lang_switch-item:focus {
    text-decoration: underline;
}
.header_lang_switch-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
}
.header_lang_switch-link:focus, .header_lang_switch-link:hover {
    text-decoration: none;
    color: inherit;
}
.header_lang_switch-icon {
    margin: 0 2px 0 4px;
}
.header_lang_switch-icon_up {
    display: none;
    fill: currentColor;
}
.header_lang_switch-icon_down {
    display: inline-block;
    fill: currentColor;
}
.header_lang_switch-text {
    padding-right: 2px;
}
[dir=rtl] .header_lang_switch-text {
    padding-right: 2px;
    padding-left: 2px;
}
.header_lang_switch.show .header_lang_switch-icon_up {
    display: inline-block;
}
.header_lang_switch.show .header_lang_switch-icon_down {
    display: none;
}
.page_header-inner_transparent .header_lang_switch {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
}
.page_header-language_switch .header_lang_switch {
    margin-left: 10px;
}
[dir=rtl] .page_header-language_switch .header_lang_switch {
    margin-right: 0;
    margin-left: 10px;
}
.modal-minicart {
    z-index: 1061 !important;
}
.modal-minicart--backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1019;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-minicart--backdrop_hidden {
    position: relative;
    justify-content: center;
    align-items: center;
    background-color: unset;
}
.modal-minicart .quantity-feedback {
    position: relative;
    width: auto;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-top: 10px;
    margin-left: 0 !important;
}
.modal-minicart .btn_express_checkout.disabled {
    color: #ccc;
    border-color: #ccc;
}
.minicart_head-text {
    display: block;
    padding-bottom: 12px;
    padding-left: 20px;
    border-bottom: 1px solid #ccc;
    color: #000;
}
[dir=rtl] .minicart_head-text {
    margin-right: 20px;
}
.minicart_head-text--empty {
    margin-right: 25px;
    padding: 0;
    border: 0;
    white-space: nowrap;
}
.minicart-modal-content--dynamic.popover {
    position: fixed;
    top: 0;
    right: 0;
    left: unset;
    z-index: 1018;
    max-width: 420px;
    max-height: 100vh;
    opacity: 0;
}
.minicart-modal-content--dynamic.popover:lang(de) {
    max-width: 450px;
}
.minicart-total {
    width: auto;
    height: 30px;
    margin-right: 8px;
    padding-left: 0;
}
@media (min-width: 375px) {
    .minicart-total {
        width: 30px;
        height: 30px;
    }
}
@media (min-width: 1280px) {
    .minicart-total {
        margin-right: 0;
        padding-left: 0;
    }
}
.minicart-free_message {
    margin-top: 15px;
    padding-top: 11px;
    border-top: 1px solid #ccc;
    text-align: center;
    color: #999;
    font-style: italic;
}
.minicart-free_message--bold {
    font-weight: 800;
}
.minicart-link {
    width: auto;
    height: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding: 0 5px;
}
@media (min-width: 375px) {
    .minicart-link {
        width: 30px;
        height: 30px;
    }
}
@media (min-width: 1280px) {
    .minicart-link::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
    }
}
.minicart-icon.icon {
    width: 20px;
    height: 20px;
    display: block;
}
.minicart-icon--active.icon {
    display: none;
}
.minicart-quantity_wrapper {
    flex-grow: 1;
    margin-top: 10px;
}
.minicart-quantity {
    position: absolute;
    top: calc(50% + 2px);
    left: 50%;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: #000;
    transform: translate(-2px, -5px);
    font-size: 9px;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    transition: all 0.4s ease-in-out;
}
.minicart-quantity[data-cart-qty="0"] {
    display: none;
}
.minicart-popover {
    min-width: 266px !important;
    min-height: 0 !important;
    border: 0;
    border-radius: 5px;
    transform: translate(20px, 22px) !important;
    filter: drop-shadow(rgba(0, 0, 0, 0.25) 0 0 2px);
}
.minicart-popover .minicart_head {
    padding: 0 20px;
}
.minicart-popover .header_minicart::before {
    /* stylelint-disable order/properties-order */
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    margin-bottom: -4px;
    /* stylelint-enable order/properties-order */
    top: 1px;
    right: 16px;
    transform: translate(-22%, -10px);
}
.minicart-modal {
    width: 420px;
    min-height: 0 !important;
    border: 0;
    border-radius: 0;
    filter: drop-shadow(rgba(0, 0, 0, 0.25) 0 0 2px);
}
.minicart-modal:lang(de) {
    width: 450px;
}
.minicart-modal--active {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1019;
    height: 100vh !important;
}
.minicart-modal-content--dynamic .minicart_footer-remove_btn {
    position: static;
    display: flex;
    float: none;
    width: 29px;
    height: 40px;
    margin-top: 0;
    color: #000;
    text-align: center;
}
.minicart-modal-content--dynamic .remove-btn {
    padding: 0;
    border: none;
    background-color: #fff;
}
.minicart-modal-content--dynamic .product-summary {
    overflow-x: hidden;
    overflow-y: auto;
}
.page_header--dynamic+.minicart-modal-content--dynamic, .page_header--dynamic.nav-up+.minicart-modal-content--dynamic, .page_header--dynamic.nav-down+.minicart-modal-content--dynamic {
    transform: translate(0, 0) !important;
}
.minicart-attribute_value {
    font-weight: 700;
}
.minicart-badge {
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-top: 15px;
    padding-inline: 5px;
}
.minicart.active .minicart-icon {
    display: none;
}
.minicart.active .minicart-icon--active {
    display: block;
}
.minicart.active .minicart-quantity {
    color: #fff;
}
.minicart_close {
    z-index: 1;
    cursor: pointer;
}
@media (min-width: 1280px) {
    .minicart-recommender .swiper-wrapper {
        min-height: 416px;
    }
}
.minicart-recommender .discount_percentage {
    text-align: center !important;
}
.minicart-recommender .recommendations_wide-controls {
    right: 6px;
}
.minicart-recommender .product_gallery-style_img {
    padding-right: 0;
}
.minicart-confirmation_popover {
    top: 54px !important;
    right: -10px !important;
    left: auto !important;
    width: 420px;
    max-width: 420px !important;
    min-height: auto !important;
    padding: 20px 45px 20px 55px;
    border: none;
    border-radius: 0;
    background-color: #333;
    color: #fff;
    font-size: 0.9375rem;
}
.minicart-confirmation_popover .btn-link {
    color: #fff;
}
.minicart-confirmation_popover::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 37px;
    border: 10px solid transparent;
    border-bottom-color: #333;
}
.minicart-confirmation_popover .close {
    top: 13px;
    right: 13px;
}
.minicart-confirmation_icon {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 18px;
    fill: #fff;
}
.minicart-confirmation_msg {
    font-size: 15px;
    line-height: 20px;
}
@media (min-width: 768px) {
    .minicart-confirmation_msg {
        line-height: 23px;
    }
}
.product_card-bonus_checkbox {
    position: absolute;
    top: 0;
    right: -2px;
    z-index: 5;
    padding-left: 20px;
}
.product_card-bonus_checkbox .custom-control-label::after,
.product_card-bonus_checkbox .custom-control-label::before {
    left: -20px;
}
@media (min-width: 1280px) {
    .product_card-bonus_checkbox {
        right: 7px;
        margin-top: 0;
    }
}
.product_card-bonus_checkbox--mini_cart {
    position: absolute;
    right: 5px;
    bottom: 15px;
    z-index: 5;
}
.product_card-disabled .item-attributes>:not(.header_minicart-product_info), .product_card-disabled .header_minicart-product_info>:not(.custom-checkbox), .product_card-disabled .item-image {
    opacity: 0.3;
}
.cart_progress_bar {
    margin: 18px;
    border-top: 1px solid #ccc;
}
.cart_progress_bar-wrapper {
    height: 0.7rem;
    margin: 8px;
    background-color: #d0d0d0;
}
.cart_progress_bar-progress {
    color: #d0d0d0;
    height: 1rem;
    background-color: #a0a0a0;
}
.cart_progress_bar-text {
    margin: 7px 0;
    text-align: center;
}
.header_minicart {
    padding: 20px 0;
    font-size: 0.9375rem;
}
@media (min-width: 1024px) {
    .header_minicart {
        overflow: hidden;
    }
}
.header_minicart .fsd-message {
    padding: 10px 15px;
    background-color: #f8f8f8;
    font-size: 14px;
}
.header_minicart .fsd-message.success-msg {
    background-color: #e5f5e5;
    font-size: 15px;
}
.header_minicart .fsd-message.success-msg .icon {
    width: 14px;
    height: 11px;
    margin-right: 5px;
}
.header_minicart-content .cart_progress_bar {
    margin: 0;
    border-top: none;
}
.header_minicart-content .cart_progress_bar-wrapper {
    height: 5px;
    margin: 0;
    background-color: #ccc;
}
.header_minicart-content .cart_progress_bar-wrapper.hide-progress {
    display: none;
}
.header_minicart-content .cart_progress_bar-progress {
    color: #090;
    height: 5px;
    background-color: #090;
}
.header_minicart-content .cart_progress_bar-text {
    margin: 12px 20px 10px;
    text-align: center;
    font-style: italic;
}
.header_minicart-content .cart_progress_bar .progress {
    border-radius: 0;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text {
    margin: 0;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text .fsd-msg {
    padding: 10px 15px;
    background-color: #f8f8f8;
    font-size: 14px;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text .fsd-msg .icon {
    width: 14px;
    height: 11px;
    margin-right: 5px;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text .fsd-msg.success-message {
    background-color: #e5f5e5;
    font-size: 15px;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text .tier-msg {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #f8f8f8;
    font-size: 15px;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text .tier-msg .icon {
    width: 14px;
    height: 11px;
    margin-right: 5px;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text .tier-msg.plain-success-tier-message {
    background-color: #e5f5e5;
    text-align: center !important;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text .tier-msg:lang(ja) {
    text-align: left;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text.gold-member {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text.gold-member .fsd-msg {
    order: 2;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text.gold-member .tier-msg {
    order: 1;
    margin-top: 0;
    background-color: #e5f5e5;
    text-align: center !important;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text.gold-member .tier-msg .icon {
    width: 14px;
    height: 11px;
    margin-right: 5px;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text.highest-tier-qualified {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text.highest-tier-qualified .fsd-msg {
    order: 2;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text.highest-tier-qualified .tier-msg {
    order: 1;
    margin-top: 0;
    background-color: #e5f5e5;
    text-align: center !important;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text.highest-tier-qualified .tier-msg .icon {
    width: 14px;
    height: 11px;
    margin-right: 5px;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-text.platinum-member .fsd-msg {
    display: none;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-progress {
    color: #333;
    background-color: #333;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar-wrapper.hide-progress {
    display: none;
}
.header_minicart-content .progress-bar_revamped .cart_progress_bar .highlight {
    font-weight: 600;
}
.header_minicart-body {
    min-width: 263px;
    padding: 10px 0;
}
.header_minicart-body--bonus_disabled::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(240, 240, 240, 0.3);
}
.header_minicart-product_card {
    position: relative;
    padding-right: 15px;
    padding-left: 10px;
    border-bottom: 1px solid #f0f0f0;
}
.header_minicart-product_card--bonus {
    z-index: 1;
    margin: 0 !important;
    padding-top: 17px;
    background-color: #ffc;
}
.header_minicart-product_card:nth-child(2) .header_minicart-body {
    border-top: 0;
}
.header_minicart-promo {
    color: #999;
    text-align: center;
}
.header_minicart-promo .content-asset {
    padding: 9px 0;
}
.header_minicart-product_info {
    display: flex;
    align-items: center;
    margin-top: 20px;
    line-height: 1;
}
.header_minicart-product_info--bonus {
    position: relative;
}
.header_minicart-attr_and_opts {
    flex: 1 0 0;
}
.header_minicart-total {
    margin: 0;
    padding: 11px 0;
    font-size: 1.285em;
    font-weight: 700;
}
.header_minicart-total_value, .header_minicart-total_label {
    margin-bottom: 0;
}
.header_minicart-total_value {
    float: right;
}
.header_minicart-product_name:hover {
    text-decoration: none;
}
.header_minicart .product-line-item-details {
    overflow-y: visible;
}
.header_minicart .quantity-form {
    display: flex;
    align-items: center;
    margin: 0;
    text-align: center;
}
.header_minicart .quantity-form--bonus {
    margin-right: 75px;
}
.header_minicart .product-summary {
    position: relative;
    min-width: 340px;
    height: calc(100vh - 145px);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
}
.header_minicart .product-summary .header_minicart-product_info {
    margin-top: 15px;
}
.header_minicart .product-summary .header_minicart-attr_and_opts {
    align-self: flex-start;
}
.header_minicart .product-summary .quantity-form {
    align-self: flex-end;
    margin-bottom: 5px;
}
@media (min-width: 1024px) and (max-height: 740px) {
    .page_header.is-sticky .header_minicart .product-summary {
        max-height: 320px;
    }
}
@media (min-width: 1024px) and (max-height: 700px) {
    .page_header.is-sticky .header_minicart .product-summary {
        max-height: calc(100vh - 380px);
    }
}
.header_minicart .quantity {
    width: 50px;
    height: 40px;
    font-weight: 700;
    margin-left: 5px;
}
.header_minicart .line-item-attributes {
    font-size: 0.9375rem;
}
.header_minicart .quantity-label {
    font-size: 0.9375rem;
    vertical-align: middle;
}
.header_minicart .item-image {
    position: relative;
    width: auto;
    min-width: 120px;
    height: auto;
    max-height: 160px;
    margin-right: 10px;
    background-color: #f5f5f5;
}
.header_minicart .product_image {
    max-width: 120px;
}
.header_minicart .product_image-wrapper--giftcert {
    display: flex;
    height: 100%;
}
.header_minicart .product_image--giftcert {
    align-self: center;
    border-radius: 5px;
}
.header_minicart .line-item-availability {
    display: none;
}
.header_minicart .quantity-form--bonus .quantity-label {
    vertical-align: baseline;
}
.header_minicart .price {
    font-size: 0.9375rem;
}
.header_minicart .discount_percentage {
    text-align: left;
}
.header_minicart .price .sales {
    font-weight: 400;
}
.header_minicart .item-attributes {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.header_minicart .line-item-name {
    margin: 0;
    white-space: normal;
    color: #000;
}
.header_minicart .strike-through {
    color: #000 !important;
    font-weight: 400;
}
.header_minicart .sales-discount,
.header_minicart .line-item-notavailable {
    color: #c00;
}
.header_minicart-remove_confirmation {
    position: absolute;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    padding: 30px 20px 25px;
    border: 0;
    background-color: rgba(255, 255, 255, 0.9);
    transform: none !important;
}
.header_minicart-removed_msg {
    z-index: 4;
    padding: 40px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
.header_minicart-removed_msg.active {
    z-index: 6;
    opacity: 1;
}
.header_minicart-confirmation_buttons {
    gap: 20px;
}
.header_minicart-confirmation_btn {
    width: 100%;
    margin-top: 20px;
}
.header_minicart .remove-line-item {
    position: static;
    align-self: end;
    margin-bottom: 5px;
}
.minicart_footer {
    position: fixed;
    right: 0;
    bottom: 15px;
    z-index: 30;
    width: 100%;
    max-width: 420px;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: 0 -5px 5px -5px #ccc;
}
.minicart_footer:lang(de) {
    max-width: 450px;
    padding: 0 10px;
}
.minicart_footer .gpay-button {
    box-shadow: none;
}
.minicart_footer-buttons {
    display: flex;
    gap: 10px;
    margin-top: -1px;
}
.minicart_footer-shopping_bag, .minicart_footer-checkout_continue {
    width: 100%;
}
.minicart .minicart_footer-remove_btn {
    position: static;
    display: flex;
    float: none;
    width: 40px;
    height: 40px;
    margin-top: 0;
    color: #000;
    text-align: center;
}
.minicart_footer-remove_icon {
    display: inline-block;
    width: 14px !important;
    height: 14px !important;
    margin: auto 0 auto auto;
    border: none;
}
.minicart_footer .btn {
    width: 100%;
}
.minibag_modal {
    z-index: 1061;
    width: 100%;
}
.minibag_modal-content {
    left: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 41px 15px 14px;
    border: none;
    border-radius: 0;
    background-color: #333;
}
@media (min-width: 768px) {
    .minibag_modal-content {
        padding: 15px 44px 15px 30px;
    }
}
.minibag_modal-dialog {
    vertical-align: bottom;
    margin: 0;
}
.minibag_modal-close {
    position: absolute;
}
.minibag_modal-body {
    padding: 0;
}
.minibag_modal-body_text {
    color: #fff;
    padding-left: 35px;
}
.minibag_modal-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px !important;
    height: 20px !important;
    fill: #fff !important;
    color: #fff;
}
.minibag_modal-product_name {
    font-weight: 700;
}
.minibag_modal-adding_text {
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
}
.minibag_modal-cart_link {
    color: #fff;
}
.minibag_modal-cart_link:hover {
    color: #fff;
}
.minibag_modal .warning_msg {
    margin: -15px -41px 20px -16px;
    border-radius: 0;
}
@media (min-width: 768px) {
    .minibag_modal .warning_msg {
        margin: -15px -44px 20px -30px;
    }
}
.gift_minicart_info {
    margin: 15px 0 -15px;
}
.gift_minicart_info-error {
    margin: 26px 0 -15px;
}
.minicart_express_buttons-wrapper {
    bottom: -100%;
    display: none;
}
.minicart_express_buttons-wrapper--shown {
    position: fixed;
    right: 0;
    z-index: 1062 !important;
    display: block;
    width: 420px;
    padding: 30px 20px;
    background-color: #fff;
    box-shadow: 0 -5px 5px -5px #ccc;
}
.minicart_express_buttons-wrapper div:not(:last-child) {
    margin-bottom: 15px;
}
.minicart_express_buttons-close {
    position: absolute;
    top: 10px;
    right: 10px;
}
.minicart_express_buttons-title {
    font-size: 14px;
    text-align: center;
}
.apple_pay-icon {
    width: 46px !important;
    height: 18px !important;
}
.swatch-circle-beige {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #f5f5dc;
    position: relative;
    display: block;
}
.swatch-circle-beige.disabled {
    opacity: 0.2;
}
.swatch-filter-beige {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #f5f5dc;
    position: relative;
    display: block;
    background-color: #f5f5dc;
}
.swatch-filter-beige.disabled {
    opacity: 0.2;
}
.swatch-circle-black {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #000;
    position: relative;
    display: block;
}
.swatch-circle-black.disabled {
    opacity: 0.2;
}
.swatch-filter-black {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #000;
    position: relative;
    display: block;
    background-color: #000;
}
.swatch-filter-black.disabled {
    opacity: 0.2;
}
.swatch-circle-blue {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #06f;
    position: relative;
    display: block;
}
.swatch-circle-blue.disabled {
    opacity: 0.2;
}
.swatch-filter-blue {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #06f;
    position: relative;
    display: block;
    background-color: #06f;
}
.swatch-filter-blue.disabled {
    opacity: 0.2;
}
.swatch-circle-brown {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #a52a2a;
    position: relative;
    display: block;
}
.swatch-circle-brown.disabled {
    opacity: 0.2;
}
.swatch-filter-brown {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #a52a2a;
    position: relative;
    display: block;
    background-color: #a52a2a;
}
.swatch-filter-brown.disabled {
    opacity: 0.2;
}
.swatch-circle-green {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #090;
    position: relative;
    display: block;
}
.swatch-circle-green.disabled {
    opacity: 0.2;
}
.swatch-filter-green {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #090;
    position: relative;
    display: block;
    background-color: #090;
}
.swatch-filter-green.disabled {
    opacity: 0.2;
}
.swatch-circle-grey {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #8f979d;
    position: relative;
    display: block;
}
.swatch-circle-grey.disabled {
    opacity: 0.2;
}
.swatch-filter-grey {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #8f979d;
    position: relative;
    display: block;
    background-color: #8f979d;
}
.swatch-filter-grey.disabled {
    opacity: 0.2;
}
.swatch-circle-navy {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #000080;
    position: relative;
    display: block;
}
.swatch-circle-navy.disabled {
    opacity: 0.2;
}
.swatch-filter-navy {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #000080;
    position: relative;
    display: block;
    background-color: #000080;
}
.swatch-filter-navy.disabled {
    opacity: 0.2;
}
.swatch-circle-orange {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #ffa500;
    position: relative;
    display: block;
}
.swatch-circle-orange.disabled {
    opacity: 0.2;
}
.swatch-filter-orange {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #ffa500;
    position: relative;
    display: block;
    background-color: #ffa500;
}
.swatch-filter-orange.disabled {
    opacity: 0.2;
}
.swatch-circle-pink {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #fe249a;
    position: relative;
    display: block;
}
.swatch-circle-pink.disabled {
    opacity: 0.2;
}
.swatch-filter-pink {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #fe249a;
    position: relative;
    display: block;
    background-color: #fe249a;
}
.swatch-filter-pink.disabled {
    opacity: 0.2;
}
.swatch-circle-purple {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #800080;
    position: relative;
    display: block;
}
.swatch-circle-purple.disabled {
    opacity: 0.2;
}
.swatch-filter-purple {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #800080;
    position: relative;
    display: block;
    background-color: #800080;
}
.swatch-filter-purple.disabled {
    opacity: 0.2;
}
.swatch-circle-red {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #f00;
    position: relative;
    display: block;
}
.swatch-circle-red.disabled {
    opacity: 0.2;
}
.swatch-filter-red {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #f00;
    position: relative;
    display: block;
    background-color: #f00;
}
.swatch-filter-red.disabled {
    opacity: 0.2;
}
.swatch-circle-white {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #fff;
    position: relative;
    display: block;
}
.swatch-circle-white.disabled {
    opacity: 0.2;
}
.swatch-filter-white {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #fff;
    position: relative;
    display: block;
    background-color: #fff;
}
.swatch-filter-white.disabled {
    opacity: 0.2;
}
.swatch-circle-yellow {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #ff0;
    position: relative;
    display: block;
}
.swatch-circle-yellow.disabled {
    opacity: 0.2;
}
.swatch-filter-yellow {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #ff0;
    position: relative;
    display: block;
    background-color: #ff0;
}
.swatch-filter-yellow.disabled {
    opacity: 0.2;
}
.swatch-circle-miscellaneous {
    position: relative;
    display: block;
    width: 2.5em;
    height: 2.5em;
    border: 0.063em solid rgba(0, 0, 0, 0.3);
    border-radius: 1.25em;
    background: linear-gradient(0deg, #821e91 0, #821e91 25%, #edd134 25%, yellow 50%, #edd134 50%, #59ba00 50%, #59ba00 76%, #111 76%, #111 100%), linear-gradient(0deg, #0e5cd1 0, #0e5cd1 50%, #e20b0b 50%, #e20b0b 100%);
    background-repeat: repeat-y, repeat;
    background-size: 50% 100%, 100% 100%;
    transform: rotate(35deg);
}
.swatch-circle-miscellaneous.disabled {
    opacity: 0.2;
}
.swatch-circle-miscellaneous.selected::after {
    transform: rotate(-35deg);
}
.icon.header_search-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 15px;
    height: 16px;
    transform: translateY(-50%);
    stroke: currentColor;
}
.icon.header_search-icon--desktop, .icon.header_search-icon--mobile {
    width: 18px;
    height: 18px;
}
[dir=rtl] .icon.header_search-icon {
    right: 5px;
    left: 10px;
}
@media (min-width: 768px) {
    .icon.header_search-icon {
        width: 16px;
        height: 16px;
        left: 10px;
    }
}
.header_search {
    position: relative;
    margin-top: -3px;
    margin-right: 18px;
}
@media (min-width: 1280px) {
    .header_search {
        margin-top: 0;
        margin-right: 0;
    }
    .header_search-desktop_icon {
        position: relative;
        left: 0;
        padding: 20px;
        cursor: pointer;
    }
}
.header_search-field {
    width: 100px;
    height: 25px;
    padding-right: 10px;
    padding-left: 35px;
    border: 1px solid #ccc;
    border-radius: 50px;
    transition: width 0.2s ease-in-out;
    caret-color: #06f;
}
.header_search-field--active, .header_search-field:focus, .header_search-field:active {
    border-color: #000;
    overflow: hidden;
    outline: 0;
    text-overflow: initial;
}
.search_desktop-icon {
    color: #666 !important;
}
.search_desktop.search--active .search_desktop-icon {
    color: #000;
}
.search_desktop-input {
    width: 200px;
    height: 30px;
    border-color: #f0f0f0;
    border-radius: 5px;
    background-color: #f8f8f8;
    color: #666;
}
.search--active .search_desktop-input, .search_desktop-input:focus, .search_desktop-input:active {
    color: #000;
    border-color: #ccc;
    /* stylelint-disable selector-no-vendor-prefix */
}
.search--active .search_desktop-input::-webkit-input-placeholder, .search_desktop-input:focus::-webkit-input-placeholder, .search_desktop-input:active::-webkit-input-placeholder {
    color: #999;
}
.search--active .search_desktop-input::-moz-placeholder, .search_desktop-input:focus::-moz-placeholder, .search_desktop-input:active::-moz-placeholder {
    color: #999;
}
.search--active .search_desktop-input:-moz-placeholder, .search_desktop-input:focus:-moz-placeholder, .search_desktop-input:active:-moz-placeholder {
    color: #999;
}
.search--active .search_desktop-input:-ms-input-placeholder, .search_desktop-input:focus:-ms-input-placeholder, .search_desktop-input:active:-ms-input-placeholder {
    color: #999;
}
@media (max-width: 374.98px) {
    .site-search {
        display: none;
    }
}
.site_nav_search_form {
    position: relative;
    display: block;
}
.site_nav_search_form-input {
    height: 51px;
    padding: 0 25px;
    border: 0;
    border-color: #000;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    color: #000;
}
.site_nav_search_form .header_search-icon {
    color: #000;
    height: auto;
}
@media (min-width: 1024px) {
    .site_nav_search_form .header_search-icon {
        left: 0;
    }
}
.site_nav_search_form .header_search-icon.simple_search-icon {
    right: 5px !important;
    left: unset !important;
    color: inherit !important;
}
.site_nav_search_form-clear {
    position: absolute;
    top: 50%;
    right: 10px;
    left: unset;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: #ccc;
    transform: translateY(-50%);
    cursor: pointer;
}
.site_nav_search_form-visenze_close {
    right: 35px;
    left: unset;
}
.site_nav_search_form-clear_icon {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 7px !important;
    height: 7px !important;
    color: #fff;
}
.simple_search {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    max-height: 60px;
    background-color: #fff;
}
@media (min-width: 1280px) {
    .simple_search {
        position: fixed;
        max-height: -webkit-fit-content;
        max-height: -moz-fit-content;
        max-height: fit-content;
    }
}
.simple_search-controls {
    align-items: center;
    padding: 10px 13px;
}
@media (min-width: 768px) {
    .simple_search-controls {
        padding: 0 31px 15px;
    }
}
@media (min-width: 1280px) {
    .simple_search-controls {
        max-width: 640px;
        margin-right: auto;
        margin-left: auto;
        padding: 15px 31px;
    }
}
.simple_search-form_inner {
    position: relative;
    flex: 1 1 100%;
}
.simple_search-back_btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -10px;
    padding: 0;
    background-color: transparent;
}
.simple_search-back_btn_icon {
    width: 15px;
    height: 15px;
    fill: #000;
}
.simple_search-icon {
    top: 21px;
    right: 10px;
    height: 0;
    transition: height 0.2s ease-in-out;
}
.simple_search.show .simple_search-icon {
    height: 15px;
}
@media (min-width: 1280px) {
    .simple_search.show .simple_search-icon {
        width: 18px;
        height: 18px;
    }
}
.simple_search-input {
    height: 40px;
    padding: 10px 38px 9px 10px;
    border: 0;
    border-radius: 5px;
    background: #f0f0f0;
    caret-color: #06f;
}
@media (min-width: 1024px) {
    .simple_search-input {
        padding-left: 35px;
    }
}
@media (min-width: 1280px) {
    .simple_search-input {
        padding-left: 15px;
    }
}
.simple_search-input:focus {
    background: #f0f0f0;
}
.simple_search-input:focus~.simple_search-icon {
    color: #000 !important;
}
.simple_search-cancel {
    padding: 10px 5px 10px 15px;
}
.simple_search-cancel, .simple_search-cancel:hover {
    color: #666;
}
.simple_search_trigger {
    color: inherit;
    width: auto;
    height: 30px;
    z-index: 2;
    display: none;
    margin-right: 8px;
    padding: 0 20px 0 0;
    background: transparent;
}
@media (min-width: 375px) {
    .simple_search_trigger {
        width: 30px;
        height: 30px;
    }
}
.simple_search_trigger.collapsed {
    display: inline-block;
}
.simple_search_trigger-icon {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: currentColor;
    opacity: 1;
}
.header_login {
    position: relative;
}
@media (min-width: 1024px) {
    .header_login {
        margin-right: 10px;
    }
}
.header_login-link:focus {
    outline: none;
}
.header_login-link:focus-visible {
    outline: 2px solid #333;
}
.header_login-icon {
    width: 20px;
    height: 20px;
    transform: scale(1.05);
}
@media (min-width: 768px) {
    .header_login-icon {
        width: 26px;
        height: 26px;
        transform: none;
    }
}
.header_login-close_icon {
    width: 15px;
    height: 15px;
}
.header_login-menu_content {
    margin-bottom: 30px;
}
@media (min-width: 1024px) {
    .header_login-menu_content {
        margin-bottom: 0;
    }
}
.header_login-menu_content .outsite_signin_divider {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 20px 0 15px;
}
.header_login-menu_content .outsite_signin_divider-liner {
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
.header_login-menu_content .outsite_signin_divider-text {
    color: #666;
    white-space: nowrap;
}
.header_login-menu {
    position: fixed !important;
    border: 0;
    overflow-y: auto;
    filter: drop-shadow(rgba(0, 0, 0, 0.25) 0 0 2px);
}
.header_login-menu--unregistered {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 30px 15px;
    border-radius: 0;
}
@media (min-width: 420px) {
    .header_login-menu--unregistered {
        right: 0;
        left: auto;
        width: 420px;
    }
}
@media (min-width: 1280px) {
    .header_login-menu--unregistered {
        top: 50px;
        right: 10px;
        width: 375px;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        border-radius: 5px;
    }
}
.header_login-create_account_btn {
    margin-top: 0.5rem;
}
.header_login-dropdown_background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
}
.header_login .outsite_signin_divider {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 10px 0;
}
.header_login .outsite_signin_divider-liner {
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
.header_login .outsite_signin_divider-text {
    color: #666;
    white-space: nowrap;
}
.header_login-title,
.header_create_account-title {
    margin-bottom: 10px;
    padding-top: 20px;
    text-transform: uppercase;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}
.header_login-title:lang(vi) {
    font-size: 0.875rem;
}
.header_login-title--jp {
    font-size: 16px;
}
@media (min-width: 1024px) {
    .header_login-title--jp {
        font-size: 18px;
    }
}
.header_login-title--atome {
    font-size: 24px;
}
.header_create_account-title {
    position: relative;
    margin-top: 25px;
}
.header_create_account-title::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: -15px;
    width: calc(100% + 30px);
    height: 1px;
    border-bottom: 1px solid #ccc;
}
.header_create_account-title:lang(vi) {
    font-size: 0.875rem;
}
.header_create_account-title--jp {
    font-size: 16px;
}
@media (min-width: 1024px) {
    .header_create_account-title--jp {
        font-size: 18px;
    }
}
.login_form {
    position: relative;
}
.login_form-text {
    margin: 0.125rem 0 1.125rem;
    text-align: center;
}
@media (min-width: 768px) {
    .login_form-text {
        margin-top: 0.25rem;
    }
}
.login_form-text--jp {
    font-size: 13px;
    text-align: left;
}
@media (min-width: 1024px) {
    .login_form-text--jp {
        font-size: 14px;
    }
}
.user_registered_menu-item {
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    text-align: center;
}
.user_registered_menu-item:hover, .user_registered_menu-item:focus {
    text-decoration: underline;
}
.member_allert {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    text-align: center;
}
.member_allert-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.atome_login-modal_content {
    max-width: 335px;
}
@media (min-width: 768px) {
    .atome_login-modal_content {
        max-width: 476px;
    }
}
.atome_login-modal_body {
    padding: 20px 20px 0 !important;
}
@media (min-width: 768px) {
    .atome_login-modal_body {
        padding: 30px 30px 20px !important;
    }
}
.forgot_password-link {
    padding-top: 15px;
    padding-bottom: 0;
}
.forgot_password-link--jp {
    font-size: 14px;
}
.legal-page-container {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    padding-top: 1.875rem;
    padding-right: 15px;
    padding-left: 15px;
}
@media (max-width: 767.98px) {
    .legal-page-container {
        flex-direction: column;
        padding-top: 0.9375rem;
    }
}
@media (min-width: 768px) {
    .legal-page-container {
        padding-right: clamp(0.9375rem, 5vw, 4.5625rem);
        padding-left: clamp(0.9375rem, 5vw, 4.5625rem);
    }
}
@media (min-width: 375px) {
    .legal-page-container {
        max-width: initial;
    }
}
.legal-page-container .page_side-menu--select_item {
    font-size: 1.5rem;
    font-weight: 700;
}
.legal-page-container .page_side-menu--items .index-text {
    display: inline-block;
    padding-bottom: 0.9375rem;
    text-decoration: none;
    color: inherit;
}
.legal-page-container .page_side-menu--items .index-test-sublinks {
    margin-bottom: 0.9375rem;
    padding: 0.9375rem 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 1023.98px) {
    .legal-page-container .page_side-menu--items .index-test-sublinks {
        margin-bottom: initial;
        padding: 1.25rem 0 1.875rem;
        border-top: initial;
        border-bottom-color: #ccc;
    }
}
.legal-page-container .page_side-menu--items .index-test-sublinks .index-test-linkslist {
    margin: initial;
    border-left: 0.3125rem solid #f0f0f0;
    text-decoration: underline;
    -webkit-padding-start: 2rem;
            padding-inline-start: 2rem;
}
@media (min-width: 768px) {
    .legal-page-container .page_side-menu--items {
        width: 18.125rem;
    }
}
@media (max-width: 1023.98px) {
    .legal-page-container .page_side-menu--items {
        width: 11.875rem;
    }
}
.legal-page-container .page_side-menu--sublist_dropdown .sublist_accordion {
    padding: 0.9375rem 0 0.9375rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 1023.98px) {
    .legal-page-container .page_side-menu--sublist_dropdown .sublist_accordion {
        padding: 0.9375rem 0;
    }
    .legal-page-container .page_side-menu--sublist_dropdown .sublist_accordion:last-child {
        padding-bottom: 1.875rem;
        border-bottom: 1px solid #ccc;
    }
}
@media (max-width: 1023.98px) {
    .legal-page-container .page_side-menu .index-test-sublinks-fw {
        width: 100% !important;
    }
}
.legal-page-container .page_side-menu .index-test-sublinks-tc {
    margin: initial;
    padding-bottom: initial;
    border: initial;
}
@media (max-width: 1023.98px) {
    .legal-page-container .page_side-menu .index-test-sublinks-tc {
        padding-top: 0.9375rem;
    }
}
.legal-page-container .page_side-menu .sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 7.5rem;
    height: calc(100dvh - 120px);
    overflow-y: auto;
    scrollbar-width: none;
}
.legal-page-container .page_content-body {
    padding-bottom: 5rem;
}
@media (max-width: 767.98px) {
    .legal-page-container .page_content-body {
        padding-bottom: 1.875rem;
    }
}
.legal-page-container .page_content-body--heading {
    display: inline-block;
    margin: initial;
}
.legal-page-container .page_content-body--item .page-content__text {
    display: flex;
    justify-content: space-between;
    margin: initial;
    padding-bottom: 0.625rem;
}
.legal-page-container .page_content-body--item .page-content__text span:first-child {
    display: inline-block;
    width: 85%;
}
.legal-page-container .page_content-body--item .page-content__text:last-child {
    padding-bottom: 0;
}
.legal-page-container .page_content-body--item:nth-of-type(1) .page-content__text {
    padding-bottom: 1.25rem;
}
.legal-page-container .page_content-body--list_group {
    font-weight: 600;
}
.legal-page-container .page_content-body--list_group .pp-list-items {
    margin-bottom: initial;
    padding-left: 0.625rem;
    list-style-type: none;
    font-weight: 400;
}
.legal-page-container .page_content-body--list_group .pp-list-items li {
    padding-bottom: 1.25rem;
}
.legal-page-container .page_content-body--list_group .pp-list-items li:last-child {
    padding-bottom: 0;
}
.legal-page-container .page_content-body--list_group .pp-list-items .pp-list-items-type2 li {
    padding-bottom: 1.25rem !important;
}
.legal-page-container .page_content-body--list_group .pp-list-items .pp-sublist-items {
    list-style-type: disc;
}
@media (max-width: 767.98px) {
    .legal-page-container .page_content-body--list_group .pp-list-items .pp-sublist-items {
        padding-left: 1.5625rem;
    }
}
.legal-page-container .page_content-body--list_group .pp-list-items .pp-sublist-items li {
    padding-bottom: initial;
}
.legal-page-container .page_content-body--list_group .pp-list-items .pp-sublist-items .pp-sublist-item-level2 {
    padding-top: 1.25rem;
    list-style-type: disc;
}
.legal-page-container .page_content-body--list_group .pp-list-items .pp-sublist-items .pp-sublist-item-level2 li {
    padding-bottom: initial;
}
@media (max-width: 767.98px) {
    .legal-page-container .page_content-body--list_group .pp-list-items .pp-sublist-items .pp-sublist-item-level2 {
        padding-left: 1.5625rem;
    }
}
.legal-page-container .page_content-body--list_group .pp-list-items-group {
    padding-bottom: 3.125rem;
}
@media (max-width: 1023.98px) {
    .legal-page-container .page_content-body--list_group .pp-list-items-group {
        padding-bottom: 1.875rem;
    }
}
.legal-page-container .page_content-body--list_group .pp-list-items-group .pp-sublist-head {
    display: block;
    padding-bottom: 1.25rem;
}
.legal-page-container .page_content-body--list_group .pp-list-items-group .sublist-tnc {
    display: block;
    padding: 3.125rem 0 1.25rem;
    border-bottom: 1px solid #ccc;
    font-size: 1.125rem;
}
@media (max-width: 767.98px) {
    .legal-page-container .page_content-body--list_group .pp-list-items-group .sublist-tnc {
        padding-top: 1.25rem;
    }
}
.legal-page-container .page_content-body--list_group .pp-list-items-group .sublist-tnc-items {
    margin-bottom: initial;
    padding-top: 1.875rem;
    padding-left: 1.25rem;
    font-weight: 400;
    /* stylelint-disable no-descending-specificity */
}
.legal-page-container .page_content-body--list_group .pp-list-items-group .sublist-tnc-items li {
    padding-bottom: 1.25rem;
}
.legal-page-container .page_content-body--list_group .pp-list-items-group .sublist-tnc-items li:last-child {
    padding-bottom: 0;
}
@media (max-width: 1023.98px) {
    .tnc-wrapper {
        flex-direction: column;
        padding-top: 0.9375rem;
    }
}
.custom-toggle-arrow {
    width: 0.625rem;
    height: 0.625rem;
    margin-right: 0.625rem;
    transition: transform 0.3s ease;
}
.custom-toggle-title {
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    cursor: pointer;
    color: #333;
}
@media (max-width: 767.98px) {
    .custom-toggle-title {
        align-items: baseline;
    }
}
.custom-toggle-element_heading {
    line-height: 1.375rem;
    font-size: 0.9375rem;
}
.custom-toggle-static_content {
    width: 33.4244rem;
}
@media (max-width: 767.98px) {
    .custom-toggle-static_content {
        width: 16.3619rem;
    }
}
.revamped_consent_tracking .bs-modal_fix {
    padding: initial;
}
.revamped_consent_tracking-dialog .modal-content {
    max-width: 40.5rem;
    height: 43.625rem;
    overflow-y: scroll;
}
@media (max-width: 767.98px) {
    .revamped_consent_tracking-dialog .modal-content {
        max-width: 21.5625rem;
        height: 36.8125rem;
    }
}
.revamped_consent_tracking-dialog .modal-content .close {
    top: 0.9375rem;
    right: 0.9375rem;
}
.revamped_consent_tracking-dialog--active {
    margin: auto;
}
@media (min-width: 768px) {
    .revamped_consent_tracking-dialog {
        max-width: 53.75rem;
    }
    .revamped_consent_tracking-dialog--definition {
        padding-bottom: 0.625rem;
        border-bottom: 1px solid #ccc;
    }
    .revamped_consent_tracking-dialog--definition p {
        margin: initial;
        padding-bottom: 1.25rem;
    }
    .revamped_consent_tracking-dialog--form {
        padding-top: 0.625rem;
    }
}
.revamped_consent_tracking-header {
    display: block;
    margin: 1.875rem 1.875rem 0;
    padding: 0 0 1.25rem;
    font-size: 1.125rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}
@media (max-width: 767.98px) {
    .revamped_consent_tracking-header {
        margin: 1.875rem 0.9375rem 0;
    }
}
.revamped_consent_tracking-body {
    padding: 1.25rem 0.9375rem;
}
@media (min-width: 768px) {
    .revamped_consent_tracking-body {
        padding: 1.875rem;
    }
}
.revamped_consent_tracking-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.revamped_consent_tracking-button-wrapper .btn {
    padding: 0.625rem 5.5313rem;
}
.revamped_consent_tracking-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.revamped_consent_tracking-item_text {
    padding: 0.3125rem 0 0 1.25rem;
}
.revamped_consent_tracking-link_msg {
    display: block;
    font-size: 0.9375rem;
    padding: 1.875rem 0;
}
.revamped_sticky_cookie-hint {
    padding: 0.3125rem 0.3125rem 1.25rem;
    text-align: left;
    line-height: 1.8;
}
@media (min-width: 1024px) {
    .revamped_sticky_cookie-hint {
        padding: 1.25rem 1.25rem 0.9375rem;
    }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
    .revamped_sticky_cookie-hint {
        padding: 0.3125rem 0.3125rem 0.625rem;
    }
}
.revamped_sticky_cookie-link {
    text-decoration: underline;
}
.revamped_sticky_cookie-link:hover {
    text-decoration: none;
}
.revamped_sticky_cookie-buttons {
    display: flex;
    justify-content: center;
    -moz-column-gap: 0.9375rem;
         column-gap: 0.9375rem;
    padding: 0.625rem 0.3125rem 0.3125rem;
}
@media (min-width: 1024px) {
    .revamped_sticky_cookie-buttons {
        margin-bottom: 1.25rem;
        padding: 0 1.25rem;
    }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
    .revamped_sticky_cookie-buttons {
        margin-bottom: 0.3125rem;
        padding: 0 0.3125rem;
    }
}
@media (max-width: 767.98px) {
    .revamped_sticky_cookie-buttons {
        flex-direction: column-reverse;
        row-gap: 0.9375rem;
    }
}
.revamped_sticky_cookie-buttons .btn {
    width: 100%;
}
.slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #999;
    cursor: pointer;
    transition: 0.4s;
}
.slider::before {
    content: "";
    position: absolute;
    bottom: 0.25rem;
    left: 0.25rem;
    width: 0.875rem;
    height: 0.875rem;
    background-color: #fff;
    transition: 0.4s;
}
.slider.round {
    border-radius: 1.3125rem;
}
.slider.round::before {
    border-radius: 50%;
}
input.default:checked+.slider {
    background-color: #444;
}
input.success:checked+.slider {
    background-color: #090;
}
input.success:disabled+.slider {
    opacity: 0.2;
}
input:checked+.slider::before {
    transform: translateX(1.3125rem);
}
.switch {
    position: relative;
    display: inline-block;
    width: 2.7006rem;
    height: 1.375rem;
    margin: initial;
}
.switch input {
    display: none;
}
.rotate {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}
.consent_tracking {
    z-index: 9999;
    padding: 0 20px !important;
}
.consent_tracking-dialog {
    max-width: 680px;
}
@media (min-width: 768px) {
    .consent_tracking-dialog {
        max-width: 860px;
        margin: 1.75rem auto;
    }
    .consent_tracking-dialog--active {
        max-width: 1220px;
    }
}
.consent_tracking-header {
    display: block;
    margin: 0 20px;
    padding: 14px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}
.consent_tracking-body {
    padding-top: 18px;
}
@media (min-width: 768px) {
    .consent_tracking-body {
        padding: 18px 30px 0;
    }
}
.consent_tracking .button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 14px;
}
@media (min-width: 768px) {
    .consent_tracking .button-wrapper {
        display: block;
        text-align: center;
    }
}
.consent_tracking .affirm {
    margin: 0 0 16px;
}
@media (min-width: 768px) {
    .consent_tracking .affirm {
        margin: 0 5px 16px;
    }
}
.consent_tracking p {
    margin: 0 0 21px;
}
.consent_tracking a {
    text-decoration: underline;
}
.sticky_cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 10px 15px;
    text-align: center;
}
@media (min-width: 1024px) {
    .sticky_cookie {
        padding: 10px 20px;
    }
}
.sticky_cookie-wrapper {
    padding: 10px;
    border: 1px solid #999;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
}
.sticky_cookie-link {
    text-decoration: underline;
}
.sticky_cookie-link:hover {
    text-decoration: none;
}
@media (min-width: 768px) {
    .sticky_cookie-buttons .btn {
        width: auto;
    }
}
.sticky_cookie-buttons .btn:last-child {
    margin-right: 10px;
    margin-left: 15px;
}
.mobile_header {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
    line-height: 1;
}
.mobile_header .page_header-back_btn {
    position: absolute;
    top: 13px;
    left: 22px;
    padding: 0;
    color: #000;
}
.country_switch {
    white-space: nowrap;
    text-decoration: underline;
    padding-right: 13px;
}
.country_switch-currency {
    vertical-align: bottom;
}
.country_switch .dropdown-menu {
    white-space: normal;
    min-height: 100px;
}
.country_switch:focus {
    outline: none;
}
.country_switch-link::after {
    display: none;
}
.country_switch-link:hover, .country_switch-link:focus .country_switch-current_country {
    text-decoration: none;
    outline: none;
}
.country_switch-link:hover .country_switch-current_country {
    text-decoration: underline;
}
.country_switch-divider {
    margin: 0 20px;
    border-bottom: 1px solid #ccc;
}
.country_switch.show .country_switch-current_country {
    text-decoration: underline;
}
.dropdown-menu.country_switch_selector {
    position: absolute;
    top: 100% !important;
    bottom: 0;
    left: 0;
    display: block !important;
    min-width: 100dvw !important;
    height: 100dvh !important;
    margin: 0;
    padding: 0;
    border: none;
    transform: translateY(20%) !important;
    opacity: 0;
    filter: drop-shadow(rgba(0, 0, 0, 0.25) 0 0 2px);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out 0.5s !important;
    color: #000;
    font-size: 0.9375rem;
}
.dropdown-menu.country_switch_selector.show {
    transform: translateY(-100%) !important;
    opacity: 1;
    transition: transform 0.5s ease-in-out, opacity 0.2s ease-in-out !important;
}
@media (min-width: 1280px) {
    .dropdown-menu.country_switch_selector.show {
        display: block !important;
    }
}
[dir=rtl] .dropdown-menu.country_switch_selector {
    left: auto;
}
@media (min-width: 1280px) {
    .dropdown-menu.country_switch_selector {
        top: -20px !important;
        bottom: unset;
        display: none !important;
        min-width: 320px !important;
        height: auto !important;
        min-height: 260px;
        transform: translateY(-100%);
    }
}
@media (max-height: 692px) {
    .country_switch_selector {
        height: calc(100vh - 180px);
    }
    .page_header.is-sticky .country_switch_selector {
        height: 515px;
    }
}
@media (max-height: 652px) {
    .page_header.is-sticky .country_switch_selector {
        height: calc(100vh - 140px);
    }
}
.country_switch_selector::before {
    /* stylelint-disable order/properties-order */
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    margin-top: -4px;
    /* stylelint-enable order/properties-order */
    bottom: 1px;
    /*rtl:begin:ignore*/
    left: 18%;
    /*rtl:end:ignore*/
    transform: translate(-50%, 100%);
}
[dir=rtl] .country_switch_selector::before {
    right: 5%;
}
@media (max-width: 1279.98px) {
    .country_switch_selector::before {
        display: none;
    }
}
.country_switch_selector-title, .country_switch_selector-body {
    line-height: 21px;
}
.country_switch_selector-title {
    padding: 16px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid #ccc;
}
@media (min-width: 1280px) {
    .country_switch_selector-title {
        padding: 20px 20px 0;
        border-bottom: none;
    }
}
.country_switch_selector-body {
    padding: 15px 20px;
}
@media (min-width: 1280px) {
    .country_switch_selector-body {
        padding: 0 20px;
    }
}
.country_switch_selector-close {
    top: 4px;
    right: 4px;
}
.country_language_box {
    padding-inline: 20px;
}
@media (min-width: 1280px) {
    .country_language_box {
        padding-bottom: 16px;
    }
}
.country_switch_search {
    position: relative;
    height: 35px;
    margin: 20px;
    padding: 0 10px 0 35px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
@media (min-width: 1280px) {
    .country_switch_search {
        margin: 15px 20px;
    }
}
.country_switch_search-input {
    width: 100%;
    height: 100%;
    padding: 0;
    vertical-align: middle;
    border: none;
    background: transparent !important;
}
.country_switch_search-input:focus {
    outline: none;
}
.country_language_list {
    position: relative;
    min-height: calc(100% - 300px);
    max-height: calc(100% - 300px);
    padding: 10px 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    overflow: auto;
    scrollbar-width: thin;
}
@media (min-width: 1280px) {
    .country_language_list {
        height: 250px;
        min-height: unset;
        max-height: calc(100% - 240px);
        padding: 10px 15px 10px 20px;
        border: none;
    }
}
.country_language_list-item {
    padding: 0;
    color: #000;
    white-space: normal;
}
.country_language_list-item:not(:last-child) {
    margin-bottom: 10px;
}
.country_language_list-item:hover, .country_language_list-item:focus, .country_language_list-item:active {
    background: none;
    color: #000;
}
.country_language_list-item:hover .country_language_list-name, .country_language_list-item:focus .country_language_list-name, .country_language_list-item:active .country_language_list-name {
    text-decoration: underline;
}
.country_language_list-item .icon-country-list {
    width: 14px;
    height: 14px;
    -webkit-margin-end: 10px;
            margin-inline-end: 10px;
}
.country_language_list-item .none-icon-country {
    margin-left: 24px;
}
.country_language_list-name {
    display: inline-flex;
    align-items: baseline;
}
.page_indent {
    padding: 0 20px !important;
}
.page_indent .logo {
    position: static;
}
.country_list {
    border-bottom: 1px solid #ccc;
}
.country_list-region {
    text-transform: uppercase;
    color: #000;
    line-height: 50px;
    border-top: 1px solid #f0f0f0;
    font-weight: 700;
    cursor: pointer;
}
.country_list-region:first-child {
    border-top: none;
}
.country_list-region .pointer_icon {
    width: 5px;
    height: 10px;
    margin: 0 10px 0 2px;
    vertical-align: baseline;
    transform: rotate(90deg);
    transition: transform 0.2s;
}
.country_list-region.collapsed {
    font-weight: 400;
}
.country_list-region.collapsed .pointer_icon {
    transform: rotate(0);
}
.country_list-content a {
    padding: 0 0 0 40px;
    border-top: 1px solid #f0f0f0;
    line-height: 50px;
}
.country_footer {
    text-align: center;
    color: #000;
}
.country_footer-title {
    text-transform: uppercase;
    line-height: 24px;
    font-weight: 700;
    padding: 20px 0 10px;
}
.country_footer-link {
    padding-bottom: 50px;
}
.world_global_icon {
    width: 12px;
    height: 12px;
    vertical-align: -1px;
    margin-right: 2px;
}
.language_change {
    position: relative;
    bottom: 0;
    width: 100%;
    background: #333;
    color: #fff;
}
@media (min-width: 768px) {
    .language_change {
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
    }
}
@media (min-width: 1280px) {
    .language_change {
        display: none;
    }
}
.language_change-content {
    padding: 15px 0;
}
.language_change-link {
    text-decoration: underline;
}
.language_change-container {
    position: absolute;
    bottom: -50px;
    width: 100%;
    height: 50px;
    background: #333;
    color: #fff;
}
.language_change-country_container {
    min-width: 50%;
    padding: 0 10px 0 20px;
    border-right: 1px solid #666;
}
.language_change-language_container {
    flex: 1;
    padding-left: 10px;
}
.language_current {
    display: inline-block;
    margin-right: 7px;
    padding-right: 10px;
    border-right: 1px solid #666;
}
.country_selector--international {
    padding-block: 15px;
}
.country_selector--international .country_switch_selector-body {
    font-size: 11px;
    font-weight: 600;
}
body:has(.country_switch_selector.show) {
    overflow: hidden;
}
.item_out_of_stock {
    margin-top: 223px;
}
@media (max-width: 1023.98px) {
    .item_out_of_stock {
        max-width: 350px;
        margin: 130px auto;
    }
}
.item_out_of_stock-text {
    margin: 0;
}
.item_out_of_stock-title {
    margin-bottom: 10px;
    font-size: 1.640625rem;
    font-weight: 700;
    line-height: 33px;
}
.item_out_of_stock-body {
    text-align: center;
    padding: 20px 0 40px;
}
.item_out_of_stock-body-button {
    width: 100%;
    max-width: 302px;
    margin-top: 40px;
}
@media (min-width: 1024px) {
    .item_out_of_stock-body-button {
        max-width: 352px;
    }
}
.notification {
    display: inline-flex;
}
.notification-label {
    font-size: 1rem;
    color: #000 !important;
    cursor: pointer;
}
.notification-wrapper {
    top: 0 !important;
    left: 210% !important;
    display: flex !important;
    flex-direction: column;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    transform: translate(0, 0) !important;
    transition: left 0.4s ease-in-out;
}
@media (min-width: 1024px) {
    .notification-wrapper {
        flex-direction: column !important;
        padding-top: 0 !important;
    }
}
.notification-wrapper.show {
    left: 0 !important;
}
.notification_header {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}
.notification_header .burger_close {
    right: 10px;
    left: auto;
    background-color: transparent;
}
@media (min-width: 1024px) {
    .notification_header-nav_dropdown_back.nav_dropdown_back, .notification_header-nav_breadcrumb.nav_breadcrumb, .notification_header-burger_close.burger_close {
        display: block;
    }
}
.notification-content, .notification-order_cards_container {
    width: 100%;
    overflow-y: auto;
}
.notification-spinner_container {
    position: relative;
    height: 90px;
}
.notification-breadcrumb_link {
    border-bottom: 0 !important;
}
.notification-order_updates {
    display: block;
    padding: 12px 15px;
    background-color: #f8f8f8;
    cursor: pointer;
}
.notification-order_updates_header {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}
.notification-order_updates_title {
    margin-left: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}
.notification-order_updates-icon_link {
    margin-left: auto;
}
.notification-order_updates-icon {
    width: 10px;
    height: 10px;
}
.notification-order_updates_message {
    max-width: 315px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notification-order_new_badge {
    margin-top: 5px;
    padding: 2px 7px;
    border-radius: 35px;
    background-color: #333;
    font-size: 8px;
    color: #fff;
    font-weight: 400;
}
.notification-tabs {
    display: flex;
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0 15px;
    border-bottom: 1px solid #f0f0f0;
}
.notification-tab {
    padding-bottom: 6px;
    list-style: none;
    cursor: pointer;
    color: #999 !important;
    text-transform: uppercase;
}
.notification-tab:not(:last-child) {
    margin-right: 25px;
}
.notification-tab.active {
    color: #000 !important;
    font-weight: 700;
    border-bottom: 2px solid #000;
}
.notification-menu_cards {
    min-height: 80px;
}
.notification-cards_container {
    display: flex;
    flex-direction: column;
}
.notification-no_message {
    padding: 30px 15px;
    text-align: center;
}
.notification-dot {
    width: 12px;
    height: 12px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
}
.notification-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
    transform: translate(-50%, -50%);
}
.notification-dot--mobile {
    top: -3%;
    right: 25%;
}
.notification-dot--mobile::after {
    width: 7px;
    height: 7px;
}
.notification_icon {
    width: 19px !important;
    height: 20px !important;
    margin-right: 10px;
}
.notification_icon-wrapper {
    position: relative;
}
.notification_icon-label {
    position: absolute;
    top: -5%;
    right: 10%;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #000;
    font-size: 9px;
    color: #fff;
    text-align: center;
}
.notification_card {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.notification_card-title {
    display: flex;
    justify-content: space-between;
    align-items: start;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}
.notification_card-image {
    width: 100%;
    margin-bottom: 10px;
}
.notification_card-link_text {
    margin-bottom: 0;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 0.875rem;
}
.notification_card:hover, .notification_card:focus {
    text-decoration: none;
}
.notification_card-footer {
    margin-top: 10px;
}
.notification_card-time {
    margin-left: auto;
    color: #999;
}
.notification_order_card {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.notification_order_card-image_wrapper {
    min-width: 60px;
    margin-right: 10px;
    border: 1px solid #f0f0f0;
}
.notification_order_card-image {
    width: 60px;
}
.notification_order_card-items_amount {
    margin-bottom: 0;
    font-size: 12px;
    text-align: center;
}
.notification_order_card-content {
    flex-shrink: 1;
}
.notification_order_card-title {
    display: flex;
    align-items: center;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3px;
}
.notification_order_card-new_badge {
    width: 10px;
    height: 10px;
    margin-left: auto;
    border-radius: 50%;
    background-color: #000;
}
.notification_order_card:hover, .notification_order_card:focus {
    text-decoration: none;
}
.notification_promo_code {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 9px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f8f8f8;
}
.notification_promo_code-text {
    font-weight: 700;
    font-size: 1rem;
    margin-right: auto;
}
.notification_promo_code-message {
    margin-right: 7px;
}
.notification_promo_code .tick-icon {
    width: 14px;
    height: 11px;
    fill: #090;
}
.dropdown-toggle--notification::after {
    display: none !important;
}
.truncate-3-lines {
    /* stylelint-disable-next-line value-no-vendor-prefix */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.login-auth-social_container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.login-auth-social_form {
    flex: 1;
    margin-top: 0 !important;
}
.gift_card_product-title {
    margin-bottom: 15px;
}
@media (min-width: 1280px) {
    .gift_card_product-title {
        margin-bottom: 0;
    }
}
.gift_card_product-product_number {
    font-size: 0.9375rem;
}
@media (min-width: 1024px) {
    .gift_card_product-align_remove {
        top: 22px;
    }
}
.gift_card_info {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 5px solid #f0f0f0;
}
.gift_card_info-text {
    margin: 15px 0;
}
@media (min-width: 1280px) {
    .recommendations .product_tile-image {
        min-height: 273px;
    }
}
@media (min-width: 1280px) {
    .recommendations .product_tile-attributes_link {
        line-height: 1;
        vertical-align: bottom;
    }
}
@media (min-width: 1280px) {
    .recommendations .product_tile-attributes_link .swatch-rectangle {
        min-width: 45px;
    }
}
@media (min-width: 1280px) {
    .recommendations .product_tile-attributes_value[data-attr=color] .product_tile-attributes_link {
        height: 20px;
    }
}
@media (min-width: 1280px) {
    .recommendations .product_tile-attributes_value[data-attr=size] {
        margin: 7px auto 0;
        padding: 0 20px;
    }
}
.recommendations_narrow-title {
    font-size: 14px;
    padding: 20px 20px 15px;
    font-weight: 700;
}
@media (min-width: 1280px) {
    .recommendations_narrow-title {
        font-size: 16px;
    }
}
.recommendations_narrow-product_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1px;
         column-gap: 1px;
}
.recommendations_narrow-product_grid .product_tile-image {
    min-height: unset;
}
.recommendations_narrow-product_grid .product_tile-footer {
    top: 236px;
    right: 0;
    left: 0;
}
.recommendations_narrow-product_grid .product_tile-quick_view_mobile {
    display: none;
}
.recommendations_narrow-product_tile:nth-last-child(-n+2) .product_tile-body {
    height: 185px;
}
.recommendations_narrow-product_tile:nth-last-child(-n+2) .product_tile-body+.product_tile-footer {
    height: 185px;
}
.recommendations_narrow-product_tile:nth-last-child(-n+2) .product_tile-body--percentage {
    height: 205px;
}
.recommendations_narrow-product_tile:nth-last-child(-n+2) .product_tile-body--percentage+.product_tile-footer {
    bottom: 0;
    height: 205px;
}
.recommendations {
    position: relative;
}
.recommendations--overlay:nth-child(1) {
    z-index: 30;
}
.recommendations--overlay:nth-child(2) {
    z-index: 25;
}
.recommendations--overlay:nth-child(3) {
    z-index: 20;
}
.recommendations--overlay:nth-child(4) {
    z-index: 15;
}
.recommendations--overlay:nth-child(5) {
    z-index: 10;
}
.recommendations--overlay:nth-child(6) {
    z-index: 5;
}
.recommendations--retirement-product .carousel-control {
    display: none !important;
}
.recommendations-container {
    padding: 0;
}
@media (min-width: 1280px) {
    .recommendations-container {
        max-width: 100vw;
    }
}
.recommendations-container--vertical {
    padding: 0;
}
@media (min-width: 1280px) {
    .recommendations-container {
        padding-top: 30px !important;
    }
}
@media (min-width: 1280px) {
    .recommendations-isSiteJP {
        padding-top: 0 !important;
    }
}
.recommendations-wrapper {
    position: relative;
    margin-bottom: 50px;
}
@media (min-width: 1280px) {
    .recommendations-wrapper {
        max-width: 1306px;
        margin: 0 auto 80px;
    }
    .recommendations-wrapper--pdp {
        height: 500px;
    }
}
@media (max-width: 767.98px) {
    .recommendations-wrapper-vertical {
        max-height: unset !important;
    }
}
.recommendations-title {
    margin: 0 auto;
    padding: 0.875rem 0 0.9375rem;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
.recommendations-title:lang(ja) {
    font-size: 16px;
}
@media (min-width: 1280px) {
    .recommendations-title:lang(ja) {
        font-size: 18px;
    }
}
.recommendations-title--title-text {
    font-size: inherit;
    margin: initial !important;
}
.recommendations-content {
    display: flex;
    margin: 0;
}
@media (min-width: 1024px) {
    .recommendations-content {
        margin: 0;
        padding: 0 50px;
    }
}
@media (min-width: 1280px) {
    .recommendations-content {
        padding: 0 30px;
    }
}
.recommendations-content .product_gallery-style_img {
    padding-right: 0;
}
.recommendations-content--revamped {
    display: block;
    padding: 0;
}
@media (min-width: 1280px) {
    .recommendations-content--revamped .product_tile .product-tile {
        padding: 0 !important;
    }
}
.recommendations-content--revamped .product_revamped_list-grid {
    -moz-column-gap: 5px;
         column-gap: 5px;
    row-gap: 30px;
    padding: 0;
}
@media (min-width: 768px) {
    .recommendations-content--revamped .product_revamped_list-grid {
        row-gap: 50px;
    }
}
@media (min-width: 1280px) {
    .recommendations-content--revamped .product_revamped_list-grid {
        row-gap: 30px;
    }
}
.recommendations-content--revamped .product_revamped_list-grid .product_tile {
    width: 100%;
    min-width: 137px;
}
.recommendations-content--revamped .product_revamped_list-grid .product_tile-body {
    padding-right: 1px;
    padding-bottom: 0;
    padding-left: 1px;
}
.recommendations-content--revamped .product.active .product_tile-footer:not(.product_set-footer,.product_tile-footer--responsive_width) {
    position: absolute !important;
    top: unset;
    right: 0;
    left: 0;
    border-width: 0 1px 1px !important;
    border-style: solid !important;
    border-color: #000 !important;
}
.recommendations-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 222px;
    text-align: center;
}
.recommendations-vertical {
    margin-bottom: 0;
    background-color: #f8f8f8;
}
.recommendations-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
@media (min-width: 1280px) {
    .recommendations-grid {
        margin: 0;
    }
}
.recommendations-grid_item {
    width: 50%;
}
@media (min-width: 1280px) {
    .recommendations-grid_item {
        width: 20%;
    }
}
.recommendations-load_more_wrap {
    padding-bottom: 50px;
}
.recommendations-like {
    min-height: 367px;
}
@media (min-width: 1280px) {
    .recommendations-like {
        min-height: 463px;
    }
}
.recommendations-recently {
    display: flex;
    min-height: 430px;
}
@media (min-width: 1920px) {
    .recommendations-recently {
        min-height: 580px;
    }
}
.recommendations-homepage_recommender .recommendations-title {
    padding-top: 50px;
    padding-bottom: 20px;
}
.recommendations-homepage_recommender .recommendations-wrapper {
    max-height: unset;
}
.recommendations-plp_recommender {
    margin-top: -10px;
}
@media (min-width: 768px) {
    .recommendations-plp_recommender {
        margin-top: 30px;
    }
}
@media (min-width: 1024px) {
    .recommendations-plp_recommender {
        margin-top: -6px;
    }
}
.recommendations-plp_recommender .recommendations-title {
    padding-top: 40px;
    padding-bottom: 20px;
}
@media (min-width: 768px) {
    .recommendations-plp_recommender .recommendations-title {
        padding-top: 80px;
    }
}
.recommendations-plp_recommender .recommendations-wrapper {
    max-height: unset;
}
.recommendations-cart_recommender {
    margin-top: 10px;
    margin-bottom: 60px;
}
@media (min-width: 768px) {
    .recommendations-cart_recommender {
        margin-bottom: 70px;
    }
}
@media (max-width: 1279.98px) {
    .recommendations-cart_recommender {
        margin-top: 30px;
    }
}
.recommendations-cart_recommender .recommendations-line {
    width: 90%;
    margin-top: 30px;
    margin-bottom: 20px;
    border-top: 1px solid #ccc;
    margin-inline: auto;
}
@media (min-width: 768px) {
    .recommendations-cart_recommender .recommendations-line {
        display: none;
    }
}
.recommendations-cart_recommender .recommendations-title {
    padding-bottom: 20px;
}
.recommendations-cart_recommender .recommendations-content--revamped .tile-body {
    padding: 0 1px;
}
.recommendations-cart_recommender .recommendations-wrapper {
    max-height: unset;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .recommendations-cart_recommender .recommendations-wrapper {
        margin-bottom: 80px;
    }
}
.recommendations-cart_recommender .recommendations-content {
    margin: 0;
}
.recommendations-confirmation_recommender {
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .recommendations-confirmation_recommender {
        position: relative;
        z-index: 2;
        margin-bottom: 70px;
    }
}
.recommendations-confirmation_recommender .recommendations-line {
    width: 90%;
    margin-top: -40px;
    margin-bottom: 30px;
    border-top: 1px solid #ccc;
    margin-inline: auto;
}
@media (min-width: 768px) {
    .recommendations-confirmation_recommender .recommendations-line {
        display: none;
    }
}
.recommendations-confirmation_recommender .recommendations-title {
    padding-top: 0;
    padding-bottom: 20px;
}
.recommendations-confirmation_recommender .recommendations-wrapper {
    max-height: unset;
}
@media (min-width: 1280px) {
    .rec_products-stage_outer {
        z-index: 1;
        padding: 1px 0 0;
    }
}
.rec_products-item {
    width: auto;
    max-width: 100%;
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.rec_products-swiper:not(.swiper-initialized) .swiper-slide {
    width: 40%;
    margin-right: 10px;
}
@media (min-width: 1024px) {
    .rec_products-swiper:not(.swiper-initialized) .swiper-slide {
        width: 20%;
        margin-right: 20px;
    }
}
@media (min-width: 1280px) {
    .rec_products-control_icon {
        position: relative;
        width: 15px !important;
        height: 30px !important;
    }
}
@media (min-width: 1280px) {
    .rec_products-icon_prev {
        top: calc(var(--recommendation-img-height, 100%) / 2 - 12px);
        left: -4px;
    }
}
@media (min-width: 1280px) {
    .rec_products-icon_next {
        top: calc(var(--recommendation-img-height, 100%) / 2 - 12px);
        right: -4px;
    }
}
.rec_products-dot.active span {
    border-color: #000;
    background: #fff;
}
@media (min-width: 1280px) {
    .recommendations-vertical .product .product_tile-body {
        min-height: 98px;
    }
}
@media (min-width: 1280px) {
    .recommendations-vertical .product.active .product_tile-footer:not(.product_set-footer) {
        position: absolute;
        top: 100%;
        right: -1px;
        left: -1px;
        padding-top: 7px;
        border-width: 0 1px 1px;
        border-style: solid;
        border-color: #000;
    }
}
@media (min-width: 1280px) {
    .recommendations-vertical .product.active .product_tile-body {
        display: none;
    }
}
@media (min-width: 1280px) {
    .recommendations .product.active .product_tile-footer:not(.product_set-footer,.product_tile-footer--responsive_width) {
        position: static;
        padding-top: 7px;
        border: 0;
    }
}
.recommendations-vertical .product {
    position: relative;
}
@media (min-width: 1280px) {
    .recommendations .product.active .carousel-control::before {
        content: "";
        position: absolute;
        top: 50%;
        width: 30px;
        height: 30px;
        transform: translateY(-50%);
    }
}
.recommendations .product.active .carousel-control-prev::before {
    left: 0;
}
.recommendations .product.active .carousel-control-next::before {
    right: 0;
}
@media (min-width: 1280px) {
    .recommendations .product.active .carousel-control_icon {
        position: relative;
        width: 30px;
        height: 30px;
    }
}
.recommendations-vertical .recommendations-content {
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
@media (min-width: 1280px) {
    .recommendations-vertical .recommendations-grid_item {
        margin-left: -4px;
    }
}
@media (min-width: 1280px) {
    .recommendations-vertical_container {
        max-width: 1265px;
        padding: 0;
    }
}
.swiper-container {
    position: relative;
    z-index: 1;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    overflow: hidden;
    list-style: none;
}
.recommendations .swiper {
    width: 100%;
}
.swiper_button {
    position: relative;
}
.swiper_button-prev_custom, .swiper_button-next_custom {
    position: absolute;
    text-align: center;
    display: none;
    cursor: pointer;
}
@media (min-width: 1280px) {
    .swiper_button-prev_custom, .swiper_button-next_custom {
        top: var(--recommendation-title-height);
        display: block;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: var(--recommendation-img-height, 100%);
    }
}
.swiper_button-prev_custom {
    left: 0;
}
.swiper_button-next_custom {
    right: 0;
}
.swiper_button--disabled {
    opacity: 1 !important;
    color: #f0f0f0 !important;
    pointer-events: none;
}
.swiper_button--lock {
    display: none;
}
.swiper_pagination {
    position: absolute;
    bottom: 60px !important;
    left: 50% !important;
    z-index: 1;
    display: none;
    width: auto !important;
    text-align: center;
    transform: translateX(-50%);
    transition: 300ms opacity;
}
.swiper_pagination--nozindex {
    z-index: 0;
}
@media (min-width: 1280px) {
    .swiper_pagination {
        display: block;
    }
}
.swiper_pagination--lock {
    display: none;
}
.swiper_pagination-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 5px;
    border: 1px solid transparent;
    border-radius: 50%;
    background: #ccc;
    -webkit-backface-visibility: visible;
            backface-visibility: visible;
    cursor: pointer;
    transition: opacity 200ms ease;
    zoom: 1;
}
.swiper_pagination-dot:hover, .swiper_pagination-dot:active, .swiper_pagination-dot:focus {
    outline: 0;
}
.swiper_pagination-dot--active, .swiper_pagination-dot:hover {
    border-color: #000;
    background: #fff;
}
.swiper_pagination--default {
    top: 100%;
    bottom: 0 !important;
}
.search_result .recommendations-content {
    min-height: 460px;
}
@media (min-width: 1280px) {
    .search_result .recommendations-content {
        min-height: 490px;
    }
}
@media (min-width: 1280px) {
    .u-vertical-overflow-visible--desktop {
        overflow: visible;
        overflow-x: clip;
    }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
    .slotcontent_container--recommendations_inline {
        padding-right: 0 !important;
    }
}
.slotcontent_container--recommendations_inline:not(.container) {
    max-width: 100vw;
}
.slotcontent_container--recommendations_inline.container-fluid {
    max-width: min(100vw, 1918px);
}
@media (min-width: 1024px) {
    .recommendations_inline {
        margin-right: 0;
    }
}
.recommendations_inline-title {
    padding-bottom: 20px !important;
}
@media (min-width: 768px) {
    .recommendations_inline-title {
        display: flex;
        flex-flow: column;
        align-content: center;
        padding: 22px 0;
    }
}
@media (min-width: 1024px) {
    .recommendations_inline-title {
        justify-content: center;
        height: auto;
    }
}
.recommendations_inline .char-spacing-100 {
    letter-spacing: 2px;
    word-spacing: 0;
}
@media (max-width: 1279.98px) {
    .recommendations_inline-content {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}
@media (min-width: 1024px) {
    .recommendations_inline-content {
        padding-right: 26px !important;
        padding-left: 20px !important;
    }
}
.recommendations_inline-carousel {
    margin-right: -13px;
}
@media (min-width: 768px) {
    .recommendations_inline-carousel {
        width: 100%;
    }
}
@media (min-width: 1024px) {
    .recommendations_inline-carousel {
        margin-right: 0;
        padding: 0 42px;
    }
}
@media (min-width: 1920px) {
    .recommendations_inline-carousel {
        padding: 0 63px;
    }
}
.recommendations_inline-btn {
    display: none;
}
@media (min-width: 1024px) {
    .recommendations_inline-btn {
        display: flex;
        width: 57px;
        height: var(--carousel-img-height, 100%);
    }
}
@media (min-width: 1920px) {
    .recommendations_inline-btn {
        width: 63px;
    }
}
.recommendations_inline-btn--next {
    position: absolute;
    top: 0;
}
.recommendations_inline-container {
    padding-right: 19.2vw !important;
}
@media (min-width: 768px) {
    .recommendations_inline-container {
        padding-right: 12.2vw !important;
    }
}
@media (min-width: 1024px) {
    .recommendations_inline-container {
        padding: 1px !important;
        overflow: clip visible !important;
    }
}
.recommendations_inline-wrapper {
    padding: 0;
}
.recommendations_inline-container:not(.swiper-initialized) .recommendations_inline-wrapper {
    -moz-column-gap: 10px;
         column-gap: 10px;
}
.recommendations_inline-container:not(.swiper-initialized) .recommendations_inline-slide {
    flex-shrink: 1;
    min-width: 50%;
}
@media (min-width: 1024px) {
    .recommendations_inline-container:not(.swiper-initialized) .recommendations_inline-slide {
        min-width: 25%;
    }
}
@media (min-width: 1024px) {
    .recommendations_inline-nav_icon {
        width: 15px;
        height: 30px;
    }
}
.recommendations_inline-nav_icon--next {
    position: absolute;
    top: calc(var(--carousel-img-height, 100%) / 2 - 12px);
    left: 0;
}
.recommendations_inline-nav_icon--prev {
    position: absolute;
    top: calc(var(--carousel-img-height, 100%) / 2 - 12px);
}
.recommendations_inline-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    transform: none;
}
@media (min-width: 768px) {
    .recommendations_inline-pagination {
        margin-top: 20px;
    }
}
.recommendations_inline-dot {
    position: relative;
    padding: 0 3px;
    line-height: 1;
    cursor: pointer;
}
@media (min-width: 1024px) {
    .recommendations_inline-dot {
        padding: 0 5px;
    }
}
.recommendations_inline-dot::before {
    content: "";
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 50%;
    background-color: #ccc;
    background-clip: padding-box;
    width: 5px;
    height: 5px;
}
@media (min-width: 1024px) {
    .recommendations_inline-dot::before {
        width: 7px;
        height: 7px;
    }
}
.recommendations_inline-dot--active {
    cursor: default;
}
.recommendations_inline-dot--active::before {
    border-color: #e8e8e8;
    background-color: #fff;
}
.recommendations_inline .product_tile {
    max-width: 340px;
    padding-right: 0;
    padding-left: 0;
    color: #000;
}
.recommendations_inline .product_tile-body {
    padding-top: 3px;
    padding-bottom: 0;
}
@media (min-width: 1024px) {
    .recommendations_inline .product_tile-body {
        padding-top: 7px;
    }
}
.recommendations_inline .product_tile-image {
    min-height: 0;
    padding-top: 0 !important;
}
.recommendations_inline .product_tile-footer {
    right: 0;
    left: 0;
}
@media (min-width: 1024px) {
    .recommendations_inline .product_tile-footer {
        top: 285px;
    }
}
.recommendations_inline .product_tile-link, .recommendations_inline .product_tile-link:hover {
    color: inherit;
}
@media (min-width: 1024px) {
    .recommendations_inline .product_tile .active .product_tile-footer {
        position: absolute !important;
        top: auto !important;
        border: 1px solid #000 !important;
        border-top: 0 !important;
    }
}
.recommendations_wide {
    margin: 50px 0;
}
@media (min-width: 768px) {
    .recommendations_wide {
        margin: 50px 0;
    }
}
.recommendations_wide-container {
    overflow: clip visible !important;
}
.recommendations_wide-controls {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 75px;
    height: 25px;
}
@media (min-width: 768px) {
    .recommendations_wide-controls {
        right: 25px;
    }
}
.recommendations_wide-controls-hide {
    display: none !important;
}
.recommendations_wide-btn {
    width: 50%;
}
.recommendations_wide-icon {
    width: 9.5px !important;
    height: 15px !important;
}
.recommendations_wide-title {
    -webkit-margin-start: 15px;
            margin-inline-start: 15px;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 700;
}
@media (min-width: 768px) {
    .recommendations_wide-title {
        margin-bottom: 15px;
        -webkit-margin-start: 30px;
                margin-inline-start: 30px;
        font-size: 20px;
    }
}
.recommendations_wide .product_tile-body {
    padding-bottom: 0;
}
.recommendations_wide .product_tile-body:lang(ja) {
    padding-right: 10px;
    padding-left: 10px;
    text-align: left;
}
.recommendations_wide-wrapper-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.recommendations_wide-wrapper-grid .product_tile {
    width: calc(50% - 5px);
}
.recommendations_wide-ranking {
    position: absolute;
    top: 9px;
    left: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #333;
}
.recommendations_wide-ranking-value {
    font-family: "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 22px;
    color: #fff;
}
.recommendations_wide-ranking-grey {
    background: #a8a8a8;
}
.recommendations_wide-content-btn {
    display: flex;
    justify-content: center;
    width: 242px;
    margin: 30px auto;
    font-family: "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 14px;
    line-height: 21px;
}
.recommendation_minicart {
    margin-top: 22px !important;
    margin-bottom: 151px;
}
@media (min-width: 1280px) {
    .recommendation_minicart {
        margin-bottom: 0;
    }
}
.recommendation_minicart .recommendations_wide-title {
    margin-bottom: 14px;
    margin-left: 15px;
    font-size: 16px;
}
.recommendation_minicart .product_tile-quick_view_mobile {
    display: none;
}
.product_list {
    padding-bottom: 36px;
}
@media (min-width: 1024px) {
    .product_list {
        padding-bottom: 72px;
    }
}
.product_list-breadcrumbs {
    margin-bottom: -19px;
}
.product_list-hero_image {
    width: 100%;
    height: 100%;
}
.product_list-content_asset_hero {
    margin: 0 -15px;
}
@media (min-width: 1024px) {
    .product_list-content_asset_hero {
        margin: 0;
    }
}
.product_list-content_asset_hero .product_list-hero_image {
    position: relative;
    height: 117px;
}
@media (min-width: 768px) {
    .product_list-content_asset_hero .product_list-hero_image {
        height: 169px;
    }
}
@media (min-width: 1024px) {
    .product_list-content_asset_hero .product_list-hero_image {
        height: 149px;
    }
}
.product_list-hero_old {
    position: relative;
    margin: 0 -30px;
}
@media (min-width: 1024px) {
    .product_list-hero_old {
        margin: 0 -15px;
    }
}
.product_list-suggestions {
    min-height: 100px;
    margin-bottom: 20px;
}
.product_list-suggestions_info {
    width: 100%;
}
.product_list-suggestions_result {
    font-size: 18px;
}
.product_list-title {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #000;
}
@media (min-width: 768px) {
    .product_list-title {
        color: #000;
    }
}
.product_list-title--kids {
    font-size: 1.40625rem;
}
@media (min-width: 1024px) {
    .product_list-title--kids {
        font-size: 24px;
    }
}
.product_list-title--metatag {
    font-size: 1.0715625rem;
}
@media (min-width: 768px) {
    .product_list-title--metatag {
        font-size: 1.340625rem;
    }
}
.product_list-hero {
    position: relative;
    height: 117px;
    margin: 0 -15px;
}
@media (min-width: 768px) {
    .product_list-hero {
        height: 169px;
    }
}
@media (min-width: 1024px) {
    .product_list-hero {
        height: 149px;
    }
}
.product_list-hero .product_list-grey_banner~.product_list-title {
    color: #000;
}
.product_list-category_header {
    font-size: 18px;
    margin-bottom: 5px;
}
.product_list-subtitle {
    margin-right: 13px;
    margin-left: 13px;
    font-size: 14px;
}
@media (min-width: 768px) {
    .product_list-subtitle {
        margin-right: 150px;
        margin-left: 150px;
    }
}
.product_list-filter_wrapper {
    padding-right: 5px;
    padding-left: 0;
}
@media (min-width: 768px) {
    .product_list-filter_wrapper {
        max-width: 335px;
        padding-left: 0;
    }
}
.product_list-sortby_wrapper {
    padding-right: 0;
    padding-left: 5px;
}
@media (min-width: 768px) {
    .product_list-sortby_wrapper {
        max-width: 335px;
        padding-right: 3px;
    }
}
@media (min-width: 1024px) {
    .product_list-sortby_wrapper {
        display: flex;
        align-items: center;
        padding-left: 10px;
    }
}
@media (min-width: 1024px) {
    .product_list-sortby_dropdown {
        max-width: 200px;
    }
}
.product_list-sortby_filter {
    margin-top: 16px;
}
@media (min-width: 768px) {
    .product_list-sortby_filter {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        margin-bottom: 30px;
    }
}
@media (min-width: 1024px) {
    .product_list-sortby_filter {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }
}
.product_list-sortby_title {
    min-width: 62px;
}
.product_list-filter_button {
    padding-left: 0.5rem;
    text-align: left;
}
.product_list-filter_icon {
    position: absolute;
    right: 10px;
    height: 21px;
}
.product_list-result_count {
    padding-top: 5px;
    text-align: center;
}
@media (min-width: 768px) {
    .product_list-result_count {
        padding: 9px 0 0;
        text-align: right;
    }
}
@media (min-width: 1024px) {
    .product_list-refinement {
        max-width: 304px;
        margin: 0 5px 0 0;
        padding: 0 0 0 14px;
    }
}
@media (min-width: 1024px) {
    .product_list-container {
        max-width: 100%;
    }
}
.product_list-container_header {
    margin-top: 14px;
}
@media (min-width: 768px) {
    .product_list-container_header {
        margin-top: 0;
        padding-right: 0;
    }
}
.product_list-grid {
    margin: 28px -20px 0;
}
@media (min-width: 768px) {
    .product_list-grid {
        display: grid;
    }
}
@media (min-width: 768px) {
    .product_list-grid--three_col {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (min-width: 768px) {
    .product_list-grid--four_col {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
.product_list-footer {
    margin: -2px 0 0;
}
@media (min-width: 768px) {
    .product_list-footer--three_col {
        grid-column-start: span 3;
    }
}
@media (min-width: 768px) {
    .product_list-footer--four_col {
        grid-column-start: span 4;
    }
}
.product_list-load_more {
    margin: 18px 0 0;
}
.product_list-load_more .spinner {
    top: 108%;
    z-index: 0;
}
.product_list-load_more_btn {
    min-width: 135px;
}
.product_list-load_prev {
    margin: 8px 0 20px;
}
.product_list-load_prev .spinner {
    top: -40%;
}
@media (min-width: 768px) {
    .product_list-load_prev--three_col {
        grid-column-start: span 3;
        justify-content: start;
    }
}
@media (min-width: 768px) {
    .product_list-load_prev--four_col {
        grid-column-start: span 4;
        justify-content: start;
    }
}
.product_list-show_type {
    margin-left: 10px;
}
@media (max-width: 767.98px) {
    .product_list-show_type {
        display: none;
    }
}
.product_list-show_type a {
    padding: 3px 0;
    text-decoration: none;
}
.product_list-pagination {
    font-weight: 500;
    font-size: 12px;
    display: flex;
    justify-content: center;
}
.category_links {
    width: 100%;
    padding-bottom: 14px;
}
@media (min-width: 1024px) {
    .category_links {
        display: inline-grid;
        max-width: 906px;
        margin: auto;
    }
}
.category_links-item {
    color: #333 !important;
    height: 30px;
}
.category_links-items_list {
    flex: 0 1 0;
    margin-left: 7px;
    border: 1px solid #d0d0d0;
    border-radius: 15px;
    background-color: #f0f0f0;
}
.category_links-swiper_block {
    display: flex;
    justify-content: space-around;
    margin-left: 0;
}
.category_links-item-text {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.category_links-white_background {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 30px;
    height: 50px;
    background: #fff;
}
.category_links-white_background--prev {
    left: 0;
    background: linear-gradient(90deg, white 25%, rgba(255, 255, 255, 0) 100%);
}
.category_links-white_background--next {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 62%);
}
@media (min-width: 768px) {
    .category_links-white_background {
        width: 100px;
        height: 100%;
    }
}
.category_links-static {
    visibility: hidden;
}
.plp_swiper_btn {
    position: absolute;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.plp_swiper_btn::after {
    display: none;
}
.plp_swiper_btn--prev {
    left: 0;
}
.plp_swiper_btn--next {
    right: 0;
}
.plp_swiper_btn--disabled {
    display: none !important;
    cursor: default;
}
.plp_swiper_btn-control {
    top: 50%;
    z-index: 1;
    display: none;
    height: 67px;
    transform: translateY(-50%);
    color: #666;
}
@media (min-width: 768px) {
    .plp_swiper_btn-control {
        width: 40px;
        height: 80px;
    }
}
.swiper-initialized .plp_swiper_btn-control {
    display: flex;
}
.plp_swiper_btn-icon {
    z-index: 3;
    color: #666;
    width: 10px;
    height: 10px;
}
.plp_links {
    position: relative;
    min-height: 50px;
    margin: 0 -15px;
}
@media (min-width: 768px) {
    .plp_links {
        min-height: 70px;
    }
}
.product_tile {
    position: relative;
    padding-right: 5px;
    padding-left: 5px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
@media (min-width: 768px) {
    .product_tile {
        max-width: 335px;
    }
}
.product_tile-name {
    margin-top: 3px;
}
@media (min-width: 768px) {
    .product_tile-name {
        line-height: 21px;
    }
}
.product_tile-name--revamped {
    margin-inline: 10px;
}
@media (min-width: 1280px) {
    .product_tile-name--revamped {
        margin-inline: 0;
    }
}
.product_tile-name--revamped:lang(ja) {
    margin-inline: 0;
}
.product_tile-name--truncate {
    display: -webkit-box;
    /* stylelint-disable-line value-no-vendor-prefix */
    padding: 0 5px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.product_tile-name--truncate:lang(ja) {
    padding: 0;
}
.product_tile-body {
    padding-top: 10px;
    text-align: center;
}
@media (min-width: 1280px) {
    .product_tile-body.active {
        border-inline: 1px solid #000;
    }
}
.product_tile-body-jp {
    padding-right: 10px;
    padding-left: 10px;
    text-align: left;
}
.product_tile-link {
    font-size: 0.9375rem;
}
.product_tile-link:lang(vi) {
    font-size: 0.875rem;
}
.product_tile-link:hover {
    text-decoration: none;
}
.product_tile-link-jp {
    font-size: 13px;
}
@media (min-width: 1280px) {
    .product_tile-link-jp {
        font-size: 14px;
    }
}
.product_tile-color {
    text-transform: capitalize;
}
.product_tile-load_more {
    min-width: 135px;
}
.product_tile-attributes {
    width: 100%;
}
@media (min-width: 768px) {
    .product_tile-attributes.color_swatches {
        width: 140px;
        margin: 0 auto;
    }
}
.product_tile .owl-nav {
    font-size: 30px;
}
.product_tile .owl-nav .owl-prev {
    left: 9px;
}
.product_tile .owl-nav .owl-next {
    right: 9px;
}
.product_tile .owl-nav .owl-prev,
.product_tile .owl-nav .owl-next {
    position: absolute;
    top: -10px;
    color: #999 !important;
}
.product_tile .owl-nav .owl-prev:active, .product_tile .owl-nav .owl-prev:focus, .product_tile .owl-nav .owl-next:active, .product_tile .owl-nav .owl-next:focus {
    outline: none;
}
.product_tile .owl-nav .owl-prev.disabled,
.product_tile .owl-nav .owl-next.disabled {
    color: #f0f0f0 !important;
    pointer-events: none;
}
.product_tile-attributes_value {
    display: flex;
    justify-content: center;
    padding: 0 3px;
}
.product_tile-attributes_value[data-attr=color] {
    width: 140px;
    margin: 0 auto;
}
.product_tile-attributes_value[data-attr=color] .owl-nav .owl-prev,
.product_tile-attributes_value[data-attr=color] .owl-nav .owl-next {
    top: -14px;
}
.product_tile-attributes_value[data-attr=color] .owl-nav .owl-prev {
    left: -6px;
}
.product_tile-attributes_value[data-attr=color] .owl-nav .owl-next {
    right: -10px;
}
.product_tile-attributes_value[data-attr=size] {
    max-width: 290px;
    max-height: 45px;
    margin: 0 auto;
    padding: 0 30px;
    overflow: hidden;
}
.product_tile-attributes_value[data-attr=size].disable-carousel {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100% !important;
    max-height: 100%;
    padding: 0;
    overflow: visible;
}
.product_tile-attributes_value[data-attr=size].disable-carousel-attributes_link {
    padding: 5px;
}
@media (min-width: 1280px) {
    .product_tile-attributes_value .swatch-rectangle {
        min-width: 50px;
    }
}
.product_tile-attributes_value:lang(ja) {
    justify-content: unset;
    padding-left: 0;
}
.product_tile-attributes_value--static {
    gap: 10px;
    padding-bottom: 15px;
}
@media (min-width: 1280px) {
    .product_tile-attributes_value--static {
        padding-bottom: 0;
    }
}
.product_tile-attributes_value--static[data-attr=color] {
    width: unset;
}
.product_tile-attributes_link {
    display: inline-block;
    padding: 0 3px;
}
@media (max-width: 1023.98px) {
    .product_tile-attributes_link {
        padding-left: 0;
    }
}
.product_tile-attributes_link--static {
    height: 14px;
}
.product_tile-attributes_count {
    font-size: 12px;
    color: #666;
    height: 14px;
}
.product_tile-image--responsive_width {
    position: relative;
    padding-bottom: 133.3%;
}
@media (min-width: 1280px) {
    .product_tile-image--responsive_width {
        min-height: unset !important;
    }
}
.product_tile-image_rollover {
    transition: 0.2s ease-in-out;
}
.product_tile-image_rollover.hovered {
    opacity: 0;
}
.product_tile-image_hover .carousel-img {
    border: 1px solid transparent;
}
.product_tile-gift-image {
    position: relative;
    min-height: var(--tile-image-height, "auto");
    background-color: #eee;
}
@media (min-width: 1280px) {
    .product_tile-gift-image {
        min-height: 393px;
    }
}
@media (min-width: 1280px) {
    .product_tile .product {
        border: 1px solid transparent;
    }
}
@media (min-width: 1280px) {
    .product_tile .product.active {
        border: 1px solid #000;
    }
}
@media (min-width: 1280px) {
    .product_tile .recommender_active {
        border-left: 1px solid #000 !important;
    }
}
@media (min-width: 1280px) {
    .product_tile .border_noleft {
        border-left: 0 !important;
    }
}
@media (min-width: 1280px) {
    .product_tile .border_left {
        border: 0;
        border-left: 1px solid #000;
    }
}
.product_tile .product_list_qty-error {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #f00;
}
.product_tile .owl-stage-outer {
    padding: 1px;
}
.product_tile .owl-stage {
    margin: auto;
}
.product_tile .owl-item {
    text-align: center;
}
.product_tile .owl-rtl {
    direction: ltr;
}
.product_tile .owl-rtl .owl-item {
    float: left;
}
.product_tile .carousel-prev,
.product_tile .carousel-next {
    display: none;
}
.product_tile-footer {
    position: absolute;
    top: 392px;
    right: 5px;
    left: 5px;
    z-index: 3;
    height: 0;
    border-width: 0 1px 1px;
    border-style: solid;
    border-color: #000;
    overflow: hidden;
    background-color: #fff;
    visibility: hidden;
}
[dir=rtl] .product_tile-footer {
    right: 0;
}
.product_tile-footer--responsive_width {
    top: unset;
    left: 0;
    z-index: 40;
    width: 100%;
    border: 1px solid #000;
    border-top: 0;
}
.product_tile-footer_price {
    margin: 4px 0 20px;
    text-align: center;
}
.product_tile-stock_status {
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 0.8203125rem;
    text-align: center;
}
.product_tile-stock_status--low {
    color: #f90;
}
.product_tile-stock_status--out {
    color: #f00;
}
.product_tile-stock_status:lang(ja) {
    text-align: left;
}
@media (min-width: 1280px) {
    .product_tile .active .tile-body-footer {
        top: var(--recommendation-img-height, unset);
        height: auto;
        padding: 0.738rem 0 1.8125rem;
        visibility: visible;
    }
    .product_tile .active .carousel-prev,
.product_tile .active .carousel-next {
        display: flex;
    }
}
.product_tile .adding_to_cart {
    padding: 0 10px;
}
.product_tile-personalize {
    margin-top: 3px;
    color: #999;
}
.product_tile--responsive_width {
    padding-right: 0;
    padding-left: 0;
}
@media (min-width: 768px) {
    .product_tile--responsive_width {
        max-width: unset;
    }
}
@media (min-width: 1280px) {
    .product_tile--responsive_width .product,
.product_tile--responsive_width .product.active {
        border: 0 !important;
    }
    .product_tile--responsive_width .carousel-inner {
        border: 1px solid transparent;
        border-bottom: 0;
    }
}
@media (min-width: 1280px) and (min-width: 1280px) {
    .product_tile--responsive_width .carousel-inner {
        border: 0;
        border-bottom: 2px solid transparent;
    }
}
@media (min-width: 1280px) {
    .product_tile--responsive_width .active .carousel-inner,
.product_tile--responsive_width .active .product-tile_skeleton {
        border: 1px solid #000;
        border-bottom: 0;
    }
}
@media (min-width: 1280px) and (min-width: 1280px) {
    .product_tile--responsive_width .active .carousel-inner,
.product_tile--responsive_width .active .product-tile_skeleton {
        border-bottom: 2px solid transparent;
    }
}
@media (min-width: 1280px) and (min-width: 1280px) {
    .product_tile--responsive_width .product.active .product_tile-image_hover .carousel-img {
        border: none;
    }
}
.product_tile--responsive_width .owl-stage-outer {
    padding-top: 3px;
}
.product_tile--responsive_width .carousel-inner {
    height: 100%;
}
.product_tile--responsive_width .carousel-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.product_tile--responsive_width .carousel-indicator {
    width: 6px;
    height: 6px;
}
.product_tile-quick_view_mobile {
    width: 25px;
    height: 25px;
    right: 5px;
    bottom: 5px;
    left: unset;
    z-index: 20;
    display: flex;
    border-radius: 50%;
    background-color: #fff;
}
.product_tile-quick_view_mobile_icon.icon {
    width: 9px;
    height: 9px;
}
.product-detail .product_tile-footer--responsive_width {
    top: unset;
    z-index: 40;
    border: 1px solid #000;
    border-top: 0;
}
@media (min-width: 1280px) {
    .show_mode_4 .swatch-rectangle {
        min-width: 45px;
    }
}
@media (min-width: 1280px) {
    .show_mode_4-footer {
        top: 294px;
    }
}
@media (min-width: 1280px) {
    .show_mode_4-image {
        min-height: 284px;
    }
}
.high_image {
    top: 100% !important;
}
.product_revamped_list-grid {
    padding: 0;
    list-style: none;
}
@media (min-width: 1024px) {
    .product_revamped_list-grid .swatch-rectangle {
        display: flex;
        width: auto;
        min-width: 45px;
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
        margin-bottom: 5px;
    }
}
.plp-revamped-paging__skeleton {
    display: inline-block;
    width: 180px;
    height: 1em;
    vertical-align: middle;
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 0, #e8e8e8 40px, #f0f0f0 80px);
    background-size: 420px;
    animation: shine-loading-plp-skeleton 2s infinite ease-out;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    transform: translateX(-50%);
}
.plp-algolia-header__filter-skeleton {
    display: inline-block;
    width: 85px;
    height: 1.25em;
    vertical-align: middle;
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 0, #e8e8e8 40px, #f0f0f0 80px);
    background-size: 420px;
    animation: shine-loading-plp-skeleton 2s infinite ease-out;
    position: absolute;
    top: 50%;
    left: 10px;
    z-index: 1;
    display: none !important;
    max-width: min(280px, 100%);
    transform: translateY(-50%);
}
.plp-algolia-header__sort-skeleton {
    display: inline-block;
    width: 200px;
    height: 1.25em;
    vertical-align: middle;
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 0, #e8e8e8 40px, #f0f0f0 80px);
    background-size: 420px;
    animation: shine-loading-plp-skeleton 2s infinite ease-out;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: none !important;
    margin-block: auto;
}
.plp-algolia-header__stats-skeleton {
    display: inline-block;
    width: 180px;
    height: 1.25em;
    vertical-align: middle;
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 0, #e8e8e8 40px, #f0f0f0 80px);
    background-size: 420px;
    animation: shine-loading-plp-skeleton 2s infinite ease-out;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    left: auto;
    z-index: 1;
    display: none !important;
    margin-block: auto;
}
.algolia-srp-hits .algolia-srp-io-load-trigger {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
#algolia-refinements-placeholder .ais-RefinementList-showMore[disabled],
#algolia-refinements-placeholder .ais-RefinementList-showMore--disabled,
#algolia-refinements-inner .ais-RefinementList-showMore[disabled],
#algolia-refinements-inner .ais-RefinementList-showMore--disabled {
    display: none !important;
}
html.plp-header-skeleton .plp-revamped-paging__label {
    opacity: 0;
}
html.plp-header-skeleton .plp-revamped-paging__skeleton {
    display: inline-block;
}
html.plp-header-skeleton #algolia-sort-placeholder,
html.plp-header-skeleton #algolia-stats-placeholder,
html.plp-header-skeleton #algolia-stats-placeholder-mobile {
    opacity: 0;
}
html.plp-header-skeleton .product_revamped_list-filter_wrapper .product_revamped_list-filter_button {
    opacity: 0;
    pointer-events: none;
}
html.plp-header-skeleton .plp-algolia-header__filter-skeleton,
html.plp-header-skeleton .plp-algolia-header__sort-skeleton,
html.plp-header-skeleton .plp-algolia-header__stats-skeleton {
    display: inline-block !important;
}
html.plp-back-nav .product_revamped_list-container_wrapper {
    position: relative;
}
html.plp-back-nav .product_revamped_list-container_wrapper .product_revamped_list-container {
    visibility: hidden;
}
html.plp-back-nav .product_revamped_list-container_wrapper .plp-back-nav-placeholder {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: block !important;
    min-height: 400px;
}
html.plp-back-nav .plp-back-nav-placeholder .product_revamped_list-grid {
    display: grid !important;
}
.plp-skeleton_tile {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}
.plp-skeleton_image {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 0, #e8e8e8 40px, #f0f0f0 80px);
    background-size: 420px;
    animation: shine-loading-plp-skeleton 2s infinite ease-out;
    aspect-ratio: 3/4;
}
@keyframes shine-loading-plp-skeleton {
    0% {
        background-position: -100px;
    }
    40%, 100% {
        background-position: 420px;
    }
}
.plp-skeleton_body {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
    padding: 10px 0;
}
.plp-skeleton_line {
    height: 14px;
    margin-bottom: 6px;
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 0, #e8e8e8 40px, #f0f0f0 80px);
    background-size: 420px;
    animation: shine-loading-plp-skeleton 2s infinite ease-out;
}
.plp-skeleton_line--short {
    width: 60%;
}
.plp-skeleton_result-count {
    display: inline-block;
    width: 180px;
    height: 1em;
    vertical-align: middle;
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 0, #e8e8e8 40px, #f0f0f0 80px);
    background-size: 420px;
    animation: shine-loading-plp-skeleton 2s infinite ease-out;
}
.modal-body.request_password-body {
    padding-top: 16px;
    padding-bottom: 30px;
}
@media (min-width: 768px) {
    .modal-body.request_password-body {
        padding: 16px 41px 30px;
    }
}
.request_password-title {
    margin: 0 40px;
    padding: 14px 0 0;
    font-size: 1.125rem;
    text-transform: uppercase;
    text-align: center;
}
.request_password-label {
    display: none;
}
.request_password-input {
    padding: 10px;
}
.request_password-header {
    position: absolute !important;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0 3px 3px 0;
    line-height: 1.5;
    font-size: 14px;
}
.request_password-btn {
    min-width: 132px;
}
@media (min-width: 768px) {
    .request_password-modal {
        max-width: 476px;
    }
}
.forgot_password .close {
    z-index: 1000;
}
.new_password {
    max-width: 434px;
    margin: 0 auto;
    padding: 20px 0 30px;
    text-align: center;
}
@media (min-width: 768px) {
    .new_password {
        padding-bottom: 80px;
    }
}
.new_password-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}
.new_password-message {
    margin: 0 0 18px;
}
.membership {
    margin-bottom: 50px;
    padding: 0 20px;
}
@media (min-width: 1024px) {
    .membership {
        margin-bottom: 100px;
    }
}
.membership-page_main_title {
    display: none;
}
.membership-page_main_title:lang(ja) {
    font-size: 20px;
}
@media (min-width: 1280px) {
    .membership-page_main_title:lang(ja) {
        font-size: 22px;
    }
}
@media (min-width: 1280px) {
    .membership-page_main_title {
        display: block;
    }
}
.membership-description {
    margin-bottom: 30px;
}
.membership-link_container {
    margin-top: 30px;
}
.membership-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
}
@media (min-width: 1280px) {
    .membership-container {
        padding-top: 10px;
    }
}
.membership-qr_container {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
}
.membership-faq-link_container {
    margin-top: 20px;
}
.membership-qr_icon {
    display: flex;
    margin-top: 30px;
}
.membership-qr_button {
    padding: 10px 15px;
    border: 1px solid #000;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
}
.membership-qr_button .icon {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}
.membership_table-top_header {
    margin-bottom: 2px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.membership_table-top_header span {
    width: 100%;
    height: 100%;
    display: block;
    margin-bottom: 2px;
    border-radius: 5px;
    line-height: 33px;
}
.membership_table-top_header--silver span {
    background-color: #999;
}
.membership_table-top_header--gold span {
    background-color: #857770;
}
.membership_table-content_header {
    height: 40px;
    border: 1px solid;
    border-color: #999 #707070;
    background-color: #f0f0f0;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}
.membership_table-content_header--first {
    border-top: 1px solid #707070;
}
.membership_table-content {
    width: 100%;
    vertical-align: top;
    padding: 20px 10px;
    border-right: 1px solid #707070;
    border-left: 1px solid #707070;
}
@media (min-width: 1024px) {
    .membership_table-content {
        padding: 20px;
    }
}
.membership_table-content--last {
    border-bottom: 1px solid #707070;
}
.membership_table-content--silver {
    width: 50%;
}
.membership_table-content_list_item {
    position: relative;
    padding-left: 20px;
}
.membership_table-content_list_item:not(:last-child) {
    margin-bottom: 5px;
}
@media (min-width: 1024px) {
    .membership_table-content_list_item:not(:last-child) {
        margin-bottom: 15px;
    }
}
.membership_table-content_list_item::before {
    content: "";
    position: absolute;
    display: block;
    top: 6px;
    left: 0;
    width: 10px;
    height: 8px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSI3Ljk5NSI+ICA8cGF0aCBkPSJNMCA0Ljk5NGwxLTEuMDA4TDMgNmw2LTYgMSAxLTcgN3oiLz48L3N2Zz4=");
    background-repeat: no-repeat;
}
.user_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
.user_info-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}
.user_info-email {
    font-size: 0.9375rem;
    margin-bottom: 3px;
    text-align: center;
}
.user_info-phone {
    font-size: 0.9375rem;
    text-align: center;
}
.user_info-loyalty_container {
    margin-top: 15px;
}
.membership-progress {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.membership-progress .progress-visual {
    position: relative;
    width: 243px;
    height: 243px;
}
.membership-progress .progress-visual .progress-bar {
    transition: stroke-dasharray 0.4s ease-in-out;
    fill: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
}
.membership-progress .progress-visual.half .progress-bar {
    stroke: #666;
}
.membership-progress .progress-visual.full .progress-bar {
    stroke: #666;
}
.membership-progress .progress-visual .progress-svg {
    width: 100%;
    height: 100%;
}
.membership-progress .progress-visual .progress-bg {
    fill: #fff;
    stroke: #f0f0f0;
    stroke-width: 2.5;
}
.membership-progress .progress-visual .progress-label {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 126px;
    transform: translate(-50%, -50%);
    text-align: center;
}
.membership-progress .progress-visual .progress-label-title {
    font-size: 16px;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}
.membership-progress .progress-visual .progress-label-description {
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
}
.membership-progress .progress-message {
    margin-top: 20px;
    font-size: 0.95rem;
}
.account_menu_modal.show {
    display: flex !important;
    justify-content: flex-end;
}
.account_menu_modal-back_btn {
    position: absolute;
    top: 7px;
    left: 6px;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 10px;
    background: transparent;
}
.account_menu_modal-close.close {
    width: 30px;
    height: 30px;
    right: 15px;
    color: #000;
}
.account_menu_modal-close.close .icon {
    fill: currentColor;
}
.account_menu_modal-btn_icon {
    width: 15px;
    height: 15px;
}
.account_menu_modal-header {
    padding: 3.125rem 0.9375rem 0.625rem;
    background-color: #f8f8f8;
}
.account_menu_modal-header_info {
    display: flex;
    flex-direction: column;
    row-gap: 0.625rem;
}
.account_menu_modal-header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
}
.account_menu_modal-header .qr_code .icon {
    width: 3.125rem;
    height: 3.125rem;
}
.account_menu_modal-title {
    font-size: 14px;
    font-weight: 700;
    max-width: 14.6875rem;
    word-wrap: break-word;
}
.account_menu_modal-title.email-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 1280px) {
    .account_menu_modal-title {
        font-size: 1rem;
    }
}
@media (min-width: 27.25rem) and (max-width: 79.9988rem) {
    .account_menu_modal-title {
        max-width: initial;
    }
}
.account_menu_modal-email {
    max-width: 17.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 27.25rem) and (max-width: 79.9988rem) {
    .account_menu_modal-email {
        max-width: initial;
    }
}
.account_menu_modal-contact-info {
    row-gap: 0.3125rem;
}
.account_menu_modal-dialog {
    width: 100%;
    overflow: hidden;
}
@media (min-width: 1280px) {
    .account_menu_modal-dialog {
        width: 375px;
    }
}
.account_menu_modal-content {
    left: -100%;
    width: 100% !important;
    height: 100dvh !important;
    border: none;
    border-radius: 0;
    transition: 0.4s ease-in-out;
}
@media (min-width: 1024px) {
    .account_menu_modal-content {
        left: 0;
        opacity: 0;
    }
}
.account_menu_modal-content.active {
    left: 0;
}
@media (min-width: 1024px) {
    .account_menu_modal-content.active {
        opacity: 1;
    }
}
.account_menu_modal-body {
    height: 100%;
    overflow: auto;
    scrollbar-width: none;
}
.account_menu_modal-loyalty {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    border-top: 8px solid #f0f0f0;
    border-bottom: 8px solid #f0f0f0;
    background-color: #fff;
    color: inherit;
    text-decoration: none;
}
.account_menu_modal-loyalty:hover {
    color: inherit;
    text-decoration: none;
}
.account_menu_modal-loyalty-main {
    min-width: 0;
}
.account_menu_modal-loyalty-balance {
    margin: 0 0 6px;
    font-weight: 600;
    text-transform: uppercase;
}
.account_menu_modal-loyalty-expiry {
    margin: 0;
    color: #666;
}
.account_menu_modal-loyalty-expiry-amount {
    font-weight: 600;
}
.account_menu_modal-loyalty-expiry-date {
    font-weight: 600;
    color: #000;
}
.account_menu_modal-loyalty-expiry-empty-amount, .account_menu_modal-loyalty-expiry-empty-dash {
    font-weight: 600;
}
.account_menu_modal-loyalty-expiry-empty-mid {
    font-weight: 400;
}
.account_menu_modal-loyalty-expiry-empty-mid::before, .account_menu_modal-loyalty-expiry-empty-mid::after {
    content: " ";
}
.account_menu_modal-loyalty-chevron {
    flex-shrink: 0;
    width: 12px;
    height: 10px;
}
.account_menu_modal-item {
    display: flex;
    align-items: center;
    height: 55px;
    margin-inline: 20px;
    font-size: 16px;
}
.account_menu_modal-item--jp {
    font-size: 14px;
}
@media (min-width: 1024px) {
    .account_menu_modal-item--jp {
        font-size: 16px;
    }
}
.account_menu_modal-list_item:not(:last-child) .account_menu_modal-item {
    border-bottom: 1px solid #f0f0f0;
}
.account_menu_modal-icon_wrapper {
    position: relative;
}
.account_menu_modal-icon {
    width: 20px;
    height: 20px;
    margin-right: 16px;
}
.account_menu_modal .membership {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 0;
    padding-right: 0;
}
.account_menu_modal .membership-myacc_link {
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 5px;
    max-width: 145px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.account_menu-notification_dot {
    top: 0;
    right: 38%;
}
.account_menu-notification_icon-label {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
}
.misterMinitCoupon-page_main_title {
    display: none;
}
@media (min-width: 1280px) {
    .misterMinitCoupon-page_main_title {
        display: block;
    }
}
.account_qr_modal-dialog {
    max-width: 518px;
}
@media (max-width: 1023.98px) {
    .account_qr_modal-dialog {
        display: table-cell;
        pointer-events: none;
        vertical-align: bottom !important;
    }
}
@media (min-width: 768px) {
    .account_qr_modal-dialog {
        top: 50%;
        transform: translateY(-50%) !important;
    }
}
.account_qr_modal-body {
    padding: 30px;
}
@media (max-width: 1023.98px) {
    .account_qr_modal-body .user_info .user_info-email {
        max-width: 17.25rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
.account_qr_modal-container {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
.account_qr_modal-description {
    max-width: 306px;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 14px;
}
.account_qr_modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
}
.swiper {
    width: 100%;
    max-width: 100vw;
}
.asset_mb-1::after,
.asset_mb-2::after {
    content: "";
    display: block;
}
.asset_mb-1::after {
    margin-bottom: 44px;
}
.asset_mb-2::after {
    margin-top: 20px;
    margin-bottom: 25px;
}
@media (min-width: 1280px) {
    .asset_mb-2::after {
        margin-top: 16px;
    }
}
.border_bottom::after {
    content: "";
    display: block;
    border-bottom: 1px solid #ccc;
}
.no_underline {
    text-decoration: none;
}
.no_underline:hover {
    text-decoration: none;
}
.asset_block {
    padding-right: 30px;
    padding-left: 30px;
    color: #333;
}
.asset_block a:not(.btn) {
    color: #333;
}
@media (min-width: 1280px) {
    .asset_block {
        padding-right: 0;
        padding-left: 0;
    }
}
.asset_block-title {
    font-size: 36px;
    text-align: center;
    font-family: "Cormorant", "Georgia", "Times New Roman", "Times", serif;
    font-weight: 700;
    padding-bottom: 14px;
}
@media (min-width: 1280px) {
    .asset_block-title {
        padding-bottom: 24px;
    }
}
.card_static {
    position: relative;
    text-align: center;
}
@media (min-width: 1280px) {
    .card_static {
        padding: 0 10px !important;
    }
}
@media (min-width: 1280px) {
    .card_static:first-child {
        padding-left: 15px;
    }
}
@media (min-width: 1280px) {
    .card_static:last-child {
        padding-right: 15px;
    }
}
.card_static-img_overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.card_static-title {
    display: block;
    margin: 11px 0 5px;
}
@media (min-width: 1280px) {
    .card_static-title {
        margin-top: 22px;
    }
}
.card_static-category_title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    margin: 7px 0 5px;
}
.card_static-text {
    font-size: 18px;
}
.card_static-category_text {
    font-size: 16px;
}
.card_static-body {
    text-align: center;
    margin-bottom: 49px;
}
.card_static-category_body {
    margin-bottom: 49px;
    text-align: left;
}
.card_static-link {
    text-decoration: underline;
}
.card_static-category_link {
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
}
.card_static .img-fluid-hp {
    width: 100%;
    height: auto;
}
.square_banners {
    max-width: 1920px;
    margin-bottom: 25px;
    padding: 0;
    color: #fff;
}
.square_banners a:not(.btn) {
    color: #fff;
}
@media (min-width: 1280px) {
    .square_banners {
        margin-bottom: 75px;
    }
}
.square_banners-title {
    display: block;
    font-size: 60px;
    font-family: "Cormorant", "Georgia", "Times New Roman", "Times", serif;
    color: #fff;
}
.square_banners-title:hover {
    color: #fff;
}
.square_banners-link {
    font-size: 18px;
    color: #fff;
    text-decoration: underline;
}
.square_banners-link:hover {
    color: #fff;
}
.square_banners-content {
    margin-bottom: 20px;
}
.asset_carousel_container {
    margin-bottom: 71px;
}
.asset_product_carousel {
    margin-bottom: 20px;
}
.card_carousel {
    text-align: center;
}
@media (min-width: 1280px) {
    .card_carousel {
        padding: 0 10px;
    }
}
.card_carousel:nth-child(odd) {
    padding-right: 4px;
}
@media (min-width: 1280px) {
    .card_carousel:nth-child(odd) {
        padding-right: 10px;
    }
}
.card_carousel:nth-child(even) {
    padding-left: 4px;
}
@media (min-width: 1280px) {
    .card_carousel:nth-child(even) {
        padding-left: 10px;
    }
}
@media (min-width: 1280px) {
    .card_carousel:first-child {
        padding-left: 15px;
    }
}
@media (min-width: 1280px) {
    .card_carousel:last-child {
        padding-right: 15px;
    }
}
.card_carousel-text {
    font-size: 18px;
    line-height: 24px;
}
.card_carousel-text:hover {
    text-decoration: none;
}
@media (min-width: 1280px) {
    .card_carousel-text {
        line-height: 30px;
    }
}
.card_carousel-body {
    padding: 9px 0 29px;
}
@media (min-width: 1280px) {
    .card_carousel-body {
        padding-top: 17px;
    }
}
.slot-container {
    max-width: 1920px;
    margin: 0 auto;
}
.hero_slider-image {
    width: 100%;
}
.hero_slider-item_text {
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.hero_slider-item_header {
    font-family: "Cormorant", "Georgia", "Times New Roman", "Times", serif;
    font-size: 60px;
    margin-bottom: 23px;
    padding: 0 33px;
    color: #333;
}
@media (min-width: 1024px) {
    .hero_slider-item_header {
        font-size: 84px;
    }
}
.hero_slider-item_link {
    font-size: 18px;
    text-transform: uppercase;
    color: #333;
}
.hero_slider-item_link:hover {
    color: #333;
}
.hero_slider-dots {
    bottom: 20px;
    display: flex;
    align-items: center;
}
.hero_slider-dots li {
    width: 6px;
    height: 6px;
    margin: 0 5px;
    background-color: #999;
}
.hero_slider-dots li.active {
    width: 8px;
    height: 8px;
    margin: 0 4px;
}
.hero_slider-control {
    z-index: 1;
    display: none;
}
@media (min-width: 768px) {
    .hero_slider-control {
        top: 42%;
        display: flex;
        width: 40px;
        height: 80px;
        color: #ccc;
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-50%);
    }
    .hero_slider-control:hover {
        background-color: rgba(255, 255, 255, 0.5);
        opacity: 1;
    }
}
@media (max-width: 767.98px) {
    .hero_slider--align_mobile_top .banner-text {
        bottom: unset;
        height: 50%;
    }
}
@media (max-width: 767.98px) {
    .hero_slider--align_mobile_bottom .banner-text {
        top: unset;
        height: 50%;
    }
}
@media (min-width: 768px) {
    .hero_slider--align_right .banner-text {
        left: unset;
        width: 50%;
    }
}
@media (min-width: 768px) {
    .hero_slider--align_left .banner-text {
        right: unset;
        width: 50%;
    }
}
@media (min-width: 1280px) {
    .featured_editorials-row {
        margin-right: -10px;
        margin-left: -10px;
    }
}
@media (min-width: 1280px) {
    .featured_editorials-col:first-child {
        padding-left: 10px;
    }
}
@media (min-width: 1280px) {
    .featured_editorials-col:last-child {
        padding-right: 10px;
    }
}
.subtitle {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}
.hero_swiper-btn {
    position: absolute;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.hero_swiper-btn::after {
    display: none;
}
.hero_swiper-btn--prev {
    left: 0;
}
.hero_swiper-btn--next {
    right: 0;
}
.hero_swiper-btn--disabled {
    cursor: default;
}
.hero_swiper-btn--disabled:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.hero_swiper-pagination {
    position: absolute;
    right: auto !important;
    bottom: 20px !important;
    left: 50% !important;
    z-index: 1;
    display: flex;
    align-items: center;
    width: auto !important;
    transform: translateX(-50%);
}
.hero_swiper-dot {
    width: 6px;
    height: 6px;
    position: relative;
    flex: 0 1 auto;
    margin: 0 5px;
    text-indent: -999px;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: #999;
    cursor: pointer;
}
.hero_swiper-dot::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -5px;
    bottom: -10px;
    left: -5px;
}
.hero_swiper-dot--active {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-color: #000;
    background-color: #fff;
}
.hp-spacer {
    display: block;
    width: 100%;
    height: 40px;
}
@media (min-width: 768px) {
    .hp-spacer {
        height: 60px;
    }
}
.hp-border {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
}
.hp-border::before {
    content: "";
    flex: 1 1 100%;
    border-bottom: 1px solid #e8e8e8;
}
.hp-edits-icon {
    width: 13px;
    height: 13px;
    right: -22px;
}
.brand_swiper {
    padding-top: 38px;
    padding-bottom: 40px;
    background: #f8f8f8;
}
@media (min-width: 1920px) {
    .brand_swiper {
        padding-bottom: 44px;
    }
}
.brand_swiper-inner {
    margin: 0 auto;
}
@media (min-width: 768px) {
    .brand_swiper-inner {
        overflow-x: hidden;
    }
}
@media (min-width: 1024px) {
    .brand_swiper-inner {
        max-width: calc(100vw - 62px);
    }
}
.brand_swiper-title {
    margin-bottom: 23px;
}
@media (min-width: 1920px) {
    .brand_swiper-title {
        margin-bottom: 35px;
    }
}
.brand_swiper-img_swiper {
    display: inline-flex;
    padding: 0 30vw;
}
@media (min-width: 768px) {
    .brand_swiper-img_swiper {
        padding: 0;
    }
    .brand_swiper-img_swiper>.swiper-wrapper {
        justify-content: center;
    }
}
.brand_swiper-brand_slide {
    height: auto;
    margin-right: 50px;
    text-align: center;
    cursor: pointer;
}
@media (min-width: 768px) {
    .brand_swiper-brand_slide {
        width: auto !important;
        margin-right: 60px;
    }
}
@media (max-width: 1023.98px) {
    .brand_swiper-brand_slide--active .brand_swiper-brand_wrap {
        position: relative;
    }
    .brand_swiper-brand_slide--active .brand_swiper-brand_wrap::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 16px;
        left: 0;
        height: 2px;
        background: #333;
    }
}
.brand_swiper-brand_wrap {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0 auto;
}
.brand_swiper-thumb--active {
    cursor: default;
}
@media (min-width: 768px) {
    .brand_swiper-thumb--active .brand_swiper-brand_wrap {
        position: relative;
    }
    .brand_swiper-thumb--active .brand_swiper-brand_wrap::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 16px;
        left: 0;
        height: 2px;
        background: #333;
    }
}
.brand_swiper-img.active {
    display: none;
}
@media (max-width: 1023.98px) {
    .brand_swiper-brand_slide--active .brand_swiper-img.active {
        display: block;
    }
    .brand_swiper-brand_slide--active .brand_swiper-img.default {
        display: none;
    }
}
@media (min-width: 768px) {
    .brand_swiper-thumb--active .brand_swiper-img.active {
        display: block;
    }
    .brand_swiper-thumb--active .brand_swiper-img.default {
        display: none;
    }
}
.brand_swiper-quote_swiper {
    display: flex;
}
.brand_swiper-blockquote {
    max-width: 60%;
    color: #000;
}
.quote {
    position: relative;
}
.quote::before {
    content: "“";
    position: absolute;
    top: -11px;
    left: -22px;
    display: block;
    font-style: normal;
    font-size: 36px;
    font-family: serif;
}
[dir=rtl] .quote::before {
    content: "”";
}
.valueprop_revamp-inner {
    max-width: 1094px;
}
@media (min-width: 1920px) {
    .valueprop_revamp-inner {
        max-width: 1297px;
    }
}
.valueprop_revamp-item+.valueprop_revamp-item {
    margin-top: 38px;
}
@media (min-width: 768px) {
    .valueprop_revamp-item+.valueprop_revamp-item {
        margin-top: 0;
    }
}
.cms .text-color--dark-grey {
    color: #666 !important;
}
.cms .bg-color--lighter-grey {
    background-color: #f0f0f0 !important;
}
.cms a:not(.btn):not(.dropdown-item):hover,
.cms .btn-link:not(.btn):not(.dropdown-item):hover {
    color: #333;
}
.cms h1 {
    font-size: 24px;
}
.cms h2 {
    font-size: 18px;
    text-transform: uppercase;
}
.cms h3 {
    font-size: 14px;
    text-transform: uppercase;
}
.cms .paragraph-variation {
    padding-left: 20px;
    border-left: 10px solid #f0f0f0;
}
.cms blockquote p {
    padding-left: 80px;
}
.cms blockquote::before {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 50'%3E%3Cpath id='Quote' d='M73.623-60.069h-9v-2.512q0-11.912,9-14.506v-9q-24,2.107-24,31.929v18.071h24Zm-36,0h-9v-2.512q0-11.912,9-14.506v-9q-24,2.107-24,31.929v18.071h24Z' transform='translate(-13.623 86.082)' fill='%23f0f0f0'/%3E%3C/svg%3E");
}
.cms mark {
    background-color: #ccc;
}
.cms ul.list,
.cms ol.list {
    padding-left: 15px;
}
@media (min-width: 768px) {
    .cms ul.list,
.cms ol.list {
        padding-left: 50px;
    }
}
.cms ul.list li,
.cms ol.list li {
    padding-left: 10px;
}
.cms ol.list ul {
    list-style: disc;
}
.cms .table th,
.cms .table td {
    min-width: 100px;
    padding: 9px;
}
.cms .table-head_description {
    font-size: 14px;
    font-weight: 400;
}
.cms .table-layout-fixed {
    table-layout: fixed;
}
.cms .table-layout-fixed .table-title-bold {
    background-color: #333;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}
.cms .table-layout-fixed .text-bold-upercase {
    font-weight: 600;
    text-transform: uppercase;
}
.cms .nav-link {
    text-transform: uppercase;
}
.cms .nav-link[data-title]::before {
    content: attr(data-title);
    display: block;
    font-weight: 700;
    height: 1px;
    color: transparent;
    overflow: hidden;
    visibility: hidden;
}
.cms .nav-link:not(.active) {
    border-bottom: 0;
}
.cms .nav-link:hover, .cms .nav-link.active {
    color: #000;
    border-bottom: 2px solid #333;
    font-weight: 700;
}
.cms .nav-link::after {
    display: none;
}
@media (min-width: 1024px) {
    .cms .size_guide-table_all th,
.cms .size_guide-table_all td {
        min-width: 100px;
    }
}
@media (max-width: 767.98px) {
    .cms .size_guide-table_all th,
.cms .size_guide-table_all td {
        width: 100px;
        height: 46px;
        padding: 0;
    }
}
.cms .size_guide-table_all thead th {
    border: 1px solid #ccc;
}
@media (min-width: 1024px) {
    .cms .size_guide-table_all thead th {
        width: 244px;
    }
}
.cms .size_guide-dropdown {
    text-transform: uppercase;
    font-weight: bold;
}
.cms .accordion .icon-arrow {
    flex-shrink: 0;
    width: 5px;
    height: 10px;
    margin-right: 15px;
    transform: rotate(90deg);
    transition: transform 0.2s;
}
.cms .accordion .icon-expand_and_collapse {
    position: absolute;
    top: 18px;
    right: 0;
}
.cms .accordion .icon-expand_and_collapse.collapse {
    display: inline-block;
}
.cms .accordion .icon-expand_and_collapse.expand {
    display: none;
}
.cms .accordion-content:not(:first-child) {
    border-top: 1px solid #f0f0f0;
}
.cms .accordion-heading {
    position: relative;
    padding: 15px 0;
    cursor: pointer;
}
.cms .accordion-heading:not(:first-child) {
    border-top: 1px solid #f0f0f0;
}
.cms .accordion-heading:not(.collapsed) {
    font-weight: 700;
}
.cms .accordion-heading.collapsed .icon-arrow {
    transform: rotate(0);
}
.cms .accordion-heading.collapsed .icon-expand_and_collapse.collapse {
    display: none;
}
.cms .accordion-heading.collapsed .icon-expand_and_collapse.expand {
    display: inline-block;
}
.cms .accordion-padding {
    padding: 15px 0;
}
.cms .accordion-model_padding {
    padding: 55px 0 0 20px;
}
.cms .accordion-body>:last-child {
    margin-bottom: 50px;
}
.cms .accordion--icon_arrows .accordion-heading {
    display: flex;
    align-items: center;
}
.cms .accordion--icon_arrows .accordion-body {
    margin-left: 20px;
}
.cms .accordion--icon_plusminus .accordion-heading, .cms .accordion--icon_plusminus .accordion-body {
    padding-right: 30px;
}
.cms .dropdown-toggle, .cms .dropdown-menu {
    width: 100%;
}
.cms .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    padding: 11px 9px;
    text-align: left;
    text-transform: none;
}
.cms .dropdown-toggle::after {
    content: "";
    position: absolute;
    display: block;
    width: 21px;
    height: 10px;
    right: 2px;
    margin-top: 5px;
    border: 0;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -4 10 10'%3E%3Cpath fill='%23000' d='M8.833.188A.918.918,0,0,1,9.333,0,.624.624,0,0,1,9.8.226a.994.994,0,0,1,.2.6.8.8,0,0,1-.3.6L6.067,4.436A1.882,1.882,0,0,1,5,5a1.858,1.858,0,0,1-1.1-.564L.267,1.429A.891.891,0,0,1,0,.827.819.819,0,0,1,.2.263.561.561,0,0,1,.667,0a.761.761,0,0,1,.5.188L4.833,3.233c.067.038.1.075.133.075A.243.243,0,0,0,5.1,3.233Z'/%3E%3C/svg%3E") no-repeat right 0.5rem center;
    background-size: 18px 10px;
}
.cms .dropdown-menu {
    margin: 0;
    padding: 15px 0;
    border-radius: 0 0 5px 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 3px 0;
}
.cms .dropdown-item {
    padding: 10px;
}
.cms .dropdown-item:hover {
    background-color: #f0f0f0;
}
.cms .dropdown-icon {
    width: 5px;
    height: 10px;
    margin-top: 5px;
    transform: rotate(-90deg);
}
.cms .dropdown.show .dropdown-toggle {
    color: #000;
    border-color: #000;
}
.cms .carousel-indicators {
    display: flex;
    align-items: center;
    /* stylelint-disable no-descending-specificity */
}
.cms .carousel-indicators li {
    width: 6px;
    height: 6px;
    margin: 0 5px;
}
.cms .carousel-indicators li.active {
    width: 8px;
    height: 8px;
}
.cms .carousel-caption {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 0;
    width: 100%;
    padding: 0 20px;
    transform: translateY(-50%);
    color: #000;
}
@media (min-width: 1280px) {
    .cms .carousel-caption {
        width: 50%;
    }
}
.cms .carousel-slide_title {
    font-size: 18px;
    margin-bottom: 10px;
}
@media (min-width: 1280px) {
    .cms .carousel-slide_title {
        font-size: 24px;
    }
}
.cms .carousel-slide_body {
    font-size: 14px;
    line-height: 24px;
}
@media (min-width: 1280px) {
    .cms .carousel-slide_body {
        font-size: 18px;
    }
}
.cms .carousel-control-prev {
    justify-content: flex-start;
}
.cms .carousel-control-next {
    justify-content: flex-end;
}
.cms .carousel-control_icon {
    height: 40px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
}
.cms .card {
    border: 0;
    border-radius: 0;
}
.cms .card h2 {
    font-size: 24px;
}
.cms .card-img-top {
    border-radius: 0;
}
.cms .card-body, .cms .card-img-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.cms .card-img-overlay h2 {
    margin-bottom: 30px;
}
.cms .card-img-overlay .btn {
    margin-top: 30px;
}
.cms .card--text_image .card-body {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8);
}
.cms .card--text_overlay_dark .card-img-overlay {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
}
.cms .card--text_overlay_light .card-img-overlay {
    color: #000;
    background-color: rgba(255, 255, 255, 0.6);
}
.cms .mm-wrapper {
    display: flex;
}
@media (min-width: 768px) {
    .faq_menu {
        max-width: 248px !important;
    }
}
@media (min-width: 1280px) {
    .faq_menu {
        padding-right: 30px !important;
    }
}
.faq_menu-popup {
    display: none;
}
@media (min-width: 375px) {
    .faq_menu-last_element--empty {
        display: none !important;
    }
}
.modal .faq_menu-page {
    display: none;
}
.modal .faq_menu-popup {
    display: block;
}
.quickview_edit-content {
    max-width: 335px;
    border: 0;
}
@media (min-width: 1024px) {
    .quickview_edit-content {
        max-width: 720px;
    }
}
.quickview_edit-swatch {
    float: left;
    width: 48%;
    margin-left: 4%;
}
.quickview_edit-swatch:first-child {
    margin: 0;
}
.quickview_edit .global_quickview_btn {
    margin: 18px 0 0;
}
.quickview_edit-attributes {
    margin: 10px 0 0;
}
.quickview_edit-attributes .personalization {
    margin-top: 0;
}
.quickview_edit-attributes .personalization .personalized_item {
    padding-left: 0;
    border-left: none;
}
.quickview_edit-attributes .personalization .personalized_item-description {
    display: none;
}
.quickview_edit-attributes .personalize-summary {
    margin-bottom: 30px;
}
.quickview_edit-attributes .personalize-link {
    margin-bottom: 30px;
    padding: 10px;
    background-color: #f8f8f8;
}
.quickview_edit-attributes .personalize-link--warning {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #f0f0f0;
    background-color: #f8f8f8;
}
.quickview_edit-button_wrapper {
    clear: both;
    margin: 0 0 30px;
}
@media (min-width: 1024px) {
    .quickview_edit-button_wrapper {
        position: relative;
        margin: 0;
    }
}
.quickview_edit-details_wrapper {
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}
@media (min-width: 768px) {
    .quickview_edit-details_wrapper {
        margin-top: 30px;
    }
}
.quickview_edit-details_link {
    text-decoration: underline;
    color: #666;
}
.quickview_edit-availability {
    margin-top: 10px !important;
    text-align: center;
    color: #f00;
}
@media (min-width: 1024px) {
    .quickview_edit-details {
        width: 290px;
    }
}
@media (min-width: 1024px) {
    .quickview_edit-body {
        padding: 30px 50px 30px 40px !important;
    }
}
@media (min-width: 1024px) {
    .quickview_edit-wrapper {
        display: flex;
        align-items: center;
    }
}
.quickview_edit .carousel {
    max-width: 150px;
    margin: 0 auto 15px;
    padding: 0;
}
@media (min-width: 1024px) {
    .quickview_edit .carousel {
        flex: auto;
        width: 290px;
        max-width: 100%;
        margin: 0 50px 0 0;
    }
}
.quickview_edit .carousel-item .carousel-img {
    width: 290px;
    max-height: 387px;
    margin: 0 auto;
}
.quickview_edit .carousel-control {
    display: none;
}
@media (min-width: 1024px) {
    .quickview_edit .carousel-control {
        display: flex;
    }
}
.quickview_edit .discount_percentage {
    text-align: left;
}
.quickview_edit .attribute {
    margin: 0;
    padding: 0;
}
.quickview_edit .close {
    z-index: 1060;
}
.quickview_edit .pswp {
    display: none;
}
.wishlist-container {
    max-width: 1250px;
}
.wishlist-title {
    margin: 0 0 14px;
    text-align: center;
}
@media (min-width: 1024px) {
    .wishlist-title {
        margin: 0 0 27px;
    }
}
.wishlist-guest_prompt {
    margin-top: 6px;
    text-align: center;
}
@media (min-width: 1024px) {
    .wishlist-guest_prompt {
        margin-top: -17px;
    }
}
.wishlist-confirmation_popover {
    top: 54px;
    right: -38px;
    left: auto;
    width: 420px;
    max-width: 420px;
    padding: 20px 45px 20px 55px;
    border: none;
    border-radius: 0;
    background-color: #333;
    color: #fff;
    font-size: 0.9375rem;
}
.wishlist-confirmation_popover .btn-link {
    color: #fff;
}
.wishlist-confirmation_popover::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 37px;
    border: 10px solid transparent;
    border-bottom-color: #333;
}
.wishlist-confirmation_popover .close {
    top: 13px;
    right: 13px;
}
.wishlist-confirmation_heart_icon {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 18px;
    fill: #fff;
}
.wishlist-confirmation_msg {
    font-size: 15px;
    line-height: 20px;
}
@media (min-width: 768px) {
    .wishlist-confirmation_msg {
        line-height: 23px;
    }
}
.wishlist-cards {
    position: relative;
    margin: 0 0 20px;
}
@media (min-width: 1024px) {
    .wishlist-cards {
        margin: 0 0 82px;
    }
}
.wishlist-cards .line-item-quantity,
.wishlist-cards .line-item-price-info {
    display: none;
}
.wishlist-card {
    position: relative;
    padding: 20px 0 30px;
    border-top: 1px solid #ccc;
}
@media (min-width: 1024px) {
    .wishlist-card {
        padding-bottom: 18px;
    }
}
.wishlist-card .discount_percentage {
    text-align: left;
}
@media (min-width: 1024px) {
    .wishlist-card .discount_percentage {
        text-align: center;
    }
}
.wishlist-count {
    position: absolute;
    top: -39px;
    right: 0;
}
[dir=rtl] .wishlist-count {
    right: unset !important;
    left: 0;
}
.wishlist-image_wrapper {
    float: left;
    width: 75px;
    margin: 0 10px 0 0;
}
@media (min-width: 1024px) {
    .wishlist-image_wrapper {
        width: 104px;
        margin-right: 20px !important;
    }
}
.wishlist-image {
    width: 100%;
}
.wishlist-attributes_wrapper {
    float: left;
}
[dir=rtl] .wishlist-attributes_wrapper {
    float: right;
}
@media (min-width: 1024px) {
    .wishlist-attributes_wrapper {
        display: flex;
        align-items: center;
        width: calc(100% - 124px);
    }
}
.wishlist-attribute_color {
    float: left;
    text-align: left;
    width: auto;
}
[dir=rtl] .wishlist-attribute_color {
    float: right !important;
}
@media (min-width: 1024px) {
    .wishlist-attribute_color {
        width: 13%;
        text-align: center;
    }
}
.wishlist-attribute_size {
    float: left;
    width: auto;
    text-align: left;
    text-indent: 2px;
}
[dir=rtl] .wishlist-attribute_size {
    float: right !important;
}
@media (min-width: 1024px) {
    .wishlist-attribute_size {
        width: 11%;
        text-align: center;
    }
}
@media (min-width: 1024px) {
    .wishlist-attribute_label {
        display: none;
    }
}
.wishlist-attribute_value {
    font-weight: 400;
}
@media (min-width: 1024px) {
    .wishlist-attribute_value {
        font-weight: 700;
    }
}
.wishlist-item_header {
    max-width: 235px;
    margin: 0 0 1em;
}
@media (min-width: 1024px) {
    .wishlist-item_header {
        float: left;
        width: 32%;
        max-width: 100%;
        margin: 0;
    }
}
.wishlist-item_header .col-5 {
    flex: auto;
    max-width: 100%;
}
.wishlist-item_name {
    font-weight: 700;
}
@media (min-width: 1024px) {
    .wishlist-item_name {
        margin: 0 0 15px;
        text-align: left;
    }
}
.wishlist-item_link:hover {
    text-decoration: none;
}
.wishlist-item_expire {
    margin: 10px 0 0;
    color: #999;
    font-size: 0.5625rem;
    text-transform: uppercase;
    text-align: center;
}
@media (min-width: 1024px) {
    .wishlist-item_expire {
        text-align: left;
    }
}
@media (min-width: 1024px) {
    .wishlist-item_expire--gift {
        padding-top: 24px;
    }
}
.wishlist-add_to_cart {
    clear: both;
    padding: 20px 0 0;
}
@media (min-width: 1024px) {
    .wishlist-add_to_cart {
        position: absolute;
        top: 50%;
        right: 33px;
        padding: 0;
        transform: translate(0, -50%);
    }
}
@media (min-width: 1024px) {
    .wishlist-add_to_cart_button {
        width: auto;
        min-width: 194px;
        padding: 10px 8px;
    }
    .wishlist-add_to_cart_button:hover {
        background-color: #000;
        color: #fff;
    }
    .wishlist-add_to_cart_button:disabled, .wishlist-add_to_cart_button:disabled:hover {
        color: #ccc;
        border-color: #ccc;
        background-color: #fff;
        opacity: 1;
    }
}
.wishlist-edit {
    clear: both;
    margin-top: 18px;
}
@media (min-width: 1024px) {
    .wishlist-edit {
        position: absolute;
        top: 50%;
        right: 290px;
        margin: 0;
        transform: translate(0, -50%);
    }
}
.wishlist-edit_link {
    font-size: 0.9375rem;
    text-decoration: underline;
}
[dir=rtl] .wishlist-edit_link {
    float: right;
}
.wishlist-remove {
    position: absolute;
    top: 14px;
    right: 0;
}
@media (min-width: 1024px) {
    .wishlist-remove {
        top: 50%;
        width: 16px;
        height: 16px;
        transform: translate(0, -50%);
    }
}
.wishlist-remove_button {
    padding: 0;
    border: 0;
    background-color: transparent;
}
.wishlist-remove_button:hover, .wishlist-remove_button:active, .wishlist-remove_button:focus {
    border: 0;
    background-color: #fff !important;
}
@media (min-width: 1024px) {
    .wishlist-remove_button {
        display: block;
        width: 16px;
        height: 16px;
    }
}
.wishlist-remove_icon {
    width: 16px;
    height: 16px;
}
@media (min-width: 1024px) {
    .wishlist-remove_icon {
        display: block;
    }
}
.wishlist-availability_wrapper {
    clear: both;
}
.wishlist-availability {
    color: #f00;
    text-align: left;
}
[dir=rtl] .wishlist-availability {
    text-align: right !important;
}
.wishlist-price_wrapper {
    float: left;
}
@media (min-width: 1024px) {
    .wishlist-price_wrapper {
        width: 10%;
        padding: 0 10px;
        text-align: center;
    }
}
.wishlist-price_wrapper .col-5 {
    flex: auto;
    max-width: 100%;
}
.wishlist-empty {
    margin: 18px 0 50px;
}
@media (min-width: 1024px) {
    .wishlist-empty {
        margin-bottom: 102px;
    }
}
.wishlist-empty_message {
    margin: 0 0 18px;
}
.wishlist-empty_message p {
    margin: 0 0 3px;
}
.wishlist-empty_count {
    position: absolute;
    top: -105px;
    right: 0;
}
.wishlist .product-card-price {
    display: block;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0.9375rem;
}
.wishlist .line-item-attributes {
    font-size: 0.9375rem;
}
.wishlist .badge {
    margin: 0 0 3px;
}
[dir=rtl] .wishlist .badge {
    margin: 0 10px 0 80% !important;
}
@media (min-width: 1024px) {
    [dir=rtl] .wishlist .badge {
        margin: 0 0 0 80% !important;
    }
}
.wishlist .warning_msg {
    margin: 0;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
}
.wishlist .recommendations-content {
    min-height: 460px;
}
.wishlist .recommendations-content .product.active .carousel-control {
    padding: 0 5px;
}
.wishlist .recommendations-content .product.active .carousel-control::before {
    display: none;
}
.wishlist .recommendations-content .product.active .carousel-control_icon {
    width: 10px;
    height: 20px;
}
.wishlist_heading {
    padding: 8px 0 8px 124px;
    border-top: 1px solid #ccc;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
}
.wishlist_heading-product {
    float: left;
    width: 32%;
}
.wishlist_heading-color {
    float: left;
    width: 13%;
    text-align: center;
}
[dir=rtl] .wishlist_heading-color {
    position: absolute;
    left: 58%;
}
.wishlist_heading-size {
    float: left;
    width: 11%;
    text-align: center;
}
[dir=rtl] .wishlist_heading-size {
    position: absolute;
    left: 48%;
}
.wishlist_heading-price {
    float: left;
    width: 10%;
    text-align: center;
}
[dir=rtl] .wishlist_heading-price {
    position: absolute;
    left: 40%;
}
.wishlist_heading--bundled {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
[dir=rtl] .badge_image {
    text-align: center;
}
.wishlist_bundle {
    margin-bottom: 20px;
}
.wishlist_bundle .wishlist-card:first-child {
    border-color: #f0f0f0;
    border-top: none;
}
.wishlist_bundle-header {
    padding: 15px 20px;
    background-color: #f0f0f0;
    font-size: 0.9375rem;
    text-transform: uppercase;
    font-weight: 700;
}
[dir=rtl] .wishlist_bundle-header {
    text-align: right;
}
@media (max-width: 1023.98px) {
    .wishlist_bundle-body {
        padding-right: 10px;
        padding-left: 10px;
        border: 1px solid #f0f0f0;
    }
    .wishlist_bundle-body .wishlist-remove {
        right: 10px;
    }
}
.wishlist_auth_modal-login .login_form {
    padding-bottom: 0;
}
.wishlist_auth_modal-login .login_form::after {
    content: none;
}
.wishlist_auth_modal-login .outsite_signin_divider {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 20px 0 15px;
}
.wishlist_auth_modal-login .outsite_signin_divider-liner {
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
.wishlist_auth_modal-login .outsite_signin_divider-text {
    color: #666;
    white-space: nowrap;
}
.wishlist_auth_modal-registration .outsite_signin_divider {
    margin: 15px 0;
}
.wishlist_auth_modal-registration .outsite_signin_list {
    margin-top: 0;
}
.dropdown_input {
    margin-bottom: 15px;
}
.dropdown_input-caption {
    white-space: normal;
    display: flex;
}
.dropdown_input-label {
    display: inline-flex;
    align-items: center;
    height: calc(2.46875rem + 2px);
}
.dropdown_input-label--my_profile {
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .dropdown_input-controls--profile {
        padding-right: 10px;
        padding-left: 17px;
    }
}
@media (min-width: 1024px) {
    .dropdown_input-controls--profile {
        margin-right: 15px;
        padding-right: 0;
        padding-left: 15px;
    }
}
@media (min-width: 1280px) {
    .dropdown_input-controls--profile {
        max-width: 340px;
        padding-left: 15px;
    }
}
.dropdown_input-label, .dropdown_input-control_group {
    margin-bottom: 0;
}
.dropdown_input-tooltip {
    height: calc(2.46875rem + 2px);
    margin-top: 0;
    margin-left: 10px;
    padding: 10px 0;
    transform: translate(1px, -2px);
}
@media (min-width: 1024px) {
    .dropdown_input-tooltip {
        margin-left: 3px;
    }
}
@media (min-width: 1024px) {
    .dropdown_input-tooltip--my_profile, .dropdown_input-tooltip--registration {
        margin-left: 5px;
    }
}
@media (min-width: 1024px) {
    .dropdown_input-tooltip--my_profile:lang(th) {
        margin-left: 1px;
    }
}
.dropdown_input-select {
    width: 70px;
    /*rtl:begin:ignore*/
    margin-right: -1px;
    padding: 0 1.5rem 0 0.5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    /*rtl:end:ignore*/
}
.dropdown_input-select:not(:focus), .dropdown_input-select.is-invalid:focus {
    /*rtl:begin:ignore*/
    border-right-color: transparent;
    /*rtl:end:ignore*/
}
.dropdown_input-input_filed_wrapper {
    position: relative;
    margin-left: -2px;
}
.dropdown_input-input_filed_wrapper::before, .dropdown_input-input_filed_wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1px;
    border-top: 1px solid #ccc;
}
.dropdown_input-input_filed_wrapper::before {
    top: 0;
}
.dropdown_input-input_filed_wrapper::after {
    bottom: 0;
}
.dropdown_input-input_filed {
    /*rtl:begin:ignore*/
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    /*rtl:end:ignore*/
}
.dropdown_input-input_filed:not(:focus), .dropdown_input-input_filed.is-invalid:focus {
    /*rtl:begin:ignore*/
    border-left-color: transparent;
    /*rtl:end:ignore*/
}
.address_form {
    margin: 19px 0 0;
}
.address_form--for_registered_user {
    margin-top: 12px;
}
.address_form .form-control-label {
    margin: 9px 0;
}
.address_form .form-control-label--vnm {
    margin: 17px 0;
}
.address_form .forms-disabled {
    background-color: #f8f8f8;
    cursor: not-allowed;
}
.address_form .c-dynamic_field {
    margin-top: 0;
}
.address_form-section_label {
    padding: 0 7px 0 0;
    font-weight: 700;
}
.address_form-label {
    margin: -1px 0 -2px;
}
@media (min-width: 375px) {
    .address_form-field_wrapper {
        padding-left: 5px;
    }
}
@media (min-width: 1280px) {
    .address_form-state_label_wrap {
        max-width: -webkit-fit-content !important;
        max-width: -moz-fit-content !important;
        max-width: fit-content !important;
    }
}
@media (min-width: 1280px) {
    .address_form-city_label_wrap--ID {
        flex-basis: 73px;
        padding-right: 0;
    }
}
@media (min-width: 1280px) {
    .address_form-city_field_wrap {
        flex-basis: calc(100% - 73px);
        max-width: calc(100% - 73px);
    }
}
@media (min-width: 1280px) {
    .address_form-city_field_wrap_VNM {
        flex-basis: calc(100% - 95px);
    }
}
@media (min-width: 1280px) {
    .address_form-city_label {
        transform: translateX(4px);
    }
}
.address_form-set_default {
    margin-bottom: 10px;
}
.address_form-save_btn_wrapper {
    margin-bottom: 0;
}
@media (min-width: 1280px) {
    .address_form-save_btn_wrapper {
        margin-bottom: 15px;
    }
}
.address_form-save_btn,
.payment_form-save_btn {
    display: block;
    width: 100%;
    margin: 13px auto 30px;
}
.address_form-save_btn[data-state=billing],
.payment_form-save_btn[data-state=billing] {
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .address_form-save_btn,
.payment_form-save_btn {
        width: auto;
        margin-bottom: 18px;
    }
}
@media (min-width: 375px) {
    :lang(th) .address_form-state_field {
        padding-left: 25px;
    }
}
.address_dropdown {
    max-width: 180px;
}
@media (min-width: 375px) {
    .address_dropdown {
        max-width: 220px;
        margin-right: 42px;
    }
}
@media (min-width: 1280px) {
    .address_dropdown {
        max-width: 272px;
    }
}
.address_summary {
    margin-top: 8px;
}
.address_summary:lang(ja) {
    font-size: 14px;
}
@media (min-width: 1280px) {
    .address_summary:lang(ja) {
        font-size: 14px;
    }
}
.cc_lookup-dropdown_wrapper:empty {
    display: none;
}
.cc_lookup-dropdown {
    padding-right: 26px !important;
}
@media (max-width: 767.98px) {
    .cc_lookup-dropdown {
        overflow: hidden;
    }
}
@media (min-width: 1280px) {
    .locator_dropdown {
        margin-top: 6px;
    }
    .locator_dropdown--ID {
        padding-left: 10px;
    }
    .locator_dropdown-select_state--ID {
        width: 285px;
    }
    .locator_dropdown-select_district--ID {
        width: 285px;
    }
    .locator_dropdown-select_city--ID {
        width: 285px;
        margin-left: 55px;
    }
}
.locator_dropdown-select {
    min-height: 46px;
}
.locator_dropdown-label {
    line-height: 1;
}
@media (min-width: 1280px) {
    .locator_dropdown-label_city {
        margin-left: 7px !important;
        line-height: 1;
    }
}
@media (min-width: 1280px) {
    .locator_dropdown-label_postalcode {
        line-height: 1;
    }
}
@media (min-width: 1280px) {
    .locator_dropdown-select_state {
        margin-left: 11px;
    }
}
@media (min-width: 1280px) {
    .locator_dropdown-select_city {
        margin-left: 10px;
    }
}
@media (max-width: 374.98px) {
    .locator_dropdown-select_ward {
        width: 93%;
        margin-left: 20px;
    }
}
@media (min-width: 1280px) {
    .locator_dropdown-select_ward {
        width: 90%;
        margin-left: 20px;
    }
}
@media (min-width: 1280px) {
    .locator_dropdown-label_city--ID {
        margin-left: 0 !important;
    }
}
.shipping_tooltip_kcg {
    margin-left: 10px;
    line-height: 1.3;
}
.shipping_total_cost_kcg--txt_msg {
    color: #999;
}
.main_address_popup {
    position: fixed;
    top: 0;
    z-index: 1020;
    width: 100%;
    height: 100%;
    margin: auto;
    overflow: hidden;
    background-color: #fff;
}
.main_address_popup-iframe {
    top: 0;
    left: 0;
    width: 100%;
    min-width: 300px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0 none;
    overflow: hidden;
}
.main_address_popup-close {
    width: 10%;
    height: 5%;
}
.postcode_lookup {
    display: flex;
    flex-wrap: wrap;
}
.postcode_lookup-input {
    flex: 1 1 0;
}
.postcode_lookup-btn_wrap {
    padding-left: 10px;
}
.postcode_lookup-btn {
    border: 1px solid #ccc;
    background: linear-gradient(to top, #f0f0f0, #fff);
}
.hide-map {
    display: none;
}
.map-location-hide {
    height: 0;
    margin: 0;
}
.notify_me-btn:not(:hover) {
    color: #000 !important;
    border-color: #666 !important;
    background-color: transparent !important;
}
.notify_me-preorder_btn {
    margin-top: 15px !important;
}
.notify_me-modal_body {
    padding-bottom: 28px !important;
}
@media (min-width: 1280px) {
    .notify_me-modal_body {
        padding: 1.25rem 40px 53px !important;
    }
}
.notify_me-title {
    margin-top: 14px;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
}
@media (min-width: 1280px) {
    .notify_me-title {
        font-size: 24px;
    }
}
.notify_me-product_img_wrap {
    float: left;
    width: 35%;
}
[dir=rtl] .notify_me-product_img_wrap {
    float: right !important;
    padding-left: 30px;
}
@media (max-width: 1023.98px) {
    [dir=rtl] .notify_me-product_img_wrap {
        padding-left: 0;
    }
}
@media (min-width: 1280px) {
    .notify_me-product_img_wrap {
        width: 40%;
        min-height: 300px;
    }
}
[dir=rtl] .notify_me-agree_label_text {
    padding: 0 20px 0 5px;
}
.notify_me-product_img_wrap .carousel-control {
    display: none;
}
@media (min-width: 1280px) {
    .notify_me-product_img_wrap .carousel-control {
        display: flex;
    }
}
.notify_me-img_carousel_item {
    min-height: 134px;
}
@media (min-width: 1280px) {
    .notify_me-img_carousel_item {
        min-height: 386px;
    }
}
.notify_me-product_details {
    float: left;
    width: 65%;
    padding-left: 10px;
}
@media (min-width: 768px) {
    .notify_me-product_details {
        padding-left: 30px;
    }
}
[dir=rtl] .notify_me-product_details {
    padding-left: 0;
}
@media (min-width: 1280px) {
    .notify_me-product_details {
        width: 60%;
    }
}
[dir=rtl] .notify_me-label::before {
    right: 0;
    left: unset !important;
}
.notify_me-form {
    float: left;
    width: 100%;
    margin-top: 27px;
}
@media (min-width: 768px) {
    .notify_me-form {
        width: 60%;
        margin-top: 23px;
        padding-left: 30px;
    }
    [dir=rtl] .notify_me-form {
        padding-left: 0;
    }
}
@media (min-width: 1280px) {
    .notify_me-product_title_wrap {
        display: flex;
    }
}
@media (min-width: 1280px) {
    .notify_me-product_name {
        font-size: 18px;
    }
}
.notify_me-product_price {
    margin-top: 12px;
}
@media (min-width: 1280px) {
    .notify_me-product_price {
        margin-top: 4px;
        margin-left: auto;
        text-align: right;
    }
    [dir=rtl] .notify_me-product_price {
        margin-right: auto;
        margin-left: 0 !important;
        padding-left: 35px;
    }
}
@media (min-width: 1280px) {
    .notify_me-product_attrs {
        margin-top: 11px;
    }
    [dir=rtl] .notify_me-product_attrs {
        display: flex;
    }
}
.notify_me-attr_value {
    font-weight: 700;
}
.notify_me-attr_value::after {
    content: ",";
}
.notify_me-attr_value:last-child::after {
    display: none;
}
.notify_me-wishlist {
    margin-top: 14px;
    text-align: center;
    color: #999;
}
.notify_me-wishlist a {
    color: inherit;
    text-decoration: underline;
}
.notify_me-product {
    overflow: hidden;
}
@media (min-width: 1280px) {
    .notify_me-product {
        min-height: 391px;
    }
}
.notify_me-submit:disabled {
    color: #fff;
    border-color: #333;
    background-color: #333;
    opacity: 0.2;
}
.notify_me-dialog {
    max-width: 806px;
}
.notify_me-sku {
    padding-top: 0;
}
.notify_me-group {
    margin-bottom: 29px;
}
[dir=rtl] .notify_me-group .custom-control {
    padding-left: 0;
}
.notify_me-form_invalid_feedback {
    margin-top: 14px;
}
@media (min-width: 1280px) {
    .notify_me_success-dialog {
        max-width: 394px;
    }
}
.notify_me_success-modal_body {
    padding: 40px 30px 30px !important;
}
.notify_me_success-title {
    margin-bottom: 7px;
}
.notify_me_success-btn {
    margin-top: 11px;
}
.address_validation_modal {
    z-index: 1063;
    padding-right: 0 !important;
}
.address_validation_modal-content {
    width: 348px;
}
@media (min-width: 1280px) {
    .address_validation_modal-content {
        width: 392px;
    }
}
.address_validation_modal-body {
    padding-top: 40px;
}
.address_validation_modal-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}
.address_validation_modal-text {
    text-align: center;
    margin-bottom: 30px;
}
.address_validation_modal-button {
    width: 116px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.spinner {
    position: absolute;
    top: 45%;
    left: calc(50% - 15px);
    z-index: 3;
    width: 30px;
    height: 30px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid #999;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}
.underlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background-color: #fff;
    opacity: 0.7;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.swatch-circle-beige {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #f5f5dc;
    position: relative;
    display: block;
}
.swatch-circle-beige.disabled {
    opacity: 0.2;
}
.swatch-filter-beige {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #f5f5dc;
    position: relative;
    display: block;
    background-color: #f5f5dc;
}
.swatch-filter-beige.disabled {
    opacity: 0.2;
}
.swatch-circle-black {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #000;
    position: relative;
    display: block;
}
.swatch-circle-black.disabled {
    opacity: 0.2;
}
.swatch-filter-black {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #000;
    position: relative;
    display: block;
    background-color: #000;
}
.swatch-filter-black.disabled {
    opacity: 0.2;
}
.swatch-circle-blue {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #06f;
    position: relative;
    display: block;
}
.swatch-circle-blue.disabled {
    opacity: 0.2;
}
.swatch-filter-blue {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #06f;
    position: relative;
    display: block;
    background-color: #06f;
}
.swatch-filter-blue.disabled {
    opacity: 0.2;
}
.swatch-circle-brown {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #a52a2a;
    position: relative;
    display: block;
}
.swatch-circle-brown.disabled {
    opacity: 0.2;
}
.swatch-filter-brown {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #a52a2a;
    position: relative;
    display: block;
    background-color: #a52a2a;
}
.swatch-filter-brown.disabled {
    opacity: 0.2;
}
.swatch-circle-green {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #090;
    position: relative;
    display: block;
}
.swatch-circle-green.disabled {
    opacity: 0.2;
}
.swatch-filter-green {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #090;
    position: relative;
    display: block;
    background-color: #090;
}
.swatch-filter-green.disabled {
    opacity: 0.2;
}
.swatch-circle-grey {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #8f979d;
    position: relative;
    display: block;
}
.swatch-circle-grey.disabled {
    opacity: 0.2;
}
.swatch-filter-grey {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #8f979d;
    position: relative;
    display: block;
    background-color: #8f979d;
}
.swatch-filter-grey.disabled {
    opacity: 0.2;
}
.swatch-circle-navy {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #000080;
    position: relative;
    display: block;
}
.swatch-circle-navy.disabled {
    opacity: 0.2;
}
.swatch-filter-navy {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #000080;
    position: relative;
    display: block;
    background-color: #000080;
}
.swatch-filter-navy.disabled {
    opacity: 0.2;
}
.swatch-circle-orange {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #ffa500;
    position: relative;
    display: block;
}
.swatch-circle-orange.disabled {
    opacity: 0.2;
}
.swatch-filter-orange {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #ffa500;
    position: relative;
    display: block;
    background-color: #ffa500;
}
.swatch-filter-orange.disabled {
    opacity: 0.2;
}
.swatch-circle-pink {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #fe249a;
    position: relative;
    display: block;
}
.swatch-circle-pink.disabled {
    opacity: 0.2;
}
.swatch-filter-pink {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #fe249a;
    position: relative;
    display: block;
    background-color: #fe249a;
}
.swatch-filter-pink.disabled {
    opacity: 0.2;
}
.swatch-circle-purple {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #800080;
    position: relative;
    display: block;
}
.swatch-circle-purple.disabled {
    opacity: 0.2;
}
.swatch-filter-purple {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #800080;
    position: relative;
    display: block;
    background-color: #800080;
}
.swatch-filter-purple.disabled {
    opacity: 0.2;
}
.swatch-circle-red {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #f00;
    position: relative;
    display: block;
}
.swatch-circle-red.disabled {
    opacity: 0.2;
}
.swatch-filter-red {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #f00;
    position: relative;
    display: block;
    background-color: #f00;
}
.swatch-filter-red.disabled {
    opacity: 0.2;
}
.swatch-circle-white {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #fff;
    position: relative;
    display: block;
}
.swatch-circle-white.disabled {
    opacity: 0.2;
}
.swatch-filter-white {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #fff;
    position: relative;
    display: block;
    background-color: #fff;
}
.swatch-filter-white.disabled {
    opacity: 0.2;
}
.swatch-circle-yellow {
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.25em;
    background: #ff0;
    position: relative;
    display: block;
}
.swatch-circle-yellow.disabled {
    opacity: 0.2;
}
.swatch-filter-yellow {
    width: 1.38em;
    height: 1.38em;
    border: 1px solid #ccc;
    border-radius: 0.69em;
    background: #ff0;
    position: relative;
    display: block;
    background-color: #ff0;
}
.swatch-filter-yellow.disabled {
    opacity: 0.2;
}
.swatch-circle-miscellaneous {
    position: relative;
    display: block;
    width: 2.5em;
    height: 2.5em;
    border: 0.063em solid rgba(0, 0, 0, 0.3);
    border-radius: 1.25em;
    background: linear-gradient(0deg, #821e91 0, #821e91 25%, #edd134 25%, yellow 50%, #edd134 50%, #59ba00 50%, #59ba00 76%, #111 76%, #111 100%), linear-gradient(0deg, #0e5cd1 0, #0e5cd1 50%, #e20b0b 50%, #e20b0b 100%);
    background-repeat: repeat-y, repeat;
    background-size: 50% 100%, 100% 100%;
    transform: rotate(35deg);
}
.swatch-circle-miscellaneous.disabled {
    opacity: 0.2;
}
.swatch-circle-miscellaneous.selected::after {
    transform: rotate(-35deg);
}
.primary-images .carousel img {
    width: 100%;
    height: 100%;
}
.shop_the_story .badge,
.wishlist .badge {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 14px;
}
.product-tile {
    margin-bottom: 0;
    border: 0;
}
.product-tile-atome_info {
    font-size: 13px;
}
.product-tile-atome_logo {
    position: relative;
    top: -2px;
    width: 50px;
    height: auto;
}
.product-tile .swatches a {
    text-decoration: none;
}
.product-tile .image-container:not(.product_set-image_container) {
    position: relative;
    overflow: hidden;
}
.product-tile .image-container:not(.product_set-image_container) .quickview {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}
.product-tile .image-container:not(.product_set-image_container) a .tile-image {
    width: 100%;
}
@media (min-width: 768px) {
    .product-tile--responsive_width .image-container:not(.product_set-image_container) {
        overflow: visible;
    }
}
.product-tile--responsive_width .carousel-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.product-tile--with_popup .carousel-indicators {
    right: unset;
    left: 5px;
    justify-content: start;
    gap: 5px;
    margin: 0;
}
.product-tile--with_popup .carousel-indicator {
    width: 6px;
    height: 6px;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: #ccc;
    margin-inline: 0;
}
.product-tile--with_popup .carousel-indicator.active {
    border: 1px solid transparent;
    background-color: #999;
}
.product-tile .tile-body .color-swatches {
    min-height: 2.25em;
}
.product-tile .tile-body .color-swatches .product-tile-color-label {
    cursor: pointer;
    font-size: 1em;
}
@media (max-width: 1023.98px) {
    .product-tile .tile-body .color-swatches .product-tile-color-label {
        font-size: 0.9375em;
    }
}
@media (max-width: 767.98px) {
    .product-tile .tile-body .color-swatches .product-tile-color-label {
        font-size: 0.8125em;
    }
}
.product-tile .tile-body .card_price {
    display: flex;
    justify-content: center;
}
.product-tile .tile-body .price {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 0.9375rem;
}
.product-tile .tile-body .price:lang(vi) {
    font-size: 0.875rem;
}
.product-tile .tile-body .price .tiered {
    font-size: 0.875em;
}
.product-tile .tile-body .price .tiered .value {
    font-weight: bold;
}
.product-tile .tile-body .badge {
    height: 16px;
    padding-top: 2px;
    padding-bottom: 1px;
    font: normal normal normal normal 10px/11px "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.product-tile .tile-body .badge:lang(vi) {
    font: normal normal normal normal 9px/11px "futura-pt", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.product-tile-giftcard .gift_image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    margin: 0;
    border-radius: 5px;
    transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
    .product-tile-giftcard .gift_image {
        width: 58%;
    }
}
.product-tile_skeleton, .product-tile_attribute_skeleton {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 0, #e8e8e8 40px, #f0f0f0 80px);
    background-size: 420px;
    animation: shine-loading-label 2s infinite ease-out;
}
@keyframes shine-loading-label {
    0% {
        background-position: -100px;
    }
    40%, 100% {
        background-position: 147px;
    }
}
.product-tile_attribute_skeleton {
    top: -1px;
    margin-inline: 12px;
}
.js-tile-body:has(.product-tile_details_skeleton:not(.d-none)) .product_tile-name,
.js-tile-body:has(.product-tile_details_skeleton:not(.d-none)) .card_price,
.js-tile-body:has(.product-tile_details_skeleton:not(.d-none)) .price,
.js-tile-body:has(.product-tile_details_skeleton:not(.d-none)) .product_tile-attributes,
.js-tile-body:has(.product-tile_details_skeleton:not(.d-none)) .product_tile-stock_status,
.js-tile-body:has(.product-tile_details_skeleton:not(.d-none)) .collection_title,
.js-tile-body:has(.product-tile_details_skeleton:not(.d-none)) .badge {
    opacity: 0;
}
.product-tile_details_skeleton {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 0;
    pointer-events: none;
}
.product-tile_details_skeleton.d-none {
    display: none !important;
}
.product-tile_details_skeleton-line {
    flex: 0 0 auto;
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 0, #e8e8e8 40px, #f0f0f0 80px);
    background-size: 420px;
    animation: shine-loading-label 2s infinite ease-out;
}
@keyframes shine-loading-label {
    0% {
        background-position: -100px;
    }
    40%, 100% {
        background-position: 147px;
    }
}
.product-tile_details_skeleton-line--name {
    width: 100%;
    height: 21px;
    margin-top: 3px;
}
.product-tile_details_skeleton-line--price {
    width: 60%;
    max-width: 120px;
    height: 18px;
    margin-top: 15px;
}
.product-tile_details_skeleton-line--swatches {
    width: 100%;
    height: 36px;
    min-height: 2.25em;
    margin-top: 12px;
}
#chooseBonusProductModal .modal-footer .container {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}
#chooseBonusProductModal .select-cbp-container {
    margin-top: auto;
    margin-bottom: auto;
}
#chooseBonusProductModal .product-name-wrapper {
    width: 100%;
}
#chooseBonusProductModal .select-bonus-product {
    margin-top: 1em;
}
#chooseBonusProductModal .selected-pid {
    border: 1px solid #ccc;
}
.discount_percentage {
    color: #c00;
    font-weight: 400;
}
.category_tile {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 150px;
    border: 1px solid #f0f0f0;
    text-align: center;
    aspect-ratio: 1/1.33;
}
.category_tile .para2 {
    margin: 0;
}
.category_tile-link {
    text-transform: capitalize;
    text-decoration: underline;
    font-weight: 600;
}
.category_tile-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.category_tile-wrapper:hover {
    text-decoration: unset;
}
.category_tile-content {
    font-size: 0.9375rem;
}
.price .strike-through {
    text-decoration: line-through;
    color: #000;
    margin-right: 2px;
    /* stylelint-disable no-descending-specificity */
}
.price .strike-through .ck-sa-price_formatting,
.price .strike-through .ck-ae-price_formatting {
    display: inline;
}
.price .tiered {
    color: #222;
}
.price .tiered table {
    margin: 0 auto;
    border-top: 1px solid #ccc;
}
.price .tiered table tr:nth-child(odd) {
    background-color: #eee;
}
.price .tiered td,
.price .tiered span.price {
    font-size: 0.9375rem;
    font-weight: 700;
}
.price .tiered td {
    padding: 0.313rem;
}
.price .tiered td.quantity {
    font-weight: 400;
    text-align: right;
}
.price .tiered td.value {
    text-align: left;
}
.price .tiered .table-header {
    font-size: 1.125rem;
    padding: 0.313rem;
}
.price .tiered .column-header {
    font-size: 1rem;
    padding: 0.313rem;
    font-weight: normal;
}
.price .tiered .column-header.quantity {
    text-align: right;
}
.price .sales-discount {
    color: #c00;
}
.ck-vnm-price_formatting::after {
    content: "₫";
    font-family: sans-serif;
}
.ck-sa-price_formatting {
    display: inline-block;
}
.ck-sa-price_formatting::before {
    content: "\e900";
    font-family: icomoon, sans-serif !important;
    padding-right: 2px;
    padding-left: 2px;
    font-size: 14px;
}
.ck-ae-price_formatting {
    display: inline-block;
}
.ck-ae-price_formatting::before {
    content: "\e901";
    font-family: icomoon, sans-serif !important;
    font-size: 16px;
    position: relative;
    top: 1px;
}
.embeddedServiceSidebarMinimizedDefaultUI {
    display: none !important;
}
.kakao_liveChat {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.kakao_liveChat-collapse_btn {
    width: 25px;
    height: 25px;
}
.back_to_top--with_kakao {
    right: 20px;
    bottom: 70px;
    transition: 0.3s;
}
.back_to_top--with_kakao.collapsed {
    bottom: 90px;
}
.b-liveChat {
    position: fixed;
    right: -30px;
    bottom: -32px;
    z-index: 999;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
@media (min-width: 768px) {
    .b-liveChat {
        right: 8px;
        bottom: -15px;
    }
}
.b-liveChat-btn {
    display: block;
    width: 120px;
    height: 90px;
    background: url("../images/livechat_online_mobile.svg") no-repeat;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
@media (min-width: 768px) {
    .b-liveChat-btn {
        width: 105px;
        height: 100px;
        background: url("../images/livechat_online_desktop.svg") no-repeat;
        background-position: center;
    }
}
.offline .b-liveChat-btn {
    width: 128px;
    background: url("../images/livechat_offline_mobile.svg") no-repeat;
}
@media (min-width: 768px) {
    .offline .b-liveChat-btn {
        width: 110px;
        background: url("../images/livechat_offline_desktop.svg") no-repeat;
    }
}
.embedded-messaging {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 1015;
    width: 60px;
    height: 60px;
}
@media (max-width: 1279.98px) {
    .livechat-position .embedded-messaging {
        bottom: 105px;
    }
}
@media (max-width: 1279.98px) {
    .livechat-position-cart .embedded-messaging {
        bottom: 120px;
    }
}
@media (max-width: 1279.98px) {
    .livechat-position-pdp .embedded-messaging {
        display: none;
    }
}
form {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    margin-bottom: 0;
}
.invalid-feedback {
    text-align: right;
}
.c-form_label {
    text-wrap: wrap;
}
.c-form_label, .c-form_label--required {
    display: inline-flex;
}
.c-form_label::after, .c-form_label--required::after {
    content: ":";
    order: 2;
}
.c-form_label--required::before {
    content: "*";
    order: 1;
}
.c-form_label--bold {
    font-weight: bold;
}
.c-dynamic_field {
    position: relative;
    margin-top: 5px;
}
.c-dynamic_field label {
    position: absolute;
    top: 0;
    left: 6px;
    display: inline-flex;
    padding: 0 5px;
    background-color: #fff;
    transform: translateY(-50%);
    transition: font-size 0.2s ease-in-out;
    will-change: contents;
    font-size: 0;
    line-height: 2.1;
    color: #999;
}
[dir=rtl] .c-dynamic_field label {
    right: 6px;
    left: unset !important;
}
.c-dynamic_field label.c-form_label--required {
    white-space: nowrap;
}
.c-dynamic_field label.c-form_label--required::before {
    display: none;
}
.c-dynamic_field label.c-form_label--required::after {
    content: "*";
}
.c-dynamic_field .c-form_label_inverted {
    background: none;
    background: linear-gradient(#f0f0f0 calc(50% + 1px), #fff 50%);
}
.c-dynamic_field input {
    padding-left: 0.6rem;
    caret-color: #06f;
}
.c-dynamic_field input:-webkit-autofill, .c-dynamic_field input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    /* stylelint-disable-line property-no-vendor-prefix */
}
.c-dynamic_field.active label {
    font-size: 0.625rem;
}
.form_separator::after {
    content: "";
    position: absolute;
    top: 6px;
    right: -1px;
    width: 1px;
    height: 30px;
    border-left: 1px solid #999;
    transform: rotate(30deg);
}
.field-disabled-white.form-control:disabled {
    background-color: #fff;
}
.credit_card_form-year_invalid.invalid-feedback {
    display: none;
}
.feedback_pos_top .invalid-feedback {
    margin-top: 0;
}
.dropdown_input .dropdown_input-input_filed {
    margin-bottom: 0;
}
@media (min-width: 1280px) {
    .dropdown_input .dropdown_input-input_filed {
        margin-bottom: 4px;
    }
}
.dropdown_input .dropdown_input-input_filed.is-invalid {
    margin-bottom: 25px;
}
.dropdown_input .invalid-feedback {
    position: absolute;
    right: 0;
    bottom: 0;
    white-space: nowrap;
    width: auto;
}
.registration-email.focused .form-control.is-invalid:focus {
    border: 1px solid #ccc;
}
.registration-email.focused .invalid-feedback {
    display: none;
}
.shipping_phone .dropdown_input-caption {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}
@media (min-width: 768px) {
    .shipping_phone .dropdown_input-columns {
        flex-wrap: nowrap;
    }
}
:lang(id) .shipping_phone .dropdown_input-input_filed {
    margin-bottom: auto;
}
:lang(id) .shipping_phone .invalid-feedback {
    position: static;
    top: 57%;
    width: -webkit-fill-available;
    /* stylelint-disable-line value-no-vendor-prefix */
    white-space: unset;
    word-break: break-all;
    margin-left: -3px;
}
.custom_email_field .is-invalid:focus {
    border: 1px solid #ccc;
}
.custom_email_field .is-invalid:focus+.invalid-feedback,
.custom_email_field .is-invalid:focus+.email_suggestions+.invalid-feedback {
    display: none;
}
:lang(fr) .c-form_label--required {
    white-space: normal;
}
.quick_view_tile {
    max-width: unset !important;
    border: none;
}
.quick_view_tile-details {
    padding: 10px 13px 25px 16px;
}
@media (min-width: 768px) {
    .quick_view_tile-details {
        padding: 10px 30px 25px;
    }
}
.quick_view_tile-heading {
    line-height: 18px;
}
.quick_view_tile-price {
    margin-bottom: 15px;
    line-height: 18px;
}
.quick_view_tile-product_link_wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin-right: 15px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.8);
}
.quick_view_tile-product_link {
    color: #999;
    padding: 5px 7px;
}
.quick_view_tile-attributes .attribute-values--swatches {
    line-height: 0;
}
@media (min-width: 768px) {
    .quick_view_tile-attributes .attribute-values--swatches {
        justify-content: center;
    }
}
.quick_view_tile-attributes .attribute-values--circle {
    justify-content: center;
}
.quick_view_tile-attributes .add-to-cart_error {
    margin-top: 5px;
}
.quick_view_tile-attributes .availability-msg {
    margin-top: 5px;
    color: #f00;
}
.quick_view_tile-swatch .swatch-rectangle {
    min-width: 45px;
    margin-bottom: 14px;
}
.quick_view_tile-swatch--color {
    margin-bottom: 9px;
}
.quick_view_tile-swatch--size {
    margin-bottom: 15px;
}
.quick_view_tile-button_wrapper {
    display: grid;
    grid-template-columns: auto;
    gap: 4px;
}
.quick_view_tile-button_wrapper .add_to_wishlist_btn {
    width: auto;
    padding: 9px 12px !important;
    color: #333;
}
.quick_view_tile-button_wrapper .adding_to_cart {
    flex-grow: 1;
}
.quick_view_tile-button_wrapper .product_list_qty-error {
    grid-column: 1/-1;
}
.quick_view_tile-swiper_slide {
    width: 40%;
}
.quick_view_tile-image_carousel {
    position: relative;
}
.quick_view_tile-swiper_img {
    width: 100%;
    height: auto;
}
.quick_view_tile_modal {
    position: fixed;
    overflow: hidden !important;
}
.quick_view_tile_modal-dialog {
    vertical-align: bottom !important;
}
@media (min-width: 1024px) {
    .quick_view_tile_modal-dialog {
        vertical-align: middle;
    }
}
.quick_view_tile_modal-content {
    bottom: 0;
    max-width: 100%;
    border: none;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: 0.4s ease-in-out;
}
@media (min-width: 1024px) {
    .quick_view_tile_modal-content {
        max-width: 598px;
        transform: translateY(0);
        opacity: 0;
    }
}
.quick_view_tile_modal-content .close {
    border-radius: 0;
    background-color: #fff;
}
.quick_view_tile_modal-body {
    padding: 0;
}
.quick_view_tile_modal.active .quick_view_tile_modal-content {
    border-radius: 0;
    transform: translateY(0);
}
@media (min-width: 1024px) {
    .quick_view_tile_modal.active .quick_view_tile_modal-content {
        border-radius: 5px;
        opacity: 1;
    }
}
.form-control-label--with_suggestions {
    z-index: 1002;
}
.email_suggestions {
    position: absolute;
    z-index: 1100;
    display: none;
    width: 100%;
    margin-top: -5px;
    padding: 24px 15px;
    border: 1px solid #f0f0f0;
    border-radius: 0 0 5px 5px;
    background-color: #fff;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
.email_suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-height: 85px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
}
.email_suggestions-option {
    padding: 5px 10px;
    border-radius: 15px;
    background-color: #f0f0f0;
    cursor: pointer;
}
.address_suggestions {
    margin-top: 0 !important;
}
.address_suggestions-list {
    max-height: 85px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    overflow: scroll;
    overflow-y: auto;
    list-style-type: none;
    scrollbar-width: none;
}
.address_suggestions-option {
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
}
.address_suggestions-input {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}
.address_suggestions-manual {
    position: relative;
    bottom: -20px;
    z-index: 100;
    padding-left: 10px;
    cursor: pointer;
    text-decoration: underline;
}
.complete_registration_modal-body {
    gap: 20px;
    padding: 30px 20px;
}
@media (min-width: 768px) {
    .complete_registration_modal-body {
        padding: 30px;
    }
}
.complete_registration_modal-title {
    font-size: 24px;
    margin-bottom: 20px;
}
.complete_registration_modal-info {
    padding-inline: 10px;
}
.complete_registration_modal-link {
    color: #999;
    line-height: 21px;
}
.complete_registration_modal-content {
    max-width: 335px !important;
    border: none;
}
@media (min-width: 768px) {
    .complete_registration_modal-content {
        max-width: 444px !important;
    }
}
.complete_registration_form-selector {
    display: flex;
    flex-grow: 1;
    align-items: center;
    max-width: 80px;
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .complete_registration_form-selector {
        max-width: 85px;
    }
}
.complete_registration_form-selector .custom-select {
    flex-shrink: 0;
    width: 100%;
    width: 80px;
}
.complete_registration_form-selector:nth-of-type(-n+2)::after {
    content: "";
    position: relative;
    left: 12px;
    width: 1px;
    height: 27px;
    border-left: 1px solid #ccc;
    transform: rotate(16deg);
}
.complete_registration_form-error_msg.show {
    margin-block: 0 20px;
}
.register {
    max-width: 450px;
    margin: 0 auto 100px;
}
@media (max-width: 1023.98px) {
    .register {
        margin-bottom: 50px;
    }
}
.register .form-tooltip {
    position: absolute;
    top: 10px;
    right: 0;
}
.register .content-asset>a {
    text-decoration: underline;
}
.register .content-asset>a:hover {
    text-decoration: none;
}
@media (max-width: 1023.98px) {
    .register_text {
        text-align: center;
    }
    .register_text:lang(ja) {
        text-align: left;
    }
}
.register .registration:lang(ja) {
    font-size: 14px;
}
.register .registration-phone {
    margin-bottom: 40px;
}
.register .registration-about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.register .registration-other_media_chars {
    color: #999;
    margin-top: 0.25rem;
}
.register .registration-feedback_inline {
    width: auto;
}
.register .registration .help_text {
    margin: 14px 0 15px;
}
.register .registration-create_account-button {
    margin-top: 30px;
}
.register .registration .invalid-feedback:lang(ja),
.register .registration .form-control:lang(ja) {
    font-size: 14px;
}
.register .registration .custom-control-label::after:lang(ja) {
    width: 1rem;
    height: 1rem;
}
.register .outsite_signin_list {
    margin-top: 20px;
}
.register .outsite_signin_divider {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 15px 0;
}
.register .outsite_signin_divider-liner {
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
.register .outsite_signin_divider-text {
    color: #666;
    white-space: nowrap;
}
.register .outsite_signin_divider-text:lang(ja) {
    font-size: 14px;
}
.register .line_authorization-body {
    padding: 20px 30px;
}
.register .line_authorization-content {
    max-width: 480px;
}
.register .line_authorization-title {
    margin: 0 40px;
    padding: 14px 0 0;
    font-size: 1.125rem;
    text-transform: uppercase;
    text-align: center;
}
@media (max-width: 1023.98px) {
    .register .line_authorization-title:lang(ja) {
        font-size: 16px;
    }
}
.register .line_authorization-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}
.register .line_authorization-button {
    flex: 1 1 0px;
}
.register .line_authorization-error_msg {
    display: block;
    width: 100%;
    color: #f00;
    text-align: center;
}
.register .existing_email_login-body {
    padding: 30px 30px 80px;
}
@media (min-width: 768px) {
    .register .existing_email_login-body {
        padding-bottom: 30px;
    }
}
.register .existing_email_login-content {
    max-width: 480px;
}
.reveal_password-icons_visibility {
    top: 7px;
    right: 12px;
}
.reveal_password-icons_visibility .icon-password {
    width: 20px;
    height: 16px;
}
.reveal_password-icons_validity {
    top: 7px;
    right: 41px;
}
.reveal_password-icons_validity .icon-password {
    width: 11px;
    height: 11px;
}
.reveal_password-icons_btn {
    background-color: transparent;
}
.reveal_password-password_hint {
    margin-top: 5px;
    text-align: end;
    font-size: 12px;
    line-height: 14px;
    color: #999;
}
.title_txt {
    text-transform: none;
    padding-left: 10px;
}
.form_lname {
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .form_lname {
        margin-bottom: 15px;
    }
}
.register_title-jp {
    font-size: 20px;
}
@media (min-width: 1280px) {
    .register_title-jp {
        font-size: 22px;
    }
}
.visenze_button {
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    max-width: 50px;
    max-height: 40px;
    margin-left: 10px;
    padding: 12px 15px;
    background-color: transparent;
    font-size: 14px;
}
[dir=rtl] .visenze_button {
    margin-right: 10px;
    margin-left: 0 !important;
}
.visenze_button-tooltip {
    top: 58px;
    right: 15px;
    z-index: 3;
    width: 234px;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    padding: 8px 30px 8px 15px;
    background-color: #333;
    color: #fff;
}
@media (min-width: 1280px) {
    .visenze_button-tooltip {
        top: 58px;
        right: unset;
        left: 31px;
    }
}
@media (max-width: 767.98px) {
    .visenze_button-tooltip {
        z-index: 2;
    }
}
.visenze_button-tooltip::after {
    content: "";
    position: absolute;
    top: -17px;
    left: 100px;
    border-top: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #333;
    border-left: 9px solid transparent;
}
@media (min-width: 1024px) {
    .visenze_button-tooltip::after {
        left: 44px;
    }
}
@media (min-width: 768px) {
    .visenze_button-tooltip::after {
        left: 93px;
    }
}
@media (min-width: 1280px) {
    .visenze_button-tooltip::after {
        left: 12px;
    }
}
.visenze_button-tooltip::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 100px;
    border-width: 9px;
    border-style: solid;
    border-color: transparent transparent #f0f0f0 transparent;
}
@media (min-width: 1024px) {
    .visenze_button-tooltip::before {
        left: 44px;
        border-color: transparent;
    }
}
@media (min-width: 768px) {
    .visenze_button-tooltip::before {
        left: 93px;
    }
}
@media (min-width: 1280px) {
    .visenze_button-tooltip::before {
        left: 12px;
    }
}
.visenze_button-tooltip .icon {
    color: #999;
}
.visenze_button-tooltip .close {
    top: 13px;
    right: 10px;
    width: 10px;
    height: 10px;
    margin: initial;
}
.visenze_button-tooltip .close .icon {
    width: 10px;
    height: 10px;
}
.visenze_button-tooltip_text {
    text-transform: none;
    text-wrap: wrap;
    text-align: start;
    white-space: normal;
}
.visenze_button .icon--camera {
    width: 20px;
    height: 16px;
    fill: #ccc;
}
.js-visenze-fixed-header {
    position: fixed !important;
    top: 0;
}
.js-sticky-header-position {
    position: unset !important;
}
.visenze_search_modal-dialog {
    right: 0;
    bottom: 0;
    left: 0;
}
.visenze_search_modal-content {
    padding: 48px 20px 50px;
    border-radius: 5px 5px 0 0;
}
.visenze_search_modal-content--with_animation {
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}
.visenze_search_modal-content--error {
    max-width: 645px;
    padding: 30px 20px;
    border-radius: 5px;
}
@media (min-width: 1024px) {
    .visenze_search_modal-content--error {
        padding: 30px;
    }
}
.visenze_search_modal-body {
    display: flex;
    gap: 15px;
    padding: 0;
}
.visenze_search_modal-body--no_result, .visenze_search_modal-body--error {
    text-align: center;
    justify-content: center;
}
.visenze_search_modal-close_trigger {
    top: 10px;
    left: 50%;
    width: 36px;
    height: 4px;
    border-radius: 10px;
    background-color: #f0f0f0 !important;
    transform: translateX(-50%);
}
.visenze_search_modal .close .icon {
    fill: #999;
}
.visenze_search_modal .visenze_search_modal-uploading {
    position: absolute;
    top: calc(50% + 15px);
    left: 50%;
    display: none;
    transform: translate(-50%, -50%);
    font-style: italic;
}
.visenze_search_modal--uploading .underlay {
    display: none;
}
.visenze_search_modal--uploading .spinner {
    top: calc(50% - 31px);
    transform: translateY(-50%);
}
.visenze_search_modal--uploading .modal-dialog {
    top: 0;
    height: 100%;
}
.visenze_search_modal--uploading .visenze_search_modal-close_trigger {
    display: none;
}
.visenze_search_modal--uploading .visenze_search_modal-body {
    display: none;
}
.visenze_search_modal--uploading .visenze_search_modal-uploading {
    display: block;
}
.visenze_search_modal.active .visenze_search_modal-content--with_animation {
    transform: translateY(0);
}
.visenze_search_modal.u-no_result .visenze_search_modal-content--with_animation {
    padding: 30px 20px;
}
.visenze_drop_modal-dialog {
    top: 50%;
    max-width: 645px;
    margin-top: 0;
    transform: translateY(-50%) !important;
}
.visenze_drop_modal-body {
    padding: 30px 30px 40px;
}
.visenze_drop_modal-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}
@media (min-width: 1024px) {
    .visenze_drop_modal-title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 15px;
    }
}
.visenze_drop_modal-title--no_result .visenze_drop_modal-title {
    margin-bottom: 15px;
    text-transform: capitalize;
}
.visenze_drop_modal-text {
    font-size: 0.9375rem;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 21px;
}
.visenze_drop_modal-drop_zone {
    border: 1px solid #999;
    border-style: dashed;
    border-radius: 5px;
    background-color: #f8f8f8;
    padding-block: 50px 50px;
}
.visenze_drop_modal-drop_info {
    max-width: 261px;
    margin: 0 auto;
}
.visenze_drop_modal-drop_info .underlay {
    display: none;
}
.visenze_drop_modal-drop_info .spinner {
    top: 87px;
}
.visenze_drop_modal-drop_image {
    height: 46px;
    margin-bottom: 19px;
    fill: #999;
}
.visenze_drop_modal-drop_text {
    line-height: 20px;
    margin-bottom: 5px;
}
.visenze_drop_modal-drop_label {
    line-height: 22px;
}
.visenze_drop_modal-drop_label:hover {
    cursor: pointer;
}
.visenze_drop_modal-drop_subtext {
    font-size: 12px;
    color: #999;
}
.visenze_drop_modal-uploading {
    position: absolute;
    top: 122px;
    left: 50%;
    transform: translateX(-50%);
    font-style: italic;
}
.visenze_drop_modal .close .icon {
    fill: #999;
}
.visenze_result-block_search {
    padding: 30px 20px;
}
.visenze_result-block_search_title {
    margin: 0 auto 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
.visenze_result-block_search_text {
    margin: 0 auto 20px;
    text-align: center;
}
@media (min-width: 1024px) {
    .visenze_result-block_search_text {
        max-width: 335px;
    }
}
.visenze_result-block_search_btn {
    margin: 0 auto;
}
.visenze_result-title {
    margin: 20px 0 0;
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
@media (min-width: 1024px) {
    .visenze_result-title {
        padding: 0;
        border-bottom: none;
        font-size: 22px;
    }
}
.visenze_result-image_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (min-width: 1024px) {
    .visenze_result-image_block {
        padding: 20px 30px 30px;
        border-right: 1px solid #ccc;
        border-bottom: none;
    }
}
.visenze_result-image_wrapper {
    position: relative;
    width: calc(100vw - 40px);
    height: calc(100vw - 40px);
    margin: 10px auto 25px;
    overflow: hidden;
    background-color: #f0f0f0;
}
@media (min-width: 1024px) {
    .visenze_result-image_wrapper {
        width: 350px;
        height: 350px;
        margin: 0;
    }
}
@media (min-width: 1024px) {
    .visenze_result-image_wrapper--skeleton {
        margin: 10px auto 25px;
    }
}
.visenze_result-image {
    position: absolute;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 100%;
    margin: 0 auto;
    -o-object-fit: contain;
       object-fit: contain;
}
@media (min-width: 1024px) {
    .visenze_result-image {
        max-width: 280px;
        max-height: 280px;
        margin-bottom: 15px;
    }
}
.visenze_result-image_mask {
    position: absolute;
    z-index: 2;
}
.visenze_result-product_grid {
    gap: 3px;
    margin-top: 25px;
}
@media (min-width: 1024px) {
    .visenze_result-product_grid {
        padding: 0 30px 30px;
        overflow: auto;
    }
    .visenze_result-product_grid::-webkit-scrollbar {
        display: none;
    }
}
.visenze_result-product_grid .product_tile-body {
    margin-bottom: 30px;
}
.visenze_result_product_tile-body--skeleton {
    width: 100%;
    margin-bottom: 30px;
    background-color: #f0f0f0;
    aspect-ratio: 3/4;
}
.visenze_status_modal-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}
@media (min-width: 1024px) {
    .visenze_status_modal-title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 15px;
    }
}
.visenze_status_modal-title--no_result .visenze_drop_modal-title {
    margin-bottom: 15px;
    text-transform: capitalize;
}
.visenze_status_modal-text {
    font-size: 0.9375rem;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 21px;
}
.visenze_status_modal-error_text {
    margin-bottom: 30px;
}
.visenze_product_type-secondary {
    z-index: 2;
    opacity: 0;
}
.visenze_product_type-secondary:hover {
    cursor: pointer;
}
.product_list-grid--visenze {
    display: grid;
    -moz-column-gap: 3px;
         column-gap: 3px;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
    .product_list-grid--visenze {
        grid-template-columns: repeat(3, 1fr);
    }
    .product_list-grid--visenze .product_tile-attributes_value[data-attr=size] {
        max-width: 385px;
    }
}
.line_signin {
    display: block;
    box-sizing: border-box;
    height: 42px;
    border-radius: 4px;
    background: url("../../images/btn_icon_line.png") no-repeat center #06c755;
    background-size: 42px 42px;
    line-height: 42px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}
.line_signin:lang(ja) {
    font-size: 15px;
}
.line_signin:hover {
    text-decoration: none;
}
.line_signin-btn_text {
    display: none;
    margin: 0 42px;
    color: #fff;
    border-left: 1px solid #00b300;
    text-transform: uppercase;
}
.line_signin-error_msg {
    margin-top: 10px;
    text-align: center;
    color: #f00;
}
.login_page-line_subtitle {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}
@media (max-width: 1023.98px) {
    .login_page-line_subtitle {
        margin: 5px 0 15px;
    }
}
.login_page-line_subtitle:lang(ja) {
    font-size: 16px;
}
@media (min-width: 1280px) {
    .login_page-line_subtitle:lang(ja) {
        font-size: 18px;
    }
}
.login_page-line_text {
    padding-bottom: 20px;
    text-align: center;
}
.login_page-line_text:lang(ja) {
    font-size: 14px;
    text-align: center;
}
@media (min-width: 1280px) {
    .login_page-line_text:lang(ja) {
        font-size: 14px;
    }
}
.login-auth-social_container--single .line_signin {
    background: url("../../images/btn_icon_line.png") no-repeat #06c755;
    background-size: 42px 42px;
}
.login-auth-social_container--single .line_signin-btn_text {
    display: block;
}
.dob-datepicker {
    position: relative;
}
.dob-datepicker-input-wrapper {
    position: relative;
}
.dob-datepicker-input-wrapper:has(.is-invalid)~.invalid-feedback {
    display: block;
}
.dob-datepicker-input {
    width: 100%;
    padding-right: 48px;
    letter-spacing: 0.02em;
}
.dob-datepicker-input::-moz-placeholder {
    color: #999;
    opacity: 1;
}
.dob-datepicker-input:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}
.dob-datepicker-input::placeholder {
    color: #999;
    opacity: 1;
}
.dob-datepicker-input:disabled {
    background-color: #fff;
    cursor: not-allowed;
}
.dob-datepicker-toggle {
    position: absolute;
    top: 50%;
    right: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    transform: translateY(-50%);
    cursor: pointer;
    transition: color 0.2s ease;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    color: #444;
}
.dob-datepicker-toggle:focus, .dob-datepicker-toggle:focus-visible {
    outline: none;
    box-shadow: none;
}
.dob-datepicker-toggle:disabled {
    cursor: not-allowed;
    pointer-events: none;
}
.dob-datepicker-icon {
    width: 18px;
    height: 18px;
}
.dob-selects:not(.row) {
    display: contents;
}
.dpicker-invisible {
    display: none !important;
    visibility: hidden !important;
}
.dob-datepicker--enabled .dob-datepicker-input {
    display: block;
}
.dob-datepicker--enabled .dob-selects {
    display: none !important;
}
.profile_page-birth_wrapper .dob-datepicker--enabled {
    grid-column: 1/-1;
}
.dob-dpicker-container {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 2000;
    width: 340px;
    max-width: 90%;
    max-height: 80vh;
    padding: 24px 5px 24px 31px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translate(-50%, -50%);
    text-align: center;
}
.dob-dpicker-container.dpicker-invisible {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}
@media (min-width: 768px) {
    .dob-dpicker-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 290px;
        max-width: none;
        max-height: 360px;
        margin-top: 3px;
        padding: 16px 12px 0;
        padding: 16px 5px 16px 19px;
        transform: none;
    }
}
.dpicker-table {
    width: 100%;
    margin-top: 0;
    margin-left: -15px;
    border-collapse: separate;
    border-spacing: 4px;
}
.dpicker-table_header {
    padding: 8px 4px;
    color: #666;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}
.dpicker-table_cell {
    padding: 2px;
}
.dpicker-table_button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 32px;
    min-height: 32px;
    margin: 0;
    padding: 4px;
    border: 1px solid transparent;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.dpicker-table_button:focus {
    outline: none;
    box-shadow: none;
}
.dpicker-table_button.dpicker-active {
    border-color: #000;
    background-color: #000;
    color: #fff;
}
.dpicker-table_button:disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.4;
}
.dpicker-inactive--notallowed {
    cursor: not-allowed;
    opacity: 0.13;
}
.dob-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
}
.dob-picker-header-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.dob-picker-header-toggle:focus {
    outline: none;
    box-shadow: none;
}
.dob-picker-header-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid #666;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    transition: transform 0.2s ease;
}
.dob-picker-header-arrow.is-up {
    transform: rotate(180deg);
}
.dob-picker-header-nav {
    display: inline-flex;
}
.dob-picker-nav {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.dob-picker-nav:focus {
    outline: none;
    box-shadow: none;
}
.dob-picker-nav.is-disabled {
    cursor: not-allowed;
    opacity: 0.3;
}
.dob-picker-arrow-left,
.dob-picker-arrow-right {
    display: inline-block;
    width: 8px;
    height: 8px;
    border: solid #666;
    border-width: 0 2px 2px 0;
}
.dob-picker-arrow-left {
    transform: rotate(135deg);
}
.dob-picker-arrow-right {
    transform: rotate(-45deg);
}
.dob-year-grid,
.dob-month-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
    max-height: 230px;
    margin-left: -18px;
    overflow-y: auto;
}
@media (min-width: 768px) {
    .dob-year-grid,
.dob-month-grid {
        margin-left: -14px;
    }
}
.dob-month-grid {
    grid-template-columns: repeat(3, 1fr);
}
.dob-grid-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 30px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 25px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
    font-size: 14px;
}
.dob-grid-button:focus {
    outline: none;
    box-shadow: none;
}
.dob-grid-button.is-active {
    border-color: #000;
    background-color: #000;
    color: #fff;
}
.dob-grid-button.is-disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.4;
}
body.dpicker-modal-open {
    overflow: hidden;
}
.dpicker-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1003;
    background-color: rgba(0, 0, 0, 0.5);
}
.dpicker-overlay.dpicker-invisible {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}
.dpicker-actions {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin-top: 10px;
    margin-left: -30px;
    padding: 10px 25px 0 0;
    border-top: 1px solid #ccc;
}
@media (min-width: 768px) {
    .dpicker-actions {
        display: none;
    }
}
.dpicker-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}
.dpicker-btn:active {
    transform: scale(0.98);
}
.dpicker-btn-ok {
    padding-right: 20px;
}
.dpicker-btn-cancel,
.dpicker-btn-ok {
    flex: none;
    padding: 10px 0 0;
    background-color: transparent;
    color: #000;
}
.dpicker-btn-cancel:focus,
.dpicker-btn-ok:focus {
    outline: none;
    box-shadow: none;
}
.dpicker-day-selected {
    background-color: #000;
    color: #fff;
}