@charset "UTF-8";
@import url("font.css");
@import url("swiper.css");
/*

*** scss 기본 규칙
base - 기본 scss 세팅
utils - 함수, 테마 등
layout - 레이아웃 요소
components - 단위별 요소 
pages - 공통을 제외한 각 페이지


*** BEM 형식
ex) header
B(Block): header-main: 메인에 쓰이는 헤더
E(Elements): header-main__logo: 헤더 메인의 로고 요소
M(Modify): header-main__logo--wt: 헤더 메인의 로고 요소이나 흰색일 경우 

ex) product 
B(Block): container-product: 상품 컨테이너
E(Elements): container-product__visual: 상품 컨테이너의 비주얼 요소
             container-product__product: 상품 컨테이너의 상품 콘텐츠

ex) container-product__product의 서브(상세): class name 길어짐 방지 축약함
E(Elements): product__summary: 상품 요약
             product__related: 연관 상품
             product__detail: 상품 상세


*** class 공통: 위 내용을 제외한 class 공통요소가 사용될 경우 
class name 활용
ex) [class*=__product] [class$=__top] 등
$= end, ^= start, *= include, ~= except 

*/
/**
  * Modern CSS Reset Tweaks
  * ================================================== */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

/* Box sizing normalization */
*,
::after,
::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/**
  * CSS Reset Tweaks
  *
  * http://meyerweb.com/eric/tools/css/reset/
  * v2.0-modified | 20110126
  * License: none (public domain)
  */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/**
  * Input Reset
  */
input:required,
input {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
  box-shadow: 0 0 0 30px white inset;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

/**
  * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
  */
audio,
canvas,
video {
  display: inline-block;
  max-width: 100%;
}

/**
  * Prevent modern browsers from displaying `audio` without controls.
  * Remove excess height in iOS 5 devices.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
  */
[hidden] {
  display: none;
}

/**
  * Improve readability when focused and also mouse hovered in all browsers.
  */
a:active,
a:hover {
  outline: none;
}

/* Make images easier to work with */
img {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/* Make pictures easier to work with */
picture {
  display: inline-block;
}

/**
  * Address Firefox 3+ setting `line-height` on `input` using `!important` in
  * the UA stylesheet.
  */
button,
input {
  line-height: normal;
}

/**
  * Address inconsistent `text-transform` inheritance for `button` and `select`.
  * All other form control elements do not inherit `text-transform` values.
  * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
  * Correct `select` style inheritance in Firefox 4+ and Opera.
  */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
  * Re-set default cursor for disabled elements.
  */
button[disabled],
html input[disabled] {
  cursor: default;
}

[disabled] {
  pointer-events: none;
}

/**
  * 1. Address box sizing set to content-box in IE 8/9.
  */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
  * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
  * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
  *    (include `-moz` to future-proof).
  */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
  * Remove inner padding and search cancel button in Safari 5 and Chrome
  * on OS X.
  */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * Remove inner padding and border in Firefox 3+.
  */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
  * Remove most spacing between table cells.
  */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
  * Based on normalize.css v8.0.1
  * github.com/necolas/normalize.css
  */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
  * 1. Remove the bottom border in Chrome 57-
  * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  */
abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 75%;
}

/**
  * Prevent `sub` and `sup` elements from affecting the line height in
  * all browsers.
  */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

/**
  * 1. Change the font styles in all browsers.
  * 2. Remove the margin in Firefox and Safari.
  */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  border-radius: 0;
}

/**
  * Show the overflow in IE.
  * 1. Show the overflow in Edge.
  */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
  * Remove the inheritance of text transform in Edge, Firefox, and IE.
  * 1. Remove the inheritance of text transform in Firefox.
  */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
  * Correct the inability to style clickable types in iOS and Safari.
  */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
  * Remove the inner border and padding in Firefox.
  */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
  * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  */
progress {
  vertical-align: baseline;
}

/**
  * Correct the cursor style of increment and decrement buttons in Chrome.
  */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
  * 1. Correct the odd appearance in Chrome and Safari.
  * 2. Correct the outline style in Safari.
  */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
  * Remove the inner padding in Chrome and Safari on macOS.
  */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style clickable types in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
    ========================================================================== */
/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item;
}

/*
  * Misc
  * ========================================================================== */
/**
  * Add the correct display in IE 10+.
  */
template {
  display: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-b);
  color: var(--bc-bk-900);
}

p {
  font-family: var(--font);
}

strong, em {
  font-style: normal;
  font-family: var(--font-b);
}

a {
  color: inherit;
  cursor: pointer;
  font-family: inherit;
}

.a-l {
  text-align: left !important;
}

.a-c {
  text-align: center !important;
}

.a-r {
  text-align: right !important;
}

:root {
  --font: "SUIT-r", sans-serif;
  --font-t: "SUIT-t", sans-serif;
  --font-el: "SUIT-el", sans-serif;
  --font-l: "SUIT-l", sans-serif;
  --font-m: "SUIT-m", sans-serif;
  --font-sb: "SUIT-sb", sans-serif;
  --font-b: "SUIT-b", sans-serif;
  --font-eb: "SUIT-eb", sans-serif;
  --font-h: "SUIT-h", sans-serif;
  /* basic color */
  --bc-bk-100: #999999;
  --bc-bk-500: #555555;
  --bc-bk-700: #222222;
  --bc-bk-900: #000000;
  --bc-bk-100-rgb: 153, 153, 153;
  --bc-bk-500-rgb: 85, 85, 85;
  --bc-bk-700-rgb: 34, 34, 34;
  --bc-bk-900-rgb: 0, 0, 0;
  --bc-gr-50: #f7f7f7;
  --bc-gr-100: #ececec;
  --bc-gr-200: #d9d9d9;
  --bc-gr-50-rgb: 247, 247, 247;
  --bc-gr-100-rgb: 236, 236, 236;
  --bc-gr-200-rgb: 217, 217, 217;
  --bc-wt: #ffffff;
  --bc-wt-rgb: 255, 255, 255;
  /* point color */
  --pc-og: #f15a29;
  --pc-lg: #8dc63f;
  --pc-og-rgb: 241, 90, 41;
  --pc-lg-rgb: 141, 198, 63;
}

.w-5 {
  width: 5% !important;
}

.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-30 {
  width: 30% !important;
}

.w-35 {
  width: 35% !important;
}

.w-40 {
  width: 40% !important;
}

.w-45 {
  width: 45% !important;
}

.w-50 {
  width: 50% !important;
}

.w-55 {
  width: 55% !important;
}

.w-60 {
  width: 60% !important;
}

.w-65 {
  width: 65% !important;
}

.w-70 {
  width: 70% !important;
}

.w-75 {
  width: 75% !important;
}

.w-80 {
  width: 80% !important;
}

.w-85 {
  width: 85% !important;
}

.w-90 {
  width: 90% !important;
}

.w-95 {
  width: 95% !important;
}

.w-100 {
  width: 100% !important;
}

/* layout pc */
* {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bc-wt);
  min-height: calc(var(--vh, 1vh) * 100);
  height: calc(var(--vh, 1vh) * 100);
}

.not_scroll {
  overflow-y: hidden;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  display: none;
}

::-webkit-scrollbar-thumb {
  background-color: var(--bc-gr-200);
}

::-webkit-scrollbar-track {
  background-color: var(--bc-wt);
  border: 1px solid var(--bc-gr-100);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--bc-bk-700-rgb), 0.7);
  z-index: 10001;
}

.hidden, caption, .blind {
  display: block;
  width: 1px;
  height: 1px;
  border: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

caption {
  display: none;
}

.disabled {
  pointer-events: none;
}

.warn {
  margin-top: 20px;
  font-size: 12px;
  font-family: var(--font-m);
  text-align: center;
}

ul.dot {
  font-size: 14px;
  font-family: var(--font);
  color: var(--bc-bk-500);
}
ul.dot > li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 20px;
}
ul.dot > li:before {
  content: "";
  display: block;
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 100%;
}
ul.dot > li strong {
  display: inline-block;
  width: 60px;
}

ol.num {
  font-size: 14px;
  counter-reset: list;
}
ol.num > li:before {
  content: counter(list);
  counter-increment: list;
}

#wrap {
  position: relative;
}

#container {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

[class*=logo] {
  background-image: url("../img/common/img_logo.svg");
  background-size: auto 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.logo--full {
  background-image: url("../img/common/img_logo_full.svg");
  background-size: auto 40px;
  width: 100%;
  height: 40px;
  margin-bottom: 30px;
}

em.em {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 20px;
  height: 20px;
  color: var(--bc-wt);
  font-size: 8px;
  font-family: var(--font-eb);
  border-radius: 50%;
  background-color: var(--pc-og);
  text-align: center;
  letter-spacing: -0.05em;
}
em.em sup {
  max-width: 4px;
  top: -3px;
  right: 1px;
  -webkit-transform: scale(0.6, 0.6);
          transform: scale(0.6, 0.6);
}

[class*=__product] {
  padding-bottom: 60px;
}
[class*=__product] img {
  border-radius: 10px;
}
[class*=__product] .swiper-slide {
  position: relative;
  width: 43.4782608696%;
  margin-right: 15px;
  overflow: hidden;
  height: auto;
}
[class*=__product] .swiper-slide:last-of-type {
  margin-right: 0;
}
[class*=__product] .swiper-slide.soldout .img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
[class*=__product] .swiper-slide.soldout .img em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  left: -20px;
  top: 0;
  width: calc(100% + 40px);
  height: 100%;
  background-color: rgba(var(--bc-bk-900-rgb), 0.5);
  color: var(--bc-wt);
  font-family: var(--font-m);
  font-size: 24px;
  z-index: 2;
}
[class*=__product] a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  height: 100%;
}
[class*=__product] a > strong {
  font-size: 18px;
  font-family: var(--font);
  letter-spacing: -1px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.2em;
  max-height: 2.4em;
}
[class*=__product] .img {
  margin-bottom: 10px;
}
[class*=__product] .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: auto;
  min-height: 110px;
}
[class*=__product] .info .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  font-size: 18px;
  font-family: var(--font-b);
}
[class*=__product] .info .price em {
  color: var(--pc-og);
}
[class*=__product] .info .price p {
  font-family: var(--font-b);
}
[class*=__product] .info .price p span {
  margin-left: 3px;
  font-size: 14px;
  font-family: var(--font);
}
[class*=__product] .info .review__sum {
  font-size: 15px;
}
[class*=__product] .info .review__sum i {
  width: 15px;
  height: 15px;
}
[class*=__product] .info .sales__idx {
  margin-top: auto;
}

[class$=__top] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 20px;
}
[class$=__top] h2 {
  font-size: 24px;
  font-family: var(--font-m);
}
[class$=__top] h2 + p {
  font-size: 16px;
  font-family: var(--font-m);
  color: var(--bc-bk-500);
  margin-top: 20px;
}
[class$=__top] h3 {
  font-size: 14px;
  font-family: var(--font-m);
}
[class$=__top] .more {
  color: var(--pc-og);
  font-size: 16px;
  font-family: var(--font-m);
  font-letter-spacing: -0.3px;
}

[class*=has-line] {
  position: relative;
  width: 100%;
}
[class*=has-line]:before {
  content: "";
  display: block;
  position: absolute;
  left: -20px;
  top: 0px;
  width: calc(100% + 40px);
  height: 100%;
  z-index: -1;
}

.has-line__top {
  position: relative;
  width: 100%;
}
.has-line__top:before {
  border-top: 1px solid var(--bc-gr-100);
}
.has-line__top--b:before {
  border-top: 5px solid var(--bc-gr-100);
}
.has-line__bottom {
  position: relative;
  width: 100%;
}
.has-line__bottom:before {
  border-bottom: 1px solid var(--bc-gr-100);
}
.has-line__bottom--b:before {
  border-bottom: 5px solid var(--bc-gr-100);
}

.choose {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.choose .count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 12px;
  font-family: var(--font-m);
  line-height: 20px;
  text-align: center;
  border: 1px solid var(--bc-gr-100);
  margin-right: 10px;
}
.choose .count > * {
  min-width: 25px;
  padding: 0px 5px;
}
.choose .count button {
  background-color: var(--bc-gr-100);
  color: var(--bc-bk-700);
}
.choose p {
  font-size: 12px;
  font-family: var(--font-m);
}
.choose p em {
  color: var(--pc-og);
  font-family: var(--font-b);
}
.choose > em {
  margin-left: auto;
}

[class$=__sum] > strong {
  display: block;
  font-family: var(--font-sb);
  margin-bottom: 20px;
}
[class$=__sum] > strong em {
  margin-left: 10px;
}
[class$=__sum] span {
  font-family: var(--font);
}
[class$=__sum] ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  line-height: 2.1;
  font-size: 14px;
}
[class$=__sum] ul li strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-family: var(--font);
  gap: 5px;
}
[class$=__sum] ul li strong i {
  width: 24px;
  height: 24px;
}
[class$=__sum] ul li strong i + .tooltip {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background-color: var(--bc-wt);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--bc-bk-100);
  bottom: 100%;
  left: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 2;
  font-size: 11px;
  font-family: var(--font-m);
  color: var(--bc-bk-500);
}
[class$=__sum] ul li strong i:hover + .tooltip, [class$=__sum] ul li strong i:focus + .tooltip {
  visibility: visible;
  opacity: 1;
}
[class$=__sum] ul + p {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}
[class$=__sum] .sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--bc-bk-700);
  line-height: 1.3;
}

.listview {
  padding: 15px 20px;
}
.listview > strong {
  font-size: 14px;
  font-family: var(--font-m);
}
.listview ul li {
  position: relative;
}
.listview ul li.soldout > em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  left: -20px;
  top: 0;
  width: calc(100% + 40px);
  height: 100%;
  background-color: rgba(var(--bc-bk-900-rgb), 0.5);
  color: var(--bc-wt);
  font-family: var(--font-m);
  font-size: 18px;
  z-index: 2;
}
.listview ul li .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  padding: 15px 0;
}
.listview ul li .list .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: var(--bc-gr-100);
  min-width: 80px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin-right: 10px;
}
.listview ul li .list .img img {
  width: 80px;
}
.listview ul li .list .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
  gap: 4px;
}
.listview ul li .list .detail strong {
  font-family: var(--font-m);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.2em;
  max-height: 2.4em;
  padding-right: 20px;
}
.listview ul li .list .detail em {
  font-family: var(--font-b);
  font-size: 12px;
}
.listview ul li .list .detail p {
  font-size: 10px;
}
.listview ul li .list .detail p span {
  margin-right: 5px;
}
.listview ul li .list .detail .sales__store {
  gap: 2px;
  font-size: 10px;
  font-family: var(--font-m);
}
.listview ul li .list .detail .sales__store i {
  width: 15px;
  height: 15px;
}
.listview ul li .list .btn {
  min-width: 80px;
}
.listview ul li .view {
  position: relative;
  padding: 15px 0;
  background-color: var(--bc-gr-50);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.listview ul li .view:before {
  content: "";
  display: block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  left: -20px;
  top: 0;
  width: calc(100% + 40px);
  height: 100%;
  background-color: var(--bc-gr-50);
  border-bottom: 1px solid var(--bc-bk-700);
  z-index: -1;
}
.listview ul li .view img {
  width: 80px;
}
.listview ul li .view p + p {
  margin-top: 20px;
}
.listview ul li .view .button_group {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 20px;
}
.listview ul li .view .button_group * {
  width: auto;
}

[class*=text-box] {
  position: relative;
  border: 1px solid var(--bc-gr-200);
  padding: 10px 20px;
  margin-bottom: 20px;
}
[class*=text-box] strong {
  font-size: 14px;
  font-family: var(--font-m);
}
[class*=text-box] p {
  color: var(--bc-bk-500);
  font-size: 12px;
}
.text-box__gr {
  border: 0;
  background-color: var(--bc-gr-50);
}

[class*=ref-txt] {
  color: var(--bc-bk-500);
  font-size: 12px;
  margin-bottom: 20px;
}
.ref-txt__2 {
  font-size: 13px;
}

.state {
  font-size: 12px;
  font-family: var(--font-m);
  min-width: 80px;
  text-align: center;
}
.state.gr {
  color: var(--bc-bk-100);
}
.state.bk {
  color: var(--bc-bk-500);
}
.state.og {
  color: var(--pc-og);
}

[class$=__msg] {
  padding: 30px 0;
  border-bottom: 5px solid var(--bc-gr-100);
  margin-bottom: 30px;
}
[class$=__msg] p {
  font-size: 20px;
  font-family: var(--font-m);
  color: var(--bc-bk-700);
  text-align: center;
}

[class$=__caution] {
  padding: 0 20px;
}
[class$=__caution] em,
[class$=__caution] p {
  font-size: 14px;
  font-family: var(--font-m);
  color: var(--pc-og);
  line-height: 17px;
}
[class$=__caution] em {
  border-radius: 50px;
  display: inline-block;
  border: 1px solid var(--pc-og);
  margin-bottom: 10px;
  padding: 8px 18px;
  font-family: var(--font-b);
}

[class$=__correspond] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 20px;
}
[class$=__correspond] a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
[class$=__correspond] a .img {
  min-width: 80px;
  margin-right: 10px;
}
[class$=__correspond] a .img img {
  width: 80px;
}
[class$=__correspond] a strong {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.2em;
  max-height: 2.4em;
  font-size: 12px;
  font-family: var(--font-sb);
}
[class$=__correspond] a p:not(.img) {
  margin-top: 5px;
  font-size: 10px;
}
[class$=__correspond] a p:not(.img) span {
  margin-right: 5px;
}
[class$=__correspond] a .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
[class$=__correspond] a .detail em {
  font-size: 12px;
}
[class$=__correspond] a .detail span {
  font-size: 10px;
  font-family: var(--font);
  color: var(--bc-bk-500);
  margin: 0;
}

.available {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 20px;
  gap: 5px;
  font-size: 13px;
  font-family: var(--font-b);
}
.available em {
  margin-top: 0 !important;
  color: var(--pc-og);
  width: auto !important;
  font-size: 13px !important;
  font-family: var(--font-b) !important;
}
.available i {
  width: 24px;
  height: 24px;
}
.available i + .tooltip {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  background-color: var(--bc-wt);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--bc-bk-100);
  top: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 2;
  font-size: 11px;
  font-family: var(--font-m);
  color: var(--bc-bk-500);
}
.available i:hover + .tooltip, .available i:focus + .tooltip {
  visibility: visible;
  opacity: 1;
}
.available .sales__store {
  gap: 3px;
  font-size: 12px;
  font-family: var(--font-m);
}
.available .sales__store i {
  width: 15px;
  height: 15px;
}

#header {
  position: fixed;
  top: 0;
  background-color: var(--bc-wt);
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#header [class^=ico] {
  display: block;
  background-position: center;
}
#header.sticky {
  top: -50px;
}
#header.sticky .gnb {
  background-color: var(--pc-og);
}
#header.sticky .gnb .swiper-slide a {
  color: var(--bc-wt);
}
#header.sticky .gnb .swiper-slide.is-active span:after {
  background-color: var(--bc-wt);
}

[class^=header-] .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  height: 50px;
  padding: 0 20px;
}
[class^=header-] [class^=ico] {
  position: relative;
  width: 24px;
  height: 24px;
}

.header-main__logo {
  min-width: 80px;
  height: 20px;
}
.header-main__logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.header-main__search {
  margin: 0 10px;
}
.header-main__util > * + * {
  margin-left: 10px;
}
.header-main__util .ico_cart .em {
  right: -6px;
  top: -8px;
}
.header-category__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header-category__left i {
  width: 11px;
  height: 20px;
}
.header-category__left p {
  margin-left: 10px;
  font-size: 12px;
  font-family: var(--font-m);
}
.header-category__left p strong {
  font-family: var(--font-b);
  margin-right: 5px;
}
.header-category__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header-category__right .btn {
  width: 70px;
  font-size: 12px;
  font-family: var(--font-m);
  line-height: 20px;
  border-radius: 10px;
  padding: 5px 10px;
  margin-left: 5px;
}
.header-category__right p {
  font-size: 12px;
  margin-right: 5px;
}
.header-category__right p em {
  color: var(--pc-og);
  font-family: var(--font-b);
  margin-right: 5px;
}
.header-title .inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-title .inner h2 {
  position: absolute;
  font-size: 18px;
  font-family: var(--font-m);
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header-title__left, .header-title__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header-title__left > * + *, .header-title__right > * + * {
  margin-left: 10px;
}
.header-title__left .ico_cart .em, .header-title__right .ico_cart .em {
  right: -6px;
  top: -8px;
}
.header-search__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-right: 10px;
}

.gnb .swiper-container {
  width: 100%;
}
.gnb .swiper-slide {
  width: auto;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 14px;
  font-family: var(--font);
  text-align: center;
}
.gnb .swiper-slide:last-of-type {
  margin-right: 20px;
}
.gnb .swiper-slide a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 35px;
  white-space: nowrap;
  margin: 0 15px;
}
.gnb .swiper-slide a span {
  display: inline-block;
  position: relative;
}
.gnb .swiper-slide.is-active span {
  font-family: var(--font-b);
}
.gnb .swiper-slide.is-active span:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--pc-og);
}

[class$=__search] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}
[class$=__search] input[type=search] {
  width: 100%;
  height: 30px;
  background-color: var(--bc-gr-100);
  border-radius: 30px;
  font-size: 12px;
  color: var(--bc-bk-500);
  border: 0;
}
[class$=__search] .ico_search {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 6px;
  top: 5px;
}

#footer {
  width: 100%;
  padding: 0 20px 50px;
  background-color: var(--bc-gr-100);
}

.footer-main .fnb {
  padding: 20px 0;
  border-bottom: 1px solid var(--bc-gr-200);
}
.footer-main .fnb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.footer-main .fnb ul li {
  min-width: 25%;
  font-size: 14px;
  font-family: var(--font);
}
.footer-main address {
  padding: 20px 0;
  font-size: 14px;
}
.footer-main address ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.footer-main address ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 10px;
}
.footer-main address ul li.csinfo {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}
.footer-main address ul li.csinfo p {
  margin-top: 10px;
  font-size: 20px;
  font-family: var(--font-b);
}
.footer-main address ul li strong {
  font-family: var(--font-sb);
  margin-right: 10px;
  white-space: nowrap;
}

#toolbar {
  position: fixed;
  width: 100%;
  z-index: 1000;
}
#toolbar.sticky {
  bottom: 0;
}

.toolbar-main {
  bottom: -50px;
  height: 50px;
  background-color: var(--bc-bk-700);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.toolbar-main.sticky {
  bottom: 0;
}
.toolbar-main.sticky .tnb ul li a.logo.is-active + .fnb__sub {
  bottom: 66px;
}
.toolbar-main .tnb > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.toolbar-main .tnb > ul > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
.toolbar-main .tnb > ul > li.is-active > a {
  opacity: 1;
}
.toolbar-main .tnb > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 50px;
  opacity: 0.5;
}
.toolbar-main .tnb > ul > li > a i {
  width: 100%;
  height: 22px;
  background-size: auto 22px;
  background-position: center;
  background-repeat: no-repeat;
}
.toolbar-main .tnb > ul > li > a p {
  font-size: 14px;
  font-family: var(--font);
  color: var(--bc-wt);
  text-align: center;
}
.toolbar-main__category {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100 - 50px);
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: var(--bc-wt);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 1000;
}
.toolbar-main__category .header-category {
  left: -100%;
}
.toolbar-main__category.is-active {
  left: 0;
}
.toolbar-main__category.is-active .header-category {
  left: 0;
}

.toolbar-buy {
  bottom: 0;
  min-height: 80px;
  background-color: var(--bc-wt);
  border-top: 1px solid var(--bc-gr-200);
}
.toolbar-buy .button_group {
  padding: 20px;
}
.toolbar-buy .button_group + * {
  margin-top: 0;
}
.toolbar-buy .btn_cart {
  display: none;
}
.toolbar-buy__box {
  background-color: var(--bc-gr-100);
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.toolbar-buy__box .option_box {
  padding: 20px;
}
.toolbar-buy__box .option_box .option {
  padding: 10px;
  font-size: 14px;
  background-color: var(--bc-wt);
}
.toolbar-buy__box .option_box .option > p {
  margin-bottom: 10px;
  color: var(--bc-bk-500);
  font-size: 13px;
  font-family: var(--font-m);
}
.toolbar-buy__box .option_box .option strong {
  display: block;
  font-family: var(--font-m);
  margin-bottom: 10px;
}
.toolbar-buy__box .btn_close {
  width: 100%;
  height: 50px;
  background-color: var(--bc-wt);
}
.toolbar-buy__box .btn_close span {
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  border-right: 2px solid var(--bc-gr-200);
  border-bottom: 2px solid var(--bc-gr-200);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.toolbar-buy.is-open .btn_cart {
  display: block;
}
.toolbar-buy.is-open .toolbar-buy__box {
  max-height: 100vh;
  -webkit-transition: max-height 0.6s ease-in-out;
  transition: max-height 0.6s ease-in-out;
}

.toolbar-request {
  bottom: 0;
  min-height: 80px;
  background-color: var(--bc-wt);
}
.toolbar-request .button_group {
  padding: 20px;
}
.toolbar-request .button_group + * {
  margin-top: 0;
}

[class^=quickbar-] [class^=btn_] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 3px 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
[class^=quickbar-] [class^=btn_] i {
  width: 12px;
  height: 12px;
  background-size: cover;
}
[class^=quickbar-] .btn_backtotop {
  background-color: rgba(var(--bc-bk-700-rgb), 0.5);
  visibility: hidden;
  opacity: 0;
}

.quickbar-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  right: -60px;
  bottom: 60px;
  z-index: 1001;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.quickbar-main.sticky {
  right: 20px;
}
.quickbar-main.sticky.sticky2 .btn_backtotop {
  position: static;
  right: inherit;
  bottom: inherit;
}
.quickbar-main.sticky2 .btn_backtotop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  visibility: visible;
  opacity: 1;
}
.quickbar-main .btn_quick {
  background-color: var(--pc-og);
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.quickbar-main .qnb.is-active ul {
  max-height: 100vh;
  -webkit-transition: max-height 1s ease-in-out, right 0.3s ease;
  transition: max-height 1s ease-in-out, right 0.3s ease;
}
.quickbar-main .qnb.is-active + .btn_quick {
  background-color: var(--bc-bk-700);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.quickbar-main .qnb ul {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), right 0.3s ease;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), right 0.3s ease;
}
.quickbar-main .qnb ul li {
  margin: 5px 0;
}
.quickbar-main .qnb ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--bc-wt);
  color: var(--pc-og);
  border: 1px solid var(--pc-og);
  font-size: 12px;
  font-family: var(--font-b);
  text-align: center;
}

[class*=quickbar-sub].sticky .btn_backtotop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.quickbar-sub--has-btn.sticky .btn_backtotop {
  bottom: 100px;
}

.container-category {
  padding-top: 50px;
}
.container-category__quick {
  padding: 20px;
  background-color: var(--bc-gr-50);
}
.container-category__quick ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.container-category__quick ul li {
  text-align: center;
  font-size: 12px;
  font-family: var(--font-m);
}
.container-category__quick ul li .img {
  width: 59px;
  height: 59px;
  margin-bottom: 10px;
}
.container-category__cate {
  padding: 20px 20px 30px;
  border-bottom: 5px solid var(--bc-gr-200);
}
.container-category__cate [class*=__top] h2 {
  font-size: 14px;
}
.container-category__cate ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: -5px;
}
.container-category__cate ul li {
  width: calc(50% - 10px);
  border: 1px solid var(--bc-gr-200);
  margin: 5px;
  border-radius: 10px;
  font-size: 12px;
  font-family: var(--font-m);
}
.container-category__cate ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.container-category__cate ul li a i {
  width: 6px;
  height: 11px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.container-category__product {
  padding: 30px 20px;
}

/* popup */
.popup_layer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 0 20px;
  z-index: 10001;
}
.popup_layer .contents {
  height: 360px;
}
.popup_layer.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.popup_layer .popup_inner {
  position: relative;
  width: 100%;
  z-index: 10002;
  background-color: var(--bc-wt);
  border-radius: 10px;
  overflow: hidden;
}
.popup_layer .popup_inner .popup_con {
  padding: 20px;
}
.popup_layer .popup_inner .popup_con h2, .popup_layer .popup_inner .popup_con h5 {
  font-size: 16px;
  font-family: var(--font-m);
  margin-bottom: 20px;
}
.popup_layer .popup_inner .popup_con > div {
  width: 100%;
  max-height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 12px;
  font-family: var(--font);
  line-height: 2;
}
.popup_layer .popup_inner .btn_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
}
.popup_layer .popup_inner .btn_close i {
  width: 13px;
  height: 13px;
}

#pop_agree1 .popup_con > div {
  min-height: calc(var(--vh, 1vh) * 100 - 240px);
  height: calc(var(--vh, 1vh) * 100 - 240px);
}

#pop_cellcg select {
  width: inherit;
}

/* // 09.26 */
::-webkit-input-placeholder {
  color: var(--bc-bk-700);
}
::-moz-placeholder {
  color: var(--bc-bk-700);
}
:-ms-input-placeholder {
  color: var(--bc-bk-700);
}
::-ms-input-placeholder {
  color: var(--bc-bk-700);
}
::placeholder {
  color: var(--bc-bk-700);
}

input[type=text],
input[type=search],
input[type=password],
input[type=number],
select,
textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  border: 0;
  padding: 10px;
  background-color: var(--bc-wt);
  font-size: 13px;
  font-family: var(--font);
  color: var(--bc-bk-700);
  border: 1px solid var(--bc-gr-200);
  border-radius: 10px;
  width: 100%;
}
input[type=text].disabled,
input[type=search].disabled,
input[type=password].disabled,
input[type=number].disabled,
select.disabled,
textarea.disabled {
  background-color: var(--bc-gr-100);
}

select {
  padding: 12px 20px 10px 10px;
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='4' viewBox='0 0 8 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.00007 3.42317L0.993652 0.416748H7.00649L4.00007 3.42317Z' fill='%23222222'/%3E%3C/svg%3E%0A");
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
input[type=checkbox] + label,
input[type=radio] + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 13px;
  font-family: inherit;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
  content: "";
  display: block;
  width: 23px;
  min-width: 23px;
  height: 23px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  margin-right: 5px;
}
input[type=checkbox] + label + input + label,
input[type=radio] + label + input + label {
  margin-left: 20px;
}

input[type=checkbox] + label:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.9213 10.7116L11.6072 6.04654L10.8331 5.27252L6.9213 9.16354L5.15046 7.41354L4.37644 8.18756L6.9213 10.7116ZM8.00121 15.5834C6.96182 15.5834 5.98124 15.386 5.05946 14.9913C4.13767 14.5966 3.33085 14.0534 2.639 13.3619C1.94714 12.6704 1.40376 11.8639 1.00886 10.9426C0.613955 10.0212 0.416504 9.04085 0.416504 8.00146C0.416504 6.94818 0.613865 5.96412 1.00859 5.04929C1.40331 4.13444 1.94643 3.3311 2.63796 2.63925C3.3295 1.94739 4.13596 1.40401 5.05732 1.0091C5.97866 0.6142 6.95903 0.416748 7.99842 0.416748C9.0517 0.416748 10.0358 0.61411 10.9506 1.00883C11.8654 1.40355 12.6688 1.94668 13.3606 2.63821C14.0525 3.32975 14.5959 4.13273 14.9908 5.04714C15.3857 5.96155 15.5831 6.94539 15.5831 7.99867C15.5831 9.03805 15.3858 10.0186 14.991 10.9404C14.5963 11.8622 14.0532 12.669 13.3617 13.3609C12.6701 14.0527 11.8671 14.5961 10.9527 14.991C10.0383 15.3859 9.05449 15.5834 8.00121 15.5834Z' fill='%23d9d9d9'/%3E%3C/svg%3E%0A");
}
input[type=checkbox]:checked + label:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.9213 10.7116L11.6072 6.04654L10.8331 5.27252L6.9213 9.16354L5.15046 7.41354L4.37644 8.18756L6.9213 10.7116ZM8.00121 15.5834C6.96182 15.5834 5.98124 15.386 5.05946 14.9913C4.13767 14.5966 3.33085 14.0534 2.639 13.3619C1.94714 12.6704 1.40376 11.8639 1.00886 10.9426C0.613955 10.0212 0.416504 9.04085 0.416504 8.00146C0.416504 6.94818 0.613865 5.96412 1.00859 5.04929C1.40331 4.13444 1.94643 3.3311 2.63796 2.63925C3.3295 1.94739 4.13596 1.40401 5.05732 1.0091C5.97866 0.6142 6.95903 0.416748 7.99842 0.416748C9.0517 0.416748 10.0358 0.61411 10.9506 1.00883C11.8654 1.40355 12.6688 1.94668 13.3606 2.63821C14.0525 3.32975 14.5959 4.13273 14.9908 5.04714C15.3857 5.96155 15.5831 6.94539 15.5831 7.99867C15.5831 9.03805 15.3858 10.0186 14.991 10.9404C14.5963 11.8622 14.0532 12.669 13.3617 13.3609C12.6701 14.0527 11.8671 14.5961 10.9527 14.991C10.0383 15.3859 9.05449 15.5834 8.00121 15.5834Z' fill='%23f15a29'/%3E%3C/svg%3E%0A");
}
input[type=checkbox].sub_ck + label:before {
  min-width: 18px;
  width: 18px;
  height: 12px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.33322 7.43255L0.296387 4.39572L1.06239 3.62972L3.33322 5.90055L8.93739 0.296387L9.70339 1.06239L3.33322 7.43255Z' fill='%23d9d9d9'/%3E%3C/svg%3E%0A");
}
input[type=checkbox].sub_ck:checked + label:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.33322 7.43255L0.296387 4.39572L1.06239 3.62972L3.33322 5.90055L8.93739 0.296387L9.70339 1.06239L3.33322 7.43255Z' fill='%23f15a29'/%3E%3C/svg%3E%0A");
}

input[type=radio] + label:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00696 15.5834C6.96374 15.5834 5.98124 15.386 5.05946 14.9913C4.13767 14.5966 3.33085 14.0534 2.639 13.3619C1.94714 12.6704 1.40376 11.8642 1.00886 10.9434C0.613955 10.0227 0.416504 9.03882 0.416504 7.99192C0.416504 6.945 0.613865 5.96412 1.00859 5.04929C1.40331 4.13444 1.94643 3.3311 2.63796 2.63925C3.3295 1.94739 4.13566 1.40401 5.05644 1.0091C5.97722 0.6142 6.96106 0.416748 8.00796 0.416748C9.05488 0.416748 10.0358 0.61411 10.9506 1.00883C11.8654 1.40355 12.6688 1.94668 13.3606 2.63821C14.0525 3.32975 14.5959 4.13428 14.9908 5.05181C15.3857 5.96934 15.5831 6.94971 15.5831 7.99292C15.5831 9.03614 15.3858 10.0186 14.991 10.9404C14.5963 11.8622 14.0532 12.669 13.3617 13.3609C12.6701 14.0527 11.8656 14.5961 10.9481 14.991C10.0305 15.3859 9.05017 15.5834 8.00696 15.5834ZM7.99982 14.5001C9.80537 14.5001 11.3401 13.8681 12.604 12.6042C13.8679 11.3403 14.4998 9.80562 14.4998 8.00006C14.4998 6.19451 13.8679 4.65978 12.604 3.39589C11.3401 2.13201 9.80537 1.50006 7.99982 1.50006C6.19426 1.50006 4.65954 2.13201 3.39565 3.39589C2.13176 4.65978 1.49982 6.19451 1.49982 8.00006C1.49982 9.80562 2.13176 11.3403 3.39565 12.6042C4.65954 13.8681 6.19426 14.5001 7.99982 14.5001Z' fill='%23555555'/%3E%3C/svg%3E%0A");
}
input[type=radio]:checked + label:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00453 11.5834C9.0003 11.5834 9.84568 11.2343 10.5407 10.5362C11.2356 9.83807 11.5831 8.99113 11.5831 7.99535C11.5831 6.99958 11.2341 6.15419 10.5359 5.45921C9.83783 4.76424 8.99089 4.41675 7.99511 4.41675C6.99933 4.41675 6.15395 4.76581 5.45896 5.46394C4.76399 6.16205 4.4165 7.00899 4.4165 8.00477C4.4165 9.00055 4.76557 9.84593 5.46369 10.5409C6.1618 11.2359 7.00875 11.5834 8.00453 11.5834ZM8.00696 15.5834C6.96374 15.5834 5.98124 15.386 5.05946 14.9913C4.13767 14.5966 3.33085 14.0534 2.639 13.3619C1.94714 12.6704 1.40376 11.8642 1.00886 10.9434C0.613955 10.0227 0.416504 9.03882 0.416504 7.99192C0.416504 6.945 0.613865 5.96412 1.00859 5.04929C1.40331 4.13444 1.94643 3.3311 2.63796 2.63925C3.3295 1.94739 4.13566 1.40401 5.05644 1.0091C5.97722 0.6142 6.96106 0.416748 8.00796 0.416748C9.05488 0.416748 10.0358 0.61411 10.9506 1.00883C11.8654 1.40355 12.6688 1.94668 13.3606 2.63821C14.0525 3.32975 14.5959 4.13428 14.9908 5.05181C15.3857 5.96934 15.5831 6.94971 15.5831 7.99292C15.5831 9.03614 15.3858 10.0186 14.991 10.9404C14.5963 11.8622 14.0532 12.669 13.3617 13.3609C12.6701 14.0527 11.8656 14.5961 10.9481 14.991C10.0305 15.3859 9.05017 15.5834 8.00696 15.5834ZM7.99982 14.5001C9.80537 14.5001 11.3401 13.8681 12.604 12.6042C13.8679 11.3403 14.4998 9.80562 14.4998 8.00006C14.4998 6.19451 13.8679 4.65978 12.604 3.39589C11.3401 2.13201 9.80537 1.50006 7.99982 1.50006C6.19426 1.50006 4.65954 2.13201 3.39565 3.39589C2.13176 4.65978 1.49982 6.19451 1.49982 8.00006C1.49982 9.80562 2.13176 11.3403 3.39565 12.6042C4.65954 13.8681 6.19426 14.5001 7.99982 14.5001Z' fill='%23f15a29'/%3E%3C/svg%3E%0A");
}

.file_upload {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 80px;
  height: 80px;
  background-color: var(--bc-gr-50);
  border: 1px solid var(--bc-gr-200);
  overflow: hidden;
}
.file_upload:before {
  display: block;
  content: "+";
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 40px;
  font-family: var(--font);
  line-height: 1.4;
  padding: 10px;
  color: var(--bc-gr-200);
}
.file_upload img {
  display: none;
  max-width: 80px;
}
.file_upload .btn_filedel {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: var(--bc-bk-700);
}
.file_upload .btn_filedel i {
  width: 20px;
  height: 20px;
  background-position: center;
}
.file_upload.is-uploaded:before,
.file_upload.is-uploaded input[type=file] {
  display: none;
}
.file_upload.is-uploaded img,
.file_upload.is-uploaded .btn_filedel {
  display: block;
}

input[type=file] {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 99;
}

textarea {
  resize: none;
  line-height: 1.2;
}

.form_group {
  margin-bottom: 20px;
}
.form_group.mb-half {
  margin-bottom: 10px;
}
.form_group p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.form_group p.has-tt > * {
  margin-bottom: 0;
  white-space: nowrap;
}
.form_group p.has-tt em {
  display: inline-block;
  width: auto;
  margin: 0 5px;
  font-size: 12px;
}
.form_group p.has-tt span {
  font-size: 12px;
}
.form_group p.jc-bw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form_group p > * + *:not(label) {
  margin-left: 10px;
}
.form_group p + p {
  margin-top: 10px;
}
.form_group p button {
  font-size: 14px;
}
.form_group strong, .form_group em {
  display: block;
  width: 100%;
  font-family: var(--font-m);
}
.form_group strong {
  font-size: 14px;
  margin-bottom: 10px;
}
.form_group strong span {
  color: var(--bc-bk-500);
  font-size: 12px;
}
.form_group em {
  margin-top: 5px;
  font-size: 11px;
  color: var(--pc-og);
}
.form_group em + p {
  margin-top: 10px;
}

[class^=ico] {
  background-repeat: no-repeat;
  display: inline-block;
}

.ico_cart {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='shopping_cart'%3E%3Cmask id='mask0_117_322' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_117_322)'%3E%3Cpath id='shopping_cart_2' d='M7.3077 21.4303C6.8859 21.4303 6.53045 21.2844 6.24135 20.9926C5.95223 20.7008 5.80768 20.3421 5.80768 19.9164C5.80768 19.4907 5.95223 19.132 6.24135 18.8402C6.53045 18.5484 6.8859 18.4026 7.3077 18.4026C7.72948 18.4026 8.08493 18.5484 8.37405 18.8402C8.66315 19.132 8.8077 19.4907 8.8077 19.9164C8.8077 20.3421 8.66315 20.7008 8.37405 20.9926C8.08493 21.2844 7.72948 21.4303 7.3077 21.4303ZM16.6923 21.4303C16.2705 21.4303 15.9151 21.2844 15.626 20.9926C15.3369 20.7008 15.1923 20.3421 15.1923 19.9164C15.1923 19.4907 15.3369 19.132 15.626 18.8402C15.9151 18.5484 16.2705 18.4026 16.6923 18.4026C17.1141 18.4026 17.4696 18.5484 17.7587 18.8402C18.0478 19.132 18.1923 19.4907 18.1923 19.9164C18.1923 20.3421 18.0478 20.7008 17.7587 20.9926C17.4696 21.2844 17.1141 21.4303 16.6923 21.4303ZM5.88078 5.67075L8.55 11.3379H15.1846C15.3 11.3379 15.4026 11.3088 15.4923 11.2506C15.5821 11.1924 15.659 11.1115 15.7231 11.008L18.3385 6.21417C18.4154 6.07185 18.4218 5.94571 18.3577 5.83574C18.2936 5.72575 18.1846 5.67075 18.0308 5.67075H5.88078ZM5.3923 4.66152H18.4116C18.8462 4.66152 19.1731 4.8404 19.3923 5.19816C19.6115 5.55591 19.6231 5.92435 19.4269 6.30346L16.5692 11.5592C16.4244 11.8051 16.2362 11.9978 16.0048 12.1376C15.7734 12.2773 15.5192 12.3472 15.2423 12.3472H8.1L6.88463 14.5985C6.78206 14.7538 6.77885 14.922 6.875 15.1032C6.97115 15.2843 7.11538 15.3749 7.3077 15.3749H18.1923V16.3841H7.3077C6.72437 16.3841 6.28911 16.136 6.00192 15.6398C5.71474 15.1436 5.70769 14.6451 5.98078 14.1444L7.4846 11.4389L3.80768 3.6523H2V2.64307H4.4423L5.3923 4.66152Z' fill='%23222222'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_cart.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='shopping_cart'%3E%3Cmask id='mask0_117_322' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_117_322)'%3E%3Cpath id='shopping_cart_2' d='M7.3077 21.4303C6.8859 21.4303 6.53045 21.2844 6.24135 20.9926C5.95223 20.7008 5.80768 20.3421 5.80768 19.9164C5.80768 19.4907 5.95223 19.132 6.24135 18.8402C6.53045 18.5484 6.8859 18.4026 7.3077 18.4026C7.72948 18.4026 8.08493 18.5484 8.37405 18.8402C8.66315 19.132 8.8077 19.4907 8.8077 19.9164C8.8077 20.3421 8.66315 20.7008 8.37405 20.9926C8.08493 21.2844 7.72948 21.4303 7.3077 21.4303ZM16.6923 21.4303C16.2705 21.4303 15.9151 21.2844 15.626 20.9926C15.3369 20.7008 15.1923 20.3421 15.1923 19.9164C15.1923 19.4907 15.3369 19.132 15.626 18.8402C15.9151 18.5484 16.2705 18.4026 16.6923 18.4026C17.1141 18.4026 17.4696 18.5484 17.7587 18.8402C18.0478 19.132 18.1923 19.4907 18.1923 19.9164C18.1923 20.3421 18.0478 20.7008 17.7587 20.9926C17.4696 21.2844 17.1141 21.4303 16.6923 21.4303ZM5.88078 5.67075L8.55 11.3379H15.1846C15.3 11.3379 15.4026 11.3088 15.4923 11.2506C15.5821 11.1924 15.659 11.1115 15.7231 11.008L18.3385 6.21417C18.4154 6.07185 18.4218 5.94571 18.3577 5.83574C18.2936 5.72575 18.1846 5.67075 18.0308 5.67075H5.88078ZM5.3923 4.66152H18.4116C18.8462 4.66152 19.1731 4.8404 19.3923 5.19816C19.6115 5.55591 19.6231 5.92435 19.4269 6.30346L16.5692 11.5592C16.4244 11.8051 16.2362 11.9978 16.0048 12.1376C15.7734 12.2773 15.5192 12.3472 15.2423 12.3472H8.1L6.88463 14.5985C6.78206 14.7538 6.77885 14.922 6.875 15.1032C6.97115 15.2843 7.11538 15.3749 7.3077 15.3749H18.1923V16.3841H7.3077C6.72437 16.3841 6.28911 16.136 6.00192 15.6398C5.71474 15.1436 5.70769 14.6451 5.98078 14.1444L7.4846 11.4389L3.80768 3.6523H2V2.64307H4.4423L5.3923 4.66152Z' fill='%23ffffff'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_cart.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='shopping_cart'%3E%3Cmask id='mask0_117_322' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_117_322)'%3E%3Cpath id='shopping_cart_2' d='M7.3077 21.4303C6.8859 21.4303 6.53045 21.2844 6.24135 20.9926C5.95223 20.7008 5.80768 20.3421 5.80768 19.9164C5.80768 19.4907 5.95223 19.132 6.24135 18.8402C6.53045 18.5484 6.8859 18.4026 7.3077 18.4026C7.72948 18.4026 8.08493 18.5484 8.37405 18.8402C8.66315 19.132 8.8077 19.4907 8.8077 19.9164C8.8077 20.3421 8.66315 20.7008 8.37405 20.9926C8.08493 21.2844 7.72948 21.4303 7.3077 21.4303ZM16.6923 21.4303C16.2705 21.4303 15.9151 21.2844 15.626 20.9926C15.3369 20.7008 15.1923 20.3421 15.1923 19.9164C15.1923 19.4907 15.3369 19.132 15.626 18.8402C15.9151 18.5484 16.2705 18.4026 16.6923 18.4026C17.1141 18.4026 17.4696 18.5484 17.7587 18.8402C18.0478 19.132 18.1923 19.4907 18.1923 19.9164C18.1923 20.3421 18.0478 20.7008 17.7587 20.9926C17.4696 21.2844 17.1141 21.4303 16.6923 21.4303ZM5.88078 5.67075L8.55 11.3379H15.1846C15.3 11.3379 15.4026 11.3088 15.4923 11.2506C15.5821 11.1924 15.659 11.1115 15.7231 11.008L18.3385 6.21417C18.4154 6.07185 18.4218 5.94571 18.3577 5.83574C18.2936 5.72575 18.1846 5.67075 18.0308 5.67075H5.88078ZM5.3923 4.66152H18.4116C18.8462 4.66152 19.1731 4.8404 19.3923 5.19816C19.6115 5.55591 19.6231 5.92435 19.4269 6.30346L16.5692 11.5592C16.4244 11.8051 16.2362 11.9978 16.0048 12.1376C15.7734 12.2773 15.5192 12.3472 15.2423 12.3472H8.1L6.88463 14.5985C6.78206 14.7538 6.77885 14.922 6.875 15.1032C6.97115 15.2843 7.11538 15.3749 7.3077 15.3749H18.1923V16.3841H7.3077C6.72437 16.3841 6.28911 16.136 6.00192 15.6398C5.71474 15.1436 5.70769 14.6451 5.98078 14.1444L7.4846 11.4389L3.80768 3.6523H2V2.64307H4.4423L5.3923 4.66152Z' fill='%23F15A29'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_cart.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='shopping_cart'%3E%3Cmask id='mask0_117_322' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_117_322)'%3E%3Cpath id='shopping_cart_2' d='M7.3077 21.4303C6.8859 21.4303 6.53045 21.2844 6.24135 20.9926C5.95223 20.7008 5.80768 20.3421 5.80768 19.9164C5.80768 19.4907 5.95223 19.132 6.24135 18.8402C6.53045 18.5484 6.8859 18.4026 7.3077 18.4026C7.72948 18.4026 8.08493 18.5484 8.37405 18.8402C8.66315 19.132 8.8077 19.4907 8.8077 19.9164C8.8077 20.3421 8.66315 20.7008 8.37405 20.9926C8.08493 21.2844 7.72948 21.4303 7.3077 21.4303ZM16.6923 21.4303C16.2705 21.4303 15.9151 21.2844 15.626 20.9926C15.3369 20.7008 15.1923 20.3421 15.1923 19.9164C15.1923 19.4907 15.3369 19.132 15.626 18.8402C15.9151 18.5484 16.2705 18.4026 16.6923 18.4026C17.1141 18.4026 17.4696 18.5484 17.7587 18.8402C18.0478 19.132 18.1923 19.4907 18.1923 19.9164C18.1923 20.3421 18.0478 20.7008 17.7587 20.9926C17.4696 21.2844 17.1141 21.4303 16.6923 21.4303ZM5.88078 5.67075L8.55 11.3379H15.1846C15.3 11.3379 15.4026 11.3088 15.4923 11.2506C15.5821 11.1924 15.659 11.1115 15.7231 11.008L18.3385 6.21417C18.4154 6.07185 18.4218 5.94571 18.3577 5.83574C18.2936 5.72575 18.1846 5.67075 18.0308 5.67075H5.88078ZM5.3923 4.66152H18.4116C18.8462 4.66152 19.1731 4.8404 19.3923 5.19816C19.6115 5.55591 19.6231 5.92435 19.4269 6.30346L16.5692 11.5592C16.4244 11.8051 16.2362 11.9978 16.0048 12.1376C15.7734 12.2773 15.5192 12.3472 15.2423 12.3472H8.1L6.88463 14.5985C6.78206 14.7538 6.77885 14.922 6.875 15.1032C6.97115 15.2843 7.11538 15.3749 7.3077 15.3749H18.1923V16.3841H7.3077C6.72437 16.3841 6.28911 16.136 6.00192 15.6398C5.71474 15.1436 5.70769 14.6451 5.98078 14.1444L7.4846 11.4389L3.80768 3.6523H2V2.64307H4.4423L5.3923 4.66152Z' fill='%23ececec'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_cart.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='shopping_cart'%3E%3Cmask id='mask0_117_322' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_117_322)'%3E%3Cpath id='shopping_cart_2' d='M7.3077 21.4303C6.8859 21.4303 6.53045 21.2844 6.24135 20.9926C5.95223 20.7008 5.80768 20.3421 5.80768 19.9164C5.80768 19.4907 5.95223 19.132 6.24135 18.8402C6.53045 18.5484 6.8859 18.4026 7.3077 18.4026C7.72948 18.4026 8.08493 18.5484 8.37405 18.8402C8.66315 19.132 8.8077 19.4907 8.8077 19.9164C8.8077 20.3421 8.66315 20.7008 8.37405 20.9926C8.08493 21.2844 7.72948 21.4303 7.3077 21.4303ZM16.6923 21.4303C16.2705 21.4303 15.9151 21.2844 15.626 20.9926C15.3369 20.7008 15.1923 20.3421 15.1923 19.9164C15.1923 19.4907 15.3369 19.132 15.626 18.8402C15.9151 18.5484 16.2705 18.4026 16.6923 18.4026C17.1141 18.4026 17.4696 18.5484 17.7587 18.8402C18.0478 19.132 18.1923 19.4907 18.1923 19.9164C18.1923 20.3421 18.0478 20.7008 17.7587 20.9926C17.4696 21.2844 17.1141 21.4303 16.6923 21.4303ZM5.88078 5.67075L8.55 11.3379H15.1846C15.3 11.3379 15.4026 11.3088 15.4923 11.2506C15.5821 11.1924 15.659 11.1115 15.7231 11.008L18.3385 6.21417C18.4154 6.07185 18.4218 5.94571 18.3577 5.83574C18.2936 5.72575 18.1846 5.67075 18.0308 5.67075H5.88078ZM5.3923 4.66152H18.4116C18.8462 4.66152 19.1731 4.8404 19.3923 5.19816C19.6115 5.55591 19.6231 5.92435 19.4269 6.30346L16.5692 11.5592C16.4244 11.8051 16.2362 11.9978 16.0048 12.1376C15.7734 12.2773 15.5192 12.3472 15.2423 12.3472H8.1L6.88463 14.5985C6.78206 14.7538 6.77885 14.922 6.875 15.1032C6.97115 15.2843 7.11538 15.3749 7.3077 15.3749H18.1923V16.3841H7.3077C6.72437 16.3841 6.28911 16.136 6.00192 15.6398C5.71474 15.1436 5.70769 14.6451 5.98078 14.1444L7.4846 11.4389L3.80768 3.6523H2V2.64307H4.4423L5.3923 4.66152Z' fill='%23555555'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_cart.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='shopping_cart'%3E%3Cmask id='mask0_117_322' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_117_322)'%3E%3Cpath id='shopping_cart_2' d='M7.3077 21.4303C6.8859 21.4303 6.53045 21.2844 6.24135 20.9926C5.95223 20.7008 5.80768 20.3421 5.80768 19.9164C5.80768 19.4907 5.95223 19.132 6.24135 18.8402C6.53045 18.5484 6.8859 18.4026 7.3077 18.4026C7.72948 18.4026 8.08493 18.5484 8.37405 18.8402C8.66315 19.132 8.8077 19.4907 8.8077 19.9164C8.8077 20.3421 8.66315 20.7008 8.37405 20.9926C8.08493 21.2844 7.72948 21.4303 7.3077 21.4303ZM16.6923 21.4303C16.2705 21.4303 15.9151 21.2844 15.626 20.9926C15.3369 20.7008 15.1923 20.3421 15.1923 19.9164C15.1923 19.4907 15.3369 19.132 15.626 18.8402C15.9151 18.5484 16.2705 18.4026 16.6923 18.4026C17.1141 18.4026 17.4696 18.5484 17.7587 18.8402C18.0478 19.132 18.1923 19.4907 18.1923 19.9164C18.1923 20.3421 18.0478 20.7008 17.7587 20.9926C17.4696 21.2844 17.1141 21.4303 16.6923 21.4303ZM5.88078 5.67075L8.55 11.3379H15.1846C15.3 11.3379 15.4026 11.3088 15.4923 11.2506C15.5821 11.1924 15.659 11.1115 15.7231 11.008L18.3385 6.21417C18.4154 6.07185 18.4218 5.94571 18.3577 5.83574C18.2936 5.72575 18.1846 5.67075 18.0308 5.67075H5.88078ZM5.3923 4.66152H18.4116C18.8462 4.66152 19.1731 4.8404 19.3923 5.19816C19.6115 5.55591 19.6231 5.92435 19.4269 6.30346L16.5692 11.5592C16.4244 11.8051 16.2362 11.9978 16.0048 12.1376C15.7734 12.2773 15.5192 12.3472 15.2423 12.3472H8.1L6.88463 14.5985C6.78206 14.7538 6.77885 14.922 6.875 15.1032C6.97115 15.2843 7.11538 15.3749 7.3077 15.3749H18.1923V16.3841H7.3077C6.72437 16.3841 6.28911 16.136 6.00192 15.6398C5.71474 15.1436 5.70769 14.6451 5.98078 14.1444L7.4846 11.4389L3.80768 3.6523H2V2.64307H4.4423L5.3923 4.66152Z' fill='%238dc63f'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_cart.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='shopping_cart'%3E%3Cmask id='mask0_117_322' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_117_322)'%3E%3Cpath id='shopping_cart_2' d='M7.3077 21.4303C6.8859 21.4303 6.53045 21.2844 6.24135 20.9926C5.95223 20.7008 5.80768 20.3421 5.80768 19.9164C5.80768 19.4907 5.95223 19.132 6.24135 18.8402C6.53045 18.5484 6.8859 18.4026 7.3077 18.4026C7.72948 18.4026 8.08493 18.5484 8.37405 18.8402C8.66315 19.132 8.8077 19.4907 8.8077 19.9164C8.8077 20.3421 8.66315 20.7008 8.37405 20.9926C8.08493 21.2844 7.72948 21.4303 7.3077 21.4303ZM16.6923 21.4303C16.2705 21.4303 15.9151 21.2844 15.626 20.9926C15.3369 20.7008 15.1923 20.3421 15.1923 19.9164C15.1923 19.4907 15.3369 19.132 15.626 18.8402C15.9151 18.5484 16.2705 18.4026 16.6923 18.4026C17.1141 18.4026 17.4696 18.5484 17.7587 18.8402C18.0478 19.132 18.1923 19.4907 18.1923 19.9164C18.1923 20.3421 18.0478 20.7008 17.7587 20.9926C17.4696 21.2844 17.1141 21.4303 16.6923 21.4303ZM5.88078 5.67075L8.55 11.3379H15.1846C15.3 11.3379 15.4026 11.3088 15.4923 11.2506C15.5821 11.1924 15.659 11.1115 15.7231 11.008L18.3385 6.21417C18.4154 6.07185 18.4218 5.94571 18.3577 5.83574C18.2936 5.72575 18.1846 5.67075 18.0308 5.67075H5.88078ZM5.3923 4.66152H18.4116C18.8462 4.66152 19.1731 4.8404 19.3923 5.19816C19.6115 5.55591 19.6231 5.92435 19.4269 6.30346L16.5692 11.5592C16.4244 11.8051 16.2362 11.9978 16.0048 12.1376C15.7734 12.2773 15.5192 12.3472 15.2423 12.3472H8.1L6.88463 14.5985C6.78206 14.7538 6.77885 14.922 6.875 15.1032C6.97115 15.2843 7.11538 15.3749 7.3077 15.3749H18.1923V16.3841H7.3077C6.72437 16.3841 6.28911 16.136 6.00192 15.6398C5.71474 15.1436 5.70769 14.6451 5.98078 14.1444L7.4846 11.4389L3.80768 3.6523H2V2.64307H4.4423L5.3923 4.66152Z' fill='%23999999'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.ico_search {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='search'%3E%3Cmask id='mask0_119_484' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_484)'%3E%3Cpath id='search_2' d='M19.4846 20.1539L13.223 13.8924C12.723 14.318 12.148 14.6475 11.498 14.8808C10.848 15.1142 10.1948 15.2308 9.53839 15.2308C7.93673 15.2308 6.58118 14.6764 5.47177 13.5676C4.36233 12.4588 3.80762 11.104 3.80762 9.50319C3.80762 7.90239 4.36203 6.54654 5.47084 5.43564C6.57966 4.32474 7.93447 3.76929 9.53527 3.76929C11.1361 3.76929 12.4919 4.324 13.6028 5.43341C14.7137 6.54283 15.2692 7.89838 15.2692 9.50006C15.2692 10.1949 15.1461 10.8674 14.8999 11.5174C14.6538 12.1674 14.3307 12.7231 13.9307 13.1847L20.1923 19.4462L19.4846 20.1539ZM9.53839 14.2308C10.8653 14.2308 11.9855 13.7741 12.899 12.8606C13.8124 11.9472 14.2692 10.827 14.2692 9.50006C14.2692 8.17315 13.8124 7.05296 12.899 6.13949C11.9855 5.22602 10.8653 4.76929 9.53839 4.76929C8.21147 4.76929 7.09128 5.22602 6.17782 6.13949C5.26437 7.05296 4.80764 8.17315 4.80764 9.50006C4.80764 10.827 5.26437 11.9472 6.17782 12.8606C7.09128 13.7741 8.21147 14.2308 9.53839 14.2308Z' fill='%23222222'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_search.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='search'%3E%3Cmask id='mask0_119_484' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_484)'%3E%3Cpath id='search_2' d='M19.4846 20.1539L13.223 13.8924C12.723 14.318 12.148 14.6475 11.498 14.8808C10.848 15.1142 10.1948 15.2308 9.53839 15.2308C7.93673 15.2308 6.58118 14.6764 5.47177 13.5676C4.36233 12.4588 3.80762 11.104 3.80762 9.50319C3.80762 7.90239 4.36203 6.54654 5.47084 5.43564C6.57966 4.32474 7.93447 3.76929 9.53527 3.76929C11.1361 3.76929 12.4919 4.324 13.6028 5.43341C14.7137 6.54283 15.2692 7.89838 15.2692 9.50006C15.2692 10.1949 15.1461 10.8674 14.8999 11.5174C14.6538 12.1674 14.3307 12.7231 13.9307 13.1847L20.1923 19.4462L19.4846 20.1539ZM9.53839 14.2308C10.8653 14.2308 11.9855 13.7741 12.899 12.8606C13.8124 11.9472 14.2692 10.827 14.2692 9.50006C14.2692 8.17315 13.8124 7.05296 12.899 6.13949C11.9855 5.22602 10.8653 4.76929 9.53839 4.76929C8.21147 4.76929 7.09128 5.22602 6.17782 6.13949C5.26437 7.05296 4.80764 8.17315 4.80764 9.50006C4.80764 10.827 5.26437 11.9472 6.17782 12.8606C7.09128 13.7741 8.21147 14.2308 9.53839 14.2308Z' fill='%23ffffff'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_search.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='search'%3E%3Cmask id='mask0_119_484' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_484)'%3E%3Cpath id='search_2' d='M19.4846 20.1539L13.223 13.8924C12.723 14.318 12.148 14.6475 11.498 14.8808C10.848 15.1142 10.1948 15.2308 9.53839 15.2308C7.93673 15.2308 6.58118 14.6764 5.47177 13.5676C4.36233 12.4588 3.80762 11.104 3.80762 9.50319C3.80762 7.90239 4.36203 6.54654 5.47084 5.43564C6.57966 4.32474 7.93447 3.76929 9.53527 3.76929C11.1361 3.76929 12.4919 4.324 13.6028 5.43341C14.7137 6.54283 15.2692 7.89838 15.2692 9.50006C15.2692 10.1949 15.1461 10.8674 14.8999 11.5174C14.6538 12.1674 14.3307 12.7231 13.9307 13.1847L20.1923 19.4462L19.4846 20.1539ZM9.53839 14.2308C10.8653 14.2308 11.9855 13.7741 12.899 12.8606C13.8124 11.9472 14.2692 10.827 14.2692 9.50006C14.2692 8.17315 13.8124 7.05296 12.899 6.13949C11.9855 5.22602 10.8653 4.76929 9.53839 4.76929C8.21147 4.76929 7.09128 5.22602 6.17782 6.13949C5.26437 7.05296 4.80764 8.17315 4.80764 9.50006C4.80764 10.827 5.26437 11.9472 6.17782 12.8606C7.09128 13.7741 8.21147 14.2308 9.53839 14.2308Z' fill='%23F15A29'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_search.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='search'%3E%3Cmask id='mask0_119_484' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_484)'%3E%3Cpath id='search_2' d='M19.4846 20.1539L13.223 13.8924C12.723 14.318 12.148 14.6475 11.498 14.8808C10.848 15.1142 10.1948 15.2308 9.53839 15.2308C7.93673 15.2308 6.58118 14.6764 5.47177 13.5676C4.36233 12.4588 3.80762 11.104 3.80762 9.50319C3.80762 7.90239 4.36203 6.54654 5.47084 5.43564C6.57966 4.32474 7.93447 3.76929 9.53527 3.76929C11.1361 3.76929 12.4919 4.324 13.6028 5.43341C14.7137 6.54283 15.2692 7.89838 15.2692 9.50006C15.2692 10.1949 15.1461 10.8674 14.8999 11.5174C14.6538 12.1674 14.3307 12.7231 13.9307 13.1847L20.1923 19.4462L19.4846 20.1539ZM9.53839 14.2308C10.8653 14.2308 11.9855 13.7741 12.899 12.8606C13.8124 11.9472 14.2692 10.827 14.2692 9.50006C14.2692 8.17315 13.8124 7.05296 12.899 6.13949C11.9855 5.22602 10.8653 4.76929 9.53839 4.76929C8.21147 4.76929 7.09128 5.22602 6.17782 6.13949C5.26437 7.05296 4.80764 8.17315 4.80764 9.50006C4.80764 10.827 5.26437 11.9472 6.17782 12.8606C7.09128 13.7741 8.21147 14.2308 9.53839 14.2308Z' fill='%23ececec'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_search.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='search'%3E%3Cmask id='mask0_119_484' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_484)'%3E%3Cpath id='search_2' d='M19.4846 20.1539L13.223 13.8924C12.723 14.318 12.148 14.6475 11.498 14.8808C10.848 15.1142 10.1948 15.2308 9.53839 15.2308C7.93673 15.2308 6.58118 14.6764 5.47177 13.5676C4.36233 12.4588 3.80762 11.104 3.80762 9.50319C3.80762 7.90239 4.36203 6.54654 5.47084 5.43564C6.57966 4.32474 7.93447 3.76929 9.53527 3.76929C11.1361 3.76929 12.4919 4.324 13.6028 5.43341C14.7137 6.54283 15.2692 7.89838 15.2692 9.50006C15.2692 10.1949 15.1461 10.8674 14.8999 11.5174C14.6538 12.1674 14.3307 12.7231 13.9307 13.1847L20.1923 19.4462L19.4846 20.1539ZM9.53839 14.2308C10.8653 14.2308 11.9855 13.7741 12.899 12.8606C13.8124 11.9472 14.2692 10.827 14.2692 9.50006C14.2692 8.17315 13.8124 7.05296 12.899 6.13949C11.9855 5.22602 10.8653 4.76929 9.53839 4.76929C8.21147 4.76929 7.09128 5.22602 6.17782 6.13949C5.26437 7.05296 4.80764 8.17315 4.80764 9.50006C4.80764 10.827 5.26437 11.9472 6.17782 12.8606C7.09128 13.7741 8.21147 14.2308 9.53839 14.2308Z' fill='%23555555'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_search.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='search'%3E%3Cmask id='mask0_119_484' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_484)'%3E%3Cpath id='search_2' d='M19.4846 20.1539L13.223 13.8924C12.723 14.318 12.148 14.6475 11.498 14.8808C10.848 15.1142 10.1948 15.2308 9.53839 15.2308C7.93673 15.2308 6.58118 14.6764 5.47177 13.5676C4.36233 12.4588 3.80762 11.104 3.80762 9.50319C3.80762 7.90239 4.36203 6.54654 5.47084 5.43564C6.57966 4.32474 7.93447 3.76929 9.53527 3.76929C11.1361 3.76929 12.4919 4.324 13.6028 5.43341C14.7137 6.54283 15.2692 7.89838 15.2692 9.50006C15.2692 10.1949 15.1461 10.8674 14.8999 11.5174C14.6538 12.1674 14.3307 12.7231 13.9307 13.1847L20.1923 19.4462L19.4846 20.1539ZM9.53839 14.2308C10.8653 14.2308 11.9855 13.7741 12.899 12.8606C13.8124 11.9472 14.2692 10.827 14.2692 9.50006C14.2692 8.17315 13.8124 7.05296 12.899 6.13949C11.9855 5.22602 10.8653 4.76929 9.53839 4.76929C8.21147 4.76929 7.09128 5.22602 6.17782 6.13949C5.26437 7.05296 4.80764 8.17315 4.80764 9.50006C4.80764 10.827 5.26437 11.9472 6.17782 12.8606C7.09128 13.7741 8.21147 14.2308 9.53839 14.2308Z' fill='%238dc63f'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_search.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='search'%3E%3Cmask id='mask0_119_484' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_484)'%3E%3Cpath id='search_2' d='M19.4846 20.1539L13.223 13.8924C12.723 14.318 12.148 14.6475 11.498 14.8808C10.848 15.1142 10.1948 15.2308 9.53839 15.2308C7.93673 15.2308 6.58118 14.6764 5.47177 13.5676C4.36233 12.4588 3.80762 11.104 3.80762 9.50319C3.80762 7.90239 4.36203 6.54654 5.47084 5.43564C6.57966 4.32474 7.93447 3.76929 9.53527 3.76929C11.1361 3.76929 12.4919 4.324 13.6028 5.43341C14.7137 6.54283 15.2692 7.89838 15.2692 9.50006C15.2692 10.1949 15.1461 10.8674 14.8999 11.5174C14.6538 12.1674 14.3307 12.7231 13.9307 13.1847L20.1923 19.4462L19.4846 20.1539ZM9.53839 14.2308C10.8653 14.2308 11.9855 13.7741 12.899 12.8606C13.8124 11.9472 14.2692 10.827 14.2692 9.50006C14.2692 8.17315 13.8124 7.05296 12.899 6.13949C11.9855 5.22602 10.8653 4.76929 9.53839 4.76929C8.21147 4.76929 7.09128 5.22602 6.17782 6.13949C5.26437 7.05296 4.80764 8.17315 4.80764 9.50006C4.80764 10.827 5.26437 11.9472 6.17782 12.8606C7.09128 13.7741 8.21147 14.2308 9.53839 14.2308Z' fill='%23999999'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.ico_cate {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='manage_search'%3E%3Cmask id='mask0_181_38' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_38)'%3E%3Cpath id='manage_search_2' d='M2.57715 18.6348V17.1348H12.2694V18.6348H2.57715ZM2.57715 13.7502V12.2502H7.26942V13.7502H2.57715ZM2.57715 8.86559V7.36562H7.26942V8.86559H2.57715ZM20.3694 18.654L16.5386 14.8233C16.1643 15.1002 15.754 15.3111 15.3078 15.456C14.8617 15.6008 14.4066 15.6733 13.9425 15.6733C12.6938 15.6733 11.6316 15.2354 10.756 14.3598C9.88034 13.4842 9.44252 12.422 9.44252 11.1733C9.44252 9.9246 9.88034 8.86242 10.756 7.98679C11.6316 7.11116 12.6938 6.67334 13.9425 6.67334C15.1912 6.67334 16.2534 7.11116 17.129 7.98679C18.0046 8.86242 18.4424 9.9246 18.4424 11.1733C18.4424 11.6374 18.37 12.0925 18.2251 12.5387C18.0803 12.9848 17.8694 13.3951 17.5925 13.7694L21.4232 17.6002L20.3694 18.654ZM13.9425 14.1733C14.7758 14.1733 15.4841 13.8816 16.0675 13.2983C16.6508 12.715 16.9425 12.0066 16.9425 11.1733C16.9425 10.34 16.6508 9.63165 16.0675 9.04832C15.4841 8.46498 14.7758 8.17332 13.9425 8.17332C13.1091 8.17332 12.4008 8.46498 11.8175 9.04832C11.2341 9.63165 10.9425 10.34 10.9425 11.1733C10.9425 12.0066 11.2341 12.715 11.8175 13.2983C12.4008 13.8816 13.1091 14.1733 13.9425 14.1733Z' fill='%23222222'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_cate.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='manage_search'%3E%3Cmask id='mask0_181_38' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_38)'%3E%3Cpath id='manage_search_2' d='M2.57715 18.6348V17.1348H12.2694V18.6348H2.57715ZM2.57715 13.7502V12.2502H7.26942V13.7502H2.57715ZM2.57715 8.86559V7.36562H7.26942V8.86559H2.57715ZM20.3694 18.654L16.5386 14.8233C16.1643 15.1002 15.754 15.3111 15.3078 15.456C14.8617 15.6008 14.4066 15.6733 13.9425 15.6733C12.6938 15.6733 11.6316 15.2354 10.756 14.3598C9.88034 13.4842 9.44252 12.422 9.44252 11.1733C9.44252 9.9246 9.88034 8.86242 10.756 7.98679C11.6316 7.11116 12.6938 6.67334 13.9425 6.67334C15.1912 6.67334 16.2534 7.11116 17.129 7.98679C18.0046 8.86242 18.4424 9.9246 18.4424 11.1733C18.4424 11.6374 18.37 12.0925 18.2251 12.5387C18.0803 12.9848 17.8694 13.3951 17.5925 13.7694L21.4232 17.6002L20.3694 18.654ZM13.9425 14.1733C14.7758 14.1733 15.4841 13.8816 16.0675 13.2983C16.6508 12.715 16.9425 12.0066 16.9425 11.1733C16.9425 10.34 16.6508 9.63165 16.0675 9.04832C15.4841 8.46498 14.7758 8.17332 13.9425 8.17332C13.1091 8.17332 12.4008 8.46498 11.8175 9.04832C11.2341 9.63165 10.9425 10.34 10.9425 11.1733C10.9425 12.0066 11.2341 12.715 11.8175 13.2983C12.4008 13.8816 13.1091 14.1733 13.9425 14.1733Z' fill='%23ffffff'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_cate.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='manage_search'%3E%3Cmask id='mask0_181_38' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_38)'%3E%3Cpath id='manage_search_2' d='M2.57715 18.6348V17.1348H12.2694V18.6348H2.57715ZM2.57715 13.7502V12.2502H7.26942V13.7502H2.57715ZM2.57715 8.86559V7.36562H7.26942V8.86559H2.57715ZM20.3694 18.654L16.5386 14.8233C16.1643 15.1002 15.754 15.3111 15.3078 15.456C14.8617 15.6008 14.4066 15.6733 13.9425 15.6733C12.6938 15.6733 11.6316 15.2354 10.756 14.3598C9.88034 13.4842 9.44252 12.422 9.44252 11.1733C9.44252 9.9246 9.88034 8.86242 10.756 7.98679C11.6316 7.11116 12.6938 6.67334 13.9425 6.67334C15.1912 6.67334 16.2534 7.11116 17.129 7.98679C18.0046 8.86242 18.4424 9.9246 18.4424 11.1733C18.4424 11.6374 18.37 12.0925 18.2251 12.5387C18.0803 12.9848 17.8694 13.3951 17.5925 13.7694L21.4232 17.6002L20.3694 18.654ZM13.9425 14.1733C14.7758 14.1733 15.4841 13.8816 16.0675 13.2983C16.6508 12.715 16.9425 12.0066 16.9425 11.1733C16.9425 10.34 16.6508 9.63165 16.0675 9.04832C15.4841 8.46498 14.7758 8.17332 13.9425 8.17332C13.1091 8.17332 12.4008 8.46498 11.8175 9.04832C11.2341 9.63165 10.9425 10.34 10.9425 11.1733C10.9425 12.0066 11.2341 12.715 11.8175 13.2983C12.4008 13.8816 13.1091 14.1733 13.9425 14.1733Z' fill='%23F15A29'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_cate.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='manage_search'%3E%3Cmask id='mask0_181_38' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_38)'%3E%3Cpath id='manage_search_2' d='M2.57715 18.6348V17.1348H12.2694V18.6348H2.57715ZM2.57715 13.7502V12.2502H7.26942V13.7502H2.57715ZM2.57715 8.86559V7.36562H7.26942V8.86559H2.57715ZM20.3694 18.654L16.5386 14.8233C16.1643 15.1002 15.754 15.3111 15.3078 15.456C14.8617 15.6008 14.4066 15.6733 13.9425 15.6733C12.6938 15.6733 11.6316 15.2354 10.756 14.3598C9.88034 13.4842 9.44252 12.422 9.44252 11.1733C9.44252 9.9246 9.88034 8.86242 10.756 7.98679C11.6316 7.11116 12.6938 6.67334 13.9425 6.67334C15.1912 6.67334 16.2534 7.11116 17.129 7.98679C18.0046 8.86242 18.4424 9.9246 18.4424 11.1733C18.4424 11.6374 18.37 12.0925 18.2251 12.5387C18.0803 12.9848 17.8694 13.3951 17.5925 13.7694L21.4232 17.6002L20.3694 18.654ZM13.9425 14.1733C14.7758 14.1733 15.4841 13.8816 16.0675 13.2983C16.6508 12.715 16.9425 12.0066 16.9425 11.1733C16.9425 10.34 16.6508 9.63165 16.0675 9.04832C15.4841 8.46498 14.7758 8.17332 13.9425 8.17332C13.1091 8.17332 12.4008 8.46498 11.8175 9.04832C11.2341 9.63165 10.9425 10.34 10.9425 11.1733C10.9425 12.0066 11.2341 12.715 11.8175 13.2983C12.4008 13.8816 13.1091 14.1733 13.9425 14.1733Z' fill='%23ececec'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_cate.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='manage_search'%3E%3Cmask id='mask0_181_38' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_38)'%3E%3Cpath id='manage_search_2' d='M2.57715 18.6348V17.1348H12.2694V18.6348H2.57715ZM2.57715 13.7502V12.2502H7.26942V13.7502H2.57715ZM2.57715 8.86559V7.36562H7.26942V8.86559H2.57715ZM20.3694 18.654L16.5386 14.8233C16.1643 15.1002 15.754 15.3111 15.3078 15.456C14.8617 15.6008 14.4066 15.6733 13.9425 15.6733C12.6938 15.6733 11.6316 15.2354 10.756 14.3598C9.88034 13.4842 9.44252 12.422 9.44252 11.1733C9.44252 9.9246 9.88034 8.86242 10.756 7.98679C11.6316 7.11116 12.6938 6.67334 13.9425 6.67334C15.1912 6.67334 16.2534 7.11116 17.129 7.98679C18.0046 8.86242 18.4424 9.9246 18.4424 11.1733C18.4424 11.6374 18.37 12.0925 18.2251 12.5387C18.0803 12.9848 17.8694 13.3951 17.5925 13.7694L21.4232 17.6002L20.3694 18.654ZM13.9425 14.1733C14.7758 14.1733 15.4841 13.8816 16.0675 13.2983C16.6508 12.715 16.9425 12.0066 16.9425 11.1733C16.9425 10.34 16.6508 9.63165 16.0675 9.04832C15.4841 8.46498 14.7758 8.17332 13.9425 8.17332C13.1091 8.17332 12.4008 8.46498 11.8175 9.04832C11.2341 9.63165 10.9425 10.34 10.9425 11.1733C10.9425 12.0066 11.2341 12.715 11.8175 13.2983C12.4008 13.8816 13.1091 14.1733 13.9425 14.1733Z' fill='%23555555'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_cate.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='manage_search'%3E%3Cmask id='mask0_181_38' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_38)'%3E%3Cpath id='manage_search_2' d='M2.57715 18.6348V17.1348H12.2694V18.6348H2.57715ZM2.57715 13.7502V12.2502H7.26942V13.7502H2.57715ZM2.57715 8.86559V7.36562H7.26942V8.86559H2.57715ZM20.3694 18.654L16.5386 14.8233C16.1643 15.1002 15.754 15.3111 15.3078 15.456C14.8617 15.6008 14.4066 15.6733 13.9425 15.6733C12.6938 15.6733 11.6316 15.2354 10.756 14.3598C9.88034 13.4842 9.44252 12.422 9.44252 11.1733C9.44252 9.9246 9.88034 8.86242 10.756 7.98679C11.6316 7.11116 12.6938 6.67334 13.9425 6.67334C15.1912 6.67334 16.2534 7.11116 17.129 7.98679C18.0046 8.86242 18.4424 9.9246 18.4424 11.1733C18.4424 11.6374 18.37 12.0925 18.2251 12.5387C18.0803 12.9848 17.8694 13.3951 17.5925 13.7694L21.4232 17.6002L20.3694 18.654ZM13.9425 14.1733C14.7758 14.1733 15.4841 13.8816 16.0675 13.2983C16.6508 12.715 16.9425 12.0066 16.9425 11.1733C16.9425 10.34 16.6508 9.63165 16.0675 9.04832C15.4841 8.46498 14.7758 8.17332 13.9425 8.17332C13.1091 8.17332 12.4008 8.46498 11.8175 9.04832C11.2341 9.63165 10.9425 10.34 10.9425 11.1733C10.9425 12.0066 11.2341 12.715 11.8175 13.2983C12.4008 13.8816 13.1091 14.1733 13.9425 14.1733Z' fill='%238dc63f'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_cate.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='manage_search'%3E%3Cmask id='mask0_181_38' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_38)'%3E%3Cpath id='manage_search_2' d='M2.57715 18.6348V17.1348H12.2694V18.6348H2.57715ZM2.57715 13.7502V12.2502H7.26942V13.7502H2.57715ZM2.57715 8.86559V7.36562H7.26942V8.86559H2.57715ZM20.3694 18.654L16.5386 14.8233C16.1643 15.1002 15.754 15.3111 15.3078 15.456C14.8617 15.6008 14.4066 15.6733 13.9425 15.6733C12.6938 15.6733 11.6316 15.2354 10.756 14.3598C9.88034 13.4842 9.44252 12.422 9.44252 11.1733C9.44252 9.9246 9.88034 8.86242 10.756 7.98679C11.6316 7.11116 12.6938 6.67334 13.9425 6.67334C15.1912 6.67334 16.2534 7.11116 17.129 7.98679C18.0046 8.86242 18.4424 9.9246 18.4424 11.1733C18.4424 11.6374 18.37 12.0925 18.2251 12.5387C18.0803 12.9848 17.8694 13.3951 17.5925 13.7694L21.4232 17.6002L20.3694 18.654ZM13.9425 14.1733C14.7758 14.1733 15.4841 13.8816 16.0675 13.2983C16.6508 12.715 16.9425 12.0066 16.9425 11.1733C16.9425 10.34 16.6508 9.63165 16.0675 9.04832C15.4841 8.46498 14.7758 8.17332 13.9425 8.17332C13.1091 8.17332 12.4008 8.46498 11.8175 9.04832C11.2341 9.63165 10.9425 10.34 10.9425 11.1733C10.9425 12.0066 11.2341 12.715 11.8175 13.2983C12.4008 13.8816 13.1091 14.1733 13.9425 14.1733Z' fill='%23999999'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.ico_mypage {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='account_circle'%3E%3Cmask id='mask0_181_53' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_53)'%3E%3Cpath id='account_circle_2' d='M6.02308 17.2923C6.87308 16.6615 7.79903 16.1635 8.80095 15.7981C9.80287 15.4327 10.8692 15.25 12 15.25C13.1307 15.25 14.1971 15.4327 15.199 15.7981C16.2009 16.1635 17.1269 16.6615 17.9769 17.2923C18.5987 16.609 19.0913 15.8179 19.4548 14.9192C19.8182 14.0205 20 13.0474 20 12C20 9.78331 19.2208 7.89581 17.6625 6.33748C16.1041 4.77914 14.2166 3.99998 12 3.99998C9.78331 3.99998 7.89581 4.77914 6.33748 6.33748C4.77914 7.89581 3.99998 9.78331 3.99998 12C3.99998 13.0474 4.18171 14.0205 4.54518 14.9192C4.90864 15.8179 5.40128 16.609 6.02308 17.2923ZM12.0003 12.75C11.0873 12.75 10.3173 12.4366 9.69038 11.8099C9.06346 11.1831 8.75 10.4133 8.75 9.50028C8.75 8.58726 9.06336 7.81729 9.69008 7.19038C10.3168 6.56346 11.0867 6.25 11.9997 6.25C12.9127 6.25 13.6827 6.56336 14.3096 7.19008C14.9365 7.81681 15.25 8.58668 15.25 9.49968C15.25 10.4127 14.9366 11.1827 14.3099 11.8096C13.6831 12.4365 12.9133 12.75 12.0003 12.75ZM12 21.5C10.6807 21.5 9.44325 21.2519 8.2875 20.7557C7.13173 20.2596 6.12628 19.5839 5.27115 18.7288C4.41603 17.8737 3.7404 16.8682 3.24425 15.7125C2.74808 14.5567 2.5 13.3192 2.5 12C2.5 10.6807 2.74808 9.44325 3.24425 8.2875C3.7404 7.13173 4.41603 6.12628 5.27115 5.27115C6.12628 4.41603 7.13173 3.7404 8.2875 3.24425C9.44325 2.74808 10.6807 2.5 12 2.5C13.3192 2.5 14.5567 2.74808 15.7125 3.24425C16.8682 3.7404 17.8737 4.41603 18.7288 5.27115C19.5839 6.12628 20.2596 7.13173 20.7557 8.2875C21.2519 9.44325 21.5 10.6807 21.5 12C21.5 13.3192 21.2519 14.5567 20.7557 15.7125C20.2596 16.8682 19.5839 17.8737 18.7288 18.7288C17.8737 19.5839 16.8682 20.2596 15.7125 20.7557C14.5567 21.2519 13.3192 21.5 12 21.5ZM12 20C12.9025 20 13.7727 19.8548 14.6105 19.5644C15.4484 19.274 16.1923 18.8679 16.8423 18.3461C16.1923 17.8436 15.458 17.4519 14.6394 17.1711C13.8208 16.8903 12.941 16.75 12 16.75C11.0589 16.75 10.1775 16.8887 9.35573 17.1663C8.53393 17.4439 7.80123 17.8371 7.15765 18.3461C7.80765 18.8679 8.55157 19.274 9.3894 19.5644C10.2272 19.8548 11.0974 20 12 20ZM12 11.25C12.4974 11.25 12.9134 11.0827 13.2481 10.7481C13.5827 10.4134 13.75 9.99741 13.75 9.49998C13.75 9.00254 13.5827 8.58651 13.2481 8.25188C12.9134 7.91726 12.4974 7.74995 12 7.74995C11.5025 7.74995 11.0865 7.91726 10.7519 8.25188C10.4173 8.58651 10.25 9.00254 10.25 9.49998C10.25 9.99741 10.4173 10.4134 10.7519 10.7481C11.0865 11.0827 11.5025 11.25 12 11.25Z' fill='%23222222'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_mypage.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='account_circle'%3E%3Cmask id='mask0_181_53' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_53)'%3E%3Cpath id='account_circle_2' d='M6.02308 17.2923C6.87308 16.6615 7.79903 16.1635 8.80095 15.7981C9.80287 15.4327 10.8692 15.25 12 15.25C13.1307 15.25 14.1971 15.4327 15.199 15.7981C16.2009 16.1635 17.1269 16.6615 17.9769 17.2923C18.5987 16.609 19.0913 15.8179 19.4548 14.9192C19.8182 14.0205 20 13.0474 20 12C20 9.78331 19.2208 7.89581 17.6625 6.33748C16.1041 4.77914 14.2166 3.99998 12 3.99998C9.78331 3.99998 7.89581 4.77914 6.33748 6.33748C4.77914 7.89581 3.99998 9.78331 3.99998 12C3.99998 13.0474 4.18171 14.0205 4.54518 14.9192C4.90864 15.8179 5.40128 16.609 6.02308 17.2923ZM12.0003 12.75C11.0873 12.75 10.3173 12.4366 9.69038 11.8099C9.06346 11.1831 8.75 10.4133 8.75 9.50028C8.75 8.58726 9.06336 7.81729 9.69008 7.19038C10.3168 6.56346 11.0867 6.25 11.9997 6.25C12.9127 6.25 13.6827 6.56336 14.3096 7.19008C14.9365 7.81681 15.25 8.58668 15.25 9.49968C15.25 10.4127 14.9366 11.1827 14.3099 11.8096C13.6831 12.4365 12.9133 12.75 12.0003 12.75ZM12 21.5C10.6807 21.5 9.44325 21.2519 8.2875 20.7557C7.13173 20.2596 6.12628 19.5839 5.27115 18.7288C4.41603 17.8737 3.7404 16.8682 3.24425 15.7125C2.74808 14.5567 2.5 13.3192 2.5 12C2.5 10.6807 2.74808 9.44325 3.24425 8.2875C3.7404 7.13173 4.41603 6.12628 5.27115 5.27115C6.12628 4.41603 7.13173 3.7404 8.2875 3.24425C9.44325 2.74808 10.6807 2.5 12 2.5C13.3192 2.5 14.5567 2.74808 15.7125 3.24425C16.8682 3.7404 17.8737 4.41603 18.7288 5.27115C19.5839 6.12628 20.2596 7.13173 20.7557 8.2875C21.2519 9.44325 21.5 10.6807 21.5 12C21.5 13.3192 21.2519 14.5567 20.7557 15.7125C20.2596 16.8682 19.5839 17.8737 18.7288 18.7288C17.8737 19.5839 16.8682 20.2596 15.7125 20.7557C14.5567 21.2519 13.3192 21.5 12 21.5ZM12 20C12.9025 20 13.7727 19.8548 14.6105 19.5644C15.4484 19.274 16.1923 18.8679 16.8423 18.3461C16.1923 17.8436 15.458 17.4519 14.6394 17.1711C13.8208 16.8903 12.941 16.75 12 16.75C11.0589 16.75 10.1775 16.8887 9.35573 17.1663C8.53393 17.4439 7.80123 17.8371 7.15765 18.3461C7.80765 18.8679 8.55157 19.274 9.3894 19.5644C10.2272 19.8548 11.0974 20 12 20ZM12 11.25C12.4974 11.25 12.9134 11.0827 13.2481 10.7481C13.5827 10.4134 13.75 9.99741 13.75 9.49998C13.75 9.00254 13.5827 8.58651 13.2481 8.25188C12.9134 7.91726 12.4974 7.74995 12 7.74995C11.5025 7.74995 11.0865 7.91726 10.7519 8.25188C10.4173 8.58651 10.25 9.00254 10.25 9.49998C10.25 9.99741 10.4173 10.4134 10.7519 10.7481C11.0865 11.0827 11.5025 11.25 12 11.25Z' fill='%23ffffff'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_mypage.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='account_circle'%3E%3Cmask id='mask0_181_53' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_53)'%3E%3Cpath id='account_circle_2' d='M6.02308 17.2923C6.87308 16.6615 7.79903 16.1635 8.80095 15.7981C9.80287 15.4327 10.8692 15.25 12 15.25C13.1307 15.25 14.1971 15.4327 15.199 15.7981C16.2009 16.1635 17.1269 16.6615 17.9769 17.2923C18.5987 16.609 19.0913 15.8179 19.4548 14.9192C19.8182 14.0205 20 13.0474 20 12C20 9.78331 19.2208 7.89581 17.6625 6.33748C16.1041 4.77914 14.2166 3.99998 12 3.99998C9.78331 3.99998 7.89581 4.77914 6.33748 6.33748C4.77914 7.89581 3.99998 9.78331 3.99998 12C3.99998 13.0474 4.18171 14.0205 4.54518 14.9192C4.90864 15.8179 5.40128 16.609 6.02308 17.2923ZM12.0003 12.75C11.0873 12.75 10.3173 12.4366 9.69038 11.8099C9.06346 11.1831 8.75 10.4133 8.75 9.50028C8.75 8.58726 9.06336 7.81729 9.69008 7.19038C10.3168 6.56346 11.0867 6.25 11.9997 6.25C12.9127 6.25 13.6827 6.56336 14.3096 7.19008C14.9365 7.81681 15.25 8.58668 15.25 9.49968C15.25 10.4127 14.9366 11.1827 14.3099 11.8096C13.6831 12.4365 12.9133 12.75 12.0003 12.75ZM12 21.5C10.6807 21.5 9.44325 21.2519 8.2875 20.7557C7.13173 20.2596 6.12628 19.5839 5.27115 18.7288C4.41603 17.8737 3.7404 16.8682 3.24425 15.7125C2.74808 14.5567 2.5 13.3192 2.5 12C2.5 10.6807 2.74808 9.44325 3.24425 8.2875C3.7404 7.13173 4.41603 6.12628 5.27115 5.27115C6.12628 4.41603 7.13173 3.7404 8.2875 3.24425C9.44325 2.74808 10.6807 2.5 12 2.5C13.3192 2.5 14.5567 2.74808 15.7125 3.24425C16.8682 3.7404 17.8737 4.41603 18.7288 5.27115C19.5839 6.12628 20.2596 7.13173 20.7557 8.2875C21.2519 9.44325 21.5 10.6807 21.5 12C21.5 13.3192 21.2519 14.5567 20.7557 15.7125C20.2596 16.8682 19.5839 17.8737 18.7288 18.7288C17.8737 19.5839 16.8682 20.2596 15.7125 20.7557C14.5567 21.2519 13.3192 21.5 12 21.5ZM12 20C12.9025 20 13.7727 19.8548 14.6105 19.5644C15.4484 19.274 16.1923 18.8679 16.8423 18.3461C16.1923 17.8436 15.458 17.4519 14.6394 17.1711C13.8208 16.8903 12.941 16.75 12 16.75C11.0589 16.75 10.1775 16.8887 9.35573 17.1663C8.53393 17.4439 7.80123 17.8371 7.15765 18.3461C7.80765 18.8679 8.55157 19.274 9.3894 19.5644C10.2272 19.8548 11.0974 20 12 20ZM12 11.25C12.4974 11.25 12.9134 11.0827 13.2481 10.7481C13.5827 10.4134 13.75 9.99741 13.75 9.49998C13.75 9.00254 13.5827 8.58651 13.2481 8.25188C12.9134 7.91726 12.4974 7.74995 12 7.74995C11.5025 7.74995 11.0865 7.91726 10.7519 8.25188C10.4173 8.58651 10.25 9.00254 10.25 9.49998C10.25 9.99741 10.4173 10.4134 10.7519 10.7481C11.0865 11.0827 11.5025 11.25 12 11.25Z' fill='%23F15A29'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_mypage.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='account_circle'%3E%3Cmask id='mask0_181_53' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_53)'%3E%3Cpath id='account_circle_2' d='M6.02308 17.2923C6.87308 16.6615 7.79903 16.1635 8.80095 15.7981C9.80287 15.4327 10.8692 15.25 12 15.25C13.1307 15.25 14.1971 15.4327 15.199 15.7981C16.2009 16.1635 17.1269 16.6615 17.9769 17.2923C18.5987 16.609 19.0913 15.8179 19.4548 14.9192C19.8182 14.0205 20 13.0474 20 12C20 9.78331 19.2208 7.89581 17.6625 6.33748C16.1041 4.77914 14.2166 3.99998 12 3.99998C9.78331 3.99998 7.89581 4.77914 6.33748 6.33748C4.77914 7.89581 3.99998 9.78331 3.99998 12C3.99998 13.0474 4.18171 14.0205 4.54518 14.9192C4.90864 15.8179 5.40128 16.609 6.02308 17.2923ZM12.0003 12.75C11.0873 12.75 10.3173 12.4366 9.69038 11.8099C9.06346 11.1831 8.75 10.4133 8.75 9.50028C8.75 8.58726 9.06336 7.81729 9.69008 7.19038C10.3168 6.56346 11.0867 6.25 11.9997 6.25C12.9127 6.25 13.6827 6.56336 14.3096 7.19008C14.9365 7.81681 15.25 8.58668 15.25 9.49968C15.25 10.4127 14.9366 11.1827 14.3099 11.8096C13.6831 12.4365 12.9133 12.75 12.0003 12.75ZM12 21.5C10.6807 21.5 9.44325 21.2519 8.2875 20.7557C7.13173 20.2596 6.12628 19.5839 5.27115 18.7288C4.41603 17.8737 3.7404 16.8682 3.24425 15.7125C2.74808 14.5567 2.5 13.3192 2.5 12C2.5 10.6807 2.74808 9.44325 3.24425 8.2875C3.7404 7.13173 4.41603 6.12628 5.27115 5.27115C6.12628 4.41603 7.13173 3.7404 8.2875 3.24425C9.44325 2.74808 10.6807 2.5 12 2.5C13.3192 2.5 14.5567 2.74808 15.7125 3.24425C16.8682 3.7404 17.8737 4.41603 18.7288 5.27115C19.5839 6.12628 20.2596 7.13173 20.7557 8.2875C21.2519 9.44325 21.5 10.6807 21.5 12C21.5 13.3192 21.2519 14.5567 20.7557 15.7125C20.2596 16.8682 19.5839 17.8737 18.7288 18.7288C17.8737 19.5839 16.8682 20.2596 15.7125 20.7557C14.5567 21.2519 13.3192 21.5 12 21.5ZM12 20C12.9025 20 13.7727 19.8548 14.6105 19.5644C15.4484 19.274 16.1923 18.8679 16.8423 18.3461C16.1923 17.8436 15.458 17.4519 14.6394 17.1711C13.8208 16.8903 12.941 16.75 12 16.75C11.0589 16.75 10.1775 16.8887 9.35573 17.1663C8.53393 17.4439 7.80123 17.8371 7.15765 18.3461C7.80765 18.8679 8.55157 19.274 9.3894 19.5644C10.2272 19.8548 11.0974 20 12 20ZM12 11.25C12.4974 11.25 12.9134 11.0827 13.2481 10.7481C13.5827 10.4134 13.75 9.99741 13.75 9.49998C13.75 9.00254 13.5827 8.58651 13.2481 8.25188C12.9134 7.91726 12.4974 7.74995 12 7.74995C11.5025 7.74995 11.0865 7.91726 10.7519 8.25188C10.4173 8.58651 10.25 9.00254 10.25 9.49998C10.25 9.99741 10.4173 10.4134 10.7519 10.7481C11.0865 11.0827 11.5025 11.25 12 11.25Z' fill='%23ececec'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_mypage.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='account_circle'%3E%3Cmask id='mask0_181_53' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_53)'%3E%3Cpath id='account_circle_2' d='M6.02308 17.2923C6.87308 16.6615 7.79903 16.1635 8.80095 15.7981C9.80287 15.4327 10.8692 15.25 12 15.25C13.1307 15.25 14.1971 15.4327 15.199 15.7981C16.2009 16.1635 17.1269 16.6615 17.9769 17.2923C18.5987 16.609 19.0913 15.8179 19.4548 14.9192C19.8182 14.0205 20 13.0474 20 12C20 9.78331 19.2208 7.89581 17.6625 6.33748C16.1041 4.77914 14.2166 3.99998 12 3.99998C9.78331 3.99998 7.89581 4.77914 6.33748 6.33748C4.77914 7.89581 3.99998 9.78331 3.99998 12C3.99998 13.0474 4.18171 14.0205 4.54518 14.9192C4.90864 15.8179 5.40128 16.609 6.02308 17.2923ZM12.0003 12.75C11.0873 12.75 10.3173 12.4366 9.69038 11.8099C9.06346 11.1831 8.75 10.4133 8.75 9.50028C8.75 8.58726 9.06336 7.81729 9.69008 7.19038C10.3168 6.56346 11.0867 6.25 11.9997 6.25C12.9127 6.25 13.6827 6.56336 14.3096 7.19008C14.9365 7.81681 15.25 8.58668 15.25 9.49968C15.25 10.4127 14.9366 11.1827 14.3099 11.8096C13.6831 12.4365 12.9133 12.75 12.0003 12.75ZM12 21.5C10.6807 21.5 9.44325 21.2519 8.2875 20.7557C7.13173 20.2596 6.12628 19.5839 5.27115 18.7288C4.41603 17.8737 3.7404 16.8682 3.24425 15.7125C2.74808 14.5567 2.5 13.3192 2.5 12C2.5 10.6807 2.74808 9.44325 3.24425 8.2875C3.7404 7.13173 4.41603 6.12628 5.27115 5.27115C6.12628 4.41603 7.13173 3.7404 8.2875 3.24425C9.44325 2.74808 10.6807 2.5 12 2.5C13.3192 2.5 14.5567 2.74808 15.7125 3.24425C16.8682 3.7404 17.8737 4.41603 18.7288 5.27115C19.5839 6.12628 20.2596 7.13173 20.7557 8.2875C21.2519 9.44325 21.5 10.6807 21.5 12C21.5 13.3192 21.2519 14.5567 20.7557 15.7125C20.2596 16.8682 19.5839 17.8737 18.7288 18.7288C17.8737 19.5839 16.8682 20.2596 15.7125 20.7557C14.5567 21.2519 13.3192 21.5 12 21.5ZM12 20C12.9025 20 13.7727 19.8548 14.6105 19.5644C15.4484 19.274 16.1923 18.8679 16.8423 18.3461C16.1923 17.8436 15.458 17.4519 14.6394 17.1711C13.8208 16.8903 12.941 16.75 12 16.75C11.0589 16.75 10.1775 16.8887 9.35573 17.1663C8.53393 17.4439 7.80123 17.8371 7.15765 18.3461C7.80765 18.8679 8.55157 19.274 9.3894 19.5644C10.2272 19.8548 11.0974 20 12 20ZM12 11.25C12.4974 11.25 12.9134 11.0827 13.2481 10.7481C13.5827 10.4134 13.75 9.99741 13.75 9.49998C13.75 9.00254 13.5827 8.58651 13.2481 8.25188C12.9134 7.91726 12.4974 7.74995 12 7.74995C11.5025 7.74995 11.0865 7.91726 10.7519 8.25188C10.4173 8.58651 10.25 9.00254 10.25 9.49998C10.25 9.99741 10.4173 10.4134 10.7519 10.7481C11.0865 11.0827 11.5025 11.25 12 11.25Z' fill='%23555555'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_mypage.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='account_circle'%3E%3Cmask id='mask0_181_53' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_53)'%3E%3Cpath id='account_circle_2' d='M6.02308 17.2923C6.87308 16.6615 7.79903 16.1635 8.80095 15.7981C9.80287 15.4327 10.8692 15.25 12 15.25C13.1307 15.25 14.1971 15.4327 15.199 15.7981C16.2009 16.1635 17.1269 16.6615 17.9769 17.2923C18.5987 16.609 19.0913 15.8179 19.4548 14.9192C19.8182 14.0205 20 13.0474 20 12C20 9.78331 19.2208 7.89581 17.6625 6.33748C16.1041 4.77914 14.2166 3.99998 12 3.99998C9.78331 3.99998 7.89581 4.77914 6.33748 6.33748C4.77914 7.89581 3.99998 9.78331 3.99998 12C3.99998 13.0474 4.18171 14.0205 4.54518 14.9192C4.90864 15.8179 5.40128 16.609 6.02308 17.2923ZM12.0003 12.75C11.0873 12.75 10.3173 12.4366 9.69038 11.8099C9.06346 11.1831 8.75 10.4133 8.75 9.50028C8.75 8.58726 9.06336 7.81729 9.69008 7.19038C10.3168 6.56346 11.0867 6.25 11.9997 6.25C12.9127 6.25 13.6827 6.56336 14.3096 7.19008C14.9365 7.81681 15.25 8.58668 15.25 9.49968C15.25 10.4127 14.9366 11.1827 14.3099 11.8096C13.6831 12.4365 12.9133 12.75 12.0003 12.75ZM12 21.5C10.6807 21.5 9.44325 21.2519 8.2875 20.7557C7.13173 20.2596 6.12628 19.5839 5.27115 18.7288C4.41603 17.8737 3.7404 16.8682 3.24425 15.7125C2.74808 14.5567 2.5 13.3192 2.5 12C2.5 10.6807 2.74808 9.44325 3.24425 8.2875C3.7404 7.13173 4.41603 6.12628 5.27115 5.27115C6.12628 4.41603 7.13173 3.7404 8.2875 3.24425C9.44325 2.74808 10.6807 2.5 12 2.5C13.3192 2.5 14.5567 2.74808 15.7125 3.24425C16.8682 3.7404 17.8737 4.41603 18.7288 5.27115C19.5839 6.12628 20.2596 7.13173 20.7557 8.2875C21.2519 9.44325 21.5 10.6807 21.5 12C21.5 13.3192 21.2519 14.5567 20.7557 15.7125C20.2596 16.8682 19.5839 17.8737 18.7288 18.7288C17.8737 19.5839 16.8682 20.2596 15.7125 20.7557C14.5567 21.2519 13.3192 21.5 12 21.5ZM12 20C12.9025 20 13.7727 19.8548 14.6105 19.5644C15.4484 19.274 16.1923 18.8679 16.8423 18.3461C16.1923 17.8436 15.458 17.4519 14.6394 17.1711C13.8208 16.8903 12.941 16.75 12 16.75C11.0589 16.75 10.1775 16.8887 9.35573 17.1663C8.53393 17.4439 7.80123 17.8371 7.15765 18.3461C7.80765 18.8679 8.55157 19.274 9.3894 19.5644C10.2272 19.8548 11.0974 20 12 20ZM12 11.25C12.4974 11.25 12.9134 11.0827 13.2481 10.7481C13.5827 10.4134 13.75 9.99741 13.75 9.49998C13.75 9.00254 13.5827 8.58651 13.2481 8.25188C12.9134 7.91726 12.4974 7.74995 12 7.74995C11.5025 7.74995 11.0865 7.91726 10.7519 8.25188C10.4173 8.58651 10.25 9.00254 10.25 9.49998C10.25 9.99741 10.4173 10.4134 10.7519 10.7481C11.0865 11.0827 11.5025 11.25 12 11.25Z' fill='%238dc63f'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_mypage.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='account_circle'%3E%3Cmask id='mask0_181_53' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_53)'%3E%3Cpath id='account_circle_2' d='M6.02308 17.2923C6.87308 16.6615 7.79903 16.1635 8.80095 15.7981C9.80287 15.4327 10.8692 15.25 12 15.25C13.1307 15.25 14.1971 15.4327 15.199 15.7981C16.2009 16.1635 17.1269 16.6615 17.9769 17.2923C18.5987 16.609 19.0913 15.8179 19.4548 14.9192C19.8182 14.0205 20 13.0474 20 12C20 9.78331 19.2208 7.89581 17.6625 6.33748C16.1041 4.77914 14.2166 3.99998 12 3.99998C9.78331 3.99998 7.89581 4.77914 6.33748 6.33748C4.77914 7.89581 3.99998 9.78331 3.99998 12C3.99998 13.0474 4.18171 14.0205 4.54518 14.9192C4.90864 15.8179 5.40128 16.609 6.02308 17.2923ZM12.0003 12.75C11.0873 12.75 10.3173 12.4366 9.69038 11.8099C9.06346 11.1831 8.75 10.4133 8.75 9.50028C8.75 8.58726 9.06336 7.81729 9.69008 7.19038C10.3168 6.56346 11.0867 6.25 11.9997 6.25C12.9127 6.25 13.6827 6.56336 14.3096 7.19008C14.9365 7.81681 15.25 8.58668 15.25 9.49968C15.25 10.4127 14.9366 11.1827 14.3099 11.8096C13.6831 12.4365 12.9133 12.75 12.0003 12.75ZM12 21.5C10.6807 21.5 9.44325 21.2519 8.2875 20.7557C7.13173 20.2596 6.12628 19.5839 5.27115 18.7288C4.41603 17.8737 3.7404 16.8682 3.24425 15.7125C2.74808 14.5567 2.5 13.3192 2.5 12C2.5 10.6807 2.74808 9.44325 3.24425 8.2875C3.7404 7.13173 4.41603 6.12628 5.27115 5.27115C6.12628 4.41603 7.13173 3.7404 8.2875 3.24425C9.44325 2.74808 10.6807 2.5 12 2.5C13.3192 2.5 14.5567 2.74808 15.7125 3.24425C16.8682 3.7404 17.8737 4.41603 18.7288 5.27115C19.5839 6.12628 20.2596 7.13173 20.7557 8.2875C21.2519 9.44325 21.5 10.6807 21.5 12C21.5 13.3192 21.2519 14.5567 20.7557 15.7125C20.2596 16.8682 19.5839 17.8737 18.7288 18.7288C17.8737 19.5839 16.8682 20.2596 15.7125 20.7557C14.5567 21.2519 13.3192 21.5 12 21.5ZM12 20C12.9025 20 13.7727 19.8548 14.6105 19.5644C15.4484 19.274 16.1923 18.8679 16.8423 18.3461C16.1923 17.8436 15.458 17.4519 14.6394 17.1711C13.8208 16.8903 12.941 16.75 12 16.75C11.0589 16.75 10.1775 16.8887 9.35573 17.1663C8.53393 17.4439 7.80123 17.8371 7.15765 18.3461C7.80765 18.8679 8.55157 19.274 9.3894 19.5644C10.2272 19.8548 11.0974 20 12 20ZM12 11.25C12.4974 11.25 12.9134 11.0827 13.2481 10.7481C13.5827 10.4134 13.75 9.99741 13.75 9.49998C13.75 9.00254 13.5827 8.58651 13.2481 8.25188C12.9134 7.91726 12.4974 7.74995 12 7.74995C11.5025 7.74995 11.0865 7.91726 10.7519 8.25188C10.4173 8.58651 10.25 9.00254 10.25 9.49998C10.25 9.99741 10.4173 10.4134 10.7519 10.7481C11.0865 11.0827 11.5025 11.25 12 11.25Z' fill='%23999999'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.ico_shipping {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='local_shipping'%3E%3Cmask id='mask0_181_43' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_43)'%3E%3Cpath id='local_shipping_2' d='M5.8434 19.5576C5.06287 19.5576 4.40017 19.2847 3.8553 18.7387C3.31044 18.1928 3.038 17.5299 3.038 16.75H1.3457V6.3077C1.3457 5.80257 1.5207 5.375 1.8707 5.025C2.2207 4.675 2.64826 4.5 3.15338 4.5H16.7688V8.3077H19.4226L22.6534 12.6346V16.75H20.8457C20.8457 17.5299 20.5725 18.1928 20.0261 18.7387C19.4797 19.2847 18.8163 19.5576 18.0357 19.5576C17.2552 19.5576 16.5925 19.2847 16.0476 18.7387C15.5027 18.1928 15.2303 17.5299 15.2303 16.75H8.65335C8.65335 17.532 8.38016 18.1955 7.83378 18.7403C7.28741 19.2852 6.62395 19.5576 5.8434 19.5576ZM5.84568 18.0577C6.21234 18.0577 6.52196 17.9314 6.77453 17.6788C7.02709 17.4263 7.15338 17.1166 7.15338 16.75C7.15338 16.3833 7.02709 16.0737 6.77453 15.8211C6.52196 15.5685 6.21234 15.4423 5.84568 15.4423C5.47899 15.4423 5.16937 15.5685 4.9168 15.8211C4.66424 16.0737 4.53795 16.3833 4.53795 16.75C4.53795 17.1166 4.66424 17.4263 4.9168 17.6788C5.16937 17.9314 5.47899 18.0577 5.84568 18.0577ZM2.84568 15.25H3.56875C3.78155 14.8795 4.08892 14.5689 4.49085 14.3183C4.89279 14.0676 5.34439 13.9423 5.84568 13.9423C6.33414 13.9423 6.78254 14.066 7.19088 14.3135C7.59921 14.5609 7.90979 14.8731 8.1226 15.25H15.2688V5.99998H3.15338C3.07646 5.99998 3.00594 6.03203 2.94183 6.09613C2.87773 6.16024 2.84568 6.23077 2.84568 6.3077V15.25ZM18.038 18.0577C18.4047 18.0577 18.7143 17.9314 18.9669 17.6788C19.2194 17.4263 19.3457 17.1166 19.3457 16.75C19.3457 16.3833 19.2194 16.0737 18.9669 15.8211C18.7143 15.5685 18.4047 15.4423 18.038 15.4423C17.6713 15.4423 17.3617 15.5685 17.1091 15.8211C16.8566 16.0737 16.7303 16.3833 16.7303 16.75C16.7303 17.1166 16.8566 17.4263 17.1091 17.6788C17.3617 17.9314 17.6713 18.0577 18.038 18.0577ZM16.7688 13.25H21.2495L18.6534 9.80765H16.7688V13.25Z' fill='%23222222'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_shipping.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='local_shipping'%3E%3Cmask id='mask0_181_43' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_43)'%3E%3Cpath id='local_shipping_2' d='M5.8434 19.5576C5.06287 19.5576 4.40017 19.2847 3.8553 18.7387C3.31044 18.1928 3.038 17.5299 3.038 16.75H1.3457V6.3077C1.3457 5.80257 1.5207 5.375 1.8707 5.025C2.2207 4.675 2.64826 4.5 3.15338 4.5H16.7688V8.3077H19.4226L22.6534 12.6346V16.75H20.8457C20.8457 17.5299 20.5725 18.1928 20.0261 18.7387C19.4797 19.2847 18.8163 19.5576 18.0357 19.5576C17.2552 19.5576 16.5925 19.2847 16.0476 18.7387C15.5027 18.1928 15.2303 17.5299 15.2303 16.75H8.65335C8.65335 17.532 8.38016 18.1955 7.83378 18.7403C7.28741 19.2852 6.62395 19.5576 5.8434 19.5576ZM5.84568 18.0577C6.21234 18.0577 6.52196 17.9314 6.77453 17.6788C7.02709 17.4263 7.15338 17.1166 7.15338 16.75C7.15338 16.3833 7.02709 16.0737 6.77453 15.8211C6.52196 15.5685 6.21234 15.4423 5.84568 15.4423C5.47899 15.4423 5.16937 15.5685 4.9168 15.8211C4.66424 16.0737 4.53795 16.3833 4.53795 16.75C4.53795 17.1166 4.66424 17.4263 4.9168 17.6788C5.16937 17.9314 5.47899 18.0577 5.84568 18.0577ZM2.84568 15.25H3.56875C3.78155 14.8795 4.08892 14.5689 4.49085 14.3183C4.89279 14.0676 5.34439 13.9423 5.84568 13.9423C6.33414 13.9423 6.78254 14.066 7.19088 14.3135C7.59921 14.5609 7.90979 14.8731 8.1226 15.25H15.2688V5.99998H3.15338C3.07646 5.99998 3.00594 6.03203 2.94183 6.09613C2.87773 6.16024 2.84568 6.23077 2.84568 6.3077V15.25ZM18.038 18.0577C18.4047 18.0577 18.7143 17.9314 18.9669 17.6788C19.2194 17.4263 19.3457 17.1166 19.3457 16.75C19.3457 16.3833 19.2194 16.0737 18.9669 15.8211C18.7143 15.5685 18.4047 15.4423 18.038 15.4423C17.6713 15.4423 17.3617 15.5685 17.1091 15.8211C16.8566 16.0737 16.7303 16.3833 16.7303 16.75C16.7303 17.1166 16.8566 17.4263 17.1091 17.6788C17.3617 17.9314 17.6713 18.0577 18.038 18.0577ZM16.7688 13.25H21.2495L18.6534 9.80765H16.7688V13.25Z' fill='%23ffffff'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_shipping.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='local_shipping'%3E%3Cmask id='mask0_181_43' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_43)'%3E%3Cpath id='local_shipping_2' d='M5.8434 19.5576C5.06287 19.5576 4.40017 19.2847 3.8553 18.7387C3.31044 18.1928 3.038 17.5299 3.038 16.75H1.3457V6.3077C1.3457 5.80257 1.5207 5.375 1.8707 5.025C2.2207 4.675 2.64826 4.5 3.15338 4.5H16.7688V8.3077H19.4226L22.6534 12.6346V16.75H20.8457C20.8457 17.5299 20.5725 18.1928 20.0261 18.7387C19.4797 19.2847 18.8163 19.5576 18.0357 19.5576C17.2552 19.5576 16.5925 19.2847 16.0476 18.7387C15.5027 18.1928 15.2303 17.5299 15.2303 16.75H8.65335C8.65335 17.532 8.38016 18.1955 7.83378 18.7403C7.28741 19.2852 6.62395 19.5576 5.8434 19.5576ZM5.84568 18.0577C6.21234 18.0577 6.52196 17.9314 6.77453 17.6788C7.02709 17.4263 7.15338 17.1166 7.15338 16.75C7.15338 16.3833 7.02709 16.0737 6.77453 15.8211C6.52196 15.5685 6.21234 15.4423 5.84568 15.4423C5.47899 15.4423 5.16937 15.5685 4.9168 15.8211C4.66424 16.0737 4.53795 16.3833 4.53795 16.75C4.53795 17.1166 4.66424 17.4263 4.9168 17.6788C5.16937 17.9314 5.47899 18.0577 5.84568 18.0577ZM2.84568 15.25H3.56875C3.78155 14.8795 4.08892 14.5689 4.49085 14.3183C4.89279 14.0676 5.34439 13.9423 5.84568 13.9423C6.33414 13.9423 6.78254 14.066 7.19088 14.3135C7.59921 14.5609 7.90979 14.8731 8.1226 15.25H15.2688V5.99998H3.15338C3.07646 5.99998 3.00594 6.03203 2.94183 6.09613C2.87773 6.16024 2.84568 6.23077 2.84568 6.3077V15.25ZM18.038 18.0577C18.4047 18.0577 18.7143 17.9314 18.9669 17.6788C19.2194 17.4263 19.3457 17.1166 19.3457 16.75C19.3457 16.3833 19.2194 16.0737 18.9669 15.8211C18.7143 15.5685 18.4047 15.4423 18.038 15.4423C17.6713 15.4423 17.3617 15.5685 17.1091 15.8211C16.8566 16.0737 16.7303 16.3833 16.7303 16.75C16.7303 17.1166 16.8566 17.4263 17.1091 17.6788C17.3617 17.9314 17.6713 18.0577 18.038 18.0577ZM16.7688 13.25H21.2495L18.6534 9.80765H16.7688V13.25Z' fill='%23F15A29'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_shipping.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='local_shipping'%3E%3Cmask id='mask0_181_43' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_43)'%3E%3Cpath id='local_shipping_2' d='M5.8434 19.5576C5.06287 19.5576 4.40017 19.2847 3.8553 18.7387C3.31044 18.1928 3.038 17.5299 3.038 16.75H1.3457V6.3077C1.3457 5.80257 1.5207 5.375 1.8707 5.025C2.2207 4.675 2.64826 4.5 3.15338 4.5H16.7688V8.3077H19.4226L22.6534 12.6346V16.75H20.8457C20.8457 17.5299 20.5725 18.1928 20.0261 18.7387C19.4797 19.2847 18.8163 19.5576 18.0357 19.5576C17.2552 19.5576 16.5925 19.2847 16.0476 18.7387C15.5027 18.1928 15.2303 17.5299 15.2303 16.75H8.65335C8.65335 17.532 8.38016 18.1955 7.83378 18.7403C7.28741 19.2852 6.62395 19.5576 5.8434 19.5576ZM5.84568 18.0577C6.21234 18.0577 6.52196 17.9314 6.77453 17.6788C7.02709 17.4263 7.15338 17.1166 7.15338 16.75C7.15338 16.3833 7.02709 16.0737 6.77453 15.8211C6.52196 15.5685 6.21234 15.4423 5.84568 15.4423C5.47899 15.4423 5.16937 15.5685 4.9168 15.8211C4.66424 16.0737 4.53795 16.3833 4.53795 16.75C4.53795 17.1166 4.66424 17.4263 4.9168 17.6788C5.16937 17.9314 5.47899 18.0577 5.84568 18.0577ZM2.84568 15.25H3.56875C3.78155 14.8795 4.08892 14.5689 4.49085 14.3183C4.89279 14.0676 5.34439 13.9423 5.84568 13.9423C6.33414 13.9423 6.78254 14.066 7.19088 14.3135C7.59921 14.5609 7.90979 14.8731 8.1226 15.25H15.2688V5.99998H3.15338C3.07646 5.99998 3.00594 6.03203 2.94183 6.09613C2.87773 6.16024 2.84568 6.23077 2.84568 6.3077V15.25ZM18.038 18.0577C18.4047 18.0577 18.7143 17.9314 18.9669 17.6788C19.2194 17.4263 19.3457 17.1166 19.3457 16.75C19.3457 16.3833 19.2194 16.0737 18.9669 15.8211C18.7143 15.5685 18.4047 15.4423 18.038 15.4423C17.6713 15.4423 17.3617 15.5685 17.1091 15.8211C16.8566 16.0737 16.7303 16.3833 16.7303 16.75C16.7303 17.1166 16.8566 17.4263 17.1091 17.6788C17.3617 17.9314 17.6713 18.0577 18.038 18.0577ZM16.7688 13.25H21.2495L18.6534 9.80765H16.7688V13.25Z' fill='%23ececec'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_shipping.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='local_shipping'%3E%3Cmask id='mask0_181_43' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_43)'%3E%3Cpath id='local_shipping_2' d='M5.8434 19.5576C5.06287 19.5576 4.40017 19.2847 3.8553 18.7387C3.31044 18.1928 3.038 17.5299 3.038 16.75H1.3457V6.3077C1.3457 5.80257 1.5207 5.375 1.8707 5.025C2.2207 4.675 2.64826 4.5 3.15338 4.5H16.7688V8.3077H19.4226L22.6534 12.6346V16.75H20.8457C20.8457 17.5299 20.5725 18.1928 20.0261 18.7387C19.4797 19.2847 18.8163 19.5576 18.0357 19.5576C17.2552 19.5576 16.5925 19.2847 16.0476 18.7387C15.5027 18.1928 15.2303 17.5299 15.2303 16.75H8.65335C8.65335 17.532 8.38016 18.1955 7.83378 18.7403C7.28741 19.2852 6.62395 19.5576 5.8434 19.5576ZM5.84568 18.0577C6.21234 18.0577 6.52196 17.9314 6.77453 17.6788C7.02709 17.4263 7.15338 17.1166 7.15338 16.75C7.15338 16.3833 7.02709 16.0737 6.77453 15.8211C6.52196 15.5685 6.21234 15.4423 5.84568 15.4423C5.47899 15.4423 5.16937 15.5685 4.9168 15.8211C4.66424 16.0737 4.53795 16.3833 4.53795 16.75C4.53795 17.1166 4.66424 17.4263 4.9168 17.6788C5.16937 17.9314 5.47899 18.0577 5.84568 18.0577ZM2.84568 15.25H3.56875C3.78155 14.8795 4.08892 14.5689 4.49085 14.3183C4.89279 14.0676 5.34439 13.9423 5.84568 13.9423C6.33414 13.9423 6.78254 14.066 7.19088 14.3135C7.59921 14.5609 7.90979 14.8731 8.1226 15.25H15.2688V5.99998H3.15338C3.07646 5.99998 3.00594 6.03203 2.94183 6.09613C2.87773 6.16024 2.84568 6.23077 2.84568 6.3077V15.25ZM18.038 18.0577C18.4047 18.0577 18.7143 17.9314 18.9669 17.6788C19.2194 17.4263 19.3457 17.1166 19.3457 16.75C19.3457 16.3833 19.2194 16.0737 18.9669 15.8211C18.7143 15.5685 18.4047 15.4423 18.038 15.4423C17.6713 15.4423 17.3617 15.5685 17.1091 15.8211C16.8566 16.0737 16.7303 16.3833 16.7303 16.75C16.7303 17.1166 16.8566 17.4263 17.1091 17.6788C17.3617 17.9314 17.6713 18.0577 18.038 18.0577ZM16.7688 13.25H21.2495L18.6534 9.80765H16.7688V13.25Z' fill='%23555555'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_shipping.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='local_shipping'%3E%3Cmask id='mask0_181_43' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_43)'%3E%3Cpath id='local_shipping_2' d='M5.8434 19.5576C5.06287 19.5576 4.40017 19.2847 3.8553 18.7387C3.31044 18.1928 3.038 17.5299 3.038 16.75H1.3457V6.3077C1.3457 5.80257 1.5207 5.375 1.8707 5.025C2.2207 4.675 2.64826 4.5 3.15338 4.5H16.7688V8.3077H19.4226L22.6534 12.6346V16.75H20.8457C20.8457 17.5299 20.5725 18.1928 20.0261 18.7387C19.4797 19.2847 18.8163 19.5576 18.0357 19.5576C17.2552 19.5576 16.5925 19.2847 16.0476 18.7387C15.5027 18.1928 15.2303 17.5299 15.2303 16.75H8.65335C8.65335 17.532 8.38016 18.1955 7.83378 18.7403C7.28741 19.2852 6.62395 19.5576 5.8434 19.5576ZM5.84568 18.0577C6.21234 18.0577 6.52196 17.9314 6.77453 17.6788C7.02709 17.4263 7.15338 17.1166 7.15338 16.75C7.15338 16.3833 7.02709 16.0737 6.77453 15.8211C6.52196 15.5685 6.21234 15.4423 5.84568 15.4423C5.47899 15.4423 5.16937 15.5685 4.9168 15.8211C4.66424 16.0737 4.53795 16.3833 4.53795 16.75C4.53795 17.1166 4.66424 17.4263 4.9168 17.6788C5.16937 17.9314 5.47899 18.0577 5.84568 18.0577ZM2.84568 15.25H3.56875C3.78155 14.8795 4.08892 14.5689 4.49085 14.3183C4.89279 14.0676 5.34439 13.9423 5.84568 13.9423C6.33414 13.9423 6.78254 14.066 7.19088 14.3135C7.59921 14.5609 7.90979 14.8731 8.1226 15.25H15.2688V5.99998H3.15338C3.07646 5.99998 3.00594 6.03203 2.94183 6.09613C2.87773 6.16024 2.84568 6.23077 2.84568 6.3077V15.25ZM18.038 18.0577C18.4047 18.0577 18.7143 17.9314 18.9669 17.6788C19.2194 17.4263 19.3457 17.1166 19.3457 16.75C19.3457 16.3833 19.2194 16.0737 18.9669 15.8211C18.7143 15.5685 18.4047 15.4423 18.038 15.4423C17.6713 15.4423 17.3617 15.5685 17.1091 15.8211C16.8566 16.0737 16.7303 16.3833 16.7303 16.75C16.7303 17.1166 16.8566 17.4263 17.1091 17.6788C17.3617 17.9314 17.6713 18.0577 18.038 18.0577ZM16.7688 13.25H21.2495L18.6534 9.80765H16.7688V13.25Z' fill='%238dc63f'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_shipping.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='local_shipping'%3E%3Cmask id='mask0_181_43' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect id='Bounding box' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_181_43)'%3E%3Cpath id='local_shipping_2' d='M5.8434 19.5576C5.06287 19.5576 4.40017 19.2847 3.8553 18.7387C3.31044 18.1928 3.038 17.5299 3.038 16.75H1.3457V6.3077C1.3457 5.80257 1.5207 5.375 1.8707 5.025C2.2207 4.675 2.64826 4.5 3.15338 4.5H16.7688V8.3077H19.4226L22.6534 12.6346V16.75H20.8457C20.8457 17.5299 20.5725 18.1928 20.0261 18.7387C19.4797 19.2847 18.8163 19.5576 18.0357 19.5576C17.2552 19.5576 16.5925 19.2847 16.0476 18.7387C15.5027 18.1928 15.2303 17.5299 15.2303 16.75H8.65335C8.65335 17.532 8.38016 18.1955 7.83378 18.7403C7.28741 19.2852 6.62395 19.5576 5.8434 19.5576ZM5.84568 18.0577C6.21234 18.0577 6.52196 17.9314 6.77453 17.6788C7.02709 17.4263 7.15338 17.1166 7.15338 16.75C7.15338 16.3833 7.02709 16.0737 6.77453 15.8211C6.52196 15.5685 6.21234 15.4423 5.84568 15.4423C5.47899 15.4423 5.16937 15.5685 4.9168 15.8211C4.66424 16.0737 4.53795 16.3833 4.53795 16.75C4.53795 17.1166 4.66424 17.4263 4.9168 17.6788C5.16937 17.9314 5.47899 18.0577 5.84568 18.0577ZM2.84568 15.25H3.56875C3.78155 14.8795 4.08892 14.5689 4.49085 14.3183C4.89279 14.0676 5.34439 13.9423 5.84568 13.9423C6.33414 13.9423 6.78254 14.066 7.19088 14.3135C7.59921 14.5609 7.90979 14.8731 8.1226 15.25H15.2688V5.99998H3.15338C3.07646 5.99998 3.00594 6.03203 2.94183 6.09613C2.87773 6.16024 2.84568 6.23077 2.84568 6.3077V15.25ZM18.038 18.0577C18.4047 18.0577 18.7143 17.9314 18.9669 17.6788C19.2194 17.4263 19.3457 17.1166 19.3457 16.75C19.3457 16.3833 19.2194 16.0737 18.9669 15.8211C18.7143 15.5685 18.4047 15.4423 18.038 15.4423C17.6713 15.4423 17.3617 15.5685 17.1091 15.8211C16.8566 16.0737 16.7303 16.3833 16.7303 16.75C16.7303 17.1166 16.8566 17.4263 17.1091 17.6788C17.3617 17.9314 17.6713 18.0577 18.038 18.0577ZM16.7688 13.25H21.2495L18.6534 9.80765H16.7688V13.25Z' fill='%23999999'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.ico_shipping_fill {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_4045' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='15' height='15'%3E%3Crect width='15' height='15' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_4045)'%3E%3Cpath d='M3.75 12.5C3.22917 12.5 2.78646 12.3177 2.42188 11.9531C2.05729 11.5885 1.875 11.1458 1.875 10.625H0.625V3.75C0.625 3.40625 0.747396 3.11198 0.992188 2.86719C1.23698 2.6224 1.53125 2.5 1.875 2.5H10.625V5H12.5L14.375 7.5V10.625H13.125C13.125 11.1458 12.9427 11.5885 12.5781 11.9531C12.2135 12.3177 11.7708 12.5 11.25 12.5C10.7292 12.5 10.2865 12.3177 9.92188 11.9531C9.55729 11.5885 9.375 11.1458 9.375 10.625H5.625C5.625 11.1458 5.44271 11.5885 5.07812 11.9531C4.71354 12.3177 4.27083 12.5 3.75 12.5ZM3.75 11.25C3.92708 11.25 4.07552 11.1901 4.19531 11.0703C4.3151 10.9505 4.375 10.8021 4.375 10.625C4.375 10.4479 4.3151 10.2995 4.19531 10.1797C4.07552 10.0599 3.92708 10 3.75 10C3.57292 10 3.42448 10.0599 3.30469 10.1797C3.1849 10.2995 3.125 10.4479 3.125 10.625C3.125 10.8021 3.1849 10.9505 3.30469 11.0703C3.42448 11.1901 3.57292 11.25 3.75 11.25ZM11.25 11.25C11.4271 11.25 11.5755 11.1901 11.6953 11.0703C11.8151 10.9505 11.875 10.8021 11.875 10.625C11.875 10.4479 11.8151 10.2995 11.6953 10.1797C11.5755 10.0599 11.4271 10 11.25 10C11.0729 10 10.9245 10.0599 10.8047 10.1797C10.6849 10.2995 10.625 10.4479 10.625 10.625C10.625 10.8021 10.6849 10.9505 10.8047 11.0703C10.9245 11.1901 11.0729 11.25 11.25 11.25ZM10.625 8.125H13.2812L11.875 6.25H10.625V8.125Z' fill='%23222222'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_shipping_fill.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_4045' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='15' height='15'%3E%3Crect width='15' height='15' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_4045)'%3E%3Cpath d='M3.75 12.5C3.22917 12.5 2.78646 12.3177 2.42188 11.9531C2.05729 11.5885 1.875 11.1458 1.875 10.625H0.625V3.75C0.625 3.40625 0.747396 3.11198 0.992188 2.86719C1.23698 2.6224 1.53125 2.5 1.875 2.5H10.625V5H12.5L14.375 7.5V10.625H13.125C13.125 11.1458 12.9427 11.5885 12.5781 11.9531C12.2135 12.3177 11.7708 12.5 11.25 12.5C10.7292 12.5 10.2865 12.3177 9.92188 11.9531C9.55729 11.5885 9.375 11.1458 9.375 10.625H5.625C5.625 11.1458 5.44271 11.5885 5.07812 11.9531C4.71354 12.3177 4.27083 12.5 3.75 12.5ZM3.75 11.25C3.92708 11.25 4.07552 11.1901 4.19531 11.0703C4.3151 10.9505 4.375 10.8021 4.375 10.625C4.375 10.4479 4.3151 10.2995 4.19531 10.1797C4.07552 10.0599 3.92708 10 3.75 10C3.57292 10 3.42448 10.0599 3.30469 10.1797C3.1849 10.2995 3.125 10.4479 3.125 10.625C3.125 10.8021 3.1849 10.9505 3.30469 11.0703C3.42448 11.1901 3.57292 11.25 3.75 11.25ZM11.25 11.25C11.4271 11.25 11.5755 11.1901 11.6953 11.0703C11.8151 10.9505 11.875 10.8021 11.875 10.625C11.875 10.4479 11.8151 10.2995 11.6953 10.1797C11.5755 10.0599 11.4271 10 11.25 10C11.0729 10 10.9245 10.0599 10.8047 10.1797C10.6849 10.2995 10.625 10.4479 10.625 10.625C10.625 10.8021 10.6849 10.9505 10.8047 11.0703C10.9245 11.1901 11.0729 11.25 11.25 11.25ZM10.625 8.125H13.2812L11.875 6.25H10.625V8.125Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_shipping_fill.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_4045' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='15' height='15'%3E%3Crect width='15' height='15' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_4045)'%3E%3Cpath d='M3.75 12.5C3.22917 12.5 2.78646 12.3177 2.42188 11.9531C2.05729 11.5885 1.875 11.1458 1.875 10.625H0.625V3.75C0.625 3.40625 0.747396 3.11198 0.992188 2.86719C1.23698 2.6224 1.53125 2.5 1.875 2.5H10.625V5H12.5L14.375 7.5V10.625H13.125C13.125 11.1458 12.9427 11.5885 12.5781 11.9531C12.2135 12.3177 11.7708 12.5 11.25 12.5C10.7292 12.5 10.2865 12.3177 9.92188 11.9531C9.55729 11.5885 9.375 11.1458 9.375 10.625H5.625C5.625 11.1458 5.44271 11.5885 5.07812 11.9531C4.71354 12.3177 4.27083 12.5 3.75 12.5ZM3.75 11.25C3.92708 11.25 4.07552 11.1901 4.19531 11.0703C4.3151 10.9505 4.375 10.8021 4.375 10.625C4.375 10.4479 4.3151 10.2995 4.19531 10.1797C4.07552 10.0599 3.92708 10 3.75 10C3.57292 10 3.42448 10.0599 3.30469 10.1797C3.1849 10.2995 3.125 10.4479 3.125 10.625C3.125 10.8021 3.1849 10.9505 3.30469 11.0703C3.42448 11.1901 3.57292 11.25 3.75 11.25ZM11.25 11.25C11.4271 11.25 11.5755 11.1901 11.6953 11.0703C11.8151 10.9505 11.875 10.8021 11.875 10.625C11.875 10.4479 11.8151 10.2995 11.6953 10.1797C11.5755 10.0599 11.4271 10 11.25 10C11.0729 10 10.9245 10.0599 10.8047 10.1797C10.6849 10.2995 10.625 10.4479 10.625 10.625C10.625 10.8021 10.6849 10.9505 10.8047 11.0703C10.9245 11.1901 11.0729 11.25 11.25 11.25ZM10.625 8.125H13.2812L11.875 6.25H10.625V8.125Z' fill='%23F15A29'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_shipping_fill.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_4045' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='15' height='15'%3E%3Crect width='15' height='15' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_4045)'%3E%3Cpath d='M3.75 12.5C3.22917 12.5 2.78646 12.3177 2.42188 11.9531C2.05729 11.5885 1.875 11.1458 1.875 10.625H0.625V3.75C0.625 3.40625 0.747396 3.11198 0.992188 2.86719C1.23698 2.6224 1.53125 2.5 1.875 2.5H10.625V5H12.5L14.375 7.5V10.625H13.125C13.125 11.1458 12.9427 11.5885 12.5781 11.9531C12.2135 12.3177 11.7708 12.5 11.25 12.5C10.7292 12.5 10.2865 12.3177 9.92188 11.9531C9.55729 11.5885 9.375 11.1458 9.375 10.625H5.625C5.625 11.1458 5.44271 11.5885 5.07812 11.9531C4.71354 12.3177 4.27083 12.5 3.75 12.5ZM3.75 11.25C3.92708 11.25 4.07552 11.1901 4.19531 11.0703C4.3151 10.9505 4.375 10.8021 4.375 10.625C4.375 10.4479 4.3151 10.2995 4.19531 10.1797C4.07552 10.0599 3.92708 10 3.75 10C3.57292 10 3.42448 10.0599 3.30469 10.1797C3.1849 10.2995 3.125 10.4479 3.125 10.625C3.125 10.8021 3.1849 10.9505 3.30469 11.0703C3.42448 11.1901 3.57292 11.25 3.75 11.25ZM11.25 11.25C11.4271 11.25 11.5755 11.1901 11.6953 11.0703C11.8151 10.9505 11.875 10.8021 11.875 10.625C11.875 10.4479 11.8151 10.2995 11.6953 10.1797C11.5755 10.0599 11.4271 10 11.25 10C11.0729 10 10.9245 10.0599 10.8047 10.1797C10.6849 10.2995 10.625 10.4479 10.625 10.625C10.625 10.8021 10.6849 10.9505 10.8047 11.0703C10.9245 11.1901 11.0729 11.25 11.25 11.25ZM10.625 8.125H13.2812L11.875 6.25H10.625V8.125Z' fill='%23ececec'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_shipping_fill.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_4045' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='15' height='15'%3E%3Crect width='15' height='15' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_4045)'%3E%3Cpath d='M3.75 12.5C3.22917 12.5 2.78646 12.3177 2.42188 11.9531C2.05729 11.5885 1.875 11.1458 1.875 10.625H0.625V3.75C0.625 3.40625 0.747396 3.11198 0.992188 2.86719C1.23698 2.6224 1.53125 2.5 1.875 2.5H10.625V5H12.5L14.375 7.5V10.625H13.125C13.125 11.1458 12.9427 11.5885 12.5781 11.9531C12.2135 12.3177 11.7708 12.5 11.25 12.5C10.7292 12.5 10.2865 12.3177 9.92188 11.9531C9.55729 11.5885 9.375 11.1458 9.375 10.625H5.625C5.625 11.1458 5.44271 11.5885 5.07812 11.9531C4.71354 12.3177 4.27083 12.5 3.75 12.5ZM3.75 11.25C3.92708 11.25 4.07552 11.1901 4.19531 11.0703C4.3151 10.9505 4.375 10.8021 4.375 10.625C4.375 10.4479 4.3151 10.2995 4.19531 10.1797C4.07552 10.0599 3.92708 10 3.75 10C3.57292 10 3.42448 10.0599 3.30469 10.1797C3.1849 10.2995 3.125 10.4479 3.125 10.625C3.125 10.8021 3.1849 10.9505 3.30469 11.0703C3.42448 11.1901 3.57292 11.25 3.75 11.25ZM11.25 11.25C11.4271 11.25 11.5755 11.1901 11.6953 11.0703C11.8151 10.9505 11.875 10.8021 11.875 10.625C11.875 10.4479 11.8151 10.2995 11.6953 10.1797C11.5755 10.0599 11.4271 10 11.25 10C11.0729 10 10.9245 10.0599 10.8047 10.1797C10.6849 10.2995 10.625 10.4479 10.625 10.625C10.625 10.8021 10.6849 10.9505 10.8047 11.0703C10.9245 11.1901 11.0729 11.25 11.25 11.25ZM10.625 8.125H13.2812L11.875 6.25H10.625V8.125Z' fill='%23555555'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_shipping_fill.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_4045' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='15' height='15'%3E%3Crect width='15' height='15' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_4045)'%3E%3Cpath d='M3.75 12.5C3.22917 12.5 2.78646 12.3177 2.42188 11.9531C2.05729 11.5885 1.875 11.1458 1.875 10.625H0.625V3.75C0.625 3.40625 0.747396 3.11198 0.992188 2.86719C1.23698 2.6224 1.53125 2.5 1.875 2.5H10.625V5H12.5L14.375 7.5V10.625H13.125C13.125 11.1458 12.9427 11.5885 12.5781 11.9531C12.2135 12.3177 11.7708 12.5 11.25 12.5C10.7292 12.5 10.2865 12.3177 9.92188 11.9531C9.55729 11.5885 9.375 11.1458 9.375 10.625H5.625C5.625 11.1458 5.44271 11.5885 5.07812 11.9531C4.71354 12.3177 4.27083 12.5 3.75 12.5ZM3.75 11.25C3.92708 11.25 4.07552 11.1901 4.19531 11.0703C4.3151 10.9505 4.375 10.8021 4.375 10.625C4.375 10.4479 4.3151 10.2995 4.19531 10.1797C4.07552 10.0599 3.92708 10 3.75 10C3.57292 10 3.42448 10.0599 3.30469 10.1797C3.1849 10.2995 3.125 10.4479 3.125 10.625C3.125 10.8021 3.1849 10.9505 3.30469 11.0703C3.42448 11.1901 3.57292 11.25 3.75 11.25ZM11.25 11.25C11.4271 11.25 11.5755 11.1901 11.6953 11.0703C11.8151 10.9505 11.875 10.8021 11.875 10.625C11.875 10.4479 11.8151 10.2995 11.6953 10.1797C11.5755 10.0599 11.4271 10 11.25 10C11.0729 10 10.9245 10.0599 10.8047 10.1797C10.6849 10.2995 10.625 10.4479 10.625 10.625C10.625 10.8021 10.6849 10.9505 10.8047 11.0703C10.9245 11.1901 11.0729 11.25 11.25 11.25ZM10.625 8.125H13.2812L11.875 6.25H10.625V8.125Z' fill='%238dc63f'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_shipping_fill.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_4045' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='15' height='15'%3E%3Crect width='15' height='15' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_4045)'%3E%3Cpath d='M3.75 12.5C3.22917 12.5 2.78646 12.3177 2.42188 11.9531C2.05729 11.5885 1.875 11.1458 1.875 10.625H0.625V3.75C0.625 3.40625 0.747396 3.11198 0.992188 2.86719C1.23698 2.6224 1.53125 2.5 1.875 2.5H10.625V5H12.5L14.375 7.5V10.625H13.125C13.125 11.1458 12.9427 11.5885 12.5781 11.9531C12.2135 12.3177 11.7708 12.5 11.25 12.5C10.7292 12.5 10.2865 12.3177 9.92188 11.9531C9.55729 11.5885 9.375 11.1458 9.375 10.625H5.625C5.625 11.1458 5.44271 11.5885 5.07812 11.9531C4.71354 12.3177 4.27083 12.5 3.75 12.5ZM3.75 11.25C3.92708 11.25 4.07552 11.1901 4.19531 11.0703C4.3151 10.9505 4.375 10.8021 4.375 10.625C4.375 10.4479 4.3151 10.2995 4.19531 10.1797C4.07552 10.0599 3.92708 10 3.75 10C3.57292 10 3.42448 10.0599 3.30469 10.1797C3.1849 10.2995 3.125 10.4479 3.125 10.625C3.125 10.8021 3.1849 10.9505 3.30469 11.0703C3.42448 11.1901 3.57292 11.25 3.75 11.25ZM11.25 11.25C11.4271 11.25 11.5755 11.1901 11.6953 11.0703C11.8151 10.9505 11.875 10.8021 11.875 10.625C11.875 10.4479 11.8151 10.2995 11.6953 10.1797C11.5755 10.0599 11.4271 10 11.25 10C11.0729 10 10.9245 10.0599 10.8047 10.1797C10.6849 10.2995 10.625 10.4479 10.625 10.625C10.625 10.8021 10.6849 10.9505 10.8047 11.0703C10.9245 11.1901 11.0729 11.25 11.25 11.25ZM10.625 8.125H13.2812L11.875 6.25H10.625V8.125Z' fill='%23999999'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.ico_home {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_469' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_469)'%3E%3Cpath d='M6 19.0004H9.6923V13.1158H14.3077V19.0004H18V10.0004L12 5.46194L6 10.0004V19.0004ZM5 20.0004V9.50039L12 4.21191L19 9.50039V20.0004H13.3077V14.1158H10.6923V20.0004H5Z' fill='%23222222'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_home.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_469' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_469)'%3E%3Cpath d='M6 19.0004H9.6923V13.1158H14.3077V19.0004H18V10.0004L12 5.46194L6 10.0004V19.0004ZM5 20.0004V9.50039L12 4.21191L19 9.50039V20.0004H13.3077V14.1158H10.6923V20.0004H5Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_home.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_469' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_469)'%3E%3Cpath d='M6 19.0004H9.6923V13.1158H14.3077V19.0004H18V10.0004L12 5.46194L6 10.0004V19.0004ZM5 20.0004V9.50039L12 4.21191L19 9.50039V20.0004H13.3077V14.1158H10.6923V20.0004H5Z' fill='%23F15A29'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_home.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_469' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_469)'%3E%3Cpath d='M6 19.0004H9.6923V13.1158H14.3077V19.0004H18V10.0004L12 5.46194L6 10.0004V19.0004ZM5 20.0004V9.50039L12 4.21191L19 9.50039V20.0004H13.3077V14.1158H10.6923V20.0004H5Z' fill='%23ececec'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_home.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_469' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_469)'%3E%3Cpath d='M6 19.0004H9.6923V13.1158H14.3077V19.0004H18V10.0004L12 5.46194L6 10.0004V19.0004ZM5 20.0004V9.50039L12 4.21191L19 9.50039V20.0004H13.3077V14.1158H10.6923V20.0004H5Z' fill='%23555555'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_home.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_469' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_469)'%3E%3Cpath d='M6 19.0004H9.6923V13.1158H14.3077V19.0004H18V10.0004L12 5.46194L6 10.0004V19.0004ZM5 20.0004V9.50039L12 4.21191L19 9.50039V20.0004H13.3077V14.1158H10.6923V20.0004H5Z' fill='%238dc63f'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_home.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_469' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_469)'%3E%3Cpath d='M6 19.0004H9.6923V13.1158H14.3077V19.0004H18V10.0004L12 5.46194L6 10.0004V19.0004ZM5 20.0004V9.50039L12 4.21191L19 9.50039V20.0004H13.3077V14.1158H10.6923V20.0004H5Z' fill='%23999999'/%3E%3C/g%3E%3C/svg%3E");
}

.ico_close {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.343146 10.2427L4.58579 6.00008L0.343146 1.75744L1.75736 0.343227L6 4.58587L10.2426 0.343227L11.6569 1.75744L7.41421 6.00008L11.6569 10.2427L10.2426 11.6569L6 7.41429L1.75736 11.6569L0.343146 10.2427Z' fill='%23222222'/%3E%3C/svg%3E%0A");
}
.ico_close.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.343146 10.2427L4.58579 6.00008L0.343146 1.75744L1.75736 0.343227L6 4.58587L10.2426 0.343227L11.6569 1.75744L7.41421 6.00008L11.6569 10.2427L10.2426 11.6569L6 7.41429L1.75736 11.6569L0.343146 10.2427Z' fill='%23ffffff'/%3E%3C/svg%3E%0A");
}
.ico_close.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.343146 10.2427L4.58579 6.00008L0.343146 1.75744L1.75736 0.343227L6 4.58587L10.2426 0.343227L11.6569 1.75744L7.41421 6.00008L11.6569 10.2427L10.2426 11.6569L6 7.41429L1.75736 11.6569L0.343146 10.2427Z' fill='%23F15A29'/%3E%3C/svg%3E%0A");
}
.ico_close.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.343146 10.2427L4.58579 6.00008L0.343146 1.75744L1.75736 0.343227L6 4.58587L10.2426 0.343227L11.6569 1.75744L7.41421 6.00008L11.6569 10.2427L10.2426 11.6569L6 7.41429L1.75736 11.6569L0.343146 10.2427Z' fill='%23ececec'/%3E%3C/svg%3E%0A");
}
.ico_close.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.343146 10.2427L4.58579 6.00008L0.343146 1.75744L1.75736 0.343227L6 4.58587L10.2426 0.343227L11.6569 1.75744L7.41421 6.00008L11.6569 10.2427L10.2426 11.6569L6 7.41429L1.75736 11.6569L0.343146 10.2427Z' fill='%23555555'/%3E%3C/svg%3E%0A");
}
.ico_close.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.343146 10.2427L4.58579 6.00008L0.343146 1.75744L1.75736 0.343227L6 4.58587L10.2426 0.343227L11.6569 1.75744L7.41421 6.00008L11.6569 10.2427L10.2426 11.6569L6 7.41429L1.75736 11.6569L0.343146 10.2427Z' fill='%238dc63f'/%3E%3C/svg%3E%0A");
}
.ico_close.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.343146 10.2427L4.58579 6.00008L0.343146 1.75744L1.75736 0.343227L6 4.58587L10.2426 0.343227L11.6569 1.75744L7.41421 6.00008L11.6569 10.2427L10.2426 11.6569L6 7.41429L1.75736 11.6569L0.343146 10.2427Z' fill='%23999999'/%3E%3C/svg%3E%0A");
}

.ico_backtotop {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.00008 16.0002H7.00008V4.00016L1.50008 9.50016L0.0800781 8.08016L8.00008 0.160156L15.9201 8.08016L14.5001 9.50016L9.00008 4.00016V16.0002Z' fill='%23222222'/%3E%3C/svg%3E%0A");
}
.ico_backtotop.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.00008 16.0002H7.00008V4.00016L1.50008 9.50016L0.0800781 8.08016L8.00008 0.160156L15.9201 8.08016L14.5001 9.50016L9.00008 4.00016V16.0002Z' fill='%23ffffff'/%3E%3C/svg%3E%0A");
}
.ico_backtotop.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.00008 16.0002H7.00008V4.00016L1.50008 9.50016L0.0800781 8.08016L8.00008 0.160156L15.9201 8.08016L14.5001 9.50016L9.00008 4.00016V16.0002Z' fill='%23F15A29'/%3E%3C/svg%3E%0A");
}
.ico_backtotop.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.00008 16.0002H7.00008V4.00016L1.50008 9.50016L0.0800781 8.08016L8.00008 0.160156L15.9201 8.08016L14.5001 9.50016L9.00008 4.00016V16.0002Z' fill='%23ececec'/%3E%3C/svg%3E%0A");
}
.ico_backtotop.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.00008 16.0002H7.00008V4.00016L1.50008 9.50016L0.0800781 8.08016L8.00008 0.160156L15.9201 8.08016L14.5001 9.50016L9.00008 4.00016V16.0002Z' fill='%23555555'/%3E%3C/svg%3E%0A");
}
.ico_backtotop.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.00008 16.0002H7.00008V4.00016L1.50008 9.50016L0.0800781 8.08016L8.00008 0.160156L15.9201 8.08016L14.5001 9.50016L9.00008 4.00016V16.0002Z' fill='%238dc63f'/%3E%3C/svg%3E%0A");
}
.ico_backtotop.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.00008 16.0002H7.00008V4.00016L1.50008 9.50016L0.0800781 8.08016L8.00008 0.160156L15.9201 8.08016L14.5001 9.50016L9.00008 4.00016V16.0002Z' fill='%23999999'/%3E%3C/svg%3E%0A");
}

.ico_back {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_442' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_442)'%3E%3Cpath d='M15.9999 21.1004L6.8999 12.0004L15.9999 2.90039L16.8499 3.75039L8.5999 12.0004L16.8499 20.2504L15.9999 21.1004Z' fill='%23222222'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_back.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_442' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_442)'%3E%3Cpath d='M15.9999 21.1004L6.8999 12.0004L15.9999 2.90039L16.8499 3.75039L8.5999 12.0004L16.8499 20.2504L15.9999 21.1004Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_back.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_442' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_442)'%3E%3Cpath d='M15.9999 21.1004L6.8999 12.0004L15.9999 2.90039L16.8499 3.75039L8.5999 12.0004L16.8499 20.2504L15.9999 21.1004Z' fill='%23F15A29'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_back.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_442' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_442)'%3E%3Cpath d='M15.9999 21.1004L6.8999 12.0004L15.9999 2.90039L16.8499 3.75039L8.5999 12.0004L16.8499 20.2504L15.9999 21.1004Z' fill='%23ececec'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_back.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_442' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_442)'%3E%3Cpath d='M15.9999 21.1004L6.8999 12.0004L15.9999 2.90039L16.8499 3.75039L8.5999 12.0004L16.8499 20.2504L15.9999 21.1004Z' fill='%23555555'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_back.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_442' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_442)'%3E%3Cpath d='M15.9999 21.1004L6.8999 12.0004L15.9999 2.90039L16.8499 3.75039L8.5999 12.0004L16.8499 20.2504L15.9999 21.1004Z' fill='%238dc63f'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_back.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_442' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_442)'%3E%3Cpath d='M15.9999 21.1004L6.8999 12.0004L15.9999 2.90039L16.8499 3.75039L8.5999 12.0004L16.8499 20.2504L15.9999 21.1004Z' fill='%23999999'/%3E%3C/g%3E%3C/svg%3E");
}

.ico_menu {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_499' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_499)'%3E%3Cpath d='M3.5 17.2689V16.2689H20.5V17.2689H3.5ZM3.5 12.4997V11.4997H20.5V12.4997H3.5ZM3.5 7.73047V6.73047H20.5V7.73047H3.5Z' fill='%23222222'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_menu.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_499' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_499)'%3E%3Cpath d='M3.5 17.2689V16.2689H20.5V17.2689H3.5ZM3.5 12.4997V11.4997H20.5V12.4997H3.5ZM3.5 7.73047V6.73047H20.5V7.73047H3.5Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_menu.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_499' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_499)'%3E%3Cpath d='M3.5 17.2689V16.2689H20.5V17.2689H3.5ZM3.5 12.4997V11.4997H20.5V12.4997H3.5ZM3.5 7.73047V6.73047H20.5V7.73047H3.5Z' fill='%23F15A29'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_menu.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_499' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_499)'%3E%3Cpath d='M3.5 17.2689V16.2689H20.5V17.2689H3.5ZM3.5 12.4997V11.4997H20.5V12.4997H3.5ZM3.5 7.73047V6.73047H20.5V7.73047H3.5Z' fill='%23ececec'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_menu.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_499' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_499)'%3E%3Cpath d='M3.5 17.2689V16.2689H20.5V17.2689H3.5ZM3.5 12.4997V11.4997H20.5V12.4997H3.5ZM3.5 7.73047V6.73047H20.5V7.73047H3.5Z' fill='%23555555'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_menu.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_499' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_499)'%3E%3Cpath d='M3.5 17.2689V16.2689H20.5V17.2689H3.5ZM3.5 12.4997V11.4997H20.5V12.4997H3.5ZM3.5 7.73047V6.73047H20.5V7.73047H3.5Z' fill='%238dc63f'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_menu.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_119_499' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_119_499)'%3E%3Cpath d='M3.5 17.2689V16.2689H20.5V17.2689H3.5ZM3.5 12.4997V11.4997H20.5V12.4997H3.5ZM3.5 7.73047V6.73047H20.5V7.73047H3.5Z' fill='%23999999'/%3E%3C/g%3E%3C/svg%3E");
}

.ico_star {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17' fill='none'%3E%3Cpath d='M3.34687 16.625L4.76875 10.4781L0 6.34375L6.3 5.79688L8.75 0L11.2 5.79688L17.5 6.34375L12.7312 10.4781L14.1531 16.625L8.75 13.3656L3.34687 16.625Z' fill='%23222222'/%3E%3C/svg%3E");
}
.ico_star.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17' fill='none'%3E%3Cpath d='M3.34687 16.625L4.76875 10.4781L0 6.34375L6.3 5.79688L8.75 0L11.2 5.79688L17.5 6.34375L12.7312 10.4781L14.1531 16.625L8.75 13.3656L3.34687 16.625Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.ico_star.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17' fill='none'%3E%3Cpath d='M3.34687 16.625L4.76875 10.4781L0 6.34375L6.3 5.79688L8.75 0L11.2 5.79688L17.5 6.34375L12.7312 10.4781L14.1531 16.625L8.75 13.3656L3.34687 16.625Z' fill='%23F15A29'/%3E%3C/svg%3E");
}
.ico_star.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17' fill='none'%3E%3Cpath d='M3.34687 16.625L4.76875 10.4781L0 6.34375L6.3 5.79688L8.75 0L11.2 5.79688L17.5 6.34375L12.7312 10.4781L14.1531 16.625L8.75 13.3656L3.34687 16.625Z' fill='%23ececec'/%3E%3C/svg%3E");
}
.ico_star.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17' fill='none'%3E%3Cpath d='M3.34687 16.625L4.76875 10.4781L0 6.34375L6.3 5.79688L8.75 0L11.2 5.79688L17.5 6.34375L12.7312 10.4781L14.1531 16.625L8.75 13.3656L3.34687 16.625Z' fill='%23555555'/%3E%3C/svg%3E");
}
.ico_star.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17' fill='none'%3E%3Cpath d='M3.34687 16.625L4.76875 10.4781L0 6.34375L6.3 5.79688L8.75 0L11.2 5.79688L17.5 6.34375L12.7312 10.4781L14.1531 16.625L8.75 13.3656L3.34687 16.625Z' fill='%238dc63f'/%3E%3C/svg%3E");
}
.ico_star.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17' fill='none'%3E%3Cpath d='M3.34687 16.625L4.76875 10.4781L0 6.34375L6.3 5.79688L8.75 0L11.2 5.79688L17.5 6.34375L12.7312 10.4781L14.1531 16.625L8.75 13.3656L3.34687 16.625Z' fill='%23999999'/%3E%3C/svg%3E");
}

.ico_map {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_487_1527' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_487_1527)'%3E%3Cpath d='M12 12C12.55 12 13.0208 11.8042 13.4125 11.4125C13.8042 11.0208 14 10.55 14 10C14 9.45 13.8042 8.97917 13.4125 8.5875C13.0208 8.19583 12.55 8 12 8C11.45 8 10.9792 8.19583 10.5875 8.5875C10.1958 8.97917 10 9.45 10 10C10 10.55 10.1958 11.0208 10.5875 11.4125C10.9792 11.8042 11.45 12 12 12ZM12 22C9.31667 19.7167 7.3125 17.5958 5.9875 15.6375C4.6625 13.6792 4 11.8667 4 10.2C4 7.7 4.80417 5.70833 6.4125 4.225C8.02083 2.74167 9.88333 2 12 2C14.1167 2 15.9792 2.74167 17.5875 4.225C19.1958 5.70833 20 7.7 20 10.2C20 11.8667 19.3375 13.6792 18.0125 15.6375C16.6875 17.5958 14.6833 19.7167 12 22Z' fill='%23222222'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_map.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_487_1527' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_487_1527)'%3E%3Cpath d='M12 12C12.55 12 13.0208 11.8042 13.4125 11.4125C13.8042 11.0208 14 10.55 14 10C14 9.45 13.8042 8.97917 13.4125 8.5875C13.0208 8.19583 12.55 8 12 8C11.45 8 10.9792 8.19583 10.5875 8.5875C10.1958 8.97917 10 9.45 10 10C10 10.55 10.1958 11.0208 10.5875 11.4125C10.9792 11.8042 11.45 12 12 12ZM12 22C9.31667 19.7167 7.3125 17.5958 5.9875 15.6375C4.6625 13.6792 4 11.8667 4 10.2C4 7.7 4.80417 5.70833 6.4125 4.225C8.02083 2.74167 9.88333 2 12 2C14.1167 2 15.9792 2.74167 17.5875 4.225C19.1958 5.70833 20 7.7 20 10.2C20 11.8667 19.3375 13.6792 18.0125 15.6375C16.6875 17.5958 14.6833 19.7167 12 22Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_map.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_487_1527' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_487_1527)'%3E%3Cpath d='M12 12C12.55 12 13.0208 11.8042 13.4125 11.4125C13.8042 11.0208 14 10.55 14 10C14 9.45 13.8042 8.97917 13.4125 8.5875C13.0208 8.19583 12.55 8 12 8C11.45 8 10.9792 8.19583 10.5875 8.5875C10.1958 8.97917 10 9.45 10 10C10 10.55 10.1958 11.0208 10.5875 11.4125C10.9792 11.8042 11.45 12 12 12ZM12 22C9.31667 19.7167 7.3125 17.5958 5.9875 15.6375C4.6625 13.6792 4 11.8667 4 10.2C4 7.7 4.80417 5.70833 6.4125 4.225C8.02083 2.74167 9.88333 2 12 2C14.1167 2 15.9792 2.74167 17.5875 4.225C19.1958 5.70833 20 7.7 20 10.2C20 11.8667 19.3375 13.6792 18.0125 15.6375C16.6875 17.5958 14.6833 19.7167 12 22Z' fill='%23F15A29'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_map.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_487_1527' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_487_1527)'%3E%3Cpath d='M12 12C12.55 12 13.0208 11.8042 13.4125 11.4125C13.8042 11.0208 14 10.55 14 10C14 9.45 13.8042 8.97917 13.4125 8.5875C13.0208 8.19583 12.55 8 12 8C11.45 8 10.9792 8.19583 10.5875 8.5875C10.1958 8.97917 10 9.45 10 10C10 10.55 10.1958 11.0208 10.5875 11.4125C10.9792 11.8042 11.45 12 12 12ZM12 22C9.31667 19.7167 7.3125 17.5958 5.9875 15.6375C4.6625 13.6792 4 11.8667 4 10.2C4 7.7 4.80417 5.70833 6.4125 4.225C8.02083 2.74167 9.88333 2 12 2C14.1167 2 15.9792 2.74167 17.5875 4.225C19.1958 5.70833 20 7.7 20 10.2C20 11.8667 19.3375 13.6792 18.0125 15.6375C16.6875 17.5958 14.6833 19.7167 12 22Z' fill='%23ececec'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_map.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_487_1527' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_487_1527)'%3E%3Cpath d='M12 12C12.55 12 13.0208 11.8042 13.4125 11.4125C13.8042 11.0208 14 10.55 14 10C14 9.45 13.8042 8.97917 13.4125 8.5875C13.0208 8.19583 12.55 8 12 8C11.45 8 10.9792 8.19583 10.5875 8.5875C10.1958 8.97917 10 9.45 10 10C10 10.55 10.1958 11.0208 10.5875 11.4125C10.9792 11.8042 11.45 12 12 12ZM12 22C9.31667 19.7167 7.3125 17.5958 5.9875 15.6375C4.6625 13.6792 4 11.8667 4 10.2C4 7.7 4.80417 5.70833 6.4125 4.225C8.02083 2.74167 9.88333 2 12 2C14.1167 2 15.9792 2.74167 17.5875 4.225C19.1958 5.70833 20 7.7 20 10.2C20 11.8667 19.3375 13.6792 18.0125 15.6375C16.6875 17.5958 14.6833 19.7167 12 22Z' fill='%23555555'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_map.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_487_1527' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_487_1527)'%3E%3Cpath d='M12 12C12.55 12 13.0208 11.8042 13.4125 11.4125C13.8042 11.0208 14 10.55 14 10C14 9.45 13.8042 8.97917 13.4125 8.5875C13.0208 8.19583 12.55 8 12 8C11.45 8 10.9792 8.19583 10.5875 8.5875C10.1958 8.97917 10 9.45 10 10C10 10.55 10.1958 11.0208 10.5875 11.4125C10.9792 11.8042 11.45 12 12 12ZM12 22C9.31667 19.7167 7.3125 17.5958 5.9875 15.6375C4.6625 13.6792 4 11.8667 4 10.2C4 7.7 4.80417 5.70833 6.4125 4.225C8.02083 2.74167 9.88333 2 12 2C14.1167 2 15.9792 2.74167 17.5875 4.225C19.1958 5.70833 20 7.7 20 10.2C20 11.8667 19.3375 13.6792 18.0125 15.6375C16.6875 17.5958 14.6833 19.7167 12 22Z' fill='%238dc63f'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_map.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_487_1527' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_487_1527)'%3E%3Cpath d='M12 12C12.55 12 13.0208 11.8042 13.4125 11.4125C13.8042 11.0208 14 10.55 14 10C14 9.45 13.8042 8.97917 13.4125 8.5875C13.0208 8.19583 12.55 8 12 8C11.45 8 10.9792 8.19583 10.5875 8.5875C10.1958 8.97917 10 9.45 10 10C10 10.55 10.1958 11.0208 10.5875 11.4125C10.9792 11.8042 11.45 12 12 12ZM12 22C9.31667 19.7167 7.3125 17.5958 5.9875 15.6375C4.6625 13.6792 4 11.8667 4 10.2C4 7.7 4.80417 5.70833 6.4125 4.225C8.02083 2.74167 9.88333 2 12 2C14.1167 2 15.9792 2.74167 17.5875 4.225C19.1958 5.70833 20 7.7 20 10.2C20 11.8667 19.3375 13.6792 18.0125 15.6375C16.6875 17.5958 14.6833 19.7167 12 22Z' fill='%23999999'/%3E%3C/g%3E%3C/svg%3E");
}

.ico_del {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_698_2042' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_698_2042)'%3E%3Cpath d='M6.40008 18.3068L5.69238 17.5991L11.2924 11.9991L5.69238 6.39911L6.40008 5.69141L12.0001 11.2914L17.6001 5.69141L18.3078 6.39911L12.7078 11.9991L18.3078 17.5991L17.6001 18.3068L12.0001 12.7068L6.40008 18.3068Z' fill='%23222222'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_del.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_698_2042' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_698_2042)'%3E%3Cpath d='M6.40008 18.3068L5.69238 17.5991L11.2924 11.9991L5.69238 6.39911L6.40008 5.69141L12.0001 11.2914L17.6001 5.69141L18.3078 6.39911L12.7078 11.9991L18.3078 17.5991L17.6001 18.3068L12.0001 12.7068L6.40008 18.3068Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_del.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_698_2042' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_698_2042)'%3E%3Cpath d='M6.40008 18.3068L5.69238 17.5991L11.2924 11.9991L5.69238 6.39911L6.40008 5.69141L12.0001 11.2914L17.6001 5.69141L18.3078 6.39911L12.7078 11.9991L18.3078 17.5991L17.6001 18.3068L12.0001 12.7068L6.40008 18.3068Z' fill='%23F15A29'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_del.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_698_2042' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_698_2042)'%3E%3Cpath d='M6.40008 18.3068L5.69238 17.5991L11.2924 11.9991L5.69238 6.39911L6.40008 5.69141L12.0001 11.2914L17.6001 5.69141L18.3078 6.39911L12.7078 11.9991L18.3078 17.5991L17.6001 18.3068L12.0001 12.7068L6.40008 18.3068Z' fill='%23ececec'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_del.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_698_2042' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_698_2042)'%3E%3Cpath d='M6.40008 18.3068L5.69238 17.5991L11.2924 11.9991L5.69238 6.39911L6.40008 5.69141L12.0001 11.2914L17.6001 5.69141L18.3078 6.39911L12.7078 11.9991L18.3078 17.5991L17.6001 18.3068L12.0001 12.7068L6.40008 18.3068Z' fill='%23555555'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_del.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_698_2042' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_698_2042)'%3E%3Cpath d='M6.40008 18.3068L5.69238 17.5991L11.2924 11.9991L5.69238 6.39911L6.40008 5.69141L12.0001 11.2914L17.6001 5.69141L18.3078 6.39911L12.7078 11.9991L18.3078 17.5991L17.6001 18.3068L12.0001 12.7068L6.40008 18.3068Z' fill='%238dc63f'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_del.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_698_2042' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_698_2042)'%3E%3Cpath d='M6.40008 18.3068L5.69238 17.5991L11.2924 11.9991L5.69238 6.39911L6.40008 5.69141L12.0001 11.2914L17.6001 5.69141L18.3078 6.39911L12.7078 11.9991L18.3078 17.5991L17.6001 18.3068L12.0001 12.7068L6.40008 18.3068Z' fill='%23999999'/%3E%3C/g%3E%3C/svg%3E");
}

.ico_setting {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.13474 18L6.77321 15.1077C6.45398 15.0115 6.10879 14.8603 5.73764 14.6538C5.36649 14.4474 5.05078 14.2263 4.79051 13.9904L2.12321 15.125L0.257812 11.875L2.56359 10.1365C2.5341 9.95576 2.50975 9.76954 2.49051 9.57788C2.47128 9.38621 2.46166 9.19999 2.46166 9.01923C2.46166 8.85128 2.47128 8.67467 2.49051 8.48942C2.50975 8.30417 2.5341 8.09553 2.56359 7.86348L0.257812 6.125L2.12321 2.91345L4.77129 4.02885C5.07 3.78013 5.39308 3.55578 5.74051 3.35578C6.08795 3.15578 6.42577 3.00128 6.75399 2.8923L7.13474 0H10.8655L11.2271 2.91153C11.6104 3.04614 11.9492 3.20063 12.2434 3.375C12.5376 3.54935 12.8405 3.7673 13.1521 4.02885L15.8771 2.91345L17.7425 6.125L15.3598 7.92115C15.4149 8.12757 15.4457 8.31699 15.4521 8.48942C15.4585 8.66186 15.4617 8.83205 15.4617 9C15.4617 9.15513 15.4553 9.31892 15.4425 9.49135C15.4296 9.66378 15.4001 9.87243 15.354 10.1173L17.6982 11.875L15.8328 15.125L13.1521 13.9712C12.8405 14.2327 12.5271 14.4571 12.2117 14.6442C11.8963 14.8314 11.5681 14.9795 11.2271 15.0885L10.8655 18H7.13474ZM8.97321 11.5C9.67065 11.5 10.2617 11.2577 10.7463 10.7731C11.2309 10.2885 11.4732 9.69743 11.4732 9C11.4732 8.30257 11.2309 7.71154 10.7463 7.22693C10.2617 6.74231 9.67065 6.5 8.97321 6.5C8.27193 6.5 7.67994 6.74231 7.19724 7.22693C6.71455 7.71154 6.47321 8.30257 6.47321 9C6.47321 9.69743 6.71455 10.2885 7.19724 10.7731C7.67994 11.2577 8.27193 11.5 8.97321 11.5ZM8.97321 10.5C8.55655 10.5 8.20238 10.3542 7.91071 10.0625C7.61905 9.77083 7.47321 9.41667 7.47321 9C7.47321 8.58333 7.61905 8.22917 7.91071 7.9375C8.20238 7.64583 8.55655 7.5 8.97321 7.5C9.38988 7.5 9.74405 7.64583 10.0357 7.9375C10.3274 8.22917 10.4732 8.58333 10.4732 9C10.4732 9.41667 10.3274 9.77083 10.0357 10.0625C9.74405 10.3542 9.38988 10.5 8.97321 10.5ZM8.00014 17H9.95591L10.3251 14.2923C10.829 14.159 11.2825 13.976 11.6857 13.7433C12.0889 13.5106 12.4995 13.1917 12.9174 12.7866L15.4117 13.85L16.4059 12.15L14.2174 10.5058C14.3008 10.2212 14.3559 9.9593 14.3828 9.7202C14.4098 9.4811 14.4232 9.24103 14.4232 9C14.4232 8.74615 14.4098 8.50608 14.3828 8.2798C14.3559 8.05352 14.3008 7.80448 14.2174 7.5327L16.4444 5.85L15.4501 4.15L12.8982 5.21922C12.5956 4.88717 12.1979 4.57596 11.7049 4.28557C11.212 3.99519 10.7456 3.80257 10.3059 3.7077L10.0001 1H8.00591L7.69436 3.68845C7.19051 3.79615 6.72737 3.96955 6.30494 4.20865C5.8825 4.44775 5.46231 4.77627 5.04436 5.19422L2.55014 4.15L1.55591 5.85L3.72514 7.46922C3.6418 7.69359 3.58347 7.93718 3.55014 8.2C3.5168 8.46282 3.50014 8.73589 3.50014 9.01923C3.50014 9.27308 3.5168 9.525 3.55014 9.775C3.58347 10.025 3.6354 10.2686 3.70591 10.5058L1.55591 12.15L2.55014 13.85L5.02514 12.8C5.41744 13.1961 5.82481 13.5138 6.24726 13.7529C6.6697 13.992 7.14565 14.1782 7.67514 14.3116L8.00014 17Z' fill='%23222222'/%3E%3C/svg%3E%0A");
}
.ico_setting.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.13474 18L6.77321 15.1077C6.45398 15.0115 6.10879 14.8603 5.73764 14.6538C5.36649 14.4474 5.05078 14.2263 4.79051 13.9904L2.12321 15.125L0.257812 11.875L2.56359 10.1365C2.5341 9.95576 2.50975 9.76954 2.49051 9.57788C2.47128 9.38621 2.46166 9.19999 2.46166 9.01923C2.46166 8.85128 2.47128 8.67467 2.49051 8.48942C2.50975 8.30417 2.5341 8.09553 2.56359 7.86348L0.257812 6.125L2.12321 2.91345L4.77129 4.02885C5.07 3.78013 5.39308 3.55578 5.74051 3.35578C6.08795 3.15578 6.42577 3.00128 6.75399 2.8923L7.13474 0H10.8655L11.2271 2.91153C11.6104 3.04614 11.9492 3.20063 12.2434 3.375C12.5376 3.54935 12.8405 3.7673 13.1521 4.02885L15.8771 2.91345L17.7425 6.125L15.3598 7.92115C15.4149 8.12757 15.4457 8.31699 15.4521 8.48942C15.4585 8.66186 15.4617 8.83205 15.4617 9C15.4617 9.15513 15.4553 9.31892 15.4425 9.49135C15.4296 9.66378 15.4001 9.87243 15.354 10.1173L17.6982 11.875L15.8328 15.125L13.1521 13.9712C12.8405 14.2327 12.5271 14.4571 12.2117 14.6442C11.8963 14.8314 11.5681 14.9795 11.2271 15.0885L10.8655 18H7.13474ZM8.97321 11.5C9.67065 11.5 10.2617 11.2577 10.7463 10.7731C11.2309 10.2885 11.4732 9.69743 11.4732 9C11.4732 8.30257 11.2309 7.71154 10.7463 7.22693C10.2617 6.74231 9.67065 6.5 8.97321 6.5C8.27193 6.5 7.67994 6.74231 7.19724 7.22693C6.71455 7.71154 6.47321 8.30257 6.47321 9C6.47321 9.69743 6.71455 10.2885 7.19724 10.7731C7.67994 11.2577 8.27193 11.5 8.97321 11.5ZM8.97321 10.5C8.55655 10.5 8.20238 10.3542 7.91071 10.0625C7.61905 9.77083 7.47321 9.41667 7.47321 9C7.47321 8.58333 7.61905 8.22917 7.91071 7.9375C8.20238 7.64583 8.55655 7.5 8.97321 7.5C9.38988 7.5 9.74405 7.64583 10.0357 7.9375C10.3274 8.22917 10.4732 8.58333 10.4732 9C10.4732 9.41667 10.3274 9.77083 10.0357 10.0625C9.74405 10.3542 9.38988 10.5 8.97321 10.5ZM8.00014 17H9.95591L10.3251 14.2923C10.829 14.159 11.2825 13.976 11.6857 13.7433C12.0889 13.5106 12.4995 13.1917 12.9174 12.7866L15.4117 13.85L16.4059 12.15L14.2174 10.5058C14.3008 10.2212 14.3559 9.9593 14.3828 9.7202C14.4098 9.4811 14.4232 9.24103 14.4232 9C14.4232 8.74615 14.4098 8.50608 14.3828 8.2798C14.3559 8.05352 14.3008 7.80448 14.2174 7.5327L16.4444 5.85L15.4501 4.15L12.8982 5.21922C12.5956 4.88717 12.1979 4.57596 11.7049 4.28557C11.212 3.99519 10.7456 3.80257 10.3059 3.7077L10.0001 1H8.00591L7.69436 3.68845C7.19051 3.79615 6.72737 3.96955 6.30494 4.20865C5.8825 4.44775 5.46231 4.77627 5.04436 5.19422L2.55014 4.15L1.55591 5.85L3.72514 7.46922C3.6418 7.69359 3.58347 7.93718 3.55014 8.2C3.5168 8.46282 3.50014 8.73589 3.50014 9.01923C3.50014 9.27308 3.5168 9.525 3.55014 9.775C3.58347 10.025 3.6354 10.2686 3.70591 10.5058L1.55591 12.15L2.55014 13.85L5.02514 12.8C5.41744 13.1961 5.82481 13.5138 6.24726 13.7529C6.6697 13.992 7.14565 14.1782 7.67514 14.3116L8.00014 17Z' fill='%23ffffff'/%3E%3C/svg%3E%0A");
}
.ico_setting.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.13474 18L6.77321 15.1077C6.45398 15.0115 6.10879 14.8603 5.73764 14.6538C5.36649 14.4474 5.05078 14.2263 4.79051 13.9904L2.12321 15.125L0.257812 11.875L2.56359 10.1365C2.5341 9.95576 2.50975 9.76954 2.49051 9.57788C2.47128 9.38621 2.46166 9.19999 2.46166 9.01923C2.46166 8.85128 2.47128 8.67467 2.49051 8.48942C2.50975 8.30417 2.5341 8.09553 2.56359 7.86348L0.257812 6.125L2.12321 2.91345L4.77129 4.02885C5.07 3.78013 5.39308 3.55578 5.74051 3.35578C6.08795 3.15578 6.42577 3.00128 6.75399 2.8923L7.13474 0H10.8655L11.2271 2.91153C11.6104 3.04614 11.9492 3.20063 12.2434 3.375C12.5376 3.54935 12.8405 3.7673 13.1521 4.02885L15.8771 2.91345L17.7425 6.125L15.3598 7.92115C15.4149 8.12757 15.4457 8.31699 15.4521 8.48942C15.4585 8.66186 15.4617 8.83205 15.4617 9C15.4617 9.15513 15.4553 9.31892 15.4425 9.49135C15.4296 9.66378 15.4001 9.87243 15.354 10.1173L17.6982 11.875L15.8328 15.125L13.1521 13.9712C12.8405 14.2327 12.5271 14.4571 12.2117 14.6442C11.8963 14.8314 11.5681 14.9795 11.2271 15.0885L10.8655 18H7.13474ZM8.97321 11.5C9.67065 11.5 10.2617 11.2577 10.7463 10.7731C11.2309 10.2885 11.4732 9.69743 11.4732 9C11.4732 8.30257 11.2309 7.71154 10.7463 7.22693C10.2617 6.74231 9.67065 6.5 8.97321 6.5C8.27193 6.5 7.67994 6.74231 7.19724 7.22693C6.71455 7.71154 6.47321 8.30257 6.47321 9C6.47321 9.69743 6.71455 10.2885 7.19724 10.7731C7.67994 11.2577 8.27193 11.5 8.97321 11.5ZM8.97321 10.5C8.55655 10.5 8.20238 10.3542 7.91071 10.0625C7.61905 9.77083 7.47321 9.41667 7.47321 9C7.47321 8.58333 7.61905 8.22917 7.91071 7.9375C8.20238 7.64583 8.55655 7.5 8.97321 7.5C9.38988 7.5 9.74405 7.64583 10.0357 7.9375C10.3274 8.22917 10.4732 8.58333 10.4732 9C10.4732 9.41667 10.3274 9.77083 10.0357 10.0625C9.74405 10.3542 9.38988 10.5 8.97321 10.5ZM8.00014 17H9.95591L10.3251 14.2923C10.829 14.159 11.2825 13.976 11.6857 13.7433C12.0889 13.5106 12.4995 13.1917 12.9174 12.7866L15.4117 13.85L16.4059 12.15L14.2174 10.5058C14.3008 10.2212 14.3559 9.9593 14.3828 9.7202C14.4098 9.4811 14.4232 9.24103 14.4232 9C14.4232 8.74615 14.4098 8.50608 14.3828 8.2798C14.3559 8.05352 14.3008 7.80448 14.2174 7.5327L16.4444 5.85L15.4501 4.15L12.8982 5.21922C12.5956 4.88717 12.1979 4.57596 11.7049 4.28557C11.212 3.99519 10.7456 3.80257 10.3059 3.7077L10.0001 1H8.00591L7.69436 3.68845C7.19051 3.79615 6.72737 3.96955 6.30494 4.20865C5.8825 4.44775 5.46231 4.77627 5.04436 5.19422L2.55014 4.15L1.55591 5.85L3.72514 7.46922C3.6418 7.69359 3.58347 7.93718 3.55014 8.2C3.5168 8.46282 3.50014 8.73589 3.50014 9.01923C3.50014 9.27308 3.5168 9.525 3.55014 9.775C3.58347 10.025 3.6354 10.2686 3.70591 10.5058L1.55591 12.15L2.55014 13.85L5.02514 12.8C5.41744 13.1961 5.82481 13.5138 6.24726 13.7529C6.6697 13.992 7.14565 14.1782 7.67514 14.3116L8.00014 17Z' fill='%23F15A29'/%3E%3C/svg%3E%0A");
}
.ico_setting.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.13474 18L6.77321 15.1077C6.45398 15.0115 6.10879 14.8603 5.73764 14.6538C5.36649 14.4474 5.05078 14.2263 4.79051 13.9904L2.12321 15.125L0.257812 11.875L2.56359 10.1365C2.5341 9.95576 2.50975 9.76954 2.49051 9.57788C2.47128 9.38621 2.46166 9.19999 2.46166 9.01923C2.46166 8.85128 2.47128 8.67467 2.49051 8.48942C2.50975 8.30417 2.5341 8.09553 2.56359 7.86348L0.257812 6.125L2.12321 2.91345L4.77129 4.02885C5.07 3.78013 5.39308 3.55578 5.74051 3.35578C6.08795 3.15578 6.42577 3.00128 6.75399 2.8923L7.13474 0H10.8655L11.2271 2.91153C11.6104 3.04614 11.9492 3.20063 12.2434 3.375C12.5376 3.54935 12.8405 3.7673 13.1521 4.02885L15.8771 2.91345L17.7425 6.125L15.3598 7.92115C15.4149 8.12757 15.4457 8.31699 15.4521 8.48942C15.4585 8.66186 15.4617 8.83205 15.4617 9C15.4617 9.15513 15.4553 9.31892 15.4425 9.49135C15.4296 9.66378 15.4001 9.87243 15.354 10.1173L17.6982 11.875L15.8328 15.125L13.1521 13.9712C12.8405 14.2327 12.5271 14.4571 12.2117 14.6442C11.8963 14.8314 11.5681 14.9795 11.2271 15.0885L10.8655 18H7.13474ZM8.97321 11.5C9.67065 11.5 10.2617 11.2577 10.7463 10.7731C11.2309 10.2885 11.4732 9.69743 11.4732 9C11.4732 8.30257 11.2309 7.71154 10.7463 7.22693C10.2617 6.74231 9.67065 6.5 8.97321 6.5C8.27193 6.5 7.67994 6.74231 7.19724 7.22693C6.71455 7.71154 6.47321 8.30257 6.47321 9C6.47321 9.69743 6.71455 10.2885 7.19724 10.7731C7.67994 11.2577 8.27193 11.5 8.97321 11.5ZM8.97321 10.5C8.55655 10.5 8.20238 10.3542 7.91071 10.0625C7.61905 9.77083 7.47321 9.41667 7.47321 9C7.47321 8.58333 7.61905 8.22917 7.91071 7.9375C8.20238 7.64583 8.55655 7.5 8.97321 7.5C9.38988 7.5 9.74405 7.64583 10.0357 7.9375C10.3274 8.22917 10.4732 8.58333 10.4732 9C10.4732 9.41667 10.3274 9.77083 10.0357 10.0625C9.74405 10.3542 9.38988 10.5 8.97321 10.5ZM8.00014 17H9.95591L10.3251 14.2923C10.829 14.159 11.2825 13.976 11.6857 13.7433C12.0889 13.5106 12.4995 13.1917 12.9174 12.7866L15.4117 13.85L16.4059 12.15L14.2174 10.5058C14.3008 10.2212 14.3559 9.9593 14.3828 9.7202C14.4098 9.4811 14.4232 9.24103 14.4232 9C14.4232 8.74615 14.4098 8.50608 14.3828 8.2798C14.3559 8.05352 14.3008 7.80448 14.2174 7.5327L16.4444 5.85L15.4501 4.15L12.8982 5.21922C12.5956 4.88717 12.1979 4.57596 11.7049 4.28557C11.212 3.99519 10.7456 3.80257 10.3059 3.7077L10.0001 1H8.00591L7.69436 3.68845C7.19051 3.79615 6.72737 3.96955 6.30494 4.20865C5.8825 4.44775 5.46231 4.77627 5.04436 5.19422L2.55014 4.15L1.55591 5.85L3.72514 7.46922C3.6418 7.69359 3.58347 7.93718 3.55014 8.2C3.5168 8.46282 3.50014 8.73589 3.50014 9.01923C3.50014 9.27308 3.5168 9.525 3.55014 9.775C3.58347 10.025 3.6354 10.2686 3.70591 10.5058L1.55591 12.15L2.55014 13.85L5.02514 12.8C5.41744 13.1961 5.82481 13.5138 6.24726 13.7529C6.6697 13.992 7.14565 14.1782 7.67514 14.3116L8.00014 17Z' fill='%23ececec'/%3E%3C/svg%3E%0A");
}
.ico_setting.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.13474 18L6.77321 15.1077C6.45398 15.0115 6.10879 14.8603 5.73764 14.6538C5.36649 14.4474 5.05078 14.2263 4.79051 13.9904L2.12321 15.125L0.257812 11.875L2.56359 10.1365C2.5341 9.95576 2.50975 9.76954 2.49051 9.57788C2.47128 9.38621 2.46166 9.19999 2.46166 9.01923C2.46166 8.85128 2.47128 8.67467 2.49051 8.48942C2.50975 8.30417 2.5341 8.09553 2.56359 7.86348L0.257812 6.125L2.12321 2.91345L4.77129 4.02885C5.07 3.78013 5.39308 3.55578 5.74051 3.35578C6.08795 3.15578 6.42577 3.00128 6.75399 2.8923L7.13474 0H10.8655L11.2271 2.91153C11.6104 3.04614 11.9492 3.20063 12.2434 3.375C12.5376 3.54935 12.8405 3.7673 13.1521 4.02885L15.8771 2.91345L17.7425 6.125L15.3598 7.92115C15.4149 8.12757 15.4457 8.31699 15.4521 8.48942C15.4585 8.66186 15.4617 8.83205 15.4617 9C15.4617 9.15513 15.4553 9.31892 15.4425 9.49135C15.4296 9.66378 15.4001 9.87243 15.354 10.1173L17.6982 11.875L15.8328 15.125L13.1521 13.9712C12.8405 14.2327 12.5271 14.4571 12.2117 14.6442C11.8963 14.8314 11.5681 14.9795 11.2271 15.0885L10.8655 18H7.13474ZM8.97321 11.5C9.67065 11.5 10.2617 11.2577 10.7463 10.7731C11.2309 10.2885 11.4732 9.69743 11.4732 9C11.4732 8.30257 11.2309 7.71154 10.7463 7.22693C10.2617 6.74231 9.67065 6.5 8.97321 6.5C8.27193 6.5 7.67994 6.74231 7.19724 7.22693C6.71455 7.71154 6.47321 8.30257 6.47321 9C6.47321 9.69743 6.71455 10.2885 7.19724 10.7731C7.67994 11.2577 8.27193 11.5 8.97321 11.5ZM8.97321 10.5C8.55655 10.5 8.20238 10.3542 7.91071 10.0625C7.61905 9.77083 7.47321 9.41667 7.47321 9C7.47321 8.58333 7.61905 8.22917 7.91071 7.9375C8.20238 7.64583 8.55655 7.5 8.97321 7.5C9.38988 7.5 9.74405 7.64583 10.0357 7.9375C10.3274 8.22917 10.4732 8.58333 10.4732 9C10.4732 9.41667 10.3274 9.77083 10.0357 10.0625C9.74405 10.3542 9.38988 10.5 8.97321 10.5ZM8.00014 17H9.95591L10.3251 14.2923C10.829 14.159 11.2825 13.976 11.6857 13.7433C12.0889 13.5106 12.4995 13.1917 12.9174 12.7866L15.4117 13.85L16.4059 12.15L14.2174 10.5058C14.3008 10.2212 14.3559 9.9593 14.3828 9.7202C14.4098 9.4811 14.4232 9.24103 14.4232 9C14.4232 8.74615 14.4098 8.50608 14.3828 8.2798C14.3559 8.05352 14.3008 7.80448 14.2174 7.5327L16.4444 5.85L15.4501 4.15L12.8982 5.21922C12.5956 4.88717 12.1979 4.57596 11.7049 4.28557C11.212 3.99519 10.7456 3.80257 10.3059 3.7077L10.0001 1H8.00591L7.69436 3.68845C7.19051 3.79615 6.72737 3.96955 6.30494 4.20865C5.8825 4.44775 5.46231 4.77627 5.04436 5.19422L2.55014 4.15L1.55591 5.85L3.72514 7.46922C3.6418 7.69359 3.58347 7.93718 3.55014 8.2C3.5168 8.46282 3.50014 8.73589 3.50014 9.01923C3.50014 9.27308 3.5168 9.525 3.55014 9.775C3.58347 10.025 3.6354 10.2686 3.70591 10.5058L1.55591 12.15L2.55014 13.85L5.02514 12.8C5.41744 13.1961 5.82481 13.5138 6.24726 13.7529C6.6697 13.992 7.14565 14.1782 7.67514 14.3116L8.00014 17Z' fill='%23555555'/%3E%3C/svg%3E%0A");
}
.ico_setting.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.13474 18L6.77321 15.1077C6.45398 15.0115 6.10879 14.8603 5.73764 14.6538C5.36649 14.4474 5.05078 14.2263 4.79051 13.9904L2.12321 15.125L0.257812 11.875L2.56359 10.1365C2.5341 9.95576 2.50975 9.76954 2.49051 9.57788C2.47128 9.38621 2.46166 9.19999 2.46166 9.01923C2.46166 8.85128 2.47128 8.67467 2.49051 8.48942C2.50975 8.30417 2.5341 8.09553 2.56359 7.86348L0.257812 6.125L2.12321 2.91345L4.77129 4.02885C5.07 3.78013 5.39308 3.55578 5.74051 3.35578C6.08795 3.15578 6.42577 3.00128 6.75399 2.8923L7.13474 0H10.8655L11.2271 2.91153C11.6104 3.04614 11.9492 3.20063 12.2434 3.375C12.5376 3.54935 12.8405 3.7673 13.1521 4.02885L15.8771 2.91345L17.7425 6.125L15.3598 7.92115C15.4149 8.12757 15.4457 8.31699 15.4521 8.48942C15.4585 8.66186 15.4617 8.83205 15.4617 9C15.4617 9.15513 15.4553 9.31892 15.4425 9.49135C15.4296 9.66378 15.4001 9.87243 15.354 10.1173L17.6982 11.875L15.8328 15.125L13.1521 13.9712C12.8405 14.2327 12.5271 14.4571 12.2117 14.6442C11.8963 14.8314 11.5681 14.9795 11.2271 15.0885L10.8655 18H7.13474ZM8.97321 11.5C9.67065 11.5 10.2617 11.2577 10.7463 10.7731C11.2309 10.2885 11.4732 9.69743 11.4732 9C11.4732 8.30257 11.2309 7.71154 10.7463 7.22693C10.2617 6.74231 9.67065 6.5 8.97321 6.5C8.27193 6.5 7.67994 6.74231 7.19724 7.22693C6.71455 7.71154 6.47321 8.30257 6.47321 9C6.47321 9.69743 6.71455 10.2885 7.19724 10.7731C7.67994 11.2577 8.27193 11.5 8.97321 11.5ZM8.97321 10.5C8.55655 10.5 8.20238 10.3542 7.91071 10.0625C7.61905 9.77083 7.47321 9.41667 7.47321 9C7.47321 8.58333 7.61905 8.22917 7.91071 7.9375C8.20238 7.64583 8.55655 7.5 8.97321 7.5C9.38988 7.5 9.74405 7.64583 10.0357 7.9375C10.3274 8.22917 10.4732 8.58333 10.4732 9C10.4732 9.41667 10.3274 9.77083 10.0357 10.0625C9.74405 10.3542 9.38988 10.5 8.97321 10.5ZM8.00014 17H9.95591L10.3251 14.2923C10.829 14.159 11.2825 13.976 11.6857 13.7433C12.0889 13.5106 12.4995 13.1917 12.9174 12.7866L15.4117 13.85L16.4059 12.15L14.2174 10.5058C14.3008 10.2212 14.3559 9.9593 14.3828 9.7202C14.4098 9.4811 14.4232 9.24103 14.4232 9C14.4232 8.74615 14.4098 8.50608 14.3828 8.2798C14.3559 8.05352 14.3008 7.80448 14.2174 7.5327L16.4444 5.85L15.4501 4.15L12.8982 5.21922C12.5956 4.88717 12.1979 4.57596 11.7049 4.28557C11.212 3.99519 10.7456 3.80257 10.3059 3.7077L10.0001 1H8.00591L7.69436 3.68845C7.19051 3.79615 6.72737 3.96955 6.30494 4.20865C5.8825 4.44775 5.46231 4.77627 5.04436 5.19422L2.55014 4.15L1.55591 5.85L3.72514 7.46922C3.6418 7.69359 3.58347 7.93718 3.55014 8.2C3.5168 8.46282 3.50014 8.73589 3.50014 9.01923C3.50014 9.27308 3.5168 9.525 3.55014 9.775C3.58347 10.025 3.6354 10.2686 3.70591 10.5058L1.55591 12.15L2.55014 13.85L5.02514 12.8C5.41744 13.1961 5.82481 13.5138 6.24726 13.7529C6.6697 13.992 7.14565 14.1782 7.67514 14.3116L8.00014 17Z' fill='%238dc63f'/%3E%3C/svg%3E%0A");
}
.ico_setting.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.13474 18L6.77321 15.1077C6.45398 15.0115 6.10879 14.8603 5.73764 14.6538C5.36649 14.4474 5.05078 14.2263 4.79051 13.9904L2.12321 15.125L0.257812 11.875L2.56359 10.1365C2.5341 9.95576 2.50975 9.76954 2.49051 9.57788C2.47128 9.38621 2.46166 9.19999 2.46166 9.01923C2.46166 8.85128 2.47128 8.67467 2.49051 8.48942C2.50975 8.30417 2.5341 8.09553 2.56359 7.86348L0.257812 6.125L2.12321 2.91345L4.77129 4.02885C5.07 3.78013 5.39308 3.55578 5.74051 3.35578C6.08795 3.15578 6.42577 3.00128 6.75399 2.8923L7.13474 0H10.8655L11.2271 2.91153C11.6104 3.04614 11.9492 3.20063 12.2434 3.375C12.5376 3.54935 12.8405 3.7673 13.1521 4.02885L15.8771 2.91345L17.7425 6.125L15.3598 7.92115C15.4149 8.12757 15.4457 8.31699 15.4521 8.48942C15.4585 8.66186 15.4617 8.83205 15.4617 9C15.4617 9.15513 15.4553 9.31892 15.4425 9.49135C15.4296 9.66378 15.4001 9.87243 15.354 10.1173L17.6982 11.875L15.8328 15.125L13.1521 13.9712C12.8405 14.2327 12.5271 14.4571 12.2117 14.6442C11.8963 14.8314 11.5681 14.9795 11.2271 15.0885L10.8655 18H7.13474ZM8.97321 11.5C9.67065 11.5 10.2617 11.2577 10.7463 10.7731C11.2309 10.2885 11.4732 9.69743 11.4732 9C11.4732 8.30257 11.2309 7.71154 10.7463 7.22693C10.2617 6.74231 9.67065 6.5 8.97321 6.5C8.27193 6.5 7.67994 6.74231 7.19724 7.22693C6.71455 7.71154 6.47321 8.30257 6.47321 9C6.47321 9.69743 6.71455 10.2885 7.19724 10.7731C7.67994 11.2577 8.27193 11.5 8.97321 11.5ZM8.97321 10.5C8.55655 10.5 8.20238 10.3542 7.91071 10.0625C7.61905 9.77083 7.47321 9.41667 7.47321 9C7.47321 8.58333 7.61905 8.22917 7.91071 7.9375C8.20238 7.64583 8.55655 7.5 8.97321 7.5C9.38988 7.5 9.74405 7.64583 10.0357 7.9375C10.3274 8.22917 10.4732 8.58333 10.4732 9C10.4732 9.41667 10.3274 9.77083 10.0357 10.0625C9.74405 10.3542 9.38988 10.5 8.97321 10.5ZM8.00014 17H9.95591L10.3251 14.2923C10.829 14.159 11.2825 13.976 11.6857 13.7433C12.0889 13.5106 12.4995 13.1917 12.9174 12.7866L15.4117 13.85L16.4059 12.15L14.2174 10.5058C14.3008 10.2212 14.3559 9.9593 14.3828 9.7202C14.4098 9.4811 14.4232 9.24103 14.4232 9C14.4232 8.74615 14.4098 8.50608 14.3828 8.2798C14.3559 8.05352 14.3008 7.80448 14.2174 7.5327L16.4444 5.85L15.4501 4.15L12.8982 5.21922C12.5956 4.88717 12.1979 4.57596 11.7049 4.28557C11.212 3.99519 10.7456 3.80257 10.3059 3.7077L10.0001 1H8.00591L7.69436 3.68845C7.19051 3.79615 6.72737 3.96955 6.30494 4.20865C5.8825 4.44775 5.46231 4.77627 5.04436 5.19422L2.55014 4.15L1.55591 5.85L3.72514 7.46922C3.6418 7.69359 3.58347 7.93718 3.55014 8.2C3.5168 8.46282 3.50014 8.73589 3.50014 9.01923C3.50014 9.27308 3.5168 9.525 3.55014 9.775C3.58347 10.025 3.6354 10.2686 3.70591 10.5058L1.55591 12.15L2.55014 13.85L5.02514 12.8C5.41744 13.1961 5.82481 13.5138 6.24726 13.7529C6.6697 13.992 7.14565 14.1782 7.67514 14.3116L8.00014 17Z' fill='%23999999'/%3E%3C/svg%3E%0A");
}

.ico_store {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1541' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23555555'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1541)'%3E%3Cpath d='M34.6668 18.6513V32.3596C34.6668 33.0049 34.4435 33.5509 33.9969 33.9974C33.5503 34.444 33.0044 34.6673 32.3591 34.6673H8.59949C7.95419 34.6673 7.40824 34.444 6.96166 33.9974C6.51508 33.5509 6.29179 33.0049 6.29179 32.3596V18.5872C5.53537 18.0274 5.02148 17.3147 4.75012 16.4494C4.47873 15.584 4.48513 14.6972 4.76933 13.7891L6.40075 8.45257C6.62297 7.74532 6.97981 7.2154 7.47129 6.86282C7.96273 6.51026 8.55888 6.33398 9.25975 6.33398H31.5642C32.2779 6.33398 32.8944 6.50652 33.4136 6.85161C33.9328 7.19669 34.2928 7.70898 34.4937 8.38848L36.2309 13.7891C36.5151 14.6972 36.5145 15.5947 36.2293 16.4814C35.944 17.3682 35.4232 18.0915 34.6668 18.6513ZM24.186 18.1929C25.2907 18.1929 26.1422 17.8863 26.7405 17.2731C27.3388 16.6598 27.5931 16.0102 27.5033 15.3244L26.3335 7.61603H21.1412V14.9397C21.1412 15.8115 21.436 16.5717 22.0257 17.2202C22.6155 17.8687 23.3356 18.1929 24.186 18.1929ZM16.5546 18.1929C17.5033 18.1929 18.2912 17.8756 18.9184 17.241C19.5455 16.6064 19.8591 15.8393 19.8591 14.9397V7.61603H14.6347L13.4649 15.4526C13.3965 16.0038 13.6443 16.5984 14.2085 17.2362C14.7726 17.874 15.5546 18.1929 16.5546 18.1929ZM9.06741 18.1929C9.8623 18.1929 10.5509 17.921 11.1331 17.3772C11.7154 16.8334 12.0589 16.1641 12.1636 15.3692L13.279 7.61603H9.0482C8.68495 7.61603 8.39115 7.69615 8.16679 7.8564C7.94243 8.01668 7.78751 8.25707 7.70204 8.57757L6.04179 14.084C5.72129 15.0733 5.84843 16.0054 6.4232 16.8804C6.99798 17.7554 7.87938 18.1929 9.06741 18.1929ZM31.8912 18.1929C32.9296 18.1929 33.7806 17.7838 34.444 16.9654C35.1075 16.147 35.2683 15.1865 34.9264 14.084L33.2341 8.51348C33.1486 8.19296 32.9937 7.96325 32.7694 7.82436C32.545 7.68547 32.2512 7.61603 31.888 7.61603H27.6892L28.8046 15.3692C28.9307 16.1641 29.2795 16.8334 29.8511 17.3772C30.4227 17.921 31.1027 18.1929 31.8912 18.1929ZM8.59949 33.3853H32.3591C32.6369 33.3853 32.8772 33.2891 33.0802 33.0968C33.2832 32.9045 33.3847 32.6588 33.3847 32.3596V19.2731C33.2202 19.3436 33.0017 19.3949 32.7293 19.4269C32.4568 19.459 32.1775 19.475 31.8912 19.475C31.1753 19.475 30.5209 19.3185 29.928 19.0054C29.3351 18.6924 28.7651 18.1983 28.2181 17.5231C27.795 18.1 27.2608 18.5696 26.6155 18.9317C25.9702 19.2939 25.17 19.475 24.2149 19.475C23.5097 19.475 22.8692 19.3249 22.2934 19.0247C21.7175 18.7245 21.1198 18.2645 20.5001 17.6449C19.9553 18.2517 19.342 18.7085 18.6604 19.0151C17.9788 19.3217 17.31 19.475 16.654 19.475C15.9211 19.475 15.2213 19.3383 14.5546 19.0648C13.888 18.7912 13.3185 18.2774 12.8463 17.5231C11.9873 18.3415 11.233 18.8714 10.5835 19.1128C9.93387 19.3543 9.42852 19.475 9.06741 19.475C8.7875 19.475 8.51987 19.459 8.26454 19.4269C8.0092 19.3949 7.77897 19.3436 7.57383 19.2731V32.3596C7.57383 32.6588 7.67533 32.9045 7.87833 33.0968C8.08133 33.2891 8.32172 33.3853 8.59949 33.3853Z' fill='%23222222'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_store.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1541' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23555555'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1541)'%3E%3Cpath d='M34.6668 18.6513V32.3596C34.6668 33.0049 34.4435 33.5509 33.9969 33.9974C33.5503 34.444 33.0044 34.6673 32.3591 34.6673H8.59949C7.95419 34.6673 7.40824 34.444 6.96166 33.9974C6.51508 33.5509 6.29179 33.0049 6.29179 32.3596V18.5872C5.53537 18.0274 5.02148 17.3147 4.75012 16.4494C4.47873 15.584 4.48513 14.6972 4.76933 13.7891L6.40075 8.45257C6.62297 7.74532 6.97981 7.2154 7.47129 6.86282C7.96273 6.51026 8.55888 6.33398 9.25975 6.33398H31.5642C32.2779 6.33398 32.8944 6.50652 33.4136 6.85161C33.9328 7.19669 34.2928 7.70898 34.4937 8.38848L36.2309 13.7891C36.5151 14.6972 36.5145 15.5947 36.2293 16.4814C35.944 17.3682 35.4232 18.0915 34.6668 18.6513ZM24.186 18.1929C25.2907 18.1929 26.1422 17.8863 26.7405 17.2731C27.3388 16.6598 27.5931 16.0102 27.5033 15.3244L26.3335 7.61603H21.1412V14.9397C21.1412 15.8115 21.436 16.5717 22.0257 17.2202C22.6155 17.8687 23.3356 18.1929 24.186 18.1929ZM16.5546 18.1929C17.5033 18.1929 18.2912 17.8756 18.9184 17.241C19.5455 16.6064 19.8591 15.8393 19.8591 14.9397V7.61603H14.6347L13.4649 15.4526C13.3965 16.0038 13.6443 16.5984 14.2085 17.2362C14.7726 17.874 15.5546 18.1929 16.5546 18.1929ZM9.06741 18.1929C9.8623 18.1929 10.5509 17.921 11.1331 17.3772C11.7154 16.8334 12.0589 16.1641 12.1636 15.3692L13.279 7.61603H9.0482C8.68495 7.61603 8.39115 7.69615 8.16679 7.8564C7.94243 8.01668 7.78751 8.25707 7.70204 8.57757L6.04179 14.084C5.72129 15.0733 5.84843 16.0054 6.4232 16.8804C6.99798 17.7554 7.87938 18.1929 9.06741 18.1929ZM31.8912 18.1929C32.9296 18.1929 33.7806 17.7838 34.444 16.9654C35.1075 16.147 35.2683 15.1865 34.9264 14.084L33.2341 8.51348C33.1486 8.19296 32.9937 7.96325 32.7694 7.82436C32.545 7.68547 32.2512 7.61603 31.888 7.61603H27.6892L28.8046 15.3692C28.9307 16.1641 29.2795 16.8334 29.8511 17.3772C30.4227 17.921 31.1027 18.1929 31.8912 18.1929ZM8.59949 33.3853H32.3591C32.6369 33.3853 32.8772 33.2891 33.0802 33.0968C33.2832 32.9045 33.3847 32.6588 33.3847 32.3596V19.2731C33.2202 19.3436 33.0017 19.3949 32.7293 19.4269C32.4568 19.459 32.1775 19.475 31.8912 19.475C31.1753 19.475 30.5209 19.3185 29.928 19.0054C29.3351 18.6924 28.7651 18.1983 28.2181 17.5231C27.795 18.1 27.2608 18.5696 26.6155 18.9317C25.9702 19.2939 25.17 19.475 24.2149 19.475C23.5097 19.475 22.8692 19.3249 22.2934 19.0247C21.7175 18.7245 21.1198 18.2645 20.5001 17.6449C19.9553 18.2517 19.342 18.7085 18.6604 19.0151C17.9788 19.3217 17.31 19.475 16.654 19.475C15.9211 19.475 15.2213 19.3383 14.5546 19.0648C13.888 18.7912 13.3185 18.2774 12.8463 17.5231C11.9873 18.3415 11.233 18.8714 10.5835 19.1128C9.93387 19.3543 9.42852 19.475 9.06741 19.475C8.7875 19.475 8.51987 19.459 8.26454 19.4269C8.0092 19.3949 7.77897 19.3436 7.57383 19.2731V32.3596C7.57383 32.6588 7.67533 32.9045 7.87833 33.0968C8.08133 33.2891 8.32172 33.3853 8.59949 33.3853Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_store.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1541' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23555555'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1541)'%3E%3Cpath d='M34.6668 18.6513V32.3596C34.6668 33.0049 34.4435 33.5509 33.9969 33.9974C33.5503 34.444 33.0044 34.6673 32.3591 34.6673H8.59949C7.95419 34.6673 7.40824 34.444 6.96166 33.9974C6.51508 33.5509 6.29179 33.0049 6.29179 32.3596V18.5872C5.53537 18.0274 5.02148 17.3147 4.75012 16.4494C4.47873 15.584 4.48513 14.6972 4.76933 13.7891L6.40075 8.45257C6.62297 7.74532 6.97981 7.2154 7.47129 6.86282C7.96273 6.51026 8.55888 6.33398 9.25975 6.33398H31.5642C32.2779 6.33398 32.8944 6.50652 33.4136 6.85161C33.9328 7.19669 34.2928 7.70898 34.4937 8.38848L36.2309 13.7891C36.5151 14.6972 36.5145 15.5947 36.2293 16.4814C35.944 17.3682 35.4232 18.0915 34.6668 18.6513ZM24.186 18.1929C25.2907 18.1929 26.1422 17.8863 26.7405 17.2731C27.3388 16.6598 27.5931 16.0102 27.5033 15.3244L26.3335 7.61603H21.1412V14.9397C21.1412 15.8115 21.436 16.5717 22.0257 17.2202C22.6155 17.8687 23.3356 18.1929 24.186 18.1929ZM16.5546 18.1929C17.5033 18.1929 18.2912 17.8756 18.9184 17.241C19.5455 16.6064 19.8591 15.8393 19.8591 14.9397V7.61603H14.6347L13.4649 15.4526C13.3965 16.0038 13.6443 16.5984 14.2085 17.2362C14.7726 17.874 15.5546 18.1929 16.5546 18.1929ZM9.06741 18.1929C9.8623 18.1929 10.5509 17.921 11.1331 17.3772C11.7154 16.8334 12.0589 16.1641 12.1636 15.3692L13.279 7.61603H9.0482C8.68495 7.61603 8.39115 7.69615 8.16679 7.8564C7.94243 8.01668 7.78751 8.25707 7.70204 8.57757L6.04179 14.084C5.72129 15.0733 5.84843 16.0054 6.4232 16.8804C6.99798 17.7554 7.87938 18.1929 9.06741 18.1929ZM31.8912 18.1929C32.9296 18.1929 33.7806 17.7838 34.444 16.9654C35.1075 16.147 35.2683 15.1865 34.9264 14.084L33.2341 8.51348C33.1486 8.19296 32.9937 7.96325 32.7694 7.82436C32.545 7.68547 32.2512 7.61603 31.888 7.61603H27.6892L28.8046 15.3692C28.9307 16.1641 29.2795 16.8334 29.8511 17.3772C30.4227 17.921 31.1027 18.1929 31.8912 18.1929ZM8.59949 33.3853H32.3591C32.6369 33.3853 32.8772 33.2891 33.0802 33.0968C33.2832 32.9045 33.3847 32.6588 33.3847 32.3596V19.2731C33.2202 19.3436 33.0017 19.3949 32.7293 19.4269C32.4568 19.459 32.1775 19.475 31.8912 19.475C31.1753 19.475 30.5209 19.3185 29.928 19.0054C29.3351 18.6924 28.7651 18.1983 28.2181 17.5231C27.795 18.1 27.2608 18.5696 26.6155 18.9317C25.9702 19.2939 25.17 19.475 24.2149 19.475C23.5097 19.475 22.8692 19.3249 22.2934 19.0247C21.7175 18.7245 21.1198 18.2645 20.5001 17.6449C19.9553 18.2517 19.342 18.7085 18.6604 19.0151C17.9788 19.3217 17.31 19.475 16.654 19.475C15.9211 19.475 15.2213 19.3383 14.5546 19.0648C13.888 18.7912 13.3185 18.2774 12.8463 17.5231C11.9873 18.3415 11.233 18.8714 10.5835 19.1128C9.93387 19.3543 9.42852 19.475 9.06741 19.475C8.7875 19.475 8.51987 19.459 8.26454 19.4269C8.0092 19.3949 7.77897 19.3436 7.57383 19.2731V32.3596C7.57383 32.6588 7.67533 32.9045 7.87833 33.0968C8.08133 33.2891 8.32172 33.3853 8.59949 33.3853Z' fill='%23F15A29'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_store.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1541' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23555555'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1541)'%3E%3Cpath d='M34.6668 18.6513V32.3596C34.6668 33.0049 34.4435 33.5509 33.9969 33.9974C33.5503 34.444 33.0044 34.6673 32.3591 34.6673H8.59949C7.95419 34.6673 7.40824 34.444 6.96166 33.9974C6.51508 33.5509 6.29179 33.0049 6.29179 32.3596V18.5872C5.53537 18.0274 5.02148 17.3147 4.75012 16.4494C4.47873 15.584 4.48513 14.6972 4.76933 13.7891L6.40075 8.45257C6.62297 7.74532 6.97981 7.2154 7.47129 6.86282C7.96273 6.51026 8.55888 6.33398 9.25975 6.33398H31.5642C32.2779 6.33398 32.8944 6.50652 33.4136 6.85161C33.9328 7.19669 34.2928 7.70898 34.4937 8.38848L36.2309 13.7891C36.5151 14.6972 36.5145 15.5947 36.2293 16.4814C35.944 17.3682 35.4232 18.0915 34.6668 18.6513ZM24.186 18.1929C25.2907 18.1929 26.1422 17.8863 26.7405 17.2731C27.3388 16.6598 27.5931 16.0102 27.5033 15.3244L26.3335 7.61603H21.1412V14.9397C21.1412 15.8115 21.436 16.5717 22.0257 17.2202C22.6155 17.8687 23.3356 18.1929 24.186 18.1929ZM16.5546 18.1929C17.5033 18.1929 18.2912 17.8756 18.9184 17.241C19.5455 16.6064 19.8591 15.8393 19.8591 14.9397V7.61603H14.6347L13.4649 15.4526C13.3965 16.0038 13.6443 16.5984 14.2085 17.2362C14.7726 17.874 15.5546 18.1929 16.5546 18.1929ZM9.06741 18.1929C9.8623 18.1929 10.5509 17.921 11.1331 17.3772C11.7154 16.8334 12.0589 16.1641 12.1636 15.3692L13.279 7.61603H9.0482C8.68495 7.61603 8.39115 7.69615 8.16679 7.8564C7.94243 8.01668 7.78751 8.25707 7.70204 8.57757L6.04179 14.084C5.72129 15.0733 5.84843 16.0054 6.4232 16.8804C6.99798 17.7554 7.87938 18.1929 9.06741 18.1929ZM31.8912 18.1929C32.9296 18.1929 33.7806 17.7838 34.444 16.9654C35.1075 16.147 35.2683 15.1865 34.9264 14.084L33.2341 8.51348C33.1486 8.19296 32.9937 7.96325 32.7694 7.82436C32.545 7.68547 32.2512 7.61603 31.888 7.61603H27.6892L28.8046 15.3692C28.9307 16.1641 29.2795 16.8334 29.8511 17.3772C30.4227 17.921 31.1027 18.1929 31.8912 18.1929ZM8.59949 33.3853H32.3591C32.6369 33.3853 32.8772 33.2891 33.0802 33.0968C33.2832 32.9045 33.3847 32.6588 33.3847 32.3596V19.2731C33.2202 19.3436 33.0017 19.3949 32.7293 19.4269C32.4568 19.459 32.1775 19.475 31.8912 19.475C31.1753 19.475 30.5209 19.3185 29.928 19.0054C29.3351 18.6924 28.7651 18.1983 28.2181 17.5231C27.795 18.1 27.2608 18.5696 26.6155 18.9317C25.9702 19.2939 25.17 19.475 24.2149 19.475C23.5097 19.475 22.8692 19.3249 22.2934 19.0247C21.7175 18.7245 21.1198 18.2645 20.5001 17.6449C19.9553 18.2517 19.342 18.7085 18.6604 19.0151C17.9788 19.3217 17.31 19.475 16.654 19.475C15.9211 19.475 15.2213 19.3383 14.5546 19.0648C13.888 18.7912 13.3185 18.2774 12.8463 17.5231C11.9873 18.3415 11.233 18.8714 10.5835 19.1128C9.93387 19.3543 9.42852 19.475 9.06741 19.475C8.7875 19.475 8.51987 19.459 8.26454 19.4269C8.0092 19.3949 7.77897 19.3436 7.57383 19.2731V32.3596C7.57383 32.6588 7.67533 32.9045 7.87833 33.0968C8.08133 33.2891 8.32172 33.3853 8.59949 33.3853Z' fill='%23ececec'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_store.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1541' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23555555'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1541)'%3E%3Cpath d='M34.6668 18.6513V32.3596C34.6668 33.0049 34.4435 33.5509 33.9969 33.9974C33.5503 34.444 33.0044 34.6673 32.3591 34.6673H8.59949C7.95419 34.6673 7.40824 34.444 6.96166 33.9974C6.51508 33.5509 6.29179 33.0049 6.29179 32.3596V18.5872C5.53537 18.0274 5.02148 17.3147 4.75012 16.4494C4.47873 15.584 4.48513 14.6972 4.76933 13.7891L6.40075 8.45257C6.62297 7.74532 6.97981 7.2154 7.47129 6.86282C7.96273 6.51026 8.55888 6.33398 9.25975 6.33398H31.5642C32.2779 6.33398 32.8944 6.50652 33.4136 6.85161C33.9328 7.19669 34.2928 7.70898 34.4937 8.38848L36.2309 13.7891C36.5151 14.6972 36.5145 15.5947 36.2293 16.4814C35.944 17.3682 35.4232 18.0915 34.6668 18.6513ZM24.186 18.1929C25.2907 18.1929 26.1422 17.8863 26.7405 17.2731C27.3388 16.6598 27.5931 16.0102 27.5033 15.3244L26.3335 7.61603H21.1412V14.9397C21.1412 15.8115 21.436 16.5717 22.0257 17.2202C22.6155 17.8687 23.3356 18.1929 24.186 18.1929ZM16.5546 18.1929C17.5033 18.1929 18.2912 17.8756 18.9184 17.241C19.5455 16.6064 19.8591 15.8393 19.8591 14.9397V7.61603H14.6347L13.4649 15.4526C13.3965 16.0038 13.6443 16.5984 14.2085 17.2362C14.7726 17.874 15.5546 18.1929 16.5546 18.1929ZM9.06741 18.1929C9.8623 18.1929 10.5509 17.921 11.1331 17.3772C11.7154 16.8334 12.0589 16.1641 12.1636 15.3692L13.279 7.61603H9.0482C8.68495 7.61603 8.39115 7.69615 8.16679 7.8564C7.94243 8.01668 7.78751 8.25707 7.70204 8.57757L6.04179 14.084C5.72129 15.0733 5.84843 16.0054 6.4232 16.8804C6.99798 17.7554 7.87938 18.1929 9.06741 18.1929ZM31.8912 18.1929C32.9296 18.1929 33.7806 17.7838 34.444 16.9654C35.1075 16.147 35.2683 15.1865 34.9264 14.084L33.2341 8.51348C33.1486 8.19296 32.9937 7.96325 32.7694 7.82436C32.545 7.68547 32.2512 7.61603 31.888 7.61603H27.6892L28.8046 15.3692C28.9307 16.1641 29.2795 16.8334 29.8511 17.3772C30.4227 17.921 31.1027 18.1929 31.8912 18.1929ZM8.59949 33.3853H32.3591C32.6369 33.3853 32.8772 33.2891 33.0802 33.0968C33.2832 32.9045 33.3847 32.6588 33.3847 32.3596V19.2731C33.2202 19.3436 33.0017 19.3949 32.7293 19.4269C32.4568 19.459 32.1775 19.475 31.8912 19.475C31.1753 19.475 30.5209 19.3185 29.928 19.0054C29.3351 18.6924 28.7651 18.1983 28.2181 17.5231C27.795 18.1 27.2608 18.5696 26.6155 18.9317C25.9702 19.2939 25.17 19.475 24.2149 19.475C23.5097 19.475 22.8692 19.3249 22.2934 19.0247C21.7175 18.7245 21.1198 18.2645 20.5001 17.6449C19.9553 18.2517 19.342 18.7085 18.6604 19.0151C17.9788 19.3217 17.31 19.475 16.654 19.475C15.9211 19.475 15.2213 19.3383 14.5546 19.0648C13.888 18.7912 13.3185 18.2774 12.8463 17.5231C11.9873 18.3415 11.233 18.8714 10.5835 19.1128C9.93387 19.3543 9.42852 19.475 9.06741 19.475C8.7875 19.475 8.51987 19.459 8.26454 19.4269C8.0092 19.3949 7.77897 19.3436 7.57383 19.2731V32.3596C7.57383 32.6588 7.67533 32.9045 7.87833 33.0968C8.08133 33.2891 8.32172 33.3853 8.59949 33.3853Z' fill='%23555555'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_store.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1541' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23555555'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1541)'%3E%3Cpath d='M34.6668 18.6513V32.3596C34.6668 33.0049 34.4435 33.5509 33.9969 33.9974C33.5503 34.444 33.0044 34.6673 32.3591 34.6673H8.59949C7.95419 34.6673 7.40824 34.444 6.96166 33.9974C6.51508 33.5509 6.29179 33.0049 6.29179 32.3596V18.5872C5.53537 18.0274 5.02148 17.3147 4.75012 16.4494C4.47873 15.584 4.48513 14.6972 4.76933 13.7891L6.40075 8.45257C6.62297 7.74532 6.97981 7.2154 7.47129 6.86282C7.96273 6.51026 8.55888 6.33398 9.25975 6.33398H31.5642C32.2779 6.33398 32.8944 6.50652 33.4136 6.85161C33.9328 7.19669 34.2928 7.70898 34.4937 8.38848L36.2309 13.7891C36.5151 14.6972 36.5145 15.5947 36.2293 16.4814C35.944 17.3682 35.4232 18.0915 34.6668 18.6513ZM24.186 18.1929C25.2907 18.1929 26.1422 17.8863 26.7405 17.2731C27.3388 16.6598 27.5931 16.0102 27.5033 15.3244L26.3335 7.61603H21.1412V14.9397C21.1412 15.8115 21.436 16.5717 22.0257 17.2202C22.6155 17.8687 23.3356 18.1929 24.186 18.1929ZM16.5546 18.1929C17.5033 18.1929 18.2912 17.8756 18.9184 17.241C19.5455 16.6064 19.8591 15.8393 19.8591 14.9397V7.61603H14.6347L13.4649 15.4526C13.3965 16.0038 13.6443 16.5984 14.2085 17.2362C14.7726 17.874 15.5546 18.1929 16.5546 18.1929ZM9.06741 18.1929C9.8623 18.1929 10.5509 17.921 11.1331 17.3772C11.7154 16.8334 12.0589 16.1641 12.1636 15.3692L13.279 7.61603H9.0482C8.68495 7.61603 8.39115 7.69615 8.16679 7.8564C7.94243 8.01668 7.78751 8.25707 7.70204 8.57757L6.04179 14.084C5.72129 15.0733 5.84843 16.0054 6.4232 16.8804C6.99798 17.7554 7.87938 18.1929 9.06741 18.1929ZM31.8912 18.1929C32.9296 18.1929 33.7806 17.7838 34.444 16.9654C35.1075 16.147 35.2683 15.1865 34.9264 14.084L33.2341 8.51348C33.1486 8.19296 32.9937 7.96325 32.7694 7.82436C32.545 7.68547 32.2512 7.61603 31.888 7.61603H27.6892L28.8046 15.3692C28.9307 16.1641 29.2795 16.8334 29.8511 17.3772C30.4227 17.921 31.1027 18.1929 31.8912 18.1929ZM8.59949 33.3853H32.3591C32.6369 33.3853 32.8772 33.2891 33.0802 33.0968C33.2832 32.9045 33.3847 32.6588 33.3847 32.3596V19.2731C33.2202 19.3436 33.0017 19.3949 32.7293 19.4269C32.4568 19.459 32.1775 19.475 31.8912 19.475C31.1753 19.475 30.5209 19.3185 29.928 19.0054C29.3351 18.6924 28.7651 18.1983 28.2181 17.5231C27.795 18.1 27.2608 18.5696 26.6155 18.9317C25.9702 19.2939 25.17 19.475 24.2149 19.475C23.5097 19.475 22.8692 19.3249 22.2934 19.0247C21.7175 18.7245 21.1198 18.2645 20.5001 17.6449C19.9553 18.2517 19.342 18.7085 18.6604 19.0151C17.9788 19.3217 17.31 19.475 16.654 19.475C15.9211 19.475 15.2213 19.3383 14.5546 19.0648C13.888 18.7912 13.3185 18.2774 12.8463 17.5231C11.9873 18.3415 11.233 18.8714 10.5835 19.1128C9.93387 19.3543 9.42852 19.475 9.06741 19.475C8.7875 19.475 8.51987 19.459 8.26454 19.4269C8.0092 19.3949 7.77897 19.3436 7.57383 19.2731V32.3596C7.57383 32.6588 7.67533 32.9045 7.87833 33.0968C8.08133 33.2891 8.32172 33.3853 8.59949 33.3853Z' fill='%238dc63f'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_store.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1541' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23555555'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1541)'%3E%3Cpath d='M34.6668 18.6513V32.3596C34.6668 33.0049 34.4435 33.5509 33.9969 33.9974C33.5503 34.444 33.0044 34.6673 32.3591 34.6673H8.59949C7.95419 34.6673 7.40824 34.444 6.96166 33.9974C6.51508 33.5509 6.29179 33.0049 6.29179 32.3596V18.5872C5.53537 18.0274 5.02148 17.3147 4.75012 16.4494C4.47873 15.584 4.48513 14.6972 4.76933 13.7891L6.40075 8.45257C6.62297 7.74532 6.97981 7.2154 7.47129 6.86282C7.96273 6.51026 8.55888 6.33398 9.25975 6.33398H31.5642C32.2779 6.33398 32.8944 6.50652 33.4136 6.85161C33.9328 7.19669 34.2928 7.70898 34.4937 8.38848L36.2309 13.7891C36.5151 14.6972 36.5145 15.5947 36.2293 16.4814C35.944 17.3682 35.4232 18.0915 34.6668 18.6513ZM24.186 18.1929C25.2907 18.1929 26.1422 17.8863 26.7405 17.2731C27.3388 16.6598 27.5931 16.0102 27.5033 15.3244L26.3335 7.61603H21.1412V14.9397C21.1412 15.8115 21.436 16.5717 22.0257 17.2202C22.6155 17.8687 23.3356 18.1929 24.186 18.1929ZM16.5546 18.1929C17.5033 18.1929 18.2912 17.8756 18.9184 17.241C19.5455 16.6064 19.8591 15.8393 19.8591 14.9397V7.61603H14.6347L13.4649 15.4526C13.3965 16.0038 13.6443 16.5984 14.2085 17.2362C14.7726 17.874 15.5546 18.1929 16.5546 18.1929ZM9.06741 18.1929C9.8623 18.1929 10.5509 17.921 11.1331 17.3772C11.7154 16.8334 12.0589 16.1641 12.1636 15.3692L13.279 7.61603H9.0482C8.68495 7.61603 8.39115 7.69615 8.16679 7.8564C7.94243 8.01668 7.78751 8.25707 7.70204 8.57757L6.04179 14.084C5.72129 15.0733 5.84843 16.0054 6.4232 16.8804C6.99798 17.7554 7.87938 18.1929 9.06741 18.1929ZM31.8912 18.1929C32.9296 18.1929 33.7806 17.7838 34.444 16.9654C35.1075 16.147 35.2683 15.1865 34.9264 14.084L33.2341 8.51348C33.1486 8.19296 32.9937 7.96325 32.7694 7.82436C32.545 7.68547 32.2512 7.61603 31.888 7.61603H27.6892L28.8046 15.3692C28.9307 16.1641 29.2795 16.8334 29.8511 17.3772C30.4227 17.921 31.1027 18.1929 31.8912 18.1929ZM8.59949 33.3853H32.3591C32.6369 33.3853 32.8772 33.2891 33.0802 33.0968C33.2832 32.9045 33.3847 32.6588 33.3847 32.3596V19.2731C33.2202 19.3436 33.0017 19.3949 32.7293 19.4269C32.4568 19.459 32.1775 19.475 31.8912 19.475C31.1753 19.475 30.5209 19.3185 29.928 19.0054C29.3351 18.6924 28.7651 18.1983 28.2181 17.5231C27.795 18.1 27.2608 18.5696 26.6155 18.9317C25.9702 19.2939 25.17 19.475 24.2149 19.475C23.5097 19.475 22.8692 19.3249 22.2934 19.0247C21.7175 18.7245 21.1198 18.2645 20.5001 17.6449C19.9553 18.2517 19.342 18.7085 18.6604 19.0151C17.9788 19.3217 17.31 19.475 16.654 19.475C15.9211 19.475 15.2213 19.3383 14.5546 19.0648C13.888 18.7912 13.3185 18.2774 12.8463 17.5231C11.9873 18.3415 11.233 18.8714 10.5835 19.1128C9.93387 19.3543 9.42852 19.475 9.06741 19.475C8.7875 19.475 8.51987 19.459 8.26454 19.4269C8.0092 19.3949 7.77897 19.3436 7.57383 19.2731V32.3596C7.57383 32.6588 7.67533 32.9045 7.87833 33.0968C8.08133 33.2891 8.32172 33.3853 8.59949 33.3853Z' fill='%23999999'/%3E%3C/g%3E%3C/svg%3E");
}

.ico_store_fill {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_2936' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_2936)'%3E%3Cpath d='M17.0004 9.5V15.5C17.0004 15.9028 16.8546 16.2535 16.5629 16.5521C16.2712 16.8507 15.9171 17 15.5004 17H4.5004C4.08373 17 3.72957 16.8507 3.4379 16.5521C3.14623 16.2535 3.0004 15.9028 3.0004 15.5V9.47917C2.54207 9.15972 2.25387 8.75 2.13582 8.25C2.01776 7.75 2.02123 7.22222 2.14623 6.66667L3.10457 4C3.17401 3.66667 3.33373 3.41667 3.58373 3.25C3.83373 3.08333 4.13929 3 4.5004 3H15.5004C15.8615 3 16.1636 3.07639 16.4067 3.22917C16.6497 3.38194 16.8129 3.63889 16.8962 4L17.8546 6.66667C17.9796 7.22222 17.9796 7.75 17.8546 8.25C17.7296 8.75 17.4448 9.16667 17.0004 9.5ZM11.8337 8.5C12.1254 8.5 12.3719 8.40278 12.5733 8.20833C12.7747 8.01389 12.8615 7.77778 12.8337 7.5L12.3337 4.5H10.8337V7.5C10.8337 7.77778 10.931 8.01389 11.1254 8.20833C11.3198 8.40278 11.556 8.5 11.8337 8.5ZM8.16707 8.5C8.44484 8.5 8.68096 8.40278 8.8754 8.20833C9.06984 8.01389 9.16707 7.77778 9.16707 7.5V4.5H7.66707L7.16707 7.5C7.13929 7.77778 7.22609 8.01389 7.42748 8.20833C7.62887 8.40278 7.8754 8.5 8.16707 8.5ZM4.5004 8.5C4.7504 8.5 4.96915 8.42361 5.15665 8.27083C5.34415 8.11806 5.45179 7.92361 5.47957 7.6875L6.0004 4.5H4.5004L3.5629 7.16667C3.45179 7.48611 3.49346 7.78819 3.6879 8.07292C3.88234 8.35764 4.15318 8.5 4.5004 8.5ZM15.5004 8.5C15.8476 8.5 16.1219 8.35764 16.3233 8.07292C16.5247 7.78819 16.5698 7.48611 16.4587 7.16667L15.5004 4.5H14.0004L14.5212 7.6875C14.549 7.92361 14.6601 8.11806 14.8546 8.27083C15.049 8.42361 15.2643 8.5 15.5004 8.5Z' fill='%23222222'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_store_fill.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_2936' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_2936)'%3E%3Cpath d='M17.0004 9.5V15.5C17.0004 15.9028 16.8546 16.2535 16.5629 16.5521C16.2712 16.8507 15.9171 17 15.5004 17H4.5004C4.08373 17 3.72957 16.8507 3.4379 16.5521C3.14623 16.2535 3.0004 15.9028 3.0004 15.5V9.47917C2.54207 9.15972 2.25387 8.75 2.13582 8.25C2.01776 7.75 2.02123 7.22222 2.14623 6.66667L3.10457 4C3.17401 3.66667 3.33373 3.41667 3.58373 3.25C3.83373 3.08333 4.13929 3 4.5004 3H15.5004C15.8615 3 16.1636 3.07639 16.4067 3.22917C16.6497 3.38194 16.8129 3.63889 16.8962 4L17.8546 6.66667C17.9796 7.22222 17.9796 7.75 17.8546 8.25C17.7296 8.75 17.4448 9.16667 17.0004 9.5ZM11.8337 8.5C12.1254 8.5 12.3719 8.40278 12.5733 8.20833C12.7747 8.01389 12.8615 7.77778 12.8337 7.5L12.3337 4.5H10.8337V7.5C10.8337 7.77778 10.931 8.01389 11.1254 8.20833C11.3198 8.40278 11.556 8.5 11.8337 8.5ZM8.16707 8.5C8.44484 8.5 8.68096 8.40278 8.8754 8.20833C9.06984 8.01389 9.16707 7.77778 9.16707 7.5V4.5H7.66707L7.16707 7.5C7.13929 7.77778 7.22609 8.01389 7.42748 8.20833C7.62887 8.40278 7.8754 8.5 8.16707 8.5ZM4.5004 8.5C4.7504 8.5 4.96915 8.42361 5.15665 8.27083C5.34415 8.11806 5.45179 7.92361 5.47957 7.6875L6.0004 4.5H4.5004L3.5629 7.16667C3.45179 7.48611 3.49346 7.78819 3.6879 8.07292C3.88234 8.35764 4.15318 8.5 4.5004 8.5ZM15.5004 8.5C15.8476 8.5 16.1219 8.35764 16.3233 8.07292C16.5247 7.78819 16.5698 7.48611 16.4587 7.16667L15.5004 4.5H14.0004L14.5212 7.6875C14.549 7.92361 14.6601 8.11806 14.8546 8.27083C15.049 8.42361 15.2643 8.5 15.5004 8.5Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_store_fill.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_2936' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_2936)'%3E%3Cpath d='M17.0004 9.5V15.5C17.0004 15.9028 16.8546 16.2535 16.5629 16.5521C16.2712 16.8507 15.9171 17 15.5004 17H4.5004C4.08373 17 3.72957 16.8507 3.4379 16.5521C3.14623 16.2535 3.0004 15.9028 3.0004 15.5V9.47917C2.54207 9.15972 2.25387 8.75 2.13582 8.25C2.01776 7.75 2.02123 7.22222 2.14623 6.66667L3.10457 4C3.17401 3.66667 3.33373 3.41667 3.58373 3.25C3.83373 3.08333 4.13929 3 4.5004 3H15.5004C15.8615 3 16.1636 3.07639 16.4067 3.22917C16.6497 3.38194 16.8129 3.63889 16.8962 4L17.8546 6.66667C17.9796 7.22222 17.9796 7.75 17.8546 8.25C17.7296 8.75 17.4448 9.16667 17.0004 9.5ZM11.8337 8.5C12.1254 8.5 12.3719 8.40278 12.5733 8.20833C12.7747 8.01389 12.8615 7.77778 12.8337 7.5L12.3337 4.5H10.8337V7.5C10.8337 7.77778 10.931 8.01389 11.1254 8.20833C11.3198 8.40278 11.556 8.5 11.8337 8.5ZM8.16707 8.5C8.44484 8.5 8.68096 8.40278 8.8754 8.20833C9.06984 8.01389 9.16707 7.77778 9.16707 7.5V4.5H7.66707L7.16707 7.5C7.13929 7.77778 7.22609 8.01389 7.42748 8.20833C7.62887 8.40278 7.8754 8.5 8.16707 8.5ZM4.5004 8.5C4.7504 8.5 4.96915 8.42361 5.15665 8.27083C5.34415 8.11806 5.45179 7.92361 5.47957 7.6875L6.0004 4.5H4.5004L3.5629 7.16667C3.45179 7.48611 3.49346 7.78819 3.6879 8.07292C3.88234 8.35764 4.15318 8.5 4.5004 8.5ZM15.5004 8.5C15.8476 8.5 16.1219 8.35764 16.3233 8.07292C16.5247 7.78819 16.5698 7.48611 16.4587 7.16667L15.5004 4.5H14.0004L14.5212 7.6875C14.549 7.92361 14.6601 8.11806 14.8546 8.27083C15.049 8.42361 15.2643 8.5 15.5004 8.5Z' fill='%23F15A29'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_store_fill.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_2936' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_2936)'%3E%3Cpath d='M17.0004 9.5V15.5C17.0004 15.9028 16.8546 16.2535 16.5629 16.5521C16.2712 16.8507 15.9171 17 15.5004 17H4.5004C4.08373 17 3.72957 16.8507 3.4379 16.5521C3.14623 16.2535 3.0004 15.9028 3.0004 15.5V9.47917C2.54207 9.15972 2.25387 8.75 2.13582 8.25C2.01776 7.75 2.02123 7.22222 2.14623 6.66667L3.10457 4C3.17401 3.66667 3.33373 3.41667 3.58373 3.25C3.83373 3.08333 4.13929 3 4.5004 3H15.5004C15.8615 3 16.1636 3.07639 16.4067 3.22917C16.6497 3.38194 16.8129 3.63889 16.8962 4L17.8546 6.66667C17.9796 7.22222 17.9796 7.75 17.8546 8.25C17.7296 8.75 17.4448 9.16667 17.0004 9.5ZM11.8337 8.5C12.1254 8.5 12.3719 8.40278 12.5733 8.20833C12.7747 8.01389 12.8615 7.77778 12.8337 7.5L12.3337 4.5H10.8337V7.5C10.8337 7.77778 10.931 8.01389 11.1254 8.20833C11.3198 8.40278 11.556 8.5 11.8337 8.5ZM8.16707 8.5C8.44484 8.5 8.68096 8.40278 8.8754 8.20833C9.06984 8.01389 9.16707 7.77778 9.16707 7.5V4.5H7.66707L7.16707 7.5C7.13929 7.77778 7.22609 8.01389 7.42748 8.20833C7.62887 8.40278 7.8754 8.5 8.16707 8.5ZM4.5004 8.5C4.7504 8.5 4.96915 8.42361 5.15665 8.27083C5.34415 8.11806 5.45179 7.92361 5.47957 7.6875L6.0004 4.5H4.5004L3.5629 7.16667C3.45179 7.48611 3.49346 7.78819 3.6879 8.07292C3.88234 8.35764 4.15318 8.5 4.5004 8.5ZM15.5004 8.5C15.8476 8.5 16.1219 8.35764 16.3233 8.07292C16.5247 7.78819 16.5698 7.48611 16.4587 7.16667L15.5004 4.5H14.0004L14.5212 7.6875C14.549 7.92361 14.6601 8.11806 14.8546 8.27083C15.049 8.42361 15.2643 8.5 15.5004 8.5Z' fill='%23ececec'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_store_fill.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_2936' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_2936)'%3E%3Cpath d='M17.0004 9.5V15.5C17.0004 15.9028 16.8546 16.2535 16.5629 16.5521C16.2712 16.8507 15.9171 17 15.5004 17H4.5004C4.08373 17 3.72957 16.8507 3.4379 16.5521C3.14623 16.2535 3.0004 15.9028 3.0004 15.5V9.47917C2.54207 9.15972 2.25387 8.75 2.13582 8.25C2.01776 7.75 2.02123 7.22222 2.14623 6.66667L3.10457 4C3.17401 3.66667 3.33373 3.41667 3.58373 3.25C3.83373 3.08333 4.13929 3 4.5004 3H15.5004C15.8615 3 16.1636 3.07639 16.4067 3.22917C16.6497 3.38194 16.8129 3.63889 16.8962 4L17.8546 6.66667C17.9796 7.22222 17.9796 7.75 17.8546 8.25C17.7296 8.75 17.4448 9.16667 17.0004 9.5ZM11.8337 8.5C12.1254 8.5 12.3719 8.40278 12.5733 8.20833C12.7747 8.01389 12.8615 7.77778 12.8337 7.5L12.3337 4.5H10.8337V7.5C10.8337 7.77778 10.931 8.01389 11.1254 8.20833C11.3198 8.40278 11.556 8.5 11.8337 8.5ZM8.16707 8.5C8.44484 8.5 8.68096 8.40278 8.8754 8.20833C9.06984 8.01389 9.16707 7.77778 9.16707 7.5V4.5H7.66707L7.16707 7.5C7.13929 7.77778 7.22609 8.01389 7.42748 8.20833C7.62887 8.40278 7.8754 8.5 8.16707 8.5ZM4.5004 8.5C4.7504 8.5 4.96915 8.42361 5.15665 8.27083C5.34415 8.11806 5.45179 7.92361 5.47957 7.6875L6.0004 4.5H4.5004L3.5629 7.16667C3.45179 7.48611 3.49346 7.78819 3.6879 8.07292C3.88234 8.35764 4.15318 8.5 4.5004 8.5ZM15.5004 8.5C15.8476 8.5 16.1219 8.35764 16.3233 8.07292C16.5247 7.78819 16.5698 7.48611 16.4587 7.16667L15.5004 4.5H14.0004L14.5212 7.6875C14.549 7.92361 14.6601 8.11806 14.8546 8.27083C15.049 8.42361 15.2643 8.5 15.5004 8.5Z' fill='%23555555'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_store_fill.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_2936' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_2936)'%3E%3Cpath d='M17.0004 9.5V15.5C17.0004 15.9028 16.8546 16.2535 16.5629 16.5521C16.2712 16.8507 15.9171 17 15.5004 17H4.5004C4.08373 17 3.72957 16.8507 3.4379 16.5521C3.14623 16.2535 3.0004 15.9028 3.0004 15.5V9.47917C2.54207 9.15972 2.25387 8.75 2.13582 8.25C2.01776 7.75 2.02123 7.22222 2.14623 6.66667L3.10457 4C3.17401 3.66667 3.33373 3.41667 3.58373 3.25C3.83373 3.08333 4.13929 3 4.5004 3H15.5004C15.8615 3 16.1636 3.07639 16.4067 3.22917C16.6497 3.38194 16.8129 3.63889 16.8962 4L17.8546 6.66667C17.9796 7.22222 17.9796 7.75 17.8546 8.25C17.7296 8.75 17.4448 9.16667 17.0004 9.5ZM11.8337 8.5C12.1254 8.5 12.3719 8.40278 12.5733 8.20833C12.7747 8.01389 12.8615 7.77778 12.8337 7.5L12.3337 4.5H10.8337V7.5C10.8337 7.77778 10.931 8.01389 11.1254 8.20833C11.3198 8.40278 11.556 8.5 11.8337 8.5ZM8.16707 8.5C8.44484 8.5 8.68096 8.40278 8.8754 8.20833C9.06984 8.01389 9.16707 7.77778 9.16707 7.5V4.5H7.66707L7.16707 7.5C7.13929 7.77778 7.22609 8.01389 7.42748 8.20833C7.62887 8.40278 7.8754 8.5 8.16707 8.5ZM4.5004 8.5C4.7504 8.5 4.96915 8.42361 5.15665 8.27083C5.34415 8.11806 5.45179 7.92361 5.47957 7.6875L6.0004 4.5H4.5004L3.5629 7.16667C3.45179 7.48611 3.49346 7.78819 3.6879 8.07292C3.88234 8.35764 4.15318 8.5 4.5004 8.5ZM15.5004 8.5C15.8476 8.5 16.1219 8.35764 16.3233 8.07292C16.5247 7.78819 16.5698 7.48611 16.4587 7.16667L15.5004 4.5H14.0004L14.5212 7.6875C14.549 7.92361 14.6601 8.11806 14.8546 8.27083C15.049 8.42361 15.2643 8.5 15.5004 8.5Z' fill='%238dc63f'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_store_fill.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1615_2936' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1615_2936)'%3E%3Cpath d='M17.0004 9.5V15.5C17.0004 15.9028 16.8546 16.2535 16.5629 16.5521C16.2712 16.8507 15.9171 17 15.5004 17H4.5004C4.08373 17 3.72957 16.8507 3.4379 16.5521C3.14623 16.2535 3.0004 15.9028 3.0004 15.5V9.47917C2.54207 9.15972 2.25387 8.75 2.13582 8.25C2.01776 7.75 2.02123 7.22222 2.14623 6.66667L3.10457 4C3.17401 3.66667 3.33373 3.41667 3.58373 3.25C3.83373 3.08333 4.13929 3 4.5004 3H15.5004C15.8615 3 16.1636 3.07639 16.4067 3.22917C16.6497 3.38194 16.8129 3.63889 16.8962 4L17.8546 6.66667C17.9796 7.22222 17.9796 7.75 17.8546 8.25C17.7296 8.75 17.4448 9.16667 17.0004 9.5ZM11.8337 8.5C12.1254 8.5 12.3719 8.40278 12.5733 8.20833C12.7747 8.01389 12.8615 7.77778 12.8337 7.5L12.3337 4.5H10.8337V7.5C10.8337 7.77778 10.931 8.01389 11.1254 8.20833C11.3198 8.40278 11.556 8.5 11.8337 8.5ZM8.16707 8.5C8.44484 8.5 8.68096 8.40278 8.8754 8.20833C9.06984 8.01389 9.16707 7.77778 9.16707 7.5V4.5H7.66707L7.16707 7.5C7.13929 7.77778 7.22609 8.01389 7.42748 8.20833C7.62887 8.40278 7.8754 8.5 8.16707 8.5ZM4.5004 8.5C4.7504 8.5 4.96915 8.42361 5.15665 8.27083C5.34415 8.11806 5.45179 7.92361 5.47957 7.6875L6.0004 4.5H4.5004L3.5629 7.16667C3.45179 7.48611 3.49346 7.78819 3.6879 8.07292C3.88234 8.35764 4.15318 8.5 4.5004 8.5ZM15.5004 8.5C15.8476 8.5 16.1219 8.35764 16.3233 8.07292C16.5247 7.78819 16.5698 7.48611 16.4587 7.16667L15.5004 4.5H14.0004L14.5212 7.6875C14.549 7.92361 14.6601 8.11806 14.8546 8.27083C15.049 8.42361 15.2643 8.5 15.5004 8.5Z' fill='%23999999'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.ico_notice {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1577' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1577)'%3E%3Cpath d='M30.5642 21.1414V19.8593H35.7565V21.1414H30.5642ZM32.4232 32.1029L28.2469 28.9939L29.0417 27.9875L33.218 31.0965L32.4232 32.1029ZM28.9744 12.8753L28.1796 11.8689L32.2949 8.76953L33.0898 9.77595L28.9744 12.8753ZM9.85903 30.4362V24.0901H7.55136C6.92794 24.0901 6.38747 23.8613 5.92994 23.4038C5.47242 22.9463 5.24365 22.4058 5.24365 21.7824V19.2183C5.24365 18.5949 5.47242 18.0544 5.92994 17.5969C6.38747 17.1393 6.92794 16.9106 7.55136 16.9106H14.1539L20.7565 13.0003V28.0003L14.1539 24.0901H11.1411V30.4362H9.85903ZM23.7052 25.3144V15.6862C24.2629 16.2033 24.7121 16.8823 25.0529 17.7231C25.3938 18.5639 25.5642 19.4896 25.5642 20.5003C25.5642 21.511 25.3938 22.4368 25.0529 23.2776C24.7121 24.1184 24.2629 24.7973 23.7052 25.3144ZM7.55136 18.1926C7.29494 18.1926 7.0599 18.2995 6.84624 18.5132C6.63254 18.7268 6.52569 18.9619 6.52569 19.2183V21.7824C6.52569 22.0388 6.63254 22.2738 6.84624 22.4875C7.0599 22.7012 7.29494 22.808 7.55136 22.808H14.5001L19.4744 25.7311V15.2695L14.5001 18.1926H7.55136Z' fill='%23222222'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_notice.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1577' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1577)'%3E%3Cpath d='M30.5642 21.1414V19.8593H35.7565V21.1414H30.5642ZM32.4232 32.1029L28.2469 28.9939L29.0417 27.9875L33.218 31.0965L32.4232 32.1029ZM28.9744 12.8753L28.1796 11.8689L32.2949 8.76953L33.0898 9.77595L28.9744 12.8753ZM9.85903 30.4362V24.0901H7.55136C6.92794 24.0901 6.38747 23.8613 5.92994 23.4038C5.47242 22.9463 5.24365 22.4058 5.24365 21.7824V19.2183C5.24365 18.5949 5.47242 18.0544 5.92994 17.5969C6.38747 17.1393 6.92794 16.9106 7.55136 16.9106H14.1539L20.7565 13.0003V28.0003L14.1539 24.0901H11.1411V30.4362H9.85903ZM23.7052 25.3144V15.6862C24.2629 16.2033 24.7121 16.8823 25.0529 17.7231C25.3938 18.5639 25.5642 19.4896 25.5642 20.5003C25.5642 21.511 25.3938 22.4368 25.0529 23.2776C24.7121 24.1184 24.2629 24.7973 23.7052 25.3144ZM7.55136 18.1926C7.29494 18.1926 7.0599 18.2995 6.84624 18.5132C6.63254 18.7268 6.52569 18.9619 6.52569 19.2183V21.7824C6.52569 22.0388 6.63254 22.2738 6.84624 22.4875C7.0599 22.7012 7.29494 22.808 7.55136 22.808H14.5001L19.4744 25.7311V15.2695L14.5001 18.1926H7.55136Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_notice.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1577' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1577)'%3E%3Cpath d='M30.5642 21.1414V19.8593H35.7565V21.1414H30.5642ZM32.4232 32.1029L28.2469 28.9939L29.0417 27.9875L33.218 31.0965L32.4232 32.1029ZM28.9744 12.8753L28.1796 11.8689L32.2949 8.76953L33.0898 9.77595L28.9744 12.8753ZM9.85903 30.4362V24.0901H7.55136C6.92794 24.0901 6.38747 23.8613 5.92994 23.4038C5.47242 22.9463 5.24365 22.4058 5.24365 21.7824V19.2183C5.24365 18.5949 5.47242 18.0544 5.92994 17.5969C6.38747 17.1393 6.92794 16.9106 7.55136 16.9106H14.1539L20.7565 13.0003V28.0003L14.1539 24.0901H11.1411V30.4362H9.85903ZM23.7052 25.3144V15.6862C24.2629 16.2033 24.7121 16.8823 25.0529 17.7231C25.3938 18.5639 25.5642 19.4896 25.5642 20.5003C25.5642 21.511 25.3938 22.4368 25.0529 23.2776C24.7121 24.1184 24.2629 24.7973 23.7052 25.3144ZM7.55136 18.1926C7.29494 18.1926 7.0599 18.2995 6.84624 18.5132C6.63254 18.7268 6.52569 18.9619 6.52569 19.2183V21.7824C6.52569 22.0388 6.63254 22.2738 6.84624 22.4875C7.0599 22.7012 7.29494 22.808 7.55136 22.808H14.5001L19.4744 25.7311V15.2695L14.5001 18.1926H7.55136Z' fill='%23F15A29'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_notice.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1577' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1577)'%3E%3Cpath d='M30.5642 21.1414V19.8593H35.7565V21.1414H30.5642ZM32.4232 32.1029L28.2469 28.9939L29.0417 27.9875L33.218 31.0965L32.4232 32.1029ZM28.9744 12.8753L28.1796 11.8689L32.2949 8.76953L33.0898 9.77595L28.9744 12.8753ZM9.85903 30.4362V24.0901H7.55136C6.92794 24.0901 6.38747 23.8613 5.92994 23.4038C5.47242 22.9463 5.24365 22.4058 5.24365 21.7824V19.2183C5.24365 18.5949 5.47242 18.0544 5.92994 17.5969C6.38747 17.1393 6.92794 16.9106 7.55136 16.9106H14.1539L20.7565 13.0003V28.0003L14.1539 24.0901H11.1411V30.4362H9.85903ZM23.7052 25.3144V15.6862C24.2629 16.2033 24.7121 16.8823 25.0529 17.7231C25.3938 18.5639 25.5642 19.4896 25.5642 20.5003C25.5642 21.511 25.3938 22.4368 25.0529 23.2776C24.7121 24.1184 24.2629 24.7973 23.7052 25.3144ZM7.55136 18.1926C7.29494 18.1926 7.0599 18.2995 6.84624 18.5132C6.63254 18.7268 6.52569 18.9619 6.52569 19.2183V21.7824C6.52569 22.0388 6.63254 22.2738 6.84624 22.4875C7.0599 22.7012 7.29494 22.808 7.55136 22.808H14.5001L19.4744 25.7311V15.2695L14.5001 18.1926H7.55136Z' fill='%23ececec'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_notice.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1577' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1577)'%3E%3Cpath d='M30.5642 21.1414V19.8593H35.7565V21.1414H30.5642ZM32.4232 32.1029L28.2469 28.9939L29.0417 27.9875L33.218 31.0965L32.4232 32.1029ZM28.9744 12.8753L28.1796 11.8689L32.2949 8.76953L33.0898 9.77595L28.9744 12.8753ZM9.85903 30.4362V24.0901H7.55136C6.92794 24.0901 6.38747 23.8613 5.92994 23.4038C5.47242 22.9463 5.24365 22.4058 5.24365 21.7824V19.2183C5.24365 18.5949 5.47242 18.0544 5.92994 17.5969C6.38747 17.1393 6.92794 16.9106 7.55136 16.9106H14.1539L20.7565 13.0003V28.0003L14.1539 24.0901H11.1411V30.4362H9.85903ZM23.7052 25.3144V15.6862C24.2629 16.2033 24.7121 16.8823 25.0529 17.7231C25.3938 18.5639 25.5642 19.4896 25.5642 20.5003C25.5642 21.511 25.3938 22.4368 25.0529 23.2776C24.7121 24.1184 24.2629 24.7973 23.7052 25.3144ZM7.55136 18.1926C7.29494 18.1926 7.0599 18.2995 6.84624 18.5132C6.63254 18.7268 6.52569 18.9619 6.52569 19.2183V21.7824C6.52569 22.0388 6.63254 22.2738 6.84624 22.4875C7.0599 22.7012 7.29494 22.808 7.55136 22.808H14.5001L19.4744 25.7311V15.2695L14.5001 18.1926H7.55136Z' fill='%23555555'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_notice.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1577' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1577)'%3E%3Cpath d='M30.5642 21.1414V19.8593H35.7565V21.1414H30.5642ZM32.4232 32.1029L28.2469 28.9939L29.0417 27.9875L33.218 31.0965L32.4232 32.1029ZM28.9744 12.8753L28.1796 11.8689L32.2949 8.76953L33.0898 9.77595L28.9744 12.8753ZM9.85903 30.4362V24.0901H7.55136C6.92794 24.0901 6.38747 23.8613 5.92994 23.4038C5.47242 22.9463 5.24365 22.4058 5.24365 21.7824V19.2183C5.24365 18.5949 5.47242 18.0544 5.92994 17.5969C6.38747 17.1393 6.92794 16.9106 7.55136 16.9106H14.1539L20.7565 13.0003V28.0003L14.1539 24.0901H11.1411V30.4362H9.85903ZM23.7052 25.3144V15.6862C24.2629 16.2033 24.7121 16.8823 25.0529 17.7231C25.3938 18.5639 25.5642 19.4896 25.5642 20.5003C25.5642 21.511 25.3938 22.4368 25.0529 23.2776C24.7121 24.1184 24.2629 24.7973 23.7052 25.3144ZM7.55136 18.1926C7.29494 18.1926 7.0599 18.2995 6.84624 18.5132C6.63254 18.7268 6.52569 18.9619 6.52569 19.2183V21.7824C6.52569 22.0388 6.63254 22.2738 6.84624 22.4875C7.0599 22.7012 7.29494 22.808 7.55136 22.808H14.5001L19.4744 25.7311V15.2695L14.5001 18.1926H7.55136Z' fill='%238dc63f'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_notice.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1577' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1577)'%3E%3Cpath d='M30.5642 21.1414V19.8593H35.7565V21.1414H30.5642ZM32.4232 32.1029L28.2469 28.9939L29.0417 27.9875L33.218 31.0965L32.4232 32.1029ZM28.9744 12.8753L28.1796 11.8689L32.2949 8.76953L33.0898 9.77595L28.9744 12.8753ZM9.85903 30.4362V24.0901H7.55136C6.92794 24.0901 6.38747 23.8613 5.92994 23.4038C5.47242 22.9463 5.24365 22.4058 5.24365 21.7824V19.2183C5.24365 18.5949 5.47242 18.0544 5.92994 17.5969C6.38747 17.1393 6.92794 16.9106 7.55136 16.9106H14.1539L20.7565 13.0003V28.0003L14.1539 24.0901H11.1411V30.4362H9.85903ZM23.7052 25.3144V15.6862C24.2629 16.2033 24.7121 16.8823 25.0529 17.7231C25.3938 18.5639 25.5642 19.4896 25.5642 20.5003C25.5642 21.511 25.3938 22.4368 25.0529 23.2776C24.7121 24.1184 24.2629 24.7973 23.7052 25.3144ZM7.55136 18.1926C7.29494 18.1926 7.0599 18.2995 6.84624 18.5132C6.63254 18.7268 6.52569 18.9619 6.52569 19.2183V21.7824C6.52569 22.0388 6.63254 22.2738 6.84624 22.4875C7.0599 22.7012 7.29494 22.808 7.55136 22.808H14.5001L19.4744 25.7311V15.2695L14.5001 18.1926H7.55136Z' fill='%23999999'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.ico_qna {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1571' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1571)'%3E%3Cpath d='M20.5511 36.1409V34.8589H31.5255C31.8246 34.8589 32.0704 34.7627 32.2627 34.5704C32.455 34.3781 32.5511 34.1324 32.5511 33.8332V32.2883H27.6665V22.487H32.5511V18.8845C32.5511 15.5469 31.3826 12.6938 29.0456 10.3252C26.7086 7.95658 23.8742 6.77228 20.5424 6.77228C17.2106 6.77228 14.362 7.95658 11.9966 10.3252C9.63124 12.6938 8.44855 15.5469 8.44855 18.8845V22.487H13.3332V32.2883H9.47417C8.8337 32.2883 8.28896 32.0638 7.83996 31.6149C7.39099 31.1659 7.1665 30.6211 7.1665 29.9807V18.8845C7.1665 17.0436 7.51425 15.3084 8.20975 13.6788C8.90528 12.0492 9.85881 10.6238 11.0703 9.4024C12.2819 8.18107 13.7057 7.22371 15.3417 6.53032C16.9777 5.83693 18.717 5.49023 20.5596 5.49023C22.4022 5.49023 24.1318 5.83799 25.7483 6.53349C27.3647 7.22901 28.7709 8.18394 29.9668 9.39828C31.1626 10.6126 32.106 12.037 32.7969 13.6715C33.4877 15.306 33.8332 17.0436 33.8332 18.8845V33.8332C33.8332 34.4737 33.6087 35.0184 33.1597 35.4674C32.7107 35.9164 32.166 36.1409 31.5255 36.1409H20.5511ZM9.47417 31.0063H12.0511V23.7691H8.44855V29.9807C8.44855 30.2584 8.5447 30.4988 8.737 30.7018C8.92931 30.9048 9.17503 31.0063 9.47417 31.0063ZM28.9485 31.0063H32.5511V23.7691H28.9485V31.0063Z' fill='%23222222'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_qna.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1571' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1571)'%3E%3Cpath d='M20.5511 36.1409V34.8589H31.5255C31.8246 34.8589 32.0704 34.7627 32.2627 34.5704C32.455 34.3781 32.5511 34.1324 32.5511 33.8332V32.2883H27.6665V22.487H32.5511V18.8845C32.5511 15.5469 31.3826 12.6938 29.0456 10.3252C26.7086 7.95658 23.8742 6.77228 20.5424 6.77228C17.2106 6.77228 14.362 7.95658 11.9966 10.3252C9.63124 12.6938 8.44855 15.5469 8.44855 18.8845V22.487H13.3332V32.2883H9.47417C8.8337 32.2883 8.28896 32.0638 7.83996 31.6149C7.39099 31.1659 7.1665 30.6211 7.1665 29.9807V18.8845C7.1665 17.0436 7.51425 15.3084 8.20975 13.6788C8.90528 12.0492 9.85881 10.6238 11.0703 9.4024C12.2819 8.18107 13.7057 7.22371 15.3417 6.53032C16.9777 5.83693 18.717 5.49023 20.5596 5.49023C22.4022 5.49023 24.1318 5.83799 25.7483 6.53349C27.3647 7.22901 28.7709 8.18394 29.9668 9.39828C31.1626 10.6126 32.106 12.037 32.7969 13.6715C33.4877 15.306 33.8332 17.0436 33.8332 18.8845V33.8332C33.8332 34.4737 33.6087 35.0184 33.1597 35.4674C32.7107 35.9164 32.166 36.1409 31.5255 36.1409H20.5511ZM9.47417 31.0063H12.0511V23.7691H8.44855V29.9807C8.44855 30.2584 8.5447 30.4988 8.737 30.7018C8.92931 30.9048 9.17503 31.0063 9.47417 31.0063ZM28.9485 31.0063H32.5511V23.7691H28.9485V31.0063Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_qna.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1571' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1571)'%3E%3Cpath d='M20.5511 36.1409V34.8589H31.5255C31.8246 34.8589 32.0704 34.7627 32.2627 34.5704C32.455 34.3781 32.5511 34.1324 32.5511 33.8332V32.2883H27.6665V22.487H32.5511V18.8845C32.5511 15.5469 31.3826 12.6938 29.0456 10.3252C26.7086 7.95658 23.8742 6.77228 20.5424 6.77228C17.2106 6.77228 14.362 7.95658 11.9966 10.3252C9.63124 12.6938 8.44855 15.5469 8.44855 18.8845V22.487H13.3332V32.2883H9.47417C8.8337 32.2883 8.28896 32.0638 7.83996 31.6149C7.39099 31.1659 7.1665 30.6211 7.1665 29.9807V18.8845C7.1665 17.0436 7.51425 15.3084 8.20975 13.6788C8.90528 12.0492 9.85881 10.6238 11.0703 9.4024C12.2819 8.18107 13.7057 7.22371 15.3417 6.53032C16.9777 5.83693 18.717 5.49023 20.5596 5.49023C22.4022 5.49023 24.1318 5.83799 25.7483 6.53349C27.3647 7.22901 28.7709 8.18394 29.9668 9.39828C31.1626 10.6126 32.106 12.037 32.7969 13.6715C33.4877 15.306 33.8332 17.0436 33.8332 18.8845V33.8332C33.8332 34.4737 33.6087 35.0184 33.1597 35.4674C32.7107 35.9164 32.166 36.1409 31.5255 36.1409H20.5511ZM9.47417 31.0063H12.0511V23.7691H8.44855V29.9807C8.44855 30.2584 8.5447 30.4988 8.737 30.7018C8.92931 30.9048 9.17503 31.0063 9.47417 31.0063ZM28.9485 31.0063H32.5511V23.7691H28.9485V31.0063Z' fill='%23F15A29'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_qna.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1571' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1571)'%3E%3Cpath d='M20.5511 36.1409V34.8589H31.5255C31.8246 34.8589 32.0704 34.7627 32.2627 34.5704C32.455 34.3781 32.5511 34.1324 32.5511 33.8332V32.2883H27.6665V22.487H32.5511V18.8845C32.5511 15.5469 31.3826 12.6938 29.0456 10.3252C26.7086 7.95658 23.8742 6.77228 20.5424 6.77228C17.2106 6.77228 14.362 7.95658 11.9966 10.3252C9.63124 12.6938 8.44855 15.5469 8.44855 18.8845V22.487H13.3332V32.2883H9.47417C8.8337 32.2883 8.28896 32.0638 7.83996 31.6149C7.39099 31.1659 7.1665 30.6211 7.1665 29.9807V18.8845C7.1665 17.0436 7.51425 15.3084 8.20975 13.6788C8.90528 12.0492 9.85881 10.6238 11.0703 9.4024C12.2819 8.18107 13.7057 7.22371 15.3417 6.53032C16.9777 5.83693 18.717 5.49023 20.5596 5.49023C22.4022 5.49023 24.1318 5.83799 25.7483 6.53349C27.3647 7.22901 28.7709 8.18394 29.9668 9.39828C31.1626 10.6126 32.106 12.037 32.7969 13.6715C33.4877 15.306 33.8332 17.0436 33.8332 18.8845V33.8332C33.8332 34.4737 33.6087 35.0184 33.1597 35.4674C32.7107 35.9164 32.166 36.1409 31.5255 36.1409H20.5511ZM9.47417 31.0063H12.0511V23.7691H8.44855V29.9807C8.44855 30.2584 8.5447 30.4988 8.737 30.7018C8.92931 30.9048 9.17503 31.0063 9.47417 31.0063ZM28.9485 31.0063H32.5511V23.7691H28.9485V31.0063Z' fill='%23ececec'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_qna.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1571' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1571)'%3E%3Cpath d='M20.5511 36.1409V34.8589H31.5255C31.8246 34.8589 32.0704 34.7627 32.2627 34.5704C32.455 34.3781 32.5511 34.1324 32.5511 33.8332V32.2883H27.6665V22.487H32.5511V18.8845C32.5511 15.5469 31.3826 12.6938 29.0456 10.3252C26.7086 7.95658 23.8742 6.77228 20.5424 6.77228C17.2106 6.77228 14.362 7.95658 11.9966 10.3252C9.63124 12.6938 8.44855 15.5469 8.44855 18.8845V22.487H13.3332V32.2883H9.47417C8.8337 32.2883 8.28896 32.0638 7.83996 31.6149C7.39099 31.1659 7.1665 30.6211 7.1665 29.9807V18.8845C7.1665 17.0436 7.51425 15.3084 8.20975 13.6788C8.90528 12.0492 9.85881 10.6238 11.0703 9.4024C12.2819 8.18107 13.7057 7.22371 15.3417 6.53032C16.9777 5.83693 18.717 5.49023 20.5596 5.49023C22.4022 5.49023 24.1318 5.83799 25.7483 6.53349C27.3647 7.22901 28.7709 8.18394 29.9668 9.39828C31.1626 10.6126 32.106 12.037 32.7969 13.6715C33.4877 15.306 33.8332 17.0436 33.8332 18.8845V33.8332C33.8332 34.4737 33.6087 35.0184 33.1597 35.4674C32.7107 35.9164 32.166 36.1409 31.5255 36.1409H20.5511ZM9.47417 31.0063H12.0511V23.7691H8.44855V29.9807C8.44855 30.2584 8.5447 30.4988 8.737 30.7018C8.92931 30.9048 9.17503 31.0063 9.47417 31.0063ZM28.9485 31.0063H32.5511V23.7691H28.9485V31.0063Z' fill='%23555555'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_qna.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1571' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1571)'%3E%3Cpath d='M20.5511 36.1409V34.8589H31.5255C31.8246 34.8589 32.0704 34.7627 32.2627 34.5704C32.455 34.3781 32.5511 34.1324 32.5511 33.8332V32.2883H27.6665V22.487H32.5511V18.8845C32.5511 15.5469 31.3826 12.6938 29.0456 10.3252C26.7086 7.95658 23.8742 6.77228 20.5424 6.77228C17.2106 6.77228 14.362 7.95658 11.9966 10.3252C9.63124 12.6938 8.44855 15.5469 8.44855 18.8845V22.487H13.3332V32.2883H9.47417C8.8337 32.2883 8.28896 32.0638 7.83996 31.6149C7.39099 31.1659 7.1665 30.6211 7.1665 29.9807V18.8845C7.1665 17.0436 7.51425 15.3084 8.20975 13.6788C8.90528 12.0492 9.85881 10.6238 11.0703 9.4024C12.2819 8.18107 13.7057 7.22371 15.3417 6.53032C16.9777 5.83693 18.717 5.49023 20.5596 5.49023C22.4022 5.49023 24.1318 5.83799 25.7483 6.53349C27.3647 7.22901 28.7709 8.18394 29.9668 9.39828C31.1626 10.6126 32.106 12.037 32.7969 13.6715C33.4877 15.306 33.8332 17.0436 33.8332 18.8845V33.8332C33.8332 34.4737 33.6087 35.0184 33.1597 35.4674C32.7107 35.9164 32.166 36.1409 31.5255 36.1409H20.5511ZM9.47417 31.0063H12.0511V23.7691H8.44855V29.9807C8.44855 30.2584 8.5447 30.4988 8.737 30.7018C8.92931 30.9048 9.17503 31.0063 9.47417 31.0063ZM28.9485 31.0063H32.5511V23.7691H28.9485V31.0063Z' fill='%238dc63f'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico_qna.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' viewBox='0 0 41 41' fill='none'%3E%3Cmask id='mask0_673_1571' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='41' height='41'%3E%3Crect x='0.5' y='0.5' width='40' height='40' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_673_1571)'%3E%3Cpath d='M20.5511 36.1409V34.8589H31.5255C31.8246 34.8589 32.0704 34.7627 32.2627 34.5704C32.455 34.3781 32.5511 34.1324 32.5511 33.8332V32.2883H27.6665V22.487H32.5511V18.8845C32.5511 15.5469 31.3826 12.6938 29.0456 10.3252C26.7086 7.95658 23.8742 6.77228 20.5424 6.77228C17.2106 6.77228 14.362 7.95658 11.9966 10.3252C9.63124 12.6938 8.44855 15.5469 8.44855 18.8845V22.487H13.3332V32.2883H9.47417C8.8337 32.2883 8.28896 32.0638 7.83996 31.6149C7.39099 31.1659 7.1665 30.6211 7.1665 29.9807V18.8845C7.1665 17.0436 7.51425 15.3084 8.20975 13.6788C8.90528 12.0492 9.85881 10.6238 11.0703 9.4024C12.2819 8.18107 13.7057 7.22371 15.3417 6.53032C16.9777 5.83693 18.717 5.49023 20.5596 5.49023C22.4022 5.49023 24.1318 5.83799 25.7483 6.53349C27.3647 7.22901 28.7709 8.18394 29.9668 9.39828C31.1626 10.6126 32.106 12.037 32.7969 13.6715C33.4877 15.306 33.8332 17.0436 33.8332 18.8845V33.8332C33.8332 34.4737 33.6087 35.0184 33.1597 35.4674C32.7107 35.9164 32.166 36.1409 31.5255 36.1409H20.5511ZM9.47417 31.0063H12.0511V23.7691H8.44855V29.9807C8.44855 30.2584 8.5447 30.4988 8.737 30.7018C8.92931 30.9048 9.17503 31.0063 9.47417 31.0063ZM28.9485 31.0063H32.5511V23.7691H28.9485V31.0063Z' fill='%23999999'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.ico_file {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cmask id='mask0_840_1205' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_840_1205)'%3E%3Cpath d='M9.50016 17.8075C8.3399 17.8075 7.36393 17.3874 6.57227 16.5471C5.7806 15.7068 5.38477 14.7135 5.38477 13.5671V4.95013C5.38477 4.12668 5.6725 3.42376 6.24795 2.84136C6.82341 2.25897 7.52286 1.96777 8.34631 1.96777C9.19754 1.96777 9.90395 2.27633 10.4655 2.89344C11.0271 3.51057 11.3078 4.23779 11.3078 5.07513V13.1168C11.3078 13.6185 11.1285 14.0417 10.7697 14.3865C10.411 14.7313 9.98766 14.9037 9.4997 14.9037C8.97009 14.9037 8.53648 14.7139 8.19887 14.3344C7.86127 13.9549 7.69247 13.5143 7.69247 13.0126V4.67929H8.67964V13.1168C8.67964 13.3465 8.75897 13.5407 8.91764 13.6993C9.07629 13.858 9.27047 13.9373 9.50016 13.9373C9.72986 13.9373 9.92403 13.858 10.0827 13.6993C10.2413 13.5407 10.3207 13.3465 10.3207 13.1168V4.95013C10.3207 4.4012 10.1287 3.93143 9.74481 3.54084C9.36089 3.15024 8.89427 2.95494 8.34495 2.95494C7.79565 2.95494 7.32949 3.15371 6.94647 3.55125C6.56346 3.94879 6.37195 4.42898 6.37195 4.99179V13.713C6.37195 14.589 6.67778 15.3259 7.28943 15.9237C7.90107 16.5215 8.63798 16.8203 9.50016 16.8203C10.404 16.8203 11.1513 16.5041 11.7421 15.8716C12.333 15.2391 12.6284 14.4849 12.6284 13.6088V4.67929H13.6156V13.713C13.6156 14.8454 13.2163 15.811 12.4176 16.6096C11.619 17.4082 10.6465 17.8075 9.50016 17.8075Z' fill='%23222222'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_file.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cmask id='mask0_840_1205' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_840_1205)'%3E%3Cpath d='M9.50016 17.8075C8.3399 17.8075 7.36393 17.3874 6.57227 16.5471C5.7806 15.7068 5.38477 14.7135 5.38477 13.5671V4.95013C5.38477 4.12668 5.6725 3.42376 6.24795 2.84136C6.82341 2.25897 7.52286 1.96777 8.34631 1.96777C9.19754 1.96777 9.90395 2.27633 10.4655 2.89344C11.0271 3.51057 11.3078 4.23779 11.3078 5.07513V13.1168C11.3078 13.6185 11.1285 14.0417 10.7697 14.3865C10.411 14.7313 9.98766 14.9037 9.4997 14.9037C8.97009 14.9037 8.53648 14.7139 8.19887 14.3344C7.86127 13.9549 7.69247 13.5143 7.69247 13.0126V4.67929H8.67964V13.1168C8.67964 13.3465 8.75897 13.5407 8.91764 13.6993C9.07629 13.858 9.27047 13.9373 9.50016 13.9373C9.72986 13.9373 9.92403 13.858 10.0827 13.6993C10.2413 13.5407 10.3207 13.3465 10.3207 13.1168V4.95013C10.3207 4.4012 10.1287 3.93143 9.74481 3.54084C9.36089 3.15024 8.89427 2.95494 8.34495 2.95494C7.79565 2.95494 7.32949 3.15371 6.94647 3.55125C6.56346 3.94879 6.37195 4.42898 6.37195 4.99179V13.713C6.37195 14.589 6.67778 15.3259 7.28943 15.9237C7.90107 16.5215 8.63798 16.8203 9.50016 16.8203C10.404 16.8203 11.1513 16.5041 11.7421 15.8716C12.333 15.2391 12.6284 14.4849 12.6284 13.6088V4.67929H13.6156V13.713C13.6156 14.8454 13.2163 15.811 12.4176 16.6096C11.619 17.4082 10.6465 17.8075 9.50016 17.8075Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_file.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cmask id='mask0_840_1205' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_840_1205)'%3E%3Cpath d='M9.50016 17.8075C8.3399 17.8075 7.36393 17.3874 6.57227 16.5471C5.7806 15.7068 5.38477 14.7135 5.38477 13.5671V4.95013C5.38477 4.12668 5.6725 3.42376 6.24795 2.84136C6.82341 2.25897 7.52286 1.96777 8.34631 1.96777C9.19754 1.96777 9.90395 2.27633 10.4655 2.89344C11.0271 3.51057 11.3078 4.23779 11.3078 5.07513V13.1168C11.3078 13.6185 11.1285 14.0417 10.7697 14.3865C10.411 14.7313 9.98766 14.9037 9.4997 14.9037C8.97009 14.9037 8.53648 14.7139 8.19887 14.3344C7.86127 13.9549 7.69247 13.5143 7.69247 13.0126V4.67929H8.67964V13.1168C8.67964 13.3465 8.75897 13.5407 8.91764 13.6993C9.07629 13.858 9.27047 13.9373 9.50016 13.9373C9.72986 13.9373 9.92403 13.858 10.0827 13.6993C10.2413 13.5407 10.3207 13.3465 10.3207 13.1168V4.95013C10.3207 4.4012 10.1287 3.93143 9.74481 3.54084C9.36089 3.15024 8.89427 2.95494 8.34495 2.95494C7.79565 2.95494 7.32949 3.15371 6.94647 3.55125C6.56346 3.94879 6.37195 4.42898 6.37195 4.99179V13.713C6.37195 14.589 6.67778 15.3259 7.28943 15.9237C7.90107 16.5215 8.63798 16.8203 9.50016 16.8203C10.404 16.8203 11.1513 16.5041 11.7421 15.8716C12.333 15.2391 12.6284 14.4849 12.6284 13.6088V4.67929H13.6156V13.713C13.6156 14.8454 13.2163 15.811 12.4176 16.6096C11.619 17.4082 10.6465 17.8075 9.50016 17.8075Z' fill='%23F15A29'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_file.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cmask id='mask0_840_1205' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_840_1205)'%3E%3Cpath d='M9.50016 17.8075C8.3399 17.8075 7.36393 17.3874 6.57227 16.5471C5.7806 15.7068 5.38477 14.7135 5.38477 13.5671V4.95013C5.38477 4.12668 5.6725 3.42376 6.24795 2.84136C6.82341 2.25897 7.52286 1.96777 8.34631 1.96777C9.19754 1.96777 9.90395 2.27633 10.4655 2.89344C11.0271 3.51057 11.3078 4.23779 11.3078 5.07513V13.1168C11.3078 13.6185 11.1285 14.0417 10.7697 14.3865C10.411 14.7313 9.98766 14.9037 9.4997 14.9037C8.97009 14.9037 8.53648 14.7139 8.19887 14.3344C7.86127 13.9549 7.69247 13.5143 7.69247 13.0126V4.67929H8.67964V13.1168C8.67964 13.3465 8.75897 13.5407 8.91764 13.6993C9.07629 13.858 9.27047 13.9373 9.50016 13.9373C9.72986 13.9373 9.92403 13.858 10.0827 13.6993C10.2413 13.5407 10.3207 13.3465 10.3207 13.1168V4.95013C10.3207 4.4012 10.1287 3.93143 9.74481 3.54084C9.36089 3.15024 8.89427 2.95494 8.34495 2.95494C7.79565 2.95494 7.32949 3.15371 6.94647 3.55125C6.56346 3.94879 6.37195 4.42898 6.37195 4.99179V13.713C6.37195 14.589 6.67778 15.3259 7.28943 15.9237C7.90107 16.5215 8.63798 16.8203 9.50016 16.8203C10.404 16.8203 11.1513 16.5041 11.7421 15.8716C12.333 15.2391 12.6284 14.4849 12.6284 13.6088V4.67929H13.6156V13.713C13.6156 14.8454 13.2163 15.811 12.4176 16.6096C11.619 17.4082 10.6465 17.8075 9.50016 17.8075Z' fill='%23ececec'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_file.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cmask id='mask0_840_1205' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_840_1205)'%3E%3Cpath d='M9.50016 17.8075C8.3399 17.8075 7.36393 17.3874 6.57227 16.5471C5.7806 15.7068 5.38477 14.7135 5.38477 13.5671V4.95013C5.38477 4.12668 5.6725 3.42376 6.24795 2.84136C6.82341 2.25897 7.52286 1.96777 8.34631 1.96777C9.19754 1.96777 9.90395 2.27633 10.4655 2.89344C11.0271 3.51057 11.3078 4.23779 11.3078 5.07513V13.1168C11.3078 13.6185 11.1285 14.0417 10.7697 14.3865C10.411 14.7313 9.98766 14.9037 9.4997 14.9037C8.97009 14.9037 8.53648 14.7139 8.19887 14.3344C7.86127 13.9549 7.69247 13.5143 7.69247 13.0126V4.67929H8.67964V13.1168C8.67964 13.3465 8.75897 13.5407 8.91764 13.6993C9.07629 13.858 9.27047 13.9373 9.50016 13.9373C9.72986 13.9373 9.92403 13.858 10.0827 13.6993C10.2413 13.5407 10.3207 13.3465 10.3207 13.1168V4.95013C10.3207 4.4012 10.1287 3.93143 9.74481 3.54084C9.36089 3.15024 8.89427 2.95494 8.34495 2.95494C7.79565 2.95494 7.32949 3.15371 6.94647 3.55125C6.56346 3.94879 6.37195 4.42898 6.37195 4.99179V13.713C6.37195 14.589 6.67778 15.3259 7.28943 15.9237C7.90107 16.5215 8.63798 16.8203 9.50016 16.8203C10.404 16.8203 11.1513 16.5041 11.7421 15.8716C12.333 15.2391 12.6284 14.4849 12.6284 13.6088V4.67929H13.6156V13.713C13.6156 14.8454 13.2163 15.811 12.4176 16.6096C11.619 17.4082 10.6465 17.8075 9.50016 17.8075Z' fill='%23555555'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_file.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cmask id='mask0_840_1205' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_840_1205)'%3E%3Cpath d='M9.50016 17.8075C8.3399 17.8075 7.36393 17.3874 6.57227 16.5471C5.7806 15.7068 5.38477 14.7135 5.38477 13.5671V4.95013C5.38477 4.12668 5.6725 3.42376 6.24795 2.84136C6.82341 2.25897 7.52286 1.96777 8.34631 1.96777C9.19754 1.96777 9.90395 2.27633 10.4655 2.89344C11.0271 3.51057 11.3078 4.23779 11.3078 5.07513V13.1168C11.3078 13.6185 11.1285 14.0417 10.7697 14.3865C10.411 14.7313 9.98766 14.9037 9.4997 14.9037C8.97009 14.9037 8.53648 14.7139 8.19887 14.3344C7.86127 13.9549 7.69247 13.5143 7.69247 13.0126V4.67929H8.67964V13.1168C8.67964 13.3465 8.75897 13.5407 8.91764 13.6993C9.07629 13.858 9.27047 13.9373 9.50016 13.9373C9.72986 13.9373 9.92403 13.858 10.0827 13.6993C10.2413 13.5407 10.3207 13.3465 10.3207 13.1168V4.95013C10.3207 4.4012 10.1287 3.93143 9.74481 3.54084C9.36089 3.15024 8.89427 2.95494 8.34495 2.95494C7.79565 2.95494 7.32949 3.15371 6.94647 3.55125C6.56346 3.94879 6.37195 4.42898 6.37195 4.99179V13.713C6.37195 14.589 6.67778 15.3259 7.28943 15.9237C7.90107 16.5215 8.63798 16.8203 9.50016 16.8203C10.404 16.8203 11.1513 16.5041 11.7421 15.8716C12.333 15.2391 12.6284 14.4849 12.6284 13.6088V4.67929H13.6156V13.713C13.6156 14.8454 13.2163 15.811 12.4176 16.6096C11.619 17.4082 10.6465 17.8075 9.50016 17.8075Z' fill='%238dc63f'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_file.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cmask id='mask0_840_1205' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_840_1205)'%3E%3Cpath d='M9.50016 17.8075C8.3399 17.8075 7.36393 17.3874 6.57227 16.5471C5.7806 15.7068 5.38477 14.7135 5.38477 13.5671V4.95013C5.38477 4.12668 5.6725 3.42376 6.24795 2.84136C6.82341 2.25897 7.52286 1.96777 8.34631 1.96777C9.19754 1.96777 9.90395 2.27633 10.4655 2.89344C11.0271 3.51057 11.3078 4.23779 11.3078 5.07513V13.1168C11.3078 13.6185 11.1285 14.0417 10.7697 14.3865C10.411 14.7313 9.98766 14.9037 9.4997 14.9037C8.97009 14.9037 8.53648 14.7139 8.19887 14.3344C7.86127 13.9549 7.69247 13.5143 7.69247 13.0126V4.67929H8.67964V13.1168C8.67964 13.3465 8.75897 13.5407 8.91764 13.6993C9.07629 13.858 9.27047 13.9373 9.50016 13.9373C9.72986 13.9373 9.92403 13.858 10.0827 13.6993C10.2413 13.5407 10.3207 13.3465 10.3207 13.1168V4.95013C10.3207 4.4012 10.1287 3.93143 9.74481 3.54084C9.36089 3.15024 8.89427 2.95494 8.34495 2.95494C7.79565 2.95494 7.32949 3.15371 6.94647 3.55125C6.56346 3.94879 6.37195 4.42898 6.37195 4.99179V13.713C6.37195 14.589 6.67778 15.3259 7.28943 15.9237C7.90107 16.5215 8.63798 16.8203 9.50016 16.8203C10.404 16.8203 11.1513 16.5041 11.7421 15.8716C12.333 15.2391 12.6284 14.4849 12.6284 13.6088V4.67929H13.6156V13.713C13.6156 14.8454 13.2163 15.811 12.4176 16.6096C11.619 17.4082 10.6465 17.8075 9.50016 17.8075Z' fill='%23999999'/%3E%3C/g%3E%3C/svg%3E");
}

.ico_qmark {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_1145_1686' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1145_1686)'%3E%3Cpath d='M11.989 17.6153C12.2745 17.6153 12.5157 17.5168 12.7125 17.3196C12.9093 17.1225 13.0077 16.8811 13.0077 16.5956C13.0077 16.31 12.9091 16.0689 12.7119 15.8721C12.5148 15.6753 12.2734 15.5769 11.9879 15.5769C11.7024 15.5769 11.4612 15.6755 11.2644 15.8726C11.0676 16.0698 10.9692 16.3111 10.9692 16.5967C10.9692 16.8822 11.0678 17.1234 11.265 17.3202C11.4621 17.5169 11.7034 17.6153 11.989 17.6153ZM11.2808 14.0346H12.6884C12.7012 13.5423 12.7734 13.149 12.9048 12.8548C13.0362 12.5606 13.3551 12.1705 13.8615 11.6846C14.3012 11.2449 14.6381 10.8388 14.8721 10.4663C15.106 10.0939 15.223 9.65407 15.223 9.14685C15.223 8.28613 14.9137 7.61378 14.2952 7.1298C13.6766 6.64583 12.9449 6.40385 12.1 6.40385C11.2654 6.40385 10.5747 6.62661 10.0279 7.07213C9.48109 7.51763 9.09103 8.04229 8.8577 8.64613L10.1423 9.1615C10.2641 8.82945 10.4724 8.50606 10.7673 8.19133C11.0622 7.87658 11.5 7.7192 12.0808 7.7192C12.6718 7.7192 13.1086 7.88107 13.3913 8.2048C13.674 8.52852 13.8154 8.88461 13.8154 9.27308C13.8154 9.61281 13.7186 9.9237 13.525 10.2058C13.3314 10.4878 13.0846 10.7602 12.7846 11.0231C12.1282 11.6154 11.7135 12.0878 11.5404 12.4404C11.3673 12.7929 11.2808 13.3243 11.2808 14.0346ZM12.0016 21.5C10.6877 21.5 9.45268 21.2506 8.29655 20.752C7.1404 20.2533 6.13472 19.5765 5.2795 18.7217C4.42427 17.8669 3.74721 16.8616 3.24833 15.706C2.74944 14.5504 2.5 13.3156 2.5 12.0017C2.5 10.6877 2.74933 9.45268 3.248 8.29655C3.74667 7.1404 4.42342 6.13472 5.27825 5.2795C6.1331 4.42427 7.13834 3.74721 8.29398 3.24833C9.44959 2.74944 10.6844 2.5 11.9983 2.5C13.3122 2.5 14.5473 2.74933 15.7034 3.248C16.8596 3.74667 17.8652 4.42342 18.7205 5.27825C19.5757 6.1331 20.2527 7.13834 20.7516 8.29398C21.2505 9.44959 21.5 10.6844 21.5 11.9983C21.5 13.3122 21.2506 14.5473 20.752 15.7034C20.2533 16.8596 19.5765 17.8652 18.7217 18.7205C17.8669 19.5757 16.8616 20.2527 15.706 20.7516C14.5504 21.2505 13.3156 21.5 12.0016 21.5ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76664 19.225 7.87498 17.675 6.32498C16.125 4.77498 14.2333 3.99998 12 3.99998C9.76664 3.99998 7.87498 4.77498 6.32498 6.32498C4.77498 7.87498 3.99998 9.76664 3.99998 12C3.99998 14.2333 4.77498 16.125 6.32498 17.675C7.87498 19.225 9.76664 20 12 20Z' fill='%23222222'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_qmark.wt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_1145_1686' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1145_1686)'%3E%3Cpath d='M11.989 17.6153C12.2745 17.6153 12.5157 17.5168 12.7125 17.3196C12.9093 17.1225 13.0077 16.8811 13.0077 16.5956C13.0077 16.31 12.9091 16.0689 12.7119 15.8721C12.5148 15.6753 12.2734 15.5769 11.9879 15.5769C11.7024 15.5769 11.4612 15.6755 11.2644 15.8726C11.0676 16.0698 10.9692 16.3111 10.9692 16.5967C10.9692 16.8822 11.0678 17.1234 11.265 17.3202C11.4621 17.5169 11.7034 17.6153 11.989 17.6153ZM11.2808 14.0346H12.6884C12.7012 13.5423 12.7734 13.149 12.9048 12.8548C13.0362 12.5606 13.3551 12.1705 13.8615 11.6846C14.3012 11.2449 14.6381 10.8388 14.8721 10.4663C15.106 10.0939 15.223 9.65407 15.223 9.14685C15.223 8.28613 14.9137 7.61378 14.2952 7.1298C13.6766 6.64583 12.9449 6.40385 12.1 6.40385C11.2654 6.40385 10.5747 6.62661 10.0279 7.07213C9.48109 7.51763 9.09103 8.04229 8.8577 8.64613L10.1423 9.1615C10.2641 8.82945 10.4724 8.50606 10.7673 8.19133C11.0622 7.87658 11.5 7.7192 12.0808 7.7192C12.6718 7.7192 13.1086 7.88107 13.3913 8.2048C13.674 8.52852 13.8154 8.88461 13.8154 9.27308C13.8154 9.61281 13.7186 9.9237 13.525 10.2058C13.3314 10.4878 13.0846 10.7602 12.7846 11.0231C12.1282 11.6154 11.7135 12.0878 11.5404 12.4404C11.3673 12.7929 11.2808 13.3243 11.2808 14.0346ZM12.0016 21.5C10.6877 21.5 9.45268 21.2506 8.29655 20.752C7.1404 20.2533 6.13472 19.5765 5.2795 18.7217C4.42427 17.8669 3.74721 16.8616 3.24833 15.706C2.74944 14.5504 2.5 13.3156 2.5 12.0017C2.5 10.6877 2.74933 9.45268 3.248 8.29655C3.74667 7.1404 4.42342 6.13472 5.27825 5.2795C6.1331 4.42427 7.13834 3.74721 8.29398 3.24833C9.44959 2.74944 10.6844 2.5 11.9983 2.5C13.3122 2.5 14.5473 2.74933 15.7034 3.248C16.8596 3.74667 17.8652 4.42342 18.7205 5.27825C19.5757 6.1331 20.2527 7.13834 20.7516 8.29398C21.2505 9.44959 21.5 10.6844 21.5 11.9983C21.5 13.3122 21.2506 14.5473 20.752 15.7034C20.2533 16.8596 19.5765 17.8652 18.7217 18.7205C17.8669 19.5757 16.8616 20.2527 15.706 20.7516C14.5504 21.2505 13.3156 21.5 12.0016 21.5ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76664 19.225 7.87498 17.675 6.32498C16.125 4.77498 14.2333 3.99998 12 3.99998C9.76664 3.99998 7.87498 4.77498 6.32498 6.32498C4.77498 7.87498 3.99998 9.76664 3.99998 12C3.99998 14.2333 4.77498 16.125 6.32498 17.675C7.87498 19.225 9.76664 20 12 20Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_qmark.og {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_1145_1686' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1145_1686)'%3E%3Cpath d='M11.989 17.6153C12.2745 17.6153 12.5157 17.5168 12.7125 17.3196C12.9093 17.1225 13.0077 16.8811 13.0077 16.5956C13.0077 16.31 12.9091 16.0689 12.7119 15.8721C12.5148 15.6753 12.2734 15.5769 11.9879 15.5769C11.7024 15.5769 11.4612 15.6755 11.2644 15.8726C11.0676 16.0698 10.9692 16.3111 10.9692 16.5967C10.9692 16.8822 11.0678 17.1234 11.265 17.3202C11.4621 17.5169 11.7034 17.6153 11.989 17.6153ZM11.2808 14.0346H12.6884C12.7012 13.5423 12.7734 13.149 12.9048 12.8548C13.0362 12.5606 13.3551 12.1705 13.8615 11.6846C14.3012 11.2449 14.6381 10.8388 14.8721 10.4663C15.106 10.0939 15.223 9.65407 15.223 9.14685C15.223 8.28613 14.9137 7.61378 14.2952 7.1298C13.6766 6.64583 12.9449 6.40385 12.1 6.40385C11.2654 6.40385 10.5747 6.62661 10.0279 7.07213C9.48109 7.51763 9.09103 8.04229 8.8577 8.64613L10.1423 9.1615C10.2641 8.82945 10.4724 8.50606 10.7673 8.19133C11.0622 7.87658 11.5 7.7192 12.0808 7.7192C12.6718 7.7192 13.1086 7.88107 13.3913 8.2048C13.674 8.52852 13.8154 8.88461 13.8154 9.27308C13.8154 9.61281 13.7186 9.9237 13.525 10.2058C13.3314 10.4878 13.0846 10.7602 12.7846 11.0231C12.1282 11.6154 11.7135 12.0878 11.5404 12.4404C11.3673 12.7929 11.2808 13.3243 11.2808 14.0346ZM12.0016 21.5C10.6877 21.5 9.45268 21.2506 8.29655 20.752C7.1404 20.2533 6.13472 19.5765 5.2795 18.7217C4.42427 17.8669 3.74721 16.8616 3.24833 15.706C2.74944 14.5504 2.5 13.3156 2.5 12.0017C2.5 10.6877 2.74933 9.45268 3.248 8.29655C3.74667 7.1404 4.42342 6.13472 5.27825 5.2795C6.1331 4.42427 7.13834 3.74721 8.29398 3.24833C9.44959 2.74944 10.6844 2.5 11.9983 2.5C13.3122 2.5 14.5473 2.74933 15.7034 3.248C16.8596 3.74667 17.8652 4.42342 18.7205 5.27825C19.5757 6.1331 20.2527 7.13834 20.7516 8.29398C21.2505 9.44959 21.5 10.6844 21.5 11.9983C21.5 13.3122 21.2506 14.5473 20.752 15.7034C20.2533 16.8596 19.5765 17.8652 18.7217 18.7205C17.8669 19.5757 16.8616 20.2527 15.706 20.7516C14.5504 21.2505 13.3156 21.5 12.0016 21.5ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76664 19.225 7.87498 17.675 6.32498C16.125 4.77498 14.2333 3.99998 12 3.99998C9.76664 3.99998 7.87498 4.77498 6.32498 6.32498C4.77498 7.87498 3.99998 9.76664 3.99998 12C3.99998 14.2333 4.77498 16.125 6.32498 17.675C7.87498 19.225 9.76664 20 12 20Z' fill='%23F15A29'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_qmark.gr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_1145_1686' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1145_1686)'%3E%3Cpath d='M11.989 17.6153C12.2745 17.6153 12.5157 17.5168 12.7125 17.3196C12.9093 17.1225 13.0077 16.8811 13.0077 16.5956C13.0077 16.31 12.9091 16.0689 12.7119 15.8721C12.5148 15.6753 12.2734 15.5769 11.9879 15.5769C11.7024 15.5769 11.4612 15.6755 11.2644 15.8726C11.0676 16.0698 10.9692 16.3111 10.9692 16.5967C10.9692 16.8822 11.0678 17.1234 11.265 17.3202C11.4621 17.5169 11.7034 17.6153 11.989 17.6153ZM11.2808 14.0346H12.6884C12.7012 13.5423 12.7734 13.149 12.9048 12.8548C13.0362 12.5606 13.3551 12.1705 13.8615 11.6846C14.3012 11.2449 14.6381 10.8388 14.8721 10.4663C15.106 10.0939 15.223 9.65407 15.223 9.14685C15.223 8.28613 14.9137 7.61378 14.2952 7.1298C13.6766 6.64583 12.9449 6.40385 12.1 6.40385C11.2654 6.40385 10.5747 6.62661 10.0279 7.07213C9.48109 7.51763 9.09103 8.04229 8.8577 8.64613L10.1423 9.1615C10.2641 8.82945 10.4724 8.50606 10.7673 8.19133C11.0622 7.87658 11.5 7.7192 12.0808 7.7192C12.6718 7.7192 13.1086 7.88107 13.3913 8.2048C13.674 8.52852 13.8154 8.88461 13.8154 9.27308C13.8154 9.61281 13.7186 9.9237 13.525 10.2058C13.3314 10.4878 13.0846 10.7602 12.7846 11.0231C12.1282 11.6154 11.7135 12.0878 11.5404 12.4404C11.3673 12.7929 11.2808 13.3243 11.2808 14.0346ZM12.0016 21.5C10.6877 21.5 9.45268 21.2506 8.29655 20.752C7.1404 20.2533 6.13472 19.5765 5.2795 18.7217C4.42427 17.8669 3.74721 16.8616 3.24833 15.706C2.74944 14.5504 2.5 13.3156 2.5 12.0017C2.5 10.6877 2.74933 9.45268 3.248 8.29655C3.74667 7.1404 4.42342 6.13472 5.27825 5.2795C6.1331 4.42427 7.13834 3.74721 8.29398 3.24833C9.44959 2.74944 10.6844 2.5 11.9983 2.5C13.3122 2.5 14.5473 2.74933 15.7034 3.248C16.8596 3.74667 17.8652 4.42342 18.7205 5.27825C19.5757 6.1331 20.2527 7.13834 20.7516 8.29398C21.2505 9.44959 21.5 10.6844 21.5 11.9983C21.5 13.3122 21.2506 14.5473 20.752 15.7034C20.2533 16.8596 19.5765 17.8652 18.7217 18.7205C17.8669 19.5757 16.8616 20.2527 15.706 20.7516C14.5504 21.2505 13.3156 21.5 12.0016 21.5ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76664 19.225 7.87498 17.675 6.32498C16.125 4.77498 14.2333 3.99998 12 3.99998C9.76664 3.99998 7.87498 4.77498 6.32498 6.32498C4.77498 7.87498 3.99998 9.76664 3.99998 12C3.99998 14.2333 4.77498 16.125 6.32498 17.675C7.87498 19.225 9.76664 20 12 20Z' fill='%23ececec'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_qmark.dgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_1145_1686' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1145_1686)'%3E%3Cpath d='M11.989 17.6153C12.2745 17.6153 12.5157 17.5168 12.7125 17.3196C12.9093 17.1225 13.0077 16.8811 13.0077 16.5956C13.0077 16.31 12.9091 16.0689 12.7119 15.8721C12.5148 15.6753 12.2734 15.5769 11.9879 15.5769C11.7024 15.5769 11.4612 15.6755 11.2644 15.8726C11.0676 16.0698 10.9692 16.3111 10.9692 16.5967C10.9692 16.8822 11.0678 17.1234 11.265 17.3202C11.4621 17.5169 11.7034 17.6153 11.989 17.6153ZM11.2808 14.0346H12.6884C12.7012 13.5423 12.7734 13.149 12.9048 12.8548C13.0362 12.5606 13.3551 12.1705 13.8615 11.6846C14.3012 11.2449 14.6381 10.8388 14.8721 10.4663C15.106 10.0939 15.223 9.65407 15.223 9.14685C15.223 8.28613 14.9137 7.61378 14.2952 7.1298C13.6766 6.64583 12.9449 6.40385 12.1 6.40385C11.2654 6.40385 10.5747 6.62661 10.0279 7.07213C9.48109 7.51763 9.09103 8.04229 8.8577 8.64613L10.1423 9.1615C10.2641 8.82945 10.4724 8.50606 10.7673 8.19133C11.0622 7.87658 11.5 7.7192 12.0808 7.7192C12.6718 7.7192 13.1086 7.88107 13.3913 8.2048C13.674 8.52852 13.8154 8.88461 13.8154 9.27308C13.8154 9.61281 13.7186 9.9237 13.525 10.2058C13.3314 10.4878 13.0846 10.7602 12.7846 11.0231C12.1282 11.6154 11.7135 12.0878 11.5404 12.4404C11.3673 12.7929 11.2808 13.3243 11.2808 14.0346ZM12.0016 21.5C10.6877 21.5 9.45268 21.2506 8.29655 20.752C7.1404 20.2533 6.13472 19.5765 5.2795 18.7217C4.42427 17.8669 3.74721 16.8616 3.24833 15.706C2.74944 14.5504 2.5 13.3156 2.5 12.0017C2.5 10.6877 2.74933 9.45268 3.248 8.29655C3.74667 7.1404 4.42342 6.13472 5.27825 5.2795C6.1331 4.42427 7.13834 3.74721 8.29398 3.24833C9.44959 2.74944 10.6844 2.5 11.9983 2.5C13.3122 2.5 14.5473 2.74933 15.7034 3.248C16.8596 3.74667 17.8652 4.42342 18.7205 5.27825C19.5757 6.1331 20.2527 7.13834 20.7516 8.29398C21.2505 9.44959 21.5 10.6844 21.5 11.9983C21.5 13.3122 21.2506 14.5473 20.752 15.7034C20.2533 16.8596 19.5765 17.8652 18.7217 18.7205C17.8669 19.5757 16.8616 20.2527 15.706 20.7516C14.5504 21.2505 13.3156 21.5 12.0016 21.5ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76664 19.225 7.87498 17.675 6.32498C16.125 4.77498 14.2333 3.99998 12 3.99998C9.76664 3.99998 7.87498 4.77498 6.32498 6.32498C4.77498 7.87498 3.99998 9.76664 3.99998 12C3.99998 14.2333 4.77498 16.125 6.32498 17.675C7.87498 19.225 9.76664 20 12 20Z' fill='%23555555'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_qmark.lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_1145_1686' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1145_1686)'%3E%3Cpath d='M11.989 17.6153C12.2745 17.6153 12.5157 17.5168 12.7125 17.3196C12.9093 17.1225 13.0077 16.8811 13.0077 16.5956C13.0077 16.31 12.9091 16.0689 12.7119 15.8721C12.5148 15.6753 12.2734 15.5769 11.9879 15.5769C11.7024 15.5769 11.4612 15.6755 11.2644 15.8726C11.0676 16.0698 10.9692 16.3111 10.9692 16.5967C10.9692 16.8822 11.0678 17.1234 11.265 17.3202C11.4621 17.5169 11.7034 17.6153 11.989 17.6153ZM11.2808 14.0346H12.6884C12.7012 13.5423 12.7734 13.149 12.9048 12.8548C13.0362 12.5606 13.3551 12.1705 13.8615 11.6846C14.3012 11.2449 14.6381 10.8388 14.8721 10.4663C15.106 10.0939 15.223 9.65407 15.223 9.14685C15.223 8.28613 14.9137 7.61378 14.2952 7.1298C13.6766 6.64583 12.9449 6.40385 12.1 6.40385C11.2654 6.40385 10.5747 6.62661 10.0279 7.07213C9.48109 7.51763 9.09103 8.04229 8.8577 8.64613L10.1423 9.1615C10.2641 8.82945 10.4724 8.50606 10.7673 8.19133C11.0622 7.87658 11.5 7.7192 12.0808 7.7192C12.6718 7.7192 13.1086 7.88107 13.3913 8.2048C13.674 8.52852 13.8154 8.88461 13.8154 9.27308C13.8154 9.61281 13.7186 9.9237 13.525 10.2058C13.3314 10.4878 13.0846 10.7602 12.7846 11.0231C12.1282 11.6154 11.7135 12.0878 11.5404 12.4404C11.3673 12.7929 11.2808 13.3243 11.2808 14.0346ZM12.0016 21.5C10.6877 21.5 9.45268 21.2506 8.29655 20.752C7.1404 20.2533 6.13472 19.5765 5.2795 18.7217C4.42427 17.8669 3.74721 16.8616 3.24833 15.706C2.74944 14.5504 2.5 13.3156 2.5 12.0017C2.5 10.6877 2.74933 9.45268 3.248 8.29655C3.74667 7.1404 4.42342 6.13472 5.27825 5.2795C6.1331 4.42427 7.13834 3.74721 8.29398 3.24833C9.44959 2.74944 10.6844 2.5 11.9983 2.5C13.3122 2.5 14.5473 2.74933 15.7034 3.248C16.8596 3.74667 17.8652 4.42342 18.7205 5.27825C19.5757 6.1331 20.2527 7.13834 20.7516 8.29398C21.2505 9.44959 21.5 10.6844 21.5 11.9983C21.5 13.3122 21.2506 14.5473 20.752 15.7034C20.2533 16.8596 19.5765 17.8652 18.7217 18.7205C17.8669 19.5757 16.8616 20.2527 15.706 20.7516C14.5504 21.2505 13.3156 21.5 12.0016 21.5ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76664 19.225 7.87498 17.675 6.32498C16.125 4.77498 14.2333 3.99998 12 3.99998C9.76664 3.99998 7.87498 4.77498 6.32498 6.32498C4.77498 7.87498 3.99998 9.76664 3.99998 12C3.99998 14.2333 4.77498 16.125 6.32498 17.675C7.87498 19.225 9.76664 20 12 20Z' fill='%238dc63f'/%3E%3C/g%3E%3C/svg%3E");
}
.ico_qmark.lgr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_1145_1686' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1145_1686)'%3E%3Cpath d='M11.989 17.6153C12.2745 17.6153 12.5157 17.5168 12.7125 17.3196C12.9093 17.1225 13.0077 16.8811 13.0077 16.5956C13.0077 16.31 12.9091 16.0689 12.7119 15.8721C12.5148 15.6753 12.2734 15.5769 11.9879 15.5769C11.7024 15.5769 11.4612 15.6755 11.2644 15.8726C11.0676 16.0698 10.9692 16.3111 10.9692 16.5967C10.9692 16.8822 11.0678 17.1234 11.265 17.3202C11.4621 17.5169 11.7034 17.6153 11.989 17.6153ZM11.2808 14.0346H12.6884C12.7012 13.5423 12.7734 13.149 12.9048 12.8548C13.0362 12.5606 13.3551 12.1705 13.8615 11.6846C14.3012 11.2449 14.6381 10.8388 14.8721 10.4663C15.106 10.0939 15.223 9.65407 15.223 9.14685C15.223 8.28613 14.9137 7.61378 14.2952 7.1298C13.6766 6.64583 12.9449 6.40385 12.1 6.40385C11.2654 6.40385 10.5747 6.62661 10.0279 7.07213C9.48109 7.51763 9.09103 8.04229 8.8577 8.64613L10.1423 9.1615C10.2641 8.82945 10.4724 8.50606 10.7673 8.19133C11.0622 7.87658 11.5 7.7192 12.0808 7.7192C12.6718 7.7192 13.1086 7.88107 13.3913 8.2048C13.674 8.52852 13.8154 8.88461 13.8154 9.27308C13.8154 9.61281 13.7186 9.9237 13.525 10.2058C13.3314 10.4878 13.0846 10.7602 12.7846 11.0231C12.1282 11.6154 11.7135 12.0878 11.5404 12.4404C11.3673 12.7929 11.2808 13.3243 11.2808 14.0346ZM12.0016 21.5C10.6877 21.5 9.45268 21.2506 8.29655 20.752C7.1404 20.2533 6.13472 19.5765 5.2795 18.7217C4.42427 17.8669 3.74721 16.8616 3.24833 15.706C2.74944 14.5504 2.5 13.3156 2.5 12.0017C2.5 10.6877 2.74933 9.45268 3.248 8.29655C3.74667 7.1404 4.42342 6.13472 5.27825 5.2795C6.1331 4.42427 7.13834 3.74721 8.29398 3.24833C9.44959 2.74944 10.6844 2.5 11.9983 2.5C13.3122 2.5 14.5473 2.74933 15.7034 3.248C16.8596 3.74667 17.8652 4.42342 18.7205 5.27825C19.5757 6.1331 20.2527 7.13834 20.7516 8.29398C21.2505 9.44959 21.5 10.6844 21.5 11.9983C21.5 13.3122 21.2506 14.5473 20.752 15.7034C20.2533 16.8596 19.5765 17.8652 18.7217 18.7205C17.8669 19.5757 16.8616 20.2527 15.706 20.7516C14.5504 21.2505 13.3156 21.5 12.0016 21.5ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76664 19.225 7.87498 17.675 6.32498C16.125 4.77498 14.2333 3.99998 12 3.99998C9.76664 3.99998 7.87498 4.77498 6.32498 6.32498C4.77498 7.87498 3.99998 9.76664 3.99998 12C3.99998 14.2333 4.77498 16.125 6.32498 17.675C7.87498 19.225 9.76664 20 12 20Z' fill='%23999999'/%3E%3C/g%3E%3C/svg%3E");
}

/* buttons */
.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  background-color: transparent;
  border: 1px solid transparent;
  overflow: hidden;
  vertical-align: middle;
  padding: 10px;
  border-radius: 10px;
  color: var(--bc-wt);
  font-family: var(--font);
  line-height: 1.25;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn.bk {
  background-color: var(--bc-bk-700);
}
.btn.og {
  background-color: var(--pc-og);
}
.btn.gr {
  background-color: var(--bc-gr-200);
  color: var(--bc-bk-500);
}
.btn.outline {
  background-color: var(--bc-wt);
  border: 1px solid var(--bc-wt);
}
.btn.outline.og {
  color: var(--pc-og);
  border-color: var(--pc-og);
}
.btn.outline.bk {
  color: var(--bc-bk-700);
  border-color: var(--bc-bk-700);
}
.btn.outline.dgr {
  color: var(--bc-bk-500);
  border-color: var(--bc-bk-500);
}
.btn.outline.gr {
  color: var(--bc-bk-700);
  border-color: var(--bc-gr-200);
  font-size: 12px;
}
.btn.sm {
  padding: 3px 10px;
  font-size: 12px;
  line-height: 1.6;
}
.btn.nr {
  border-radius: 0;
  padding: 0px 10px;
}
.btn.w-full {
  width: 100%;
  font-size: 16px;
  font-family: var(--font-sb);
}

.button_group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.button_group * {
  width: 100%;
  font-size: 16px;
  font-family: var(--font-sb);
}
.button_group * + * {
  margin-left: 10px;
}

.tabs {
  position: relative;
  width: 100%;
}
.tabs:before {
  content: "";
  display: block;
  position: absolute;
  left: -20px;
  top: 0;
  width: calc(100% + 40px);
  height: 100%;
  border-top: 5px solid var(--bc-gr-100);
  border-bottom: 1px solid var(--bc-gr-100);
  z-index: -1;
}
.tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.tabs ul li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
  padding: 18px 0 12px;
  font-size: 15px;
  font-family: var(--font);
  cursor: pointer;
}
.tabs ul li.is-active {
  font-family: var(--font-b);
}
.tabs ul li.is-active:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid var(--pc-og);
}
.tabs.entrance {
  margin-bottom: 10px;
}
.tabs.entrance:before {
  display: none;
}
.tabs.entrance ul {
  gap: 5px;
}
.tabs.entrance ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-sb);
  color: var(--bc-bk-500);
  padding: 10px 0;
  border: 1px solid var(--bc-gr-200);
}
.tabs.entrance ul li.is-active {
  color: var(--bc-wt);
  font-family: var(--font-sb);
  border-bottom: 0;
  background-color: var(--pc-og);
  border: 1px solid var(--pc-og);
}
.tabs.entrance ul li.is-active:after {
  display: none;
}

.tabs_content {
  display: none;
}
.tabs_content.is-active {
  display: block;
}

* + table {
  margin-top: 20px;
}

.tbl_view {
  width: 100%;
  border: 1px solid var(--bc-gr-200);
}
.tbl_view th, .tbl_view td {
  padding: 6px 10px;
  border: 1px solid var(--bc-gr-200);
  font-size: 12px;
  font-family: var(--font);
}
.tbl_view th {
  font-family: var(--font-b);
  background-color: var(--bc-gr-100);
  text-align: left;
}
.tbl_view thead th {
  text-align: center;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid var(--bc-gr-200);
}
.tbl_view thead + tbody td {
  text-align: center;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid var(--bc-gr-200);
}
.tbl_view tfoot th, .tbl_view tfoot td {
  font-family: var(--font-b);
  text-align: center;
  border: 0;
  background-color: var(--bc-wt);
}

.tbl_view2 {
  width: 100%;
  border-top: 1px solid var(--bc-bk-700);
}
.tbl_view2 th, .tbl_view2 td {
  padding: 6px 10px;
  border-bottom: 1px solid var(--bc-gr-200);
  height: 60px;
  vertical-align: middle;
  font-size: 14px;
  font-family: var(--font);
  text-align: left;
}
.tbl_view2 th .form_group, .tbl_view2 td .form_group {
  margin: 0;
}
.tbl_view2 th .form_group + .form_group, .tbl_view2 td .form_group + .form_group {
  margin-top: 10px;
}
.tbl_view2 th {
  font-family: var(--font-b);
  text-align: left;
  word-break: keep-all;
}
.tbl_view2 + .button_group {
  margin-top: 20px;
}
.tbl_view2 + * {
  margin-top: 10px;
}

.accordion.info > ul > li {
  border-bottom: 1px solid var(--bc-gr-200);
}
.accordion.info > ul > li .accordion-q {
  position: relative;
  padding: 10px 0;
  font-size: 12px;
  font-family: var(--font-m);
  color: var(--bc-bk-700);
  cursor: pointer;
}
.accordion.info > ul > li .accordion-q:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--bc-bk-700);
  border-bottom: 1px solid var(--bc-bk-700);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.accordion.info > ul > li .accordion-a {
  padding: 0px 0 20px;
  font-size: 11px;
  font-family: var(--font);
  line-height: 1.3;
}
.accordion.info > ul > li .accordion-a li em {
  font-family: var(--font);
}
.accordion.info > ul > li .accordion-a li em:before {
  display: inline-block;
  content: "•";
  margin-right: 5px;
}
.accordion.info > ul > li .accordion-a li:not(:last-child) {
  margin-bottom: 20px;
}
.accordion.info > ul > li.is-active .accordion-q {
  font-family: var(--font-b);
}
.accordion.info > ul > li.is-active .accordion-q:after {
  border-color: var(--pc-og);
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.accordion.qna > ul > li {
  width: 100%;
  border-top: 1px solid var(--bc-gr-200);
  color: var(--bc-bk-700);
  font-size: 12px;
  font-family: var(--font);
  line-height: 1.6;
}
.accordion.qna > ul > li strong {
  white-space: nowrap;
  margin-right: 20px;
}
.accordion.qna > ul > li strong.og {
  color: var(--pc-og);
}
.accordion.qna > ul > li .accordion-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  width: 100%;
  padding: 20px 0;
  cursor: pointer;
}
.accordion.qna > ul > li .accordion-a {
  position: relative;
  background-color: var(--bc-gr-50);
  padding: 20px 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 20px;
  width: 100%;
  margin: 0 -20px;
}
.accordion.qna > ul > li .accordion-a .button_group {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 10px;
}
.accordion.qna > ul > li .accordion-a .button_group * {
  width: auto;
  font-size: 12px;
}
.accordion.qna > ul > li .accordion-a .button_group * + * {
  margin-left: 5px;
}
.accordion.qna > ul > li .accordion-a .answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--bc-gr-200);
}
.accordion.qna > ul > li .accordion-a .answer .user {
  margin-bottom: 10px;
}
.accordion.notice > ul > li {
  border-bottom: 1px solid var(--bc-gr-200);
}
.accordion.notice i {
  width: 20px;
  height: 20px;
}
.accordion.notice .accordion-q {
  position: relative;
  padding: 20px;
  line-height: 1.4;
  cursor: pointer;
}
.accordion.notice .accordion-q strong, .accordion.notice .accordion-q span {
  display: block;
}
.accordion.notice .accordion-q strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 14px;
  font-family: var(--font-sb);
  color: var(--bc-bk-700);
}
.accordion.notice .accordion-q span {
  font-size: 12px;
  font-family: var(--font);
  color: var(--bc-bk-500);
}
.accordion.notice .accordion-q:after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--bc-bk-700);
  border-bottom: 1px solid var(--bc-bk-700);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.accordion.notice .accordion-a {
  font-size: 14px;
  font-family: var(--font);
  line-height: 1.7;
  border-top: 1px solid var(--bc-bk-700);
}
.accordion.notice .accordion-a .editor {
  padding: 20px;
}
.accordion.notice .accordion-a .attach {
  position: relative;
  font-size: 12px;
  background-color: var(--bc-gr-50);
  padding: 15px 20px;
}
.accordion.notice .accordion-a .attach li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 5px 0;
}
.accordion.notice .accordion-a .attach li i {
  min-width: 20px;
  margin: 0px 5px 0 0;
}
.accordion.notice .accordion-a .attach li a {
  text-decoration: underline;
  text-underline-position: under;
}

.container-main__visual {
  position: relative;
  width: 100%;
}
.container-main__visual .swiper-pagination span {
  position: absolute;
  bottom: 0px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 51px;
  height: 36px;
  background-color: rgba(var(--bc-bk-700-rgb), 0.3);
  color: var(--bc-wt);
  font-size: 14px;
  font-family: var(--font);
}
.container-main__visual .swiper-pagination i {
  width: 6px;
  height: 6px;
  margin-left: 4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 1px solid var(--bc-wt);
  border-right: 1px solid var(--bc-wt);
}
.container-main__cate {
  margin-bottom: 60px;
  border-bottom: 5px solid var(--bc-gr-200);
}
.container-main__cate ul {
  display: grid;
  grid-gap: 30px 25px;
  grid-template-columns: repeat(3, 1fr);
  padding: 40px 25px;
}
.container-main__cate ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.container-main__cate ul li a {
  position: relative;
}
.container-main__cate ul li a .em {
  top: -10px;
  left: calc(50% - 10px);
}
.container-main__cate ul li a .img {
  border-radius: 20px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin: 0 auto;
}
.container-main__cate ul li a .img + p {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  word-break: keep-all;
}
.container-main__product {
  padding: 0 20px 60px;
}
.container-main__product--green {
  background-color: var(--pc-lg);
  padding: 30px 20px;
}
.container-main__product--green *:not(em) {
  color: var(--bc-wt) !important;
}
.container-main__product--green ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 -8px;
}
.container-main__product--green ul li {
  width: calc(33% - 16px);
  margin: 15px 8px;
}
.container-main__product--green ul li.soldout .img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.container-main__product--green ul li.soldout .img em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  color: var(--bc-wt);
  font-family: var(--font-m);
  font-size: 18px;
  position: absolute;
  left: -20px;
  top: 0;
  width: calc(100% + 40px);
  height: 100%;
  background-color: rgba(var(--bc-bk-900-rgb), 0.5);
}
.container-main__product--green a > strong {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.2em;
  max-height: 2.4em;
  font-size: 16px;
}
.container-main__product--green .info {
  min-height: 95px;
}
.container-main__product--green .info .price {
  font-size: 13px;
}
.container-main__product--green .info .price p span {
  font-size: 11px;
  margin-left: 2px;
}
.container-main__product--green .info .review__sum {
  font-size: 13px;
}
.container-main__product--green .info .review__sum i {
  width: 13px;
  height: 13px;
}
.container-main__product--green .info .sales__idx {
  font-size: 12px;
}
.container-main__product--green .info .sales__store {
  font-size: 13px;
}

.container-members {
  padding: 70px 20px 20px !important;
}
.container-members__login .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 14px;
  font-family: var(--font-m);
  color: var(--bc-bk-500);
}
.container-members__login .link li:not(:first-child) {
  position: relative;
  margin-left: 15px;
}
.container-members__login .link li:not(:first-child):before {
  content: "";
  display: block;
  position: absolute;
  left: -8px;
  top: 4px;
  width: 1px;
  height: 10px;
  background-color: var(--bc-bk-500);
}
.container-members__input .btn {
  font-size: 14px;
  min-width: 100px;
}
.container-members__agree {
  position: relative;
  padding-top: 25px;
}
.container-members__agree:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: -20px;
  width: calc(100% + 40px);
  height: 5px;
  background-color: var(--bc-gr-100);
}
.container-members__agree strong {
  margin-bottom: 20px;
}
.container-members__agree .ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 24px;
  height: 24px;
  background-color: var(--bc-gr-200);
  border-radius: 50%;
}
.container-members__agree .ico i {
  width: 14px;
  height: 14px;
  background-size: cover;
}
.container-members__agree .sub_ck + label {
  font-size: 12px;
  text-decoration: underline;
  text-underline-position: under;
}
.container-members__complete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(var(--vh, 1vh) * 100 - 140px);
}
.container-members__complete.id {
  display: block;
}
.container-members__complete.id p {
  font-size: 14px;
  color: var(--bc-bk-700);
}
.container-members__complete.id p + ul {
  margin-top: 30px;
}
.container-members__complete p {
  font-size: 16px;
  font-family: var(--font-m);
  line-height: 1.5;
  color: var(--bc-bk-500);
}
.container-members__complete p em {
  display: block;
  margin-bottom: 20px;
  font-size: 24px;
  font-family: var(--font-m);
  color: var(--bc-bk-700);
}
.container-members__complete .button_group {
  margin-top: 60px;
}
.container-members .button_group + * {
  margin-top: 20px;
}

.container-product__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
  color: var(--bc-wt);
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
}
.container-product__category h2 {
  color: var(--bc-wt);
  font-size: 20px;
  font-family: var(--font);
  line-height: 25px;
  padding: 10px 25px;
  border: 1px solid var(--bc-wt);
  margin: 20px 0;
}
.container-product__category p {
  line-height: 1.2em;
  height: 2.4em;
  font-size: 12px;
}
.container-product__visual {
  position: relative;
  width: 100%;
}
.container-product__visual .swiper-pagination {
  padding: 10px 20px;
}
.container-product__visual .swiper-pagination span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 10px;
  font-family: var(--font);
}
.container-product__visual .swiper-pagination i {
  width: 6px;
  height: 6px;
  margin-left: 4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 1px solid var(--bc-wt);
  border-right: 1px solid var(--bc-wt);
}
.container-product__product {
  padding: 0 20px 60px;
}
.container-product__product .qna__write {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.container-product__product .qna__write.is-open {
  max-height: 100vh;
  -webkit-transition: max-height 0.6s ease-in-out;
  transition: max-height 0.6s ease-in-out;
}
.container-product__product .qna__view .form_group {
  margin: 30px 0 0;
  padding: 10px 0;
  border-top: 1px solid var(--bc-bk-700);
}
.container-product__product .review ul li {
  padding-bottom: 30px;
}
.container-product__product .review ul li:not(:last-child) {
  border-bottom: 1px solid var(--bc-gr-100);
}
.container-product__product .review ul li:not(:first-child) {
  padding-top: 30px;
}
.container-product__product .review ul li .user {
  margin-bottom: 20px;
}
.container-product__product .review ul li .article img {
  max-width: 80px;
  margin-bottom: 0;
}
.container-product__product .review ul li .article p {
  line-height: 1.6;
}
.container-product__product .review ul li .article p + p {
  margin-top: 20px;
}
.container-product .tabs {
  margin-left: -20px;
  width: calc(100% + 40px);
}

.container-search {
  padding-bottom: 60px;
}
.container-search__recommend {
  background-color: var(--bc-gr-50);
  padding: 20px;
}
.container-search__recommend [class*=__top] {
  margin-bottom: 10px;
}
.container-search__recommend .swiper-slide {
  width: auto;
  margin-right: 5px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.6;
  font-family: var(--font-m);
}
.container-search__recommend .swiper-slide a {
  display: block;
  padding: 5px 15px;
  background-color: var(--bc-wt);
  border-radius: 50px;
  border: 1px solid var(--bc-gr-200);
}
.container-search__recommend .swiper-slide:last-of-type {
  margin-right: 0;
}
.container-search__popular {
  padding: 20px;
}
.container-search__popular ol.num > li {
  font-family: var(--font-m);
  line-height: 2.1;
}
.container-search__popular ol.num > li:before {
  display: inline-block;
  width: 30px;
}
.container-search__result {
  padding: 20px 20px 60px;
}

.user {
  font-family: var(--font);
}
.user em {
  position: relative;
  margin-right: 11px;
}
.user em:after {
  content: "";
  display: block;
  position: absolute;
  right: -8px;
  top: calc(50% - 4px);
  width: 1px;
  height: 8px;
  background-color: var(--bc-bk-700);
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 20px;
}
.rating > * {
  margin-right: 5px;
}
.rating i {
  width: 17px;
  height: 17px;
}
.rating em {
  font-size: 14px;
  font-family: var(--font);
  color: var(--pc-og);
}

.result__noresult {
  padding: 20px 0 0px;
  text-align: center;
  font-family: var(--font-m);
  font-size: 14px;
}
.result__noresult + .result__filter {
  padding-top: 50px;
}

[class$=__summary] {
  padding: 30px 0px 0;
}
[class$=__summary] > strong {
  font-size: 18px;
  font-family: var(--font-sb);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.2em;
  max-height: 2.4em;
  margin-bottom: 10px;
}
[class$=__summary] .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  font-size: 24px;
  margin-bottom: 20px;
}
[class$=__summary] .price div span {
  display: block;
  font-size: 15px;
  text-decoration: line-through;
  color: var(--bc-gr-200);
}
[class$=__summary] .price div em {
  color: var(--pc-og);
}
[class$=__summary] .review__sum {
  font-size: 18px;
  margin-bottom: 20px;
}
[class$=__summary] .review__sum i {
  width: 18px;
  height: 18px;
}
[class$=__summary] > p {
  font-size: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bc-bk-700);
}
[class$=__summary] > ul {
  padding: 30px 0;
}
[class$=__summary] > ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 12px;
  line-height: 1.8;
}
[class$=__summary] > ul li strong {
  min-width: 60px;
}
[class$=__summary] .sales {
  margin-bottom: 20px;
}

[class$=__related] {
  padding: 0px 0px 30px;
}

[class$=__detail] {
  padding-bottom: 0;
  font-size: 12px;
}
[class$=__detail] img {
  display: block;
  border-radius: 0;
  margin-bottom: 20px;
}
[class$=__detail] .tabs {
  margin-bottom: 30px;
}
[class$=__detail] .detail {
  line-height: 1.8;
  color: var(--bc-bk-500);
  max-height: 400px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
[class$=__detail] .detail > * {
  margin-bottom: 20px;
}
[class$=__detail] .detail strong {
  color: var(--bc-bk-700);
  display: block;
  font-size: 24px;
  font-family: var(--font);
  margin-bottom: 0;
}
[class$=__detail] .detail strong + p {
  color: var(--bc-bk-700);
}
[class$=__detail] .detail h4 {
  font-size: 18px;
  font-family: var(--font-m);
  margin-bottom: 0;
}
[class$=__detail] .detail + .button_group {
  position: relative;
}
[class$=__detail] .detail + .button_group:before {
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--bc-wt-rgb), 0)), to(var(--bc-wt)));
  background: linear-gradient(180deg, rgba(var(--bc-wt-rgb), 0), var(--bc-wt) 100%);
}
[class$=__detail] .detail.is-open {
  max-height: inherit;
  -webkit-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
}
[class$=__detail] .detail.is-open + .button_group:before {
  display: none;
}

[class$=__filter] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 20px;
}
[class$=__filter] select {
  width: auto;
}
[class$=__filter] .form_group {
  margin-bottom: 0;
}

[class$=__prdlist] ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px 10px;
}
[class$=__prdlist] ul li {
  width: calc(33.33% - 7px);
  letter-spacing: -0.05em;
}
[class$=__prdlist] ul li.soldout .img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
[class$=__prdlist] ul li.soldout .img em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  left: -20px;
  top: 0;
  width: calc(100% + 40px);
  height: 100%;
  background-color: rgba(var(--bc-bk-900-rgb), 0.5);
  color: var(--bc-wt);
  font-family: var(--font-m);
  font-size: 24px;
  z-index: 2;
}
[class$=__prdlist] a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  height: 100%;
}
[class$=__prdlist] a .img {
  width: 100%;
}
[class$=__prdlist] a > strong {
  font-size: 16px;
  font-family: var(--font);
  letter-spacing: -1px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.2em;
  max-height: 2.4em;
}
[class$=__prdlist] .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: auto;
  min-height: 95px;
}
[class$=__prdlist] .info .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  font-size: 14px;
  font-family: var(--font-b);
}
[class$=__prdlist] .info .price em {
  color: var(--pc-og);
}
[class$=__prdlist] .info .price p {
  font-family: var(--font-b);
}
[class$=__prdlist] .info .price p span {
  margin-left: 3px;
  font-size: 14px;
  font-family: var(--font);
}
[class$=__prdlist] .info .review__sum {
  font-size: 13px;
}
[class$=__prdlist] .info .review__sum i {
  width: 13px;
  height: 13px;
}
[class$=__prdlist] .info .sales__idx {
  margin-top: auto;
  font-size: 12px;
}
[class$=__prdlist] .info .sales__store {
  font-size: 13px;
}
[class$=__prdlist] .button_group {
  margin-top: 30px;
}

.review__sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  font-family: var(--font);
  font-size: 13px;
}
.review__sum a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 5px;
}
.review__sum em {
  color: var(--pc-og);
  font-family: var(--font-eb);
}
.review__sum i {
  width: 13px;
  height: 13px;
  background-size: auto 100%;
}
.review__sum strong {
  font-family: var(--font-eb);
}

.sales {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.sales__idx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  font-size: 14px;
  font-family: var(--font);
}
.sales__store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  color: var(--pc-lg);
  font-size: 15px;
  font-family: var(--font-b);
}
.sales__store i {
  width: 20px;
  height: 20px;
  background-size: auto 100%;
}

.container-point__my {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 20px;
  background-color: var(--bc-gr-50);
  font-size: 13px;
}
.container-point__list .tabs_content {
  padding: 20px;
}
.container-point__list table {
  margin-top: 20px;
}
.container-point__list .tabs:before {
  border-top: 0;
}

.container-mypage__info {
  padding: 30px 20px 20px 20px;
}
.container-mypage__info .info__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--bc-bk-700);
}
.container-mypage__info .info__point p {
  font-size: 14px;
  font-family: var(--font-m);
}
.container-mypage__info .info__point p a {
  display: inline-block;
  font-family: var(--font-b);
  text-decoration: underline;
}
.container-mypage__info .info__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 40px;
}
.container-mypage__info .info__address div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: calc(100% - 80px);
}
.container-mypage__info .info__address p {
  font-size: 14px;
  font-family: var(--font-sb);
  color: var(--bc-bk-500);
}
.container-mypage__info .info__address p + p {
  color: var(--bc-bk-700);
  margin: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 65%;
}
.container-mypage__info .info__address button {
  min-width: 78px;
}
.container-mypage__info .info__count {
  margin-bottom: 40px;
}
.container-mypage__info .info__count ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 -5px;
}
.container-mypage__info .info__count ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  margin: 0 5px;
}
.container-mypage__info .info__count ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  border: 1px solid var(--bc-gr-200);
  height: 110px;
  width: 100%;
  text-align: center;
}
.container-mypage__info .info__count ul li strong {
  display: block;
  font-size: 24px;
  font-family: var(--font-sb);
  margin-bottom: 15px;
  line-height: 100%;
}
.container-mypage__info .info__count ul li p {
  font-size: 14px;
}
.container-mypage__info .info__link {
  margin-bottom: 40px;
}
.container-mypage__info .info__link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-radius: 10px;
  padding: 20px 10px;
  background-color: #F9F9F9;
}
.container-mypage__info .info__link ul li {
  text-align: center;
  min-width: 77px;
}
.container-mypage__info .info__link ul li a {
  font-size: 12px;
  font-family: var(--font-m);
  color: var(--bc-bk-500);
}
.container-mypage__info .info__link ul li a i {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  background-size: cover;
}
.container-mypage__info .info__fnb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.container-mypage__info .info__fnb ul li a {
  font-size: 14px;
  font-family: var(--font-sb);
  color: var(--bc-bk-700);
  margin: 0 10px;
}
.container-mypage__input {
  padding: 20px;
}
.container-mypage__input > p {
  font-size: 13px;
  font-family: var(--font-m);
  margin-bottom: 20px;
}
.container-mypage__input h5 {
  font-size: 14px;
  font-family: var(--font-m);
}
.container-mypage__withdrawal {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(var(--vh, 1vh) * 100 - 140px);
}
.container-mypage__withdrawal p {
  font-size: 16px;
  font-family: var(--font-m);
  line-height: 1.5;
  text-align: center;
  color: var(--bc-bk-500);
}
.container-mypage__withdrawal p em {
  display: block;
  margin-bottom: 20px;
  font-size: 24px;
  font-family: var(--font-m);
  color: var(--bc-bk-700);
}
.container-mypage__withdrawal .form_group {
  margin-top: 30px;
}
.container-mypage__withdrawal .form_group label:before {
  font-family: var(--font-m) !important;
}
.container-mypage__withdrawal .button_group {
  margin-top: 30px;
}

.container-offline__count {
  background-color: var(--bc-gr-50);
  padding: 20px;
}
.container-offline__count p {
  font-size: 13px;
  text-align: center;
}
.container-offline__count p strong {
  font-family: var(--font-eb);
}
.container-offline__list {
  padding: 20px;
}
.container-offline__list .button_group {
  margin-top: 30px;
}
.container-offline__list .store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: -10px;
}
.container-offline__list .store p {
  font-size: 14px;
  font-family: var(--font-m);
}

.container-delivery__notice {
  background-color: var(--bc-gr-50);
  padding: 10px 20px;
}
.container-delivery__notice p {
  font-size: 12px;
}
.container-delivery__list {
  padding: 20px;
}
.container-delivery__list .list {
  margin-top: 20px;
}
.container-delivery__list .list ul {
  border-top: 1px solid var(--bc-bk-700);
}
.container-delivery__list .list ul li {
  padding: 30px 0;
}
.container-delivery__list .list ul li:first-child {
  padding: 20px 0 30px;
}
.container-delivery__list .list ul li:not(:last-child) {
  border-bottom: 1px solid var(--bc-gr-200);
}
.container-delivery__list .list ul li .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 16px;
  font-family: var(--font-sb);
  margin-bottom: 20px;
}
.container-delivery__list .list ul li .name span {
  display: inline-block;
  border: 1px solid var(--pc-og);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 10px;
  color: var(--pc-og);
  margin-left: 10px;
}
.container-delivery__list .list ul li .add,
.container-delivery__list .list ul li .phone {
  font-size: 13px;
  font-family: var(--font-m);
  color: var(--bc-bk-500);
}
.container-delivery__list .list ul li .phone {
  margin: 5px 0 20px 0;
  line-height: 100%;
}
.container-delivery__list .list ul li .phone span {
  position: relative;
  display: inline-block;
  padding-right: 5px;
  margin-right: 5px;
}
.container-delivery__list .list ul li .phone span:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: 9px;
  background-color: var(--bc-bk-500);
}
.container-delivery__list .list ul li:last-child .available i + .tooltip {
  top: inherit;
  bottom: 100%;
}
.container-delivery__write {
  padding: 20px;
}
.container-delivery__write .btn {
  font-size: 14px;
  min-width: 100px;
}
.container-delivery__write .tabs-area {
  border-top: 1px solid var(--bc-bk-700);
  padding-top: 20px;
}
.container-delivery__write .tabs-area > strong {
  display: block;
  font-size: 14px;
  font-family: var(--font-m);
  margin-bottom: 10px;
}

.container-cart {
  padding-bottom: 80px;
}
.container-cart__select {
  border-top: 5px solid var(--bc-gr-100);
  border-bottom: 5px solid var(--bc-gr-100);
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  font-size: 12px;
  font-family: var(--font);
}
.container-cart__select strong {
  margin-bottom: 0;
  font-size: 13px;
  font-family: var(--font-b);
}
.container-cart__select p {
  color: var(--bc-bk-500);
  font-size: 13px;
  font-family: var(--font-m);
}
.container-cart__select button {
  margin-left: auto;
  color: var(--bc-bk-700);
  border: 1px solid var(--bc-bk-700);
  padding: 3px 5px;
  font-size: 12px;
  font-family: var(--font-m);
}
.container-cart__select .sales__store {
  gap: 2px;
  font-size: 12px;
  font-family: var(--font-m);
}
.container-cart__select .sales__store i {
  width: 15px;
  height: 15px;
}
.container-cart__list {
  padding: 20px;
}
.container-cart__list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  padding: 15px 0;
  gap: 0 10px;
}
.container-cart__list ul li.soldout > em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  left: -20px;
  top: 0;
  width: calc(100% + 40px);
  height: 100%;
  background-color: rgba(var(--bc-bk-900-rgb), 0.5);
  color: var(--bc-wt);
  font-family: var(--font-m);
  font-size: 24px;
  z-index: 2;
}
.container-cart__list ul li.soldout i {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_698_2042' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_698_2042)'%3E%3Cpath d='M6.40008 18.3068L5.69238 17.5991L11.2924 11.9991L5.69238 6.39911L6.40008 5.69141L12.0001 11.2914L17.6001 5.69141L18.3078 6.39911L12.7078 11.9991L18.3078 17.5991L17.6001 18.3068L12.0001 12.7068L6.40008 18.3068Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
}
.container-cart__list ul li.soldout span {
  visibility: hidden;
  opacity: 0;
}
.container-cart__list ul li .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: var(--bc-gr-100);
  min-width: 80px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin-right: 10px;
}
.container-cart__list ul li .img img {
  width: 80px;
}
.container-cart__list ul li .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
  gap: 10px;
}
.container-cart__list ul li .detail strong,
.container-cart__list ul li .detail em {
  display: block;
  font-family: var(--font-m);
}
.container-cart__list ul li .detail strong {
  font-size: 14px;
  font-family: var(--font-m);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.4em;
  max-height: 1.4em;
  padding-right: 20px;
}
.container-cart__list ul li .detail em {
  font-size: 14px;
  margin-left: auto;
}
.container-cart__list ul li .detail em span {
  color: var(--bc-bk-100);
  margin-right: 10px;
  text-decoration: line-through;
}
.container-cart__list ul li .detail .btn_del {
  position: absolute;
  right: 0;
  top: -3px;
  z-index: 2;
}
.container-cart__list ul li .detail .btn_del i {
  width: 24px;
  height: 24px;
  background-position: center;
}
.container-cart__list ul + p {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}
.container-cart__sum {
  border-top: 5px solid var(--bc-gr-100);
  padding: 20px;
}

.container-qna__list {
  padding: 0 20px;
}
.container-qna__modify {
  padding: 20px;
  border-top: 1px solid var(--bc-gr-100);
  padding-top: 20px;
}
.container-qna__qnalist {
  border-bottom: 1px solid var(--bc-gr-100);
}
.container-qna__qnalist .qnalist__list {
  padding: 0 20px;
}
.container-qna__qnalist--no > p {
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.container-review {
  padding: 20px 0;
}
.container-review__noti {
  padding: 20px;
  border-top: 5px solid var(--bc-gr-100);
  text-align: center;
  font-size: 12px;
}
.container-review__noti em {
  display: block;
  font-size: 10px;
  margin-top: 5px;
  color: var(--pc-og);
}
.container-review__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 40px 20px;
  border-top: 1px solid var(--bc-gr-100);
}
.container-review__rating .star {
  margin: 0 10px;
}
.container-review__rating .star i {
  width: 35px;
  height: 35px;
  background-size: cover;
}
.container-review__write {
  padding: 0 20px;
}

.container-odr__list {
  padding: 20px 0;
}
.container-odr__select {
  padding: 10px 20px;
}
.container-odr__select .form_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.container-odr__select .form_group strong {
  width: auto;
  white-space: nowrap;
  margin: 0;
}
.container-odr__select .form_group p {
  gap: 8px;
  width: 100%;
}
.container-odr__select .form_group p * {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: auto;
  white-space: nowrap;
}
.container-odr__select .form_group p span {
  text-align: center;
}
.container-odr__select .form_group p select {
  padding: 8px 20px 8px 10px;
}
.container-odr__select .form_group p + p {
  margin: 0;
}
.container-odr__select .button_group {
  gap: 10px;
}
.container-odr__select .button_group button {
  margin: 0;
}
.container-odr__select .button_group button.sm {
  padding: 5px;
  font-size: 14px;
}
.container-odr [class*=__view] > ul > li {
  padding: 20px;
  border-top: 5px solid var(--bc-gr-100);
}
.container-odr [class*=__view] > ul .number {
  border-bottom: 1px solid var(--bc-gr-100);
  padding-bottom: 10px;
}
.container-odr [class*=__view] > ul .number p {
  font-size: 14px;
  color: var(--bc-bk-700);
  margin-bottom: 5px;
}
.container-odr [class*=__view] > ul .number p strong {
  font-size: 16px;
  font-family: var(--font-sb);
}
.container-odr [class*=__view] > ul .number p strong span {
  display: inline-block;
  margin-left: 10px;
}
.container-odr [class*=__view] > ul .summary {
  padding: 20px 0;
}
.container-odr [class*=__view] > ul .summary > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 14px;
  color: var(--bc-bk-500);
  font-family: var(--font-m);
  gap: 5px;
}
.container-odr [class*=__view] > ul .summary > * span {
  color: var(--bc-bk-500);
  font-size: 14px;
  font-family: var(--font-m);
  margin-left: auto;
}
.container-odr [class*=__view] > ul .summary > * + p {
  margin-top: 20px;
}
.container-odr [class*=__view] > ul .summary > * strong {
  font-size: 16px;
  color: var(--bc-bk-700);
}
.container-odr [class*=__view] > ul .summary > *.og {
  color: var(--pc-og);
}
.container-odr [class*=__view] > ul .summary > * .sales__store {
  gap: 2px;
  font-size: 12px;
  font-family: var(--font-m);
}
.container-odr [class*=__view] > ul .summary > * .sales__store i {
  width: 15px;
  height: 15px;
}
.container-odr [class*=__view] > ul .button_group.list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.container-odr [class*=__view] > ul .button_group.list button {
  width: 80px;
}
.container-odr [class*=__view] .odr_detail {
  height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease, opacity 0.3s ease;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.container-odr [class*=__view] .odr_detail.is-open {
  height: auto;
  opacity: 1;
  margin-top: -15px;
}
.container-odr [class*=__view] .odr_info {
  padding: 20px 0;
}
.container-odr [class*=__view] .odr_info p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 14px;
  color: var(--bc-bk-500);
  margin-bottom: 10px;
}
.container-odr [class*=__view] .odr_info p strong {
  font-family: var(--font-m);
  color: var(--bc-bk-700);
  margin-right: 10px;
  min-width: 70px;
}
.container-odr [class*=__view] .odr_info p .btn {
  margin-left: auto;
  font-family: var(--font-sb);
  margin-top: -5px;
}
.container-odr [class*=__view] .listview {
  padding: 0;
}
.container-odr [class*=__view] .listview ul li {
  border-bottom: 1px solid var(--bc-gr-100);
}
.container-odr [class*=__view] .listview ul li .button_group {
  padding-bottom: 15px;
}
.container-odr [class*=__view] .listview .list .detail p {
  font-size: 12px;
  font-family: var(--font-b);
  color: var(--bc-bk-700);
}
.container-odr [class*=__view] .listview .list .detail p span {
  font-family: var(--font);
  display: block;
  margin: 5px 0 0 0;
  color: var(--bc-bk-500);
}
.container-odr [class*=__view] .button_group.more {
  padding: 10px 20px 30px 20px;
}
.container-odr .container-odr__view--refund > ul > li {
  padding: 20px 20px 0 20px;
}
.container-odr .container-odr__view--refund .listview ul li {
  border-bottom: 0;
}
.container-odr__write {
  border-top: 5px solid var(--bc-gr-100);
  padding: 20px 20px 10px 20px;
}
.container-odr__write input[type=radio] + label {
  font-size: 14px;
}

.container-cs__about {
  padding: 30px 0;
}
.container-cs__about h2 {
  text-align: center;
  color: var(--bc-bk-500);
  font-family: var(--font);
}
.container-cs__about h2 strong {
  font-family: var(--font-eb);
  color: var(--bc-bk-700);
}
.container-cs__about h5 {
  font-size: 16px;
  font-family: var(--font-sb);
  margin-bottom: 20px;
}
.container-cs__about p {
  font-size: 14px;
  font-family: var(--font);
}
.container-cs__about .about__ul {
  width: 100%;
  height: 450px;
  margin-top: 30px;
  padding: 30px;
  background: url(../img/sub/bg_about.jpg) center/cover no-repeat;
  font-size: 14px;
  font-family: var(--font-m);
  color: var(--bc-wt);
  line-height: 1.4;
  letter-spacing: -0.05em;
}
.container-cs__about .about__ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}
.container-cs__about .about__ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M16 16H2V2H12V0H2C0.89 0 0 0.89 0 2V16C0 16.5304 0.210714 17.0391 0.585786 17.4142C0.960859 17.7893 1.46957 18 2 18H16C16.5304 18 17.0391 17.7893 17.4142 17.4142C17.7893 17.0391 18 16.5304 18 16V8H16M4.91 7.08L3.5 8.5L8 13L18 3L16.59 1.58L8 10.17L4.91 7.08Z' fill='%2300afa1'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
}
.container-cs__about .about__greeting {
  padding: 20px;
}
.container-cs__about .about__greeting p {
  line-height: 24px;
}
.container-cs__about .about__greeting p + .a-r {
  margin-top: 10px;
}
.container-cs__about .about__jeonju {
  position: relative;
  padding: 20px;
}
.container-cs__about .about__jeonju > * {
  display: block;
}
.container-cs__about .about__jeonju > strong {
  text-align: right;
  font-size: 30px;
  font-family: var(--font-eb);
  color: var(--bc-gr-200);
  line-height: 1;
}
.container-cs__about .about__jeonju > span {
  width: 100%;
  height: 30px;
  border: 10px solid var(--bc-gr-200);
  border-bottom: 0;
  margin-top: -4px;
  margin-bottom: 20px;
}
.container-cs__about .about__jeonju img {
  width: 100%;
  margin-bottom: 20px;
}
.container-cs__about .about__jeonju .dot {
  margin-bottom: 60px;
}
.container-cs__about .about__jeonju .map {
  margin-top: 30px;
}
.container-cs__about .about__jeonju .map li {
  margin-bottom: 20px;
}
.container-cs__about .about__jeonju .map strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 10px;
}
.container-cs__about .about__jeonju .map i {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}
.container-cs__notice .button_group {
  padding: 20px;
}
.container-cs__qna {
  padding: 20px;
}
.container-cs__qna .btn {
  font-size: 14px;
}
.container-cs__qna .qna__list {
  margin-top: 20px;
  border-top: 1px solid var(--bc-bk-700);
}
.container-cs__policy {
  padding: 30px 20px;
}
.container-cs__policy p {
  font-size: 14px;
  color: var(--bc-bk-700);
  margin-bottom: 30px;
  line-height: 24px;
}

.container-order {
  padding-bottom: 60px;
}
.container-order__address {
  padding: 20px;
}
.container-order__address .btn {
  min-width: 80px;
}
.container-order__address .text-box {
  margin-top: 10px;
}
.container-order__list {
  border-top: 5px solid var(--bc-gr-100);
}
.container-order__list .listview .list {
  border-bottom: 1px solid var(--bc-gr-100);
}
.container-order__list .listview__sum {
  padding: 0 20px 20px 20px;
  font-size: 14px;
}
.container-order__list .listview__sum .sum {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.container-order__point {
  border-top: 5px solid var(--bc-gr-100);
  padding: 20px;
}
.container-order__point input {
  text-align: right;
}
.container-order__point .btn {
  min-width: 80px;
}
.container-order__point .point__sum {
  padding: 20px 0 0 0;
  border-top: 1px solid var(--bc-bk-700);
}
.container-order__pay {
  border-top: 5px solid var(--bc-gr-100);
  padding: 20px;
}
.container-order__pay input[type=radio] + label {
  font-size: 14px;
  font-family: var(--font-b);
}
.container-order__pay .form_group strong {
  margin-bottom: 20px;
}
.container-order__pay .form_group input[type=radio]:checked + label + div {
  max-height: 100vh;
  -webkit-transition: max-height 0.6s ease-in-out;
  transition: max-height 0.6s ease-in-out;
}
.container-order__pay .form_group input[type=radio] + label + div {
  width: calc(100% + 40px);
  margin-left: -20px;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  max-height: 0;
  overflow: hidden;
}
.container-order__pay .form_group > div {
  margin-bottom: 10px;
}
.container-order__pay .form_group > div .text-box__gr {
  margin: 10px 0;
  padding: 20px;
}
.container-order__pay .form_group > div .text-box__gr strong {
  margin-bottom: 5px;
}
.container-order__pay .form_group .text-box {
  margin-top: 10px;
}
.container-order__msg {
  margin-bottom: 20px;
}
.container-order__info {
  padding: 0 20px;
}

.container-receipt {
  padding: 20px;
}
.container-receipt__store {
  padding: 30px 0 20px 0;
}
.container-receipt__store p {
  font-size: 14px;
  color: var(--bc-bk-500);
  margin-bottom: 10px;
}
.container-receipt__store p strong {
  font-family: var(--font-sb);
  color: var(--bc-bk-700);
}
.container-receipt__store div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.container-receipt__store div p {
  color: var(--bc-bk-500);
}
.container-receipt__store div p em {
  margin-right: 10px;
  font-family: var(--font-sb);
}
.container-receipt__store div p + p {
  margin-left: 15px;
}
.container-receipt__view {
  margin-top: 30px;
  border-top: 1px solid var(--bc-bk-700);
  padding-top: 20px;
}
.container-receipt__view > p {
  font-size: 14px;
  color: var(--bc-bk-500);
  margin-bottom: 10px;
}
.container-receipt__view > p strong {
  font-family: var(--font-b);
  color: var(--bc-bk-700);
  margin-right: 10px;
}
.container-receipt__view .tbl_view {
  margin-bottom: 20px;
}
.container-receipt__receipt {
  border: 1px solid var(--bc-gr-100);
}

.container-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(var(--vh, 1vh) * 100 - 140px);
  padding: 0 20px;
  text-align: center;
}
.container-error i {
  display: block;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='120' height='120' viewBox='0 0 120 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M115.272 52.8091C116.537 52.8091 117.541 53.8145 117.541 55.0823C117.541 56.35 116.537 57.3555 115.272 57.3555C114.006 57.3555 113.002 56.35 113.002 55.0823C113.002 53.8145 114.006 52.8091 115.272 52.8091Z' fill='%23D9D9D9'/%3E%3Cpath d='M109.248 13.5962C113.831 13.5962 117.541 17.312 117.541 21.9021C117.541 26.4922 113.831 30.2079 109.248 30.2079C104.665 30.2079 100.955 26.4922 100.955 21.9021C100.955 17.312 104.665 13.5962 109.248 13.5962Z' fill='%23F15A29'/%3E%3Cpath d='M101.742 115.452C103.008 115.452 104.012 116.458 104.012 117.725C104.012 118.993 103.008 119.999 101.742 119.999C100.477 119.999 99.4727 118.993 99.4727 117.725C99.4727 116.458 100.477 115.452 101.742 115.452Z' fill='%23D9D9D9'/%3E%3Cpath d='M85.1574 3.01807C86.4231 3.01807 87.427 4.02352 87.427 5.29126C87.427 6.55899 86.4231 7.56445 85.1574 7.56445C83.8916 7.56445 82.8877 6.55899 82.8877 5.29126C82.8877 4.02352 83.8916 3.01807 85.1574 3.01807Z' fill='%23D9D9D9'/%3E%3Cpath d='M73.8528 92.0625C74.6821 92.0625 75.3805 92.7182 75.3805 93.5925C75.3805 94.4668 74.7258 95.1226 73.8528 95.1226C72.9799 95.1226 72.3252 94.4668 72.3252 93.5925C72.3252 92.7182 72.9799 92.0625 73.8528 92.0625Z' fill='%23555555'/%3E%3Cpath d='M64.8146 44.5469V65.6613C64.8146 68.5902 62.4576 70.9508 59.5333 70.9508C56.6089 70.9508 54.252 68.5902 54.252 65.6613V44.5469C54.252 41.6179 56.6089 39.2573 59.5333 39.2573C60.9736 39.2573 62.3267 39.8693 63.2433 40.7873C64.2035 41.7491 64.771 43.0605 64.771 44.5031L64.8146 44.5469Z' fill='%23222222'/%3E%3Cpath d='M63.2433 78.5112C64.2035 79.473 64.771 80.7844 64.771 82.227C64.771 83.6696 64.1599 85.0248 63.2433 85.9428C62.2831 86.9046 60.9736 87.4728 59.5333 87.4728C56.6089 87.4728 54.252 85.1122 54.252 82.1833C54.252 80.7407 54.863 79.3856 55.7796 78.4675C56.7398 77.5058 58.0493 76.9375 59.4896 76.9375C60.93 76.9375 62.2831 77.5495 63.1996 78.4675L63.2433 78.5112Z' fill='%23222222'/%3E%3Cpath d='M36.9279 0C38.1936 0 39.1975 1.00545 39.1975 2.27319C39.1975 3.54092 38.1936 4.54637 36.9279 4.54637C35.6621 4.54637 34.6582 3.54092 34.6582 2.27319C34.6582 1.00545 35.6621 0 36.9279 0Z' fill='%23D9D9D9'/%3E%3Cpath d='M33.1722 89.0483C34.0015 89.0483 34.6998 89.7041 34.6998 90.5784C34.6998 91.4527 34.0451 92.1084 33.1722 92.1084C32.2992 92.1084 31.6445 91.4527 31.6445 90.5784C31.6445 89.7041 32.2992 89.0483 33.1722 89.0483Z' fill='%23555555'/%3E%3Cpath d='M12.8322 113.177C14.0979 113.177 15.1018 114.182 15.1018 115.45C15.1018 116.718 14.0979 117.723 12.8322 117.723C11.5664 117.723 10.5625 116.718 10.5625 115.45C10.5625 114.182 11.5664 113.177 12.8322 113.177Z' fill='%23D9D9D9'/%3E%3Cpath d='M6.02333 43.7563C9.34052 43.7563 12.0467 46.4667 12.0467 49.789C12.0467 53.1114 9.34052 55.8217 6.02333 55.8217C2.70613 55.8217 0 53.1114 0 49.789C0 46.4667 2.70613 43.7563 6.02333 43.7563Z' fill='%23F15A29'/%3E%3Cpath d='M5.28333 10.5781C6.5491 10.5781 7.55299 11.5836 7.55299 12.8513C7.55299 14.1191 6.5491 15.1245 5.28333 15.1245C4.01756 15.1245 3.01367 14.1191 3.01367 12.8513C3.01367 11.5836 4.01756 10.5781 5.28333 10.5781Z' fill='%23D9D9D9'/%3E%3Cpath d='M105.891 95.0791H78.3929C77.5636 95.0791 76.8652 94.4234 76.8652 93.5491C76.8652 92.6748 77.5199 92.019 78.3929 92.019H105.891C106.72 92.019 107.418 92.6748 107.418 93.5491C107.418 94.4234 106.764 95.0791 105.891 95.0791Z' fill='%23555555'/%3E%3Cpath d='M28.6327 92.0649H16.4114C15.5821 92.0649 14.8838 91.4092 14.8838 90.5349C14.8838 89.6606 15.5385 89.0049 16.4114 89.0049H28.6327C29.462 89.0049 30.1603 89.6606 30.1603 90.5349C30.1603 91.4092 29.5056 92.0649 28.6327 92.0649Z' fill='%23555555'/%3E%3Cpath d='M119.246 100.674C121.384 104.39 118.722 109.023 114.444 109.023H6.19909C1.92166 109.023 -0.74083 104.39 1.39789 100.674L55.5205 6.77366C57.6593 3.05787 62.9842 3.05787 65.1229 6.77366L119.246 100.674ZM109.774 100.28L60.2781 14.4238L10.7821 100.28H109.774Z' fill='%23F15A29'/%3E%3C/svg%3E");
  width: 120px;
  height: 120px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 40px;
}
.container-error p {
  font-size: 16px;
  font-family: var(--font-m);
  color: var(--bc-bk-500);
  line-height: 25px;
}
.container-error p em {
  display: block;
  font-family: var(--font-m);
  font-size: 24px;
  color: var(--bc-bk-700);
  margin-bottom: 30px;
}
.container-error .button_group {
  margin-top: 40px;
}