@charset "UTF-8";
/* Gaps */
/**
  * Modern CSS Reset Tweaks
  * ================================================== */
html,
body {
  position: relative;
  width: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
  height: calc(var(--vh, 1vh) * 100);
  font-family: var(--font-r);
  line-height: 1.5;
  word-break: keep-all;
  word-wrap: break-word;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  color: var(--color-gray-900);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
}

/* Box sizing normalization */
*,
::after,
::before {
  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 {
  box-sizing: border-box;
  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: "";
}

/**
      * Input Reset
      */
input:required,
input {
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: 0 0 0 30px var(--color-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;
          appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  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 {
  max-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;
     -moz-appearance: button;
          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;
     -moz-appearance: textfield;
          appearance: textfield;
  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;
          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 {
  box-sizing: content-box;
  overflow: visible;
  background: var(--color-black);
  border: 0;
  height: 0.1rem;
  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: 1rem;
}

/**
      * Prevent `sub` and `sup` elements from affecting the line height in
      * all browsers.
      */
sub,
sup {
  font-size: 1rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.5rem;
}

sup {
  top: -0.5rem;
}

/**
      * 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;
     -moz-appearance: none;
          appearance: none;
  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;
     -moz-appearance: button;
          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;
     -moz-appearance: textfield;
          appearance: textfield;
  /* 1 */
  outline-offset: -0.2rem;
  /* 2 */
}

/**
      * Remove the inner padding in Chrome and Safari on macOS.
      */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          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;
          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;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-b);
  font-weight: normal;
  color: inherit;
}

th,
td {
  font-weight: normal;
}

p,
label,
span {
  color: inherit;
  font-family: inherit;
  font-weight: normal;
}

strong,
em {
  font-family: var(--font-b);
  font-weight: normal;
  font-style: normal;
  color: inherit;
}

a,
button {
  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;
}

.blind,
caption {
  position: absolute !important;
  left: -999.9rem;
  top: -999.9rem;
  width: 0.1rem !important;
  height: 0.1rem !important;
  padding: 0 !important;
  margin: -0.1rem !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.w-1 {
  width: 1% !important;
}

.w-2 {
  width: 2% !important;
}

.w-3 {
  width: 3% !important;
}

.w-4 {
  width: 4% !important;
}

.w-5 {
  width: 5% !important;
}

.w-6 {
  width: 6% !important;
}

.w-7 {
  width: 7% !important;
}

.w-8 {
  width: 8% !important;
}

.w-9 {
  width: 9% !important;
}

.w-10 {
  width: 10% !important;
}

.w-11 {
  width: 11% !important;
}

.w-12 {
  width: 12% !important;
}

.w-13 {
  width: 13% !important;
}

.w-14 {
  width: 14% !important;
}

.w-15 {
  width: 15% !important;
}

.w-16 {
  width: 16% !important;
}

.w-17 {
  width: 17% !important;
}

.w-18 {
  width: 18% !important;
}

.w-19 {
  width: 19% !important;
}

.w-20 {
  width: 20% !important;
}

.w-21 {
  width: 21% !important;
}

.w-22 {
  width: 22% !important;
}

.w-23 {
  width: 23% !important;
}

.w-24 {
  width: 24% !important;
}

.w-25 {
  width: 25% !important;
}

.w-26 {
  width: 26% !important;
}

.w-27 {
  width: 27% !important;
}

.w-28 {
  width: 28% !important;
}

.w-29 {
  width: 29% !important;
}

.w-30 {
  width: 30% !important;
}

@media (max-width: 1199.98px) {
  html {
    font-size: 54.6875%;
  }
}
@media (max-width: 719.98px) {
  html {
    font-size: 46.875%;
  }
}
#wrap {
  overflow: hidden;
}

@font-face {
  font-family: "PretendardGOV-t";
  src: local("PretendardGOV Thin"), url("../fonts/PretendardGOV-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "PretendardGOV-el";
  src: local("PretendardGOV ExtraLight"), url("../fonts/PretendardGOV-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-family: "PretendardGOV-l";
  src: local("PretendardGOV Light"), url("../fonts/PretendardGOV-Light.woff2") format("woff2");
}
@font-face {
  font-family: "PretendardGOV-r";
  src: local("PretendardGOV Regular"), url("../fonts/PretendardGOV-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "PretendardGOV-m";
  src: local("PretendardGOV Medium"), url("../fonts/PretendardGOV-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "PretendardGOV-sb";
  src: local("PretendardGOV SemiBold"), url("../fonts/PretendardGOV-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "PretendardGOV-b";
  src: local("PretendardGOV Bold"), url("../fonts/PretendardGOV-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "PretendardGOV-eb";
  src: local("PretendardGOV ExtraBold"), url("../fonts/PretendardGOV-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "PretendardGOV-bk";
  src: local("PretendardGOV Black"), url("../fonts/PretendardGOV-Black.woff2") format("woff2");
}
:root {
  --font-r: PretendardGOV-r, sans-serif;
  --font-t: PretendardGOV-t, sans-serif;
  --font-el: PretendardGOV-el, sans-serif;
  --font-l: PretendardGOV-l, sans-serif;
  --font-m: PretendardGOV-m, sans-serif;
  --font-sb: PretendardGOV-sb, sans-serif;
  --font-b: PretendardGOV-b, sans-serif;
  --font-eb: PretendardGOV-eb, sans-serif;
  --font-bk: PretendardGOV-bk, sans-serif;
  --color-point: #7343ff;
  --color-point-25: #f5f8ff;
  --color-point-50: #f2f6ff;
  --color-point-100: #e0eeff;
  --color-point-150: #bccfff;
  --color-point-200: #6ca7ff;
  --color-point-900: #5485ff;
  --color-point-darken: #2148aa;
  --color-black: #000000;
  --color-white: #fff;
  --color-white-100: #fafaff;
  --color-gray-25: #f9f9f9;
  --color-gray-50: #f4f4f4;
  --color-gray-75: #f5f5f5;
  --color-gray-100: #f3f3f8;
  --color-gray-125: #f7f7f7;
  --color-gray-150: #f6f3ff;
  --color-gray-175: #f2eeff;
  --color-gray-190: #f4fbff;
  --color-gray-195: #e9f0f3;
  --color-gray-200: #e4e4e4;
  --color-gray-225: #f8f8f8;
  --color-gray-250: #e4e4e7;
  --color-gray-260: #f0f0f0;
  --color-gray-275: #ddd;
  --color-gray-280: #d9d9d9;
  --color-gray-300: #d8d8d8;
  --color-gray-400: #c8c8c8;
  --color-gray-500: #575757;
  --color-gray-550: #717171;
  --color-gray-600: #777;
  --color-gray-800: #555555;
  --color-gray-900: #1d1d1d;
  --color-purple-50: #3C1AFF;
  --color-purple-75: #f3f3ff;
  --color-purple-90: #e9e9ff;
  --color-purple-100: #e0e0ff;
  --color-purple-900: #7343ff;
  --color-purple-1000: #7923f2;
  --color-purple-1100: #5c3495;
  --color-purple-1200: #361ca1;
  --color-purple-1300: #3811a9;
  --color-purple-1400: #5b35cc;
  --color-purple-1500: #442899;
  --color-blue-100: #e6efff;
  --color-blue-200: #d8daed;
  --color-blue-300: #c7d0e9;
  --color-blue-800: #5a88fe;
  --color-blue-900: #346edd;
  --color-blue-1000: #003290;
  --color-red: #ea0c0c;
  --color-green-1000: #0aa97e;
  --color-green-1100: #0a9ea9;
  --color-gradient-1: #865cff;
  --color-gradient-2: #5c77ff;
  --color-gradient-3: #5ecedb;
  --color-gradient-4: #009de0;
  --color-gradient-5: #48c7c9;
  --color-gradient-6: #71d19d;
}

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

[class^=ico] {
  display: inline-block;
  aspect-ratio: 1 / 1;
  width: 2rem;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.ico__sitemap {
  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%3Cpath d='M2 4H18' stroke='%231d1d1d' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 10H18' stroke='%231d1d1d' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 16H18' stroke='%231d1d1d' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__sitemap--black {
  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%3Cpath d='M2 4H18' stroke='%23000000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 10H18' stroke='%23000000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 16H18' stroke='%23000000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__sitemap--white {
  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%3Cpath d='M2 4H18' stroke='%23fff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 10H18' stroke='%23fff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 16H18' stroke='%23fff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__sitemap--point {
  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%3Cpath d='M2 4H18' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 10H18' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 16H18' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__secure {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='20' viewBox='0 0 21 20' fill='none'%3E%3Cpath d='M10.4997 12.0834V7.08339M7.99967 9.58339H12.9997M17.1663 10.0001C17.1663 14.0904 12.7047 17.0654 11.0813 18.0125C10.8968 18.1201 10.8046 18.1739 10.6744 18.2018C10.5734 18.2235 10.426 18.2235 10.3249 18.2018C10.1948 18.1739 10.1025 18.1201 9.91802 18.0125C8.29464 17.0654 3.83301 14.0904 3.83301 10.0001V6.01472C3.83301 5.34846 3.83301 5.01533 3.94197 4.72898C4.03824 4.47601 4.19466 4.25029 4.39772 4.07133C4.62759 3.86875 4.93951 3.75178 5.56334 3.51785L10.0315 1.84228C10.2048 1.77732 10.2914 1.74483 10.3805 1.73196C10.4595 1.72053 10.5398 1.72053 10.6189 1.73196C10.708 1.74483 10.7946 1.77732 10.9678 1.84228L15.436 3.51785C16.0598 3.75178 16.3718 3.86875 16.6016 4.07133C16.8047 4.25029 16.9611 4.47601 17.0574 4.72898C17.1663 5.01533 17.1663 5.34846 17.1663 6.01472V10.0001Z' stroke='%231d1d1d' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__secure--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='20' viewBox='0 0 21 20' fill='none'%3E%3Cpath d='M10.4997 12.0834V7.08339M7.99967 9.58339H12.9997M17.1663 10.0001C17.1663 14.0904 12.7047 17.0654 11.0813 18.0125C10.8968 18.1201 10.8046 18.1739 10.6744 18.2018C10.5734 18.2235 10.426 18.2235 10.3249 18.2018C10.1948 18.1739 10.1025 18.1201 9.91802 18.0125C8.29464 17.0654 3.83301 14.0904 3.83301 10.0001V6.01472C3.83301 5.34846 3.83301 5.01533 3.94197 4.72898C4.03824 4.47601 4.19466 4.25029 4.39772 4.07133C4.62759 3.86875 4.93951 3.75178 5.56334 3.51785L10.0315 1.84228C10.2048 1.77732 10.2914 1.74483 10.3805 1.73196C10.4595 1.72053 10.5398 1.72053 10.6189 1.73196C10.708 1.74483 10.7946 1.77732 10.9678 1.84228L15.436 3.51785C16.0598 3.75178 16.3718 3.86875 16.6016 4.07133C16.8047 4.25029 16.9611 4.47601 17.0574 4.72898C17.1663 5.01533 17.1663 5.34846 17.1663 6.01472V10.0001Z' stroke='%23000000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__secure--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='20' viewBox='0 0 21 20' fill='none'%3E%3Cpath d='M10.4997 12.0834V7.08339M7.99967 9.58339H12.9997M17.1663 10.0001C17.1663 14.0904 12.7047 17.0654 11.0813 18.0125C10.8968 18.1201 10.8046 18.1739 10.6744 18.2018C10.5734 18.2235 10.426 18.2235 10.3249 18.2018C10.1948 18.1739 10.1025 18.1201 9.91802 18.0125C8.29464 17.0654 3.83301 14.0904 3.83301 10.0001V6.01472C3.83301 5.34846 3.83301 5.01533 3.94197 4.72898C4.03824 4.47601 4.19466 4.25029 4.39772 4.07133C4.62759 3.86875 4.93951 3.75178 5.56334 3.51785L10.0315 1.84228C10.2048 1.77732 10.2914 1.74483 10.3805 1.73196C10.4595 1.72053 10.5398 1.72053 10.6189 1.73196C10.708 1.74483 10.7946 1.77732 10.9678 1.84228L15.436 3.51785C16.0598 3.75178 16.3718 3.86875 16.6016 4.07133C16.8047 4.25029 16.9611 4.47601 17.0574 4.72898C17.1663 5.01533 17.1663 5.34846 17.1663 6.01472V10.0001Z' stroke='%23fff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__secure--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='20' viewBox='0 0 21 20' fill='none'%3E%3Cpath d='M10.4997 12.0834V7.08339M7.99967 9.58339H12.9997M17.1663 10.0001C17.1663 14.0904 12.7047 17.0654 11.0813 18.0125C10.8968 18.1201 10.8046 18.1739 10.6744 18.2018C10.5734 18.2235 10.426 18.2235 10.3249 18.2018C10.1948 18.1739 10.1025 18.1201 9.91802 18.0125C8.29464 17.0654 3.83301 14.0904 3.83301 10.0001V6.01472C3.83301 5.34846 3.83301 5.01533 3.94197 4.72898C4.03824 4.47601 4.19466 4.25029 4.39772 4.07133C4.62759 3.86875 4.93951 3.75178 5.56334 3.51785L10.0315 1.84228C10.2048 1.77732 10.2914 1.74483 10.3805 1.73196C10.4595 1.72053 10.5398 1.72053 10.6189 1.73196C10.708 1.74483 10.7946 1.77732 10.9678 1.84228L15.436 3.51785C16.0598 3.75178 16.3718 3.86875 16.6016 4.07133C16.8047 4.25029 16.9611 4.47601 17.0574 4.72898C17.1663 5.01533 17.1663 5.34846 17.1663 6.01472V10.0001Z' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__plus {
  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%3Cpath d='M4.66699 10L15.667 10' stroke='%231d1d1d' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M10.167 4.5L10.167 15.5' stroke='%231d1d1d' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__plus--black {
  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%3Cpath d='M4.66699 10L15.667 10' stroke='%23000000' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M10.167 4.5L10.167 15.5' stroke='%23000000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__plus--white {
  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%3Cpath d='M4.66699 10L15.667 10' stroke='%23fff' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M10.167 4.5L10.167 15.5' stroke='%23fff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__plus--point {
  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%3Cpath d='M4.66699 10L15.667 10' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M10.167 4.5L10.167 15.5' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

.ico__sc-arrow {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M5.75 12.75L13.25 5.25M13.25 5.25H5.75M13.25 5.25V12.75' stroke='%231d1d1d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__sc-arrow--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M5.75 12.75L13.25 5.25M13.25 5.25H5.75M13.25 5.25V12.75' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__sc-arrow--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M5.75 12.75L13.25 5.25M13.25 5.25H5.75M13.25 5.25V12.75' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__sc-arrow--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M5.75 12.75L13.25 5.25M13.25 5.25H5.75M13.25 5.25V12.75' stroke='%237343ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__prevnext {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' viewBox='0 0 33 32' fill='none'%3E%3Cpath d='M20.5 6.66663L11.1667 16L20.5 25.3333' stroke='%231d1d1d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__prevnext--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' viewBox='0 0 33 32' fill='none'%3E%3Cpath d='M20.5 6.66663L11.1667 16L20.5 25.3333' stroke='%23000000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__prevnext--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' viewBox='0 0 33 32' fill='none'%3E%3Cpath d='M20.5 6.66663L11.1667 16L20.5 25.3333' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__prevnext--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' viewBox='0 0 33 32' fill='none'%3E%3Cpath d='M20.5 6.66663L11.1667 16L20.5 25.3333' stroke='%237343ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__race {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 32V42M24 32L36 42M24 32L12 42M16 14V24M24 18V24M32 22V24M44 6H4M6 6H42V22.4C42 25.7603 42 27.4405 41.346 28.7239C40.7708 29.8529 39.8529 30.7708 38.7239 31.346C37.4405 32 35.7603 32 32.4 32H15.6C12.2397 32 10.5595 32 9.27606 31.346C8.14708 30.7708 7.2292 29.8529 6.65396 28.7239C6 27.4405 6 25.7603 6 22.4V6Z' stroke='%231d1d1d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__race--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 32V42M24 32L36 42M24 32L12 42M16 14V24M24 18V24M32 22V24M44 6H4M6 6H42V22.4C42 25.7603 42 27.4405 41.346 28.7239C40.7708 29.8529 39.8529 30.7708 38.7239 31.346C37.4405 32 35.7603 32 32.4 32H15.6C12.2397 32 10.5595 32 9.27606 31.346C8.14708 30.7708 7.2292 29.8529 6.65396 28.7239C6 27.4405 6 25.7603 6 22.4V6Z' stroke='%23000000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__race--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 32V42M24 32L36 42M24 32L12 42M16 14V24M24 18V24M32 22V24M44 6H4M6 6H42V22.4C42 25.7603 42 27.4405 41.346 28.7239C40.7708 29.8529 39.8529 30.7708 38.7239 31.346C37.4405 32 35.7603 32 32.4 32H15.6C12.2397 32 10.5595 32 9.27606 31.346C8.14708 30.7708 7.2292 29.8529 6.65396 28.7239C6 27.4405 6 25.7603 6 22.4V6Z' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__race--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 32V42M24 32L36 42M24 32L12 42M16 14V24M24 18V24M32 22V24M44 6H4M6 6H42V22.4C42 25.7603 42 27.4405 41.346 28.7239C40.7708 29.8529 39.8529 30.7708 38.7239 31.346C37.4405 32 35.7603 32 32.4 32H15.6C12.2397 32 10.5595 32 9.27606 31.346C8.14708 30.7708 7.2292 29.8529 6.65396 28.7239C6 27.4405 6 25.7603 6 22.4V6Z' stroke='%237343ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__park {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M39.2 40.5293V13.783C39.2 11.7588 39.2 10.7466 38.7858 9.97348C38.4215 9.29339 37.8402 8.74046 37.1252 8.39394C36.3123 8 35.2482 8 33.12 8H14.88C12.7518 8 11.6877 8 10.8748 8.39394C10.1598 8.74046 9.57849 9.29339 9.21418 9.97348C8.8 10.7466 8.8 11.7588 8.8 13.783V40.5293M43 40.5293H5' stroke='%231d1d1d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.6118 18.4788V23.3192C21.6118 23.4381 21.6838 23.4976 21.8278 23.4976H23.0278C25.8758 23.4976 27.2998 22.5533 27.2998 20.6648C27.2998 18.9844 25.9798 18.1442 23.3398 18.1442C22.8598 18.1442 22.3558 18.1814 21.8278 18.2558C21.6838 18.2855 21.6118 18.3598 21.6118 18.4788ZM19.6678 32.2192C19.2998 32.2192 18.9798 32.0928 18.7078 31.84C18.4358 31.5872 18.2998 31.2898 18.2998 30.9478V17.3189C18.2998 16.962 18.4278 16.6423 18.6838 16.3598C18.9398 16.0772 19.2598 15.9211 19.6438 15.8913C21.0038 15.7724 22.3158 15.7129 23.5798 15.7129C25.9318 15.7129 27.6918 16.1218 28.8598 16.9397C30.0278 17.7427 30.6118 18.8803 30.6118 20.3525C30.6118 21.4083 30.2998 22.3377 29.6758 23.1407C29.0678 23.9437 28.2438 24.5088 27.2038 24.836C27.1878 24.836 27.1798 24.8434 27.1798 24.8583C27.1798 24.888 27.1878 24.9029 27.2038 24.9029C27.9718 25.349 28.6278 26.2264 29.1718 27.535L30.6118 31.037C30.7238 31.3195 30.6838 31.5872 30.4918 31.84C30.3158 32.0928 30.0678 32.2192 29.7478 32.2192H29.0038C28.5878 32.2192 28.2118 32.1151 27.8758 31.9069C27.5398 31.6838 27.2998 31.3939 27.1558 31.037L25.8118 27.6019C25.5238 26.8881 25.1958 26.4197 24.8278 26.1966C24.4598 25.9736 23.8278 25.862 22.9318 25.862H21.8278C21.6838 25.862 21.6118 25.929 21.6118 26.0628V30.9478C21.6118 31.2898 21.4758 31.5872 21.2038 31.84C20.9478 32.0928 20.6358 32.2192 20.2678 32.2192H19.6678Z' fill='%231d1d1d'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M29.172 27.5364L30.612 31.0385C30.724 31.321 30.684 31.5887 30.492 31.8415C30.316 32.0943 30.068 32.2207 29.748 32.2207H29.004C28.588 32.2207 28.212 32.1166 27.876 31.9084C27.54 31.6853 27.3 31.3954 27.156 31.0385L25.812 27.6034C25.524 26.8896 25.196 26.4212 24.828 26.1981C24.46 25.975 23.828 25.8635 22.932 25.8635H21.828C21.684 25.8635 21.612 25.9304 21.612 26.0643V30.9492C21.612 31.2913 21.476 31.5887 21.204 31.8415C20.948 32.0943 20.636 32.2207 20.268 32.2207H19.668C19.3 32.2207 18.98 32.0943 18.708 31.8415C18.436 31.5887 18.3 31.2913 18.3 30.9492V17.3204C18.3 16.9635 18.428 16.6438 18.684 16.3612C18.94 16.0787 19.26 15.9226 19.644 15.8928C21.004 15.7739 22.316 15.7144 23.58 15.7144C25.932 15.7144 27.692 16.1233 28.86 16.9412C30.028 17.7442 30.612 18.8818 30.612 20.354C30.612 21.4098 30.3 22.3392 29.676 23.1422C29.1236 23.8718 28.3928 24.405 27.4837 24.7418C27.4714 24.7463 27.4591 24.7509 27.4467 24.7554C27.3857 24.7775 27.3239 24.7987 27.2613 24.8191C27.2423 24.8253 27.2232 24.8314 27.204 24.8374C27.188 24.8374 27.18 24.8449 27.18 24.8598C27.18 24.8895 27.188 24.9044 27.204 24.9044C27.2144 24.9104 27.2247 24.9165 27.235 24.9227C27.2925 24.957 27.3493 24.9938 27.4055 25.0331C27.4165 25.0408 27.4274 25.0485 27.4383 25.0564C28.1063 25.5363 28.6842 26.363 29.172 27.5364ZM27.7569 24.938C28.4276 25.4721 28.9869 26.3174 29.4518 27.436L29.4522 27.4369L30.8935 30.9421C31.0401 31.3117 30.9847 31.6736 30.7406 31.9977C30.5101 32.3256 30.1693 32.4995 29.748 32.4995H29.004C28.5307 32.4995 28.0964 32.3801 27.7096 32.1404L27.7015 32.1354C27.3174 31.8804 27.0402 31.5455 26.8751 31.1364L26.874 31.1337L25.5311 27.7013C25.5309 27.7008 25.5307 27.7004 25.5306 27.7C25.2484 27.001 24.9488 26.6042 24.6641 26.4316C24.3742 26.2559 23.8192 26.1423 22.932 26.1423H21.912V30.9492C21.912 31.3675 21.7427 31.7338 21.4193 32.0357C21.1081 32.3415 20.7186 32.4995 20.268 32.4995H19.668C19.2165 32.4995 18.8213 32.3411 18.4959 32.0386C18.1704 31.7362 18 31.3689 18 30.9492V17.3204C18 16.8953 18.1547 16.5125 18.4545 16.1816C18.7598 15.8448 19.1519 15.6515 19.6174 15.6151C20.9855 15.4955 22.3064 15.4355 23.58 15.4355C25.9598 15.4355 27.7963 15.8477 29.0395 16.7178C30.2909 17.5786 30.912 18.8031 30.912 20.354C30.912 21.4637 30.583 22.4506 29.9203 23.3041C29.3665 24.0349 28.6432 24.5799 27.7569 24.938ZM21.912 23.2203H23.028C24.4254 23.2203 25.4196 22.9871 26.0578 22.5639C26.6773 22.1531 27 21.5371 27 20.6663C27 19.9041 26.7072 19.3666 26.1405 19.0059C25.5534 18.6322 24.6351 18.4245 23.34 18.4245C22.8883 18.4245 22.4124 18.4586 21.912 18.5275V23.2203ZM21.828 18.2572C22.356 18.1829 22.86 18.1457 23.34 18.1457C25.98 18.1457 27.3 18.9859 27.3 20.6663C27.3 22.5548 25.876 23.4991 23.028 23.4991H21.828C21.684 23.4991 21.612 23.4396 21.612 23.3207V18.4803C21.612 18.3613 21.684 18.287 21.828 18.2572ZM21.815 23.2197C21.8139 23.2196 21.8134 23.2195 21.8134 23.2195L21.815 23.2197Z' fill='%231d1d1d'/%3E%3C/svg%3E");
}
.ico__park--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M39.2 40.5293V13.783C39.2 11.7588 39.2 10.7466 38.7858 9.97348C38.4215 9.29339 37.8402 8.74046 37.1252 8.39394C36.3123 8 35.2482 8 33.12 8H14.88C12.7518 8 11.6877 8 10.8748 8.39394C10.1598 8.74046 9.57849 9.29339 9.21418 9.97348C8.8 10.7466 8.8 11.7588 8.8 13.783V40.5293M43 40.5293H5' stroke='%23000000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.6118 18.4788V23.3192C21.6118 23.4381 21.6838 23.4976 21.8278 23.4976H23.0278C25.8758 23.4976 27.2998 22.5533 27.2998 20.6648C27.2998 18.9844 25.9798 18.1442 23.3398 18.1442C22.8598 18.1442 22.3558 18.1814 21.8278 18.2558C21.6838 18.2855 21.6118 18.3598 21.6118 18.4788ZM19.6678 32.2192C19.2998 32.2192 18.9798 32.0928 18.7078 31.84C18.4358 31.5872 18.2998 31.2898 18.2998 30.9478V17.3189C18.2998 16.962 18.4278 16.6423 18.6838 16.3598C18.9398 16.0772 19.2598 15.9211 19.6438 15.8913C21.0038 15.7724 22.3158 15.7129 23.5798 15.7129C25.9318 15.7129 27.6918 16.1218 28.8598 16.9397C30.0278 17.7427 30.6118 18.8803 30.6118 20.3525C30.6118 21.4083 30.2998 22.3377 29.6758 23.1407C29.0678 23.9437 28.2438 24.5088 27.2038 24.836C27.1878 24.836 27.1798 24.8434 27.1798 24.8583C27.1798 24.888 27.1878 24.9029 27.2038 24.9029C27.9718 25.349 28.6278 26.2264 29.1718 27.535L30.6118 31.037C30.7238 31.3195 30.6838 31.5872 30.4918 31.84C30.3158 32.0928 30.0678 32.2192 29.7478 32.2192H29.0038C28.5878 32.2192 28.2118 32.1151 27.8758 31.9069C27.5398 31.6838 27.2998 31.3939 27.1558 31.037L25.8118 27.6019C25.5238 26.8881 25.1958 26.4197 24.8278 26.1966C24.4598 25.9736 23.8278 25.862 22.9318 25.862H21.8278C21.6838 25.862 21.6118 25.929 21.6118 26.0628V30.9478C21.6118 31.2898 21.4758 31.5872 21.2038 31.84C20.9478 32.0928 20.6358 32.2192 20.2678 32.2192H19.6678Z' fill='%23000000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M29.172 27.5364L30.612 31.0385C30.724 31.321 30.684 31.5887 30.492 31.8415C30.316 32.0943 30.068 32.2207 29.748 32.2207H29.004C28.588 32.2207 28.212 32.1166 27.876 31.9084C27.54 31.6853 27.3 31.3954 27.156 31.0385L25.812 27.6034C25.524 26.8896 25.196 26.4212 24.828 26.1981C24.46 25.975 23.828 25.8635 22.932 25.8635H21.828C21.684 25.8635 21.612 25.9304 21.612 26.0643V30.9492C21.612 31.2913 21.476 31.5887 21.204 31.8415C20.948 32.0943 20.636 32.2207 20.268 32.2207H19.668C19.3 32.2207 18.98 32.0943 18.708 31.8415C18.436 31.5887 18.3 31.2913 18.3 30.9492V17.3204C18.3 16.9635 18.428 16.6438 18.684 16.3612C18.94 16.0787 19.26 15.9226 19.644 15.8928C21.004 15.7739 22.316 15.7144 23.58 15.7144C25.932 15.7144 27.692 16.1233 28.86 16.9412C30.028 17.7442 30.612 18.8818 30.612 20.354C30.612 21.4098 30.3 22.3392 29.676 23.1422C29.1236 23.8718 28.3928 24.405 27.4837 24.7418C27.4714 24.7463 27.4591 24.7509 27.4467 24.7554C27.3857 24.7775 27.3239 24.7987 27.2613 24.8191C27.2423 24.8253 27.2232 24.8314 27.204 24.8374C27.188 24.8374 27.18 24.8449 27.18 24.8598C27.18 24.8895 27.188 24.9044 27.204 24.9044C27.2144 24.9104 27.2247 24.9165 27.235 24.9227C27.2925 24.957 27.3493 24.9938 27.4055 25.0331C27.4165 25.0408 27.4274 25.0485 27.4383 25.0564C28.1063 25.5363 28.6842 26.363 29.172 27.5364ZM27.7569 24.938C28.4276 25.4721 28.9869 26.3174 29.4518 27.436L29.4522 27.4369L30.8935 30.9421C31.0401 31.3117 30.9847 31.6736 30.7406 31.9977C30.5101 32.3256 30.1693 32.4995 29.748 32.4995H29.004C28.5307 32.4995 28.0964 32.3801 27.7096 32.1404L27.7015 32.1354C27.3174 31.8804 27.0402 31.5455 26.8751 31.1364L26.874 31.1337L25.5311 27.7013C25.5309 27.7008 25.5307 27.7004 25.5306 27.7C25.2484 27.001 24.9488 26.6042 24.6641 26.4316C24.3742 26.2559 23.8192 26.1423 22.932 26.1423H21.912V30.9492C21.912 31.3675 21.7427 31.7338 21.4193 32.0357C21.1081 32.3415 20.7186 32.4995 20.268 32.4995H19.668C19.2165 32.4995 18.8213 32.3411 18.4959 32.0386C18.1704 31.7362 18 31.3689 18 30.9492V17.3204C18 16.8953 18.1547 16.5125 18.4545 16.1816C18.7598 15.8448 19.1519 15.6515 19.6174 15.6151C20.9855 15.4955 22.3064 15.4355 23.58 15.4355C25.9598 15.4355 27.7963 15.8477 29.0395 16.7178C30.2909 17.5786 30.912 18.8031 30.912 20.354C30.912 21.4637 30.583 22.4506 29.9203 23.3041C29.3665 24.0349 28.6432 24.5799 27.7569 24.938ZM21.912 23.2203H23.028C24.4254 23.2203 25.4196 22.9871 26.0578 22.5639C26.6773 22.1531 27 21.5371 27 20.6663C27 19.9041 26.7072 19.3666 26.1405 19.0059C25.5534 18.6322 24.6351 18.4245 23.34 18.4245C22.8883 18.4245 22.4124 18.4586 21.912 18.5275V23.2203ZM21.828 18.2572C22.356 18.1829 22.86 18.1457 23.34 18.1457C25.98 18.1457 27.3 18.9859 27.3 20.6663C27.3 22.5548 25.876 23.4991 23.028 23.4991H21.828C21.684 23.4991 21.612 23.4396 21.612 23.3207V18.4803C21.612 18.3613 21.684 18.287 21.828 18.2572ZM21.815 23.2197C21.8139 23.2196 21.8134 23.2195 21.8134 23.2195L21.815 23.2197Z' fill='%23000000'/%3E%3C/svg%3E");
}
.ico__park--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M39.2 40.5293V13.783C39.2 11.7588 39.2 10.7466 38.7858 9.97348C38.4215 9.29339 37.8402 8.74046 37.1252 8.39394C36.3123 8 35.2482 8 33.12 8H14.88C12.7518 8 11.6877 8 10.8748 8.39394C10.1598 8.74046 9.57849 9.29339 9.21418 9.97348C8.8 10.7466 8.8 11.7588 8.8 13.783V40.5293M43 40.5293H5' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.6118 18.4788V23.3192C21.6118 23.4381 21.6838 23.4976 21.8278 23.4976H23.0278C25.8758 23.4976 27.2998 22.5533 27.2998 20.6648C27.2998 18.9844 25.9798 18.1442 23.3398 18.1442C22.8598 18.1442 22.3558 18.1814 21.8278 18.2558C21.6838 18.2855 21.6118 18.3598 21.6118 18.4788ZM19.6678 32.2192C19.2998 32.2192 18.9798 32.0928 18.7078 31.84C18.4358 31.5872 18.2998 31.2898 18.2998 30.9478V17.3189C18.2998 16.962 18.4278 16.6423 18.6838 16.3598C18.9398 16.0772 19.2598 15.9211 19.6438 15.8913C21.0038 15.7724 22.3158 15.7129 23.5798 15.7129C25.9318 15.7129 27.6918 16.1218 28.8598 16.9397C30.0278 17.7427 30.6118 18.8803 30.6118 20.3525C30.6118 21.4083 30.2998 22.3377 29.6758 23.1407C29.0678 23.9437 28.2438 24.5088 27.2038 24.836C27.1878 24.836 27.1798 24.8434 27.1798 24.8583C27.1798 24.888 27.1878 24.9029 27.2038 24.9029C27.9718 25.349 28.6278 26.2264 29.1718 27.535L30.6118 31.037C30.7238 31.3195 30.6838 31.5872 30.4918 31.84C30.3158 32.0928 30.0678 32.2192 29.7478 32.2192H29.0038C28.5878 32.2192 28.2118 32.1151 27.8758 31.9069C27.5398 31.6838 27.2998 31.3939 27.1558 31.037L25.8118 27.6019C25.5238 26.8881 25.1958 26.4197 24.8278 26.1966C24.4598 25.9736 23.8278 25.862 22.9318 25.862H21.8278C21.6838 25.862 21.6118 25.929 21.6118 26.0628V30.9478C21.6118 31.2898 21.4758 31.5872 21.2038 31.84C20.9478 32.0928 20.6358 32.2192 20.2678 32.2192H19.6678Z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M29.172 27.5364L30.612 31.0385C30.724 31.321 30.684 31.5887 30.492 31.8415C30.316 32.0943 30.068 32.2207 29.748 32.2207H29.004C28.588 32.2207 28.212 32.1166 27.876 31.9084C27.54 31.6853 27.3 31.3954 27.156 31.0385L25.812 27.6034C25.524 26.8896 25.196 26.4212 24.828 26.1981C24.46 25.975 23.828 25.8635 22.932 25.8635H21.828C21.684 25.8635 21.612 25.9304 21.612 26.0643V30.9492C21.612 31.2913 21.476 31.5887 21.204 31.8415C20.948 32.0943 20.636 32.2207 20.268 32.2207H19.668C19.3 32.2207 18.98 32.0943 18.708 31.8415C18.436 31.5887 18.3 31.2913 18.3 30.9492V17.3204C18.3 16.9635 18.428 16.6438 18.684 16.3612C18.94 16.0787 19.26 15.9226 19.644 15.8928C21.004 15.7739 22.316 15.7144 23.58 15.7144C25.932 15.7144 27.692 16.1233 28.86 16.9412C30.028 17.7442 30.612 18.8818 30.612 20.354C30.612 21.4098 30.3 22.3392 29.676 23.1422C29.1236 23.8718 28.3928 24.405 27.4837 24.7418C27.4714 24.7463 27.4591 24.7509 27.4467 24.7554C27.3857 24.7775 27.3239 24.7987 27.2613 24.8191C27.2423 24.8253 27.2232 24.8314 27.204 24.8374C27.188 24.8374 27.18 24.8449 27.18 24.8598C27.18 24.8895 27.188 24.9044 27.204 24.9044C27.2144 24.9104 27.2247 24.9165 27.235 24.9227C27.2925 24.957 27.3493 24.9938 27.4055 25.0331C27.4165 25.0408 27.4274 25.0485 27.4383 25.0564C28.1063 25.5363 28.6842 26.363 29.172 27.5364ZM27.7569 24.938C28.4276 25.4721 28.9869 26.3174 29.4518 27.436L29.4522 27.4369L30.8935 30.9421C31.0401 31.3117 30.9847 31.6736 30.7406 31.9977C30.5101 32.3256 30.1693 32.4995 29.748 32.4995H29.004C28.5307 32.4995 28.0964 32.3801 27.7096 32.1404L27.7015 32.1354C27.3174 31.8804 27.0402 31.5455 26.8751 31.1364L26.874 31.1337L25.5311 27.7013C25.5309 27.7008 25.5307 27.7004 25.5306 27.7C25.2484 27.001 24.9488 26.6042 24.6641 26.4316C24.3742 26.2559 23.8192 26.1423 22.932 26.1423H21.912V30.9492C21.912 31.3675 21.7427 31.7338 21.4193 32.0357C21.1081 32.3415 20.7186 32.4995 20.268 32.4995H19.668C19.2165 32.4995 18.8213 32.3411 18.4959 32.0386C18.1704 31.7362 18 31.3689 18 30.9492V17.3204C18 16.8953 18.1547 16.5125 18.4545 16.1816C18.7598 15.8448 19.1519 15.6515 19.6174 15.6151C20.9855 15.4955 22.3064 15.4355 23.58 15.4355C25.9598 15.4355 27.7963 15.8477 29.0395 16.7178C30.2909 17.5786 30.912 18.8031 30.912 20.354C30.912 21.4637 30.583 22.4506 29.9203 23.3041C29.3665 24.0349 28.6432 24.5799 27.7569 24.938ZM21.912 23.2203H23.028C24.4254 23.2203 25.4196 22.9871 26.0578 22.5639C26.6773 22.1531 27 21.5371 27 20.6663C27 19.9041 26.7072 19.3666 26.1405 19.0059C25.5534 18.6322 24.6351 18.4245 23.34 18.4245C22.8883 18.4245 22.4124 18.4586 21.912 18.5275V23.2203ZM21.828 18.2572C22.356 18.1829 22.86 18.1457 23.34 18.1457C25.98 18.1457 27.3 18.9859 27.3 20.6663C27.3 22.5548 25.876 23.4991 23.028 23.4991H21.828C21.684 23.4991 21.612 23.4396 21.612 23.3207V18.4803C21.612 18.3613 21.684 18.287 21.828 18.2572ZM21.815 23.2197C21.8139 23.2196 21.8134 23.2195 21.8134 23.2195L21.815 23.2197Z' fill='%23fff'/%3E%3C/svg%3E");
}
.ico__park--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M39.2 40.5293V13.783C39.2 11.7588 39.2 10.7466 38.7858 9.97348C38.4215 9.29339 37.8402 8.74046 37.1252 8.39394C36.3123 8 35.2482 8 33.12 8H14.88C12.7518 8 11.6877 8 10.8748 8.39394C10.1598 8.74046 9.57849 9.29339 9.21418 9.97348C8.8 10.7466 8.8 11.7588 8.8 13.783V40.5293M43 40.5293H5' stroke='%237343ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.6118 18.4788V23.3192C21.6118 23.4381 21.6838 23.4976 21.8278 23.4976H23.0278C25.8758 23.4976 27.2998 22.5533 27.2998 20.6648C27.2998 18.9844 25.9798 18.1442 23.3398 18.1442C22.8598 18.1442 22.3558 18.1814 21.8278 18.2558C21.6838 18.2855 21.6118 18.3598 21.6118 18.4788ZM19.6678 32.2192C19.2998 32.2192 18.9798 32.0928 18.7078 31.84C18.4358 31.5872 18.2998 31.2898 18.2998 30.9478V17.3189C18.2998 16.962 18.4278 16.6423 18.6838 16.3598C18.9398 16.0772 19.2598 15.9211 19.6438 15.8913C21.0038 15.7724 22.3158 15.7129 23.5798 15.7129C25.9318 15.7129 27.6918 16.1218 28.8598 16.9397C30.0278 17.7427 30.6118 18.8803 30.6118 20.3525C30.6118 21.4083 30.2998 22.3377 29.6758 23.1407C29.0678 23.9437 28.2438 24.5088 27.2038 24.836C27.1878 24.836 27.1798 24.8434 27.1798 24.8583C27.1798 24.888 27.1878 24.9029 27.2038 24.9029C27.9718 25.349 28.6278 26.2264 29.1718 27.535L30.6118 31.037C30.7238 31.3195 30.6838 31.5872 30.4918 31.84C30.3158 32.0928 30.0678 32.2192 29.7478 32.2192H29.0038C28.5878 32.2192 28.2118 32.1151 27.8758 31.9069C27.5398 31.6838 27.2998 31.3939 27.1558 31.037L25.8118 27.6019C25.5238 26.8881 25.1958 26.4197 24.8278 26.1966C24.4598 25.9736 23.8278 25.862 22.9318 25.862H21.8278C21.6838 25.862 21.6118 25.929 21.6118 26.0628V30.9478C21.6118 31.2898 21.4758 31.5872 21.2038 31.84C20.9478 32.0928 20.6358 32.2192 20.2678 32.2192H19.6678Z' fill='%237343ff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M29.172 27.5364L30.612 31.0385C30.724 31.321 30.684 31.5887 30.492 31.8415C30.316 32.0943 30.068 32.2207 29.748 32.2207H29.004C28.588 32.2207 28.212 32.1166 27.876 31.9084C27.54 31.6853 27.3 31.3954 27.156 31.0385L25.812 27.6034C25.524 26.8896 25.196 26.4212 24.828 26.1981C24.46 25.975 23.828 25.8635 22.932 25.8635H21.828C21.684 25.8635 21.612 25.9304 21.612 26.0643V30.9492C21.612 31.2913 21.476 31.5887 21.204 31.8415C20.948 32.0943 20.636 32.2207 20.268 32.2207H19.668C19.3 32.2207 18.98 32.0943 18.708 31.8415C18.436 31.5887 18.3 31.2913 18.3 30.9492V17.3204C18.3 16.9635 18.428 16.6438 18.684 16.3612C18.94 16.0787 19.26 15.9226 19.644 15.8928C21.004 15.7739 22.316 15.7144 23.58 15.7144C25.932 15.7144 27.692 16.1233 28.86 16.9412C30.028 17.7442 30.612 18.8818 30.612 20.354C30.612 21.4098 30.3 22.3392 29.676 23.1422C29.1236 23.8718 28.3928 24.405 27.4837 24.7418C27.4714 24.7463 27.4591 24.7509 27.4467 24.7554C27.3857 24.7775 27.3239 24.7987 27.2613 24.8191C27.2423 24.8253 27.2232 24.8314 27.204 24.8374C27.188 24.8374 27.18 24.8449 27.18 24.8598C27.18 24.8895 27.188 24.9044 27.204 24.9044C27.2144 24.9104 27.2247 24.9165 27.235 24.9227C27.2925 24.957 27.3493 24.9938 27.4055 25.0331C27.4165 25.0408 27.4274 25.0485 27.4383 25.0564C28.1063 25.5363 28.6842 26.363 29.172 27.5364ZM27.7569 24.938C28.4276 25.4721 28.9869 26.3174 29.4518 27.436L29.4522 27.4369L30.8935 30.9421C31.0401 31.3117 30.9847 31.6736 30.7406 31.9977C30.5101 32.3256 30.1693 32.4995 29.748 32.4995H29.004C28.5307 32.4995 28.0964 32.3801 27.7096 32.1404L27.7015 32.1354C27.3174 31.8804 27.0402 31.5455 26.8751 31.1364L26.874 31.1337L25.5311 27.7013C25.5309 27.7008 25.5307 27.7004 25.5306 27.7C25.2484 27.001 24.9488 26.6042 24.6641 26.4316C24.3742 26.2559 23.8192 26.1423 22.932 26.1423H21.912V30.9492C21.912 31.3675 21.7427 31.7338 21.4193 32.0357C21.1081 32.3415 20.7186 32.4995 20.268 32.4995H19.668C19.2165 32.4995 18.8213 32.3411 18.4959 32.0386C18.1704 31.7362 18 31.3689 18 30.9492V17.3204C18 16.8953 18.1547 16.5125 18.4545 16.1816C18.7598 15.8448 19.1519 15.6515 19.6174 15.6151C20.9855 15.4955 22.3064 15.4355 23.58 15.4355C25.9598 15.4355 27.7963 15.8477 29.0395 16.7178C30.2909 17.5786 30.912 18.8031 30.912 20.354C30.912 21.4637 30.583 22.4506 29.9203 23.3041C29.3665 24.0349 28.6432 24.5799 27.7569 24.938ZM21.912 23.2203H23.028C24.4254 23.2203 25.4196 22.9871 26.0578 22.5639C26.6773 22.1531 27 21.5371 27 20.6663C27 19.9041 26.7072 19.3666 26.1405 19.0059C25.5534 18.6322 24.6351 18.4245 23.34 18.4245C22.8883 18.4245 22.4124 18.4586 21.912 18.5275V23.2203ZM21.828 18.2572C22.356 18.1829 22.86 18.1457 23.34 18.1457C25.98 18.1457 27.3 18.9859 27.3 20.6663C27.3 22.5548 25.876 23.4991 23.028 23.4991H21.828C21.684 23.4991 21.612 23.4396 21.612 23.3207V18.4803C21.612 18.3613 21.684 18.287 21.828 18.2572ZM21.815 23.2197C21.8139 23.2196 21.8134 23.2195 21.8134 23.2195L21.815 23.2197Z' fill='%237343ff'/%3E%3C/svg%3E");
}

.ico__kra {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M30 42V31.2C30 30.0799 30 29.5198 29.782 29.092C29.5903 28.7157 29.2843 28.4097 28.908 28.218C28.4802 28 27.9201 28 26.8 28H21.2C20.0799 28 19.5198 28 19.092 28.218C18.7157 28.4097 18.4097 28.7157 18.218 29.092C18 29.5198 18 30.0799 18 31.2V42M38 42V12.4C38 10.1598 38 9.03969 37.564 8.18404C37.1805 7.43139 36.5686 6.81947 35.816 6.43597C34.9603 6 33.8402 6 31.6 6H16.4C14.1598 6 13.0397 6 12.184 6.43597C11.4314 6.81947 10.8195 7.43139 10.436 8.18404C10 9.03969 10 10.1598 10 12.4V42M42 42H6M19 16H19.02M29 16H29.02M20 16C20 16.5523 19.5523 17 19 17C18.4477 17 18 16.5523 18 16C18 15.4477 18.4477 15 19 15C19.5523 15 20 15.4477 20 16ZM30 16C30 16.5523 29.5523 17 29 17C28.4477 17 28 16.5523 28 16C28 15.4477 28.4477 15 29 15C29.5523 15 30 15.4477 30 16Z' stroke='%231d1d1d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__kra--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M30 42V31.2C30 30.0799 30 29.5198 29.782 29.092C29.5903 28.7157 29.2843 28.4097 28.908 28.218C28.4802 28 27.9201 28 26.8 28H21.2C20.0799 28 19.5198 28 19.092 28.218C18.7157 28.4097 18.4097 28.7157 18.218 29.092C18 29.5198 18 30.0799 18 31.2V42M38 42V12.4C38 10.1598 38 9.03969 37.564 8.18404C37.1805 7.43139 36.5686 6.81947 35.816 6.43597C34.9603 6 33.8402 6 31.6 6H16.4C14.1598 6 13.0397 6 12.184 6.43597C11.4314 6.81947 10.8195 7.43139 10.436 8.18404C10 9.03969 10 10.1598 10 12.4V42M42 42H6M19 16H19.02M29 16H29.02M20 16C20 16.5523 19.5523 17 19 17C18.4477 17 18 16.5523 18 16C18 15.4477 18.4477 15 19 15C19.5523 15 20 15.4477 20 16ZM30 16C30 16.5523 29.5523 17 29 17C28.4477 17 28 16.5523 28 16C28 15.4477 28.4477 15 29 15C29.5523 15 30 15.4477 30 16Z' stroke='%23000000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__kra--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M30 42V31.2C30 30.0799 30 29.5198 29.782 29.092C29.5903 28.7157 29.2843 28.4097 28.908 28.218C28.4802 28 27.9201 28 26.8 28H21.2C20.0799 28 19.5198 28 19.092 28.218C18.7157 28.4097 18.4097 28.7157 18.218 29.092C18 29.5198 18 30.0799 18 31.2V42M38 42V12.4C38 10.1598 38 9.03969 37.564 8.18404C37.1805 7.43139 36.5686 6.81947 35.816 6.43597C34.9603 6 33.8402 6 31.6 6H16.4C14.1598 6 13.0397 6 12.184 6.43597C11.4314 6.81947 10.8195 7.43139 10.436 8.18404C10 9.03969 10 10.1598 10 12.4V42M42 42H6M19 16H19.02M29 16H29.02M20 16C20 16.5523 19.5523 17 19 17C18.4477 17 18 16.5523 18 16C18 15.4477 18.4477 15 19 15C19.5523 15 20 15.4477 20 16ZM30 16C30 16.5523 29.5523 17 29 17C28.4477 17 28 16.5523 28 16C28 15.4477 28.4477 15 29 15C29.5523 15 30 15.4477 30 16Z' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__kra--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M30 42V31.2C30 30.0799 30 29.5198 29.782 29.092C29.5903 28.7157 29.2843 28.4097 28.908 28.218C28.4802 28 27.9201 28 26.8 28H21.2C20.0799 28 19.5198 28 19.092 28.218C18.7157 28.4097 18.4097 28.7157 18.218 29.092C18 29.5198 18 30.0799 18 31.2V42M38 42V12.4C38 10.1598 38 9.03969 37.564 8.18404C37.1805 7.43139 36.5686 6.81947 35.816 6.43597C34.9603 6 33.8402 6 31.6 6H16.4C14.1598 6 13.0397 6 12.184 6.43597C11.4314 6.81947 10.8195 7.43139 10.436 8.18404C10 9.03969 10 10.1598 10 12.4V42M42 42H6M19 16H19.02M29 16H29.02M20 16C20 16.5523 19.5523 17 19 17C18.4477 17 18 16.5523 18 16C18 15.4477 18.4477 15 19 15C19.5523 15 20 15.4477 20 16ZM30 16C30 16.5523 29.5523 17 29 17C28.4477 17 28 16.5523 28 16C28 15.4477 28.4477 15 29 15C29.5523 15 30 15.4477 30 16Z' stroke='%237343ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__center {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 36H11.2M11.2 36H24M11.2 36V16.0003C11.2 14.2501 11.2 13.3744 11.5488 12.7059C11.8556 12.1179 12.3448 11.6402 12.9469 11.3406C13.6314 11 14.5281 11 16.3203 11H18.8803C20.6725 11 21.5681 11 22.2526 11.3406C22.8547 11.6402 23.3448 12.1179 23.6516 12.7059C24 13.3738 24 14.2484 24 15.9952V20.7595M24 36H36.8M24 36V20.7595M36.8 36H40M36.8 36V27.2003C36.8 26.3796 36.8 25.9687 36.6992 25.5859C36.6099 25.2466 36.4623 24.9248 36.2635 24.6331C36.0392 24.304 35.7272 24.0294 35.1019 23.4808L31.4219 20.2522C30.2123 19.1909 29.6072 18.6605 28.9234 18.4593C28.3211 18.282 27.6785 18.282 27.0762 18.4593C26.3925 18.6605 25.7876 19.1912 24.5783 20.2522L24 20.7595' stroke='%231d1d1d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__center--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 36H11.2M11.2 36H24M11.2 36V16.0003C11.2 14.2501 11.2 13.3744 11.5488 12.7059C11.8556 12.1179 12.3448 11.6402 12.9469 11.3406C13.6314 11 14.5281 11 16.3203 11H18.8803C20.6725 11 21.5681 11 22.2526 11.3406C22.8547 11.6402 23.3448 12.1179 23.6516 12.7059C24 13.3738 24 14.2484 24 15.9952V20.7595M24 36H36.8M24 36V20.7595M36.8 36H40M36.8 36V27.2003C36.8 26.3796 36.8 25.9687 36.6992 25.5859C36.6099 25.2466 36.4623 24.9248 36.2635 24.6331C36.0392 24.304 35.7272 24.0294 35.1019 23.4808L31.4219 20.2522C30.2123 19.1909 29.6072 18.6605 28.9234 18.4593C28.3211 18.282 27.6785 18.282 27.0762 18.4593C26.3925 18.6605 25.7876 19.1912 24.5783 20.2522L24 20.7595' stroke='%23000000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__center--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 36H11.2M11.2 36H24M11.2 36V16.0003C11.2 14.2501 11.2 13.3744 11.5488 12.7059C11.8556 12.1179 12.3448 11.6402 12.9469 11.3406C13.6314 11 14.5281 11 16.3203 11H18.8803C20.6725 11 21.5681 11 22.2526 11.3406C22.8547 11.6402 23.3448 12.1179 23.6516 12.7059C24 13.3738 24 14.2484 24 15.9952V20.7595M24 36H36.8M24 36V20.7595M36.8 36H40M36.8 36V27.2003C36.8 26.3796 36.8 25.9687 36.6992 25.5859C36.6099 25.2466 36.4623 24.9248 36.2635 24.6331C36.0392 24.304 35.7272 24.0294 35.1019 23.4808L31.4219 20.2522C30.2123 19.1909 29.6072 18.6605 28.9234 18.4593C28.3211 18.282 27.6785 18.282 27.0762 18.4593C26.3925 18.6605 25.7876 19.1912 24.5783 20.2522L24 20.7595' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__center--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 36H11.2M11.2 36H24M11.2 36V16.0003C11.2 14.2501 11.2 13.3744 11.5488 12.7059C11.8556 12.1179 12.3448 11.6402 12.9469 11.3406C13.6314 11 14.5281 11 16.3203 11H18.8803C20.6725 11 21.5681 11 22.2526 11.3406C22.8547 11.6402 23.3448 12.1179 23.6516 12.7059C24 13.3738 24 14.2484 24 15.9952V20.7595M24 36H36.8M24 36V20.7595M36.8 36H40M36.8 36V27.2003C36.8 26.3796 36.8 25.9687 36.6992 25.5859C36.6099 25.2466 36.4623 24.9248 36.2635 24.6331C36.0392 24.304 35.7272 24.0294 35.1019 23.4808L31.4219 20.2522C30.2123 19.1909 29.6072 18.6605 28.9234 18.4593C28.3211 18.282 27.6785 18.282 27.0762 18.4593C26.3925 18.6605 25.7876 19.1912 24.5783 20.2522L24 20.7595' stroke='%237343ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.ico__mato-1 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.7397 24.7615H42.2397' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.7603 24.7615L21.2603 26.2615L25.7603 21.7615' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31.7397 38.7609H42.2397' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.7603 38.7609L21.2603 40.2609L25.7603 35.7609' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M24.9998 51.0007H36.9998C46.9998 51.0007 50.9998 47.0007 50.9998 37.0007V25.0007C50.9998 15.0007 46.9998 11.0007 36.9998 11.0007H24.9998C14.9998 11.0007 10.9998 15.0007 10.9998 25.0007V37.0007C10.9998 47.0007 14.9998 51.0007 24.9998 51.0007Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__mato-1--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.7397 24.7615H42.2397' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.7603 24.7615L21.2603 26.2615L25.7603 21.7615' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31.7397 38.7609H42.2397' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.7603 38.7609L21.2603 40.2609L25.7603 35.7609' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M24.9998 51.0007H36.9998C46.9998 51.0007 50.9998 47.0007 50.9998 37.0007V25.0007C50.9998 15.0007 46.9998 11.0007 36.9998 11.0007H24.9998C14.9998 11.0007 10.9998 15.0007 10.9998 25.0007V37.0007C10.9998 47.0007 14.9998 51.0007 24.9998 51.0007Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__mato-1--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.7397 24.7615H42.2397' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.7603 24.7615L21.2603 26.2615L25.7603 21.7615' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31.7397 38.7609H42.2397' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.7603 38.7609L21.2603 40.2609L25.7603 35.7609' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M24.9998 51.0007H36.9998C46.9998 51.0007 50.9998 47.0007 50.9998 37.0007V25.0007C50.9998 15.0007 46.9998 11.0007 36.9998 11.0007H24.9998C14.9998 11.0007 10.9998 15.0007 10.9998 25.0007V37.0007C10.9998 47.0007 14.9998 51.0007 24.9998 51.0007Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__mato-1--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.7397 24.7615H42.2397' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.7603 24.7615L21.2603 26.2615L25.7603 21.7615' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31.7397 38.7609H42.2397' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.7603 38.7609L21.2603 40.2609L25.7603 35.7609' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M24.9998 51.0007H36.9998C46.9998 51.0007 50.9998 47.0007 50.9998 37.0007V25.0007C50.9998 15.0007 46.9998 11.0007 36.9998 11.0007H24.9998C14.9998 11.0007 10.9998 15.0007 10.9998 25.0007V37.0007C10.9998 47.0007 14.9998 51.0007 24.9998 51.0007Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.ico__mato-2 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.6494 40.4844L20.1494 41.9844L24.6494 37.4844' stroke='%231d1d1d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.8333 48.6667H23.8333C28 48.6667 29.6667 47 29.6667 42.8333V37.8333C29.6667 33.6667 28 32 23.8333 32H18.8333C14.6667 32 13 33.6667 13 37.8333V42.8333C13 47 14.6667 48.6667 18.8333 48.6667Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M51 37C51 44.74 44.74 51 37 51L39.1 47.5' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 25C11 17.26 17.26 11 25 11L22.9 14.5' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M44 29C48.9706 29 53 24.9706 53 20C53 15.0294 48.9706 11 44 11C39.0294 11 35 15.0294 35 20C35 24.9706 39.0294 29 44 29Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__mato-2--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.6494 40.4844L20.1494 41.9844L24.6494 37.4844' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.8333 48.6667H23.8333C28 48.6667 29.6667 47 29.6667 42.8333V37.8333C29.6667 33.6667 28 32 23.8333 32H18.8333C14.6667 32 13 33.6667 13 37.8333V42.8333C13 47 14.6667 48.6667 18.8333 48.6667Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M51 37C51 44.74 44.74 51 37 51L39.1 47.5' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 25C11 17.26 17.26 11 25 11L22.9 14.5' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M44 29C48.9706 29 53 24.9706 53 20C53 15.0294 48.9706 11 44 11C39.0294 11 35 15.0294 35 20C35 24.9706 39.0294 29 44 29Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__mato-2--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.6494 40.4844L20.1494 41.9844L24.6494 37.4844' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.8333 48.6667H23.8333C28 48.6667 29.6667 47 29.6667 42.8333V37.8333C29.6667 33.6667 28 32 23.8333 32H18.8333C14.6667 32 13 33.6667 13 37.8333V42.8333C13 47 14.6667 48.6667 18.8333 48.6667Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M51 37C51 44.74 44.74 51 37 51L39.1 47.5' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 25C11 17.26 17.26 11 25 11L22.9 14.5' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M44 29C48.9706 29 53 24.9706 53 20C53 15.0294 48.9706 11 44 11C39.0294 11 35 15.0294 35 20C35 24.9706 39.0294 29 44 29Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__mato-2--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.6494 40.4844L20.1494 41.9844L24.6494 37.4844' stroke='%237343ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.8333 48.6667H23.8333C28 48.6667 29.6667 47 29.6667 42.8333V37.8333C29.6667 33.6667 28 32 23.8333 32H18.8333C14.6667 32 13 33.6667 13 37.8333V42.8333C13 47 14.6667 48.6667 18.8333 48.6667Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M51 37C51 44.74 44.74 51 37 51L39.1 47.5' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 25C11 17.26 17.26 11 25 11L22.9 14.5' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M44 29C48.9706 29 53 24.9706 53 20C53 15.0294 48.9706 11 44 11C39.0294 11 35 15.0294 35 20C35 24.9706 39.0294 29 44 29Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.ico__mato-3 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.8025 25.0618C19.8825 25.3119 19.3345 26.2915 19.578 27.2432L20.3222 30.0637H18.7324C17.7785 30.0637 17.0005 30.8696 17.0005 31.8422C17.0005 32.8147 17.7785 33.6206 18.7324 33.6206H21.2558L23.7725 41.6861C24.2325 42.5267 24.6317 42.9783 25.3961 42.9991C25.4097 42.9991 25.4232 42.9991 25.4435 42.9991C26.1877 42.9991 26.6545 42.5198 27.0807 41.7695L30.1791 33.6137H30.7677L33.6294 41.7348C34.2044 42.7629 34.5292 42.9991 35.2869 42.9991H35.3207C36.0852 42.9783 36.5114 42.5823 36.9647 41.6861L39.4813 33.6206H42.2754C43.2293 33.6206 44.0005 32.8286 44.0005 31.8422C44.0005 30.8557 43.2293 30.0637 42.2754 30.0637H40.4014L41.1456 27.2432C41.4026 26.2845 40.8547 25.3119 39.9278 25.0618C39.001 24.8048 38.0539 25.3606 37.8103 26.3123L36.8226 30.0637H33.3317L32.1952 26.2567C31.9855 25.5203 31.3292 25.0063 30.5715 24.9993C29.8206 24.9924 29.1441 25.4856 28.9073 26.222L27.6828 30.0707H23.9078L22.9268 26.3193C22.6765 25.3675 21.7294 24.8048 20.8093 25.0688L20.8025 25.0618ZM35.9025 33.6275L35.1922 36.323L34.3939 33.6275H35.9025ZM26.5395 33.6275L25.6059 36.5592L24.8414 33.6275H26.5395Z' fill='%231d1d1d'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M30.5 10.4186C18.8636 10.4186 9.4186 19.8636 9.4186 31.5C9.4186 43.1364 18.8636 52.5814 30.5 52.5814C42.1364 52.5814 51.5814 43.1364 51.5814 31.5C51.5814 30.556 52.3467 29.7907 53.2907 29.7907C54.2347 29.7907 55 30.556 55 31.5C55 45.0245 44.0245 56 30.5 56C16.9755 56 6 45.0245 6 31.5C6 17.9755 16.9755 7 30.5 7C31.444 7 32.2093 7.76528 32.2093 8.7093C32.2093 9.65332 31.444 10.4186 30.5 10.4186Z' fill='%231d1d1d'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M42.4648 8.7093C42.4648 7.76528 43.2301 7 44.1741 7H53.2904C54.2344 7 54.9997 7.76528 54.9997 8.7093V17.8256C54.9997 18.7696 54.2344 19.5349 53.2904 19.5349C52.3464 19.5349 51.5811 18.7696 51.5811 17.8256V10.4186H44.1741C43.2301 10.4186 42.4648 9.65332 42.4648 8.7093Z' fill='%231d1d1d'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M54.4993 7.50064C55.1669 8.16817 55.1669 9.25044 54.4993 9.91796L43.104 21.3133C42.4365 21.9808 41.3542 21.9808 40.6867 21.3133C40.0192 20.6458 40.0192 19.5635 40.6867 18.896L52.082 7.50064C52.7496 6.83312 53.8318 6.83312 54.4993 7.50064Z' fill='%231d1d1d'/%3E%3C/svg%3E%0A");
}
.ico__mato-3--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.8025 25.0618C19.8825 25.3119 19.3345 26.2915 19.578 27.2432L20.3222 30.0637H18.7324C17.7785 30.0637 17.0005 30.8696 17.0005 31.8422C17.0005 32.8147 17.7785 33.6206 18.7324 33.6206H21.2558L23.7725 41.6861C24.2325 42.5267 24.6317 42.9783 25.3961 42.9991C25.4097 42.9991 25.4232 42.9991 25.4435 42.9991C26.1877 42.9991 26.6545 42.5198 27.0807 41.7695L30.1791 33.6137H30.7677L33.6294 41.7348C34.2044 42.7629 34.5292 42.9991 35.2869 42.9991H35.3207C36.0852 42.9783 36.5114 42.5823 36.9647 41.6861L39.4813 33.6206H42.2754C43.2293 33.6206 44.0005 32.8286 44.0005 31.8422C44.0005 30.8557 43.2293 30.0637 42.2754 30.0637H40.4014L41.1456 27.2432C41.4026 26.2845 40.8547 25.3119 39.9278 25.0618C39.001 24.8048 38.0539 25.3606 37.8103 26.3123L36.8226 30.0637H33.3317L32.1952 26.2567C31.9855 25.5203 31.3292 25.0063 30.5715 24.9993C29.8206 24.9924 29.1441 25.4856 28.9073 26.222L27.6828 30.0707H23.9078L22.9268 26.3193C22.6765 25.3675 21.7294 24.8048 20.8093 25.0688L20.8025 25.0618ZM35.9025 33.6275L35.1922 36.323L34.3939 33.6275H35.9025ZM26.5395 33.6275L25.6059 36.5592L24.8414 33.6275H26.5395Z' fill='%23000000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M30.5 10.4186C18.8636 10.4186 9.4186 19.8636 9.4186 31.5C9.4186 43.1364 18.8636 52.5814 30.5 52.5814C42.1364 52.5814 51.5814 43.1364 51.5814 31.5C51.5814 30.556 52.3467 29.7907 53.2907 29.7907C54.2347 29.7907 55 30.556 55 31.5C55 45.0245 44.0245 56 30.5 56C16.9755 56 6 45.0245 6 31.5C6 17.9755 16.9755 7 30.5 7C31.444 7 32.2093 7.76528 32.2093 8.7093C32.2093 9.65332 31.444 10.4186 30.5 10.4186Z' fill='%23000000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M42.4648 8.7093C42.4648 7.76528 43.2301 7 44.1741 7H53.2904C54.2344 7 54.9997 7.76528 54.9997 8.7093V17.8256C54.9997 18.7696 54.2344 19.5349 53.2904 19.5349C52.3464 19.5349 51.5811 18.7696 51.5811 17.8256V10.4186H44.1741C43.2301 10.4186 42.4648 9.65332 42.4648 8.7093Z' fill='%23000000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M54.4993 7.50064C55.1669 8.16817 55.1669 9.25044 54.4993 9.91796L43.104 21.3133C42.4365 21.9808 41.3542 21.9808 40.6867 21.3133C40.0192 20.6458 40.0192 19.5635 40.6867 18.896L52.082 7.50064C52.7496 6.83312 53.8318 6.83312 54.4993 7.50064Z' fill='%23000000'/%3E%3C/svg%3E%0A");
}
.ico__mato-3--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.8025 25.0618C19.8825 25.3119 19.3345 26.2915 19.578 27.2432L20.3222 30.0637H18.7324C17.7785 30.0637 17.0005 30.8696 17.0005 31.8422C17.0005 32.8147 17.7785 33.6206 18.7324 33.6206H21.2558L23.7725 41.6861C24.2325 42.5267 24.6317 42.9783 25.3961 42.9991C25.4097 42.9991 25.4232 42.9991 25.4435 42.9991C26.1877 42.9991 26.6545 42.5198 27.0807 41.7695L30.1791 33.6137H30.7677L33.6294 41.7348C34.2044 42.7629 34.5292 42.9991 35.2869 42.9991H35.3207C36.0852 42.9783 36.5114 42.5823 36.9647 41.6861L39.4813 33.6206H42.2754C43.2293 33.6206 44.0005 32.8286 44.0005 31.8422C44.0005 30.8557 43.2293 30.0637 42.2754 30.0637H40.4014L41.1456 27.2432C41.4026 26.2845 40.8547 25.3119 39.9278 25.0618C39.001 24.8048 38.0539 25.3606 37.8103 26.3123L36.8226 30.0637H33.3317L32.1952 26.2567C31.9855 25.5203 31.3292 25.0063 30.5715 24.9993C29.8206 24.9924 29.1441 25.4856 28.9073 26.222L27.6828 30.0707H23.9078L22.9268 26.3193C22.6765 25.3675 21.7294 24.8048 20.8093 25.0688L20.8025 25.0618ZM35.9025 33.6275L35.1922 36.323L34.3939 33.6275H35.9025ZM26.5395 33.6275L25.6059 36.5592L24.8414 33.6275H26.5395Z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M30.5 10.4186C18.8636 10.4186 9.4186 19.8636 9.4186 31.5C9.4186 43.1364 18.8636 52.5814 30.5 52.5814C42.1364 52.5814 51.5814 43.1364 51.5814 31.5C51.5814 30.556 52.3467 29.7907 53.2907 29.7907C54.2347 29.7907 55 30.556 55 31.5C55 45.0245 44.0245 56 30.5 56C16.9755 56 6 45.0245 6 31.5C6 17.9755 16.9755 7 30.5 7C31.444 7 32.2093 7.76528 32.2093 8.7093C32.2093 9.65332 31.444 10.4186 30.5 10.4186Z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M42.4648 8.7093C42.4648 7.76528 43.2301 7 44.1741 7H53.2904C54.2344 7 54.9997 7.76528 54.9997 8.7093V17.8256C54.9997 18.7696 54.2344 19.5349 53.2904 19.5349C52.3464 19.5349 51.5811 18.7696 51.5811 17.8256V10.4186H44.1741C43.2301 10.4186 42.4648 9.65332 42.4648 8.7093Z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M54.4993 7.50064C55.1669 8.16817 55.1669 9.25044 54.4993 9.91796L43.104 21.3133C42.4365 21.9808 41.3542 21.9808 40.6867 21.3133C40.0192 20.6458 40.0192 19.5635 40.6867 18.896L52.082 7.50064C52.7496 6.83312 53.8318 6.83312 54.4993 7.50064Z' fill='%23fff'/%3E%3C/svg%3E%0A");
}
.ico__mato-3--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.8025 25.0618C19.8825 25.3119 19.3345 26.2915 19.578 27.2432L20.3222 30.0637H18.7324C17.7785 30.0637 17.0005 30.8696 17.0005 31.8422C17.0005 32.8147 17.7785 33.6206 18.7324 33.6206H21.2558L23.7725 41.6861C24.2325 42.5267 24.6317 42.9783 25.3961 42.9991C25.4097 42.9991 25.4232 42.9991 25.4435 42.9991C26.1877 42.9991 26.6545 42.5198 27.0807 41.7695L30.1791 33.6137H30.7677L33.6294 41.7348C34.2044 42.7629 34.5292 42.9991 35.2869 42.9991H35.3207C36.0852 42.9783 36.5114 42.5823 36.9647 41.6861L39.4813 33.6206H42.2754C43.2293 33.6206 44.0005 32.8286 44.0005 31.8422C44.0005 30.8557 43.2293 30.0637 42.2754 30.0637H40.4014L41.1456 27.2432C41.4026 26.2845 40.8547 25.3119 39.9278 25.0618C39.001 24.8048 38.0539 25.3606 37.8103 26.3123L36.8226 30.0637H33.3317L32.1952 26.2567C31.9855 25.5203 31.3292 25.0063 30.5715 24.9993C29.8206 24.9924 29.1441 25.4856 28.9073 26.222L27.6828 30.0707H23.9078L22.9268 26.3193C22.6765 25.3675 21.7294 24.8048 20.8093 25.0688L20.8025 25.0618ZM35.9025 33.6275L35.1922 36.323L34.3939 33.6275H35.9025ZM26.5395 33.6275L25.6059 36.5592L24.8414 33.6275H26.5395Z' fill='%237343ff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M30.5 10.4186C18.8636 10.4186 9.4186 19.8636 9.4186 31.5C9.4186 43.1364 18.8636 52.5814 30.5 52.5814C42.1364 52.5814 51.5814 43.1364 51.5814 31.5C51.5814 30.556 52.3467 29.7907 53.2907 29.7907C54.2347 29.7907 55 30.556 55 31.5C55 45.0245 44.0245 56 30.5 56C16.9755 56 6 45.0245 6 31.5C6 17.9755 16.9755 7 30.5 7C31.444 7 32.2093 7.76528 32.2093 8.7093C32.2093 9.65332 31.444 10.4186 30.5 10.4186Z' fill='%237343ff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M42.4648 8.7093C42.4648 7.76528 43.2301 7 44.1741 7H53.2904C54.2344 7 54.9997 7.76528 54.9997 8.7093V17.8256C54.9997 18.7696 54.2344 19.5349 53.2904 19.5349C52.3464 19.5349 51.5811 18.7696 51.5811 17.8256V10.4186H44.1741C43.2301 10.4186 42.4648 9.65332 42.4648 8.7093Z' fill='%237343ff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M54.4993 7.50064C55.1669 8.16817 55.1669 9.25044 54.4993 9.91796L43.104 21.3133C42.4365 21.9808 41.3542 21.9808 40.6867 21.3133C40.0192 20.6458 40.0192 19.5635 40.6867 18.896L52.082 7.50064C52.7496 6.83312 53.8318 6.83312 54.4993 7.50064Z' fill='%237343ff'/%3E%3C/svg%3E%0A");
}

.ico__mato-4 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 21.8438V45C50 52.125 45.7488 54.5 40.5 54.5H21.5C16.2512 54.5 12 52.125 12 45V21.8438C12 14.125 16.2512 12.3438 21.5 12.3438C21.5 13.8163 22.0937 15.1462 23.0674 16.12C24.0412 17.0937 25.3712 17.6875 26.8438 17.6875H35.1562C38.1013 17.6875 40.5 15.2888 40.5 12.3438C45.7488 12.3438 50 14.125 50 21.8438Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M40.5 12.3438C40.5 15.2888 38.1013 17.6875 35.1562 17.6875H26.8438C25.3712 17.6875 24.0412 17.0937 23.0674 16.12C22.0937 15.1462 21.5 13.8163 21.5 12.3438C21.5 9.39875 23.8987 7 26.8438 7H35.1562C36.6288 7 37.9588 7.59376 38.9326 8.56751C39.9063 9.54126 40.5 10.8712 40.5 12.3438Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.5 33.125H31' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.5 42.625H40.5' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__mato-4--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 21.8438V45C50 52.125 45.7488 54.5 40.5 54.5H21.5C16.2512 54.5 12 52.125 12 45V21.8438C12 14.125 16.2512 12.3438 21.5 12.3438C21.5 13.8163 22.0937 15.1462 23.0674 16.12C24.0412 17.0937 25.3712 17.6875 26.8438 17.6875H35.1562C38.1013 17.6875 40.5 15.2888 40.5 12.3438C45.7488 12.3438 50 14.125 50 21.8438Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M40.5 12.3438C40.5 15.2888 38.1013 17.6875 35.1562 17.6875H26.8438C25.3712 17.6875 24.0412 17.0937 23.0674 16.12C22.0937 15.1462 21.5 13.8163 21.5 12.3438C21.5 9.39875 23.8987 7 26.8438 7H35.1562C36.6288 7 37.9588 7.59376 38.9326 8.56751C39.9063 9.54126 40.5 10.8712 40.5 12.3438Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.5 33.125H31' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.5 42.625H40.5' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__mato-4--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 21.8438V45C50 52.125 45.7488 54.5 40.5 54.5H21.5C16.2512 54.5 12 52.125 12 45V21.8438C12 14.125 16.2512 12.3438 21.5 12.3438C21.5 13.8163 22.0937 15.1462 23.0674 16.12C24.0412 17.0937 25.3712 17.6875 26.8438 17.6875H35.1562C38.1013 17.6875 40.5 15.2888 40.5 12.3438C45.7488 12.3438 50 14.125 50 21.8438Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M40.5 12.3438C40.5 15.2888 38.1013 17.6875 35.1562 17.6875H26.8438C25.3712 17.6875 24.0412 17.0937 23.0674 16.12C22.0937 15.1462 21.5 13.8163 21.5 12.3438C21.5 9.39875 23.8987 7 26.8438 7H35.1562C36.6288 7 37.9588 7.59376 38.9326 8.56751C39.9063 9.54126 40.5 10.8712 40.5 12.3438Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.5 33.125H31' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.5 42.625H40.5' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__mato-4--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 21.8438V45C50 52.125 45.7488 54.5 40.5 54.5H21.5C16.2512 54.5 12 52.125 12 45V21.8438C12 14.125 16.2512 12.3438 21.5 12.3438C21.5 13.8163 22.0937 15.1462 23.0674 16.12C24.0412 17.0937 25.3712 17.6875 26.8438 17.6875H35.1562C38.1013 17.6875 40.5 15.2888 40.5 12.3438C45.7488 12.3438 50 14.125 50 21.8438Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M40.5 12.3438C40.5 15.2888 38.1013 17.6875 35.1562 17.6875H26.8438C25.3712 17.6875 24.0412 17.0937 23.0674 16.12C22.0937 15.1462 21.5 13.8163 21.5 12.3438C21.5 9.39875 23.8987 7 26.8438 7H35.1562C36.6288 7 37.9588 7.59376 38.9326 8.56751C39.9063 9.54126 40.5 10.8712 40.5 12.3438Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.5 33.125H31' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.5 42.625H40.5' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.ico__card-1 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43.2857 13H11.7143C9.66294 13 8 14.6789 8 16.75V39.25C8 41.3211 9.66294 43 11.7143 43H43.2857C45.3371 43 47 41.3211 47 39.25V16.75C47 14.6789 45.3371 13 43.2857 13Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M27.5 33C30.5376 33 33 30.5376 33 27.5C33 24.4624 30.5376 22 27.5 22C24.4624 22 22 24.4624 22 27.5C22 30.5376 24.4624 33 27.5 33Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 52H52.3C53.2813 52 54.2224 51.6137 54.9163 50.9261C55.6102 50.2384 56 49.3058 56 48.3333V30' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__card-1--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43.2857 13H11.7143C9.66294 13 8 14.6789 8 16.75V39.25C8 41.3211 9.66294 43 11.7143 43H43.2857C45.3371 43 47 41.3211 47 39.25V16.75C47 14.6789 45.3371 13 43.2857 13Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M27.5 33C30.5376 33 33 30.5376 33 27.5C33 24.4624 30.5376 22 27.5 22C24.4624 22 22 24.4624 22 27.5C22 30.5376 24.4624 33 27.5 33Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 52H52.3C53.2813 52 54.2224 51.6137 54.9163 50.9261C55.6102 50.2384 56 49.3058 56 48.3333V30' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__card-1--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43.2857 13H11.7143C9.66294 13 8 14.6789 8 16.75V39.25C8 41.3211 9.66294 43 11.7143 43H43.2857C45.3371 43 47 41.3211 47 39.25V16.75C47 14.6789 45.3371 13 43.2857 13Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M27.5 33C30.5376 33 33 30.5376 33 27.5C33 24.4624 30.5376 22 27.5 22C24.4624 22 22 24.4624 22 27.5C22 30.5376 24.4624 33 27.5 33Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 52H52.3C53.2813 52 54.2224 51.6137 54.9163 50.9261C55.6102 50.2384 56 49.3058 56 48.3333V30' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__card-1--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43.2857 13H11.7143C9.66294 13 8 14.6789 8 16.75V39.25C8 41.3211 9.66294 43 11.7143 43H43.2857C45.3371 43 47 41.3211 47 39.25V16.75C47 14.6789 45.3371 13 43.2857 13Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M27.5 33C30.5376 33 33 30.5376 33 27.5C33 24.4624 30.5376 22 27.5 22C24.4624 22 22 24.4624 22 27.5C22 30.5376 24.4624 33 27.5 33Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 52H52.3C53.2813 52 54.2224 51.6137 54.9163 50.9261C55.6102 50.2384 56 49.3058 56 48.3333V30' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.ico__card-2 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31 7V23L35 18.4286' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31 23L27 19' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 32H18.702C19.538 32 20.286 32.4725 20.66 33.2375L23.234 38.5025C23.982 40.0325 25.5 41 27.172 41H34.938C36.61 41 38.128 40.0325 38.876 38.5025L41.45 33.2375C41.824 32.4725 42.594 32 43.408 32H53' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20 12C12.212 13.1931 9 17.9653 9 27.7622V36.9396C9 48.4113 13.4 53 24.4 53H37.6C48.6 53 53 48.4113 53 36.9396V27.7622C53 17.9653 49.788 13.1931 42 12' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__card-2--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31 7V23L35 18.4286' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31 23L27 19' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 32H18.702C19.538 32 20.286 32.4725 20.66 33.2375L23.234 38.5025C23.982 40.0325 25.5 41 27.172 41H34.938C36.61 41 38.128 40.0325 38.876 38.5025L41.45 33.2375C41.824 32.4725 42.594 32 43.408 32H53' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20 12C12.212 13.1931 9 17.9653 9 27.7622V36.9396C9 48.4113 13.4 53 24.4 53H37.6C48.6 53 53 48.4113 53 36.9396V27.7622C53 17.9653 49.788 13.1931 42 12' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__card-2--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31 7V23L35 18.4286' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31 23L27 19' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 32H18.702C19.538 32 20.286 32.4725 20.66 33.2375L23.234 38.5025C23.982 40.0325 25.5 41 27.172 41H34.938C36.61 41 38.128 40.0325 38.876 38.5025L41.45 33.2375C41.824 32.4725 42.594 32 43.408 32H53' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20 12C12.212 13.1931 9 17.9653 9 27.7622V36.9396C9 48.4113 13.4 53 24.4 53H37.6C48.6 53 53 48.4113 53 36.9396V27.7622C53 17.9653 49.788 13.1931 42 12' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__card-2--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31 7V23L35 18.4286' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31 23L27 19' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 32H18.702C19.538 32 20.286 32.4725 20.66 33.2375L23.234 38.5025C23.982 40.0325 25.5 41 27.172 41H34.938C36.61 41 38.128 40.0325 38.876 38.5025L41.45 33.2375C41.824 32.4725 42.594 32 43.408 32H53' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20 12C12.212 13.1931 9 17.9653 9 27.7622V36.9396C9 48.4113 13.4 53 24.4 53H37.6C48.6 53 53 48.4113 53 36.9396V27.7622C53 17.9653 49.788 13.1931 42 12' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.ico__card-3 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M52.2505 26.2289L49.8991 36.3537C47.8836 45.0979 43.9006 48.6343 36.4145 47.9077C35.2148 47.8108 33.9191 47.5928 32.5275 47.2537L28.4965 46.2848C18.4911 43.8868 15.3958 38.897 17.7472 28.7722L20.0986 18.6231C20.5785 16.5642 21.1544 14.7718 21.8742 13.2942C24.6815 7.43247 29.4563 5.85803 37.4702 7.77158L41.4772 8.71624C51.5307 11.09 54.6019 16.104 52.2505 26.2289Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M36 47.8488C34.5299 48.8731 32.6804 49.7266 30.4279 50.4826L26.6815 51.7507C17.2682 54.8722 12.3126 52.2628 9.25381 42.5812L6.21878 32.9484C3.18376 23.2669 5.69714 18.1456 15.1105 15.0241L18.8568 13.756C19.829 13.439 20.7537 13.1707 21.631 13C20.9197 14.4876 20.3506 16.2922 19.8764 18.3651L17.5527 28.5832C15.229 38.7769 18.2878 43.8006 28.1753 46.2149L32.1588 47.1904C33.534 47.5318 34.8144 47.7513 36 47.8488Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31 22L43 25' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M28 31L35 33' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__card-3--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M52.2505 26.2289L49.8991 36.3537C47.8836 45.0979 43.9006 48.6343 36.4145 47.9077C35.2148 47.8108 33.9191 47.5928 32.5275 47.2537L28.4965 46.2848C18.4911 43.8868 15.3958 38.897 17.7472 28.7722L20.0986 18.6231C20.5785 16.5642 21.1544 14.7718 21.8742 13.2942C24.6815 7.43247 29.4563 5.85803 37.4702 7.77158L41.4772 8.71624C51.5307 11.09 54.6019 16.104 52.2505 26.2289Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M36 47.8488C34.5299 48.8731 32.6804 49.7266 30.4279 50.4826L26.6815 51.7507C17.2682 54.8722 12.3126 52.2628 9.25381 42.5812L6.21878 32.9484C3.18376 23.2669 5.69714 18.1456 15.1105 15.0241L18.8568 13.756C19.829 13.439 20.7537 13.1707 21.631 13C20.9197 14.4876 20.3506 16.2922 19.8764 18.3651L17.5527 28.5832C15.229 38.7769 18.2878 43.8006 28.1753 46.2149L32.1588 47.1904C33.534 47.5318 34.8144 47.7513 36 47.8488Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31 22L43 25' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M28 31L35 33' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__card-3--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M52.2505 26.2289L49.8991 36.3537C47.8836 45.0979 43.9006 48.6343 36.4145 47.9077C35.2148 47.8108 33.9191 47.5928 32.5275 47.2537L28.4965 46.2848C18.4911 43.8868 15.3958 38.897 17.7472 28.7722L20.0986 18.6231C20.5785 16.5642 21.1544 14.7718 21.8742 13.2942C24.6815 7.43247 29.4563 5.85803 37.4702 7.77158L41.4772 8.71624C51.5307 11.09 54.6019 16.104 52.2505 26.2289Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M36 47.8488C34.5299 48.8731 32.6804 49.7266 30.4279 50.4826L26.6815 51.7507C17.2682 54.8722 12.3126 52.2628 9.25381 42.5812L6.21878 32.9484C3.18376 23.2669 5.69714 18.1456 15.1105 15.0241L18.8568 13.756C19.829 13.439 20.7537 13.1707 21.631 13C20.9197 14.4876 20.3506 16.2922 19.8764 18.3651L17.5527 28.5832C15.229 38.7769 18.2878 43.8006 28.1753 46.2149L32.1588 47.1904C33.534 47.5318 34.8144 47.7513 36 47.8488Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31 22L43 25' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M28 31L35 33' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__card-3--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M52.2505 26.2289L49.8991 36.3537C47.8836 45.0979 43.9006 48.6343 36.4145 47.9077C35.2148 47.8108 33.9191 47.5928 32.5275 47.2537L28.4965 46.2848C18.4911 43.8868 15.3958 38.897 17.7472 28.7722L20.0986 18.6231C20.5785 16.5642 21.1544 14.7718 21.8742 13.2942C24.6815 7.43247 29.4563 5.85803 37.4702 7.77158L41.4772 8.71624C51.5307 11.09 54.6019 16.104 52.2505 26.2289Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M36 47.8488C34.5299 48.8731 32.6804 49.7266 30.4279 50.4826L26.6815 51.7507C17.2682 54.8722 12.3126 52.2628 9.25381 42.5812L6.21878 32.9484C3.18376 23.2669 5.69714 18.1456 15.1105 15.0241L18.8568 13.756C19.829 13.439 20.7537 13.1707 21.631 13C20.9197 14.4876 20.3506 16.2922 19.8764 18.3651L17.5527 28.5832C15.229 38.7769 18.2878 43.8006 28.1753 46.2149L32.1588 47.1904C33.534 47.5318 34.8144 47.7513 36 47.8488Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31 22L43 25' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M28 31L35 33' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.ico__card-4 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M52 23.4631V39.5369C52 42.1689 50.6131 44.613 48.3709 45.9525L34.6406 54.013C32.3985 55.329 29.6247 55.329 27.3594 54.013L13.6291 45.9525C11.3869 44.6365 10 42.1924 10 39.5369V23.4631C10 20.8311 11.3869 18.387 13.6291 17.0475L27.3594 8.987C29.6015 7.671 32.3753 7.671 34.6406 8.987L48.3709 17.0475C50.6131 18.387 52 20.8076 52 23.4631Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31 29C33.7614 29 36 26.5375 36 23.4999C36 20.4623 33.7614 18 31 18C28.2386 18 26 20.4623 26 23.4999C26 26.5375 28.2386 29 31 29Z' stroke='%231d1d1d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M40 42C40 37.5828 35.9725 34 31 34C26.0275 34 22 37.5828 22 42' stroke='%231d1d1d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__card-4--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M52 23.4631V39.5369C52 42.1689 50.6131 44.613 48.3709 45.9525L34.6406 54.013C32.3985 55.329 29.6247 55.329 27.3594 54.013L13.6291 45.9525C11.3869 44.6365 10 42.1924 10 39.5369V23.4631C10 20.8311 11.3869 18.387 13.6291 17.0475L27.3594 8.987C29.6015 7.671 32.3753 7.671 34.6406 8.987L48.3709 17.0475C50.6131 18.387 52 20.8076 52 23.4631Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31 29C33.7614 29 36 26.5375 36 23.4999C36 20.4623 33.7614 18 31 18C28.2386 18 26 20.4623 26 23.4999C26 26.5375 28.2386 29 31 29Z' stroke='%23000000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M40 42C40 37.5828 35.9725 34 31 34C26.0275 34 22 37.5828 22 42' stroke='%23000000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__card-4--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M52 23.4631V39.5369C52 42.1689 50.6131 44.613 48.3709 45.9525L34.6406 54.013C32.3985 55.329 29.6247 55.329 27.3594 54.013L13.6291 45.9525C11.3869 44.6365 10 42.1924 10 39.5369V23.4631C10 20.8311 11.3869 18.387 13.6291 17.0475L27.3594 8.987C29.6015 7.671 32.3753 7.671 34.6406 8.987L48.3709 17.0475C50.6131 18.387 52 20.8076 52 23.4631Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31 29C33.7614 29 36 26.5375 36 23.4999C36 20.4623 33.7614 18 31 18C28.2386 18 26 20.4623 26 23.4999C26 26.5375 28.2386 29 31 29Z' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M40 42C40 37.5828 35.9725 34 31 34C26.0275 34 22 37.5828 22 42' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__card-4--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M52 23.4631V39.5369C52 42.1689 50.6131 44.613 48.3709 45.9525L34.6406 54.013C32.3985 55.329 29.6247 55.329 27.3594 54.013L13.6291 45.9525C11.3869 44.6365 10 42.1924 10 39.5369V23.4631C10 20.8311 11.3869 18.387 13.6291 17.0475L27.3594 8.987C29.6015 7.671 32.3753 7.671 34.6406 8.987L48.3709 17.0475C50.6131 18.387 52 20.8076 52 23.4631Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M31 29C33.7614 29 36 26.5375 36 23.4999C36 20.4623 33.7614 18 31 18C28.2386 18 26 20.4623 26 23.4999C26 26.5375 28.2386 29 31 29Z' stroke='%237343ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M40 42C40 37.5828 35.9725 34 31 34C26.0275 34 22 37.5828 22 42' stroke='%237343ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.ico__android {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M0.906751 15.9986C0.635571 15.8736 0.5 15.5612 0.5 15.2488C0.5 15.1862 0.5 15.0613 0.5 14.9988C0.5 10.3746 0.5 5.75043 0.5 1.18875C0.5 0.938789 0.567785 0.751346 0.635571 0.501387C0.703395 0.376388 0.838966 0.251427 0.974575 0.126465C3.88969 2.81347 6.73703 5.50047 9.58436 8.18751C6.66924 10.687 3.82191 13.3116 0.906751 15.9986Z' fill='%231d1d1d'/%3E%3Cpath d='M12.4314 5.4375C11.6179 6.18738 10.7365 6.93722 9.92304 7.74958C7.21128 5.18754 4.43173 2.6255 1.71997 0.0634575C1.71997 0.0634575 1.71997 0.000976562 1.78776 0.000976562C5.31306 1.81314 8.83832 3.62534 12.4314 5.4375Z' fill='%231d1d1d'/%3E%3Cpath d='M1.71997 15.9982C4.43173 13.4986 7.21128 10.9991 9.92304 8.49951C10.6688 9.18687 11.4823 9.87427 12.3636 10.6241C8.83832 12.4363 5.31306 14.2485 1.78776 15.9982H1.71997Z' fill='%231d1d1d'/%3E%3Cpath d='M12.8391 10.3737C11.9578 9.62381 11.1443 8.87394 10.2629 8.12409C11.1443 7.31173 12.0256 6.49937 12.9069 5.68701C13.1781 5.81197 13.4492 5.93697 13.7204 6.12441C14.3983 6.49937 15.1441 6.81181 15.822 7.18673C16.0254 7.24922 16.161 7.37421 16.2966 7.56166C16.5678 7.8741 16.5678 8.18657 16.2966 8.49901C16.161 8.62398 16.0254 8.74897 15.822 8.81145C14.8729 9.37385 13.856 9.87377 12.8391 10.3737Z' fill='%231d1d1d'/%3E%3C/svg%3E");
}
.ico__android--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M0.906751 15.9986C0.635571 15.8736 0.5 15.5612 0.5 15.2488C0.5 15.1862 0.5 15.0613 0.5 14.9988C0.5 10.3746 0.5 5.75043 0.5 1.18875C0.5 0.938789 0.567785 0.751346 0.635571 0.501387C0.703395 0.376388 0.838966 0.251427 0.974575 0.126465C3.88969 2.81347 6.73703 5.50047 9.58436 8.18751C6.66924 10.687 3.82191 13.3116 0.906751 15.9986Z' fill='%23000000'/%3E%3Cpath d='M12.4314 5.4375C11.6179 6.18738 10.7365 6.93722 9.92304 7.74958C7.21128 5.18754 4.43173 2.6255 1.71997 0.0634575C1.71997 0.0634575 1.71997 0.000976562 1.78776 0.000976562C5.31306 1.81314 8.83832 3.62534 12.4314 5.4375Z' fill='%23000000'/%3E%3Cpath d='M1.71997 15.9982C4.43173 13.4986 7.21128 10.9991 9.92304 8.49951C10.6688 9.18687 11.4823 9.87427 12.3636 10.6241C8.83832 12.4363 5.31306 14.2485 1.78776 15.9982H1.71997Z' fill='%23000000'/%3E%3Cpath d='M12.8391 10.3737C11.9578 9.62381 11.1443 8.87394 10.2629 8.12409C11.1443 7.31173 12.0256 6.49937 12.9069 5.68701C13.1781 5.81197 13.4492 5.93697 13.7204 6.12441C14.3983 6.49937 15.1441 6.81181 15.822 7.18673C16.0254 7.24922 16.161 7.37421 16.2966 7.56166C16.5678 7.8741 16.5678 8.18657 16.2966 8.49901C16.161 8.62398 16.0254 8.74897 15.822 8.81145C14.8729 9.37385 13.856 9.87377 12.8391 10.3737Z' fill='%23000000'/%3E%3C/svg%3E");
}
.ico__android--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M0.906751 15.9986C0.635571 15.8736 0.5 15.5612 0.5 15.2488C0.5 15.1862 0.5 15.0613 0.5 14.9988C0.5 10.3746 0.5 5.75043 0.5 1.18875C0.5 0.938789 0.567785 0.751346 0.635571 0.501387C0.703395 0.376388 0.838966 0.251427 0.974575 0.126465C3.88969 2.81347 6.73703 5.50047 9.58436 8.18751C6.66924 10.687 3.82191 13.3116 0.906751 15.9986Z' fill='%23fff'/%3E%3Cpath d='M12.4314 5.4375C11.6179 6.18738 10.7365 6.93722 9.92304 7.74958C7.21128 5.18754 4.43173 2.6255 1.71997 0.0634575C1.71997 0.0634575 1.71997 0.000976562 1.78776 0.000976562C5.31306 1.81314 8.83832 3.62534 12.4314 5.4375Z' fill='%23fff'/%3E%3Cpath d='M1.71997 15.9982C4.43173 13.4986 7.21128 10.9991 9.92304 8.49951C10.6688 9.18687 11.4823 9.87427 12.3636 10.6241C8.83832 12.4363 5.31306 14.2485 1.78776 15.9982H1.71997Z' fill='%23fff'/%3E%3Cpath d='M12.8391 10.3737C11.9578 9.62381 11.1443 8.87394 10.2629 8.12409C11.1443 7.31173 12.0256 6.49937 12.9069 5.68701C13.1781 5.81197 13.4492 5.93697 13.7204 6.12441C14.3983 6.49937 15.1441 6.81181 15.822 7.18673C16.0254 7.24922 16.161 7.37421 16.2966 7.56166C16.5678 7.8741 16.5678 8.18657 16.2966 8.49901C16.161 8.62398 16.0254 8.74897 15.822 8.81145C14.8729 9.37385 13.856 9.87377 12.8391 10.3737Z' fill='%23fff'/%3E%3C/svg%3E");
}
.ico__android--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M0.906751 15.9986C0.635571 15.8736 0.5 15.5612 0.5 15.2488C0.5 15.1862 0.5 15.0613 0.5 14.9988C0.5 10.3746 0.5 5.75043 0.5 1.18875C0.5 0.938789 0.567785 0.751346 0.635571 0.501387C0.703395 0.376388 0.838966 0.251427 0.974575 0.126465C3.88969 2.81347 6.73703 5.50047 9.58436 8.18751C6.66924 10.687 3.82191 13.3116 0.906751 15.9986Z' fill='%237343ff'/%3E%3Cpath d='M12.4314 5.4375C11.6179 6.18738 10.7365 6.93722 9.92304 7.74958C7.21128 5.18754 4.43173 2.6255 1.71997 0.0634575C1.71997 0.0634575 1.71997 0.000976562 1.78776 0.000976562C5.31306 1.81314 8.83832 3.62534 12.4314 5.4375Z' fill='%237343ff'/%3E%3Cpath d='M1.71997 15.9982C4.43173 13.4986 7.21128 10.9991 9.92304 8.49951C10.6688 9.18687 11.4823 9.87427 12.3636 10.6241C8.83832 12.4363 5.31306 14.2485 1.78776 15.9982H1.71997Z' fill='%237343ff'/%3E%3Cpath d='M12.8391 10.3737C11.9578 9.62381 11.1443 8.87394 10.2629 8.12409C11.1443 7.31173 12.0256 6.49937 12.9069 5.68701C13.1781 5.81197 13.4492 5.93697 13.7204 6.12441C14.3983 6.49937 15.1441 6.81181 15.822 7.18673C16.0254 7.24922 16.161 7.37421 16.2966 7.56166C16.5678 7.8741 16.5678 8.18657 16.2966 8.49901C16.161 8.62398 16.0254 8.74897 15.822 8.81145C14.8729 9.37385 13.856 9.87377 12.8391 10.3737Z' fill='%237343ff'/%3E%3C/svg%3E");
}

.ico__apple {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='16' viewBox='0 0 14 16' fill='none'%3E%3Cg clip-path='url(%23clip0_223_4167)'%3E%3Cpath d='M11.3674 8.58951C11.355 6.58759 13.0192 5.62324 13.0932 5.57442C12.144 4.20725 10.677 4.02414 10.1593 4.01194C8.92652 3.88987 7.73076 4.74435 7.10206 4.74435C6.47336 4.74435 5.49949 4.02414 4.45166 4.04856C3.10797 4.07297 1.8629 4.842 1.17256 6.02607C-0.245096 8.45524 0.815064 12.0319 2.17108 13.9972C2.84909 14.9615 3.65038 16.0357 4.68588 15.9991C5.70906 15.9625 6.07888 15.3521 7.31163 15.3521C8.54437 15.3521 8.88954 15.9991 9.9497 15.9747C11.0468 15.9625 11.7248 15.0103 12.3905 14.0338C13.1795 12.9352 13.4877 11.8488 13.5 11.7877C13.4753 11.7877 11.3797 10.9821 11.355 8.58951H11.3674Z' fill='%231d1d1d'/%3E%3Cpath d='M8.72704 2.77877C9.23045 2.044 9.58513 1.02868 9.48216 0C8.74992 0.0400784 7.82319 0.587817 7.2969 1.32259C6.82781 1.96384 6.40449 3.00588 6.5189 3.99448C7.34266 4.06128 8.18931 3.51354 8.72704 2.77877Z' fill='%231d1d1d'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_223_4167'%3E%3Crect width='13' height='16' fill='%231d1d1d' transform='translate(0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.ico__apple--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='16' viewBox='0 0 14 16' fill='none'%3E%3Cg clip-path='url(%23clip0_223_4167)'%3E%3Cpath d='M11.3674 8.58951C11.355 6.58759 13.0192 5.62324 13.0932 5.57442C12.144 4.20725 10.677 4.02414 10.1593 4.01194C8.92652 3.88987 7.73076 4.74435 7.10206 4.74435C6.47336 4.74435 5.49949 4.02414 4.45166 4.04856C3.10797 4.07297 1.8629 4.842 1.17256 6.02607C-0.245096 8.45524 0.815064 12.0319 2.17108 13.9972C2.84909 14.9615 3.65038 16.0357 4.68588 15.9991C5.70906 15.9625 6.07888 15.3521 7.31163 15.3521C8.54437 15.3521 8.88954 15.9991 9.9497 15.9747C11.0468 15.9625 11.7248 15.0103 12.3905 14.0338C13.1795 12.9352 13.4877 11.8488 13.5 11.7877C13.4753 11.7877 11.3797 10.9821 11.355 8.58951H11.3674Z' fill='%23000000'/%3E%3Cpath d='M8.72704 2.77877C9.23045 2.044 9.58513 1.02868 9.48216 0C8.74992 0.0400784 7.82319 0.587817 7.2969 1.32259C6.82781 1.96384 6.40449 3.00588 6.5189 3.99448C7.34266 4.06128 8.18931 3.51354 8.72704 2.77877Z' fill='%23000000'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_223_4167'%3E%3Crect width='13' height='16' fill='%23000000' transform='translate(0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.ico__apple--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='16' viewBox='0 0 14 16' fill='none'%3E%3Cg clip-path='url(%23clip0_223_4167)'%3E%3Cpath d='M11.3674 8.58951C11.355 6.58759 13.0192 5.62324 13.0932 5.57442C12.144 4.20725 10.677 4.02414 10.1593 4.01194C8.92652 3.88987 7.73076 4.74435 7.10206 4.74435C6.47336 4.74435 5.49949 4.02414 4.45166 4.04856C3.10797 4.07297 1.8629 4.842 1.17256 6.02607C-0.245096 8.45524 0.815064 12.0319 2.17108 13.9972C2.84909 14.9615 3.65038 16.0357 4.68588 15.9991C5.70906 15.9625 6.07888 15.3521 7.31163 15.3521C8.54437 15.3521 8.88954 15.9991 9.9497 15.9747C11.0468 15.9625 11.7248 15.0103 12.3905 14.0338C13.1795 12.9352 13.4877 11.8488 13.5 11.7877C13.4753 11.7877 11.3797 10.9821 11.355 8.58951H11.3674Z' fill='%23fff'/%3E%3Cpath d='M8.72704 2.77877C9.23045 2.044 9.58513 1.02868 9.48216 0C8.74992 0.0400784 7.82319 0.587817 7.2969 1.32259C6.82781 1.96384 6.40449 3.00588 6.5189 3.99448C7.34266 4.06128 8.18931 3.51354 8.72704 2.77877Z' fill='%23fff'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_223_4167'%3E%3Crect width='13' height='16' fill='%23fff' transform='translate(0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.ico__apple--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='16' viewBox='0 0 14 16' fill='none'%3E%3Cg clip-path='url(%23clip0_223_4167)'%3E%3Cpath d='M11.3674 8.58951C11.355 6.58759 13.0192 5.62324 13.0932 5.57442C12.144 4.20725 10.677 4.02414 10.1593 4.01194C8.92652 3.88987 7.73076 4.74435 7.10206 4.74435C6.47336 4.74435 5.49949 4.02414 4.45166 4.04856C3.10797 4.07297 1.8629 4.842 1.17256 6.02607C-0.245096 8.45524 0.815064 12.0319 2.17108 13.9972C2.84909 14.9615 3.65038 16.0357 4.68588 15.9991C5.70906 15.9625 6.07888 15.3521 7.31163 15.3521C8.54437 15.3521 8.88954 15.9991 9.9497 15.9747C11.0468 15.9625 11.7248 15.0103 12.3905 14.0338C13.1795 12.9352 13.4877 11.8488 13.5 11.7877C13.4753 11.7877 11.3797 10.9821 11.355 8.58951H11.3674Z' fill='%237343ff'/%3E%3Cpath d='M8.72704 2.77877C9.23045 2.044 9.58513 1.02868 9.48216 0C8.74992 0.0400784 7.82319 0.587817 7.2969 1.32259C6.82781 1.96384 6.40449 3.00588 6.5189 3.99448C7.34266 4.06128 8.18931 3.51354 8.72704 2.77877Z' fill='%237343ff'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_223_4167'%3E%3Crect width='13' height='16' fill='%237343ff' transform='translate(0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.ico__home {
  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%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 11L12 6L18 11V17C18 17.5523 17.5523 18 17 18H13.5V15C13.5 14.4477 13.0523 14 12.5 14H11.5C10.9477 14 10.5 14.4477 10.5 15V18H7C6.44772 18 6 17.5523 6 17V11Z' fill='%231d1d1d'/%3E%3C/svg%3E%0A");
}
.ico__home--black {
  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%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 11L12 6L18 11V17C18 17.5523 17.5523 18 17 18H13.5V15C13.5 14.4477 13.0523 14 12.5 14H11.5C10.9477 14 10.5 14.4477 10.5 15V18H7C6.44772 18 6 17.5523 6 17V11Z' fill='%23000000'/%3E%3C/svg%3E%0A");
}
.ico__home--white {
  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%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 11L12 6L18 11V17C18 17.5523 17.5523 18 17 18H13.5V15C13.5 14.4477 13.0523 14 12.5 14H11.5C10.9477 14 10.5 14.4477 10.5 15V18H7C6.44772 18 6 17.5523 6 17V11Z' fill='%23fff'/%3E%3C/svg%3E%0A");
}
.ico__home--point {
  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%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 11L12 6L18 11V17C18 17.5523 17.5523 18 17 18H13.5V15C13.5 14.4477 13.0523 14 12.5 14H11.5C10.9477 14 10.5 14.4477 10.5 15V18H7C6.44772 18 6 17.5523 6 17V11Z' fill='%237343ff'/%3E%3C/svg%3E%0A");
}

.ico__chevron {
  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%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%231d1d1d' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__chevron--black {
  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%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%23000000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__chevron--white {
  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%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%23fff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__chevron--point {
  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%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

.ico__dropdown-arrow {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='%231D1D1D' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='black' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='black' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ico__dropdown-arrow--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='%231D1D1D' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='black' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='black' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ico__dropdown-arrow--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='%231D1D1D' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='black' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='black' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ico__dropdown-arrow--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='%231D1D1D' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='black' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='black' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ico__download {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M2.5 14H14.5M8.5 2V11.3333M8.5 11.3333L13.1667 6.66667M8.5 11.3333L3.83333 6.66667' stroke='%231d1d1d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__download--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M2.5 14H14.5M8.5 2V11.3333M8.5 11.3333L13.1667 6.66667M8.5 11.3333L3.83333 6.66667' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__download--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M2.5 14H14.5M8.5 2V11.3333M8.5 11.3333L13.1667 6.66667M8.5 11.3333L3.83333 6.66667' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__download--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M2.5 14H14.5M8.5 2V11.3333M8.5 11.3333L13.1667 6.66667M8.5 11.3333L3.83333 6.66667' stroke='%237343ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__file {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M14.1025 7.26634L8.09206 13.2768C6.72523 14.6436 4.50915 14.6436 3.14231 13.2768C1.77548 11.9099 1.77548 9.69384 3.14231 8.327L9.15272 2.3166C10.0639 1.40537 11.5413 1.40537 12.4526 2.3166C13.3638 3.22782 13.3638 4.7052 12.4526 5.61643L6.67785 11.3911C6.22224 11.8467 5.48354 11.8467 5.02793 11.3911C4.57232 10.9355 4.57232 10.1968 5.02793 9.74122L10.0955 4.67362' stroke='%231d1d1d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__file--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M14.1025 7.26634L8.09206 13.2768C6.72523 14.6436 4.50915 14.6436 3.14231 13.2768C1.77548 11.9099 1.77548 9.69384 3.14231 8.327L9.15272 2.3166C10.0639 1.40537 11.5413 1.40537 12.4526 2.3166C13.3638 3.22782 13.3638 4.7052 12.4526 5.61643L6.67785 11.3911C6.22224 11.8467 5.48354 11.8467 5.02793 11.3911C4.57232 10.9355 4.57232 10.1968 5.02793 9.74122L10.0955 4.67362' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__file--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M14.1025 7.26634L8.09206 13.2768C6.72523 14.6436 4.50915 14.6436 3.14231 13.2768C1.77548 11.9099 1.77548 9.69384 3.14231 8.327L9.15272 2.3166C10.0639 1.40537 11.5413 1.40537 12.4526 2.3166C13.3638 3.22782 13.3638 4.7052 12.4526 5.61643L6.67785 11.3911C6.22224 11.8467 5.48354 11.8467 5.02793 11.3911C4.57232 10.9355 4.57232 10.1968 5.02793 9.74122L10.0955 4.67362' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__file--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M14.1025 7.26634L8.09206 13.2768C6.72523 14.6436 4.50915 14.6436 3.14231 13.2768C1.77548 11.9099 1.77548 9.69384 3.14231 8.327L9.15272 2.3166C10.0639 1.40537 11.5413 1.40537 12.4526 2.3166C13.3638 3.22782 13.3638 4.7052 12.4526 5.61643L6.67785 11.3911C6.22224 11.8467 5.48354 11.8467 5.02793 11.3911C4.57232 10.9355 4.57232 10.1968 5.02793 9.74122L10.0955 4.67362' stroke='%237343ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__sb-electroniccard {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Crect width='100' height='100' fill='url(%23pattern0_419_13359)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_419_13359' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_419_13359' transform='scale(0.01)'/%3E%3C/pattern%3E%3Cimage id='image0_419_13359' width='100' height='100' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAACXBIWXMAAAsTAAALEwEAmpwYAAAGlmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4xLWMwMDIgNzkuYjdjNjRjYywgMjAyNC8wNy8xNi0wNzo1OTo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI2LjAgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyNC0xMS0wOFQxNzozMzoyNCswOTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjQtMTEtMDhUMTc6NDc6MzUrMDk6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQtMTEtMDhUMTc6NDc6MzUrMDk6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjg2YWMxYWViLWFhMjYtZWM0OC1hZTViLTllYTQ1M2E2NDNiYyIgeG1wTU06RG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjJiZmM1YzdmLTRlNmItZDM0My1iOTdhLTdmY2U2NzYwYTEzNyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmQzNjU1N2IwLWI5MWItMmM0Mi1hYzkyLWY5ZmVmM2U2NTZkZCI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ZDM2NTU3YjAtYjkxYi0yYzQyLWFjOTItZjlmZWYzZTY1NmRkIiBzdEV2dDp3aGVuPSIyMDI0LTExLTA4VDE3OjMzOjI0KzA5OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjYuMCAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmYwMzFiMWVmLTJkNzYtZmE0ZS04ODFhLTljZTgyNTk4OTViZSIgc3RFdnQ6d2hlbj0iMjAyNC0xMS0wOFQxNzozOTo1MiswOTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDI2LjAgKFdpbmRvd3MpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo4NmFjMWFlYi1hYTI2LWVjNDgtYWU1Yi05ZWE0NTNhNjQzYmMiIHN0RXZ0OndoZW49IjIwMjQtMTEtMDhUMTc6NDc6MzUrMDk6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyNi4wIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5SHIcLAAAyBklEQVR4nO29eZxlWVXn+11773PuGGNOlVWZlVnzmDUBBRSDDAoKr23FFoe2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'/%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico__sb-electroniccard--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Crect width='100' height='100' fill='url(%23pattern0_419_13359)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_419_13359' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_419_13359' transform='scale(0.01)'/%3E%3C/pattern%3E%3Cimage id='image0_419_13359' width='100' height='100' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAACXBIWXMAAAsTAAALEwEAmpwYAAAGlmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4xLWMwMDIgNzkuYjdjNjRjYywgMjAyNC8wNy8xNi0wNzo1OTo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI2LjAgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyNC0xMS0wOFQxNzozMzoyNCswOTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjQtMTEtMDhUMTc6NDc6MzUrMDk6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQtMTEtMDhUMTc6NDc6MzUrMDk6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjg2YWMxYWViLWFhMjYtZWM0OC1hZTViLTllYTQ1M2E2NDNiYyIgeG1wTU06RG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjJiZmM1YzdmLTRlNmItZDM0My1iOTdhLTdmY2U2NzYwYTEzNyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmQzNjU1N2IwLWI5MWItMmM0Mi1hYzkyLWY5ZmVmM2U2NTZkZCI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ZDM2NTU3YjAtYjkxYi0yYzQyLWFjOTItZjlmZWYzZTY1NmRkIiBzdEV2dDp3aGVuPSIyMDI0LTExLTA4VDE3OjMzOjI0KzA5OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjYuMCAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmYwMzFiMWVmLTJkNzYtZmE0ZS04ODFhLTljZTgyNTk4OTViZSIgc3RFdnQ6d2hlbj0iMjAyNC0xMS0wOFQxNzozOTo1MiswOTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDI2LjAgKFdpbmRvd3MpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo4NmFjMWFlYi1hYTI2LWVjNDgtYWU1Yi05ZWE0NTNhNjQzYmMiIHN0RXZ0OndoZW49IjIwMjQtMTEtMDhUMTc6NDc6MzUrMDk6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyNi4wIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5SHIcLAAAyBklEQVR4nO29eZxlWVXn+11773PuGGNOlVWZlVnzmDUBBRSDDAoKr23FFoe2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'/%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico__sb-electroniccard--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Crect width='100' height='100' fill='url(%23pattern0_419_13359)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_419_13359' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_419_13359' transform='scale(0.01)'/%3E%3C/pattern%3E%3Cimage id='image0_419_13359' width='100' height='100' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAACXBIWXMAAAsTAAALEwEAmpwYAAAGlmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4xLWMwMDIgNzkuYjdjNjRjYywgMjAyNC8wNy8xNi0wNzo1OTo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI2LjAgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyNC0xMS0wOFQxNzozMzoyNCswOTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjQtMTEtMDhUMTc6NDc6MzUrMDk6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQtMTEtMDhUMTc6NDc6MzUrMDk6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjg2YWMxYWViLWFhMjYtZWM0OC1hZTViLTllYTQ1M2E2NDNiYyIgeG1wTU06RG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjJiZmM1YzdmLTRlNmItZDM0My1iOTdhLTdmY2U2NzYwYTEzNyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmQzNjU1N2IwLWI5MWItMmM0Mi1hYzkyLWY5ZmVmM2U2NTZkZCI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ZDM2NTU3YjAtYjkxYi0yYzQyLWFjOTItZjlmZWYzZTY1NmRkIiBzdEV2dDp3aGVuPSIyMDI0LTExLTA4VDE3OjMzOjI0KzA5OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjYuMCAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmYwMzFiMWVmLTJkNzYtZmE0ZS04ODFhLTljZTgyNTk4OTViZSIgc3RFdnQ6d2hlbj0iMjAyNC0xMS0wOFQxNzozOTo1MiswOTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDI2LjAgKFdpbmRvd3MpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo4NmFjMWFlYi1hYTI2LWVjNDgtYWU1Yi05ZWE0NTNhNjQzYmMiIHN0RXZ0OndoZW49IjIwMjQtMTEtMDhUMTc6NDc6MzUrMDk6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyNi4wIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5SHIcLAAAyBklEQVR4nO29eZxlWVXn+11773PuGGNOlVWZlVnzmDUBBRSDDAoKr23FFoe2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'/%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico__sb-electroniccard--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Crect width='100' height='100' fill='url(%23pattern0_419_13359)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_419_13359' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_419_13359' transform='scale(0.01)'/%3E%3C/pattern%3E%3Cimage id='image0_419_13359' width='100' height='100' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAACXBIWXMAAAsTAAALEwEAmpwYAAAGlmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4xLWMwMDIgNzkuYjdjNjRjYywgMjAyNC8wNy8xNi0wNzo1OTo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI2LjAgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyNC0xMS0wOFQxNzozMzoyNCswOTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjQtMTEtMDhUMTc6NDc6MzUrMDk6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQtMTEtMDhUMTc6NDc6MzUrMDk6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjg2YWMxYWViLWFhMjYtZWM0OC1hZTViLTllYTQ1M2E2NDNiYyIgeG1wTU06RG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjJiZmM1YzdmLTRlNmItZDM0My1iOTdhLTdmY2U2NzYwYTEzNyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmQzNjU1N2IwLWI5MWItMmM0Mi1hYzkyLWY5ZmVmM2U2NTZkZCI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ZDM2NTU3YjAtYjkxYi0yYzQyLWFjOTItZjlmZWYzZTY1NmRkIiBzdEV2dDp3aGVuPSIyMDI0LTExLTA4VDE3OjMzOjI0KzA5OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjYuMCAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmYwMzFiMWVmLTJkNzYtZmE0ZS04ODFhLTljZTgyNTk4OTViZSIgc3RFdnQ6d2hlbj0iMjAyNC0xMS0wOFQxNzozOTo1MiswOTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDI2LjAgKFdpbmRvd3MpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo4NmFjMWFlYi1hYTI2LWVjNDgtYWU1Yi05ZWE0NTNhNjQzYmMiIHN0RXZ0OndoZW49IjIwMjQtMTEtMDhUMTc6NDc6MzUrMDk6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyNi4wIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5SHIcLAAAyBklEQVR4nO29eZxlWVXn+11773PuGGNOlVWZlVnzmDUBBRSDDAoKr23FFoe2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'/%3E%3C/defs%3E%3C/svg%3E%0A");
}

.ico__sb-prevnext {
  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%3Cpath d='M12.75 5L7.25 10L12.75 15' stroke='%231d1d1d' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__sb-prevnext--black {
  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%3Cpath d='M12.75 5L7.25 10L12.75 15' stroke='%23000000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__sb-prevnext--white {
  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%3Cpath d='M12.75 5L7.25 10L12.75 15' stroke='%23fff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__sb-prevnext--point {
  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%3Cpath d='M12.75 5L7.25 10L12.75 15' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

.ico__sb-firstlast {
  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%3Cpath d='M15.5 5L10 10L15.5 15' stroke='%231d1d1d' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M10 5L4.5 10L10 15' stroke='%231d1d1d' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__sb-firstlast--black {
  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%3Cpath d='M15.5 5L10 10L15.5 15' stroke='%23000000' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M10 5L4.5 10L10 15' stroke='%23000000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__sb-firstlast--white {
  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%3Cpath d='M15.5 5L10 10L15.5 15' stroke='%23fff' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M10 5L4.5 10L10 15' stroke='%23fff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__sb-firstlast--point {
  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%3Cpath d='M15.5 5L10 10L15.5 15' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M10 5L4.5 10L10 15' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

.ico__select {
  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%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%231d1d1d' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%231d1d1d' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%231d1d1d' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__select--black {
  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%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%23000000' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%23000000' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%23000000' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__select--white {
  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%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%23fff' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%23fff' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%23fff' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.ico__select--point {
  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%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%237343ff' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%237343ff' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

.ico__top-arrow {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M8 13.8621L16 6M16 6L24 13.8621M16 6V25' stroke='%231d1d1d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__top-arrow--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M8 13.8621L16 6M16 6L24 13.8621M16 6V25' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__top-arrow--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M8 13.8621L16 6M16 6L24 13.8621M16 6V25' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__top-arrow--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M8 13.8621L16 6M16 6L24 13.8621M16 6V25' stroke='%237343ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__shortcut-arrow {
  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%3Cpath d='M12 16L16 12M16 12L12 8M16 12H8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%231d1d1d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__shortcut-arrow--black {
  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%3Cpath d='M12 16L16 12M16 12L12 8M16 12H8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__shortcut-arrow--white {
  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%3Cpath d='M12 16L16 12M16 12L12 8M16 12H8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__shortcut-arrow--point {
  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%3Cpath d='M12 16L16 12M16 12L12 8M16 12H8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%237343ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__smile-1 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60' fill='none'%3E%3Cpath d='M21.25 33.75C21.25 33.75 24.5312 37.5 30 37.5C35.4688 37.5 38.75 33.75 38.75 33.75M23.125 23.75C23.1348 23.2618 23.15 22.5 23.15 22.5M36.875 23.75L36.9 22.5M17.5 47.5V53.3388C17.5 54.6709 17.5 55.3369 17.7731 55.679C18.0106 55.9766 18.3707 56.1496 18.7513 56.1492C19.1891 56.1487 19.7092 55.7327 20.7494 54.9005L26.713 50.1296C27.9313 49.155 28.5404 48.6677 29.2187 48.3211C29.8205 48.0137 30.4611 47.789 31.123 47.6531C31.8692 47.5 32.6492 47.5 34.2094 47.5H40.5C44.7004 47.5 46.8006 47.5 48.4049 46.6825C49.8161 45.9635 50.9635 44.8161 51.6825 43.4049C52.5 41.8006 52.5 39.7004 52.5 35.5V22C52.5 17.7996 52.5 15.6994 51.6825 14.0951C50.9635 12.6839 49.8161 11.5365 48.4049 10.8175C46.8006 10 44.7004 10 40.5 10H19.5C15.2996 10 13.1994 10 11.5951 10.8175C10.1839 11.5365 9.0365 12.6839 8.31745 14.0951C7.5 15.6994 7.5 17.7996 7.5 22V37.5C7.5 39.8249 7.5 40.9874 7.75556 41.9411C8.44906 44.5293 10.4707 46.5509 13.0589 47.2444C14.0126 47.5 15.1751 47.5 17.5 47.5ZM24.375 23.75C24.375 24.4404 23.8154 25 23.125 25C22.4346 25 21.875 24.4404 21.875 23.75C21.875 23.0596 22.4346 22.5 23.125 22.5C23.8154 22.5 24.375 23.0596 24.375 23.75ZM38.125 23.75C38.125 24.4404 37.5654 25 36.875 25C36.1846 25 35.625 24.4404 35.625 23.75C35.625 23.0596 36.1846 22.5 36.875 22.5C37.5654 22.5 38.125 23.0596 38.125 23.75Z' stroke='%231d1d1d' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__smile-1--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60' fill='none'%3E%3Cpath d='M21.25 33.75C21.25 33.75 24.5312 37.5 30 37.5C35.4688 37.5 38.75 33.75 38.75 33.75M23.125 23.75C23.1348 23.2618 23.15 22.5 23.15 22.5M36.875 23.75L36.9 22.5M17.5 47.5V53.3388C17.5 54.6709 17.5 55.3369 17.7731 55.679C18.0106 55.9766 18.3707 56.1496 18.7513 56.1492C19.1891 56.1487 19.7092 55.7327 20.7494 54.9005L26.713 50.1296C27.9313 49.155 28.5404 48.6677 29.2187 48.3211C29.8205 48.0137 30.4611 47.789 31.123 47.6531C31.8692 47.5 32.6492 47.5 34.2094 47.5H40.5C44.7004 47.5 46.8006 47.5 48.4049 46.6825C49.8161 45.9635 50.9635 44.8161 51.6825 43.4049C52.5 41.8006 52.5 39.7004 52.5 35.5V22C52.5 17.7996 52.5 15.6994 51.6825 14.0951C50.9635 12.6839 49.8161 11.5365 48.4049 10.8175C46.8006 10 44.7004 10 40.5 10H19.5C15.2996 10 13.1994 10 11.5951 10.8175C10.1839 11.5365 9.0365 12.6839 8.31745 14.0951C7.5 15.6994 7.5 17.7996 7.5 22V37.5C7.5 39.8249 7.5 40.9874 7.75556 41.9411C8.44906 44.5293 10.4707 46.5509 13.0589 47.2444C14.0126 47.5 15.1751 47.5 17.5 47.5ZM24.375 23.75C24.375 24.4404 23.8154 25 23.125 25C22.4346 25 21.875 24.4404 21.875 23.75C21.875 23.0596 22.4346 22.5 23.125 22.5C23.8154 22.5 24.375 23.0596 24.375 23.75ZM38.125 23.75C38.125 24.4404 37.5654 25 36.875 25C36.1846 25 35.625 24.4404 35.625 23.75C35.625 23.0596 36.1846 22.5 36.875 22.5C37.5654 22.5 38.125 23.0596 38.125 23.75Z' stroke='%23000000' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__smile-1--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60' fill='none'%3E%3Cpath d='M21.25 33.75C21.25 33.75 24.5312 37.5 30 37.5C35.4688 37.5 38.75 33.75 38.75 33.75M23.125 23.75C23.1348 23.2618 23.15 22.5 23.15 22.5M36.875 23.75L36.9 22.5M17.5 47.5V53.3388C17.5 54.6709 17.5 55.3369 17.7731 55.679C18.0106 55.9766 18.3707 56.1496 18.7513 56.1492C19.1891 56.1487 19.7092 55.7327 20.7494 54.9005L26.713 50.1296C27.9313 49.155 28.5404 48.6677 29.2187 48.3211C29.8205 48.0137 30.4611 47.789 31.123 47.6531C31.8692 47.5 32.6492 47.5 34.2094 47.5H40.5C44.7004 47.5 46.8006 47.5 48.4049 46.6825C49.8161 45.9635 50.9635 44.8161 51.6825 43.4049C52.5 41.8006 52.5 39.7004 52.5 35.5V22C52.5 17.7996 52.5 15.6994 51.6825 14.0951C50.9635 12.6839 49.8161 11.5365 48.4049 10.8175C46.8006 10 44.7004 10 40.5 10H19.5C15.2996 10 13.1994 10 11.5951 10.8175C10.1839 11.5365 9.0365 12.6839 8.31745 14.0951C7.5 15.6994 7.5 17.7996 7.5 22V37.5C7.5 39.8249 7.5 40.9874 7.75556 41.9411C8.44906 44.5293 10.4707 46.5509 13.0589 47.2444C14.0126 47.5 15.1751 47.5 17.5 47.5ZM24.375 23.75C24.375 24.4404 23.8154 25 23.125 25C22.4346 25 21.875 24.4404 21.875 23.75C21.875 23.0596 22.4346 22.5 23.125 22.5C23.8154 22.5 24.375 23.0596 24.375 23.75ZM38.125 23.75C38.125 24.4404 37.5654 25 36.875 25C36.1846 25 35.625 24.4404 35.625 23.75C35.625 23.0596 36.1846 22.5 36.875 22.5C37.5654 22.5 38.125 23.0596 38.125 23.75Z' stroke='%23fff' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__smile-1--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60' fill='none'%3E%3Cpath d='M21.25 33.75C21.25 33.75 24.5312 37.5 30 37.5C35.4688 37.5 38.75 33.75 38.75 33.75M23.125 23.75C23.1348 23.2618 23.15 22.5 23.15 22.5M36.875 23.75L36.9 22.5M17.5 47.5V53.3388C17.5 54.6709 17.5 55.3369 17.7731 55.679C18.0106 55.9766 18.3707 56.1496 18.7513 56.1492C19.1891 56.1487 19.7092 55.7327 20.7494 54.9005L26.713 50.1296C27.9313 49.155 28.5404 48.6677 29.2187 48.3211C29.8205 48.0137 30.4611 47.789 31.123 47.6531C31.8692 47.5 32.6492 47.5 34.2094 47.5H40.5C44.7004 47.5 46.8006 47.5 48.4049 46.6825C49.8161 45.9635 50.9635 44.8161 51.6825 43.4049C52.5 41.8006 52.5 39.7004 52.5 35.5V22C52.5 17.7996 52.5 15.6994 51.6825 14.0951C50.9635 12.6839 49.8161 11.5365 48.4049 10.8175C46.8006 10 44.7004 10 40.5 10H19.5C15.2996 10 13.1994 10 11.5951 10.8175C10.1839 11.5365 9.0365 12.6839 8.31745 14.0951C7.5 15.6994 7.5 17.7996 7.5 22V37.5C7.5 39.8249 7.5 40.9874 7.75556 41.9411C8.44906 44.5293 10.4707 46.5509 13.0589 47.2444C14.0126 47.5 15.1751 47.5 17.5 47.5ZM24.375 23.75C24.375 24.4404 23.8154 25 23.125 25C22.4346 25 21.875 24.4404 21.875 23.75C21.875 23.0596 22.4346 22.5 23.125 22.5C23.8154 22.5 24.375 23.0596 24.375 23.75ZM38.125 23.75C38.125 24.4404 37.5654 25 36.875 25C36.1846 25 35.625 24.4404 35.625 23.75C35.625 23.0596 36.1846 22.5 36.875 22.5C37.5654 22.5 38.125 23.0596 38.125 23.75Z' stroke='%237343ff' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__download-2 {
  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%3Cpath d='M21 15V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V15M17 10L12 15M12 15L7 10M12 15V3' stroke='%231d1d1d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__download-2--black {
  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%3Cpath d='M21 15V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V15M17 10L12 15M12 15L7 10M12 15V3' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__download-2--white {
  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%3Cpath d='M21 15V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V15M17 10L12 15M12 15L7 10M12 15V3' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__download-2--point {
  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%3Cpath d='M21 15V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V15M17 10L12 15M12 15L7 10M12 15V3' stroke='%237343ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__ticket-1 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M49.5 22.5H4.5M24.75 31.5H13.5M4.5 18.45L4.5 35.55C4.5 38.0702 4.5 39.3303 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75L42.3 42.75C44.8202 42.75 46.0804 42.75 47.043 42.2595C47.8897 41.8281 48.5781 41.1397 49.0095 40.293C49.5 39.3304 49.5 38.0702 49.5 35.55V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25L11.7 11.25C9.17977 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__ticket-1--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M49.5 22.5H4.5M24.75 31.5H13.5M4.5 18.45L4.5 35.55C4.5 38.0702 4.5 39.3303 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75L42.3 42.75C44.8202 42.75 46.0804 42.75 47.043 42.2595C47.8897 41.8281 48.5781 41.1397 49.0095 40.293C49.5 39.3304 49.5 38.0702 49.5 35.55V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25L11.7 11.25C9.17977 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__ticket-1--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M49.5 22.5H4.5M24.75 31.5H13.5M4.5 18.45L4.5 35.55C4.5 38.0702 4.5 39.3303 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75L42.3 42.75C44.8202 42.75 46.0804 42.75 47.043 42.2595C47.8897 41.8281 48.5781 41.1397 49.0095 40.293C49.5 39.3304 49.5 38.0702 49.5 35.55V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25L11.7 11.25C9.17977 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__ticket-1--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M49.5 22.5H4.5M24.75 31.5H13.5M4.5 18.45L4.5 35.55C4.5 38.0702 4.5 39.3303 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75L42.3 42.75C44.8202 42.75 46.0804 42.75 47.043 42.2595C47.8897 41.8281 48.5781 41.1397 49.0095 40.293C49.5 39.3304 49.5 38.0702 49.5 35.55V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25L11.7 11.25C9.17977 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__ticket-2 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M36 40.5L40.5 45L49.5 36M49.5 22.5H4.5M49.5 27V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H11.7C9.17976 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45V35.55C4.5 38.0702 4.5 39.3304 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75H27' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__ticket-2--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M36 40.5L40.5 45L49.5 36M49.5 22.5H4.5M49.5 27V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H11.7C9.17976 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45V35.55C4.5 38.0702 4.5 39.3304 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75H27' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__ticket-2--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M36 40.5L40.5 45L49.5 36M49.5 22.5H4.5M49.5 27V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H11.7C9.17976 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45V35.55C4.5 38.0702 4.5 39.3304 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75H27' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__ticket-2--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M36 40.5L40.5 45L49.5 36M49.5 22.5H4.5M49.5 27V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H11.7C9.17976 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45V35.55C4.5 38.0702 4.5 39.3304 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75H27' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__hand {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M30.4414 18.7917C29.1534 19.7099 27.5773 20.25 25.875 20.25C21.5258 20.25 18 16.7242 18 12.375C18 8.02576 21.5258 4.5 25.875 4.5C28.6942 4.5 31.1674 5.98144 32.5586 8.20832M13.5 45.1961H19.3732C20.1389 45.1961 20.9 45.2872 21.6423 45.4695L27.848 46.9775C29.1945 47.3055 30.5972 47.3374 31.9578 47.0732L38.8192 45.7383C40.6317 45.3852 42.2991 44.5173 43.6058 43.2461L48.4603 38.5239C49.8466 37.1776 49.8466 34.993 48.4603 33.6444C47.2121 32.4302 45.2356 32.2935 43.8235 33.3232L38.1658 37.4509C37.3556 38.0432 36.3697 38.3621 35.3557 38.3621H29.8924L33.3699 38.362C35.33 38.362 36.9177 36.8175 36.9177 34.9108V34.2206C36.9177 32.6374 35.81 31.2569 34.2317 30.8742L28.8643 29.5689C27.9909 29.3571 27.0963 29.25 26.1971 29.25C24.0262 29.25 20.0968 31.0473 20.0968 31.0473L13.5 33.806M45 14.625C45 18.9742 41.4742 22.5 37.125 22.5C32.7758 22.5 29.25 18.9742 29.25 14.625C29.25 10.2758 32.7758 6.75 37.125 6.75C41.4742 6.75 45 10.2758 45 14.625ZM4.5 32.85L4.5 45.9C4.5 47.1601 4.5 47.7902 4.74524 48.2715C4.96095 48.6948 5.30516 49.039 5.72852 49.2548C6.20982 49.5 6.83988 49.5 8.1 49.5H9.9C11.1601 49.5 11.7902 49.5 12.2715 49.2548C12.6948 49.039 13.039 48.6948 13.2548 48.2715C13.5 47.7902 13.5 47.1601 13.5 45.9V32.85C13.5 31.5899 13.5 30.9598 13.2548 30.4785C13.039 30.0552 12.6948 29.711 12.2715 29.4952C11.7902 29.25 11.1601 29.25 9.9 29.25L8.1 29.25C6.83988 29.25 6.20982 29.25 5.72852 29.4952C5.30516 29.711 4.96095 30.0552 4.74524 30.4785C4.5 30.9598 4.5 31.5899 4.5 32.85Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__hand--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M30.4414 18.7917C29.1534 19.7099 27.5773 20.25 25.875 20.25C21.5258 20.25 18 16.7242 18 12.375C18 8.02576 21.5258 4.5 25.875 4.5C28.6942 4.5 31.1674 5.98144 32.5586 8.20832M13.5 45.1961H19.3732C20.1389 45.1961 20.9 45.2872 21.6423 45.4695L27.848 46.9775C29.1945 47.3055 30.5972 47.3374 31.9578 47.0732L38.8192 45.7383C40.6317 45.3852 42.2991 44.5173 43.6058 43.2461L48.4603 38.5239C49.8466 37.1776 49.8466 34.993 48.4603 33.6444C47.2121 32.4302 45.2356 32.2935 43.8235 33.3232L38.1658 37.4509C37.3556 38.0432 36.3697 38.3621 35.3557 38.3621H29.8924L33.3699 38.362C35.33 38.362 36.9177 36.8175 36.9177 34.9108V34.2206C36.9177 32.6374 35.81 31.2569 34.2317 30.8742L28.8643 29.5689C27.9909 29.3571 27.0963 29.25 26.1971 29.25C24.0262 29.25 20.0968 31.0473 20.0968 31.0473L13.5 33.806M45 14.625C45 18.9742 41.4742 22.5 37.125 22.5C32.7758 22.5 29.25 18.9742 29.25 14.625C29.25 10.2758 32.7758 6.75 37.125 6.75C41.4742 6.75 45 10.2758 45 14.625ZM4.5 32.85L4.5 45.9C4.5 47.1601 4.5 47.7902 4.74524 48.2715C4.96095 48.6948 5.30516 49.039 5.72852 49.2548C6.20982 49.5 6.83988 49.5 8.1 49.5H9.9C11.1601 49.5 11.7902 49.5 12.2715 49.2548C12.6948 49.039 13.039 48.6948 13.2548 48.2715C13.5 47.7902 13.5 47.1601 13.5 45.9V32.85C13.5 31.5899 13.5 30.9598 13.2548 30.4785C13.039 30.0552 12.6948 29.711 12.2715 29.4952C11.7902 29.25 11.1601 29.25 9.9 29.25L8.1 29.25C6.83988 29.25 6.20982 29.25 5.72852 29.4952C5.30516 29.711 4.96095 30.0552 4.74524 30.4785C4.5 30.9598 4.5 31.5899 4.5 32.85Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__hand--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M30.4414 18.7917C29.1534 19.7099 27.5773 20.25 25.875 20.25C21.5258 20.25 18 16.7242 18 12.375C18 8.02576 21.5258 4.5 25.875 4.5C28.6942 4.5 31.1674 5.98144 32.5586 8.20832M13.5 45.1961H19.3732C20.1389 45.1961 20.9 45.2872 21.6423 45.4695L27.848 46.9775C29.1945 47.3055 30.5972 47.3374 31.9578 47.0732L38.8192 45.7383C40.6317 45.3852 42.2991 44.5173 43.6058 43.2461L48.4603 38.5239C49.8466 37.1776 49.8466 34.993 48.4603 33.6444C47.2121 32.4302 45.2356 32.2935 43.8235 33.3232L38.1658 37.4509C37.3556 38.0432 36.3697 38.3621 35.3557 38.3621H29.8924L33.3699 38.362C35.33 38.362 36.9177 36.8175 36.9177 34.9108V34.2206C36.9177 32.6374 35.81 31.2569 34.2317 30.8742L28.8643 29.5689C27.9909 29.3571 27.0963 29.25 26.1971 29.25C24.0262 29.25 20.0968 31.0473 20.0968 31.0473L13.5 33.806M45 14.625C45 18.9742 41.4742 22.5 37.125 22.5C32.7758 22.5 29.25 18.9742 29.25 14.625C29.25 10.2758 32.7758 6.75 37.125 6.75C41.4742 6.75 45 10.2758 45 14.625ZM4.5 32.85L4.5 45.9C4.5 47.1601 4.5 47.7902 4.74524 48.2715C4.96095 48.6948 5.30516 49.039 5.72852 49.2548C6.20982 49.5 6.83988 49.5 8.1 49.5H9.9C11.1601 49.5 11.7902 49.5 12.2715 49.2548C12.6948 49.039 13.039 48.6948 13.2548 48.2715C13.5 47.7902 13.5 47.1601 13.5 45.9V32.85C13.5 31.5899 13.5 30.9598 13.2548 30.4785C13.039 30.0552 12.6948 29.711 12.2715 29.4952C11.7902 29.25 11.1601 29.25 9.9 29.25L8.1 29.25C6.83988 29.25 6.20982 29.25 5.72852 29.4952C5.30516 29.711 4.96095 30.0552 4.74524 30.4785C4.5 30.9598 4.5 31.5899 4.5 32.85Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__hand--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M30.4414 18.7917C29.1534 19.7099 27.5773 20.25 25.875 20.25C21.5258 20.25 18 16.7242 18 12.375C18 8.02576 21.5258 4.5 25.875 4.5C28.6942 4.5 31.1674 5.98144 32.5586 8.20832M13.5 45.1961H19.3732C20.1389 45.1961 20.9 45.2872 21.6423 45.4695L27.848 46.9775C29.1945 47.3055 30.5972 47.3374 31.9578 47.0732L38.8192 45.7383C40.6317 45.3852 42.2991 44.5173 43.6058 43.2461L48.4603 38.5239C49.8466 37.1776 49.8466 34.993 48.4603 33.6444C47.2121 32.4302 45.2356 32.2935 43.8235 33.3232L38.1658 37.4509C37.3556 38.0432 36.3697 38.3621 35.3557 38.3621H29.8924L33.3699 38.362C35.33 38.362 36.9177 36.8175 36.9177 34.9108V34.2206C36.9177 32.6374 35.81 31.2569 34.2317 30.8742L28.8643 29.5689C27.9909 29.3571 27.0963 29.25 26.1971 29.25C24.0262 29.25 20.0968 31.0473 20.0968 31.0473L13.5 33.806M45 14.625C45 18.9742 41.4742 22.5 37.125 22.5C32.7758 22.5 29.25 18.9742 29.25 14.625C29.25 10.2758 32.7758 6.75 37.125 6.75C41.4742 6.75 45 10.2758 45 14.625ZM4.5 32.85L4.5 45.9C4.5 47.1601 4.5 47.7902 4.74524 48.2715C4.96095 48.6948 5.30516 49.039 5.72852 49.2548C6.20982 49.5 6.83988 49.5 8.1 49.5H9.9C11.1601 49.5 11.7902 49.5 12.2715 49.2548C12.6948 49.039 13.039 48.6948 13.2548 48.2715C13.5 47.7902 13.5 47.1601 13.5 45.9V32.85C13.5 31.5899 13.5 30.9598 13.2548 30.4785C13.039 30.0552 12.6948 29.711 12.2715 29.4952C11.7902 29.25 11.1601 29.25 9.9 29.25L8.1 29.25C6.83988 29.25 6.20982 29.25 5.72852 29.4952C5.30516 29.711 4.96095 30.0552 4.74524 30.4785C4.5 30.9598 4.5 31.5899 4.5 32.85Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__point-system {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M27 38.25C27 44.4632 32.0368 49.5 38.25 49.5C44.4632 49.5 49.5 44.4632 49.5 38.25C49.5 32.0368 44.4632 27 38.25 27C32.0368 27 27 32.0368 27 38.25ZM27 38.25C27 35.7169 27.8372 33.3793 29.25 31.4989V11.25M27 38.25C27 40.107 27.45 41.859 28.2468 43.4028C26.3513 45.004 21.9732 46.125 16.875 46.125C10.0405 46.125 4.5 44.1103 4.5 41.625V11.25M29.25 11.25C29.25 13.7353 23.7095 15.75 16.875 15.75C10.0405 15.75 4.5 13.7353 4.5 11.25M29.25 11.25C29.25 8.76472 23.7095 6.75 16.875 6.75C10.0405 6.75 4.5 8.76472 4.5 11.25M4.5 31.5C4.5 33.9853 10.0405 36 16.875 36C21.8003 36 26.0535 34.9537 28.0454 33.439M29.25 21.375C29.25 23.8603 23.7095 25.875 16.875 25.875C10.0405 25.875 4.5 23.8603 4.5 21.375' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__point-system--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M27 38.25C27 44.4632 32.0368 49.5 38.25 49.5C44.4632 49.5 49.5 44.4632 49.5 38.25C49.5 32.0368 44.4632 27 38.25 27C32.0368 27 27 32.0368 27 38.25ZM27 38.25C27 35.7169 27.8372 33.3793 29.25 31.4989V11.25M27 38.25C27 40.107 27.45 41.859 28.2468 43.4028C26.3513 45.004 21.9732 46.125 16.875 46.125C10.0405 46.125 4.5 44.1103 4.5 41.625V11.25M29.25 11.25C29.25 13.7353 23.7095 15.75 16.875 15.75C10.0405 15.75 4.5 13.7353 4.5 11.25M29.25 11.25C29.25 8.76472 23.7095 6.75 16.875 6.75C10.0405 6.75 4.5 8.76472 4.5 11.25M4.5 31.5C4.5 33.9853 10.0405 36 16.875 36C21.8003 36 26.0535 34.9537 28.0454 33.439M29.25 21.375C29.25 23.8603 23.7095 25.875 16.875 25.875C10.0405 25.875 4.5 23.8603 4.5 21.375' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__point-system--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M27 38.25C27 44.4632 32.0368 49.5 38.25 49.5C44.4632 49.5 49.5 44.4632 49.5 38.25C49.5 32.0368 44.4632 27 38.25 27C32.0368 27 27 32.0368 27 38.25ZM27 38.25C27 35.7169 27.8372 33.3793 29.25 31.4989V11.25M27 38.25C27 40.107 27.45 41.859 28.2468 43.4028C26.3513 45.004 21.9732 46.125 16.875 46.125C10.0405 46.125 4.5 44.1103 4.5 41.625V11.25M29.25 11.25C29.25 13.7353 23.7095 15.75 16.875 15.75C10.0405 15.75 4.5 13.7353 4.5 11.25M29.25 11.25C29.25 8.76472 23.7095 6.75 16.875 6.75C10.0405 6.75 4.5 8.76472 4.5 11.25M4.5 31.5C4.5 33.9853 10.0405 36 16.875 36C21.8003 36 26.0535 34.9537 28.0454 33.439M29.25 21.375C29.25 23.8603 23.7095 25.875 16.875 25.875C10.0405 25.875 4.5 23.8603 4.5 21.375' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__point-system--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M27 38.25C27 44.4632 32.0368 49.5 38.25 49.5C44.4632 49.5 49.5 44.4632 49.5 38.25C49.5 32.0368 44.4632 27 38.25 27C32.0368 27 27 32.0368 27 38.25ZM27 38.25C27 35.7169 27.8372 33.3793 29.25 31.4989V11.25M27 38.25C27 40.107 27.45 41.859 28.2468 43.4028C26.3513 45.004 21.9732 46.125 16.875 46.125C10.0405 46.125 4.5 44.1103 4.5 41.625V11.25M29.25 11.25C29.25 13.7353 23.7095 15.75 16.875 15.75C10.0405 15.75 4.5 13.7353 4.5 11.25M29.25 11.25C29.25 8.76472 23.7095 6.75 16.875 6.75C10.0405 6.75 4.5 8.76472 4.5 11.25M4.5 31.5C4.5 33.9853 10.0405 36 16.875 36C21.8003 36 26.0535 34.9537 28.0454 33.439M29.25 21.375C29.25 23.8603 23.7095 25.875 16.875 25.875C10.0405 25.875 4.5 23.8603 4.5 21.375' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__membership-coupon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M22.5 18V15.75M22.5 28.125V25.875M22.5 38.25V36M11.7 9H42.3C44.8202 9 46.0804 9 47.043 9.49047C47.8897 9.9219 48.5781 10.6103 49.0095 11.457C49.5 12.4196 49.5 13.6798 49.5 16.2V19.125C45.1508 19.125 41.625 22.6508 41.625 27C41.625 31.3492 45.1508 34.875 49.5 34.875V37.8C49.5 40.3202 49.5 41.5804 49.0095 42.543C48.5781 43.3897 47.8897 44.0781 47.043 44.5095C46.0804 45 44.8202 45 42.3 45H11.7C9.17976 45 7.91965 45 6.95704 44.5095C6.11031 44.0781 5.4219 43.3897 4.99047 42.543C4.5 41.5804 4.5 40.3202 4.5 37.8V34.875C8.84924 34.875 12.375 31.3492 12.375 27C12.375 22.6508 8.84924 19.125 4.5 19.125V16.2C4.5 13.6798 4.5 12.4196 4.99047 11.457C5.4219 10.6103 6.11031 9.9219 6.95704 9.49047C7.91965 9 9.17976 9 11.7 9Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-coupon--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M22.5 18V15.75M22.5 28.125V25.875M22.5 38.25V36M11.7 9H42.3C44.8202 9 46.0804 9 47.043 9.49047C47.8897 9.9219 48.5781 10.6103 49.0095 11.457C49.5 12.4196 49.5 13.6798 49.5 16.2V19.125C45.1508 19.125 41.625 22.6508 41.625 27C41.625 31.3492 45.1508 34.875 49.5 34.875V37.8C49.5 40.3202 49.5 41.5804 49.0095 42.543C48.5781 43.3897 47.8897 44.0781 47.043 44.5095C46.0804 45 44.8202 45 42.3 45H11.7C9.17976 45 7.91965 45 6.95704 44.5095C6.11031 44.0781 5.4219 43.3897 4.99047 42.543C4.5 41.5804 4.5 40.3202 4.5 37.8V34.875C8.84924 34.875 12.375 31.3492 12.375 27C12.375 22.6508 8.84924 19.125 4.5 19.125V16.2C4.5 13.6798 4.5 12.4196 4.99047 11.457C5.4219 10.6103 6.11031 9.9219 6.95704 9.49047C7.91965 9 9.17976 9 11.7 9Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-coupon--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M22.5 18V15.75M22.5 28.125V25.875M22.5 38.25V36M11.7 9H42.3C44.8202 9 46.0804 9 47.043 9.49047C47.8897 9.9219 48.5781 10.6103 49.0095 11.457C49.5 12.4196 49.5 13.6798 49.5 16.2V19.125C45.1508 19.125 41.625 22.6508 41.625 27C41.625 31.3492 45.1508 34.875 49.5 34.875V37.8C49.5 40.3202 49.5 41.5804 49.0095 42.543C48.5781 43.3897 47.8897 44.0781 47.043 44.5095C46.0804 45 44.8202 45 42.3 45H11.7C9.17976 45 7.91965 45 6.95704 44.5095C6.11031 44.0781 5.4219 43.3897 4.99047 42.543C4.5 41.5804 4.5 40.3202 4.5 37.8V34.875C8.84924 34.875 12.375 31.3492 12.375 27C12.375 22.6508 8.84924 19.125 4.5 19.125V16.2C4.5 13.6798 4.5 12.4196 4.99047 11.457C5.4219 10.6103 6.11031 9.9219 6.95704 9.49047C7.91965 9 9.17976 9 11.7 9Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-coupon--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M22.5 18V15.75M22.5 28.125V25.875M22.5 38.25V36M11.7 9H42.3C44.8202 9 46.0804 9 47.043 9.49047C47.8897 9.9219 48.5781 10.6103 49.0095 11.457C49.5 12.4196 49.5 13.6798 49.5 16.2V19.125C45.1508 19.125 41.625 22.6508 41.625 27C41.625 31.3492 45.1508 34.875 49.5 34.875V37.8C49.5 40.3202 49.5 41.5804 49.0095 42.543C48.5781 43.3897 47.8897 44.0781 47.043 44.5095C46.0804 45 44.8202 45 42.3 45H11.7C9.17976 45 7.91965 45 6.95704 44.5095C6.11031 44.0781 5.4219 43.3897 4.99047 42.543C4.5 41.5804 4.5 40.3202 4.5 37.8V34.875C8.84924 34.875 12.375 31.3492 12.375 27C12.375 22.6508 8.84924 19.125 4.5 19.125V16.2C4.5 13.6798 4.5 12.4196 4.99047 11.457C5.4219 10.6103 6.11031 9.9219 6.95704 9.49047C7.91965 9 9.17976 9 11.7 9Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__grade-service {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M5.62347 20.25H48.3735M22.4985 6.75L17.9985 20.25L26.9985 46.125L35.9985 20.25L31.4985 6.75M28.3813 45.5906L48.5382 21.4023C48.8798 20.9924 49.0506 20.7874 49.1159 20.5586C49.1734 20.3569 49.1734 20.1431 49.1159 19.9414C49.0506 19.7126 48.8798 19.5076 48.5382 19.0977L38.7882 7.39767C38.5898 7.1596 38.4906 7.04056 38.369 6.95499C38.2613 6.87917 38.141 6.82286 38.0138 6.78863C37.8702 6.75 37.7153 6.75 37.4054 6.75H16.5915C16.2816 6.75 16.1267 6.75 15.9831 6.78863C15.8559 6.82286 15.7357 6.87917 15.6279 6.95499C15.5063 7.04056 15.4071 7.1596 15.2087 7.39767L5.45875 19.0977C5.11713 19.5076 4.94632 19.7126 4.88105 19.9414C4.8235 20.1431 4.8235 20.3569 4.88105 20.5586C4.94632 20.7874 5.11713 20.9924 5.45875 21.4023L25.6157 45.5906C26.0905 46.1605 26.328 46.4454 26.6123 46.5493C26.8617 46.6405 27.1353 46.6405 27.3847 46.5493C27.669 46.4454 27.9064 46.1605 28.3813 45.5906Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__grade-service--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M5.62347 20.25H48.3735M22.4985 6.75L17.9985 20.25L26.9985 46.125L35.9985 20.25L31.4985 6.75M28.3813 45.5906L48.5382 21.4023C48.8798 20.9924 49.0506 20.7874 49.1159 20.5586C49.1734 20.3569 49.1734 20.1431 49.1159 19.9414C49.0506 19.7126 48.8798 19.5076 48.5382 19.0977L38.7882 7.39767C38.5898 7.1596 38.4906 7.04056 38.369 6.95499C38.2613 6.87917 38.141 6.82286 38.0138 6.78863C37.8702 6.75 37.7153 6.75 37.4054 6.75H16.5915C16.2816 6.75 16.1267 6.75 15.9831 6.78863C15.8559 6.82286 15.7357 6.87917 15.6279 6.95499C15.5063 7.04056 15.4071 7.1596 15.2087 7.39767L5.45875 19.0977C5.11713 19.5076 4.94632 19.7126 4.88105 19.9414C4.8235 20.1431 4.8235 20.3569 4.88105 20.5586C4.94632 20.7874 5.11713 20.9924 5.45875 21.4023L25.6157 45.5906C26.0905 46.1605 26.328 46.4454 26.6123 46.5493C26.8617 46.6405 27.1353 46.6405 27.3847 46.5493C27.669 46.4454 27.9064 46.1605 28.3813 45.5906Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__grade-service--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M5.62347 20.25H48.3735M22.4985 6.75L17.9985 20.25L26.9985 46.125L35.9985 20.25L31.4985 6.75M28.3813 45.5906L48.5382 21.4023C48.8798 20.9924 49.0506 20.7874 49.1159 20.5586C49.1734 20.3569 49.1734 20.1431 49.1159 19.9414C49.0506 19.7126 48.8798 19.5076 48.5382 19.0977L38.7882 7.39767C38.5898 7.1596 38.4906 7.04056 38.369 6.95499C38.2613 6.87917 38.141 6.82286 38.0138 6.78863C37.8702 6.75 37.7153 6.75 37.4054 6.75H16.5915C16.2816 6.75 16.1267 6.75 15.9831 6.78863C15.8559 6.82286 15.7357 6.87917 15.6279 6.95499C15.5063 7.04056 15.4071 7.1596 15.2087 7.39767L5.45875 19.0977C5.11713 19.5076 4.94632 19.7126 4.88105 19.9414C4.8235 20.1431 4.8235 20.3569 4.88105 20.5586C4.94632 20.7874 5.11713 20.9924 5.45875 21.4023L25.6157 45.5906C26.0905 46.1605 26.328 46.4454 26.6123 46.5493C26.8617 46.6405 27.1353 46.6405 27.3847 46.5493C27.669 46.4454 27.9064 46.1605 28.3813 45.5906Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__grade-service--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M5.62347 20.25H48.3735M22.4985 6.75L17.9985 20.25L26.9985 46.125L35.9985 20.25L31.4985 6.75M28.3813 45.5906L48.5382 21.4023C48.8798 20.9924 49.0506 20.7874 49.1159 20.5586C49.1734 20.3569 49.1734 20.1431 49.1159 19.9414C49.0506 19.7126 48.8798 19.5076 48.5382 19.0977L38.7882 7.39767C38.5898 7.1596 38.4906 7.04056 38.369 6.95499C38.2613 6.87917 38.141 6.82286 38.0138 6.78863C37.8702 6.75 37.7153 6.75 37.4054 6.75H16.5915C16.2816 6.75 16.1267 6.75 15.9831 6.78863C15.8559 6.82286 15.7357 6.87917 15.6279 6.95499C15.5063 7.04056 15.4071 7.1596 15.2087 7.39767L5.45875 19.0977C5.11713 19.5076 4.94632 19.7126 4.88105 19.9414C4.8235 20.1431 4.8235 20.3569 4.88105 20.5586C4.94632 20.7874 5.11713 20.9924 5.45875 21.4023L25.6157 45.5906C26.0905 46.1605 26.328 46.4454 26.6123 46.5493C26.8617 46.6405 27.1353 46.6405 27.3847 46.5493C27.669 46.4454 27.9064 46.1605 28.3813 45.5906Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__close {
  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%3Cpath d='M3.73438 3.73438L20.2629 20.2629' stroke='%231D1D1D' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M20.2656 3.73438L3.73711 20.2629' stroke='%231d1d1d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ico__close--black {
  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%3Cpath d='M3.73438 3.73438L20.2629 20.2629' stroke='%231D1D1D' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M20.2656 3.73438L3.73711 20.2629' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ico__close--white {
  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%3Cpath d='M3.73438 3.73438L20.2629 20.2629' stroke='%231D1D1D' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M20.2656 3.73438L3.73711 20.2629' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ico__close--point {
  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%3Cpath d='M3.73438 3.73438L20.2629 20.2629' stroke='%231D1D1D' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M20.2656 3.73438L3.73711 20.2629' stroke='%237343ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ico__ecard {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M49.5 22.5H4.5M24.75 31.5H13.5M4.5 18.45L4.5 35.55C4.5 38.0702 4.5 39.3303 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75L42.3 42.75C44.8202 42.75 46.0804 42.75 47.043 42.2595C47.8897 41.8281 48.5781 41.1397 49.0095 40.293C49.5 39.3304 49.5 38.0702 49.5 35.55V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25L11.7 11.25C9.17977 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__ecard--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M49.5 22.5H4.5M24.75 31.5H13.5M4.5 18.45L4.5 35.55C4.5 38.0702 4.5 39.3303 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75L42.3 42.75C44.8202 42.75 46.0804 42.75 47.043 42.2595C47.8897 41.8281 48.5781 41.1397 49.0095 40.293C49.5 39.3304 49.5 38.0702 49.5 35.55V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25L11.7 11.25C9.17977 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__ecard--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M49.5 22.5H4.5M24.75 31.5H13.5M4.5 18.45L4.5 35.55C4.5 38.0702 4.5 39.3303 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75L42.3 42.75C44.8202 42.75 46.0804 42.75 47.043 42.2595C47.8897 41.8281 48.5781 41.1397 49.0095 40.293C49.5 39.3304 49.5 38.0702 49.5 35.55V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25L11.7 11.25C9.17977 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__ecard--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M49.5 22.5H4.5M24.75 31.5H13.5M4.5 18.45L4.5 35.55C4.5 38.0702 4.5 39.3303 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75L42.3 42.75C44.8202 42.75 46.0804 42.75 47.043 42.2595C47.8897 41.8281 48.5781 41.1397 49.0095 40.293C49.5 39.3304 49.5 38.0702 49.5 35.55V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25L11.7 11.25C9.17977 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__membership-check {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M20.25 24.75L27 31.5L49.5 9M36 6.75H17.55C13.7696 6.75 11.8795 6.75 10.4356 7.48571C9.16547 8.13285 8.13285 9.16547 7.48571 10.4356C6.75 11.8795 6.75 13.7696 6.75 17.55V36.45C6.75 40.2304 6.75 42.1205 7.48571 43.5644C8.13285 44.8345 9.16547 45.8671 10.4356 46.5143C11.8795 47.25 13.7696 47.25 17.55 47.25H36.45C40.2304 47.25 42.1205 47.25 43.5644 46.5143C44.8345 45.8671 45.8671 44.8345 46.5143 43.5644C47.25 42.1205 47.25 40.2304 47.25 36.45V27' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-check--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M20.25 24.75L27 31.5L49.5 9M36 6.75H17.55C13.7696 6.75 11.8795 6.75 10.4356 7.48571C9.16547 8.13285 8.13285 9.16547 7.48571 10.4356C6.75 11.8795 6.75 13.7696 6.75 17.55V36.45C6.75 40.2304 6.75 42.1205 7.48571 43.5644C8.13285 44.8345 9.16547 45.8671 10.4356 46.5143C11.8795 47.25 13.7696 47.25 17.55 47.25H36.45C40.2304 47.25 42.1205 47.25 43.5644 46.5143C44.8345 45.8671 45.8671 44.8345 46.5143 43.5644C47.25 42.1205 47.25 40.2304 47.25 36.45V27' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-check--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M20.25 24.75L27 31.5L49.5 9M36 6.75H17.55C13.7696 6.75 11.8795 6.75 10.4356 7.48571C9.16547 8.13285 8.13285 9.16547 7.48571 10.4356C6.75 11.8795 6.75 13.7696 6.75 17.55V36.45C6.75 40.2304 6.75 42.1205 7.48571 43.5644C8.13285 44.8345 9.16547 45.8671 10.4356 46.5143C11.8795 47.25 13.7696 47.25 17.55 47.25H36.45C40.2304 47.25 42.1205 47.25 43.5644 46.5143C44.8345 45.8671 45.8671 44.8345 46.5143 43.5644C47.25 42.1205 47.25 40.2304 47.25 36.45V27' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-check--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M20.25 24.75L27 31.5L49.5 9M36 6.75H17.55C13.7696 6.75 11.8795 6.75 10.4356 7.48571C9.16547 8.13285 8.13285 9.16547 7.48571 10.4356C6.75 11.8795 6.75 13.7696 6.75 17.55V36.45C6.75 40.2304 6.75 42.1205 7.48571 43.5644C8.13285 44.8345 9.16547 45.8671 10.4356 46.5143C11.8795 47.25 13.7696 47.25 17.55 47.25H36.45C40.2304 47.25 42.1205 47.25 43.5644 46.5143C44.8345 45.8671 45.8671 44.8345 46.5143 43.5644C47.25 42.1205 47.25 40.2304 47.25 36.45V27' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__membership-ticket {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M18 18V15.75M18 28.125V25.875M18 38.25V36M15.3 45H38.7C42.4804 45 44.3705 45 45.8144 44.2643C47.0845 43.6171 48.1171 42.5845 48.7643 41.3144C49.5 39.8705 49.5 37.9804 49.5 34.2V19.8C49.5 16.0196 49.5 14.1295 48.7643 12.6856C48.1171 11.4155 47.0845 10.3829 45.8144 9.73571C44.3705 9 42.4804 9 38.7 9H15.3C11.5196 9 9.62947 9 8.18556 9.73571C6.91547 10.3829 5.88285 11.4155 5.23571 12.6856C4.5 14.1295 4.5 16.0196 4.5 19.8V34.2C4.5 37.9804 4.5 39.8705 5.23571 41.3144C5.88285 42.5845 6.91547 43.6171 8.18556 44.2643C9.62947 45 11.5196 45 15.3 45Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-ticket--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M18 18V15.75M18 28.125V25.875M18 38.25V36M15.3 45H38.7C42.4804 45 44.3705 45 45.8144 44.2643C47.0845 43.6171 48.1171 42.5845 48.7643 41.3144C49.5 39.8705 49.5 37.9804 49.5 34.2V19.8C49.5 16.0196 49.5 14.1295 48.7643 12.6856C48.1171 11.4155 47.0845 10.3829 45.8144 9.73571C44.3705 9 42.4804 9 38.7 9H15.3C11.5196 9 9.62947 9 8.18556 9.73571C6.91547 10.3829 5.88285 11.4155 5.23571 12.6856C4.5 14.1295 4.5 16.0196 4.5 19.8V34.2C4.5 37.9804 4.5 39.8705 5.23571 41.3144C5.88285 42.5845 6.91547 43.6171 8.18556 44.2643C9.62947 45 11.5196 45 15.3 45Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-ticket--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M18 18V15.75M18 28.125V25.875M18 38.25V36M15.3 45H38.7C42.4804 45 44.3705 45 45.8144 44.2643C47.0845 43.6171 48.1171 42.5845 48.7643 41.3144C49.5 39.8705 49.5 37.9804 49.5 34.2V19.8C49.5 16.0196 49.5 14.1295 48.7643 12.6856C48.1171 11.4155 47.0845 10.3829 45.8144 9.73571C44.3705 9 42.4804 9 38.7 9H15.3C11.5196 9 9.62947 9 8.18556 9.73571C6.91547 10.3829 5.88285 11.4155 5.23571 12.6856C4.5 14.1295 4.5 16.0196 4.5 19.8V34.2C4.5 37.9804 4.5 39.8705 5.23571 41.3144C5.88285 42.5845 6.91547 43.6171 8.18556 44.2643C9.62947 45 11.5196 45 15.3 45Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-ticket--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M18 18V15.75M18 28.125V25.875M18 38.25V36M15.3 45H38.7C42.4804 45 44.3705 45 45.8144 44.2643C47.0845 43.6171 48.1171 42.5845 48.7643 41.3144C49.5 39.8705 49.5 37.9804 49.5 34.2V19.8C49.5 16.0196 49.5 14.1295 48.7643 12.6856C48.1171 11.4155 47.0845 10.3829 45.8144 9.73571C44.3705 9 42.4804 9 38.7 9H15.3C11.5196 9 9.62947 9 8.18556 9.73571C6.91547 10.3829 5.88285 11.4155 5.23571 12.6856C4.5 14.1295 4.5 16.0196 4.5 19.8V34.2C4.5 37.9804 4.5 39.8705 5.23571 41.3144C5.88285 42.5845 6.91547 43.6171 8.18556 44.2643C9.62947 45 11.5196 45 15.3 45Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__membership-credit {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M36 40.5L42.75 33.75M42.75 33.75L49.5 40.5M42.75 33.75V47.25M49.5 22.5H4.5M49.5 27V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H11.7C9.17976 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45V35.55C4.5 38.0702 4.5 39.3304 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75H27' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-credit--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M36 40.5L42.75 33.75M42.75 33.75L49.5 40.5M42.75 33.75V47.25M49.5 22.5H4.5M49.5 27V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H11.7C9.17976 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45V35.55C4.5 38.0702 4.5 39.3304 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75H27' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-credit--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M36 40.5L42.75 33.75M42.75 33.75L49.5 40.5M42.75 33.75V47.25M49.5 22.5H4.5M49.5 27V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H11.7C9.17976 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45V35.55C4.5 38.0702 4.5 39.3304 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75H27' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-credit--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M36 40.5L42.75 33.75M42.75 33.75L49.5 40.5M42.75 33.75V47.25M49.5 22.5H4.5M49.5 27V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H11.7C9.17976 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45V35.55C4.5 38.0702 4.5 39.3304 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75H27' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__membership-point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M29.25 11.25C29.25 13.7353 23.7095 15.75 16.875 15.75C10.0405 15.75 4.5 13.7353 4.5 11.25M29.25 11.25C29.25 8.76472 23.7095 6.75 16.875 6.75C10.0405 6.75 4.5 8.76472 4.5 11.25M29.25 11.25V21.2786C26.5016 22.104 24.75 23.3526 24.75 24.75M4.5 11.25V38.25C4.5 40.7353 10.0405 42.75 16.875 42.75C19.8667 42.75 22.6104 42.364 24.75 41.7214V24.75M4.5 20.25C4.5 22.7353 10.0405 24.75 16.875 24.75C19.8667 24.75 22.6104 24.364 24.75 23.7214M4.5 29.25C4.5 31.7353 10.0405 33.75 16.875 33.75C19.8667 33.75 22.6104 33.364 24.75 32.7214M49.5 24.75C49.5 27.2353 43.9595 29.25 37.125 29.25C30.2905 29.25 24.75 27.2353 24.75 24.75M49.5 24.75C49.5 22.2647 43.9595 20.25 37.125 20.25C30.2905 20.25 24.75 22.2647 24.75 24.75M49.5 24.75V42.75C49.5 45.2353 43.9595 47.25 37.125 47.25C30.2905 47.25 24.75 45.2353 24.75 42.75V24.75M49.5 33.75C49.5 36.2353 43.9595 38.25 37.125 38.25C30.2905 38.25 24.75 36.2353 24.75 33.75' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-point--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M29.25 11.25C29.25 13.7353 23.7095 15.75 16.875 15.75C10.0405 15.75 4.5 13.7353 4.5 11.25M29.25 11.25C29.25 8.76472 23.7095 6.75 16.875 6.75C10.0405 6.75 4.5 8.76472 4.5 11.25M29.25 11.25V21.2786C26.5016 22.104 24.75 23.3526 24.75 24.75M4.5 11.25V38.25C4.5 40.7353 10.0405 42.75 16.875 42.75C19.8667 42.75 22.6104 42.364 24.75 41.7214V24.75M4.5 20.25C4.5 22.7353 10.0405 24.75 16.875 24.75C19.8667 24.75 22.6104 24.364 24.75 23.7214M4.5 29.25C4.5 31.7353 10.0405 33.75 16.875 33.75C19.8667 33.75 22.6104 33.364 24.75 32.7214M49.5 24.75C49.5 27.2353 43.9595 29.25 37.125 29.25C30.2905 29.25 24.75 27.2353 24.75 24.75M49.5 24.75C49.5 22.2647 43.9595 20.25 37.125 20.25C30.2905 20.25 24.75 22.2647 24.75 24.75M49.5 24.75V42.75C49.5 45.2353 43.9595 47.25 37.125 47.25C30.2905 47.25 24.75 45.2353 24.75 42.75V24.75M49.5 33.75C49.5 36.2353 43.9595 38.25 37.125 38.25C30.2905 38.25 24.75 36.2353 24.75 33.75' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-point--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M29.25 11.25C29.25 13.7353 23.7095 15.75 16.875 15.75C10.0405 15.75 4.5 13.7353 4.5 11.25M29.25 11.25C29.25 8.76472 23.7095 6.75 16.875 6.75C10.0405 6.75 4.5 8.76472 4.5 11.25M29.25 11.25V21.2786C26.5016 22.104 24.75 23.3526 24.75 24.75M4.5 11.25V38.25C4.5 40.7353 10.0405 42.75 16.875 42.75C19.8667 42.75 22.6104 42.364 24.75 41.7214V24.75M4.5 20.25C4.5 22.7353 10.0405 24.75 16.875 24.75C19.8667 24.75 22.6104 24.364 24.75 23.7214M4.5 29.25C4.5 31.7353 10.0405 33.75 16.875 33.75C19.8667 33.75 22.6104 33.364 24.75 32.7214M49.5 24.75C49.5 27.2353 43.9595 29.25 37.125 29.25C30.2905 29.25 24.75 27.2353 24.75 24.75M49.5 24.75C49.5 22.2647 43.9595 20.25 37.125 20.25C30.2905 20.25 24.75 22.2647 24.75 24.75M49.5 24.75V42.75C49.5 45.2353 43.9595 47.25 37.125 47.25C30.2905 47.25 24.75 45.2353 24.75 42.75V24.75M49.5 33.75C49.5 36.2353 43.9595 38.25 37.125 38.25C30.2905 38.25 24.75 36.2353 24.75 33.75' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-point--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M29.25 11.25C29.25 13.7353 23.7095 15.75 16.875 15.75C10.0405 15.75 4.5 13.7353 4.5 11.25M29.25 11.25C29.25 8.76472 23.7095 6.75 16.875 6.75C10.0405 6.75 4.5 8.76472 4.5 11.25M29.25 11.25V21.2786C26.5016 22.104 24.75 23.3526 24.75 24.75M4.5 11.25V38.25C4.5 40.7353 10.0405 42.75 16.875 42.75C19.8667 42.75 22.6104 42.364 24.75 41.7214V24.75M4.5 20.25C4.5 22.7353 10.0405 24.75 16.875 24.75C19.8667 24.75 22.6104 24.364 24.75 23.7214M4.5 29.25C4.5 31.7353 10.0405 33.75 16.875 33.75C19.8667 33.75 22.6104 33.364 24.75 32.7214M49.5 24.75C49.5 27.2353 43.9595 29.25 37.125 29.25C30.2905 29.25 24.75 27.2353 24.75 24.75M49.5 24.75C49.5 22.2647 43.9595 20.25 37.125 20.25C30.2905 20.25 24.75 22.2647 24.75 24.75M49.5 24.75V42.75C49.5 45.2353 43.9595 47.25 37.125 47.25C30.2905 47.25 24.75 45.2353 24.75 42.75V24.75M49.5 33.75C49.5 36.2353 43.9595 38.25 37.125 38.25C30.2905 38.25 24.75 36.2353 24.75 33.75' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__membership-coupon-2 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M32.3981 33.4312V20.1419M11.2757 7.78125H27.0016C27.0909 10.9651 29.7 13.5187 32.9055 13.5187C36.111 13.5187 38.72 10.9651 38.8094 7.78125H42.7227C47.4594 7.78125 51.2992 11.6211 51.2992 16.3577V37.6358C51.2992 42.3725 47.4594 46.2123 42.7227 46.2123H38.8094C38.72 43.0284 36.111 40.4748 32.9055 40.4748C29.7 40.4748 27.0909 43.0284 27.0016 46.2123H11.2757C6.53906 46.2123 2.69925 42.3725 2.69925 37.6358L2.69922 16.3577C2.69922 11.6211 6.53904 7.78125 11.2757 7.78125Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-coupon-2--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M32.3981 33.4312V20.1419M11.2757 7.78125H27.0016C27.0909 10.9651 29.7 13.5187 32.9055 13.5187C36.111 13.5187 38.72 10.9651 38.8094 7.78125H42.7227C47.4594 7.78125 51.2992 11.6211 51.2992 16.3577V37.6358C51.2992 42.3725 47.4594 46.2123 42.7227 46.2123H38.8094C38.72 43.0284 36.111 40.4748 32.9055 40.4748C29.7 40.4748 27.0909 43.0284 27.0016 46.2123H11.2757C6.53906 46.2123 2.69925 42.3725 2.69925 37.6358L2.69922 16.3577C2.69922 11.6211 6.53904 7.78125 11.2757 7.78125Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-coupon-2--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M32.3981 33.4312V20.1419M11.2757 7.78125H27.0016C27.0909 10.9651 29.7 13.5187 32.9055 13.5187C36.111 13.5187 38.72 10.9651 38.8094 7.78125H42.7227C47.4594 7.78125 51.2992 11.6211 51.2992 16.3577V37.6358C51.2992 42.3725 47.4594 46.2123 42.7227 46.2123H38.8094C38.72 43.0284 36.111 40.4748 32.9055 40.4748C29.7 40.4748 27.0909 43.0284 27.0016 46.2123H11.2757C6.53906 46.2123 2.69925 42.3725 2.69925 37.6358L2.69922 16.3577C2.69922 11.6211 6.53904 7.78125 11.2757 7.78125Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-coupon-2--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M32.3981 33.4312V20.1419M11.2757 7.78125H27.0016C27.0909 10.9651 29.7 13.5187 32.9055 13.5187C36.111 13.5187 38.72 10.9651 38.8094 7.78125H42.7227C47.4594 7.78125 51.2992 11.6211 51.2992 16.3577V37.6358C51.2992 42.3725 47.4594 46.2123 42.7227 46.2123H38.8094C38.72 43.0284 36.111 40.4748 32.9055 40.4748C29.7 40.4748 27.0909 43.0284 27.0016 46.2123H11.2757C6.53906 46.2123 2.69925 42.3725 2.69925 37.6358L2.69922 16.3577C2.69922 11.6211 6.53904 7.78125 11.2757 7.78125Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__membership-award {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M17.7045 34.7849L15.75 49.5L26.0739 43.3057C26.4106 43.1036 26.579 43.0026 26.7587 42.9631C26.9177 42.9282 27.0823 42.9282 27.2413 42.9631C27.421 43.0026 27.5894 43.1036 27.9261 43.3057L38.25 49.5L36.2968 34.7785M36.9582 9.55998C37.3057 10.4004 37.9727 11.0684 38.8126 11.4172L41.7576 12.6371C42.598 12.9852 43.2658 13.653 43.6139 14.4935C43.962 15.334 43.962 16.2783 43.6139 17.1188L42.3949 20.0618C42.0466 20.9026 42.0462 21.848 42.396 22.6884L43.6129 25.6305C43.7855 26.0468 43.8743 26.493 43.8744 26.9437C43.8745 27.3943 43.7858 27.8405 43.6133 28.2569C43.4409 28.6732 43.1881 29.0515 42.8694 29.3701C42.5507 29.6887 42.1724 29.9414 41.756 30.1137L38.8131 31.3327C37.9727 31.6802 37.3047 32.3472 36.956 33.1871L35.7361 36.1322C35.388 36.9727 34.7202 37.6405 33.8798 37.9886C33.0393 38.3367 32.095 38.3368 31.2545 37.9886L28.3117 36.7696C27.4712 36.4223 26.5272 36.423 25.6873 36.7716L22.7423 37.9897C21.9023 38.337 20.9588 38.3367 20.119 37.9889C19.2792 37.641 18.6119 36.9741 18.2635 36.1345L17.0433 33.1885C16.6958 32.3481 16.0288 31.6801 15.1889 31.3313L12.2439 30.1114C11.4038 29.7634 10.7363 29.0961 10.3881 28.2561C10.0398 27.4161 10.0393 26.4721 10.3867 25.6318L11.6057 22.6888C11.953 21.8483 11.9523 20.9043 11.6037 20.0643L10.3865 17.1171C10.2139 16.7008 10.1251 16.2546 10.125 15.8039C10.1249 15.3533 10.2136 14.9071 10.3861 14.4907C10.5585 14.0744 10.8113 13.6961 11.13 13.3775C11.4487 13.0589 11.8271 12.8062 12.2434 12.6339L15.1863 11.4149C16.026 11.0677 16.6936 10.4015 17.0426 9.5626L18.2624 6.61749C18.6106 5.77701 19.2783 5.10924 20.1188 4.76111C20.9592 4.41297 21.9035 4.41296 22.744 4.76111L25.6869 5.98013C26.5273 6.32742 27.4713 6.32671 28.3113 5.97816L31.2575 4.763C32.0979 4.41505 33.042 4.41512 33.8823 4.76319C34.7226 5.11126 35.3902 5.77884 35.7384 6.6191L36.9586 9.56508L36.9582 9.55998Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-award--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M17.7045 34.7849L15.75 49.5L26.0739 43.3057C26.4106 43.1036 26.579 43.0026 26.7587 42.9631C26.9177 42.9282 27.0823 42.9282 27.2413 42.9631C27.421 43.0026 27.5894 43.1036 27.9261 43.3057L38.25 49.5L36.2968 34.7785M36.9582 9.55998C37.3057 10.4004 37.9727 11.0684 38.8126 11.4172L41.7576 12.6371C42.598 12.9852 43.2658 13.653 43.6139 14.4935C43.962 15.334 43.962 16.2783 43.6139 17.1188L42.3949 20.0618C42.0466 20.9026 42.0462 21.848 42.396 22.6884L43.6129 25.6305C43.7855 26.0468 43.8743 26.493 43.8744 26.9437C43.8745 27.3943 43.7858 27.8405 43.6133 28.2569C43.4409 28.6732 43.1881 29.0515 42.8694 29.3701C42.5507 29.6887 42.1724 29.9414 41.756 30.1137L38.8131 31.3327C37.9727 31.6802 37.3047 32.3472 36.956 33.1871L35.7361 36.1322C35.388 36.9727 34.7202 37.6405 33.8798 37.9886C33.0393 38.3367 32.095 38.3368 31.2545 37.9886L28.3117 36.7696C27.4712 36.4223 26.5272 36.423 25.6873 36.7716L22.7423 37.9897C21.9023 38.337 20.9588 38.3367 20.119 37.9889C19.2792 37.641 18.6119 36.9741 18.2635 36.1345L17.0433 33.1885C16.6958 32.3481 16.0288 31.6801 15.1889 31.3313L12.2439 30.1114C11.4038 29.7634 10.7363 29.0961 10.3881 28.2561C10.0398 27.4161 10.0393 26.4721 10.3867 25.6318L11.6057 22.6888C11.953 21.8483 11.9523 20.9043 11.6037 20.0643L10.3865 17.1171C10.2139 16.7008 10.1251 16.2546 10.125 15.8039C10.1249 15.3533 10.2136 14.9071 10.3861 14.4907C10.5585 14.0744 10.8113 13.6961 11.13 13.3775C11.4487 13.0589 11.8271 12.8062 12.2434 12.6339L15.1863 11.4149C16.026 11.0677 16.6936 10.4015 17.0426 9.5626L18.2624 6.61749C18.6106 5.77701 19.2783 5.10924 20.1188 4.76111C20.9592 4.41297 21.9035 4.41296 22.744 4.76111L25.6869 5.98013C26.5273 6.32742 27.4713 6.32671 28.3113 5.97816L31.2575 4.763C32.0979 4.41505 33.042 4.41512 33.8823 4.76319C34.7226 5.11126 35.3902 5.77884 35.7384 6.6191L36.9586 9.56508L36.9582 9.55998Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-award--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M17.7045 34.7849L15.75 49.5L26.0739 43.3057C26.4106 43.1036 26.579 43.0026 26.7587 42.9631C26.9177 42.9282 27.0823 42.9282 27.2413 42.9631C27.421 43.0026 27.5894 43.1036 27.9261 43.3057L38.25 49.5L36.2968 34.7785M36.9582 9.55998C37.3057 10.4004 37.9727 11.0684 38.8126 11.4172L41.7576 12.6371C42.598 12.9852 43.2658 13.653 43.6139 14.4935C43.962 15.334 43.962 16.2783 43.6139 17.1188L42.3949 20.0618C42.0466 20.9026 42.0462 21.848 42.396 22.6884L43.6129 25.6305C43.7855 26.0468 43.8743 26.493 43.8744 26.9437C43.8745 27.3943 43.7858 27.8405 43.6133 28.2569C43.4409 28.6732 43.1881 29.0515 42.8694 29.3701C42.5507 29.6887 42.1724 29.9414 41.756 30.1137L38.8131 31.3327C37.9727 31.6802 37.3047 32.3472 36.956 33.1871L35.7361 36.1322C35.388 36.9727 34.7202 37.6405 33.8798 37.9886C33.0393 38.3367 32.095 38.3368 31.2545 37.9886L28.3117 36.7696C27.4712 36.4223 26.5272 36.423 25.6873 36.7716L22.7423 37.9897C21.9023 38.337 20.9588 38.3367 20.119 37.9889C19.2792 37.641 18.6119 36.9741 18.2635 36.1345L17.0433 33.1885C16.6958 32.3481 16.0288 31.6801 15.1889 31.3313L12.2439 30.1114C11.4038 29.7634 10.7363 29.0961 10.3881 28.2561C10.0398 27.4161 10.0393 26.4721 10.3867 25.6318L11.6057 22.6888C11.953 21.8483 11.9523 20.9043 11.6037 20.0643L10.3865 17.1171C10.2139 16.7008 10.1251 16.2546 10.125 15.8039C10.1249 15.3533 10.2136 14.9071 10.3861 14.4907C10.5585 14.0744 10.8113 13.6961 11.13 13.3775C11.4487 13.0589 11.8271 12.8062 12.2434 12.6339L15.1863 11.4149C16.026 11.0677 16.6936 10.4015 17.0426 9.5626L18.2624 6.61749C18.6106 5.77701 19.2783 5.10924 20.1188 4.76111C20.9592 4.41297 21.9035 4.41296 22.744 4.76111L25.6869 5.98013C26.5273 6.32742 27.4713 6.32671 28.3113 5.97816L31.2575 4.763C32.0979 4.41505 33.042 4.41512 33.8823 4.76319C34.7226 5.11126 35.3902 5.77884 35.7384 6.6191L36.9586 9.56508L36.9582 9.55998Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__membership-award--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M17.7045 34.7849L15.75 49.5L26.0739 43.3057C26.4106 43.1036 26.579 43.0026 26.7587 42.9631C26.9177 42.9282 27.0823 42.9282 27.2413 42.9631C27.421 43.0026 27.5894 43.1036 27.9261 43.3057L38.25 49.5L36.2968 34.7785M36.9582 9.55998C37.3057 10.4004 37.9727 11.0684 38.8126 11.4172L41.7576 12.6371C42.598 12.9852 43.2658 13.653 43.6139 14.4935C43.962 15.334 43.962 16.2783 43.6139 17.1188L42.3949 20.0618C42.0466 20.9026 42.0462 21.848 42.396 22.6884L43.6129 25.6305C43.7855 26.0468 43.8743 26.493 43.8744 26.9437C43.8745 27.3943 43.7858 27.8405 43.6133 28.2569C43.4409 28.6732 43.1881 29.0515 42.8694 29.3701C42.5507 29.6887 42.1724 29.9414 41.756 30.1137L38.8131 31.3327C37.9727 31.6802 37.3047 32.3472 36.956 33.1871L35.7361 36.1322C35.388 36.9727 34.7202 37.6405 33.8798 37.9886C33.0393 38.3367 32.095 38.3368 31.2545 37.9886L28.3117 36.7696C27.4712 36.4223 26.5272 36.423 25.6873 36.7716L22.7423 37.9897C21.9023 38.337 20.9588 38.3367 20.119 37.9889C19.2792 37.641 18.6119 36.9741 18.2635 36.1345L17.0433 33.1885C16.6958 32.3481 16.0288 31.6801 15.1889 31.3313L12.2439 30.1114C11.4038 29.7634 10.7363 29.0961 10.3881 28.2561C10.0398 27.4161 10.0393 26.4721 10.3867 25.6318L11.6057 22.6888C11.953 21.8483 11.9523 20.9043 11.6037 20.0643L10.3865 17.1171C10.2139 16.7008 10.1251 16.2546 10.125 15.8039C10.1249 15.3533 10.2136 14.9071 10.3861 14.4907C10.5585 14.0744 10.8113 13.6961 11.13 13.3775C11.4487 13.0589 11.8271 12.8062 12.2434 12.6339L15.1863 11.4149C16.026 11.0677 16.6936 10.4015 17.0426 9.5626L18.2624 6.61749C18.6106 5.77701 19.2783 5.10924 20.1188 4.76111C20.9592 4.41297 21.9035 4.41296 22.744 4.76111L25.6869 5.98013C26.5273 6.32742 27.4713 6.32671 28.3113 5.97816L31.2575 4.763C32.0979 4.41505 33.042 4.41512 33.8823 4.76319C34.7226 5.11126 35.3902 5.77884 35.7384 6.6191L36.9586 9.56508L36.9582 9.55998Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__online-service {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M47.25 21.375V17.55C47.25 13.7696 47.25 11.8795 46.5143 10.4356C45.8671 9.16547 44.8345 8.13285 43.5644 7.48571C42.1205 6.75 40.2304 6.75 36.45 6.75H17.55C13.7696 6.75 11.8795 6.75 10.4356 7.48571C9.16547 8.13285 8.13285 9.16547 7.48571 10.4356C6.75 11.8795 6.75 13.7696 6.75 17.55V36.45C6.75 40.2304 6.75 42.1205 7.48571 43.5644C8.13285 44.8345 9.16547 45.8671 10.4356 46.5143C11.8795 47.25 13.7696 47.25 17.55 47.25H21.375M39.119 39.8504L35.2978 46.9469C34.6732 48.1068 34.3609 48.6868 33.9802 48.8382C33.6498 48.9696 33.2766 48.937 32.974 48.7503C32.6253 48.5353 32.4183 47.9099 32.0042 46.6593L25.8759 28.1504C25.5133 27.0552 25.332 26.5076 25.4623 26.143C25.5758 25.8256 25.8256 25.5758 26.143 25.4623C26.5076 25.332 27.0552 25.5133 28.1504 25.8759L46.6592 32.0042C47.9099 32.4183 48.5352 32.6254 48.7502 32.974C48.9369 33.2767 48.9695 33.6499 48.8381 33.9803C48.6868 34.3609 48.1068 34.6732 46.9468 35.2978L39.8504 39.119C39.6737 39.2142 39.5853 39.2617 39.508 39.3229C39.4393 39.3772 39.3772 39.4393 39.3229 39.508C39.2617 39.5853 39.2142 39.6737 39.119 39.8504Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__online-service--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M47.25 21.375V17.55C47.25 13.7696 47.25 11.8795 46.5143 10.4356C45.8671 9.16547 44.8345 8.13285 43.5644 7.48571C42.1205 6.75 40.2304 6.75 36.45 6.75H17.55C13.7696 6.75 11.8795 6.75 10.4356 7.48571C9.16547 8.13285 8.13285 9.16547 7.48571 10.4356C6.75 11.8795 6.75 13.7696 6.75 17.55V36.45C6.75 40.2304 6.75 42.1205 7.48571 43.5644C8.13285 44.8345 9.16547 45.8671 10.4356 46.5143C11.8795 47.25 13.7696 47.25 17.55 47.25H21.375M39.119 39.8504L35.2978 46.9469C34.6732 48.1068 34.3609 48.6868 33.9802 48.8382C33.6498 48.9696 33.2766 48.937 32.974 48.7503C32.6253 48.5353 32.4183 47.9099 32.0042 46.6593L25.8759 28.1504C25.5133 27.0552 25.332 26.5076 25.4623 26.143C25.5758 25.8256 25.8256 25.5758 26.143 25.4623C26.5076 25.332 27.0552 25.5133 28.1504 25.8759L46.6592 32.0042C47.9099 32.4183 48.5352 32.6254 48.7502 32.974C48.9369 33.2767 48.9695 33.6499 48.8381 33.9803C48.6868 34.3609 48.1068 34.6732 46.9468 35.2978L39.8504 39.119C39.6737 39.2142 39.5853 39.2617 39.508 39.3229C39.4393 39.3772 39.3772 39.4393 39.3229 39.508C39.2617 39.5853 39.2142 39.6737 39.119 39.8504Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__online-service--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M47.25 21.375V17.55C47.25 13.7696 47.25 11.8795 46.5143 10.4356C45.8671 9.16547 44.8345 8.13285 43.5644 7.48571C42.1205 6.75 40.2304 6.75 36.45 6.75H17.55C13.7696 6.75 11.8795 6.75 10.4356 7.48571C9.16547 8.13285 8.13285 9.16547 7.48571 10.4356C6.75 11.8795 6.75 13.7696 6.75 17.55V36.45C6.75 40.2304 6.75 42.1205 7.48571 43.5644C8.13285 44.8345 9.16547 45.8671 10.4356 46.5143C11.8795 47.25 13.7696 47.25 17.55 47.25H21.375M39.119 39.8504L35.2978 46.9469C34.6732 48.1068 34.3609 48.6868 33.9802 48.8382C33.6498 48.9696 33.2766 48.937 32.974 48.7503C32.6253 48.5353 32.4183 47.9099 32.0042 46.6593L25.8759 28.1504C25.5133 27.0552 25.332 26.5076 25.4623 26.143C25.5758 25.8256 25.8256 25.5758 26.143 25.4623C26.5076 25.332 27.0552 25.5133 28.1504 25.8759L46.6592 32.0042C47.9099 32.4183 48.5352 32.6254 48.7502 32.974C48.9369 33.2767 48.9695 33.6499 48.8381 33.9803C48.6868 34.3609 48.1068 34.6732 46.9468 35.2978L39.8504 39.119C39.6737 39.2142 39.5853 39.2617 39.508 39.3229C39.4393 39.3772 39.3772 39.4393 39.3229 39.508C39.2617 39.5853 39.2142 39.6737 39.119 39.8504Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__online-service--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M47.25 21.375V17.55C47.25 13.7696 47.25 11.8795 46.5143 10.4356C45.8671 9.16547 44.8345 8.13285 43.5644 7.48571C42.1205 6.75 40.2304 6.75 36.45 6.75H17.55C13.7696 6.75 11.8795 6.75 10.4356 7.48571C9.16547 8.13285 8.13285 9.16547 7.48571 10.4356C6.75 11.8795 6.75 13.7696 6.75 17.55V36.45C6.75 40.2304 6.75 42.1205 7.48571 43.5644C8.13285 44.8345 9.16547 45.8671 10.4356 46.5143C11.8795 47.25 13.7696 47.25 17.55 47.25H21.375M39.119 39.8504L35.2978 46.9469C34.6732 48.1068 34.3609 48.6868 33.9802 48.8382C33.6498 48.9696 33.2766 48.937 32.974 48.7503C32.6253 48.5353 32.4183 47.9099 32.0042 46.6593L25.8759 28.1504C25.5133 27.0552 25.332 26.5076 25.4623 26.143C25.5758 25.8256 25.8256 25.5758 26.143 25.4623C26.5076 25.332 27.0552 25.5133 28.1504 25.8759L46.6592 32.0042C47.9099 32.4183 48.5352 32.6254 48.7502 32.974C48.9369 33.2767 48.9695 33.6499 48.8381 33.9803C48.6868 34.3609 48.1068 34.6732 46.9468 35.2978L39.8504 39.119C39.6737 39.2142 39.5853 39.2617 39.508 39.3229C39.4393 39.3772 39.3772 39.4393 39.3229 39.508C39.2617 39.5853 39.2142 39.6737 39.119 39.8504Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__cancel-step-1 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M9.91462 7.68377C8.88355 7.38051 8.36802 7.22888 8.01701 7.35973C7.71112 7.47376 7.46985 7.71503 7.35582 8.02091C7.22498 8.37192 7.3766 8.88746 7.67986 9.91852L17.1431 42.0937C17.4249 43.0518 17.5658 43.5309 17.8502 43.7533C18.0984 43.9473 18.4165 44.0285 18.7273 43.9769C19.0835 43.9178 19.4366 43.5647 20.1428 42.8585L26.9987 36.0026L36.9759 45.9798C37.4214 46.4253 37.6442 46.6481 37.9011 46.7316C38.127 46.805 38.3704 46.805 38.5964 46.7316C38.8532 46.6481 39.076 46.4253 39.5215 45.9798L45.9759 39.5254C46.4214 39.0799 46.6442 38.8571 46.7277 38.6003C46.8011 38.3743 46.8011 38.1309 46.7277 37.905C46.6442 37.6481 46.4214 37.4253 45.9759 36.9798L35.9987 27.0026L42.8546 20.1467C43.5608 19.4405 43.9139 19.0874 43.973 18.7312C44.0246 18.4204 43.9434 18.1023 43.7494 17.8541C43.527 17.5697 43.0479 17.4288 42.0897 17.147L9.91462 7.68377Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-1--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M9.91462 7.68377C8.88355 7.38051 8.36802 7.22888 8.01701 7.35973C7.71112 7.47376 7.46985 7.71503 7.35582 8.02091C7.22498 8.37192 7.3766 8.88746 7.67986 9.91852L17.1431 42.0937C17.4249 43.0518 17.5658 43.5309 17.8502 43.7533C18.0984 43.9473 18.4165 44.0285 18.7273 43.9769C19.0835 43.9178 19.4366 43.5647 20.1428 42.8585L26.9987 36.0026L36.9759 45.9798C37.4214 46.4253 37.6442 46.6481 37.9011 46.7316C38.127 46.805 38.3704 46.805 38.5964 46.7316C38.8532 46.6481 39.076 46.4253 39.5215 45.9798L45.9759 39.5254C46.4214 39.0799 46.6442 38.8571 46.7277 38.6003C46.8011 38.3743 46.8011 38.1309 46.7277 37.905C46.6442 37.6481 46.4214 37.4253 45.9759 36.9798L35.9987 27.0026L42.8546 20.1467C43.5608 19.4405 43.9139 19.0874 43.973 18.7312C44.0246 18.4204 43.9434 18.1023 43.7494 17.8541C43.527 17.5697 43.0479 17.4288 42.0897 17.147L9.91462 7.68377Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-1--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M9.91462 7.68377C8.88355 7.38051 8.36802 7.22888 8.01701 7.35973C7.71112 7.47376 7.46985 7.71503 7.35582 8.02091C7.22498 8.37192 7.3766 8.88746 7.67986 9.91852L17.1431 42.0937C17.4249 43.0518 17.5658 43.5309 17.8502 43.7533C18.0984 43.9473 18.4165 44.0285 18.7273 43.9769C19.0835 43.9178 19.4366 43.5647 20.1428 42.8585L26.9987 36.0026L36.9759 45.9798C37.4214 46.4253 37.6442 46.6481 37.9011 46.7316C38.127 46.805 38.3704 46.805 38.5964 46.7316C38.8532 46.6481 39.076 46.4253 39.5215 45.9798L45.9759 39.5254C46.4214 39.0799 46.6442 38.8571 46.7277 38.6003C46.8011 38.3743 46.8011 38.1309 46.7277 37.905C46.6442 37.6481 46.4214 37.4253 45.9759 36.9798L35.9987 27.0026L42.8546 20.1467C43.5608 19.4405 43.9139 19.0874 43.973 18.7312C44.0246 18.4204 43.9434 18.1023 43.7494 17.8541C43.527 17.5697 43.0479 17.4288 42.0897 17.147L9.91462 7.68377Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-1--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M9.91462 7.68377C8.88355 7.38051 8.36802 7.22888 8.01701 7.35973C7.71112 7.47376 7.46985 7.71503 7.35582 8.02091C7.22498 8.37192 7.3766 8.88746 7.67986 9.91852L17.1431 42.0937C17.4249 43.0518 17.5658 43.5309 17.8502 43.7533C18.0984 43.9473 18.4165 44.0285 18.7273 43.9769C19.0835 43.9178 19.4366 43.5647 20.1428 42.8585L26.9987 36.0026L36.9759 45.9798C37.4214 46.4253 37.6442 46.6481 37.9011 46.7316C38.127 46.805 38.3704 46.805 38.5964 46.7316C38.8532 46.6481 39.076 46.4253 39.5215 45.9798L45.9759 39.5254C46.4214 39.0799 46.6442 38.8571 46.7277 38.6003C46.8011 38.3743 46.8011 38.1309 46.7277 37.905C46.6442 37.6481 46.4214 37.4253 45.9759 36.9798L35.9987 27.0026L42.8546 20.1467C43.5608 19.4405 43.9139 19.0874 43.973 18.7312C44.0246 18.4204 43.9434 18.1023 43.7494 17.8541C43.527 17.5697 43.0479 17.4288 42.0897 17.147L9.91462 7.68377Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__cancel-step-2 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M36 40.5L42.75 47.25M42.75 47.25L49.5 40.5M42.75 47.25V33.75M49.5 22.5H4.5M49.5 27V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H11.7C9.17976 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45V35.55C4.5 38.0702 4.5 39.3304 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75H27' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-2--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M36 40.5L42.75 47.25M42.75 47.25L49.5 40.5M42.75 47.25V33.75M49.5 22.5H4.5M49.5 27V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H11.7C9.17976 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45V35.55C4.5 38.0702 4.5 39.3304 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75H27' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-2--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M36 40.5L42.75 47.25M42.75 47.25L49.5 40.5M42.75 47.25V33.75M49.5 22.5H4.5M49.5 27V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H11.7C9.17976 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45V35.55C4.5 38.0702 4.5 39.3304 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75H27' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-2--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M36 40.5L42.75 47.25M42.75 47.25L49.5 40.5M42.75 47.25V33.75M49.5 22.5H4.5M49.5 27V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H11.7C9.17976 11.25 7.91965 11.25 6.95704 11.7405C6.11031 12.1719 5.4219 12.8603 4.99047 13.707C4.5 14.6696 4.5 15.9298 4.5 18.45V35.55C4.5 38.0702 4.5 39.3304 4.99047 40.293C5.4219 41.1397 6.11031 41.8281 6.95704 42.2595C7.91965 42.75 9.17976 42.75 11.7 42.75H27' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__cancel-step-3 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M45 28.125V15.3C45 11.5196 45 9.62947 44.2643 8.18556C43.6171 6.91547 42.5845 5.88285 41.3144 5.23571C39.8705 4.5 37.9804 4.5 34.2 4.5H19.8C16.0196 4.5 14.1295 4.5 12.6856 5.23571C11.4155 5.88285 10.3829 6.91547 9.73571 8.18556C9 9.62947 9 11.5196 9 15.3V38.7C9 42.4804 9 44.3705 9.73571 45.8144C10.3829 47.0845 11.4155 48.1171 12.6856 48.7643C14.1295 49.5 16.0196 49.5 19.8 49.5H27M31.5 24.75H18M22.5 33.75H18M36 15.75H18M32.625 42.75L37.125 47.25L47.25 37.125' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-3--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M45 28.125V15.3C45 11.5196 45 9.62947 44.2643 8.18556C43.6171 6.91547 42.5845 5.88285 41.3144 5.23571C39.8705 4.5 37.9804 4.5 34.2 4.5H19.8C16.0196 4.5 14.1295 4.5 12.6856 5.23571C11.4155 5.88285 10.3829 6.91547 9.73571 8.18556C9 9.62947 9 11.5196 9 15.3V38.7C9 42.4804 9 44.3705 9.73571 45.8144C10.3829 47.0845 11.4155 48.1171 12.6856 48.7643C14.1295 49.5 16.0196 49.5 19.8 49.5H27M31.5 24.75H18M22.5 33.75H18M36 15.75H18M32.625 42.75L37.125 47.25L47.25 37.125' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-3--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M45 28.125V15.3C45 11.5196 45 9.62947 44.2643 8.18556C43.6171 6.91547 42.5845 5.88285 41.3144 5.23571C39.8705 4.5 37.9804 4.5 34.2 4.5H19.8C16.0196 4.5 14.1295 4.5 12.6856 5.23571C11.4155 5.88285 10.3829 6.91547 9.73571 8.18556C9 9.62947 9 11.5196 9 15.3V38.7C9 42.4804 9 44.3705 9.73571 45.8144C10.3829 47.0845 11.4155 48.1171 12.6856 48.7643C14.1295 49.5 16.0196 49.5 19.8 49.5H27M31.5 24.75H18M22.5 33.75H18M36 15.75H18M32.625 42.75L37.125 47.25L47.25 37.125' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-3--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M45 28.125V15.3C45 11.5196 45 9.62947 44.2643 8.18556C43.6171 6.91547 42.5845 5.88285 41.3144 5.23571C39.8705 4.5 37.9804 4.5 34.2 4.5H19.8C16.0196 4.5 14.1295 4.5 12.6856 5.23571C11.4155 5.88285 10.3829 6.91547 9.73571 8.18556C9 9.62947 9 11.5196 9 15.3V38.7C9 42.4804 9 44.3705 9.73571 45.8144C10.3829 47.0845 11.4155 48.1171 12.6856 48.7643C14.1295 49.5 16.0196 49.5 19.8 49.5H27M31.5 24.75H18M22.5 33.75H18M36 15.75H18M32.625 42.75L37.125 47.25L47.25 37.125' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__cancel-step-4 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M45 47.25C45 44.11 45 42.54 44.6125 41.2624C43.7399 38.386 41.489 36.1351 38.6126 35.2625C37.335 34.875 35.765 34.875 32.625 34.875H21.375C18.235 34.875 16.665 34.875 15.3874 35.2625C12.511 36.1351 10.2601 38.386 9.38754 41.2624C9 42.54 9 44.11 9 47.25M37.125 16.875C37.125 22.4669 32.5919 27 27 27C21.4081 27 16.875 22.4669 16.875 16.875C16.875 11.2831 21.4081 6.75 27 6.75C32.5919 6.75 37.125 11.2831 37.125 16.875Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-4--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M45 47.25C45 44.11 45 42.54 44.6125 41.2624C43.7399 38.386 41.489 36.1351 38.6126 35.2625C37.335 34.875 35.765 34.875 32.625 34.875H21.375C18.235 34.875 16.665 34.875 15.3874 35.2625C12.511 36.1351 10.2601 38.386 9.38754 41.2624C9 42.54 9 44.11 9 47.25M37.125 16.875C37.125 22.4669 32.5919 27 27 27C21.4081 27 16.875 22.4669 16.875 16.875C16.875 11.2831 21.4081 6.75 27 6.75C32.5919 6.75 37.125 11.2831 37.125 16.875Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-4--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M45 47.25C45 44.11 45 42.54 44.6125 41.2624C43.7399 38.386 41.489 36.1351 38.6126 35.2625C37.335 34.875 35.765 34.875 32.625 34.875H21.375C18.235 34.875 16.665 34.875 15.3874 35.2625C12.511 36.1351 10.2601 38.386 9.38754 41.2624C9 42.54 9 44.11 9 47.25M37.125 16.875C37.125 22.4669 32.5919 27 27 27C21.4081 27 16.875 22.4669 16.875 16.875C16.875 11.2831 21.4081 6.75 27 6.75C32.5919 6.75 37.125 11.2831 37.125 16.875Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-4--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M45 47.25C45 44.11 45 42.54 44.6125 41.2624C43.7399 38.386 41.489 36.1351 38.6126 35.2625C37.335 34.875 35.765 34.875 32.625 34.875H21.375C18.235 34.875 16.665 34.875 15.3874 35.2625C12.511 36.1351 10.2601 38.386 9.38754 41.2624C9 42.54 9 44.11 9 47.25M37.125 16.875C37.125 22.4669 32.5919 27 27 27C21.4081 27 16.875 22.4669 16.875 16.875C16.875 11.2831 21.4081 6.75 27 6.75C32.5919 6.75 37.125 11.2831 37.125 16.875Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__cancel-step-5 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M16.875 27L23.625 33.75L37.125 20.25M49.5 27C49.5 39.4264 39.4264 49.5 27 49.5C14.5736 49.5 4.5 39.4264 4.5 27C4.5 14.5736 14.5736 4.5 27 4.5C39.4264 4.5 49.5 14.5736 49.5 27Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-5--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M16.875 27L23.625 33.75L37.125 20.25M49.5 27C49.5 39.4264 39.4264 49.5 27 49.5C14.5736 49.5 4.5 39.4264 4.5 27C4.5 14.5736 14.5736 4.5 27 4.5C39.4264 4.5 49.5 14.5736 49.5 27Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-5--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M16.875 27L23.625 33.75L37.125 20.25M49.5 27C49.5 39.4264 39.4264 49.5 27 49.5C14.5736 49.5 4.5 39.4264 4.5 27C4.5 14.5736 14.5736 4.5 27 4.5C39.4264 4.5 49.5 14.5736 49.5 27Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__cancel-step-5--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M16.875 27L23.625 33.75L37.125 20.25M49.5 27C49.5 39.4264 39.4264 49.5 27 49.5C14.5736 49.5 4.5 39.4264 4.5 27C4.5 14.5736 14.5736 4.5 27 4.5C39.4264 4.5 49.5 14.5736 49.5 27Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__usestep-bg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='147' height='57' viewBox='0 0 147 57' fill='none'%3E%3Cpath d='M1.5 16C1.5 7.99187 7.99187 1.5 16 1.5H120.411C125.129 1.5 129.552 3.79527 132.268 7.653L141.878 21.3039C145.583 26.5657 145.376 33.6396 141.37 38.6761L132.345 50.0252C129.594 53.4843 125.416 55.5 120.996 55.5H16C7.99186 55.5 1.5 49.0081 1.5 41V16Z' fill='%23F9F9FF' stroke='%23E0E0FF' stroke-width='3'/%3E%3C/svg%3E");
}
.ico__usestep-bg--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='147' height='57' viewBox='0 0 147 57' fill='none'%3E%3Cpath d='M1.5 16C1.5 7.99187 7.99187 1.5 16 1.5H120.411C125.129 1.5 129.552 3.79527 132.268 7.653L141.878 21.3039C145.583 26.5657 145.376 33.6396 141.37 38.6761L132.345 50.0252C129.594 53.4843 125.416 55.5 120.996 55.5H16C7.99186 55.5 1.5 49.0081 1.5 41V16Z' fill='%23F9F9FF' stroke='%23E0E0FF' stroke-width='3'/%3E%3C/svg%3E");
}
.ico__usestep-bg--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='147' height='57' viewBox='0 0 147 57' fill='none'%3E%3Cpath d='M1.5 16C1.5 7.99187 7.99187 1.5 16 1.5H120.411C125.129 1.5 129.552 3.79527 132.268 7.653L141.878 21.3039C145.583 26.5657 145.376 33.6396 141.37 38.6761L132.345 50.0252C129.594 53.4843 125.416 55.5 120.996 55.5H16C7.99186 55.5 1.5 49.0081 1.5 41V16Z' fill='%23F9F9FF' stroke='%23E0E0FF' stroke-width='3'/%3E%3C/svg%3E");
}
.ico__usestep-bg--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='147' height='57' viewBox='0 0 147 57' fill='none'%3E%3Cpath d='M1.5 16C1.5 7.99187 7.99187 1.5 16 1.5H120.411C125.129 1.5 129.552 3.79527 132.268 7.653L141.878 21.3039C145.583 26.5657 145.376 33.6396 141.37 38.6761L132.345 50.0252C129.594 53.4843 125.416 55.5 120.996 55.5H16C7.99186 55.5 1.5 49.0081 1.5 41V16Z' fill='%23F9F9FF' stroke='%23E0E0FF' stroke-width='3'/%3E%3C/svg%3E");
}

.ico__deposit-withdrawal {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M49.5 22.5H4.5M24.75 42.75L42.3 42.75C44.8202 42.75 46.0804 42.75 47.043 42.2595C47.8897 41.8281 48.5781 41.1397 49.0095 40.293C49.5 39.3304 49.5 38.0702 49.5 35.55V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H38.25M24.75 42.75L29.25 47.25M24.75 42.75L29.25 38.25M15.75 42.75H11.7C9.17976 42.75 7.91964 42.75 6.95704 42.2595C6.11031 41.8281 5.4219 41.1397 4.99047 40.293C4.5 39.3304 4.5 38.0702 4.5 35.55V18.45C4.5 15.9298 4.5 14.6696 4.99047 13.707C5.4219 12.8603 6.11031 12.1719 6.95704 11.7405C7.91965 11.25 9.17976 11.25 11.7 11.25H29.25M29.25 11.25L24.75 15.75M29.25 11.25L24.75 6.75' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-withdrawal--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M49.5 22.5H4.5M24.75 42.75L42.3 42.75C44.8202 42.75 46.0804 42.75 47.043 42.2595C47.8897 41.8281 48.5781 41.1397 49.0095 40.293C49.5 39.3304 49.5 38.0702 49.5 35.55V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H38.25M24.75 42.75L29.25 47.25M24.75 42.75L29.25 38.25M15.75 42.75H11.7C9.17976 42.75 7.91964 42.75 6.95704 42.2595C6.11031 41.8281 5.4219 41.1397 4.99047 40.293C4.5 39.3304 4.5 38.0702 4.5 35.55V18.45C4.5 15.9298 4.5 14.6696 4.99047 13.707C5.4219 12.8603 6.11031 12.1719 6.95704 11.7405C7.91965 11.25 9.17976 11.25 11.7 11.25H29.25M29.25 11.25L24.75 15.75M29.25 11.25L24.75 6.75' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-withdrawal--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M49.5 22.5H4.5M24.75 42.75L42.3 42.75C44.8202 42.75 46.0804 42.75 47.043 42.2595C47.8897 41.8281 48.5781 41.1397 49.0095 40.293C49.5 39.3304 49.5 38.0702 49.5 35.55V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H38.25M24.75 42.75L29.25 47.25M24.75 42.75L29.25 38.25M15.75 42.75H11.7C9.17976 42.75 7.91964 42.75 6.95704 42.2595C6.11031 41.8281 5.4219 41.1397 4.99047 40.293C4.5 39.3304 4.5 38.0702 4.5 35.55V18.45C4.5 15.9298 4.5 14.6696 4.99047 13.707C5.4219 12.8603 6.11031 12.1719 6.95704 11.7405C7.91965 11.25 9.17976 11.25 11.7 11.25H29.25M29.25 11.25L24.75 15.75M29.25 11.25L24.75 6.75' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-withdrawal--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M49.5 22.5H4.5M24.75 42.75L42.3 42.75C44.8202 42.75 46.0804 42.75 47.043 42.2595C47.8897 41.8281 48.5781 41.1397 49.0095 40.293C49.5 39.3304 49.5 38.0702 49.5 35.55V18.45C49.5 15.9298 49.5 14.6696 49.0095 13.707C48.5781 12.8603 47.8897 12.1719 47.043 11.7405C46.0804 11.25 44.8202 11.25 42.3 11.25H38.25M24.75 42.75L29.25 47.25M24.75 42.75L29.25 38.25M15.75 42.75H11.7C9.17976 42.75 7.91964 42.75 6.95704 42.2595C6.11031 41.8281 5.4219 41.1397 4.99047 40.293C4.5 39.3304 4.5 38.0702 4.5 35.55V18.45C4.5 15.9298 4.5 14.6696 4.99047 13.707C5.4219 12.8603 6.11031 12.1719 6.95704 11.7405C7.91965 11.25 9.17976 11.25 11.7 11.25H29.25M29.25 11.25L24.75 15.75M29.25 11.25L24.75 6.75' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__seat {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M18 6.75H13.95C11.4298 6.75 10.1696 6.75 9.20704 7.24047C8.36031 7.6719 7.6719 8.36031 7.24047 9.20704C6.75 10.1696 6.75 11.4298 6.75 13.95V18M18 47.25H13.95C11.4298 47.25 10.1696 47.25 9.20704 46.7595C8.36031 46.3281 7.6719 45.6397 7.24047 44.793C6.75 43.8304 6.75 42.5702 6.75 40.05V36M47.25 18V13.95C47.25 11.4298 47.25 10.1696 46.7595 9.20704C46.3281 8.36031 45.6397 7.6719 44.793 7.24047C43.8304 6.75 42.5702 6.75 40.05 6.75H36M47.25 36V40.05C47.25 42.5702 47.25 43.8304 46.7595 44.793C46.3281 45.6397 45.6397 46.3281 44.793 46.7595C43.8304 47.25 42.5702 47.25 40.05 47.25H36M27 38.25L27 15.75M15.75 27H38.25' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__seat--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M18 6.75H13.95C11.4298 6.75 10.1696 6.75 9.20704 7.24047C8.36031 7.6719 7.6719 8.36031 7.24047 9.20704C6.75 10.1696 6.75 11.4298 6.75 13.95V18M18 47.25H13.95C11.4298 47.25 10.1696 47.25 9.20704 46.7595C8.36031 46.3281 7.6719 45.6397 7.24047 44.793C6.75 43.8304 6.75 42.5702 6.75 40.05V36M47.25 18V13.95C47.25 11.4298 47.25 10.1696 46.7595 9.20704C46.3281 8.36031 45.6397 7.6719 44.793 7.24047C43.8304 6.75 42.5702 6.75 40.05 6.75H36M47.25 36V40.05C47.25 42.5702 47.25 43.8304 46.7595 44.793C46.3281 45.6397 45.6397 46.3281 44.793 46.7595C43.8304 47.25 42.5702 47.25 40.05 47.25H36M27 38.25L27 15.75M15.75 27H38.25' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__seat--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M18 6.75H13.95C11.4298 6.75 10.1696 6.75 9.20704 7.24047C8.36031 7.6719 7.6719 8.36031 7.24047 9.20704C6.75 10.1696 6.75 11.4298 6.75 13.95V18M18 47.25H13.95C11.4298 47.25 10.1696 47.25 9.20704 46.7595C8.36031 46.3281 7.6719 45.6397 7.24047 44.793C6.75 43.8304 6.75 42.5702 6.75 40.05V36M47.25 18V13.95C47.25 11.4298 47.25 10.1696 46.7595 9.20704C46.3281 8.36031 45.6397 7.6719 44.793 7.24047C43.8304 6.75 42.5702 6.75 40.05 6.75H36M47.25 36V40.05C47.25 42.5702 47.25 43.8304 46.7595 44.793C46.3281 45.6397 45.6397 46.3281 44.793 46.7595C43.8304 47.25 42.5702 47.25 40.05 47.25H36M27 38.25L27 15.75M15.75 27H38.25' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__seat--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M18 6.75H13.95C11.4298 6.75 10.1696 6.75 9.20704 7.24047C8.36031 7.6719 7.6719 8.36031 7.24047 9.20704C6.75 10.1696 6.75 11.4298 6.75 13.95V18M18 47.25H13.95C11.4298 47.25 10.1696 47.25 9.20704 46.7595C8.36031 46.3281 7.6719 45.6397 7.24047 44.793C6.75 43.8304 6.75 42.5702 6.75 40.05V36M47.25 18V13.95C47.25 11.4298 47.25 10.1696 46.7595 9.20704C46.3281 8.36031 45.6397 7.6719 44.793 7.24047C43.8304 6.75 42.5702 6.75 40.05 6.75H36M47.25 36V40.05C47.25 42.5702 47.25 43.8304 46.7595 44.793C46.3281 45.6397 45.6397 46.3281 44.793 46.7595C43.8304 47.25 42.5702 47.25 40.05 47.25H36M27 38.25L27 15.75M15.75 27H38.25' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__horse-ticket {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M37.125 31.5H37.1475M6.75 11.25V42.75C6.75 45.2353 8.76472 47.25 11.25 47.25H42.75C45.2353 47.25 47.25 45.2353 47.25 42.75V20.25C47.25 17.7647 45.2353 15.75 42.75 15.75L11.25 15.75C8.76472 15.75 6.75 13.7353 6.75 11.25ZM6.75 11.25C6.75 8.76472 8.76472 6.75 11.25 6.75H38.25M38.25 31.5C38.25 32.1213 37.7463 32.625 37.125 32.625C36.5037 32.625 36 32.1213 36 31.5C36 30.8787 36.5037 30.375 37.125 30.375C37.7463 30.375 38.25 30.8787 38.25 31.5Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__horse-ticket--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M37.125 31.5H37.1475M6.75 11.25V42.75C6.75 45.2353 8.76472 47.25 11.25 47.25H42.75C45.2353 47.25 47.25 45.2353 47.25 42.75V20.25C47.25 17.7647 45.2353 15.75 42.75 15.75L11.25 15.75C8.76472 15.75 6.75 13.7353 6.75 11.25ZM6.75 11.25C6.75 8.76472 8.76472 6.75 11.25 6.75H38.25M38.25 31.5C38.25 32.1213 37.7463 32.625 37.125 32.625C36.5037 32.625 36 32.1213 36 31.5C36 30.8787 36.5037 30.375 37.125 30.375C37.7463 30.375 38.25 30.8787 38.25 31.5Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__horse-ticket--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M37.125 31.5H37.1475M6.75 11.25V42.75C6.75 45.2353 8.76472 47.25 11.25 47.25H42.75C45.2353 47.25 47.25 45.2353 47.25 42.75V20.25C47.25 17.7647 45.2353 15.75 42.75 15.75L11.25 15.75C8.76472 15.75 6.75 13.7353 6.75 11.25ZM6.75 11.25C6.75 8.76472 8.76472 6.75 11.25 6.75H38.25M38.25 31.5C38.25 32.1213 37.7463 32.625 37.125 32.625C36.5037 32.625 36 32.1213 36 31.5C36 30.8787 36.5037 30.375 37.125 30.375C37.7463 30.375 38.25 30.8787 38.25 31.5Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__horse-ticket--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M37.125 31.5H37.1475M6.75 11.25V42.75C6.75 45.2353 8.76472 47.25 11.25 47.25H42.75C45.2353 47.25 47.25 45.2353 47.25 42.75V20.25C47.25 17.7647 45.2353 15.75 42.75 15.75L11.25 15.75C8.76472 15.75 6.75 13.7353 6.75 11.25ZM6.75 11.25C6.75 8.76472 8.76472 6.75 11.25 6.75H38.25M38.25 31.5C38.25 32.1213 37.7463 32.625 37.125 32.625C36.5037 32.625 36 32.1213 36 31.5C36 30.8787 36.5037 30.375 37.125 30.375C37.7463 30.375 38.25 30.8787 38.25 31.5Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__deposit-step-1 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M9 13.5C9 17.2282 17.0595 20.25 27 20.25C36.9405 20.25 45 17.2282 45 13.5M9 13.5C9 9.77175 17.0595 6.75 27 6.75C36.9405 6.75 45 9.77175 45 13.5M9 13.5V27M45 13.5V25.875M9 27C9 30.7282 17.0595 33.75 27 33.75M9 27V40.5C9 44.2282 17.0595 47.25 27 47.25M45.45 45.45L49.5 49.5M33.75 40.5C33.75 42.2902 34.4612 44.0071 35.727 45.273C36.9929 46.5388 38.7098 47.25 40.5 47.25C42.2902 47.25 44.0071 46.5388 45.273 45.273C46.5388 44.0071 47.25 42.2902 47.25 40.5C47.25 38.7098 46.5388 36.9929 45.273 35.727C44.0071 34.4612 42.2902 33.75 40.5 33.75C38.7098 33.75 36.9929 34.4612 35.727 35.727C34.4612 36.9929 33.75 38.7098 33.75 40.5Z' stroke='%237343FF' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-step-1--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M9 13.5C9 17.2282 17.0595 20.25 27 20.25C36.9405 20.25 45 17.2282 45 13.5M9 13.5C9 9.77175 17.0595 6.75 27 6.75C36.9405 6.75 45 9.77175 45 13.5M9 13.5V27M45 13.5V25.875M9 27C9 30.7282 17.0595 33.75 27 33.75M9 27V40.5C9 44.2282 17.0595 47.25 27 47.25M45.45 45.45L49.5 49.5M33.75 40.5C33.75 42.2902 34.4612 44.0071 35.727 45.273C36.9929 46.5388 38.7098 47.25 40.5 47.25C42.2902 47.25 44.0071 46.5388 45.273 45.273C46.5388 44.0071 47.25 42.2902 47.25 40.5C47.25 38.7098 46.5388 36.9929 45.273 35.727C44.0071 34.4612 42.2902 33.75 40.5 33.75C38.7098 33.75 36.9929 34.4612 35.727 35.727C34.4612 36.9929 33.75 38.7098 33.75 40.5Z' stroke='%237343FF' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-step-1--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M9 13.5C9 17.2282 17.0595 20.25 27 20.25C36.9405 20.25 45 17.2282 45 13.5M9 13.5C9 9.77175 17.0595 6.75 27 6.75C36.9405 6.75 45 9.77175 45 13.5M9 13.5V27M45 13.5V25.875M9 27C9 30.7282 17.0595 33.75 27 33.75M9 27V40.5C9 44.2282 17.0595 47.25 27 47.25M45.45 45.45L49.5 49.5M33.75 40.5C33.75 42.2902 34.4612 44.0071 35.727 45.273C36.9929 46.5388 38.7098 47.25 40.5 47.25C42.2902 47.25 44.0071 46.5388 45.273 45.273C46.5388 44.0071 47.25 42.2902 47.25 40.5C47.25 38.7098 46.5388 36.9929 45.273 35.727C44.0071 34.4612 42.2902 33.75 40.5 33.75C38.7098 33.75 36.9929 34.4612 35.727 35.727C34.4612 36.9929 33.75 38.7098 33.75 40.5Z' stroke='%237343FF' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-step-1--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M9 13.5C9 17.2282 17.0595 20.25 27 20.25C36.9405 20.25 45 17.2282 45 13.5M9 13.5C9 9.77175 17.0595 6.75 27 6.75C36.9405 6.75 45 9.77175 45 13.5M9 13.5V27M45 13.5V25.875M9 27C9 30.7282 17.0595 33.75 27 33.75M9 27V40.5C9 44.2282 17.0595 47.25 27 47.25M45.45 45.45L49.5 49.5M33.75 40.5C33.75 42.2902 34.4612 44.0071 35.727 45.273C36.9929 46.5388 38.7098 47.25 40.5 47.25C42.2902 47.25 44.0071 46.5388 45.273 45.273C46.5388 44.0071 47.25 42.2902 47.25 40.5C47.25 38.7098 46.5388 36.9929 45.273 35.727C44.0071 34.4612 42.2902 33.75 40.5 33.75C38.7098 33.75 36.9929 34.4612 35.727 35.727C34.4612 36.9929 33.75 38.7098 33.75 40.5Z' stroke='%237343FF' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__deposit-step-2 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 31H15C12.2089 31 10.8133 31 9.67772 31.3445C7.12091 32.1201 5.12008 34.1209 4.34448 36.6777C4 37.8133 4 39.2089 4 42M32 36L36 40L44 32M29 15C29 19.9706 24.9706 24 20 24C15.0294 24 11 19.9706 11 15C11 10.0294 15.0294 6 20 6C24.9706 6 29 10.0294 29 15Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-step-2--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 31H15C12.2089 31 10.8133 31 9.67772 31.3445C7.12091 32.1201 5.12008 34.1209 4.34448 36.6777C4 37.8133 4 39.2089 4 42M32 36L36 40L44 32M29 15C29 19.9706 24.9706 24 20 24C15.0294 24 11 19.9706 11 15C11 10.0294 15.0294 6 20 6C24.9706 6 29 10.0294 29 15Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-step-2--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 31H15C12.2089 31 10.8133 31 9.67772 31.3445C7.12091 32.1201 5.12008 34.1209 4.34448 36.6777C4 37.8133 4 39.2089 4 42M32 36L36 40L44 32M29 15C29 19.9706 24.9706 24 20 24C15.0294 24 11 19.9706 11 15C11 10.0294 15.0294 6 20 6C24.9706 6 29 10.0294 29 15Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-step-2--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 31H15C12.2089 31 10.8133 31 9.67772 31.3445C7.12091 32.1201 5.12008 34.1209 4.34448 36.6777C4 37.8133 4 39.2089 4 42M32 36L36 40L44 32M29 15C29 19.9706 24.9706 24 20 24C15.0294 24 11 19.9706 11 15C11 10.0294 15.0294 6 20 6C24.9706 6 29 10.0294 29 15Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__deposit-step-3 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M42 42L33.3 33.3M22 16V28M16 22H28M38 22C38 30.8366 30.8366 38 22 38C13.1634 38 6 30.8366 6 22C6 13.1634 13.1634 6 22 6C30.8366 6 38 13.1634 38 22Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-step-3--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M42 42L33.3 33.3M22 16V28M16 22H28M38 22C38 30.8366 30.8366 38 22 38C13.1634 38 6 30.8366 6 22C6 13.1634 13.1634 6 22 6C30.8366 6 38 13.1634 38 22Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-step-3--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M42 42L33.3 33.3M22 16V28M16 22H28M38 22C38 30.8366 30.8366 38 22 38C13.1634 38 6 30.8366 6 22C6 13.1634 13.1634 6 22 6C30.8366 6 38 13.1634 38 22Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-step-3--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M42 42L33.3 33.3M22 16V28M16 22H28M38 22C38 30.8366 30.8366 38 22 38C13.1634 38 6 30.8366 6 22C6 13.1634 13.1634 6 22 6C30.8366 6 38 13.1634 38 22Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__deposit-step-4 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M13.5004 13.4984V22.9484M40.5004 13.4984V22.9484M39.1504 32.3984H44.5504C46.7871 32.3984 48.6004 30.5852 48.6004 28.3484V9.44844C48.6004 7.21168 46.7871 5.39844 44.5504 5.39844H9.45039C7.21364 5.39844 5.40039 7.21168 5.40039 9.44844V28.3484C5.40039 30.5852 7.21364 32.3984 9.45039 32.3984H14.8504M19.3615 40.9612L26.9982 48.598M26.9982 48.598L34.1205 41.4757M26.9982 48.598L26.9986 32.9777M32.4004 18.8984C32.4004 21.8808 29.9827 24.2984 27.0004 24.2984C24.018 24.2984 21.6004 21.8808 21.6004 18.8984C21.6004 15.9161 24.018 13.4984 27.0004 13.4984C29.9827 13.4984 32.4004 15.9161 32.4004 18.8984Z' stroke='%231d1d1d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-step-4--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M13.5004 13.4984V22.9484M40.5004 13.4984V22.9484M39.1504 32.3984H44.5504C46.7871 32.3984 48.6004 30.5852 48.6004 28.3484V9.44844C48.6004 7.21168 46.7871 5.39844 44.5504 5.39844H9.45039C7.21364 5.39844 5.40039 7.21168 5.40039 9.44844V28.3484C5.40039 30.5852 7.21364 32.3984 9.45039 32.3984H14.8504M19.3615 40.9612L26.9982 48.598M26.9982 48.598L34.1205 41.4757M26.9982 48.598L26.9986 32.9777M32.4004 18.8984C32.4004 21.8808 29.9827 24.2984 27.0004 24.2984C24.018 24.2984 21.6004 21.8808 21.6004 18.8984C21.6004 15.9161 24.018 13.4984 27.0004 13.4984C29.9827 13.4984 32.4004 15.9161 32.4004 18.8984Z' stroke='%23000000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-step-4--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M13.5004 13.4984V22.9484M40.5004 13.4984V22.9484M39.1504 32.3984H44.5504C46.7871 32.3984 48.6004 30.5852 48.6004 28.3484V9.44844C48.6004 7.21168 46.7871 5.39844 44.5504 5.39844H9.45039C7.21364 5.39844 5.40039 7.21168 5.40039 9.44844V28.3484C5.40039 30.5852 7.21364 32.3984 9.45039 32.3984H14.8504M19.3615 40.9612L26.9982 48.598M26.9982 48.598L34.1205 41.4757M26.9982 48.598L26.9986 32.9777M32.4004 18.8984C32.4004 21.8808 29.9827 24.2984 27.0004 24.2984C24.018 24.2984 21.6004 21.8808 21.6004 18.8984C21.6004 15.9161 24.018 13.4984 27.0004 13.4984C29.9827 13.4984 32.4004 15.9161 32.4004 18.8984Z' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__deposit-step-4--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M13.5004 13.4984V22.9484M40.5004 13.4984V22.9484M39.1504 32.3984H44.5504C46.7871 32.3984 48.6004 30.5852 48.6004 28.3484V9.44844C48.6004 7.21168 46.7871 5.39844 44.5504 5.39844H9.45039C7.21364 5.39844 5.40039 7.21168 5.40039 9.44844V28.3484C5.40039 30.5852 7.21364 32.3984 9.45039 32.3984H14.8504M19.3615 40.9612L26.9982 48.598M26.9982 48.598L34.1205 41.4757M26.9982 48.598L26.9986 32.9777M32.4004 18.8984C32.4004 21.8808 29.9827 24.2984 27.0004 24.2984C24.018 24.2984 21.6004 21.8808 21.6004 18.8984C21.6004 15.9161 24.018 13.4984 27.0004 13.4984C29.9827 13.4984 32.4004 15.9161 32.4004 18.8984Z' stroke='%237343ff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__arrow-1 {
  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%3Cpath d='M7.5625 16.25L14.4375 10L7.5625 3.75' stroke='%231d1d1d' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ico__arrow-1--black {
  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%3Cpath d='M7.5625 16.25L14.4375 10L7.5625 3.75' stroke='%23000000' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ico__arrow-1--white {
  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%3Cpath d='M7.5625 16.25L14.4375 10L7.5625 3.75' stroke='%23fff' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ico__arrow-1--point {
  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%3Cpath d='M7.5625 16.25L14.4375 10L7.5625 3.75' stroke='%237343ff' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ico__check {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M9 15.125L13.125 19.25L21.375 11' stroke='%231d1d1d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__check--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M9 15.125L13.125 19.25L21.375 11' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__check--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M9 15.125L13.125 19.25L21.375 11' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ico__check--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M9 15.125L13.125 19.25L21.375 11' stroke='%237343ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ico__sc-arrow-2 {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='12' viewBox='0 0 13 12' fill='none'%3E%3Cpath d='M4.28125 9.5L8.40625 5.75L4.28125 2' stroke='%232D2D2D' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ico__sc-arrow-2--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='12' viewBox='0 0 13 12' fill='none'%3E%3Cpath d='M4.28125 9.5L8.40625 5.75L4.28125 2' stroke='%232D2D2D' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ico__sc-arrow-2--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='12' viewBox='0 0 13 12' fill='none'%3E%3Cpath d='M4.28125 9.5L8.40625 5.75L4.28125 2' stroke='%232D2D2D' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ico__sc-arrow-2--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='12' viewBox='0 0 13 12' fill='none'%3E%3Cpath d='M4.28125 9.5L8.40625 5.75L4.28125 2' stroke='%232D2D2D' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ico__security-program {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='54' height='54' viewBox='0 0 54 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.25 26.222L24.75 30.722L34.875 20.597M45 27.347C45 38.391 32.9536 46.4234 28.5705 48.9805C28.0723 49.2711 27.8233 49.4164 27.4718 49.4918C27.199 49.5503 26.801 49.5503 26.5282 49.4918C26.1767 49.4164 25.9277 49.2711 25.4295 48.9805C21.0464 46.4234 9 38.391 9 27.347V16.5866C9 14.7877 9 13.8883 9.29421 13.1151C9.55412 12.4321 9.97646 11.8226 10.5247 11.3394C11.1454 10.7925 11.9875 10.4767 13.6719 9.84503L25.736 5.32102C26.2037 5.1456 26.4376 5.0579 26.6782 5.02313C26.8916 4.99229 27.1084 4.99229 27.3218 5.02313C27.5624 5.0579 27.7963 5.1456 28.264 5.32102L40.3281 9.84503C42.0125 10.4767 42.8546 10.7925 43.4753 11.3394C44.0235 11.8226 44.4459 12.4321 44.7058 13.1151C45 13.8883 45 14.7877 45 16.5866V27.347Z' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__security-program--black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='54' height='54' viewBox='0 0 54 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.25 26.222L24.75 30.722L34.875 20.597M45 27.347C45 38.391 32.9536 46.4234 28.5705 48.9805C28.0723 49.2711 27.8233 49.4164 27.4718 49.4918C27.199 49.5503 26.801 49.5503 26.5282 49.4918C26.1767 49.4164 25.9277 49.2711 25.4295 48.9805C21.0464 46.4234 9 38.391 9 27.347V16.5866C9 14.7877 9 13.8883 9.29421 13.1151C9.55412 12.4321 9.97646 11.8226 10.5247 11.3394C11.1454 10.7925 11.9875 10.4767 13.6719 9.84503L25.736 5.32102C26.2037 5.1456 26.4376 5.0579 26.6782 5.02313C26.8916 4.99229 27.1084 4.99229 27.3218 5.02313C27.5624 5.0579 27.7963 5.1456 28.264 5.32102L40.3281 9.84503C42.0125 10.4767 42.8546 10.7925 43.4753 11.3394C44.0235 11.8226 44.4459 12.4321 44.7058 13.1151C45 13.8883 45 14.7877 45 16.5866V27.347Z' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__security-program--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='54' height='54' viewBox='0 0 54 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.25 26.222L24.75 30.722L34.875 20.597M45 27.347C45 38.391 32.9536 46.4234 28.5705 48.9805C28.0723 49.2711 27.8233 49.4164 27.4718 49.4918C27.199 49.5503 26.801 49.5503 26.5282 49.4918C26.1767 49.4164 25.9277 49.2711 25.4295 48.9805C21.0464 46.4234 9 38.391 9 27.347V16.5866C9 14.7877 9 13.8883 9.29421 13.1151C9.55412 12.4321 9.97646 11.8226 10.5247 11.3394C11.1454 10.7925 11.9875 10.4767 13.6719 9.84503L25.736 5.32102C26.2037 5.1456 26.4376 5.0579 26.6782 5.02313C26.8916 4.99229 27.1084 4.99229 27.3218 5.02313C27.5624 5.0579 27.7963 5.1456 28.264 5.32102L40.3281 9.84503C42.0125 10.4767 42.8546 10.7925 43.4753 11.3394C44.0235 11.8226 44.4459 12.4321 44.7058 13.1151C45 13.8883 45 14.7877 45 16.5866V27.347Z' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico__security-program--point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='54' height='54' viewBox='0 0 54 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.25 26.222L24.75 30.722L34.875 20.597M45 27.347C45 38.391 32.9536 46.4234 28.5705 48.9805C28.0723 49.2711 27.8233 49.4164 27.4718 49.4918C27.199 49.5503 26.801 49.5503 26.5282 49.4918C26.1767 49.4164 25.9277 49.2711 25.4295 48.9805C21.0464 46.4234 9 38.391 9 27.347V16.5866C9 14.7877 9 13.8883 9.29421 13.1151C9.55412 12.4321 9.97646 11.8226 10.5247 11.3394C11.1454 10.7925 11.9875 10.4767 13.6719 9.84503L25.736 5.32102C26.2037 5.1456 26.4376 5.0579 26.6782 5.02313C26.8916 4.99229 27.1084 4.99229 27.3218 5.02313C27.5624 5.0579 27.7963 5.1456 28.264 5.32102L40.3281 9.84503C42.0125 10.4767 42.8546 10.7925 43.4753 11.3394C44.0235 11.8226 44.4459 12.4321 44.7058 13.1151C45 13.8883 45 14.7877 45 16.5866V27.347Z' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.ico__emblem--kr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_26_1333)'%3E%3Cpath d='M27.9996 14.9996C27.9996 22.1791 22.1791 28 14.9996 28C7.81873 28 2 22.1791 2 14.9996C2 7.82046 7.81873 2 14.9996 2C22.1791 2 27.9996 7.82046 27.9996 14.9996Z' fill='white'/%3E%3Cpath d='M21.1166 14.0941C19.0485 12.6887 16.4009 13.2623 15.0111 15.3749C13.8505 17.1402 12.0991 17.3595 11.4196 17.3595C9.2092 17.3595 7.69526 15.804 7.24757 14.194H7.24454C7.24324 14.178 7.23718 14.165 7.23372 14.149C7.2294 14.1317 7.22334 14.1136 7.21988 14.0945C7.0434 13.4236 6.99928 13.1027 6.99928 12.3885C6.99928 8.53924 10.9494 4.25435 16.6379 4.25435C22.4622 4.25435 25.7942 8.68804 26.652 11.1523C26.6368 11.109 26.623 11.0662 26.6078 11.0212C24.9568 6.20128 20.3864 2.73608 15.005 2.73608C8.23206 2.73608 2.74121 8.2265 2.74121 15.0007C2.74121 21.0552 7.10828 26.2377 13.164 26.2377C17.9948 26.2377 21.2429 23.529 22.7317 19.796C23.5501 17.754 22.9701 15.355 21.1166 14.0941Z' fill='%23053863'/%3E%3Cpath d='M26.7287 11.3911C26.0124 8.98741 22.6549 4.25439 16.6372 4.25439C10.9491 4.25439 6.99902 8.53928 6.99902 12.3886C6.99902 13.1027 7.04271 13.4237 7.21919 14.0946C7.14393 13.8013 7.1063 13.5067 7.1063 13.2195C7.1063 9.21104 11.1204 6.43361 15.2461 6.43361C20.8313 6.43361 25.3584 10.9616 25.3584 16.5454C25.3584 20.9242 22.8383 24.7125 19.1785 26.5336L19.1793 26.5366C23.8989 24.8271 27.2677 20.3082 27.2677 15.0008C27.2677 13.7442 27.099 12.6369 26.7287 11.3911Z' fill='%23E4022E'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_26_1333'%3E%3Crect width='26' height='26' fill='white' transform='translate(2 2)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.ico__emblem--pm {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_26_1347)'%3E%3Cpath d='M10.8669 27.8925C10.6353 27.8706 10.449 27.8159 10.2378 27.7079C9.96339 27.5676 9.72541 27.3859 9.4295 27.0909L9.23783 26.8999L9.07811 26.9289C8.88158 26.9645 8.46084 26.9777 8.25791 26.9545C7.76054 26.8976 7.39876 26.7306 7.08486 26.4129C7.01107 26.3382 6.91186 26.2223 6.86439 26.1552C6.68837 25.9067 6.51836 25.5063 6.44026 25.1564C6.41352 25.0366 6.35684 24.6872 6.35663 24.6408C6.35659 24.6325 6.27415 24.5827 6.17343 24.5303C5.8826 24.3788 5.71442 24.257 5.51479 24.0533C5.20313 23.7353 5.04772 23.3829 5.00091 22.8881C4.9785 22.6512 4.99202 22.4946 5.07222 22.062C5.0809 22.0151 5.0831 21.9691 5.07718 21.9572C5.07139 21.9456 5.03345 21.9172 4.99288 21.8942C4.8846 21.8327 4.70316 21.6411 4.62221 21.5028C4.50979 21.3107 4.42531 21.0639 4.36866 20.7618C4.35398 20.6836 4.34625 20.5424 4.34152 20.2664C4.33424 19.8407 4.35014 19.4955 4.38944 19.2264C4.4281 18.9616 4.43632 18.9879 4.28214 18.8837C3.86441 18.6013 3.55563 18.2837 3.40514 17.9815C3.19834 17.5664 3.15377 17.1643 3.26427 16.7106L3.30125 16.5588L3.24133 16.5087C3.11043 16.3992 2.8069 16.0767 2.72511 15.9601C2.56024 15.7252 2.44585 15.4832 2.37524 15.22C2.34515 15.1079 2.33995 15.0603 2.33485 14.8504C2.32307 14.3662 2.37448 14.0997 2.56011 13.6826C2.59613 13.6016 2.6256 13.5305 2.6256 13.5244C2.6256 13.5184 2.5742 13.4557 2.51138 13.3851C2.26923 13.1131 2.12499 12.8363 2.04196 12.4845C1.99432 12.2826 1.98591 11.9234 2.02362 11.7009C2.09167 11.2994 2.27161 10.9368 2.5351 10.6704C2.82472 10.3775 3.19583 10.1565 3.66514 9.9974C3.77154 9.96133 3.86803 9.92368 3.87955 9.91373C3.8912 9.90367 3.91296 9.84021 3.92856 9.77083C4.00903 9.41292 4.20545 8.96108 4.3708 8.7535C4.5276 8.55665 4.75837 8.37451 4.99459 8.26115C5.23768 8.14449 5.47219 8.09504 5.78291 8.09491L5.9695 8.09483L6.02557 7.96981C6.20339 7.57329 6.57458 7.18655 6.95092 7.0057C7.33706 6.82014 7.84468 6.74737 8.41086 6.79641C8.50417 6.80449 8.58263 6.80885 8.58521 6.80611C8.58778 6.80337 8.59663 6.7258 8.60488 6.63376C8.67369 5.86503 8.8778 5.38244 9.30439 4.97986C9.47109 4.82255 9.59307 4.7351 9.77622 4.64161C10.0332 4.51041 10.2793 4.42656 10.5404 4.38122C10.6786 4.35723 10.6885 4.34908 10.7913 4.17535C11.0314 3.76924 11.3558 3.45933 11.7411 3.2679C11.8918 3.19301 12.0404 3.14193 12.2533 3.09177C12.394 3.05861 12.4276 3.05562 12.6621 3.05535C12.8027 3.0552 12.9867 3.05915 13.071 3.06414L13.2243 3.07322L13.3202 2.95096C13.3729 2.88371 13.4936 2.75168 13.5885 2.65756C13.9604 2.28857 14.288 2.1001 14.7019 2.01697C14.8388 1.98949 15.1684 1.99645 15.3262 2.03016C15.8437 2.14077 16.3339 2.45043 16.8262 2.97775L16.9732 3.13522L17.1751 3.14382C17.9201 3.17558 18.0167 3.18575 18.2278 3.2546C18.3747 3.30255 18.6193 3.42227 18.7569 3.51366C19.0606 3.7154 19.3264 4.11808 19.4024 4.49177C19.4154 4.55574 19.4326 4.61604 19.4406 4.62576C19.4486 4.63548 19.4878 4.64986 19.5277 4.6577C19.8686 4.72475 20.2792 4.89948 20.5514 5.09342C20.7598 5.2418 21.0263 5.53593 21.1702 5.77621C21.2915 5.97872 21.4311 6.34324 21.492 6.61635C21.51 6.69672 21.5315 6.76953 21.5399 6.77816C21.5519 6.7905 21.5702 6.78992 21.6254 6.7754C21.664 6.76524 21.7704 6.74395 21.8617 6.72807C22.0876 6.68879 22.572 6.68567 22.7689 6.72223C23.3406 6.82831 23.8472 7.19877 24.1611 7.74026C24.1982 7.80429 24.2562 7.91833 24.2899 7.99369L24.3512 8.13071L24.4736 8.13948C25.0441 8.18032 25.3145 8.29403 25.6506 8.6343C25.9494 8.93696 26.1026 9.21751 26.2883 9.80277L26.3666 10.0496L26.573 10.1168C26.9283 10.2324 27.2462 10.4133 27.46 10.6213C27.7084 10.8629 27.8745 11.1738 27.9636 11.5641C27.9979 11.7143 28.0113 12.0801 27.9891 12.2615C27.9404 12.6603 27.8108 13.0282 27.5289 13.5683L27.3899 13.8346L27.4473 13.9802C27.7429 14.7305 27.6947 15.3913 27.3006 15.9948C27.1993 16.1498 27.0874 16.281 26.902 16.4623L26.7505 16.6103L26.7366 16.9707C26.711 17.6359 26.6898 17.7839 26.5754 18.0938C26.3878 18.6024 26.1215 18.9254 25.5592 19.3266C25.4722 19.3887 25.3987 19.4415 25.3957 19.4441C25.3928 19.4466 25.434 19.54 25.4872 19.6515C25.6346 19.9606 25.7391 20.2687 25.787 20.5359C25.8147 20.6906 25.8144 21.0424 25.7863 21.2226C25.7165 21.6715 25.4522 22.0763 25.0316 22.3786L24.8772 22.4896L24.8764 22.7875C24.876 22.9514 24.8685 23.1347 24.8599 23.1948C24.7988 23.6259 24.6774 23.9801 24.5003 24.2438C24.2667 24.5917 23.8656 24.9049 23.4962 25.0278L23.3928 25.0622L23.3646 25.2645C23.2761 25.8986 23.0722 26.4204 22.7974 26.7163C22.539 26.9945 22.2675 27.1662 21.9625 27.2441C21.5188 27.3575 21.0603 27.3354 20.4913 27.1731C20.391 27.1445 20.2998 27.1211 20.2886 27.1211C20.2773 27.1211 20.2041 27.183 20.1259 27.2586C19.8204 27.5538 19.5994 27.6993 19.3084 27.7969C18.9644 27.9124 18.5679 27.9031 18.1646 27.77C18.0145 27.7204 17.6826 27.563 17.5414 27.4744C17.4912 27.4429 17.4411 27.4172 17.4301 27.4172C17.419 27.4172 17.3168 27.4522 17.2031 27.495C16.8373 27.6326 16.6283 27.6715 16.3293 27.6577C15.9667 27.641 15.8354 27.593 15.3003 27.2815C14.9765 27.0929 14.7705 26.9914 14.6944 26.9828L14.6355 26.9761L14.4919 27.1231C14.2753 27.3447 14.067 27.4723 13.7831 27.5573C13.3597 27.684 12.8899 27.676 12.3212 27.5322C12.239 27.5114 12.1561 27.4944 12.1369 27.4944C12.1148 27.4944 12.0446 27.5323 11.9452 27.5979C11.6709 27.7789 11.4417 27.8698 11.1992 27.8937C11.062 27.9073 11.0204 27.9072 10.8669 27.8925ZM19.0891 26.9101C19.4664 26.8121 19.7566 26.5484 19.9865 26.0946C20.0235 26.0216 20.0538 25.949 20.054 25.9333C20.0544 25.8594 20.0734 25.8672 20.2155 25.9999C20.4039 26.176 20.4846 26.2356 20.6351 26.3104C20.9035 26.4436 21.1873 26.4689 21.5018 26.3879C21.8977 26.2859 22.2625 26.0033 22.3774 25.7098C22.4904 25.4208 22.4753 24.9282 22.3414 24.5353C22.32 24.4725 22.3026 24.4189 22.3026 24.416C22.3026 24.4132 22.4017 24.411 22.523 24.4111C22.8353 24.4115 23.0052 24.3709 23.2105 24.2472C23.4907 24.0784 23.7665 23.729 23.8429 23.4459C23.8709 23.3421 23.881 23.0747 23.8623 22.9307C23.8411 22.7667 23.7895 22.5415 23.7388 22.3912C23.6931 22.2558 23.6846 22.1929 23.7112 22.1856C23.72 22.1832 23.7617 22.1748 23.8039 22.167C23.9636 22.1373 24.2444 21.9657 24.3773 21.8166C24.616 21.5489 24.7423 21.1858 24.7263 20.8134C24.7116 20.4721 24.6001 20.2269 24.3835 20.0589C24.1166 19.852 23.771 19.7194 23.28 19.6355C22.7213 19.5399 22.1493 19.5202 21.4619 19.5726C21.1207 19.5986 21.1125 19.6013 21.0271 19.7132C20.8674 19.9225 20.5653 20.2655 20.1348 20.7264L19.8493 21.0321L19.8495 21.1061C19.8497 21.1959 19.8862 21.4547 20.0528 22.5448C20.1231 23.005 20.1834 23.4003 20.1867 23.4234C20.19 23.4464 20.1875 23.4652 20.181 23.4652C20.1607 23.4652 19.5333 23.036 18.9304 22.6096L18.3502 22.1992L18.3107 22.2226C18.1814 22.2995 18.0455 22.365 17.888 22.4267C17.5738 22.5496 17.0741 22.7089 16.6486 22.8217C16.5643 22.8441 16.4711 22.8764 16.4415 22.8937C16.2888 22.9826 15.9493 23.5609 15.7926 23.999C15.657 24.3782 15.6032 24.6858 15.6025 25.0872C15.6016 25.5305 15.6801 25.8688 15.8505 26.1566C16.1289 26.6268 16.5292 26.7909 17.0064 26.6305C17.1878 26.5695 17.3029 26.5017 17.5489 26.311C17.6093 26.2641 17.6356 26.2506 17.6474 26.2604C17.6561 26.2677 17.7016 26.3281 17.7484 26.3946C17.9473 26.6774 18.2153 26.8659 18.5143 26.9333C18.651 26.9641 18.9237 26.9531 19.0891 26.9101ZM11.2945 26.8312C11.5029 26.7878 11.8221 26.6198 12.0191 26.4499C12.0589 26.4155 12.0963 26.3873 12.1021 26.3873C12.1079 26.3872 12.2162 26.4393 12.3427 26.5031C12.4692 26.5668 12.6244 26.6344 12.6877 26.6534C12.7899 26.6841 12.8246 26.6881 13.0007 26.6889C13.1861 26.6897 13.2065 26.6875 13.3202 26.6516C13.4074 26.624 13.4728 26.5923 13.5527 26.5386C13.6847 26.4498 13.8716 26.265 13.9317 26.1639C14.07 25.9313 14.1458 25.4674 14.1341 24.9263C14.1289 24.6849 14.1214 24.5939 14.0938 24.4338C13.9983 23.8798 13.8412 23.422 13.6044 23.0082L13.5013 22.828L13.3181 22.781C13.0143 22.7031 12.6044 22.5514 11.8637 22.2427C11.6565 22.1564 11.4835 22.0848 11.4793 22.0835C11.475 22.0823 11.0839 22.3715 10.6102 22.7261C9.78959 23.3404 9.63492 23.4512 9.61967 23.4358C9.61487 23.431 10.1569 21.2817 10.21 21.095C10.2139 21.0815 10.1639 21.0185 10.0671 20.9148C9.98522 20.8271 9.8635 20.6917 9.79659 20.6138C9.66162 20.4567 9.17046 19.8011 9.00145 19.5525C8.82949 19.2995 8.84311 19.3104 8.66285 19.2814C8.36831 19.2339 8.21574 19.2256 7.64706 19.2261C6.88581 19.2267 6.39556 19.2578 6.16012 19.3203C5.83042 19.4078 5.5612 19.6345 5.44515 19.9222C5.37962 20.0847 5.36626 20.1788 5.36708 20.4722C5.3677 20.7084 5.37136 20.7555 5.3957 20.8455C5.45251 21.0555 5.59537 21.2908 5.75047 21.4299C5.82454 21.4964 5.98864 21.6064 6.08823 21.6565C6.12689 21.6759 6.1609 21.694 6.16381 21.6967C6.16672 21.6993 6.13946 21.7609 6.10321 21.8335C6.00639 22.0274 5.9921 22.1126 5.99371 22.4868C5.99558 22.9444 6.03874 23.1412 6.18807 23.3751C6.39396 23.6975 6.70494 23.9371 7.14145 24.1097C7.21825 24.1401 7.29078 24.1747 7.30262 24.1866C7.32284 24.207 7.32116 24.2202 7.27571 24.4C7.19746 24.7094 7.19659 24.9015 7.27233 25.1434C7.39297 25.5286 7.66749 25.8383 8.06601 26.0388C8.23578 26.1242 8.29426 26.1352 8.5798 26.1358L8.82895 26.1362L8.96782 26.0878C9.15247 26.0234 9.36777 25.9162 9.53344 25.8062C9.60783 25.7568 9.67027 25.7182 9.67219 25.7203C9.67406 25.7225 9.70294 25.7793 9.73625 25.8466C9.90149 26.1803 10.237 26.5919 10.4384 26.708C10.5615 26.7789 10.6664 26.8216 10.7536 26.8362C10.8708 26.8558 11.1901 26.8529 11.2945 26.8312ZM14.9265 24.0895C15.3173 23.4115 15.6008 22.9008 15.5914 22.8914C15.5824 22.8823 14.747 22.8608 14.3894 22.8604L14.0723 22.8602L14.0811 22.8892C14.0964 22.94 14.6753 24.23 14.7344 24.3452C14.7574 24.3901 14.74 24.4131 14.9265 24.0895ZM15.4412 21.9459C17.2138 21.8226 18.8696 20.9082 19.9401 19.4613C20.1885 19.1256 20.3326 18.8788 20.5902 18.3482C20.8329 17.8484 21.0479 17.1039 21.1069 16.5588C21.1579 16.0888 21.1725 15.5058 21.1413 15.1878C21.0813 14.5764 20.9392 13.9765 20.7249 13.4307C20.6396 13.2133 20.4086 12.7409 20.2906 12.5424C19.6651 11.4906 18.7844 10.6737 17.6964 10.136C16.7839 9.6852 15.8102 9.48431 14.7384 9.52577C13.5182 9.57298 12.341 10.0022 11.3525 10.7604C10.9405 11.0763 10.4977 11.5098 10.2219 11.8671C9.65285 12.6043 9.29265 13.3493 9.06025 14.2696C8.95443 14.6887 8.91451 15.0545 8.90302 15.7101C8.89521 16.1565 8.90323 16.3131 8.95108 16.6418C9.16288 18.0982 9.87374 19.4262 10.9628 20.4002C11.8004 21.1493 12.8368 21.6587 13.9368 21.8619C14.3463 21.9376 15.02 21.9752 15.4412 21.9459ZM21.9662 18.792C22.5274 18.7224 22.9326 18.666 22.9691 18.6524C22.9877 18.6455 22.9641 18.613 22.837 18.4703C22.4772 18.0666 21.8503 17.3771 21.8465 17.3809C21.8398 17.3876 21.357 18.8317 21.357 18.8448C21.357 18.8649 21.4272 18.8588 21.9662 18.792ZM8.55404 18.2944C8.34005 17.6099 8.2079 17.2089 8.19631 17.2089C8.17192 17.2089 7.93093 17.4259 7.46835 17.8644C7.16866 18.1484 6.99401 18.3189 6.99839 18.3231C7.00026 18.3249 7.33242 18.3935 7.7365 18.4755C8.44844 18.62 8.64577 18.6545 8.65402 18.6358C8.65618 18.6309 8.6112 18.4772 8.55404 18.2944ZM24.7877 18.3478C25.0518 18.2791 25.2434 18.1153 25.486 17.751C25.6487 17.5065 25.6916 17.3979 25.7153 17.1691C25.7424 16.9083 25.6975 16.59 25.5855 16.2511C25.5507 16.1455 25.5246 16.0567 25.5276 16.0537C25.5306 16.0507 25.5809 16.0377 25.6395 16.0247C25.7851 15.9925 25.944 15.9322 26.0519 15.8681C26.1702 15.7978 26.3559 15.61 26.4356 15.4797C26.5995 15.2121 26.7009 14.8226 26.6709 14.576C26.6385 14.3105 26.5422 14.0633 26.3436 13.7358C26.2908 13.6488 26.2497 13.5756 26.2524 13.5731C26.255 13.5707 26.329 13.5342 26.4168 13.4922C26.8248 13.2969 27.0518 13.0173 27.1409 12.6004C27.1596 12.513 27.1643 12.4338 27.1643 12.2077C27.1643 11.9474 27.1619 11.9167 27.1345 11.828C27.0391 11.5185 26.7716 11.2159 26.4488 11.0525C26.2902 10.9722 26.1617 10.9387 25.9824 10.931C25.8197 10.924 25.4336 10.9431 25.3896 10.9603C25.3619 10.9711 25.3624 10.966 25.4026 10.8239C25.4388 10.6959 25.4357 10.288 25.3971 10.1076C25.3392 9.83697 25.2323 9.58521 25.1113 9.43455C25.0279 9.33073 24.8159 9.17242 24.6599 9.09758C24.4441 8.99397 24.2393 8.95732 23.876 8.95732H23.6888L23.6484 8.79736C23.5505 8.4101 23.3143 8.11634 22.9542 7.93404C22.5791 7.74417 22.1836 7.74413 21.7962 7.9339C21.4983 8.07984 21.2495 8.32329 21.0398 8.67403C20.7419 9.1723 20.5531 9.81507 20.4488 10.6862L20.4198 10.9282L20.5608 11.1367C20.7497 11.4162 20.9593 11.7434 21.2965 12.285C21.4507 12.5328 21.5789 12.7376 21.5813 12.7402C21.5836 12.7427 21.8087 12.7497 22.0814 12.7556C23.6298 12.7892 23.9197 12.7968 23.928 12.8046C23.933 12.8092 23.8497 12.8796 23.743 12.961C23.3213 13.2823 22.8176 13.6724 22.5166 13.9108L22.2003 14.1613V14.2281C22.2003 14.5749 22.1242 15.8244 22.079 16.2206L22.0477 16.4945L22.0927 16.5607C22.3331 16.9146 23.2754 17.8342 23.6761 18.106C23.8746 18.2406 24.1447 18.3368 24.4236 18.3723C24.5022 18.3823 24.7086 18.3684 24.7877 18.3478ZM5.44937 17.9681C5.60067 17.9547 5.79247 17.9139 5.96046 17.8595C6.38388 17.7223 7.02579 17.3493 7.4822 16.9753C7.71054 16.7881 7.96255 16.5017 7.98771 16.4007C7.99213 16.3829 7.98854 16.2896 7.97983 16.1933C7.97109 16.097 7.96091 15.8326 7.95724 15.6058C7.94793 15.0301 7.9733 14.7204 8.05688 14.39C8.07745 14.3087 8.09426 14.2342 8.09426 14.2243C8.09426 14.2022 8.03416 14.1449 7.0593 13.2378C6.62711 12.8356 6.27127 12.5007 6.26854 12.4934C6.26144 12.4746 7.66739 12.5057 8.49153 12.5427L8.66519 12.5505L8.75896 12.3866C9.09232 11.8039 9.41591 11.3539 9.6263 11.1804C9.73351 11.0919 9.72783 11.1308 9.69161 10.7338C9.63364 10.0985 9.56271 9.71795 9.42044 9.27915C9.18415 8.55038 8.81082 8.09216 8.31489 7.92222C8.16684 7.87149 8.04894 7.8589 7.81326 7.86869C7.63884 7.87594 7.58643 7.88288 7.50907 7.90906C7.10194 8.04675 6.79991 8.38862 6.6499 8.88154C6.62752 8.95508 6.60176 9.02321 6.59265 9.03293C6.57869 9.04785 6.55537 9.04795 6.44396 9.03376C6.02897 8.9806 5.56808 9.05437 5.3009 9.21672C5.10638 9.33492 4.9742 9.48178 4.86805 9.69759C4.75775 9.92185 4.71539 10.1182 4.69787 10.4863L4.68912 10.6701L4.38246 10.6749C4.16621 10.6783 4.04767 10.6858 3.98035 10.7003C3.39792 10.8256 3.06358 11.2006 2.95285 11.8529C2.92627 12.0094 2.92571 12.2737 2.95175 12.3744C3.03856 12.7102 3.27278 13.0344 3.64654 13.3364C3.7298 13.4036 3.74343 13.4238 3.73294 13.4642C3.72852 13.4812 3.67547 13.553 3.61505 13.6239C3.47227 13.7912 3.38393 13.9257 3.29644 14.109C3.21157 14.2868 3.18831 14.3874 3.18802 14.578C3.18727 15.065 3.4184 15.5625 3.78053 15.8532C3.90826 15.9557 4.12615 16.0654 4.27643 16.1028L4.38761 16.1305L4.3133 16.2418C4.21386 16.3908 4.16559 16.4901 4.12651 16.6259C4.00928 17.0332 4.145 17.4704 4.4695 17.7309C4.71714 17.9296 5.02954 18.0052 5.44937 17.9681ZM10.3942 10.4259C10.7099 10.1861 11.4599 9.54269 11.4475 9.52237C11.4262 9.48779 10.0068 8.80265 9.99044 8.81912C9.97889 8.83075 10.2683 10.4473 10.2876 10.4796C10.2977 10.4963 10.309 10.4906 10.3942 10.4259ZM19.797 10.4023C19.8881 10.053 20.0588 9.28787 20.1164 8.97054L20.1395 8.84328L20.0231 8.88601C19.7899 8.97166 18.9836 9.31387 18.7123 9.44236L18.5908 9.49989L18.6355 9.53884C18.6859 9.58272 19.5712 10.2972 19.6896 10.3896C19.7318 10.4225 19.7704 10.4496 19.7754 10.45C19.7804 10.4504 19.7901 10.4289 19.797 10.4023ZM18.0425 8.98402C18.3092 8.85547 18.558 8.69475 18.9613 8.39034C19.6846 7.84448 20.1114 7.38723 20.2826 6.97488C20.3245 6.87395 20.3279 6.85598 20.3265 6.74317C20.3246 6.59332 20.2855 6.45004 20.1934 6.2551C20.0598 5.97254 19.8854 5.76309 19.6588 5.61303C19.4471 5.47281 19.248 5.4127 18.923 5.39097C18.8105 5.38345 18.7063 5.37225 18.6914 5.3661C18.6689 5.35682 18.6627 5.33989 18.6554 5.267C18.6366 5.08118 18.5502 4.78131 18.467 4.61354C18.3678 4.4136 18.1992 4.20824 18.0552 4.1119C17.9118 4.01602 17.6589 3.93959 17.4462 3.92783C17.2082 3.91468 17.0169 3.95714 16.7039 4.09265C16.6032 4.13622 16.5025 4.17974 16.4802 4.18935L16.4395 4.20683L16.3938 4.06433C16.3044 3.78515 16.2044 3.61362 16.017 3.41748C15.8303 3.22207 15.6658 3.11465 15.4348 3.03741C15.0712 2.91584 14.6485 2.97107 14.3085 3.18456C14.0582 3.34172 13.9001 3.55337 13.7608 3.91754C13.6768 4.13721 13.6384 4.22006 13.6205 4.22006C13.612 4.22006 13.5366 4.18885 13.453 4.15072C13.1448 4.01011 12.8728 3.94536 12.5919 3.94571C12.4415 3.94589 12.4046 3.9504 12.3044 3.9808C12.1591 4.02487 11.9735 4.11293 11.8717 4.18616C11.6036 4.37885 11.4314 4.74401 11.4052 5.17505C11.3992 5.27326 11.3906 5.35732 11.3861 5.36184C11.3817 5.36637 11.3564 5.36267 11.3301 5.35378C11.2998 5.34349 11.1737 5.33502 10.9871 5.33073C10.7408 5.32508 10.6744 5.32757 10.5847 5.34585C10.3629 5.39104 10.1899 5.49143 9.99693 5.68676C9.87281 5.81241 9.81247 5.91874 9.76637 6.09306C9.73032 6.22936 9.72753 6.53044 9.76088 6.68522C9.90124 7.3365 10.5853 8.03488 11.5824 8.54477C11.7866 8.64917 12.0585 8.76735 12.2515 8.83554C12.3776 8.8801 12.3956 8.88337 12.4495 8.87147C12.4821 8.86426 12.7445 8.78816 13.0327 8.70233C13.3208 8.61651 13.7023 8.50604 13.8806 8.45684C14.0588 8.40765 14.2088 8.36254 14.2139 8.35661C14.219 8.35069 14.2681 8.2126 14.3229 8.04976C14.4082 7.79637 14.6203 7.187 14.9334 6.29561C14.9763 6.17336 15.0156 6.07778 15.0207 6.08321C15.0358 6.09937 15.1605 6.46327 15.4984 7.47691L15.8181 8.43595L16.1439 8.5206C16.746 8.67706 17.256 8.83536 17.6708 8.99459C17.7621 9.02966 17.8475 9.05879 17.8605 9.05932C17.8735 9.05995 17.9554 9.02598 18.0425 8.98402Z' fill='%23C39335'/%3E%3Cpath d='M13.0405 20.9353C12.9432 20.9117 12.8204 20.8483 12.6739 20.7462L12.5564 20.6643L12.423 20.6963C12.0756 20.7797 11.8386 20.7721 11.635 20.6713C11.4212 20.5654 11.3362 20.4139 11.2895 20.0555C11.2797 19.9807 11.2671 19.9154 11.2614 19.9104C11.2557 19.9053 11.1975 19.8639 11.1321 19.8183C10.9117 19.6646 10.8103 19.5632 10.743 19.4288C10.6841 19.3115 10.6692 19.2198 10.6659 18.9544L10.6629 18.7156L10.5988 18.6231C10.4143 18.3565 10.377 18.1702 10.4692 17.9757C10.5227 17.8627 10.7137 17.6674 10.8756 17.5601C11.1148 17.4016 11.4927 17.2319 11.7988 17.1455C12.1119 17.0572 12.3665 17.0251 12.7526 17.0251C13.0204 17.0252 13.2983 17.0427 13.3319 17.0616C13.352 17.073 13.339 17.0788 12.9942 17.2143C12.5444 17.391 12.1617 17.5995 12.0139 17.7482C11.9374 17.8253 11.9234 17.8629 11.9447 17.9343C11.9565 17.9739 11.9692 17.9885 12.005 18.0036C12.0904 18.0395 12.1868 18.0077 12.8027 17.7402C13.0809 17.6193 13.4107 17.4887 13.4769 17.4732L13.5128 17.4648L13.4748 17.5126C13.433 17.5653 13.2429 17.7534 12.8753 18.1059C12.4795 18.4854 12.3744 18.6467 12.4352 18.7811C12.4548 18.8244 12.5098 18.8461 12.5482 18.8257C12.5987 18.7989 12.7089 18.7095 12.8891 18.5492C13.2635 18.2163 13.735 17.8311 13.735 17.8582C13.735 17.8797 13.5832 18.1673 13.4466 18.4046C13.3183 18.6274 13.2626 18.7417 13.223 18.8637C13.1634 19.0473 13.1653 19.178 13.2279 19.2067C13.3302 19.2536 13.4332 19.1359 13.8585 18.4865C14.0117 18.2525 14.1102 18.1131 14.1103 18.1299C14.1105 18.1678 14.0696 18.3795 14.0026 18.6868C13.9315 19.0134 13.9183 19.1152 13.9359 19.2011C13.9588 19.3129 14.0471 19.3538 14.1132 19.2833C14.1771 19.2151 14.2137 19.1411 14.4857 18.5305C14.569 18.3435 14.6451 18.1823 14.6549 18.1725C14.6701 18.157 14.6742 18.1589 14.6845 18.1862C14.708 18.2485 14.7385 18.5476 14.7466 18.7951C14.7678 19.4426 14.7096 20.0213 14.5994 20.2583C14.5575 20.3485 14.4669 20.4524 14.3924 20.4959C14.3123 20.5426 14.2105 20.566 14.0612 20.5719C13.9017 20.5782 13.8883 20.5835 13.6456 20.7364C13.3965 20.8933 13.2529 20.9569 13.1531 20.9545C13.1325 20.9541 13.0818 20.9453 13.0405 20.9353ZM16.632 20.9183C16.5088 20.8918 16.3122 20.7892 16.194 20.6898C16.1012 20.6118 16.0706 20.603 15.8461 20.5901C15.6576 20.5793 15.639 20.5759 15.5656 20.5396C15.4522 20.4833 15.371 20.398 15.3117 20.2727C15.2484 20.1391 15.2273 20.0531 15.2119 19.8659C15.1956 19.667 15.1957 18.9835 15.2121 18.7096C15.2329 18.3627 15.2729 18.0707 15.2996 18.0707C15.3127 18.0707 15.3688 18.2076 15.4934 18.5431C15.6944 19.0843 15.7972 19.3081 15.8955 19.4181C15.958 19.4881 16.0127 19.5077 16.0742 19.4821C16.1825 19.4369 16.1607 19.2735 15.9386 18.4682C15.8967 18.3161 15.8624 18.1809 15.8624 18.1678C15.8624 18.1484 15.8744 18.1541 15.9276 18.1987C16.0347 18.2885 16.3163 18.5532 16.5638 18.7967C16.8122 19.0411 16.8699 19.0823 16.955 19.0761L17.0074 19.0723V18.9829C17.0074 18.9079 17.0012 18.8816 16.9692 18.8191C16.9272 18.7375 16.4861 18.1041 16.3497 17.9298L16.2641 17.8204L16.3416 17.856C16.3843 17.8757 16.591 17.975 16.8009 18.0767C17.5538 18.4417 17.5517 18.4408 17.6293 18.4464C17.6964 18.4513 17.702 18.4495 17.7156 18.4196C17.7236 18.4019 17.7266 18.3737 17.7224 18.3568C17.7109 18.3106 17.5695 18.1833 17.3344 18.0077C17.2184 17.9211 17.0411 17.7887 16.9403 17.7135C16.764 17.582 16.6844 17.5161 16.6922 17.5082C16.6943 17.5061 16.8665 17.5385 17.0749 17.58C17.516 17.6678 17.8106 17.718 17.8852 17.718C17.9667 17.718 17.9997 17.7004 18.0086 17.6523C18.0242 17.5688 17.9754 17.4974 17.8646 17.4412C17.7774 17.3971 17.2838 17.2096 16.901 17.0753C16.7393 17.0185 16.5993 16.9679 16.59 16.9627C16.5439 16.9372 16.9845 16.9289 17.2702 16.9499C17.8854 16.995 18.3034 17.1036 18.7968 17.3464C19.0435 17.4677 19.1605 17.5468 19.2986 17.6855C19.4463 17.8339 19.4978 17.9321 19.4972 18.0642C19.4968 18.1812 19.466 18.2401 19.3441 18.3574L19.2491 18.4488L19.2704 18.6597C19.3014 18.968 19.2965 19.0839 19.2444 19.2736C19.2264 19.3389 19.211 19.3618 19.1291 19.445C19.0205 19.5553 18.9105 19.6395 18.7821 19.7104L18.6923 19.7601L18.685 19.8445C18.6648 20.0752 18.6509 20.1854 18.633 20.2553C18.5466 20.5934 18.2956 20.7657 17.8896 20.7659C17.7188 20.7659 17.6031 20.7478 17.4631 20.6989L17.3402 20.6559L17.2558 20.7236C17.0715 20.8715 16.8031 20.9552 16.632 20.9183ZM14.8594 17.3159C14.7416 17.2664 14.676 17.2252 14.6089 17.1584C14.4794 17.0296 14.4269 16.91 14.4076 16.7003C14.3904 16.5139 14.4146 15.6882 14.4413 15.5511C14.4878 15.3121 14.4981 15.239 14.5163 15.0153C14.5384 14.7453 14.5481 14.7011 14.6248 14.5244L14.6794 14.3984L14.6757 14.159C14.6732 14.0013 14.6787 13.8574 14.6917 13.737C14.7047 13.6173 14.7105 13.4653 14.7087 13.2961C14.7055 13.0143 14.7173 12.9329 14.7804 12.7985C14.8232 12.7076 14.8802 12.6592 14.966 12.6413C15.0546 12.6228 15.1182 12.6392 15.1699 12.6943C15.2547 12.7844 15.2732 12.8675 15.2871 13.2205C15.2968 13.4669 15.3027 13.5204 15.3321 13.6299C15.3805 13.81 15.3875 14.0763 15.3506 14.3324C15.3179 14.5595 15.3178 14.6085 15.3498 14.7019C15.4001 14.8489 15.4235 14.9693 15.45 15.2173C15.4676 15.3827 15.4899 15.519 15.5149 15.6141C15.564 15.801 15.5747 16.0143 15.5445 16.2057C15.5334 16.2767 15.5185 16.4207 15.5115 16.5257C15.4893 16.8589 15.477 16.9452 15.4417 17.0154C15.4025 17.0933 15.3046 17.1999 15.2258 17.2506C15.17 17.2866 14.9932 17.3536 14.9591 17.3517C14.95 17.3513 14.9051 17.3351 14.8594 17.3159ZM10.2374 17.2092C10.0453 17.1486 9.94807 16.9797 9.92492 16.6668C9.92033 16.6048 9.91119 16.544 9.90462 16.5316C9.89804 16.5192 9.85849 16.4857 9.81673 16.4572C9.72622 16.3953 9.60184 16.27 9.56132 16.1999C9.49601 16.0869 9.50006 15.9504 9.57482 15.7449C9.65563 15.5227 9.65492 15.5584 9.58189 15.3934C9.49865 15.2053 9.47586 15.1086 9.48395 14.9779C9.49532 14.7943 9.55751 14.6797 9.77593 14.4396L9.91123 14.2909L9.90743 14.1428C9.90053 13.8738 9.94714 13.7322 10.0854 13.602C10.1824 13.5107 10.3787 13.4053 10.5057 13.3764C10.6166 13.3512 10.6834 13.3016 10.7534 13.1926C10.8848 12.9881 11.04 12.9109 11.2994 12.9209C11.4616 12.9272 11.5312 12.9479 11.7372 13.0512C12.1751 13.2709 12.8502 13.8238 13.4336 14.4405C13.6264 14.6443 13.6824 14.7095 13.6464 14.688C13.6367 14.6822 13.5385 14.6197 13.4284 14.5491C13.1739 14.386 12.8186 14.1703 12.5167 13.9956C12.3295 13.8872 12.2684 13.8578 12.2209 13.8532C12.172 13.8485 12.1564 13.8522 12.1347 13.8741C12.0643 13.945 12.1149 14.0157 12.3772 14.2132C12.4736 14.2857 12.6169 14.3996 12.6956 14.4662C12.8378 14.5865 13.3394 15.0717 13.3306 15.0805C13.3281 15.0831 13.2731 15.0561 13.2083 15.0206C12.8721 14.8364 12.1383 14.5143 12.0164 14.4975C11.919 14.4841 11.8329 14.5275 11.8329 14.5899C11.8329 14.6379 11.8995 14.6936 12.0795 14.7962C12.3484 14.9495 12.6633 15.1514 13.0582 15.4237C13.3243 15.6072 13.3242 15.6106 13.0529 15.5525C12.8292 15.5046 12.2955 15.4084 12.0312 15.3683C11.7972 15.3329 11.6757 15.329 11.6135 15.3552C11.534 15.3886 11.5613 15.4449 11.6985 15.5303C11.83 15.6122 11.8929 15.6366 12.5149 15.848L13.078 16.0393L12.9341 16.047C12.855 16.0512 12.6945 16.0578 12.5775 16.0616C12.2657 16.0719 11.9259 16.0922 11.8329 16.1063C11.734 16.1212 11.6787 16.1691 11.6851 16.2343C11.6935 16.3183 11.7528 16.3357 12.2959 16.4136C12.6192 16.46 13.0081 16.5246 13.3158 16.5831C13.3723 16.5938 13.3416 16.5971 12.9466 16.6225C12.2375 16.6681 11.9581 16.7329 11.0524 17.062C10.711 17.186 10.5487 17.2269 10.4023 17.2258C10.3391 17.2254 10.2649 17.2179 10.2374 17.2092ZM19.4288 17.1005C19.3897 17.0951 19.2978 17.0626 19.2161 17.0253C18.73 16.8035 18.331 16.697 17.777 16.6415C17.371 16.6007 17.096 16.5829 16.7602 16.5755C16.5692 16.5713 16.413 16.5632 16.413 16.5575C16.413 16.5415 16.6105 16.4502 16.7383 16.4071C16.9677 16.3298 17.117 16.3156 17.7361 16.3127C18.3507 16.3099 18.3326 16.3123 18.3738 16.2253C18.3926 16.1857 18.3925 16.1802 18.3726 16.1497C18.3608 16.1317 18.338 16.1119 18.3219 16.1057C18.2317 16.0712 17.342 16.037 16.7574 16.0456C16.3341 16.0519 16.3213 16.0514 16.3632 16.03C16.5241 15.9479 17.049 15.8016 17.9671 15.583C18.2462 15.5165 18.2774 15.5007 18.2774 15.4259C18.2774 15.3971 18.2674 15.3653 18.2522 15.3459C18.2104 15.2923 18.1525 15.2801 17.9458 15.2814C17.7444 15.2827 17.6775 15.2888 17.1208 15.3569C16.9218 15.3813 16.7416 15.3992 16.7204 15.3968C16.6856 15.3928 16.6927 15.3871 16.7941 15.3383C16.9425 15.2668 17.215 15.1557 17.658 14.986C18.0587 14.8324 18.2705 14.7424 18.3049 14.7111C18.3389 14.6802 18.3339 14.6237 18.2949 14.598C18.2531 14.5704 18.0974 14.5712 17.9431 14.5996C17.653 14.6533 17.1889 14.7951 16.6793 14.9857C16.4014 15.0896 16.3592 15.101 16.3894 15.0638C16.4674 14.9679 17.3289 14.3978 17.6138 14.2537C17.7464 14.1865 17.8019 14.1368 17.8019 14.0852C17.8018 14.0387 17.7642 13.9712 17.7272 13.9513C17.6469 13.908 17.2379 14.0719 16.5772 14.4121C16.3957 14.5056 16.2426 14.5804 16.237 14.5784C16.2188 14.5718 16.4141 14.3397 16.5939 14.1542C17.0516 13.6821 17.5762 13.3117 18.1585 13.0495C18.5841 12.8578 18.858 12.7733 19.0264 12.7817C19.2648 12.7935 19.4197 12.9524 19.478 13.2452C19.4907 13.3085 19.503 13.3619 19.5055 13.3638C19.508 13.3657 19.572 13.4002 19.6477 13.4404C19.9027 13.5759 20.0957 13.7343 20.1545 13.8566C20.1935 13.9376 20.2032 14.1019 20.1744 14.1908C20.1492 14.2683 20.15 14.2702 20.2746 14.4069C20.4394 14.5877 20.5068 14.7205 20.5152 14.8812C20.5224 15.0189 20.5042 15.0961 20.427 15.2559L20.3642 15.3861L20.3925 15.5078C20.4501 15.7555 20.3981 15.9715 20.2371 16.1532L20.167 16.2323L20.1669 16.3861C20.1668 16.6703 20.1346 16.7683 19.996 16.9065C19.9019 17.0003 19.7496 17.0806 19.6289 17.0999C19.5397 17.1142 19.5294 17.1144 19.4288 17.1005ZM13.7017 14.1817C13.0909 13.5364 12.7921 13.2456 12.3758 12.8913C12.2716 12.8026 12.1639 12.7029 12.1364 12.6698C11.9783 12.4792 11.9295 12.3103 11.9577 12.0519C12.0018 11.6488 12.1183 11.5058 12.5515 11.3233C12.805 11.2165 12.7832 11.2388 12.8396 11.0284C12.8573 10.9626 12.9007 10.8492 12.9362 10.7765C12.9923 10.6615 13.0156 10.6292 13.1145 10.5298C13.2066 10.4371 13.2484 10.4053 13.3346 10.3628C13.5026 10.2797 13.6065 10.2579 13.8351 10.2575C13.9418 10.2573 14.0389 10.252 14.0508 10.2456C14.0628 10.2392 14.131 10.1787 14.2025 10.111C14.3938 9.92994 14.6174 9.78806 14.7932 9.73618C14.8955 9.70597 15.0343 9.70882 15.1367 9.74323C15.3094 9.80126 15.437 9.89876 15.6853 10.1623L15.7773 10.2599L15.8977 10.2456C15.9639 10.2377 16.083 10.2344 16.1623 10.2383C16.6936 10.2639 16.9214 10.4544 17.0758 11.0019C17.1039 11.1016 17.1494 11.2412 17.177 11.3121C17.2263 11.4391 17.2277 11.4411 17.2736 11.4487C17.2993 11.453 17.3467 11.4565 17.379 11.4566C17.8128 11.4577 18.1326 11.9076 17.9908 12.3175C17.9333 12.4838 17.7399 12.7024 17.5165 12.8536C17.453 12.8965 17.3604 12.9666 17.3106 13.0092C17.0336 13.2463 16.4787 13.7822 16.2691 14.015C15.9885 14.3265 15.9654 14.3496 15.9493 14.3334C15.939 14.3231 15.9363 14.2603 15.9401 14.1193C15.9464 13.8801 15.9555 13.8497 16.0949 13.5999C16.2113 13.3915 16.3146 13.2287 16.5399 12.8982C16.7309 12.6181 16.7884 12.5176 16.7884 12.4638C16.7884 12.3218 16.497 12.4489 16.2754 12.6875C16.2251 12.7416 16.0899 12.8992 15.975 13.0378C15.7421 13.3186 15.7214 13.3401 15.6939 13.3295C15.669 13.3199 15.6691 13.265 15.6943 13.1315C15.7405 12.8863 15.7902 12.7734 16.0591 12.3026C16.2507 11.9671 16.335 11.7991 16.346 11.7309C16.3526 11.6901 16.3497 11.6827 16.3228 11.6703C16.2789 11.6502 16.2072 11.6725 16.1107 11.7364C16.0644 11.767 15.9293 11.8931 15.787 12.0386C15.6527 12.1759 15.5367 12.2882 15.5294 12.2882C15.5055 12.2882 15.4869 12.2259 15.4869 12.1459C15.4869 12.1029 15.5038 11.9325 15.5245 11.7672C15.5661 11.4338 15.5718 11.2655 15.5439 11.1981C15.5283 11.1607 15.5198 11.1544 15.4844 11.1545C15.3637 11.1547 15.2423 11.3497 15.0923 11.784C15.0011 12.0481 14.979 12.0993 14.9564 12.0993C14.9342 12.0993 14.8944 11.9977 14.7595 11.5969C14.6181 11.1768 14.575 11.0944 14.514 11.1276C14.4656 11.1539 14.4354 11.2021 14.4217 11.2749C14.4054 11.3614 14.4154 11.8516 14.4384 12.093C14.4605 12.3256 14.4592 12.3938 14.4322 12.3992C14.4168 12.4022 14.3134 12.3079 14.1006 12.0967C13.9305 11.9279 13.7631 11.7719 13.7286 11.7499C13.6674 11.7109 13.6418 11.7044 13.4941 11.6902L13.4221 11.6833V11.7644C13.4221 11.8723 13.4551 11.9345 13.7012 12.2914C13.9516 12.6545 14.0287 12.7758 14.0873 12.8991C14.1407 13.0117 14.1827 13.1616 14.1941 13.2803C14.2008 13.3504 14.1991 13.3591 14.1792 13.3591C14.1667 13.3591 14.0758 13.2749 13.974 13.169C13.6715 12.8544 13.2673 12.5022 13.1295 12.4331C13.008 12.3721 12.9255 12.4047 12.9372 12.5091C12.9513 12.6345 13.0778 12.8437 13.2518 13.0288C13.5529 13.3495 13.9567 13.9759 14.0523 14.2707C14.09 14.3868 14.1262 14.5584 14.1206 14.5944C14.1175 14.6142 14.0218 14.5198 13.7017 14.1817Z' fill='%23C39335'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_26_1347'%3E%3Crect width='26' height='25.9037' fill='white' transform='translate(2 2)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.ico__emblem--ai {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.312 17.7273C17.312 19.2821 16.0512 20.5425 14.4963 20.5425C12.9411 20.5425 11.6807 19.2817 11.6807 17.7273C11.6807 16.172 12.941 14.9116 14.4963 14.9116C16.0512 14.9116 17.312 16.172 17.312 17.7273Z' fill='%2300559D'/%3E%3Cpath d='M12.2677 9.93506C25.4596 9.93506 27.9265 19.1531 28 19.439C27.8366 19.149 23.0295 10.8581 10.1643 12.9206C10.1643 12.9206 4.34841 13.8518 4.34841 17.0579C4.34841 19.9781 8.94723 20.5417 8.94723 20.5417C8.94723 20.5417 2 20.4192 2 16.1308C1.99998 9.93506 12.2677 9.93506 12.2677 9.93506Z' fill='%23DF2D32'/%3E%3Cpath d='M24.2838 10.5599C24.2838 10.5599 24.7086 12.7327 24.4595 15.0729C23.079 28.1832 16.7608 27.252 16.7608 27.252C16.7608 27.252 21.3922 25.9206 21.8088 15.6284C22.062 9.28968 19.1418 6.26738 19.1418 6.26738C19.1418 6.26738 18.3454 5.26674 16.7567 5.26674C13.7384 5.26674 13.5955 9.89414 13.5955 9.89414C13.5955 9.89414 13.0033 3 18.2147 3C22.9932 3.00004 24.2838 10.5599 24.2838 10.5599Z' fill='%2300559D'/%3E%3C/svg%3E%0A");
}

.ico__f-weather {
  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%3Cpath d='M10.651 2.5249V3.9649M4.44098 10.1749H3.00098M6.10705 5.63114L5.08882 4.6129M15.1958 5.63114L16.214 4.6129M18.301 10.1749H16.861M7.05104 10.175C7.05104 8.18674 8.66282 6.57497 10.651 6.57497C12.0065 6.57497 13.1869 7.32402 13.801 8.43076M6.60098 20.9749C4.61275 20.9749 3.00098 19.3631 3.00098 17.3749C3.00098 15.3867 4.61275 13.7749 6.60098 13.7749C7.01874 13.7749 7.41989 13.8461 7.79296 13.9769C8.43752 12.2805 10.0785 11.0749 12.001 11.0749C13.9235 11.0749 15.5644 12.2805 16.209 13.9769C16.5821 13.8461 16.9832 13.7749 17.401 13.7749C19.3892 13.7749 21.001 15.3867 21.001 17.3749C21.001 19.3631 19.3892 20.9749 17.401 20.9749C13.2247 20.9749 10.0923 20.9749 6.60098 20.9749Z' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.ico__f-instagram {
  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%3Cpath d='M7.85848 2.06994C6.79447 2.12014 6.06786 2.28994 5.43265 2.53954C4.77524 2.79574 4.21804 3.13954 3.66363 3.69594C3.10923 4.25235 2.76782 4.80995 2.51342 5.46835C2.26722 6.10495 2.10042 6.83215 2.05342 7.89676C2.00642 8.96136 1.99602 9.30356 2.00122 12.0192C2.00642 14.7348 2.01842 15.0752 2.07002 16.142C2.12082 17.2058 2.29002 17.9322 2.53962 18.5676C2.79622 19.225 3.13963 19.782 3.69623 20.3366C4.25284 20.8912 4.81004 21.2318 5.47005 21.4866C6.10606 21.7324 6.83347 21.9 7.89788 21.9466C8.96229 21.9932 9.30489 22.004 12.0197 21.9988C14.7345 21.9936 15.0763 21.9816 16.143 21.931C17.2096 21.8804 17.9322 21.71 18.5678 21.4616C19.2252 21.2044 19.7826 20.8616 20.3368 20.3048C20.891 19.748 21.2322 19.19 21.4864 18.5312C21.7328 17.8952 21.9002 17.1678 21.9464 16.1042C21.993 15.0368 22.004 14.696 21.9988 11.9808C21.9936 9.26556 21.9814 8.92516 21.9308 7.85876C21.8802 6.79235 21.7108 6.06815 21.4614 5.43235C21.2044 4.77495 20.8614 4.21835 20.305 3.66334C19.7486 3.10834 19.1902 2.76734 18.5316 2.51374C17.8952 2.26754 17.1682 2.09974 16.1038 2.05374C15.0393 2.00774 14.6967 1.99594 11.9809 2.00114C9.26509 2.00634 8.92509 2.01794 7.85848 2.06994ZM7.97528 20.1476C7.00027 20.1052 6.47086 19.9432 6.11806 19.8076C5.65085 19.6276 5.31805 19.41 4.96645 19.0618C4.61484 18.7136 4.39884 18.3796 4.21644 17.9134C4.07944 17.5606 3.91444 17.0318 3.86884 16.0568C3.81923 15.003 3.80883 14.6866 3.80303 12.0168C3.79723 9.34696 3.80743 9.03096 3.85363 7.97676C3.89524 7.00256 4.05824 6.47255 4.19364 6.11995C4.37364 5.65215 4.59044 5.31995 4.93945 4.96855C5.28845 4.61715 5.62145 4.40075 6.08806 4.21835C6.44046 4.08074 6.96927 3.91714 7.94388 3.87074C8.99849 3.82074 9.31449 3.81074 11.9839 3.80494C14.6533 3.79914 14.9701 3.80914 16.0252 3.85554C16.9994 3.89794 17.5296 4.05934 17.8818 4.19555C18.3492 4.37555 18.6818 4.59175 19.0332 4.94135C19.3846 5.29095 19.6012 5.62275 19.7836 6.09035C19.9214 6.44175 20.085 6.97036 20.131 7.94556C20.1812 9.00016 20.1926 9.31636 20.1974 11.9856C20.2022 14.6548 20.1928 14.9718 20.1466 16.0256C20.104 17.0006 19.9424 17.5302 19.8066 17.8834C19.6266 18.3504 19.4096 18.6834 19.0604 19.0346C18.7112 19.3858 18.3786 19.6022 17.9118 19.7846C17.5598 19.922 17.0304 20.086 16.0566 20.1324C15.0019 20.182 14.6859 20.1924 12.0155 20.1982C9.34509 20.204 9.03009 20.1932 7.97548 20.1476M16.1276 6.65535C16.128 6.89271 16.1987 7.12462 16.3309 7.32174C16.4631 7.51887 16.6508 7.67237 16.8703 7.76281C17.0897 7.85326 17.3311 7.8766 17.5638 7.82988C17.7965 7.78315 18.0101 7.66847 18.1777 7.50033C18.3452 7.33218 18.4591 7.11813 18.505 6.88525C18.5508 6.65237 18.5266 6.41112 18.4354 6.19201C18.3441 5.97289 18.1899 5.78576 17.9923 5.65428C17.7947 5.5228 17.5625 5.45288 17.3252 5.45335C17.007 5.45399 16.7021 5.58097 16.4775 5.80638C16.2529 6.03179 16.127 6.33716 16.1276 6.65535ZM6.86547 12.01C6.87107 14.846 9.17429 17.1398 12.0097 17.1344C14.8451 17.129 17.1406 14.826 17.1352 11.99C17.1298 9.15396 14.8259 6.85955 11.9901 6.86515C9.15429 6.87075 6.86007 9.17436 6.86547 12.01ZM8.66668 12.0064C8.66538 11.3471 8.85961 10.7022 9.2248 10.1533C9.59 9.60442 10.1098 9.17614 10.7184 8.92264C11.327 8.66914 11.9971 8.6018 12.644 8.72914C13.2908 8.85648 13.8854 9.17278 14.3525 9.63804C14.8196 10.1033 15.1383 10.6966 15.2682 11.343C15.3981 11.9894 15.3334 12.6597 15.0823 13.2693C14.8312 13.8789 14.405 14.4004 13.8576 14.7677C13.3101 15.1351 12.666 15.3319 12.0067 15.3332C11.5689 15.3341 11.1353 15.2488 10.7305 15.0821C10.3257 14.9154 9.95773 14.6706 9.64757 14.3616C9.33741 14.0527 9.09115 13.6857 8.92284 13.2816C8.75454 12.8775 8.6675 12.4441 8.66668 12.0064Z' fill='black'/%3E%3C/svg%3E%0A");
}

.ico__f-youtube {
  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%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.8136 5.44758C20.6739 5.69435 21.3523 6.42016 21.5818 7.34194C22 9.01371 22 12.5 22 12.5C22 12.5 22 15.9875 21.5818 17.6581C21.3523 18.5798 20.6739 19.3056 19.8136 19.5524C18.2545 20 12 20 12 20C12 20 5.74659 20 4.18636 19.5524C3.32614 19.3056 2.64773 18.5798 2.41818 17.6581C2 15.9863 2 12.5 2 12.5C2 12.5 2 9.01371 2.41818 7.34194C2.64773 6.42016 3.32614 5.69435 4.18636 5.44758C5.74545 5 12 5 12 5C12 5 18.2545 5 19.8136 5.44758ZM15 12.5L10 15V10L15 12.5Z' fill='black'/%3E%3C/svg%3E%0A");
}

.ico__f-blog {
  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%3Cpath d='M6.36416 9.64203C5.98411 9.64203 5.67611 9.94089 5.67611 10.3097C5.67611 10.6784 5.98411 10.9787 6.36416 10.9787C6.74421 10.9787 7.05221 10.6798 7.05221 10.3097C7.05221 9.93952 6.74421 9.64203 6.36416 9.64203Z' fill='black'/%3E%3Cpath d='M13.1669 9.57212C12.7572 9.57212 12.4252 9.89428 12.4252 10.2918C12.4252 10.6894 12.7572 11.0116 13.1669 11.0116C13.5766 11.0116 13.9087 10.6894 13.9087 10.2918C13.9087 9.89428 13.5766 9.57212 13.1669 9.57212Z' fill='black'/%3E%3Cpath d='M16.9971 10.2918C16.9971 9.90388 17.3221 9.58857 17.7219 9.58857C18.1217 9.58857 18.4467 9.90388 18.4467 10.2918C18.4467 10.6798 18.1217 10.9951 17.7219 10.9951C17.3221 10.9951 16.9971 10.6798 16.9971 10.2918Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.6759 3H19.3255C20.8033 3 22.0014 4.16253 22.0014 5.5965V14.0331C22.0014 15.467 20.8033 16.6296 19.3255 16.6296H14.1984L12.438 20.6532C12.438 20.6532 12.3179 21.0014 12.024 21.0014C11.7316 21.0014 11.6101 20.6532 11.6101 20.6532L9.84967 16.6296H4.6759C3.19808 16.6296 2 15.467 2 14.0331V5.5965C2 4.16253 3.19808 3 4.6759 3ZM6.63125 12.0439C6.63125 12.0439 8.27437 12 8.28285 10.4577H8.28144C8.28144 10.4577 8.50325 8.65499 6.73156 8.49459C6.73156 8.49459 5.91777 8.48637 5.63662 8.95248V7.12094C5.63662 7.12094 4.51483 7.13465 4.43995 7.12369V7.12094C4.4343 7.12232 4.43995 7.12369 4.43995 7.12369V11.9136H5.63662V11.6353C5.63662 11.6353 5.99548 12.0439 6.63125 12.0439ZM10.3894 11.9219V8.64265C10.3894 8.64265 10.5236 7.04006 8.65301 6.96603V8.11074C8.65301 8.11074 9.21814 8.23412 9.21814 8.67555V11.9219H10.3894ZM11.2018 10.2932C11.2018 11.2611 12.0805 12.0466 13.1656 12.0466C14.2506 12.0466 15.1294 11.2611 15.1294 10.2932C15.1294 9.32536 14.2506 8.53983 13.1656 8.53983C12.0805 8.53983 11.2018 9.32536 11.2018 10.2932ZM17.8548 13.7123C19.5996 13.7123 19.5826 12.0466 19.5826 12.0466V8.58644H18.3945V8.9374C18.0059 8.43016 17.3744 8.49596 17.3744 8.49596C15.7737 8.60975 15.7398 10.041 15.7398 10.041V10.5647C15.7398 11.9452 17.1978 12.0466 17.1978 12.0466C18.2263 12.0466 18.369 11.6024 18.369 11.6024C18.3775 12.6992 17.6442 12.6334 17.6442 12.6334H17.3235V13.7123H17.8548Z' fill='black'/%3E%3C/svg%3E%0A");
}

.dropdown {
  position: relative;
}
.dropdown__inner {
  position: relative;
}
.dropdown__button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.dropdown__button i {
  transition: all 0.3s ease 0s;
}
.dropdown__button + ul {
  position: absolute;
  top: 2.2rem;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  max-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 1rem;
  min-width: 100%;
  white-space: nowrap;
  font-size: 1.2rem;
  border: 0.1rem solid var(--color-gray-400);
}
.dropdown--active .dropdown__button i {
  transform: rotate(-180deg);
}
.dropdown--active .dropdown__button + ul {
  visibility: visible;
  z-index: auto;
  opacity: 1;
  max-height: initial;
  z-index: 9;
}
.dropdown--active > *:not(ul) {
  z-index: 100;
}

.error__wrap {
  padding-top: 11.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  text-align: center;
}
.error__wrap > p + em,
.error__wrap > em + p {
  margin-top: 3rem;
}
.error__wrap > p font,
.error__wrap > em font {
  size: 2.1rem;
}
.error__wrap > em {
  font-family: var(--font-sb);
}
.error__type {
  margin-bottom: 6rem;
}
.error__type > img {
  width: 58.9rem;
}
.error__mark-x {
  display: inline-block;
  width: 7.4rem;
  height: 8.2rem;
  border-radius: 50%;
  background-color: #7343ff;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36' fill='none'%3E%3Cg clip-path='url(%23clip0_1210_14702)'%3E%3Cpath d='M3.45312 3.44531L32.6029 32.5951' stroke='white' stroke-width='10' stroke-miterlimit='10'/%3E%3Cpath d='M3.45312 32.5951L32.6029 3.44531' stroke='white' stroke-width='10' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1210_14702'%3E%3Crect width='36' height='36' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.6rem;
}
.error__message {
  font-size: 4.8rem;
  font-family: var(--font-b);
  margin-bottom: 5rem;
}

.accordion {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 1rem;
}
.accordion__item {
  position: relative;
  transition: all 0.3s ease 0s;
}
.accordion__item--active .accordion__desc {
  visibility: visible;
  z-index: auto;
  opacity: 1;
  max-height: initial;
}
.accordion__desc {
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  max-height: 0;
}

.card {
  width: 100%;
  border-radius: 2.8rem;
  box-shadow: 1rem 4rem 8rem 0 rgba(216, 218, 237, 0.5);
  background-color: var(--color-white);
}
.card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  font-size: 2.6rem;
  margin-bottom: 3.5rem;
}
.card ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.card ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

.btn, .btn__inquiry, .btn-shortcut, .btn__search, .btn__list, .btn-white, .btn-white-sm, .btn-white-sm--ico, .btn-sm, .btn__list--sm, .btn-md, .btn__list--md, .btn-lg {
  border: 0.1rem solid transparent;
  line-height: 1.5;
  border-radius: 0.8rem;
  font-family: var(--font-b);
  transition: all 0.3s ease 0s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.btn-point, .btn-shortcut, .btn-sm, .btn__search, .btn__list--sm, .btn-md, .btn__inquiry, .btn__list--md, .btn__list, .btn-white, .btn-white-sm, .btn-white-sm--ico, .btn-lg {
  background-color: #7343ff;
  border-color: #7343ff;
  color: #fff;
}
.btn-point:hover, .btn-shortcut:hover, .btn-sm:hover, .btn__search:hover, .btn__list--sm:hover, .btn-md:hover, .btn__inquiry:hover, .btn__list--md:hover, .btn__list:hover, .btn-white:hover, .btn-white-sm:hover, .btn-white-sm--ico:hover, .btn-lg:hover {
  background-color: #5b35cc;
  border-color: #5b35cc;
}
.btn-point:active, .btn-shortcut:active, .btn-sm:active, .btn__search:active, .btn__list--sm:active, .btn-md:active, .btn__inquiry:active, .btn__list--md:active, .btn__list:active, .btn-white:active, .btn-white-sm:active, .btn-white-sm--ico:active, .btn-lg:active {
  background-color: #442899;
  border-color: #442899;
}
.btn-lg {
  font-size: 2.3rem;
  font-family: var(--font-sb);
  padding: 2.4rem 5.2rem;
}
.btn-md, .btn__inquiry, .btn__list--md, .btn__list, .btn-white, .btn-white-sm, .btn-white-sm--ico {
  font-size: 1.9rem;
  padding: 1.7rem 2.4rem;
}
.btn-sm, .btn__search, .btn__list--sm {
  font-size: 1.5rem;
  padding: 0.8rem 1rem;
}
.btn-white, .btn__list, .btn-white-sm, .btn-white-sm--ico {
  font-family: var(--font-r);
  background-color: #fff;
  border-color: #575757;
  color: #1d1d1d;
}
.btn-white:hover, .btn__list:hover, .btn-white-sm:hover, .btn-white-sm--ico:hover {
  background-color: #f8f8f8;
  border-color: #575757;
}
.btn-white:active, .btn__list:active, .btn-white-sm:active, .btn-white-sm--ico:active {
  background-color: #f0f0f0;
  border-color: #575757;
}
.btn-white-sm, .btn-white-sm--ico {
  border-radius: 0.6rem;
  font-size: 1.5rem;
  padding: 0.45rem 1rem;
}
.btn-white-sm--ico:hover, .btn-white-sm--ico:active {
  background-color: #fff;
}
.btn-white-sm > i, .btn-white-sm--ico > i {
  width: 1.6rem;
  background-position: center;
}
.btn-white-sm > i.ico__sc-arrow-2, .btn-white-sm--ico > i.ico__sc-arrow-2 {
  margin-left: 0.4rem;
}
.btn-white-sm > i.ico__download, .btn-white-sm--ico > i.ico__download {
  margin-right: 0.4rem;
}
.btn__search {
  font-family: var(--font-r);
  padding: 0.7rem 1.7rem;
}
.btn-shortcut {
  border-radius: 1.6rem;
  font-size: 1.7rem;
  padding: 1.2rem 6rem;
}
.btn-shortcut > i {
  margin-left: 1.5rem;
  width: 2.4rem;
}
.btn__inquiry > i {
  margin-left: 1.3rem;
}
.btn__group, .btn__box-unit, .btn__group--left, .btn__group--right, .btn__group--both {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0.4rem 1rem;
  margin-top: 5rem;
}
.btn__group--left {
  justify-content: flex-start;
}
.btn__group--right {
  justify-content: flex-end;
}
.btn__group--both {
  justify-content: space-between;
}
.btn__box-unit {
  margin-top: 2rem;
  justify-content: flex-start;
}
[class^=list] .btn__box-unit {
  margin-top: 0;
  padding-top: 1rem;
  padding-bottom: 0.2rem;
}

.breadcrumb__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 3rem;
}
.breadcrumb__menu > li {
  position: relative;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.breadcrumb__menu > li:not(:last-child):after {
  content: "";
  position: absolute;
  right: -2rem;
  aspect-ratio: 1 / 1;
  width: 1.6rem;
  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%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%23fff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 1.6rem;
  transform: rotate(-90deg);
}
.breadcrumb__menu > li > a {
  font-family: var(--font-sb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  text-decoration: underline;
  text-underline-position: under;
}
.breadcrumb__menu > li > a i {
  width: 2.4rem;
}
.breadcrumb__menu > li.dropdown {
  border-bottom: 0.1rem solid #fff;
}
@media (max-width: 719.98px) {
  .breadcrumb__menu > li {
    font-size: 1.7rem;
  }
  .breadcrumb__menu > li > a i {
    margin-top: -0.2rem;
  }
}

.subtab-content {
  padding-top: 7rem;
}
@media (max-width: 719.98px) {
  .subtab-content {
    padding-top: 5.3rem;
  }
}
.subtab-list__menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  z-index: 2;
}
.subtab-list__menu > * {
  flex: 1 1 0;
}
.subtab-list__item {
  position: relative;
  text-align: center;
  color: var(--color-gray-800);
  border-top: 0.1rem solid #e4e4e4;
  border-right: 0.1rem solid #e4e4e4;
  border-bottom: 0.1rem solid #e4e4e4;
  height: 6rem;
  line-height: 6rem;
  font-size: 1.9rem;
  font-family: var(--font-r);
  transition: all 0.3s ease 0s;
}
.subtab-list__item a {
  display: block;
  width: 100%;
  height: 100%;
}
.subtab-list__item:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 0.5rem;
  transition: all 0.3s ease 0s;
}
@media (max-width: 719.98px) {
  .subtab-list__item {
    line-height: 1;
  }
}
.subtab-list__item:first-child {
  border-left: 0.1rem solid #e4e4e4;
}
@media (max-width: 719.98px) {
  .subtab-list__item:first-child {
    border-left: none;
  }
}
.subtab-list__item:hover, .subtab-list__item--active {
  font-family: var(--font-sb);
  color: var(--color-white);
  background: var(--color-point);
}
.subtab-list__title {
  display: none;
}
@media (max-width: 719.98px) {
  .subtab {
    position: relative;
  }
  .subtab--active .subtab-list__title {
    border: 1px solid #7343ff;
    outline: 1px solid #7343ff;
  }
  .subtab-list__title {
    display: block;
    padding: 1.6rem;
    font-size: 1.9rem;
    background-color: #fff;
    border: 0.1rem solid #d8d8d8;
    border-radius: 0.6rem;
    cursor: pointer;
    position: relative;
  }
  .subtab-list__title:after {
    content: "";
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: 0;
    right: 1.6rem;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='%231D1D1D' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='black' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M3 5.5L8 11L13 5.5' stroke='black' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
    transition: all 0.3s ease 0s;
  }
  .subtab-list__menu {
    padding: 2.1rem;
    border-radius: 0.6rem;
    flex-direction: column;
    background-color: #fff;
    display: none;
    position: absolute;
    width: 100%;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-top: 1px;
  }
  .subtab-list__item {
    text-align: left;
    width: 100%;
    border: 0;
    color: #1d1d1d;
  }
  .subtab-list__item a {
    display: block;
    padding: 2.1rem;
  }
  .subtab-list__item:after {
    display: none;
  }
  .subtab-list__item:hover {
    font-family: var(--font-r);
  }
  .subtab-list__item--active {
    font-family: var(--font-r);
    color: #7343ff;
    background-color: #f6f3ff;
  }
  .subtab-list__item--active:hover {
    color: #7343ff;
  }
  .subtab--active .subtab-list__menu {
    display: flex;
  }
  .subtab--active .subtab-list__title:after {
    transform: rotate(180deg);
  }
}

.modal__tab-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  border: 0.1rem solid #d8d8d8;
  margin-bottom: 5rem;
}
.modal__tab-menu > * {
  flex: 1 1 0;
}
.modal__tab-menu li {
  text-align: center;
  color: #555555;
  font-size: 1.7rem;
  padding: 1.7rem 2.5rem;
}
.modal__tab-menu li ~ li {
  border-left: 0.1rem solid #d8d8d8;
}
.modal__tab-menu li a {
  display: block;
}
.modal__tab-menu li:hover, .modal__tab-menu li.modal__tab-item--active {
  font-family: var(--font-sb);
  background-color: var(--color-point);
  color: #fff;
}
.modal__tab-menu li:hover {
  border-color: #7343ff;
}

.table {
  line-height: 1;
}
.table__caption {
  color: var(--color-gray-800);
  padding: 2.4rem 0;
  font-size: 1.6rem;
}
.table__caption--total {
  padding-bottom: 2.5rem;
  font-size: 1.7rem;
  color: var(--color-gray-900);
}
.table__list, .table__list--mo, .table__info-short--mo, .table__online-service--mo, .table__linked-bank--mo, .table__view, .table__info-short, .table__online-service, .table__linked-bank, .table__deposit-result {
  table-layout: fixed;
  width: 100%;
  font-size: 1.7rem;
  border-top: 2px solid #575757;
}
.table__list tr, .table__list--mo tr, .table__info-short--mo tr, .table__online-service--mo tr, .table__linked-bank--mo tr, .table__view tr, .table__info-short tr, .table__online-service tr, .table__linked-bank tr, .table__deposit-result tr {
  border-bottom: 0.1rem solid var(--color-gray-200);
}
.table__list th, .table__list--mo th, .table__info-short--mo th, .table__online-service--mo th, .table__linked-bank--mo th,
.table__list td,
.table__list--mo td,
.table__info-short--mo td,
.table__online-service--mo td,
.table__linked-bank--mo td, .table__view th,
.table__view td, .table__info-short th,
.table__info-short td, .table__online-service th,
.table__online-service td, .table__linked-bank th,
.table__linked-bank td, .table__deposit-result th,
.table__deposit-result td {
  height: 6.8rem;
}
.table__list th [class^=list], .table__list--mo th [class^=list], .table__info-short--mo th [class^=list], .table__online-service--mo th [class^=list], .table__linked-bank--mo th [class^=list],
.table__list td [class^=list],
.table__list--mo td [class^=list],
.table__info-short--mo td [class^=list],
.table__online-service--mo td [class^=list],
.table__linked-bank--mo td [class^=list], .table__view th [class^=list],
.table__view td [class^=list], .table__info-short th [class^=list],
.table__info-short td [class^=list], .table__online-service th [class^=list],
.table__online-service td [class^=list], .table__linked-bank th [class^=list],
.table__linked-bank td [class^=list], .table__deposit-result th [class^=list],
.table__deposit-result td [class^=list] {
  text-align: left;
}
.table__list th .sub-txt, .table__list--mo th .sub-txt, .table__info-short--mo th .sub-txt, .table__online-service--mo th .sub-txt, .table__linked-bank--mo th .sub-txt,
.table__list td .sub-txt,
.table__list--mo td .sub-txt,
.table__info-short--mo td .sub-txt,
.table__online-service--mo td .sub-txt,
.table__linked-bank--mo td .sub-txt, .table__view th .sub-txt,
.table__view td .sub-txt, .table__info-short th .sub-txt,
.table__info-short td .sub-txt, .table__online-service th .sub-txt,
.table__online-service td .sub-txt, .table__linked-bank th .sub-txt,
.table__linked-bank td .sub-txt, .table__deposit-result th .sub-txt,
.table__deposit-result td .sub-txt {
  color: #555555;
  font-family: var(--font-r);
}
.table__list thead tr, .table__list--mo thead tr, .table__info-short--mo thead tr, .table__online-service--mo thead tr, .table__linked-bank--mo thead tr, .table__info-short thead tr, .table__online-service thead tr, .table__linked-bank thead tr {
  background-color: #f8f8f8;
}
.table__list th, .table__list--mo th, .table__info-short--mo th, .table__online-service--mo th, .table__linked-bank--mo th,
.table__list td,
.table__list--mo td,
.table__info-short--mo td,
.table__online-service--mo td,
.table__linked-bank--mo td, .table__info-short th,
.table__info-short td, .table__online-service th,
.table__online-service td, .table__linked-bank th,
.table__linked-bank td {
  vertical-align: middle;
  text-align: center;
  padding: 0.5rem;
}
.table__list th, .table__list--mo th, .table__info-short--mo th, .table__online-service--mo th, .table__linked-bank--mo th, .table__info-short th, .table__online-service th, .table__linked-bank th {
  font-family: var(--font-sb);
}
.table__list td p, .table__list--mo td p, .table__info-short--mo td p, .table__online-service--mo td p, .table__linked-bank--mo td p, .table__info-short td p, .table__online-service td p, .table__linked-bank td p {
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 100%;
  text-align: left;
}
.table__list td p i, .table__list--mo td p i, .table__info-short--mo td p i, .table__online-service--mo td p i, .table__linked-bank--mo td p i, .table__info-short td p i, .table__online-service td p i, .table__linked-bank td p i {
  min-width: 1.6rem;
  width: 1.6rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M14.1025 7.26634L8.09206 13.2768C6.72523 14.6436 4.50915 14.6436 3.14231 13.2768C1.77548 11.9099 1.77548 9.69384 3.14231 8.327L9.15272 2.3166C10.0639 1.40537 11.5413 1.40537 12.4526 2.3166C13.3638 3.22782 13.3638 4.7052 12.4526 5.61643L6.67785 11.3911C6.22224 11.8467 5.48354 11.8467 5.02793 11.3911C4.57232 10.9355 4.57232 10.1968 5.02793 9.74122L10.0955 4.67362' stroke='%23555555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.table__list td p [class^=category], .table__list--mo td p [class^=category], .table__info-short--mo td p [class^=category], .table__online-service--mo td p [class^=category], .table__linked-bank--mo td p [class^=category], .table__info-short td p [class^=category], .table__online-service td p [class^=category], .table__linked-bank td p [class^=category] {
  margin-right: 3rem;
}
@media (max-width: 719.98px) {
  .table__list td p [class^=category], .table__list--mo td p [class^=category], .table__info-short--mo td p [class^=category], .table__online-service--mo td p [class^=category], .table__linked-bank--mo td p [class^=category], .table__info-short td p [class^=category], .table__online-service td p [class^=category], .table__linked-bank td p [class^=category] {
    margin-right: 1rem;
  }
}
.table__list .highlight .category, .table__list .highlight .category--end,
.table__list .highlight .status--end, .table__list .highlight .category__point,
.table__list .highlight .status__point, .table__list--mo .highlight .category, .table__list--mo .highlight .category--end,
.table__list--mo .highlight .status--end, .table__list--mo .highlight .category__point,
.table__list--mo .highlight .status__point, .table__info-short--mo .highlight .category, .table__info-short--mo .highlight .category--end,
.table__info-short--mo .highlight .status--end, .table__info-short--mo .highlight .category__point,
.table__info-short--mo .highlight .status__point, .table__online-service--mo .highlight .category, .table__online-service--mo .highlight .category--end,
.table__online-service--mo .highlight .status--end, .table__online-service--mo .highlight .category__point,
.table__online-service--mo .highlight .status__point, .table__linked-bank--mo .highlight .category, .table__linked-bank--mo .highlight .category--end,
.table__linked-bank--mo .highlight .status--end, .table__linked-bank--mo .highlight .category__point,
.table__linked-bank--mo .highlight .status__point, .table__info-short .highlight .category, .table__info-short .highlight .category--end,
.table__info-short .highlight .status--end, .table__info-short .highlight .category__point,
.table__info-short .highlight .status__point, .table__online-service .highlight .category, .table__online-service .highlight .category--end,
.table__online-service .highlight .status--end, .table__online-service .highlight .category__point,
.table__online-service .highlight .status__point, .table__linked-bank .highlight .category, .table__linked-bank .highlight .category--end,
.table__linked-bank .highlight .status--end, .table__linked-bank .highlight .category__point,
.table__linked-bank .highlight .status__point {
  border-color: var(--color-point);
  color: var(--color-point);
}
.table__list .highlight th, .table__list--mo .highlight th, .table__info-short--mo .highlight th, .table__online-service--mo .highlight th, .table__linked-bank--mo .highlight th,
.table__list .highlight td,
.table__list--mo .highlight td,
.table__info-short--mo .highlight td,
.table__online-service--mo .highlight td,
.table__linked-bank--mo .highlight td, .table__info-short .highlight th,
.table__info-short .highlight td, .table__online-service .highlight th,
.table__online-service .highlight td, .table__linked-bank .highlight th,
.table__linked-bank .highlight td {
  font-family: var(--font-sb);
}
.table__list .highlight .left, .table__list--mo .highlight .left, .table__info-short--mo .highlight .left, .table__online-service--mo .highlight .left, .table__linked-bank--mo .highlight .left, .table__info-short .highlight .left, .table__online-service .highlight .left, .table__linked-bank .highlight .left {
  text-align: left;
  font-family: var(--font-r);
}
.table__list--mo th,
.table__list--mo td, .table__info-short--mo th,
.table__info-short--mo td, .table__online-service--mo th,
.table__online-service--mo td, .table__linked-bank--mo th,
.table__linked-bank--mo td {
  height: 6rem;
  padding: 1.5rem 0.5rem;
}
.table__view {
  margin-bottom: 5rem;
}
.table__view th {
  padding: 2.5rem 0;
  text-align: left;
  vertical-align: top;
  color: var(--color-gray-900);
}
.table__view th .required {
  margin-left: 0.5rem;
  top: -0.5rem;
}
.table__view td {
  padding: 1.4rem 0;
  vertical-align: middle;
  color: var(--color-gray-800);
  line-height: 1.3;
}
.table__view td p {
  font-size: 1.5rem;
}
.table__event {
  border-top: 0.1rem solid #1d1d1d;
}
.table__event > ul {
  display: grid;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
  padding: 5rem 3rem;
  width: 100%;
}
.table__event > ul > li a {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 3rem;
}
.table__event > ul > li .item__img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  position: relative;
  width: 100%;
  aspect-ratio: 1.4/1;
  border-radius: 1.6rem;
  overflow: hidden;
}
.table__event > ul > li .item__img [class*=category] {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.table__event > ul > li .item__img img {
  min-height: 100%;
}
.table__event > ul > li .item__info {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 2.2rem;
  font-size: 1.7rem;
}
.table__event > ul > li .item__info-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 3.2rem;
  margin-top: 0.6rem;
}
.table__event > ul > li .item__info-list li {
  font-size: 1.5rem;
  color: #555555;
  position: relative;
}
.table__event > ul > li .item__info-list li + li:before {
  content: "";
  position: absolute;
  left: -1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 1.2rem;
  background-color: #e4e4e4;
}
.table__event > ul > li .item__info-list em {
  font-family: var(--font-sb);
  white-space: nowrap;
}
.table__event > ul > li .item__title, .table__event > ul > li .item__title--xxl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 1rem;
  font-size: 1.9rem;
  font-family: var(--font-sb);
}
.table__event > ul > li .item__title span, .table__event > ul > li .item__title--xxl span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  aspect-ratio: 1 / 1;
  width: 3.2rem;
  border-radius: 50%;
  background-color: var(--color-gray-50);
  border-radius: 50%;
}
.table__event > ul > li .item__title span i, .table__event > ul > li .item__title--xxl span i {
  transform: rotate(-90deg);
}
.table__event > ul > li .item__title--xxl {
  font-size: 3.2rem;
}
@media (max-width: 719.98px) {
  .table__event > ul {
    padding: 4rem 0;
    gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 719.98px) {
  .table__list:not(.table__list--mo) th, .table__list--mo:not(.table__list--mo) th, .table__info-short--mo:not(.table__list--mo) th, .table__online-service--mo:not(.table__list--mo) th, .table__linked-bank--mo:not(.table__list--mo) th,
  .table__list:not(.table__list--mo) td,
  .table__list--mo:not(.table__list--mo) td,
  .table__info-short--mo:not(.table__list--mo) td,
  .table__online-service--mo:not(.table__list--mo) td,
  .table__linked-bank--mo:not(.table__list--mo) td {
    position: relative;
    height: auto;
  }
  .table__view colgroup {
    display: none;
  }
  .table__view tr {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 1rem 0rem;
    padding: 2rem 0;
  }
  .table__view tr th,
  .table__view tr td {
    width: 100%;
    height: auto;
    padding: 0;
  }
  .table__view tr th {
    font-family: var(--font-sb);
  }
}
table + p, table + p, table + [class^=list] {
  margin-top: 2rem;
}

@media (max-width: 719.98px) {
  .table__list colgroup, .table__list--mo colgroup, .table__info-short--mo colgroup, .table__online-service--mo colgroup, .table__linked-bank--mo colgroup,
  .table__list thead,
  .table__list--mo thead,
  .table__info-short--mo thead,
  .table__online-service--mo thead,
  .table__linked-bank--mo thead, .table__row-group colgroup,
  .table__row-group thead {
    display: none;
  }
  .table__list tr, .table__list--mo tr, .table__info-short--mo tr, .table__online-service--mo tr, .table__linked-bank--mo tr, .table__row-group tr {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0rem 1rem;
    padding: 1rem 0;
  }
}
.table__list .table-col__file, .table__list--mo .table-col__file, .table__info-short--mo .table-col__file, .table__online-service--mo .table-col__file, .table__linked-bank--mo .table-col__file {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.table__info-short th,
.table__info-short td, .table__linked-bank th,
.table__linked-bank td, .table__online-service th,
.table__online-service td {
  vertical-align: middle;
  text-align: center;
  padding: 2rem 1.6rem;
}
.table__info-short th:not(:first-child),
.table__info-short td:not(:first-child), .table__linked-bank th:not(:first-child),
.table__linked-bank td:not(:first-child), .table__online-service th:not(:first-child),
.table__online-service td:not(:first-child) {
  border-left: 1px solid #d8d8d8;
}
@media (max-width: 719.98px) {
  .table__info-short th,
  .table__info-short td, .table__linked-bank th,
  .table__linked-bank td, .table__online-service th,
  .table__online-service td {
    padding: 1rem;
  }
}
.table__info-short th.cell-image,
.table__info-short td.cell-image, .table__linked-bank th.cell-image,
.table__linked-bank td.cell-image, .table__online-service th.cell-image,
.table__online-service td.cell-image {
  padding: 1rem 1.6rem;
}
.table__deposit-result {
  position: relative;
  border-top: 0;
}
.table__deposit-result:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.2rem;
  background-color: #575757;
}
.table__deposit-result th,
.table__deposit-result td {
  padding: 2.4rem 1.6rem;
  vertical-align: middle;
}
.table__deposit-result th em[class*=color],
.table__deposit-result td em[class*=color] {
  font-family: var(--font-r);
}
.table__deposit-result th {
  font-family: var(--font-b);
}
.table__deposit-result th,
.table__deposit-result td {
  text-align: left;
}
.table__deposit-result tbody th {
  background-color: #f8f8f8;
}

@media (max-width: 719.98px) {
  .table-list__notice [data-label=번호] {
    display: none;
  }
  .table-list__notice [data-label=등록일]:after,
  .table-list__notice [data-label=조회수]:after {
    content: "";
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.1px;
    height: 1rem;
    background-color: var(--color-gray-200);
  }
  .table-list__notice [data-label=제목] {
    width: 100%;
    text-align: left;
    font-family: var(--font-sb);
  }
}
.table__online-service {
  margin-top: 3.2rem;
}
.table__online-service td[data-header] {
  text-align: center;
  border-left: 0.1rem solid #e4e4e4;
}
.table__online-service em {
  font-family: var(--font-b);
}
.table__online-service .list-num02 > li {
  padding-left: 2.5rem;
}
.table__online-service .list-num02 > li ~ li {
  margin-top: 0;
}
.table__online-service .list-num02 > li:before {
  font-family: var(--font-r);
}

.table__linked-bank td:nth-child(3), .table__linked-bank td:nth-child(4), .table__linked-bank td[data-header] + td {
  text-align: left;
}
.table__linked-bank td:last-child {
  text-align: center;
}

.table__row-group td[data-header] {
  text-align: center;
  border-left: 0.1rem solid #e4e4e4;
}
@media (max-width: 719.98px) {
  .table__row-group th,
  .table__row-group td {
    height: auto;
    width: 100%;
    padding: 0.5rem;
  }
  .table__row-group th {
    font-size: 3rem;
  }
  .table__row-group td, .table__row-group td:not(:first-child), .table__row-group td[data-header] {
    border-left: none;
  }
  .table__row-group th, .table__row-group th[data-header], .table__row-group th:last-child,
  .table__row-group td,
  .table__row-group td[data-header],
  .table__row-group td:last-child {
    text-align: left;
  }
  .table__row-group tr.table-row--merge:not(:first-of-type) {
    margin-top: -0.1rem;
    border-top: 0.4rem double #575757;
  }
}

.terms-date {
  margin-bottom: 2rem;
  text-align: right;
}
.terms li {
  margin-top: 0.8rem;
}
.terms li p {
  margin-top: 0.8rem;
}

.list-terms--lg > li ~ li {
  margin-top: 5rem;
}
.list-terms--lg > li > strong {
  font-size: 2.3rem;
  margin-bottom: 2rem;
}
.list-terms--lg > li > ul > li,
.list-terms--lg > li > ol > li {
  margin-top: 2rem;
}
.list-terms-md > li ~ li {
  margin-top: 2rem;
}
.list-terms--num01 > li, .list-terms--num02 > li {
  position: relative;
}
.list-terms--num01 > li > ul,
.list-terms--num01 > li > ol {
  padding-left: 2.1rem;
}
.list-terms--num02, .list-terms--consonant01 {
  padding-left: 2.1rem;
}
.list-terms__order {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
}
.list-terms__index {
  margin-right: 0.6rem;
}
.list-terms__subsidiary {
  margin-top: 2rem !important;
}
.list-terms__subsidiary > strong + .list-terms--num02 {
  padding-left: 0;
}

.precaution {
  position: relative;
}
.precaution__txt {
  position: relative;
  padding-left: 2rem;
}
.precaution__txt:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
  width: 1rem;
  height: 100%;
}

.asterisk {
  position: relative;
}
.asterisk__txt, .asterisk__txt--basic {
  position: relative;
  padding-left: 1.1rem;
  color: var(--color-point);
  font-family: var(--font-b);
}
.asterisk__txt:before, .asterisk__txt--basic:before {
  position: absolute;
  left: 0;
  content: "*";
  font-size: inherit;
  line-height: inherit;
}
.asterisk__txt--basic {
  color: inherit;
}
table th .asterisk__txt, table th .asterisk__txt--basic {
  color: #555555;
  font-size: 1.5rem;
  font-family: var(--font-r);
}

.link__txt, .link__txt--point {
  border-bottom: 0.1rem solid;
}
.link__txt--point {
  color: #7343ff;
  border-color: #7343ff;
  font-family: var(--font-b);
}
.link--line {
  text-decoration: underline;
}

.text-line--one {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
}

.list, .list-num03, .list-num03--green, .list-num02, .list-dot, .list-dash, .list-num {
  font-size: 1.7rem;
  line-height: 1.5;
  color: inherit;
}
.list > li, .list-num03 > li, .list-num03--green > li, .list-num02 > li, .list-dot > li, .list-dash > li, .list-num > li {
  position: relative;
}
.list > li ~ li, .list-num03 > li ~ li, .list-num03--green > li ~ li, .list-num02 > li ~ li, .list-dot > li ~ li, .list-dash > li ~ li, .list-num > li ~ li {
  margin-top: 0.8rem;
}
.list > li strong, .list-num03 > li strong, .list-num03--green > li strong, .list-num02 > li strong, .list-dot > li strong, .list-dash > li strong, .list-num > li strong {
  font-family: var(--font-sb);
}
.list > li:before, .list-num03 > li:before, .list-num03--green > li:before, .list-num02 > li:before, .list-dot > li:before, .list-dash > li:before, .list-num > li:before {
  content: "";
  position: absolute;
  left: 0;
}
.list > li > ul, .list-num03 > li > ul, .list-num03--green > li > ul, .list-num02 > li > ul, .list-dot > li > ul, .list-dash > li > ul, .list-num > li > ul {
  margin-top: 0.8rem;
}
.list__title {
  display: block;
  font-size: 2rem;
  font-family: var(--font-b);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.list-dot > li, .list-dash > li, .list-num > li {
  padding-left: 1.1rem;
}
.list-dot > li:before, .list-dash > li:before, .list-num > li:before {
  width: 1.1rem;
  height: 100%;
  color: #1d1d1d;
}
.list-dot > li:before {
  content: "•";
  width: 1rem;
}
.list-dash > li:before {
  content: "-";
}
.list-num {
  counter-reset: list;
}
.list-num > li {
  padding-left: 1.6rem;
}
.list-num > li:before {
  content: counter(list) ". ";
  counter-increment: list;
  list-style-position: inside;
  width: 2rem;
}
.list-num02 {
  counter-reset: list;
}
.list-num02 > li {
  padding-left: 2.8rem;
}
.list-num02 > li:before {
  width: auto;
  font-family: var(--font-b);
  content: counter(list, decimal-leading-zero);
  counter-increment: list;
  list-style-position: inside;
}
.list-num02 > li ~ li {
  margin-top: 0.6rem;
}
.list-num03, .list-num03--green {
  counter-reset: list;
}
.list-num03 > li, .list-num03--green > li {
  padding-left: 2.7rem;
  line-height: 1.5;
  font-size: 1.6rem;
  line-height: 2rem;
}
.list-num03 > li:before, .list-num03--green > li:before {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  color: #fff;
  background-color: #7343ff;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  content: counter(list) "";
  counter-increment: list;
  font-family: var(--font-sb);
  font-size: 1.3rem;
}
.list-num03--green > li:before {
  background-color: #0279a7;
}
.list-num04 > li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 100%;
}
.list-num04 > li > span {
  padding-right: 0.5rem;
  font-weight: inherit;
}
.list-detail > li ~ li {
  margin-top: 5rem;
}
.list-detail__middle > li ~ li {
  margin-top: 2rem;
}
.list-detail__middle > li > strong + [class^=list] {
  margin-top: 0.8rem;
}
.list-circle > li {
  padding-left: 0;
}
.list-circle > li::before {
  display: none;
}
.list-circle > li > span {
  display: inline-block;
  margin-right: 0.6rem;
  color: var(--color-white);
  background: var(--color-gray-800);
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  text-align: center;
  line-height: 2.2rem;
  font-size: 1.4rem;
  font-family: var(--font-b);
}
.list-circle > li .break {
  display: block;
  padding-left: 2.8rem;
  font-family: var(--font-r);
}

.pagination {
  margin-top: 5rem;
}
.pagination ol {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.8rem;
}
.pagination ol li {
  border-radius: 1.6rem;
}
.pagination ol li.current {
  background-color: var(--color-point);
  color: var(--color-white);
  pointer-events: none;
}
.pagination ol li.is-disabled a {
  pointer-events: none;
}
.pagination ol li.is-disabled a i {
  transition: all 0.3s ease 0s;
}
.pagination ol li.is-disabled a i.ico__prev, .pagination ol li.is-disabled a i.ico__next {
  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%3Cpath d='M12.75 5L7.25 10L12.75 15' stroke='%23575757' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.pagination ol li.is-disabled a i.ico__first, .pagination ol li.is-disabled a i.ico__last {
  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%3Cpath d='M15.5 5L10 10L15.5 15' stroke='%23575757' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M10 5L4.5 10L10 15' stroke='%23575757' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.pagination ol li.is-disabled a i.ico__next, .pagination ol li.is-disabled a i.ico__last {
  transform: rotate(180deg);
}
.pagination ol li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.2rem;
  min-width: 4rem;
  height: 4rem;
  transition: all 0.3s ease 0s;
}
.pagination ol li a i {
  transition: all 0.3s ease 0s;
}
.pagination ol li a i.ico__prev, .pagination ol li a i.ico__next {
  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%3Cpath d='M12.75 5L7.25 10L12.75 15' stroke='%23555555' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.pagination ol li a i.ico__first, .pagination ol li a i.ico__last {
  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%3Cpath d='M15.5 5L10 10L15.5 15' stroke='%23555555' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M10 5L4.5 10L10 15' stroke='%23555555' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.pagination ol li a i.ico__next, .pagination ol li a i.ico__last {
  transform: rotate(180deg);
}
.pagination ol li a:hover {
  color: var(--color-point);
  font-family: var(--font-b);
}
.pagination ol li a:hover .ico__prev, .pagination ol li a:hover .ico__next {
  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%3Cpath d='M12.75 5L7.25 10L12.75 15' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.pagination ol li a:hover .ico__first, .pagination ol li a:hover .ico__last {
  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%3Cpath d='M15.5 5L10 10L15.5 15' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M10 5L4.5 10L10 15' stroke='%237343ff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

.guide {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 5rem 6rem 5rem 8rem;
  background-color: #f3f3ff;
  border-radius: 2.4rem;
  gap: 0 5rem;
}
.guide__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  background: linear-gradient(180deg, #7343ff 0%, #3811a9 100%);
  width: 10rem;
  height: 10rem;
  padding: 2.3rem;
  border-radius: 3.6rem;
  flex-shrink: 0;
}
.guide__icon.ecard {
  padding: 0;
  background: none;
  border-radius: 0;
}
.guide__icon i {
  width: 100%;
}
.guide__title {
  display: block;
  font-size: 2.5rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.guide__cont {
  width: 100%;
}
.guide__cont > p,
.guide__cont > .list-dot {
  margin-top: 0.6rem;
}
.guide__cont .list-dot li ~ li {
  margin-top: 0.6rem;
}
@media (max-width: 719.98px) {
  .guide {
    flex-direction: column;
    gap: 3.2rem;
    padding: 3.2rem;
    grid-template-columns: 1fr;
  }
}

::-moz-placeholder {
  color: var(--color-gray-400);
}

::placeholder {
  color: var(--color-gray-400);
}

input[type=text],
input[type=search],
input[type=password],
input[type=number],
select,
textarea {
  box-sizing: border-box;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  padding: 0.775rem 1.6rem;
  max-width: 100%;
  font-size: 1.5rem;
  font-family: var(--font-r);
  line-height: 1.5;
  color: var(--color-gray-800);
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-gray-300);
  border-radius: 0.6rem;
}
input[type=text]:focus,
input[type=search]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
  border-color: var(--color-point);
  outline: 0.2rem solid var(--color-point);
}
input[type=text]:disabled,
input[type=search]:disabled,
input[type=password]:disabled,
input[type=number]:disabled,
select:disabled,
textarea:disabled {
  background-color: #f5f8ff;
  border-color: #d8d8d8;
  color: #575757;
}

input:-moz-read-only {
  background-color: #f5f8ff;
  border-color: #d8d8d8;
  color: #575757;
}

input:read-only {
  background-color: #f5f8ff;
  border-color: #d8d8d8;
  color: #575757;
}
input.error {
  border-color: #ea0c0c;
  outline: 0.2rem solid #ea0c0c;
}

select {
  padding-right: 4.2rem;
  background-repeat: no-repeat;
  background-position: center right 1.6rem;
  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%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%231d1d1d' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%231d1d1d' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%231d1d1d' stroke-opacity='0.2' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  width: 2rem;
  height: 2rem;
}
input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.8rem;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  font-size: 1.7rem;
  font-family: var(--font-r);
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
  content: "";
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  transition: all 0.1s linear 0s;
}
input[type=checkbox]:focus + label,
input[type=radio]:focus + label {
  outline: var(--color-gray-900) dotted 0.1rem;
}

input[type=checkbox] + label:before {
  border-radius: 0.4rem;
  border: 0.1rem solid var(--color-gray-300);
  background-color: var(--color-white);
  background-repeat: no-repeat;
  background-position: center center;
}
input[type=checkbox]:checked + label:before {
  border: 0.1rem solid var(--color-gray-800);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M9 15.125L13.125 19.25L21.375 11' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-color: var(--color-gray-800);
  background-repeat: no-repeat;
  background-position: center center;
}

input[type=radio] + label:before {
  border-radius: 50%;
  border: 0.1rem solid var(--color-gray-300);
  background: var(--color-white);
}
input[type=radio]:checked + label:before {
  border: 0.6rem solid var(--color-gray-800);
}

.textarea-count {
  text-align: right;
  margin-bottom: -0.4rem;
}
.textarea-count span {
  font-size: 1.3rem;
  color: var(--color-gray-800);
  line-height: 1;
}

.search__box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 5rem;
  width: 100%;
  padding: 6rem 7rem;
  background-color: var(--color-gray-25);
  border-radius: 1rem;
  margin-bottom: 4rem;
}
.search__box select {
  width: 30rem;
  max-width: 100%;
}
.search__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  aspect-ratio: 1 / 1;
  width: 14rem;
  min-width: 14rem;
  border-radius: 4rem;
  background-color: var(--color-white);
  box-shadow: 0 0 3rem 0 rgba(52, 110, 221, 0.15);
}
.search__icon i {
  width: 7rem;
}

.search__group {
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.8rem;
  flex-direction: row;
}
.search__group select {
  width: 15rem;
}
.search__group .form__group, .search__group .form__group--row {
  width: auto;
  flex-direction: row;
}
.search__group .search-input {
  min-width: 30rem;
}
.search__group .search-input::-moz-placeholder {
  color: var(--color-gray-500);
}
.search__group .search-input::placeholder {
  color: var(--color-gray-500);
}
@media (max-width: 719.98px) {
  .search__group {
    justify-content: flex-start;
  }
  .search__group .form__group, .search__group .form__group--row {
    width: 100%;
    flex-direction: column;
  }
  .search__group .form__group select, .search__group .form__group--row select {
    width: 100%;
  }
  .search__group .search-input {
    flex-grow: 1;
  }
}
.search__group p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 1.2rem;
}

.form__group, .form__group--row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}
.form__group--row {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8rem;
}
.form__group p, .form__group--row p {
  width: 100%;
}
.form__label, .form__label--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.8rem;
  width: 100%;
  min-height: 4rem;
}
.form__label--row {
  gap: 0.8rem 2.5rem;
}
.form__label--row > * {
  flex: 1 1 0;
}
.form__label--row select {
  width: 100%;
}

.label__group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.8rem;
}
.label__title {
  font-family: var(--font-sb);
  min-width: 7.5rem;
}
.label__content, .label__content--wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.8rem;
  width: 100%;
}
.label__content--wrap {
  flex-wrap: wrap;
}
.label__content .btn__group, .label__content--wrap .btn__group, .label__content .btn__group--left, .label__content--wrap .btn__group--left, .label__content .btn__group--right, .label__content--wrap .btn__group--right, .label__content .btn__group--both, .label__content--wrap .btn__group--both, .label__content .btn__box-unit, .label__content--wrap .btn__box-unit {
  gap: 0.8rem;
}
.label__content + *, .label__content--wrap + * {
  margin-left: 3rem;
}

@media (max-width: 1199.98px) {
  .search__icon {
    display: none;
  }
}
@media (max-width: 719.98px) {
  input[type=text],
  input[type=search],
  input[type=password],
  input[type=number],
  select,
  textarea {
    font-size: 1.7rem;
  }
  .form__group, .form__group--row {
    width: 100%;
    gap: 1.5rem 1rem;
  }
  .form__group--row {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem 1rem;
  }
  .form__label, .form__label--row {
    flex-direction: column;
    align-items: flex-start;
  }
  .form__label--row {
    flex-direction: row;
  }
  .label__group {
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .label__group select {
    width: 100%;
  }
  .label__title {
    width: 100%;
  }
  .label__content, .label__content--wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 0.8rem;
    width: 100%;
  }
  .label__content--wrap {
    flex-wrap: wrap;
  }
  .search__box {
    padding: 3rem;
  }
  .search__group {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .search__group p {
    width: 100%;
  }
  .search__group p select,
  .search__group p input {
    width: 100%;
  }
}
.input-guide-text, .input-guide-text--info, .input-guide-text--error {
  font-size: 1.5rem;
}
.input-guide-text--info {
  color: #555555;
}
.input-guide-text--error {
  color: #ea0c0c;
}

.fix-button__box {
  position: fixed;
  right: 2rem;
  bottom: 11rem;
  z-index: 100;
}
.fix-button__to-top, .fix-button__to-top--modal {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.6rem;
  height: 6.6rem;
  border-radius: 100%;
  border: 0.1rem solid #d8d8d8;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M8 13.8621L16 6M16 6L24 13.8621M16 6V25' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 2rem;
  background-repeat: no-repeat;
  background-color: #fff;
  transition: opacity 0.3s ease;
}
.fix-button__to-top--active {
  opacity: 1;
}
.fix-button__to-top > i, .fix-button__to-top--modal > i {
  width: 3.2rem;
  height: 3.2rem;
}
@media (max-width: 719.98px) {
  .fix-button__to-top--modal {
    width: 5rem;
    height: 5rem;
  }
}
.fix-button__to-top--modal--active {
  opacity: 1;
}

.loading_box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.loading_box:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13rem;
  height: 13rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M135 70C135 87.2169 128.306 102.87 117.379 114.5C105.522 127.119 88.6816 135 70 135C34.1015 135 5 105.899 5 70C5 34.1015 34.1015 5 70 5' stroke='url(%23paint0_linear_1831_24183)' stroke-width='10' stroke-linecap='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1831_24183' x1='91' y1='65.5' x2='132' y2='64' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%237343FF'/%3E%3Cstop offset='1' stop-color='%237343FF' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  transform-origin: center;
  animation: loading 1s linear infinite;
  content: "";
}
.loading_box img {
  max-width: 9rem;
  max-height: 9rem;
}

@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#container {
  padding: 9rem 0 20rem;
  padding-bottom: 20rem;
  transition: all 0.3s ease 0s;
}
#container.container_main {
  padding: 0;
}
@media (max-width: 1199.98px) {
  #container {
    margin-top: 0;
    padding-top: 6rem;
  }
}

.inner, .inner--left, .inner--right, .inner--center, .inner--both, .inner--column {
  position: relative;
  width: 128rem;
  max-width: 100%;
  margin: 0 auto;
}
.inner--left, .inner--right, .inner--center, .inner--both, .inner--column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.inner--left {
  justify-content: flex-start;
}
.inner--right {
  justify-content: flex-end;
}
.inner--both {
  justify-content: space-between;
}
.inner--column {
  flex-direction: column;
}

.logo {
  position: relative;
  font-family: var(--font-b);
  font-size: 3.2rem;
  transition: all 0.3s ease 0s;
}
.logo a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 1.7rem;
}
@media (max-width: 719.98px) {
  .logo {
    gap: 1rem;
  }
  .logo a {
    gap: 0.9rem;
  }
}

.color-point {
  color: var(--color-point);
}

:is(button, a) i {
  transition: all 0.3s ease 0s;
}

.mo__none {
  display: block;
}
.mo__block {
  display: none;
}

.pc__none {
  display: none;
}
.pc__block {
  display: block;
}

@media (max-width: 719.98px) {
  .mo__none {
    display: none;
  }
  .mo__block {
    display: block;
  }
  .pc__none {
    display: block;
  }
  .pc__block {
    display: none;
  }
  .inner, .inner--left, .inner--right, .inner--center, .inner--both, .inner--column {
    padding: 0 2rem;
  }
  .logo img {
    width: 10rem;
  }
}
@media (max-width: 440px) {
  .xs__none {
    display: none;
  }
  .xs__block {
    display: block;
  }
}
.content__box-unit:not(:first-child) {
  margin-top: 5rem;
}

#skip-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  text-align: center;
  background-color: var(--color-black);
}
#skip-nav a:not(:focus) {
  position: absolute !important;
  left: -999.9rem;
  top: -999.9rem;
  width: 0.1rem !important;
  height: 0.1rem !important;
  padding: 0 !important;
  margin: -0.1rem !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
#skip-nav a:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  outline-offset: -0.4rem;
  outline: 2px solid rgba(255, 255, 255, 0.9);
  color: var(--color-white);
  width: 100%;
  height: 3.2rem;
}

.article__header {
  border-top: 0.2rem solid var(--color-gray-900);
  padding: 8rem 0 5rem;
}
.article__content {
  border-top: 0.1rem solid var(--color-gray-200);
  padding: 7rem 7rem 12rem;
  font-size: 1.7rem;
}
.article__content .faq_detail_img {
  text-align: center !important;
  display: flex;
  justify-content: center;
  margin: 5rem auto 0;
}
.article__attach {
  margin-bottom: 6rem;
}
.article__attach ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 1rem 6.2rem;
  padding: 2.6rem 6.2rem;
  background-color: var(--color-gray-25);
  border-top: 0.1rem solid var(--color-gray-200);
  border-bottom: 0.1rem solid var(--color-gray-200);
}
.article__attach ul li:first-child {
  border-bottom-width: 0;
}
.article__attach ul li strong {
  position: relative;
}
.article__attach ul li strong:after {
  content: "";
  position: absolute;
  top: 0.6rem;
  right: -3.1rem;
  width: 0.1rem;
  height: 1.2rem;
  background-color: var(--color-gray-200);
}
.article__attach ul li p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.8rem;
  color: var(--color-gray-800);
}
.article__attach ul li p i {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M14.1025 7.26634L8.09206 13.2768C6.72523 14.6436 4.50915 14.6436 3.14231 13.2768C1.77548 11.9099 1.77548 9.69384 3.14231 8.327L9.15272 2.3166C10.0639 1.40537 11.5413 1.40537 12.4526 2.3166C13.3638 3.22782 13.3638 4.7052 12.4526 5.61643L6.67785 11.3911C6.22224 11.8467 5.48354 11.8467 5.02793 11.3911C4.57232 10.9355 4.57232 10.1968 5.02793 9.74122L10.0955 4.67362' stroke='%23555555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.article__attach ul li a,
.article__attach ul li button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.8rem;
  margin-left: auto;
  color: var(--color-gray-800);
}
.article__attach ul li a i,
.article__attach ul li button i {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M2.5 14H14.5M8.5 2V11.3333M8.5 11.3333L13.1667 6.66667M8.5 11.3333L3.83333 6.66667' stroke='%23555555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.article__attach ul li i {
  width: 1.6rem;
}
.article__prevnext ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 1rem 6.2rem;
  padding: 2.6rem 6.2rem 2.6rem 4rem;
  border-top: 0.1rem solid var(--color-gray-200);
  border-bottom: 0.1rem solid var(--color-gray-200);
}
.article__prevnext ul li:first-child {
  margin-bottom: 1rem;
}
.article__prevnext ul li strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 1.2rem;
}
.article__prevnext ul li strong:after {
  content: "";
  position: absolute;
  top: 0.6rem;
  right: -3.1rem;
  width: 0.1rem;
  height: 1.2rem;
  background-color: var(--color-gray-200);
}
.article__prevnext ul li:first-child i {
  transform: rotate(180deg);
}
.article__prevnext ul li i {
  width: 2.4rem;
}
.article__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 3rem;
  text-align: center;
  font-size: 3.2rem;
  font-family: var(--font-sb);
}
.article__info {
  margin-top: 3rem;
}
.article__info ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1rem 3.2rem;
  font-size: 1.7rem;
  font-family: var(--font-r);
}
.article__info ul strong {
  font-family: var(--font-sb);
}
.article__info ul em {
  font-family: vaR(--font-r);
}
.article__info ul li {
  position: relative;
}
.article__info ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0.6rem;
  right: -1.6rem;
  width: 0.1rem;
  height: 1.2rem;
  background-color: var(--color-gray-200);
}
.article__container, .article__container--info {
  border: 0.1rem solid var(--color-gray-200);
  padding: 7rem;
  border-radius: 2.4rem;
  margin-bottom: 6rem;
  overflow: hidden;
}
.article__container--info {
  padding-bottom: 5rem;
}
.article__overview, .article__overview--info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 5rem;
}
.article__overview .article__img, .article__overview--info .article__img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  aspect-ratio: 1 / 1;
  width: 40rem;
  border-radius: 1.6rem;
  overflow: hidden;
}
.article__overview .article__img img, .article__overview--info .article__img img {
  height: 100%;
  max-width: initial;
}
.article__overview .article__img--noimg, .article__overview--info .article__img--noimg {
  background-color: var(--color-blue-50);
}
.article__overview .article__img--noimg img, .article__overview--info .article__img--noimg img {
  height: auto;
}
.article__overview .article__detail, .article__overview--info .article__detail {
  width: calc(100% - 45rem);
}
.article__overview .article__detail .article__title, .article__overview--info .article__detail .article__title {
  display: block;
  text-align: left;
  font-size: 2.1rem;
  font-family: var(--font-sb);
  line-height: 1.4;
  padding-bottom: 4rem;
  border-bottom: 0.2rem solid var(--color-gray-500);
}
.article__overview .article__detail ul, .article__overview--info .article__detail ul {
  gap: 2rem;
  padding-top: 4rem;
}
.article__overview .article__detail ul li, .article__overview--info .article__detail ul li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 3rem;
  color: var(--color-gray-800);
}
.article__overview .article__detail ul li strong, .article__overview--info .article__detail ul li strong {
  min-width: 8rem;
  font-family: var(--font-sb);
  color: var(--color-gray-900);
}
.article__overview--info .article__img {
  position: relative;
  width: 50rem;
  aspect-ratio: 1.25/1;
}
.article__overview--info .article__img .swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.article__overview--info .article__img .swiper-button {
  position: absolute;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
  z-index: 2;
}
.article__overview--info .article__img .swiper-button .ico__pause, .article__overview--info .article__img .swiper-button .ico__play {
  background-image: url("data:image/svg+xml;charset=utf8,");
  background-color: rgba(0, 0, 0, 0.5);
  background-size: 2rem;
  background-position: center;
  aspect-ratio: 1 / 1;
  width: 4rem;
  border-radius: 50%;
}
.article__overview--info .article__img .swiper-button .ico__play {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5 4L11 8L5 12V4Z' fill='%23fff' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.article__overview--info .article__img .swiper-button__next, .article__overview--info .article__img .swiper-button__prev {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  width: 4rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.article__overview--info .article__img .swiper-button__next i, .article__overview--info .article__img .swiper-button__prev i {
  background-size: 1.6rem;
  background-position: center;
}
.article__overview--info .article__img .swiper-button__next i {
  transform: rotate(180deg);
}
.article__overview--info .article__img .swiper-button__prev {
  left: 0rem;
}
.article__overview--info .article__img .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 1rem 1.8rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  border-radius: 3.5rem;
  font-size: 1.7rem;
  font-family: var(--font-b);
}
.article__overview--info .article__img .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
.article__overview--info .article__img .swiper-slide img {
  min-height: 100%;
  max-width: inherit;
}
.article__overview--info .article__detail {
  width: calc(100% - 55rem);
}
.article__overview--info .article__detail .article__title {
  font-size: 2.8rem;
}
.article__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 5rem;
  background-color: var(--color-blue-50);
  border-radius: 1.6rem;
  overflow: hidden;
  height: 29rem;
}
.article__summary .article__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  overflow: hidden;
  width: 40%;
  height: 100%;
  padding: 2rem;
  background-size: 200% 200%;
  background-repeat: no-repeat;
  background-position: center;
}
.article__summary .article__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  z-index: 1;
}
.article__summary .article__img img {
  max-height: 100%;
  z-index: 2;
}
.article__summary .article__detail {
  width: 60%;
  padding-right: 3rem;
}
.article__summary .article__detail ul {
  gap: 2rem;
}
.article__summary .article__detail ul li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 3rem;
  color: var(--color-gray-800);
}
.article__summary .article__detail ul li strong {
  min-width: 8rem;
  font-family: var(--font-sb);
  color: var(--color-gray-900);
}
.article__additional {
  margin-top: 6rem;
}
.article__additional--info {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 5rem;
  margin-top: 7rem;
  padding: 5rem 0 0;
  background-color: var(--color-blue-50);
}
.article__additional--info strong {
  font-size: 4rem;
  font-family: var(--font-b);
  line-height: 1;
}
.article__additional--info:before, .article__additional--info:after {
  content: "";
  position: absolute;
  top: 0rem;
  left: -7rem;
  width: calc(100% + 14rem);
  height: calc(100% + 7rem);
  background-color: var(--color-blue-50);
  z-index: -1;
}
.article__additional--info:after {
  top: -0.1rem;
  height: 0.1rem;
  background-color: var(--color-gray-200);
  z-index: 1;
}
.article h5.article__title {
  font-size: 3.2rem;
  line-height: 1.5;
}

@media (max-width: 959.98px) {
  .article__overview, .article__overview--info {
    flex-direction: column;
    align-items: flex-start;
  }
  .article__overview .article__img, .article__overview--info .article__img {
    width: 100%;
  }
  .article__overview .article__detail, .article__overview--info .article__detail {
    width: 100%;
  }
}
@media (max-width: 719.98px) {
  .article__header {
    padding: 5rem 0;
  }
  .article__attach ul li, .article__prevnext ul li {
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .article__attach ul li strong:after, .article__prevnext ul li strong:after {
    display: none;
  }
  .article__content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .article__container, .article__container--info {
    padding: 3rem;
  }
  .article__summary {
    flex-direction: column;
    height: auto;
  }
  .article__summary .article__img {
    width: 100%;
    height: 29rem;
  }
  .article__summary .article__detail {
    width: 100%;
    padding: 0 3rem 5rem;
  }
}
.header {
  --filter-ico: brightness(0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: var(--header-h, 9rem);
  border-bottom: 0.1rem solid var(--color-gray-400);
  transition: all 0.3s ease 0s;
}
.header:before {
  content: "";
  position: fixed;
  top: var(--header-h, 9rem);
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden !important;
  background-color: var(--color-white);
  transition: height 0.4s ease-out 0s;
  box-shadow: 0rem 0.6rem 2rem 0 rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
}
.integrated-opened .header, .sitemap-opened .header, .header:has(.modal.is-activated) {
  z-index: 101;
}
.header.header-main {
  --filter-ico: brightness(1);
  background-color: transparent;
  color: var(--color-white);
}
.header.header-main.header--sticky {
  --filter-logo: brightness(1);
  --filter-ico: brightness(0);
}
.header.header-main.is-opened {
  --filter-logo: brightness(1);
  --filter-ico: brightness(0);
}
.header.header-main .logo__btn::before {
  filter: var(--filter-logo, brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(2deg) contrast(101%));
}
.header.is-opened {
  --gnb-open-h: 31rem;
}
.header.is-opened:before {
  height: var(--gnb-open-h);
  transition: height 0.4s ease-in-out 0s;
}
.header.is-opened .header-gnb__submenu {
  height: var(--gnb-open-h);
  transition: height 0.4s ease-in-out 0s;
}
.header .inner, .header .inner--left, .header .inner--right, .header .inner--center, .header .inner--both, .header .inner--column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  height: 100%;
}
.header-logo {
  position: relative;
  z-index: 12;
}
.header-logo .logo {
  transition: none;
  outline: none;
}
.header-logo .logo::focus {
  outline: none;
  -webkit-outline: none;
}
.header-logo .logo__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 1.7rem;
}
.header-logo .logo__btn:before {
  width: 10.3rem;
  height: 4.8rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='103' height='48' viewBox='0 0 103 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.67127 8.3252H0V26.2734H3.67127V8.3252Z' fill='%23144782'/%3E%3Cpath d='M21.7749 8.3252L9.1575 16.6743C8.8983 16.8503 8.75362 17.0687 8.75362 17.2932C8.75362 17.5178 8.8983 17.7423 9.1575 17.9122L21.7749 26.2613H15.6561L5.84192 19.7628C4.84724 19.1075 4.30469 18.2337 4.30469 17.2932C4.30469 16.3528 4.85327 15.473 5.84192 14.8237L15.6561 8.3252H21.7749Z' fill='%23144782'/%3E%3Cpath d='M45.908 13.4706C45.908 10.2244 42.8396 8.3252 38.7704 8.3252H22.6445V10.8736H37.9867C40.2052 10.8736 42.0077 11.711 42.0077 13.4706C42.0077 15.2303 40.2052 16.0676 37.9867 16.0676H32.3924C30.6744 16.0676 29.33 16.5712 28.7995 17.4146C28.3896 18.0639 28.3052 19.1135 30.2162 20.3756L39.1381 26.2734H45.2569C45.2569 26.2734 33.9417 18.798 33.6704 18.616H38.7584C42.8275 18.616 45.8959 16.7108 45.8959 13.4706' fill='%23144782'/%3E%3Cpath d='M73.9194 26.2663L63.1106 9.93811C62.0978 8.40906 60.6088 8.18457 59.8191 8.18457C59.0294 8.18457 57.5343 8.41516 56.5276 9.93811L45.7188 26.2663H50.24C50.24 26.2663 58.2999 14.0945 59.8191 11.7949C61.3382 14.0885 69.3982 26.2663 69.3982 26.2663H73.9254H73.9194Z' fill='%23144782'/%3E%3Cmask id='mask0_1593_5555' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='22' y='0' width='22' height='34'%3E%3Cpath d='M43.6934 0C32.0646 0 22.5941 9.52023 22.582 21.2248C22.582 25.6603 23.9204 29.9077 26.4583 33.5119L28.4296 32.1042C26.181 28.9126 24.9994 25.1506 24.9994 21.2248C25.0115 10.849 33.403 2.421 43.7055 2.43312V0H43.6873' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1593_5555)'%3E%3Cpath d='M42.2674 -5.35547L14.1875 2.28109L24.0106 38.8738L52.0905 31.2372L42.2674 -5.35547Z' fill='url(%23paint0_linear_1593_5555)'/%3E%3C/g%3E%3Cpath d='M46.5567 36.8904V35.7133H43.874V34.0508H41.8545V35.7133H39.1719V36.8904H40.902L40.7996 36.9693C40.4559 37.2485 40.1726 37.5943 39.9556 38.0069C39.7386 38.4134 39.63 38.8624 39.63 39.3357C39.63 40.1852 39.9496 40.9254 40.5825 41.5322C41.2155 42.1451 41.9871 42.4545 42.8672 42.4545C43.7474 42.4545 44.5191 42.1451 45.146 41.5322C45.773 40.9194 46.0924 40.1791 46.0924 39.3297C46.0924 38.8564 45.9839 38.4134 45.7669 38.0008C45.5499 37.5882 45.2665 37.2424 44.923 36.9633L44.8265 36.8844H46.5567V36.8904ZM43.7836 40.7495C43.5184 41.156 43.2109 41.3563 42.8672 41.3563C42.5237 41.3563 42.2162 41.1499 41.945 40.7495C41.6797 40.349 41.547 39.8758 41.547 39.3357C41.547 38.7957 41.6797 38.3224 41.945 37.928C42.2102 37.5336 42.5237 37.3274 42.8672 37.3274C43.2109 37.3274 43.5184 37.5275 43.7836 37.928C44.0428 38.3224 44.1694 38.7957 44.1694 39.3357C44.1694 39.8758 44.0368 40.349 43.7836 40.7495Z' fill='%23515151'/%3E%3Cpath d='M50.2344 47.9998V46.8045H43.549V43.5947H41.5234V46.5376C41.5234 46.9866 41.6621 47.3445 41.9273 47.6054C42.1986 47.8664 42.5422 47.9998 42.9461 47.9998H50.2344Z' fill='%23515151'/%3E%3Cpath d='M49.7617 34.207H47.7422V44.3765H49.7617V38.5939H51.8776V37.4047H49.7617V34.207Z' fill='%23515151'/%3E%3Cpath d='M64.21 40.7375V39.5422H62.1484L62.1966 39.4754C62.3292 39.2813 62.4497 38.9597 62.5522 38.5228C62.6487 38.0859 62.6969 37.6672 62.6969 37.2789V34.2754H53.781V35.4707H60.6774V37.3396C60.6774 37.728 60.6593 38.1163 60.6292 38.4986C60.599 38.8808 60.5267 39.2206 60.4182 39.5118L60.4061 39.5422H52.3281V40.7375H57.2171V43.0493H53.7267V44.2386H60.6533V47.9945H62.6728V43.0432H59.2426V40.7314H64.216L64.21 40.7375Z' fill='%23515151'/%3E%3Cpath d='M72.2615 34.6562H65.8594V41.5674C65.8594 42.0042 65.992 42.3623 66.2452 42.6231C66.4984 42.884 66.842 43.0175 67.27 43.0175H72.2615V34.6562ZM67.8789 35.8456H70.2359V41.8222H67.8789V35.8456Z' fill='%23515151'/%3E%3Cpath d='M75.9939 34.207H73.9688V47.9928H75.9939V38.7942H78.11V37.5989H75.9939V34.207Z' fill='%23515151'/%3E%3Cpath d='M86.4043 42.2298C85.5779 42.0417 84.8305 41.4835 84.1853 40.5672C83.522 39.6207 83.1791 38.4739 83.1791 37.139V34.5117H81.1293V37.139C81.1293 38.4618 80.7977 39.6085 80.1405 40.5611C79.5013 41.4835 78.7539 42.0417 77.9102 42.2298L78.8809 43.1399C79.5434 43.0671 80.2127 42.7516 80.8819 42.2055C81.5572 41.6473 81.973 41.0527 82.1181 40.4338L82.1602 40.2578L82.2084 40.4277C82.3708 41.0527 82.7926 41.6473 83.4619 42.2055C84.1191 42.7577 84.7944 43.0732 85.4636 43.1339L86.4103 42.2237L86.4043 42.2298Z' fill='%23515151'/%3E%3Cpath d='M89.0844 34.207H87.0586V47.9928H89.0844V38.7214H91.1944V37.5261H89.0844V34.207Z' fill='%23515151'/%3E%3Cpath d='M100.991 34.2076V42.933L100.961 42.9451C100.702 43.0361 100.377 43.1089 99.991 43.1757C99.6113 43.2363 99.1887 43.2667 98.7247 43.2667H97.0606V42.1805L97.0907 42.1684C97.7178 41.956 98.2427 41.5677 98.6405 41.0337C99.0443 40.4937 99.2428 39.8809 99.2428 39.2134C99.2428 38.8008 99.1586 38.4004 98.9901 38.0302C98.827 37.6601 98.5984 37.3324 98.3269 37.0534L98.2487 36.9745H99.7797V35.7974H97.0546V34.1348H95.0296V35.7974H92.3165V36.9745H93.8535L93.7753 37.0534C93.4918 37.3264 93.2692 37.654 93.1 38.0302C92.9376 38.4004 92.8594 38.8008 92.8594 39.2134C92.8594 39.887 93.0639 40.4998 93.4617 41.0337C93.8595 41.5738 94.3784 41.95 94.9995 42.1563H95.0296V43.2667H92.2383V44.462H98.6405C99.0744 44.462 99.4962 44.4135 99.888 44.3164C100.28 44.2193 100.629 44.1101 100.913 43.9766L100.973 43.9463V47.9995H102.999V34.2076H100.973H100.991ZM96.0605 41.2098C95.7169 41.2098 95.4093 41.0034 95.1619 40.603C94.9145 40.2086 94.7882 39.7353 94.7882 39.2074C94.7882 38.6795 94.9145 38.2062 95.1619 37.8118C95.4153 37.4053 95.7169 37.2051 96.0605 37.2051C96.4041 37.2051 96.717 37.4113 96.9704 37.8118C97.2118 38.2062 97.3381 38.6795 97.3381 39.2074C97.3381 39.7353 97.2178 40.2086 96.9704 40.603C96.723 41.0095 96.4162 41.2098 96.0605 41.2098Z' fill='%23515151'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1593_5555' x1='35.7856' y1='30.0974' x2='30.3219' y2='10.0073' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='0.02' stop-color='%23EDF8F8'/%3E%3Cstop offset='0.09' stop-color='%23BCE7E3'/%3E%3Cstop offset='0.17' stop-color='%238FD7D1'/%3E%3Cstop offset='0.25' stop-color='%2368CAC1'/%3E%3Cstop offset='0.34' stop-color='%2348BEB4'/%3E%3Cstop offset='0.43' stop-color='%232DB5A9'/%3E%3Cstop offset='0.53' stop-color='%2319ADA1'/%3E%3Cstop offset='0.64' stop-color='%230BA89B'/%3E%3Cstop offset='0.78' stop-color='%2302A598'/%3E%3Cstop offset='1' stop-color='%2300A597'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  content: "";
}
.header-logo .logo__text {
  font-size: 3.2rem;
}
.header-gnb {
  width: 50%;
  margin-left: 1rem;
}
.header-gnb__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 7rem;
  font-size: 1.9rem;
  font-family: var(--font-b);
}
.header-gnb__menu-item > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  height: var(--header-h, 9rem);
}
.header-gnb__menu-item > a span {
  position: relative;
  display: inline-block;
  line-height: var(--header-h, 9rem);
}
.header-gnb__menu-item > a span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 0.6rem;
  background-color: var(--color-point);
  transition: all 0.3s ease 0s;
}
.header-gnb__menu-item.is-shown > a span:after {
  width: 100%;
}
.header-gnb__submenu {
  position: absolute;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 2.4rem;
  font-family: var(--font-sb);
  padding: 4rem 0 0;
  line-height: 1;
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease-out 0s;
}
.header-gnb__submenu-item a {
  position: relative;
  transition: all 0.3s ease 0s;
  font-size: 1.7rem;
  font-weight: var(--font-sb);
  outline-offset: -1px;
}
.header-gnb__submenu-item a:hover, .header-gnb__submenu-item a:focus {
  padding-left: 1.2rem;
}
.header-gnb__submenu-item a:hover:before, .header-gnb__submenu-item a:focus:before {
  content: "";
  position: absolute;
  left: 0;
  content: "•";
  width: 1rem;
  height: 100%;
  color: var(--color-point);
  transition: all 0.3s ease 0s;
}
.header-util__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.8rem;
}
.header-util__icon > li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.header-util__icon > li.header-util__items-popup {
  display: none;
  margin-right: 0.5rem;
}
.header-main .header-util__icon > li.header-util__items-popup {
  display: block;
}
.header-util__icon > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-family: var(--font-b);
  line-height: 2;
}
.header .btn__security {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.4rem;
  padding: 0.8rem;
}
.header .btn__security:before {
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.9987 12.0836V7.08363M7.4987 9.58363H12.4987M16.6654 10.0003C16.6654 14.0907 12.2037 17.0656 10.5804 18.0127C10.3959 18.1203 10.3036 18.1741 10.1734 18.2021C10.0724 18.2237 9.925 18.2237 9.82396 18.2021C9.69378 18.1741 9.60153 18.1203 9.41704 18.0127C7.79367 17.0656 3.33203 14.0907 3.33203 10.0003V6.01497C3.33203 5.34871 3.33203 5.01558 3.441 4.72922C3.53726 4.47625 3.69368 4.25053 3.89675 4.07157C4.12661 3.869 4.43853 3.75203 5.06237 3.51809L9.53053 1.84253C9.70378 1.77756 9.7904 1.74508 9.87952 1.7322C9.95856 1.72078 10.0388 1.72078 10.1179 1.7322C10.207 1.74508 10.2936 1.77756 10.4669 1.84253L14.935 3.51809C15.5589 3.75203 15.8708 3.869 16.1006 4.07157C16.3037 4.25053 16.4601 4.47625 16.5564 4.72922C16.6654 5.01558 16.6654 5.34871 16.6654 6.01497V10.0003Z' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  content: "";
}
.header .btn__security-text {
  padding-top: 0.2rem;
  font-size: 1.5rem;
  font-family: var(--font-b);
  color: currentColor;
}
.header .btn__integrated {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 0.8rem;
  border: 0;
}
.header .btn__integrated:before {
  width: 1.6rem;
  height: 1.6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='12' height='12' rx='6' stroke='%23fff' stroke-width='2'/%3E%3Cpath d='M11.4609 11.458L14.9965 14.9935' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  content: "";
}
.header .btn__integrated-text {
  overflow: hidden;
  width: 0.1px;
  height: 0.1px;
  margin: 0.2rem 0 0 -1px;
  font-size: 1.5rem;
  font-family: var(--font-b);
  color: transparent;
  opacity: 0;
}
.header .btn__sitemap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 0.8rem;
  border: 0;
}
.header .btn__sitemap:before {
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4H18' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 10H18' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 16H18' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  content: "";
}
.header .btn__popup {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.35rem;
  position: relative;
  margin-left: 0.8rem;
  padding: 0.6rem 1.6rem;
  border: 0.2rem solid var(--color-gray-200);
  font-size: 1.2rem;
  font-family: var(--font-b);
  border-radius: 2rem;
  transition-property: background;
}
.header .btn__popup:before {
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8606 15.185C11.8606 16.5104 10.795 17.585 9.48047 17.585C8.16597 17.585 7.10037 16.5104 7.10037 15.185M10.9058 4.97581C11.2513 4.61587 11.4639 4.12546 11.4639 3.58496C11.4639 2.48039 10.5759 1.58496 9.48047 1.58496C8.38506 1.58496 7.49705 2.48039 7.49705 3.58496C7.49705 4.12546 7.70967 4.61587 8.05518 4.97581M1.98062 6.64333C1.96924 5.48225 2.59004 4.39801 3.59291 3.82741M16.9803 6.64333C16.9917 5.48225 16.3709 4.39801 15.368 3.82741M14.2407 8.94496C14.2407 7.84166 13.7392 6.78355 12.8464 6.0034C11.9537 5.22325 10.743 4.78496 9.48047 4.78496C8.21798 4.78496 7.00721 5.22325 6.1145 6.0034C5.22178 6.78355 4.72026 7.84166 4.72026 8.94496C4.72026 10.7704 4.27132 12.1054 3.71115 13.0607C3.07271 14.1495 2.75349 14.6938 2.76609 14.8239C2.78051 14.9726 2.80707 15.0196 2.92673 15.1078C3.03132 15.185 3.5568 15.185 4.60776 15.185H14.3532C15.4041 15.185 15.9296 15.185 16.0342 15.1078C16.1539 15.0196 16.1804 14.9726 16.1948 14.8239C16.2075 14.6938 15.8882 14.1495 15.2498 13.0607C14.6896 12.1054 14.2407 10.7704 14.2407 8.94496Z' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  content: "";
}
.header .btn__popup:hover {
  background-color: var(--color-white);
  font-family: var(--font-b);
  color: var(--color-point);
}
.header .btn__popup:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8606 15.185C11.8606 16.5104 10.795 17.585 9.48047 17.585C8.16597 17.585 7.10037 16.5104 7.10037 15.185M10.9058 4.97581C11.2513 4.61587 11.4639 4.12546 11.4639 3.58496C11.4639 2.48039 10.5759 1.58496 9.48047 1.58496C8.38506 1.58496 7.49705 2.48039 7.49705 3.58496C7.49705 4.12546 7.70967 4.61587 8.05518 4.97581M1.98062 6.64333C1.96924 5.48225 2.59004 4.39801 3.59291 3.82741M16.9803 6.64333C16.9917 5.48225 16.3709 4.39801 15.368 3.82741M14.2407 8.94496C14.2407 7.84166 13.7392 6.78355 12.8464 6.0034C11.9537 5.22325 10.743 4.78496 9.48047 4.78496C8.21798 4.78496 7.00721 5.22325 6.1145 6.0034C5.22178 6.78355 4.72026 7.84166 4.72026 8.94496C4.72026 10.7704 4.27132 12.1054 3.71115 13.0607C3.07271 14.1495 2.75349 14.6938 2.76609 14.8239C2.78051 14.9726 2.80707 15.0196 2.92673 15.1078C3.03132 15.185 3.5568 15.185 4.60776 15.185H14.3532C15.4041 15.185 15.9296 15.185 16.0342 15.1078C16.1539 15.0196 16.1804 14.9726 16.1948 14.8239C16.2075 14.6938 15.8882 14.1495 15.2498 13.0607C14.6896 12.1054 14.2407 10.7704 14.2407 8.94496Z' stroke='%237343ff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.header .btn__popup em {
  position: absolute;
  top: -0.4rem;
  right: -0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0.2rem 0.5rem 0.1rem;
  border-radius: 50%;
  background-color: #ea0c0c;
  line-height: 1;
  color: var(--color-white);
  box-sizing: border-box;
}
.header .sitemap {
  position: fixed;
  top: var(--header-h, 9rem);
  left: 0;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100 - var(--header-h, 9rem));
  background-color: var(--color-white);
  overflow-y: overlay;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
.header .sitemap::-webkit-scrollbar {
  width: 0.8rem;
}
.header .sitemap::-webkit-scrollbar-thumb {
  background-color: var(--color-gray-400);
  border-radius: 0.8rem;
}
.header .sitemap::-webkit-scrollbar-track {
  background-color: var(--color-gray-300);
}
.header .sitemap > .inner, .header .sitemap > .inner--left, .header .sitemap > .inner--right, .header .sitemap > .inner--center, .header .sitemap > .inner--both, .header .sitemap > .inner--column {
  align-items: stretch;
  justify-content: flex-start;
  gap: 10rem;
  padding: 4rem 0;
  height: auto;
  min-height: 100%;
}
.header .sitemap nav {
  width: 100%;
  padding: 1rem 1rem 1rem 11rem;
}
.header .sitemap__text {
  display: none;
  position: relative;
  padding: 7.6rem 0 3.9rem 3.4rem;
  background-color: var(--color-point);
  font-size: 2.6rem;
  font-family: var(--font-sb);
  line-height: 3.64rem;
  color: var(--color-white);
  letter-spacing: -0.078rem;
}
.header .sitemap__text strong {
  display: block;
  font-size: 3.8rem;
  line-height: 5.32rem;
  letter-spacing: -0.114rem;
}
.header .sitemap__menu {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 6.7rem 0;
  background-color: var(--color-white);
}
.header .sitemap__menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 100%;
  font-family: var(--font-sb);
  line-height: 1;
}
.header .sitemap__menu-item strong {
  min-width: 26.5rem;
  margin-bottom: 2rem;
  font-size: 2.8rem;
  font-family: var(--font-b);
  color: var(--color-point);
}
.header .sitemap__submenu {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.header .sitemap__submenu-item {
  min-width: 20rem;
}
.header .sitemap__submenu-item > a {
  font-size: 2.1rem;
  font-family: var(--font-b);
  color: var(--color-point);
}
.header .sitemap__submenu ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 1.9rem;
}
.header .sitemap__submenu ul li {
  font-size: 1.7rem;
  font-weight: var(--font-sb);
  color: var(--color-gray-900);
}
.header .integrated {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100vw;
  height: var(--integrated-open-h, 40rem);
  padding: 16.4rem 0 6rem;
  background-color: var(--color-white);
  box-shadow: 0rem 0.6rem 2rem 0 rgba(0, 0, 0, 0.07);
  visibility: hidden;
  z-index: 11;
  box-sizing: border-box;
  transition: all 0.7s ease 0s;
}
.header .integrated > .inner, .header .integrated > .inner--left, .header .integrated > .inner--right, .header .integrated > .inner--center, .header .integrated > .inner--both, .header .integrated > .inner--column {
  align-items: flex-start;
  gap: 10rem;
}
.header .integrated-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
  font-size: 4.2rem;
  font-family: var(--font-sb);
  line-height: 1;
}
.header .integrated-box__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.6rem;
  width: 100%;
}
.header .integrated-box__content input {
  width: 70rem;
  max-width: 100%;
  padding: 2.2rem 4rem;
  border: 0.3rem solid var(--color-gray-260);
  border-radius: 2.4rem;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-gray-500);
  box-sizing: border-box;
}
.header .integrated-box__content input::-moz-placeholder {
  color: var(--color-gray-500);
}
.header .integrated-box__content input::placeholder {
  color: var(--color-gray-500);
}
.header .integrated-box__content .btn__search {
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 2.4rem;
  background-color: var(--color-gray-800);
  border-color: var(--color-gray-800);
}
.header .integrated-box__content .btn__search:before {
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  padding: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='8.5' y='8.5' width='20.2679' height='20.2647' rx='10.1324' stroke='white' stroke-width='4'/%3E%3Cpath d='M26.3711 26.3672L32.5011 32.4964' stroke='white' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  content: "";
}

.sitemap-opened {
  overflow: hidden;
}
.sitemap-opened .header {
  --filter-logo: brightness(1);
  --filter-ico: brightness(0);
}
.sitemap-opened .header-gnb {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.sitemap-opened .header .btn__sitemap:before {
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 23L22.9203 1.07969' stroke='%231D1D1D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M23 23L1.07969 1.07969' stroke='%231D1D1D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.sitemap-opened .header .btn__integrated-text {
  width: auto;
  height: auto;
  margin-left: 0.4rem;
  color: var(--color-gray-900);
  opacity: 1;
}
.sitemap-opened .header .btn__popup {
  display: none;
}
.sitemap-opened .sitemap {
  z-index: 10;
  visibility: visible;
  opacity: 1;
}

.integrated-opened:before {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  background-color: var(--color-gray-900);
  opacity: 0.6;
  content: "";
}
.integrated-opened .header {
  --filter-logo: brightness(1);
}
.integrated-opened .header:before {
  z-index: 12;
  border-bottom: 1px solid var(--color-gray-400);
}
.integrated-opened .header .integrated {
  top: 0;
  visibility: visible;
}
.integrated-opened .header .btn__security, .integrated-opened .header .btn__sitemap, .integrated-opened .header .btn__popup {
  display: none;
}
.integrated-opened .header .btn__integrated {
  z-index: 12;
}
.integrated-opened .header .btn__integrated:before {
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 23L22.9203 1.07969' stroke='%231D1D1D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M23 23L1.07969 1.07969' stroke='%231D1D1D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.header, .header.header--sticky, .header.is-opened, .sitemap-opened .header, .integrated-opened .header {
  background-color: var(--color-white);
  color: var(--color-gray-900);
}
.header .btn__security:before, .header .btn__integrated:before, .header .btn__sitemap:before, .header .btn__popup:before {
  filter: var(--filter-ico, brightness(1));
}

@media (max-width: 1399.98px) {
  .header > .inner, .header > .inner--left, .header > .inner--right, .header > .inner--center, .header > .inner--both, .header > .inner--column {
    padding: 0 1.1rem 0 1.6rem;
  }
}
@media (max-width: 1199.98px) {
  .integrated-opened::before {
    display: block;
  }
  .integrated-opened .header {
    --integrated-open-h: 30rem;
  }
  .integrated-opened .header::before {
    border: 0;
  }
  .integrated-opened .header .logo {
    display: none;
  }
  .integrated-opened .header-util .integrated {
    padding: 10rem 3.4rem 7.9rem;
    border-radius: 0 0 2.4rem 2.4rem;
  }
  .integrated-opened .header-util .integrated-box {
    gap: 2.7rem;
    font-size: 3.4rem;
  }
  .integrated-opened .header-util .integrated-box input {
    padding: 1.8rem 3rem;
  }
  .integrated-opened .header-util .btn__integrated {
    top: 0.15rem;
    right: -0.9rem;
  }
  .integrated-opened .header-util .btn__integrated::before {
    width: 2rem;
    height: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.34375 17.6562L17.193 2.80701' stroke='%231D1D1D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17.1914 17.6562L2.34216 2.80701' stroke='%231D1D1D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }
  .integrated-opened .header-util .btn__search {
    width: 6rem;
    height: 6rem;
  }
  .sitemap-opened .header-logo {
    z-index: -1;
    visibility: hidden;
    opacity: 0;
  }
  .sitemap-opened .header-util {
    --filter-ico: brightness(1);
  }
  .sitemap-opened .header-util .btn__integrated {
    position: absolute;
    top: 1rem;
    right: 7.5rem;
    z-index: 11;
  }
  .sitemap-opened .header-util .btn__integrated-text {
    position: absolute !important;
    left: -999.9rem;
    top: -999.9rem;
    width: 0.1rem !important;
    height: 0.1rem !important;
    padding: 0 !important;
    margin: -0.1rem !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  .sitemap-opened .header-util .btn__sitemap {
    top: 1rem !important;
    right: 3.5rem;
    left: auto !important;
  }
  .sitemap-opened .header-util .btn__sitemap:before {
    width: 2rem;
    height: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.34375 17.6562L17.193 2.80701' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17.1914 17.6562L2.34216 2.80701' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }
  .sitemap-opened .header .sitemap {
    left: 0;
  }
  .sitemap-opened .header .sitemap:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    background-color: rgba(29, 29, 29, 0.6);
  }
  .sitemap-opened .header .btn__sitemap {
    position: absolute;
    top: 2rem;
    left: calc(100vw - 7rem);
    z-index: 11;
  }
  .header {
    --header-h: 6rem;
  }
  .header-gnb {
    display: none;
  }
  .header-util__icon {
    gap: 0.4rem;
  }
  .header .logo__btn {
    gap: 1.1rem;
  }
  .header .logo__btn::before {
    width: 6rem;
    height: 3rem;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='31' viewBox='0 0 60 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1593_4439)'%3E%3Cmask id='mask0_1593_4439' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='60' height='31'%3E%3Cpath d='M59.0559 0.390625H0.00390625V30.1826H59.0559V0.390625Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1593_4439)'%3E%3Cpath d='M2.10834 8.03223H0.00390625V18.0532H2.10834V8.03223Z' fill='%23144782'/%3E%3Cpath d='M12.4869 8.03418L5.25437 12.6957C5.10579 12.794 5.02286 12.9159 5.02286 13.0413C5.02286 13.1667 5.10579 13.292 5.25437 13.3869L12.4869 18.0484H8.97947L3.35382 14.4201C2.78366 14.0542 2.47266 13.5664 2.47266 13.0413C2.47266 12.5162 2.78711 12.025 3.35382 11.6625L8.97947 8.03418H12.4869Z' fill='%23144782'/%3E%3Cpath d='M26.3194 10.907C26.3194 9.09456 24.5605 8.03418 22.228 8.03418H12.9844V9.45705H21.7788C23.0504 9.45705 24.0837 9.92457 24.0837 10.907C24.0837 11.8895 23.0504 12.357 21.7788 12.357H18.572C17.5872 12.357 16.8166 12.6382 16.5125 13.109C16.2775 13.4716 16.2292 14.0576 17.3246 14.7623L22.4388 18.0552H25.9462C25.9462 18.0552 19.4601 13.8815 19.3046 13.7798H22.2211C24.5536 13.7798 26.3125 12.7161 26.3125 10.907' fill='%23144782'/%3E%3Cpath d='M42.3799 18.0506L36.1841 8.93413C35.6036 8.08042 34.7501 7.95508 34.2974 7.95508C33.8447 7.95508 32.9877 8.08382 32.4107 8.93413L26.2148 18.0506H28.8065C28.8065 18.0506 33.4266 11.2548 34.2974 9.9708C35.1682 11.2514 39.7883 18.0506 39.7883 18.0506H42.3834H42.3799Z' fill='%23144782'/%3E%3Cmask id='mask1_1593_4439' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='12' y='3' width='14' height='20'%3E%3Cpath d='M25.0428 3.37793C18.377 3.37793 12.9483 8.69334 12.9414 15.2283C12.9414 17.7048 13.7086 20.0762 15.1634 22.0885L16.2933 21.3026C15.0044 19.5206 14.3271 17.4202 14.3271 15.2283C14.334 9.43524 19.1442 4.72964 25.0497 4.73641V3.37793H25.0393' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask1_1593_4439)'%3E%3Cpath d='M24.2248 0.397461L8.12891 4.66116L13.7597 25.0919L29.8555 20.8282L24.2248 0.397461Z' fill='url(%23paint0_linear_1593_4439)'/%3E%3C/g%3E%3Cpath d='M26.6901 23.977V23.3198H25.1523V22.3916H23.9948V23.3198H22.457V23.977H23.4488L23.3901 24.0211C23.1931 24.177 23.0307 24.37 22.9063 24.6004C22.7819 24.8274 22.7197 25.0781 22.7197 25.3423C22.7197 25.8166 22.9028 26.2299 23.2656 26.5687C23.6285 26.9109 24.0708 27.0836 24.5753 27.0836C25.0798 27.0836 25.5221 26.9109 25.8815 26.5687C26.2409 26.2266 26.424 25.8132 26.424 25.339C26.424 25.0747 26.3618 24.8274 26.2374 24.597C26.113 24.3666 25.9506 24.1735 25.7536 24.0177L25.6983 23.9737H26.6901V23.977ZM25.1005 26.1317C24.9485 26.3587 24.7723 26.4705 24.5753 26.4705C24.3783 26.4705 24.2021 26.3553 24.0466 26.1317C23.8945 25.9081 23.8185 25.6439 23.8185 25.3423C23.8185 25.0408 23.8945 24.7766 24.0466 24.5564C24.1986 24.3362 24.3783 24.221 24.5753 24.221C24.7723 24.221 24.9485 24.3328 25.1005 24.5564C25.2491 24.7766 25.3217 25.0408 25.3217 25.3423C25.3217 25.6439 25.2457 25.9081 25.1005 26.1317Z' fill='%23515151'/%3E%3Cpath d='M28.7979 30.1802V29.5128H24.9658V27.7207H23.8047V29.3638C23.8047 29.6145 23.8842 29.8143 24.0362 29.96C24.1917 30.1057 24.3887 30.1802 24.6202 30.1802H28.7979Z' fill='%23515151'/%3E%3Cpath d='M28.5287 22.4795H27.3711V28.1574H28.5287V24.9288H29.7416V24.2648H28.5287V22.4795Z' fill='%23515151'/%3E%3Cpath d='M36.807 26.1256V25.4582H35.6252L35.6528 25.4209C35.7289 25.3125 35.798 25.1329 35.8567 24.889C35.912 24.6451 35.9397 24.4113 35.9397 24.1945V22.5176H30.8289V23.185H34.782V24.2284C34.782 24.4452 34.7717 24.6621 34.7544 24.8755C34.7371 25.0889 34.6956 25.2786 34.6334 25.4412L34.6265 25.4582H29.9961V26.1256H32.7986V27.4163H30.7978V28.0803H34.7682V30.1773H35.9258V27.4129H33.9596V26.1222H36.8104L36.807 26.1256Z' fill='%23515151'/%3E%3Cpath d='M41.4237 22.7334H37.7539V26.5921C37.7539 26.836 37.8299 27.0359 37.9751 27.1815C38.1202 27.3272 38.3172 27.4017 38.5625 27.4017H41.4237V22.7334ZM38.9115 23.3974H40.2626V26.7343H38.9115V23.3974Z' fill='%23515151'/%3E%3Cpath d='M43.5632 22.4795H42.4023V30.1765H43.5632V25.0406H44.7761V24.3732H43.5632V22.4795Z' fill='%23515151'/%3E%3Cpath d='M49.5331 26.9576C49.0593 26.8526 48.6309 26.541 48.2611 26.0294C47.8809 25.5009 47.6843 24.8606 47.6843 24.1153V22.6484H46.5093V24.1153C46.5093 24.8539 46.3192 25.4941 45.9425 26.026C45.5761 26.541 45.1477 26.8526 44.6641 26.9576L45.2205 27.4658C45.6003 27.4252 45.9839 27.249 46.3675 26.9441C46.7546 26.6324 46.993 26.3004 47.0761 25.9549L47.1003 25.8567L47.1279 25.9515C47.221 26.3004 47.4628 26.6324 47.8464 26.9441C48.2231 27.2524 48.6102 27.4286 48.9938 27.4624L49.5365 26.9543L49.5331 26.9576Z' fill='%23515151'/%3E%3Cpath d='M51.0675 22.4795H49.9062V30.1765H51.0675V25H52.277V24.3326H51.0675V22.4795Z' fill='%23515151'/%3E%3Cpath d='M57.8923 22.4762V27.3478L57.875 27.3546C57.7267 27.4054 57.5401 27.4461 57.319 27.4833C57.1013 27.5172 56.8591 27.5342 56.5931 27.5342H55.6392V26.9277L55.6565 26.9209C56.016 26.8024 56.3168 26.5856 56.5448 26.2874C56.7763 25.9859 56.8901 25.6438 56.8901 25.2711C56.8901 25.0407 56.8418 24.8172 56.7453 24.6105C56.6517 24.4039 56.5207 24.2209 56.3651 24.0651L56.3203 24.021H57.1979V23.3638H55.6358V22.4355H54.475V23.3638H52.9198V24.021H53.8009L53.756 24.0651C53.5935 24.2175 53.4659 24.4005 53.369 24.6105C53.2759 24.8172 53.231 25.0407 53.231 25.2711C53.231 25.6472 53.3483 25.9893 53.5763 26.2874C53.8043 26.589 54.1017 26.799 54.4578 26.9142H54.475V27.5342H52.875V28.2015H56.5448C56.7935 28.2015 57.0354 28.1744 57.2599 28.1202C57.4845 28.066 57.6849 28.005 57.8474 27.9305L57.8819 27.9136V30.1766H59.0431V22.4762H57.8819H57.8923ZM55.066 26.3857C54.869 26.3857 54.6927 26.2705 54.5509 26.0469C54.4091 25.8267 54.3366 25.5625 54.3366 25.2677C54.3366 24.973 54.4091 24.7088 54.5509 24.4886C54.6961 24.2616 54.869 24.1498 55.066 24.1498C55.2629 24.1498 55.4423 24.2649 55.5875 24.4886C55.7259 24.7088 55.7983 24.973 55.7983 25.2677C55.7983 25.5625 55.7293 25.8267 55.5875 26.0469C55.4457 26.2739 55.2698 26.3857 55.066 26.3857Z' fill='%23515151'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1593_4439' x1='20.5093' y1='20.1918' x2='17.5274' y2='8.93516' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='0.02' stop-color='%23EDF8F8'/%3E%3Cstop offset='0.09' stop-color='%23BCE7E3'/%3E%3Cstop offset='0.17' stop-color='%238FD7D1'/%3E%3Cstop offset='0.25' stop-color='%2368CAC1'/%3E%3Cstop offset='0.34' stop-color='%2348BEB4'/%3E%3Cstop offset='0.43' stop-color='%232DB5A9'/%3E%3Cstop offset='0.53' stop-color='%2319ADA1'/%3E%3Cstop offset='0.64' stop-color='%230BA89B'/%3E%3Cstop offset='0.78' stop-color='%2302A598'/%3E%3Cstop offset='1' stop-color='%2300A597'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_1593_4439'%3E%3Crect width='59.052' height='29.792' fill='white' transform='translate(0 0.386719)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  }
  .header .logo__text {
    font-size: 2rem;
  }
  .header .btn__security {
    padding: 0.5rem;
  }
  .header .btn__security:before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.9987 12.0836V7.08363M7.4987 9.58363H12.4987M16.6654 10.0003C16.6654 14.0907 12.2037 17.0656 10.5804 18.0127C10.3959 18.1203 10.3036 18.1741 10.1734 18.2021C10.0724 18.2237 9.925 18.2237 9.82396 18.2021C9.69378 18.1741 9.60153 18.1203 9.41704 18.0127C7.79367 17.0656 3.33203 14.0907 3.33203 10.0003V6.01497C3.33203 5.34871 3.33203 5.01558 3.441 4.72922C3.53726 4.47625 3.69368 4.25053 3.89675 4.07157C4.12661 3.869 4.43853 3.75203 5.06237 3.51809L9.53053 1.84253C9.70378 1.77756 9.7904 1.74508 9.87952 1.7322C9.95856 1.72078 10.0388 1.72078 10.1179 1.7322C10.207 1.74508 10.2936 1.77756 10.4669 1.84253L14.935 3.51809C15.5589 3.75203 15.8708 3.869 16.1006 4.07157C16.3037 4.25053 16.4601 4.47625 16.5564 4.72922C16.6654 5.01558 16.6654 5.34871 16.6654 6.01497V10.0003Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }
  .header .btn__security-text {
    position: absolute !important;
    left: -999.9rem;
    top: -999.9rem;
    width: 0.1rem !important;
    height: 0.1rem !important;
    padding: 0 !important;
    margin: -0.1rem !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  .header .btn__integrated {
    padding: 0.5rem;
  }
  .header .btn__integrated:before {
    width: 2rem;
    height: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='12' height='12' rx='6' stroke='white' stroke-width='2'/%3E%3Cpath d='M13.4609 13.458L16.9965 16.9935' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  }
  .header .btn__sitemap {
    padding: 0.5rem;
  }
  .header .btn__sitemap:before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4H18' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 10H18' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 16H18' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }
  .header .btn__popup {
    gap: 0;
    padding: 0.5rem 1.1rem;
    margin-left: 0.5rem;
  }
  .header .btn__popup:before {
    width: 1.9rem;
    height: 1.9rem;
    background-image: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8589 15.0443C11.8589 16.3559 10.7956 17.4193 9.48392 17.4193C8.17224 17.4193 7.10892 16.3559 7.10892 15.0443M10.9062 4.94146C11.2509 4.58528 11.4631 4.09997 11.4631 3.5651C11.4631 2.47204 10.577 1.58594 9.48392 1.58594C8.39086 1.58594 7.50475 2.47204 7.50475 3.5651C7.50475 4.09997 7.71692 4.58528 8.06169 4.94146M2.00015 6.59161C1.9888 5.44263 2.60826 4.36969 3.60899 3.80503M16.9677 6.59161C16.979 5.44263 16.3596 4.36969 15.3589 3.80503M14.2339 8.86927C14.2339 7.77746 13.7335 6.73037 12.8427 5.95835C11.9519 5.18632 10.7437 4.7526 9.48392 4.7526C8.22414 4.7526 7.01596 5.18632 6.12516 5.95835C5.23437 6.73037 4.73392 7.77746 4.73392 8.86927C4.73392 10.6757 4.28594 11.9968 3.72697 12.9421C3.0899 14.0196 2.77136 14.5583 2.78394 14.6869C2.79833 14.8342 2.82483 14.8806 2.94423 14.9679C3.0486 15.0443 3.57295 15.0443 4.62165 15.0443H14.3462C15.3949 15.0443 15.9192 15.0443 16.0236 14.9679C16.143 14.8806 16.1695 14.8342 16.1839 14.6869C16.1965 14.5583 15.8779 14.0196 15.2409 12.9421C14.6819 11.9968 14.2339 10.6757 14.2339 8.86927Z' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }
  .header .btn__popup span {
    position: absolute !important;
    left: -999.9rem;
    top: -999.9rem;
    width: 0.1rem !important;
    height: 0.1rem !important;
    padding: 0 !important;
    margin: -0.1rem !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  .header .sitemap {
    top: 0;
    left: -100%;
    width: calc(100vw - 2rem);
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: hidden;
    border-radius: 0 3.2rem 0 0;
    transition: all 0.3s ease 0s;
  }
  .header .sitemap > .inner, .header .sitemap > .inner--left, .header .sitemap > .inner--right, .header .sitemap > .inner--center, .header .sitemap > .inner--both, .header .sitemap > .inner--column {
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
  }
  .header .sitemap nav {
    position: relative;
    padding: 0rem;
    overflow-y: overlay;
    height: calc(var(--vh, 1vh) * 100 - 19.5rem);
    background-color: var(--color-white);
  }
  .header .sitemap nav::-webkit-scrollbar {
    width: 0.8rem;
  }
  .header .sitemap nav::-webkit-scrollbar-thumb {
    background-color: var(--color-gray-400);
    border-radius: 0.8rem;
  }
  .header .sitemap nav::-webkit-scrollbar-track {
    background-color: var(--color-gray-300);
  }
  .header .sitemap__text {
    display: block;
  }
  .header .sitemap__menu {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 0;
    height: 100%;
  }
  .header .sitemap__menu-item {
    align-items: center;
    gap: 2rem;
  }
  .header .sitemap__menu-item strong {
    flex: 0 0 auto;
    min-width: 0;
    width: 14rem;
    margin-bottom: 0rem;
    padding-left: 1.4rem;
    background-color: var(--color-gray-50);
    border-bottom: 0.1rem solid var(--color-gray-200);
    font-size: 1.5rem;
    color: var(--color-gray-800);
    line-height: 8rem;
  }
  .header .sitemap__menu-item.is-selected strong {
    background-color: var(--color-white);
  }
  .header .sitemap__menu-item.is-selected .sitemap__submenu {
    display: block;
  }
  .header .sitemap__submenu {
    display: none;
    position: absolute;
    top: 0;
    right: 1.8rem;
    width: calc(100% - 17.8rem);
  }
  .header .sitemap__submenu-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 0 3rem;
    min-width: 100%;
    font-size: 2.1rem;
    line-height: 7rem;
    border-bottom: 0.1rem solid var(--color-gray-200);
    box-sizing: border-box;
  }
  .header .sitemap__submenu-item a {
    display: block;
    width: 100%;
    padding-left: 2rem;
    box-sizing: border-box;
    font-size: 1.5rem;
    font-family: var(--font-b);
    color: var(--color-gray-900);
  }
  .header .sitemap__submenu-item ul {
    display: none;
  }
  .header .mo__block {
    display: block;
  }
  .header .mo__none {
    display: none;
  }
  .header .pc__block {
    display: none;
  }
  .header .pc__none {
    display: block;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal.is-activated {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.modal__wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 56rem;
  max-width: 90%;
  background-color: var(--color-white);
  padding: 4rem;
  border-radius: 1.6rem;
  position: relative;
}
.modal__wrap > * {
  width: 100%;
}
.modal__wrap .fix-button__box {
  width: auto;
  position: absolute;
  bottom: 4rem;
  right: 4.8rem;
}
@media (max-width: 719.98px) {
  .modal__wrap .fix-button__box {
    right: 4rem;
  }
}
@media (max-width: 719.98px) and (max-width: 719.98px) {
  .modal__wrap .fix-button__box--modal {
    width: 5.8rem;
    height: 5.8rem;
  }
}
.modal__wrap-scroll {
  width: 90rem;
}
@media (max-width: 719.98px) {
  .modal__wrap-scroll {
    height: calc(100% - 14rem);
  }
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-bottom: 3rem;
}
.modal h6.modal__title {
  font-size: 2.9rem;
  font-family: var(--font-b);
  margin-bottom: 0;
}
.modal .ico__close {
  width: 2.4rem;
}
.modal__content {
  background-color: #fff;
  font-size: 1.7rem;
}
.modal__content::-webkit-scrollbar {
  width: 0.8rem;
  background-color: #fff;
}
.modal__content ::-webkit-scrollbar-track {
  background-color: #e4e4e4;
}
.modal__content::-webkit-scrollbar-thumb {
  opacity: 1;
  background: #e4e4e4;
  border-radius: 50rem;
  background-clip: padding-box;
}
.modal__content::-webkit-scrollbar-corner {
  opacity: 0;
  background-color: transparent;
}
.modal__content--scroll {
  height: 100%;
  overflow-y: auto;
}
.modal__unit-title {
  display: block;
  margin-bottom: 2rem;
  font-size: 2.3rem;
}
.modal .content__box-unit:first-of-type {
  margin-top: 0;
}
.modal__tab-content ~ .modal__tab-content {
  margin-top: 5rem;
}
.modal__type-scroll {
  padding: 8rem 0;
}
.modal__type-scroll .modal__wrap {
  height: 100%;
}
@media (max-width: 719.98px) {
  .modal__type-scroll {
    padding: 0;
  }
  .modal__type-scroll .modal__wrap {
    padding: 3rem;
    height: calc(100% - 14rem);
  }
}
.modal-main {
  position: relative;
  max-width: 90%;
}
.modal-main .swiper-container {
  width: 51rem;
  max-width: 100%;
  overflow: hidden;
}
.modal-main .swiper-button {
  position: absolute;
  top: calc(100% + 2.4rem);
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 1.4rem;
  z-index: 2;
}
.modal-main .swiper-button__next, .modal-main .swiper-button__prev {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease 0s;
  z-index: 2;
}
.modal-main .swiper-button__next:hover, .modal-main .swiper-button__prev:hover {
  opacity: 1;
}
.modal-main .swiper-button__next i, .modal-main .swiper-button__prev i {
  width: 1.5rem;
}
.modal-main .swiper-button__next i {
  transform: rotate(180deg);
}
.modal-main .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.6rem;
}
.modal-main .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  background-color: var(--color-white);
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.3s ease 0s;
}
.modal-main .swiper-pagination-bullet-active {
  opacity: 1;
}
.modal-main .swiper-slide {
  padding: 0.5rem;
  text-align: center;
}
.modal-main .swiper-slide figure {
  width: 50rem;
  max-width: 100%;
}
.modal-main .swiper-slide figure img {
  width: 100%;
  border-radius: 2rem;
}
.modal-main .swiper-slide figure figcaption {
  position: absolute !important;
  left: -999.9rem;
  top: -999.9rem;
  width: 0.1rem !important;
  height: 0.1rem !important;
  padding: 0 !important;
  margin: -0.1rem !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.modal-main .btn__close {
  position: absolute;
  top: calc(100% + 2rem);
  right: 1rem;
}
.modal-main .btn__close:before {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 23L22.9203 1.07969' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M23 23L1.07969 1.07969' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  content: "";
}

@media (max-width: 719.98px) {
  .modal__wrap {
    padding: 3rem;
  }
  .modal__content--scroll {
    height: 100%;
  }
}
.footer {
  background-color: #fff;
}
.footer__prize, .footer__nav, .footer__info {
  border-top: 0.1rem solid var(--color-gray-300);
}
.footer .logo > a {
  font-size: 4rem;
}
@media (max-width: 719.98px) {
  .footer .logo > a {
    font-size: 2.5rem;
  }
}
.footer__prize {
  overflow: hidden;
}
.footer__prize .swiper-wrap {
  height: 9.8rem;
}
.footer__prize .swiper-wrap .footer-container {
  width: 100%;
  height: 100%;
}
.footer__prize .swiper-wrap .footer-container .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__prize .swiper-wrap .footer-container .swiper-wrapper .swiper-slide > i {
  width: 4.1rem;
  height: 4.1rem;
  background-repeat: no-repeat;
  background-size: 100%;
}
.footer__prize .swiper-wrap .footer-container .swiper-wrapper .swiper-slide > i.ico__emblem--nis {
  background-image: url("/static/images/common/ico_emblem--nis.png");
}
.footer__prize .swiper-wrap .footer-container .swiper-wrapper .swiper-slide > i.ico__emblem--krs {
  background-image: url("/static/images/common/ico_emblem--krs.png");
}
.footer__prize .swiper-wrap .footer-container .swiper-wrapper .swiper-slide > i.ico__emblem--ko {
  background-image: url("/static/images/common/ico_emblem--ko.png");
}
.footer__prize .swiper-wrap .footer-container .swiper-wrapper .swiper-slide > i.ico__emblem--tg {
  background-image: url("/static/images/common/ico_emblem--tg.png");
}
.footer__prize .swiper-wrap .footer-container .swiper-wrapper .swiper-slide > div {
  margin-left: 0.8rem;
  height: 4.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}
.footer__prize .swiper-wrap .footer-container .swiper-wrapper .swiper-slide > div > strong {
  color: #555;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 100%;
}
.footer__prize .swiper-wrap .footer-container .swiper-wrapper .swiper-slide > div > p {
  color: #555;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 110%;
}
.footer__prize .swiper-wrap .footer-container .swiper-button {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
}
.footer__prize .swiper-wrap .footer-container .swiper-button > div {
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 1.3rem;
  height: 2.2rem;
  cursor: pointer;
}
.footer__prize .swiper-wrap .footer-container .swiper-button .swiper-button__prev {
  left: 0rem;
  background-image: url("/static/images/common/ico_foot_swiper_l.png");
}
.footer__prize .swiper-wrap .footer-container .swiper-button .swiper-button__next {
  right: 0rem;
  background-image: url("/static/images/common/ico_foot_swiper_r.png");
}
.footer__nav-menu > ul {
  padding: 1.5rem 0;
  border-left: 0.1rem solid var(--color-gray-300);
  border-right: 0.1rem solid var(--color-gray-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
}
.footer__nav-menu > ul > * {
  flex: 1 1 0;
}
.footer__nav-menu > ul > li {
  text-align: center;
  font-size: 1.7rem;
  padding: 0 1rem;
}
.footer__nav-menu > ul > li:not(:last-child) {
  border-right: 0.1rem solid var(--color-gray-300);
}
.footer__nav .dropdown__button {
  width: 100%;
  justify-content: space-between;
  padding: 0 2.4rem;
}
.footer__nav .dropdown__button + ul {
  bottom: calc(100% + 1rem);
  top: inherit;
  background-color: var(--color-white);
}
.footer__nav .dropdown__button + ul li {
  width: 100%;
}
.footer__nav .dropdown__button + ul li:not(:first-child) {
  border-top: 0.1rem solid var(--color-gray-300);
}
.footer__nav .dropdown__button + ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  font-size: 1.4rem;
}
.footer__info {
  background-color: #f3f3f8;
  padding: 4rem 0;
}
.footer__info-address {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 20rem;
  font-size: 1.7rem;
  color: var(--color-gray-900);
  font-style: normal;
  margin-top: 4rem;
}
.footer__info-address > * {
  flex: 1 1 0;
}
.footer__info-address ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 3.6rem;
}
@media (max-width: 719.98px) {
  .footer__info-address ul li > p {
    margin-top: 0.26rem;
  }
}
.footer__info-etc-tel strong {
  font-family: var(--font-b);
}
.footer__info-etc-tel a[href*=tel] {
  font-size: 3rem;
  font-family: var(--font-b);
}
.footer__info-etc-btn {
  margin-top: 3.6rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
}
.footer__info-etc-btn ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.8rem;
}
.footer__info-etc-btn ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  aspect-ratio: 1 / 1;
  width: 4rem;
  border-radius: 50%;
  border: 0.1rem solid var(--color-gray-300);
  background-color: var(--color-white);
}
.footer__info-etc-btn ul a i {
  width: 2.4rem;
}
@media (max-width: 719.98px) {
  .footer__info-etc-btn {
    margin-top: 5.3rem;
  }
}
.footer__info-copyright {
  border-top: 0.1rem solid var(--color-gray-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-top: 4rem;
}
.footer__info-copyright .mo__info-nav {
  display: none;
}
@media (max-width: 719.98px) {
  .footer__info-copyright .mo__info-nav {
    display: block;
  }
}
.footer__info-copyright nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 2.6rem;
}
.footer__info-copyright nav ul > li > a {
  display: inline-block;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 719.98px) {
  .footer__info-copyright nav ul {
    gap: 1.6rem;
  }
  .footer__info-copyright nav ul > li > a {
    padding: 0.4rem 0.26rem;
  }
}
@media (max-width: 1280px) {
  .footer__info > .inner, .footer__info > .inner--left, .footer__info > .inner--right, .footer__info > .inner--center, .footer__info > .inner--both, .footer__info > .inner--column {
    padding: 0 2rem;
  }
}
.footer .copyright-txt {
  color: #555555;
}
@media (max-width: 719.98px) {
  .footer .copyright-txt {
    margin-top: 0.8rem;
  }
}

@media (max-width: 1399.98px) {
  .footer__prize .swiper-wrap {
    padding: 0 6rem;
  }
  .footer__info {
    padding: 5rem 2rem 4rem;
  }
}
@media (max-width: 1199.98px) {
  .footer__nav-menu .dropdown__button {
    padding: 0;
  }
}
@media (max-width: 959.98px) {
  .footer [class*=inner] {
    padding: 0;
  }
  .footer__prize .swiper-wrap {
    padding: 0;
  }
  .footer__prize .swiper-wrap .swiper-button {
    display: none;
  }
  .footer__nav-menu > ul {
    flex-wrap: wrap;
    padding: 0;
  }
  .footer__nav-menu > ul > li {
    padding: 1rem 0;
    flex: auto;
  }
  .footer__nav-menu > ul > li:not(:last-child) {
    border-bottom: 0.1rem solid var(--color-gray-300);
  }
  .footer__nav-menu > ul > li > a {
    padding: 0;
  }
  .footer__nav-menu > ul > li.dropdown {
    border-bottom: none;
  }
  .footer__nav .dropdown {
    width: 50%;
  }
  .footer__nav .dropdown__inner {
    padding: 0.5rem 0;
  }
  .footer__nav .dropdown__button {
    padding: 0 2.4rem;
  }
  .footer__nav .dropdown__button + ul li {
    padding: 0;
  }
  .footer__nav .dropdown__button + ul li a {
    padding: 0.8rem;
    font-size: 1.05rem;
  }
  .footer__info {
    padding: 4rem 2rem;
  }
  .footer__info-address {
    flex-direction: column;
    gap: 4rem;
  }
  .footer__info-address > * {
    width: 100%;
  }
  .footer__info-copyright {
    padding-top: 2.8rem;
    flex-direction: column;
  }
}
@media (max-width: 719.98px) {
  .footer__nav-menu > ul {
    align-items: stretch;
  }
  .footer__nav-menu > ul > li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 25%;
  }
  .footer__nav-menu > ul > li.mo__none {
    display: none;
  }
  .footer__nav-menu > ul > li:nth-child(2) {
    font-size: 1.6rem;
  }
  .footer__nav-menu > ul > li:nth-child(5) {
    border-right: 0;
  }
  .footer__nav-menu .dropdown__button {
    padding: 0 2.4rem;
  }
}
/* footer-main (메인페이지 footer) */
.container_main {
  --lt-sp: -0.186rem;
}
@media (max-width: 719.98px) {
  .container_main {
    --lt-sp: -0.108rem;
  }
}
@media (max-width: 1399.98px) {
  .container_main .inner, .container_main .inner--left, .container_main .inner--right, .container_main .inner--center, .container_main .inner--both, .container_main .inner--column {
    padding: 0 2rem;
  }
}
@media (max-width: 719.98px) {
  .container_main .inner, .container_main .inner--left, .container_main .inner--right, .container_main .inner--center, .container_main .inner--both, .container_main .inner--column {
    padding: 0 1.5rem;
  }
}

.main_visual_section {
  min-height: 90rem;
  padding: 22rem 0 5.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/static/images/main/bg_visual.jpg");
  box-sizing: border-box;
}
@media (max-width: 719.98px) {
  .main_visual_section {
    min-height: 60rem;
    padding: 15rem 0 4.8rem;
    background-image: url("/static/images/main/bg_visual_m.jpg");
  }
}
@media (max-width: 1399.98px) {
  .main_visual_section .inner, .main_visual_section .inner--left, .main_visual_section .inner--right, .main_visual_section .inner--center, .main_visual_section .inner--both, .main_visual_section .inner--column {
    padding: 0 3rem;
  }
}
.main_visual_spot {
  display: flex;
  justify-content: space-between;
  color: #fff;
}
@media (max-width: 719.98px) {
  .main_visual_spot {
    flex-direction: column;
  }
}
.main_visual_title {
  font-family: var(--font-b);
  font-size: 8rem;
  line-height: 8.8rem;
  text-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.5);
  line-height: 8.8rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 719.98px) {
  .main_visual_title {
    font-size: 4.8rem;
    line-height: 5.28rem;
  }
}
.main_visual_desc {
  margin-top: 2.6rem;
  font-size: 2.1rem;
  line-height: 3.36rem;
}
@media (max-width: 719.98px) {
  .main_visual_desc {
    display: none;
  }
}
.main_visual_img {
  width: 41.5rem;
  height: 40.9rem;
  margin-top: 7.2rem;
}
@media (max-width: 719.98px) {
  .main_visual_img {
    width: 21rem;
    height: 20.7rem;
    margin: 3.6rem 0 0 auto;
  }
}
.main_visual_img img {
  width: 100%;
}
.main_visual_detail {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 7.8rem;
}
@media (max-width: 1280px) {
  .main_visual_detail {
    flex-direction: column;
  }
}
@media (max-width: 719.98px) {
  .main_visual_detail {
    display: none;
  }
}
.main_visual_detail_inner {
  display: inline-flex;
  justify-content: center;
  gap: 0.9rem;
}
.main_visual_detail_btn {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1.2rem;
  width: 20.6rem;
  min-height: 7rem;
  padding: 0 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  font-size: 1.8rem;
  font-family: var(--font-b);
  line-height: 1;
  color: #1d1d1d;
}
.main_visual_detail_btn img {
  flex: 0 0 auto;
  width: 29px;
}

.main_howto_section .inner, .main_howto_section .inner--left, .main_howto_section .inner--right, .main_howto_section .inner--center, .main_howto_section .inner--both, .main_howto_section .inner--column {
  position: relative;
}
.main_howto_section .inner::before, .main_howto_section .inner--left::before, .main_howto_section .inner--right::before, .main_howto_section .inner--center::before, .main_howto_section .inner--both::before, .main_howto_section .inner--column::before {
  position: absolute;
  top: 16.7rem;
  right: 0;
  width: 68.6rem;
  height: 59.3rem;
  background-color: rgba(113, 153, 255, 0.15);
  filter: blur(15rem);
  content: "";
}
@media (max-width: 1199.98px) {
  .main_howto_section .inner::before, .main_howto_section .inner--left::before, .main_howto_section .inner--right::before, .main_howto_section .inner--center::before, .main_howto_section .inner--both::before, .main_howto_section .inner--column::before {
    display: none;
  }
}
.main_howto_text {
  font-size: 6.2rem;
  font-family: var(--font-l);
  line-height: 7.44rem;
  letter-spacing: var(--lt-sp);
}
@media (max-width: 719.98px) {
  .main_howto_text {
    font-size: 3.6rem;
    line-height: 4.32rem;
  }
}
.main_howto_text .point {
  font-family: var(--font-sb);
}
.main_howto_box {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 5rem;
  margin-top: 7rem;
}
@media (max-width: 719.98px) {
  .main_howto_box {
    flex-direction: column;
    margin-top: 4rem;
  }
}
.main_howto_box + .main_howto_box {
  margin-top: 3rem;
}
@media (max-width: 719.98px) {
  .main_howto_box + .main_howto_box {
    margin-top: 4rem;
  }
}
.main_howto_box.type_electronic_card {
  --point-color: #5a29e5;
  --border-color: #f4f3f3;
}
.main_howto_info {
  flex: 0 1 auto;
  align-self: center;
  min-width: 34.6rem;
  width: 38.2rem;
}
@media (max-width: 719.98px) {
  .main_howto_info {
    width: 100%;
    align-self: flex-start;
  }
}
.main_howto_info:after {
  display: block;
  width: 12.1rem;
  height: 5.2rem;
  margin: -1.4rem 0 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='122' height='52' viewBox='0 0 122 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='25.1836' width='120' height='1' rx='0.5' fill='%231D1D1D'/%3E%3Crect x='96.5234' width='36.0297' height='1' rx='0.5' transform='rotate(45 96.5234 0)' fill='%231D1D1D'/%3E%3Crect width='36.0297' height='1' rx='0.5' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 96.5234 51.3682)' fill='%231D1D1D'/%3E%3C/svg%3E%0A");
  content: "";
}
@media (max-width: 719.98px) {
  .main_howto_info:after {
    display: none;
  }
}
.main_howto_title {
  font-size: 4.8rem;
  line-height: 1;
  color: #1d1d1d;
}
@media (max-width: 719.98px) {
  .main_howto_title {
    font-size: 3rem;
  }
}
.main_howto_title .point {
  color: var(--point-color, #2e47e9);
}
.main_howto_desc {
  margin-top: 1.2rem;
  font-size: 1.7rem;
  line-height: 2.55rem;
  color: #1d1d1d;
}
@media (max-width: 719.98px) {
  .main_howto_desc {
    margin-top: 1rem;
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}
@media (max-width: 719.98px) {
  .main_howto_desc .lineClear {
    display: none;
  }
}
.main_howto_detail {
  display: inline-flex;
  gap: 1.7rem;
  min-width: 0;
}
@media (max-width: 1280px) {
  .main_howto_detail {
    flex-wrap: wrap;
    gap: 1.2rem;
    width: 100%;
  }
}
@media (max-width: 719.98px) {
  .main_howto_detail {
    margin-top: 1.6rem;
  }
}
.main_howto_btn {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7rem;
  width: 19.9rem;
  min-height: 24rem;
  padding: 5.2rem 1rem;
  border: 0.4rem solid var(--border-color, #e2e9ff);
  border-radius: 2rem;
  background-color: #fff;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 1280px) {
  .main_howto_btn {
    width: calc(50% - 0.6rem);
    min-height: 20rem;
    padding: 4rem 1rem;
    border-radius: 1.8rem;
  }
}
@media (max-width: 719.98px) {
  .main_howto_btn {
    gap: 1.5rem;
  }
}
.main_howto_btn_inner {
  display: inline-block;
  border-radius: 2rem;
  box-shadow: 0px 13.191px 13.191px -8.794px rgba(68, 75, 255, 0.25);
}
.main_howto_btn .text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.9rem;
  font-family: var(--font-b);
  line-height: 1;
  color: #1d1d1d;
}
@media (max-width: 719.98px) {
  .main_howto_btn .text {
    gap: 0.7rem;
    font-size: 1.7rem;
  }
}
.main_howto_btn .text:after {
  width: 0.8rem;
  height: 1.3rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='13' viewBox='0 0 8 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L6 6.5L2 11' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  content: "";
}
@media (max-width: 719.98px) {
  .main_howto_btn .text:after {
    height: 1.1rem;
  }
}
.main_howto_btn img {
  max-width: 10rem;
  vertical-align: top;
}
@media (max-width: 719.98px) {
  .main_howto_btn img {
    max-width: 8.8rem;
  }
}
.main_howto_etc {
  display: flex;
  justify-content: space-between;
  gap: 1rem 3rem;
  margin-top: 16rem;
  margin-bottom: 18rem;
}
@media (max-width: 719.98px) {
  .main_howto_etc {
    margin-bottom: 4.5rem;
  }
}
@media (max-width: 959.98px) {
  .main_howto_etc {
    flex-direction: column;
  }
}
@media (max-width: 719.98px) {
  .main_howto_etc {
    margin-top: 4rem;
  }
}
.main_howto_etc_btn {
  --desc-margin-top: 1.5rem;
  flex: 0 1 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 32rem;
  padding: 6rem 0 0 5rem;
  border-radius: 2rem;
  background-color: var(--bg-color, #485bff);
  color: #fff;
  box-sizing: border-box;
  outline-offset: 2px;
  box-shadow: 3px 3px 10px 0px rgba(63, 52, 135, 0.1);
}
.main_howto_etc_btn .title {
  font-family: var(--font-sb) !important;
}
@media (max-width: 1280px) {
  .main_howto_etc_btn {
    padding: 0 0 0 3rem;
  }
}
@media (max-width: 959.98px) {
  .main_howto_etc_btn {
    flex-direction: row;
    width: 100%;
    border-radius: 1.6rem;
  }
}
@media (max-width: 719.98px) {
  .main_howto_etc_btn {
    height: 14rem;
  }
}
.main_howto_etc_btn.type_customer {
  --bg-color: #5934ed;
}
@media (max-width: 1280px) {
  .main_howto_etc_btn .head {
    margin: 3rem 0 3.4rem;
  }
}
.main_howto_etc_btn .desc {
  opacity: 0.8;
}
.main_howto_etc .title {
  font-family: var(--font-b);
  font-size: 3.8rem;
  line-height: 1;
}
@media (max-width: 719.98px) {
  .main_howto_etc .title {
    font-size: 2.8rem;
  }
}
.main_howto_etc .desc {
  margin-top: var(--desc-margin-top, 1rem);
  font-size: 1.8rem;
  line-height: 2.52rem;
}
@media (max-width: 719.98px) {
  .main_howto_etc .desc {
    margin-top: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.96rem;
  }
}
.main_howto_etc .img {
  width: 21rem;
  margin: 4.8rem 0 0 auto;
}
@media (max-width: 1280px) {
  .main_howto_etc .img {
    width: 12.5rem;
    margin: auto 0 0 auto;
  }
}
.main_howto_download_app {
  flex: 0 1 auto;
  width: 58.3rem;
  padding: 6rem;
  border-radius: 2rem;
  background-color: #ffe73e;
  color: #000000;
  box-sizing: border-box;
  box-shadow: 3px 3px 10px 0px rgba(63, 52, 135, 0.1);
}
@media (max-width: 1280px) {
  .main_howto_download_app {
    padding: 3rem 1.8rem;
  }
}
@media (max-width: 959.98px) {
  .main_howto_download_app {
    width: 100%;
    border-radius: 1.6rem;
  }
}
@media (max-width: 719.98px) {
  .main_howto_download_app .head {
    padding: 0 1.2rem;
  }
}
.main_howto_download_app .img_download {
  display: flex;
  gap: 0 2.3rem;
  margin-top: 3.2rem;
}
@media (max-width: 959.98px) {
  .main_howto_download_app .img_download {
    justify-content: center;
  }
}
@media (max-width: 719.98px) {
  .main_howto_download_app .img_download {
    gap: 0.8rem;
  }
}
.main_howto_download_app .img_download_btn {
  display: block;
  height: 100%;
  padding: 2.9rem 4.5rem;
  border-radius: 1.6rem;
  background: #f3f3ff;
  box-sizing: border-box;
}
@media (max-width: 719.98px) {
  .main_howto_download_app .img_download_btn {
    padding: 2.2rem 1.9rem;
  }
}
.main_howto_download_app .img_download_qr {
  position: relative;
}
.main_howto_download_app .img_download_qr:not(:has(.img_download_btn)) {
  overflow: hidden;
  padding: 2.9rem 4.5rem;
  border-radius: 1.6rem;
  background: #f3f3ff;
}
@media (max-width: 719.98px) {
  .main_howto_download_app .img_download_qr:not(:has(.img_download_btn)) {
    padding: 2.2rem 1.9rem;
  }
}
@media (max-width: 719.98px) {
  .main_howto_download_app .img_download_qr img {
    width: 100%;
    max-width: 12rem;
  }
}
.main_howto_download_app .img_download .text {
  display: block;
  margin-top: 1rem;
  text-align: center;
  font-size: 1.7rem;
  line-height: 1;
  color: #1d1d1d;
}
@media (max-width: 719.98px) {
  .main_howto_download_app .img_download .text {
    margin-top: 0.9rem;
  }
}

.main_news_section .inner, .main_news_section .inner--left, .main_news_section .inner--right, .main_news_section .inner--center, .main_news_section .inner--both, .main_news_section .inner--column {
  position: relative;
  padding-top: 15rem;
  padding-bottom: 16rem;
}
@media (max-width: 719.98px) {
  .main_news_section .inner, .main_news_section .inner--left, .main_news_section .inner--right, .main_news_section .inner--center, .main_news_section .inner--both, .main_news_section .inner--column {
    padding: 4.6rem 1.5rem 5rem;
  }
}
.main_news_section .inner::before, .main_news_section .inner--left::before, .main_news_section .inner--right::before, .main_news_section .inner--center::before, .main_news_section .inner--both::before, .main_news_section .inner--column::before {
  position: absolute;
  top: 7.4rem;
  left: -25.6rem;
  width: 82rem;
  height: 60.4rem;
  background-color: rgba(165, 113, 255, 0.17);
  filter: blur(15rem);
  content: "";
}
@media (max-width: 719.98px) {
  .main_news_section .inner::before, .main_news_section .inner--left::before, .main_news_section .inner--right::before, .main_news_section .inner--center::before, .main_news_section .inner--both::before, .main_news_section .inner--column::before {
    display: none;
  }
}
.main_news_head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
@media (max-width: 719.98px) {
  .main_news_head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.main_news_head::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28.2rem;
  height: 18.8rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/static/images/main/bg_news.png");
  content: "";
}
@media (max-width: 719.98px) {
  .main_news_head::before {
    display: none;
  }
}
.main_news_title {
  font-family: var(--font-l);
  font-size: 6.2rem;
  line-height: 7.44rem;
  letter-spacing: var(--lt-sp);
}
@media (max-width: 719.98px) {
  .main_news_title {
    font-size: 3.6rem;
    line-height: 4.32rem;
  }
}
.main_news_title .point {
  font-family: var(--font-sb);
}
.main_news_all_btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 1.2rem;
  margin-right: 19.6rem;
  font-family: var(--font-b);
  font-size: 2.2rem;
  line-height: 1;
  color: #1d1d1d;
}
@media (max-width: 719.98px) {
  .main_news_all_btn {
    gap: 0.7rem;
    font-size: 1.7rem;
  }
}
.main_news_all_btn::after {
  width: 0.8rem;
  height: 1.3rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='13' viewBox='0 0 8 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L6 6.5L2 11' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  content: "";
}
@media (max-width: 719.98px) {
  .main_news_all_btn::after {
    width: 0.7rem;
    height: 1.1rem;
  }
}
.main_news_list {
  position: relative;
  margin-top: 5rem;
  border-top: 0.5rem solid #000000;
}
@media (max-width: 719.98px) {
  .main_news_list {
    margin-top: 2.1rem;
  }
}
.main_news_items {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.main_news_items:last-child {
  border-color: #000000;
}
@media (max-width: 719.98px) {
  .main_news_items:nth-child(n+5) {
    display: none;
  }
}
.main_news_items_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 3rem;
  min-height: 6rem;
  font-size: 1.9rem;
}
@media (max-width: 719.98px) {
  .main_news_items_btn {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    min-height: 9rem;
  }
}
.main_news_items .title {
  flex: 0 1 auto;
  padding-left: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
}
@media (max-width: 719.98px) {
  .main_news_items .title {
    width: 100%;
    padding-left: 0;
    font-size: 1.5rem;
  }
}
.main_news_items .date {
  padding-right: 1.4rem;
  font-size: 1.6rem;
}
@media (max-width: 719.98px) {
  .main_news_items .date {
    font-size: 1.5rem;
  }
}

.main_familysite_section {
  padding: 14rem 0 19.7rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/static/images/main/bg_familysite.jpg");
}
@media (max-width: 719.98px) {
  .main_familysite_section {
    padding: 6.1rem 0 8.3rem;
    background-image: url("/static/images/main/bg_familysite_m.jpg");
  }
}
.main_familysite_title {
  font-size: 6.2rem;
  font-family: var(--font-el);
  line-height: 7.44rem;
  letter-spacing: var(--lt-sp);
  color: #fff;
}
@media (max-width: 719.98px) {
  .main_familysite_title {
    font-size: 3.6rem;
    line-height: 4.32rem;
  }
}
.main_familysite_title .point {
  font-family: var(--font-r);
}
.main_familysite_box {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 7rem;
}
@media (max-width: 1280px) {
  .main_familysite_box {
    flex-wrap: wrap;
  }
}
@media (max-width: 719.98px) {
  .main_familysite_box {
    gap: 1.2rem;
    margin-top: 3rem;
  }
}
.main_familysite_btn {
  flex: 0 1 auto;
  width: 30.5rem;
  padding: 6.4rem 3rem 4.2rem 3.4rem;
  border-radius: 2rem;
  background: rgba(var(--bg-color, 81, 66, 255), 0.6);
  font-size: 2.3rem;
  line-height: 1;
  color: #fff;
  box-sizing: border-box;
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
}
@media (max-width: 1280px) {
  .main_familysite_btn {
    flex: 0 1 auto;
    width: calc(50% - 1rem);
  }
}
@media (max-width: 719.98px) {
  .main_familysite_btn {
    width: calc(50% - 0.6rem);
    padding: 3.6rem 1.8rem 2.4rem 2rem;
    border-radius: 1.6rem;
    font-size: 1.4rem;
    -webkit-backdrop-filter: blur(0.5rem);
            backdrop-filter: blur(0.5rem);
  }
}
.main_familysite_btn:nth-of-type(2) {
  --bg-color: 31, 120, 255;
}
.main_familysite_btn:nth-of-type(3) {
  --bg-color: 55, 218, 255;
}
.main_familysite_btn:nth-of-type(4) {
  --bg-color: 31, 120, 255;
}
.main_familysite_btn:after {
  display: block;
  width: 14.7rem;
  height: 5.3rem;
  margin: 3rem 0 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='147' height='53' viewBox='0 0 147 53' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.574219' y='25.4116' width='144.526' height='1.99346' rx='0.996732' fill='white'/%3E%3Crect x='121' y='0.310547' width='35.912' height='1.99672' rx='0.998362' transform='rotate(45 121 0.310547)' fill='white'/%3E%3Crect width='35.912' height='1.99672' rx='0.998362' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 121 52.5078)' fill='white'/%3E%3C/svg%3E%0A");
  content: "";
}
@media (max-width: 719.98px) {
  .main_familysite_btn:after {
    width: 8.3rem;
    height: 3rem;
  }
}
.main_familysite_btn .text_eng {
  display: block;
  margin-top: 2.6rem;
  font-size: 3.4rem;
}
@media (max-width: 719.98px) {
  .main_familysite_btn .text_eng {
    margin-top: 1.4rem;
    font-size: 1.7rem;
  }
}

.sub h3,
.sub h4,
.sub h5,
.sub h6 {
  line-height: 1;
}
@media (max-width: 719.98px) {
  .sub h3,
  .sub h4,
  .sub h5,
  .sub h6 {
    line-height: 1.3;
  }
}
.sub h3,
.sub h5 {
  margin-bottom: 3rem;
}
.sub h3 {
  font-size: 6.2rem;
}
.sub h4 {
  font-size: 4.8rem;
  margin-bottom: 8rem;
}
@media (max-width: 719.98px) {
  .sub h4 {
    margin-bottom: 5.3rem;
  }
}
.sub h5 {
  font-size: 3.5rem;
}
.sub h6 {
  font-size: 2.3rem;
  margin-bottom: 2rem;
}

.contents__title {
  padding: 2.4rem;
}
.contents__title .breadcrumb {
  position: relative;
}
.contents__title .breadcrumb__menu {
  width: 128rem;
  max-width: 100%;
  position: absolute;
  top: 4rem;
  z-index: 3;
  justify-content: flex-end;
  color: #fff;
}
.contents__title .breadcrumb__menu .ico__home {
  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%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 11L12 6L18 11V17C18 17.5523 17.5523 18 17 18H13.5V15C13.5 14.4477 13.0523 14 12.5 14H11.5C10.9477 14 10.5 14.4477 10.5 15V18H7C6.44772 18 6 17.5523 6 17V11Z' fill='%23fff'/%3E%3C/svg%3E%0A");
}
@media (max-width: 1399.98px) {
  .contents__title .breadcrumb {
    padding-right: 2rem;
  }
}
@media (max-width: 719.98px) {
  .contents__title .breadcrumb {
    padding: 3.2rem 0;
  }
  .contents__title .breadcrumb > .inner, .contents__title .breadcrumb > .inner--left, .contents__title .breadcrumb > .inner--right, .contents__title .breadcrumb > .inner--center, .contents__title .breadcrumb > .inner--both, .contents__title .breadcrumb > .inner--column {
    padding: 0;
  }
  .contents__title .breadcrumb__menu {
    position: static;
    color: #000000;
    justify-content: flex-start;
  }
  .contents__title .breadcrumb__menu .ico__home {
    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%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 11L12 6L18 11V17C18 17.5523 17.5523 18 17 18H13.5V15C13.5 14.4477 13.0523 14 12.5 14H11.5C10.9477 14 10.5 14.4477 10.5 15V18H7C6.44772 18 6 17.5523 6 17V11Z' fill='%231d1d1d'/%3E%3C/svg%3E%0A");
  }
  .contents__title .breadcrumb__menu li {
    color: #1d1d1d;
  }
  .contents__title .breadcrumb__menu li:not(:last-child):after {
    aspect-ratio: 1 / 1;
    width: 1.6rem;
    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%3Cpath d='M5 7.5L10 13L15 7.5' stroke='%231d1d1d' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  }
}
.contents__title .dropdown ul {
  padding: 1rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
  transition: max-height 0.4s linear 0s;
}
.contents__title .dropdown__inner.dropdown--active > ul {
  visibility: visible;
  z-index: auto;
  opacity: 1;
  max-height: initial;
  max-height: 300px;
  z-index: 3;
}
@media (max-width: 1280px) {
  .contents__title {
    padding: 2rem;
  }
}
@media (max-width: 719.98px) {
  .contents__title {
    padding-top: 0;
  }
}

@media (max-width: 1280px) {
  .sub {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 719.98px) {
  .sub {
    margin-top: 6rem;
  }
}

.contents__content {
  margin-top: 7rem;
}
.contents__content > *:last-child {
  margin-bottom: 0 !important;
}
@media (max-width: 1280px) {
  .contents__content > .inner, .contents__content > .inner--left, .contents__content > .inner--right, .contents__content > .inner--center, .contents__content > .inner--both, .contents__content > .inner--column {
    padding: 0 2rem;
  }
}
@media (max-width: 719.98px) {
  .contents {
    padding-top: 0;
  }
  .contents__content {
    margin-top: 4.5rem;
  }
}

@media (max-width: 1399.98px) {
  .sub > .inner, .sub > .inner--left, .sub > .inner--right, .sub > .inner--center, .sub > .inner--both, .sub > .inner--column {
    grid-template-columns: 100%;
    padding: 0rem 2rem 10rem;
  }
}
.content__box {
  font-size: 1.7rem;
}
.content__box ~ .content__box {
  padding-top: 8rem;
}
.content__last {
  padding-top: 3rem !important;
}
.content__play img {
  width: 90rem;
  border-radius: 1.5rem;
  margin-bottom: 1rem;
}

.sub .sub-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  border-radius: 2.4rem;
  height: 30rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sub .sub-title--electroniccard {
  background-image: url("/static/images/sub/bg_sub_visual_electroniccard.jpg");
}
.sub .sub-title--customerservice {
  background-image: url("/static/images/sub/bg_sub_visual_customerservice.jpg");
}
.sub .sub-title--ticket {
  background-image: url("/static/images/sub/bg_sub_visual_ticket.jpg");
}
.sub .sub-title__description {
  margin-top: 3rem;
  font-size: 2rem;
}

.board {
  margin-bottom: 5rem;
}

.subtab-content__description > h4 {
  margin-bottom: 0;
}
.subtab-content__description .content__box:first-of-type {
  padding-top: 8rem;
}

.content__box p ~ [class^=list], .content__box-unit p ~ [class^=list] {
  margin-top: 0.8rem;
}
.content__box [class*=content-img] ~ p,
.content__box [class*=content-img] ~ [class^=list], .content__box-unit [class*=content-img] ~ p,
.content__box-unit [class*=content-img] ~ [class^=list] {
  margin-top: 2rem;
}
.content__box-line {
  border-bottom: 1px solid var(--color-gray-300);
  padding: 3.5rem 0;
  margin-top: 0 !important;
}
.content__box-line:first-child {
  padding-top: 0;
}

.list-dot + .precaution__txt {
  margin-top: 0.8rem;
  font-size: 1.5rem;
}
.list-dot .gray {
  padding: 2rem 3rem;
  background: var(--color-gray-75);
  border-radius: 1.6rem;
  margin-top: 0.8rem;
}

.list-last {
  padding-top: 0.8rem;
}

.color-point {
  font-family: var(--font-b);
}

.category, .category--end,
.status--end, .category__point,
.status__point,
.status,
.status__apply,
.status__cancel,
.status__wait {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 6.8rem;
  height: 3.4rem;
  border-radius: 50px;
  border: 0.2rem solid var(--color-gray-900);
  font-size: 1.5rem;
  font-family: var(--font-sb);
}
.category__point,
.status__point {
  border-color: var(--color-point);
  background-color: var(--color-white);
  color: var(--color-point);
}
.category--end,
.status--end {
  border-color: #555555;
  background-color: #fff;
  color: #1d1d1d;
}

.status, .status__apply, .status__cancel, .status__wait {
  width: 8rem;
  border-color: transparent;
}
.status__apply {
  background-color: var(--color-point-25);
  color: var(--color-point);
}
.status__cancel {
  background-color: var(--color-gray-300);
  color: var(--color-gray-900);
}
.status__wait {
  background-color: var(--color-gray-50);
  color: var(--color-gray-800);
}

.period {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.35rem;
  padding: 0.5rem 1.4rem;
  background-color: var(--color-blue-50);
  color: var(--color-blue-900);
  border-radius: 0.4rem;
  font-size: 1.5rem;
}
.period i {
  width: 1.6rem;
  background-image: url("data:image/svg+xml;charset=utf8,");
}

.api {
  background-color: var(--color-gray-50);
  height: 40rem;
}

.content__box .content-img, .content__box .content-img--refund-money, .content__box__unit .content-img, .content__box__unit .content-img--refund-money {
  margin-top: 2rem;
}

.content-img, .content-img--refund-money {
  margin-top: 2rem;
  background-color: #f5f5f5;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 5rem;
}
.content-img--refund-money {
  padding: 10rem;
}
@media (max-width: 719.98px) {
  .content-img--resize, .content-img--refund-money {
    padding: 2rem;
  }
}
.content-img--card {
  padding-bottom: 1rem;
}
.content-img--card-list {
  position: relative;
}
.content-img--card-list > a {
  display: block;
  z-index: 10;
}
.content-img--card-list .img01 {
  position: absolute;
  left: 0;
  top: 10%;
  width: 21%;
  height: 21%;
}
.content-img--card-list .img02 {
  position: absolute;
  left: 27%;
  top: 10%;
  width: 24%;
  height: 21%;
}
.content-img--card-list .img03 {
  position: absolute;
  left: 27%;
  top: 40%;
  width: 24%;
  height: 21%;
}
.content-img--card-list .img04 {
  position: absolute;
  left: 27%;
  top: 69%;
  width: 24%;
  height: 21%;
}
.content-img--card-list .img05 {
  position: absolute;
  left: 75%;
  top: 0;
  width: 10%;
  height: 8%;
}
.content-img--card-list .img06 {
  position: absolute;
  left: 75%;
  top: 92%;
  width: 10%;
  height: 8%;
}
.content-img--card-list .img07 {
  position: absolute;
  left: 83%;
  top: 10%;
  width: 17%;
  height: 21%;
}
.content-img--card-list .img08 {
  position: absolute;
  left: 83%;
  top: 69%;
  width: 17%;
  height: 21%;
}

.description {
  position: relative;
  display: flex;
  justify-content: flex-start;
}
.description__floating {
  order: 2;
  display: inline-block;
  position: sticky;
  top: 30%;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 4rem;
}
@media (max-width: 1399.98px) {
  .description__floating {
    display: none;
  }
}
.description__floating-list > li {
  padding: 0.7rem 1.5rem;
  position: relative;
  color: #555555;
  text-align: right;
  white-space: nowrap;
}
.description__floating-list > li:after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #e4e4e4;
}
.description__floating-list > li.floating--active {
  color: #1d1d1d;
}
.description__floating-list > li.floating--active:after {
  background-color: #7343ff;
}
.description__content {
  width: 128rem;
  flex-shrink: 0;
}
@media (max-width: 1399.98px) {
  .description__content {
    flex-shrink: 1;
  }
}
.description-box + .description-wrap {
  border-top: 0.1rem solid #ddd;
}
.description:not(:last-of-type) {
  border-bottom: 0.1rem solid #e4e4e4;
}
.description__content-type {
  padding-top: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
}
@media (max-width: 719.98px) {
  .description__intro-box {
    flex-direction: column;
  }
}
.description-intro__cont--type01 {
  position: relative;
  justify-content: space-between;
  gap: 0 6.2rem;
}
.description-intro__cont--type01 .description-intro__txt {
  display: flex;
  margin-top: 5.8rem;
  background-color: #f5f5f5;
  padding: 7.6rem 8rem;
  border-radius: 1.6rem;
}
.description-intro__cont--type01 .description-intro__txt p {
  font-size: 2.8rem;
  color: #7343ff;
}
.description-intro__cont--type01 .description-intro__txt h5 {
  margin-bottom: 3rem;
}
.description-intro__cont--type01 .description-intro__txt h6 {
  font-size: 3rem;
}
@media (max-width: 719.98px) {
  .description-intro__cont--type01 .description-intro__txt {
    padding: 4rem;
  }
}
.description-intro__cont--type01 .description-intro__img {
  position: absolute;
  right: 9.6rem;
  bottom: 2.5rem;
  border-radius: 1.6rem;
}
@media (max-width: 719.98px) {
  .description-intro__cont--type01 {
    display: flex;
    flex-direction: column;
  }
  .description-intro__cont--type01 .description-intro__img {
    position: static;
    justify-content: center;
    flex: 1 1 0;
    max-width: 100%;
    min-width: auto;
    text-align: center;
  }
  .description-intro__cont--type01 .description-intro__img img {
    max-height: 100%;
  }
}
.description-intro__cont--type02 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0 3rem;
  align-items: flex-end;
}
.description-intro__cont--type02 .description-intro__img {
  flex-shrink: 0;
}
.description-intro__cont--type02 .description-intro__img > img {
  border-radius: 1.6rem;
}
@media (max-width: 800px) {
  .description-intro__cont--type02 .description-intro__img {
    flex: 1 1 100%;
  }
}
@media (max-width: 719.98px) {
  .description-intro__cont--type02 {
    align-items: stretch;
    flex-direction: column;
  }
  .description-intro__cont--type02 .description-intro__img {
    margin-top: 3rem;
    align-items: stretch;
  }
  .description-intro__cont--type02 .description-intro__img img {
    width: 100%;
    height: 100%;
  }
}
.description:not(:last-of-type) {
  border-bottom: 0.1rem solid #e4e4e4;
}
.description__content-type {
  padding-top: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
}
@media (max-width: 719.98px) {
  .description__intro-box {
    flex-direction: column;
  }
}
.description__step-list {
  padding-top: 5.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 4rem;
}
@media (max-width: 719.98px) {
  .description__step-list {
    grid-template-columns: 1fr;
  }
}
.description__step-list .description__step-box {
  display: grid;
  grid-template-rows: 1fr;
}
.description__step-list .description__step-cont {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.description__step-list .description__step-cont .description__step__title {
  font-size: 2.3rem;
  font-family: var(--font-b);
  margin-bottom: 1.2rem;
}
.description__step-list .description__step-cont .description__step__title > span {
  padding-right: 1rem;
}
.description__step-list .description__step-cont .description__step__desc {
  font-size: 1.7rem;
  flex-grow: 1;
}
.description__step-list .description__step-cont .description__step__desc > p,
.description__step-list .description__step-cont .description__step__desc > [class^=list] {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  letter-spacing: -0.015rem;
}
.description__step-list .description__step-cont .description__step__desc > [class^=list] > li ~ li {
  margin-top: 0.6rem;
}
.description__step-list .description__step-title {
  font-size: 2.3rem;
  font-family: var(--font-b);
}
.description__step-list .description__step-img {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-top: 3rem;
  border: 0.1rem solid #e4e4e7;
  border-radius: 1.6rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
}
.description__step-list .description__step-img > img {
  width: 100%;
}

.purchaseticket-guide .content-img .list-num03, .purchaseticket-guide .content-img--refund-money .list-num03, .purchaseticket-guide .content-img .list-num03--green, .purchaseticket-guide .content-img--refund-money .list-num03--green {
  width: 0.1rem;
  height: 0.1rem;
  padding: 0;
  margin: -0.1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
@media (max-width: 719.98px) {
  .purchaseticket-guide .content-img, .purchaseticket-guide .content-img--refund-money {
    align-items: flex-start;
    flex-direction: column;
    padding: 2.3rem 4.3rem;
  }
  .purchaseticket-guide .content-img > picture, .purchaseticket-guide .content-img--refund-money > picture {
    margin: 0 auto;
  }
  .purchaseticket-guide .content-img > picture img, .purchaseticket-guide .content-img--refund-money > picture img {
    max-width: 100%;
  }
  .purchaseticket-guide .content-img .list-num03, .purchaseticket-guide .content-img--refund-money .list-num03, .purchaseticket-guide .content-img .list-num03--green, .purchaseticket-guide .content-img--refund-money .list-num03--green {
    padding-top: 2.3rem;
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    padding-top: 2.3rem;
  }
}
.purchaseticket-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 3rem;
}
@media (max-width: 719.98px) {
  .purchaseticket-info {
    grid-template-columns: repeat(1, 1fr);
  }
}
.purchaseticket-info > li > strong {
  font-size: 2.3rem;
  line-height: 1;
}
.purchaseticket-info__cont {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 3rem;
}
.purchaseticket-info__cont .list-num02 > li {
  white-space: nowrap;
}
@media (max-width: 719.98px) {
  .purchaseticket-info__cont {
    flex-direction: column;
  }
}
.purchaseticket-info__cont__image {
  width: 100%;
}
.purchaseticket-info__cont__step > li {
  margin-top: 0.6rem;
  white-space: nowrap;
}
.purchaseticket-info__cont__step > li > span {
  font-family: var(--font-b);
  display: inline-block;
  padding-right: 0.8rem;
}

.horseticket-info {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  display: flex;
  gap: 3rem;
}
.horseticket-info__step > li {
  position: relative;
  padding-left: 2.8rem;
}
.horseticket-info__step > li ~ li {
  margin-top: 0.6rem;
}
.horseticket-info__step > li > span {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-b);
  display: inline-block;
  padding-right: 0.8rem;
}
@media (max-width: 719.98px) {
  .horseticket-info {
    flex-direction: column;
  }
  .horseticket-info__image {
    width: 100%;
    aspect-ratio: 1.3 / 1;
  }
  .horseticket-info__image img {
    min-height: 100%;
  }
}

.related-search {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 4rem 5rem;
  margin-bottom: 4rem;
  background-color: #f8f8f8;
  border-radius: 1.6rem;
}
.related-search > strong {
  font-family: var(--font-sb);
  margin-right: 3rem;
  align-self: center;
  flex-shrink: 0;
}
.related-search__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1rem;
}
.related-search__list a {
  display: inline-block;
  padding: 1.2rem 3.2rem;
  border: 0.1rem solid #d8d8d8;
  background-color: #fff;
  border-radius: 2rem;
}
.related-search .related-search__item--active > a {
  color: #fff;
  background-color: #7343ff;
  border-color: #7343ff;
}
@media (max-width: 719.98px) {
  .related-search {
    padding: 2rem;
    flex-direction: column;
  }
  .related-search > strong {
    margin: 0 0 1.5rem 0;
    align-self: flex-start;
  }
  .related-search__list a {
    padding: 0.6rem 0.8rem;
  }
}

.faq {
  border-top: 0.1rem solid #1d1d1d;
}
.faq-list > li {
  color: #555555;
  border-bottom: 0.1rem solid #e4e4e4;
}
.faq__question, .faq__answer-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 1.6rem 5rem;
  position: relative;
}
.faq__question:before, .faq__answer-content:before {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-self: flex-start;
  font-family: var(--font-sb);
  color: #fff;
  width: 3.6rem;
  height: 3.6rem;
  line-height: 3.6rem;
  text-align: center;
  border-radius: 100%;
  margin-right: 5.6rem;
}
.faq__question {
  line-height: 1;
}
.faq__question > p {
  flex-grow: 1;
}
.faq__question:before {
  content: "Q";
  background-color: #1d1d1d;
}
.faq__question i {
  width: 2.4rem;
  height: 2.4rem;
  content: "";
}
.faq__answer {
  background-color: #f8f8f8;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease 0s;
}
.faq__answer-content {
  border-top: 0.1rem solid #e4e4e4;
  padding: 1.6rem 5rem;
}
.faq__answer-content:before {
  content: "A";
  background-color: #7343ff;
  color: #fff;
}
.faq__answer-content > p {
  padding-top: 0.8rem;
}
.faq__answer-content [class^=list] {
  font-size: inherit;
  color: inherit;
}
.faq__answer-content [class^=list] > li:before {
  color: inherit;
}
.faq__answer-content [class^=list] > li ~ li {
  margin-top: 0;
}
.faq__item--active .faq__answer {
  max-height: 500px;
}
.faq__item--active .faq__question i {
  transform: rotate(180deg);
}
@media (max-width: 719.98px) {
  .faq__question, .faq__answer-content {
    padding: 0.8rem 2.5rem;
  }
  .faq__question:before, .faq__answer-content:before {
    margin-right: 2rem;
  }
}

#dividend-monitor {
  padding: 8rem 0;
}
#dividend-monitor .modal__wrap {
  width: 90rem;
  height: 100%;
}
@media (max-width: 719.98px) {
  #dividend-monitor .modal__wrap {
    height: calc(100% - 14rem);
  }
  #dividend-monitor .modal__tab-menu li {
    flex: 1 1 auto;
    padding: 1rem 0;
  }
}

.dividend-moniter__cont {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 3rem;
}
.dividend-moniter__cont .list-num02 > li {
  white-space: nowrap;
}
@media (max-width: 719.98px) {
  .dividend-moniter__cont {
    flex-direction: column;
  }
}
.dividend-moniter__cont__image {
  width: 100%;
}
.dividend-moniter__cont__step > li {
  margin-top: 0.6rem;
  white-space: nowrap;
}
.dividend-moniter__cont__step > li > span {
  font-family: var(--font-b);
  display: inline-block;
  padding-right: 0.8rem;
}
@media (max-width: 719.98px) {
  .dividend-moniter__image {
    margin: 0 auto;
  }
}

.refund-rate__img {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  background-color: #f5f5f5;
  padding: 5rem 10rem;
  border-radius: 1.6rem;
}
@media (max-width: 719.98px) {
  .refund-rate__img {
    padding: 2rem;
  }
  .refund-rate__img h6 {
    font-size: 1.7rem;
  }
}
.content__box .refund-rate__img ~ [class^=list] {
  margin-top: 2rem;
}

.membership-services {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 2rem;
}
.membership-service {
  background-color: #f8f8f8;
  border-radius: 1.6rem;
  padding: 5.5rem 6.5rem;
}
.membership-service > h6 {
  text-align: center;
}
.membership-service__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2rem 6.8rem;
}
.membership-service__list > li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
}
.membership-service__list strong {
  font-size: 1.9rem;
}
.membership-service__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 12rem;
  height: 12rem;
  border: 0.2rem solid #e4e4e4;
  border-radius: 3rem;
  background-color: #fff;
  margin-bottom: 1.6rem;
}
.membership-service__ico > i {
  width: 5.4rem;
  height: 5.4rem;
}
.membership-service > strong {
  display: block;
  font-size: 1.9rem;
  font-family: var(--font-b);
}
.membership-service > strong > p {
  font-size: 1.7rem;
}
@media (max-width: 1399.98px) {
  .membership-service {
    padding: 3rem 4rem;
  }
  .membership-service__list {
    gap: 3rem;
  }
}
@media (max-width: 719.98px) {
  .membership-services {
    grid-template-columns: 1fr;
  }
  .membership-service {
    padding: 3.2rem;
  }
  .membership-service__list {
    flex-direction: column;
  }
  .membership-service__ico {
    width: 10rem;
    height: 10rem;
  }
  .membership-service__ico > i {
    width: 4rem;
    height: 4rem;
  }
}

.derbyonapp-cancel__list, .deposit-inquiry__list {
  display: grid;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  grid-template-columns: repeat(5, 1fr);
}
.derbyonapp-cancel__list > li, .deposit-inquiry__list > li {
  position: relative;
}
.derbyonapp-cancel__cont, .deposit-inquiry__cont {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  border-radius: 1.6rem;
  border: 0.5rem solid #e0e0ff;
  background-color: #fafaff;
  padding: 5rem 4.5rem;
  height: 100%;
}
.derbyonapp-cancel__cont > span, .deposit-inquiry__cont > span {
  position: absolute;
  top: 1.1rem;
  right: 1.5rem;
  font-size: 2.3rem;
  font-family: var(--font-sb);
  line-height: 1;
  color: #3C1AFF;
}
.derbyonapp-cancel__cont > i, .deposit-inquiry__cont > i {
  width: 5.4rem;
  height: 5.4rem;
  margin-bottom: 3rem;
}
.derbyonapp-cancel__cont > strong, .deposit-inquiry__cont > strong {
  font-size: 2.8rem;
  font-family: var(--font-b);
}
.derbyonapp-cancel__cont > p, .deposit-inquiry__cont > p {
  margin-top: 0.8rem;
}
.derbyonapp-bottom {
  padding-bottom: 10rem;
}
@media (max-width: 719.98px) {
  .derbyonapp-bottom {
    padding-bottom: 0;
  }
}

.withdrawal-bubble {
  position: absolute;
  top: calc(100% + 1.5rem);
  left: -0.5rem;
  color: #7343ff;
  z-index: 1;
  font-size: 1.5rem;
}
.withdrawal-bubble > div {
  position: relative;
  padding: 1.6rem;
  border-radius: 1.6rem;
  white-space: nowrap;
}
.withdrawal-bubble > div,
.withdrawal-bubble > div :after {
  background-color: #fff;
  border: 0.1rem solid #e4e4e4;
}
.withdrawal-bubble > div .txt {
  font-family: var(--font-b);
}
.withdrawal-bubble .triangle {
  position: absolute;
  top: -3.1rem;
  left: 3.2rem;
  z-index: 1;
  width: 0;
  height: 0;
  display: inline-block;
  border-left: 1.3rem solid transparent;
  border-right: 1.3rem solid transparent;
  border-bottom: 3.1rem solid #e4e4e4;
}
.withdrawal-bubble .triangle:before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: -1.2rem;
  width: 0;
  height: 0;
  border-left: 1.2rem solid transparent;
  border-right: 1.2rem solid transparent;
  border-bottom: 3rem solid #fff;
}
@media (max-width: 719.98px) {
  .withdrawal-bubble {
    position: static;
  }
  .withdrawal-bubble > div {
    background: transparent;
    border: 0;
    padding: 1.6rem 0 0 0.5rem;
    white-space: normal;
  }
  .withdrawal-bubble .triangle {
    display: none;
  }
}

.online-service__request-img {
  margin: 1rem 0 1rem -2.6rem;
  display: flex;
  gap: 2rem;
}
.online-service__request-img > div {
  border: 0.1rem solid #d9d9d9;
  aspect-ratio: 2 / 1;
  width: 15.6rem;
}

.content-youtube {
  margin-top: 3rem;
}
.content-youtube__frame-box {
  position: relative;
  aspect-ratio: 1.8 / 1;
  width: 80rem;
}
.content-youtube__frame-box > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 719.98px) {
  .content-youtube__frame-box {
    width: 100%;
  }
}

.qrcode-guide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 2rem;
}
.qrcode-guide__cont, .qrcode-guide__img {
  display: flex;
  flex-direction: column;
  background-color: #f3f3ff;
  border-radius: 1.6rem;
  padding: 5.5rem;
  flex: 1 1 0;
}
.qrcode-guide__cont {
  flex-basis: 41.8%;
  align-items: flex-start;
  align-self: stretch;
}
.qrcode-guide__cont > strong {
  font-size: 2.5rem;
  font-family: var(--font-b);
}
.qrcode-guide__cont .list-dot {
  margin-top: 1.6rem;
}
.qrcode-guide__img {
  text-align: center;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
.qrcode-guide__img > img {
  margin-bottom: 1rem;
  aspect-ratio: 1 / 1;
  width: 13rem;
}
@media (max-width: 719.98px) {
  .qrcode-guide {
    flex-wrap: wrap;
  }
  .qrcode-guide__cont {
    flex: 1 1 100%;
  }
  .qrcode-guide__img {
    flex: 1 1 calc(50% - 1rem);
  }
}

.appsetup {
  margin-top: 2rem;
  padding: 5.5rem;
  background-color: #f7f7f7;
  border-radius: 1.6rem;
}
.appsetup-step {
  display: grid;
  align-items: flex-start;
  justify-content: center;
  gap: 7.8rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
}
.appsetup-step > li {
  display: grid;
  grid-template-rows: 1fr;
}
@media (max-width: 1199.98px) {
  .appsetup-step {
    gap: 5.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.appsetup__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  font-family: var(--font-b);
  padding: 1.4rem 1.6rem;
  border: 0.2rem solid #e0e0ff;
  background-color: #e9e9ff;
  border-radius: 1.2rem;
}
.appsetup__content > span {
  display: inline-block;
  padding-right: 0.6rem;
}
.appsetup__title {
  position: relative;
  padding-left: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
}
.appsetup__title > span {
  position: absolute;
  left: 0;
  top: 0;
}
.appsetup__image {
  margin-top: 2rem;
}
.appsetup__image > img {
  width: 100%;
}
.appsetup ~ [class^=list] {
  margin-top: 2rem;
}
@media (max-width: 719.98px) {
  .appsetup {
    padding: 3.2rem;
  }
  .appsetup-step {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
  }
}
@media (max-width: 440px) {
  .appsetup-step {
    grid-template-columns: 1fr;
  }
}

.appuse-step {
  margin-top: 6rem;
  display: grid;
  align-items: stretch;
  justify-content: center;
  gap: 8rem 3.1rem;
  grid-auto-rows: auto;
}
.appuse-step > li:nth-last-child(1) .appuse-step__number {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='57' viewBox='0 0 150 57' fill='none'%3E%3Cpath d='M1.5 16C1.5 7.99187 7.99187 1.5 16 1.5H134C142.008 1.5 148.5 7.99187 148.5 16V30.2348V41C148.5 49.0081 142.008 55.5 134 55.5H16C7.99187 55.5 1.5 49.0081 1.5 41V16Z' fill='%23F9F9FF' stroke='%23E0E0FF' stroke-width='3'/%3E%3C/svg%3E");
}
.appuse-step__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  height: 100%;
}
.appuse-step__number {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 15rem;
  height: 5.7rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='147' height='57' viewBox='0 0 147 57' fill='none'%3E%3Cpath d='M1.5 16C1.5 7.99187 7.99187 1.5 16 1.5H120.411C125.129 1.5 129.552 3.79527 132.268 7.653L141.878 21.3039C145.583 26.5657 145.376 33.6396 141.37 38.6761L132.345 50.0252C129.594 53.4843 125.416 55.5 120.996 55.5H16C7.99186 55.5 1.5 49.0081 1.5 41V16Z' fill='%23F9F9FF' stroke='%23E0E0FF' stroke-width='3'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  color: #7343ff;
  font-family: var(--font-b);
}
.appuse-step__content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 6.7rem 4.3rem 4.3rem;
  background-color: #f7f7f7;
  border-radius: 1.6rem;
}
@media (max-width: 1199.98px) {
  .appuse-step__content {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }
}
.appuse-step__text {
  min-height: 5.56em;
  text-align: left;
  font-size: 2.3rem;
  font-family: var(--font-b);
  line-height: 1.4;
}
.appuse-step__text .asterisk__txt, .appuse-step__text .asterisk__txt--basic {
  margin-top: 0.4rem;
  color: #1d1d1d;
  text-align: left;
  font-size: 1.7rem;
  font-family: var(--font-r);
}
.appuse-step.type02 {
  grid-template-columns: repeat(2, 1fr);
}
.appuse-step.type02 .appuse-step__content {
  justify-content: space-between;
}
.appuse-step.type02 .appuse-step__image {
  margin-top: 4rem;
}
.appuse-step.type02 .appuse-step__image > img {
  width: 40rem;
}
@media (max-width: 719.98px) {
  .appuse-step.type02 {
    grid-template-columns: repeat(1, 1fr);
  }
  .appuse-step.type02 .appuse-step__content {
    justify-content: flex-start;
  }
  .appuse-step.type02 .appuse-step__image {
    width: 100%;
  }
  .appuse-step.type02 .appuse-step__image > img {
    width: 100%;
  }
}
.appuse-step--join > li:nth-child(3) .appuse-step__content, .appuse-step--join > li:nth-child(4) .appuse-step__content, .appuse-step--join > li:nth-child(5) .appuse-step__content {
  padding-left: 2.9rem;
}
.appuse-step--join > li:nth-child(3) .appuse-step__text, .appuse-step--join > li:nth-child(4) .appuse-step__text, .appuse-step--join > li:nth-child(5) .appuse-step__text {
  padding-left: 1.75rem;
}
@media (max-width: 959.98px) {
  .appuse-step__howto-buyseat.type03 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.appuse-step__general-buying li:nth-child(4), .appuse-step__online-buying li:nth-child(4) {
  grid-column: span 2;
}
.appuse-step__general-buying li:nth-child(4) .appuse-step__image, .appuse-step__online-buying li:nth-child(4) .appuse-step__image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 3rem;
}
@media (max-width: 1199.98px) {
  .appuse-step__general-buying li:nth-child(4) .appuse-step__image > img, .appuse-step__online-buying li:nth-child(4) .appuse-step__image > img {
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 959.98px) {
  .appuse-step__general-buying li:nth-child(4), .appuse-step__online-buying li:nth-child(4) {
    grid-column: auto;
  }
}
@media (max-width: 719.98px) {
  .appuse-step__general-buying, .appuse-step__online-buying {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
  .appuse-step__general-buying .appuse-step__image, .appuse-step__online-buying .appuse-step__image {
    flex-direction: column;
  }
  .appuse-step__general-buying li:nth-child(4) .appuse-step__image > img, .appuse-step__online-buying li:nth-child(4) .appuse-step__image > img {
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 440px) {
  .appuse-step__general-buying li:nth-child(4) .appuse-step__image, .appuse-step__online-buying li:nth-child(4) .appuse-step__image {
    flex-direction: column;
  }
  .appuse-step__general-buying li:nth-child(4) .appuse-step__image > img, .appuse-step__online-buying li:nth-child(4) .appuse-step__image > img {
    width: 100%;
  }
}
.appuse-step.type03 {
  grid-template-columns: repeat(3, 1fr);
}
.appuse-step.type03 .appuse-step__image {
  margin-top: 4rem;
}
@media (max-width: 959.98px) {
  .appuse-step.type03 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 719.98px) {
  .appuse-step.type03 {
    grid-template-columns: repeat(1, 1fr);
  }
  .appuse-step.type03 .appuse-step__image {
    width: 100%;
  }
  .appuse-step.type03 .appuse-step__image > img {
    width: 100%;
  }
  .appuse-step.type03 .appuse-step__text {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 440px) {
  .appuse-step.type03 .appuse-step__text {
    min-height: initial;
  }
}
h6 + .appuse-step {
  margin-top: 5rem;
}

.content-text__notice {
  border: 0.2rem solid #e4e4e4;
  padding: 5rem;
  background-color: #fff;
  border-radius: 1.6rem;
}
@media (max-width: 719.98px) {
  .content-text__notice {
    padding: 3.2rem;
  }
}

.deposit-progress {
  display: flex;
  margin-bottom: 9rem;
}
.deposit-progress__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 68rem;
  position: relative;
  margin: 0 auto;
}
.deposit-progress__list:before {
  content: "";
  height: 0.1rem;
  background: #e4e4e4;
  position: absolute;
  width: 78%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 1.5rem;
  z-index: 1;
}
.deposit-progress__list > li {
  width: 25%;
  text-align: center;
  position: relative;
  font-size: 1.7rem;
}
.deposit-progress__list > li:before, .deposit-progress__list > li:after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
}
.deposit-progress__list > li:before {
  background-color: #e4e4e4;
}
.deposit-progress__list > li > span {
  padding-top: 5rem;
  color: #555555;
  display: block;
}
.deposit-progress__list > li > strong {
  font-family: var(--font-b);
}
.deposit-progress .deposit-progress__step--in-progress:before {
  border: 0.6rem solid #fff;
  background-color: #7343ff;
}
.deposit-progress .deposit-progress__step--in-progress:after {
  content: "";
  width: 3rem;
  height: 3rem;
  box-shadow: 0 0 0 2px #7343ff;
}
.deposit-progress .deposit-progress__step--complete:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M9 15.125L13.125 19.25L21.375 11' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-color: #4e2cb1;
  background-position: center;
}
@media (max-width: 719.98px) {
  .deposit-progress__list {
    width: 100%;
  }
}
.deposit-contents__introduce {
  text-align: center;
}
.deposit-contents__introduce > h4 {
  margin-bottom: 3rem;
}
.deposit-contents__introduce + .content__box {
  margin-top: 8rem;
}
.deposit-inquiry__list {
  grid-template-columns: repeat(4, 1fr);
}
.deposit-inquiry__cont > i {
  margin-bottom: 4.4rem;
}
@media (max-width: 719.98px) {
  .deposit__list {
    width: 100%;
  }
}
.deposit-result {
  margin: 0 auto;
  width: 80rem;
}
@media (max-width: 719.98px) {
  .deposit-result {
    width: 100%;
  }
}
.deposit-refund-way {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 3rem;
}
.deposit-refund-way__list {
  display: grid;
  align-items: stretch;
  justify-content: center;
  gap: 3rem;
  grid-template-columns: 0.674fr 0.324fr;
}
@media (max-width: 959.98px) {
  .deposit-refund-way__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.deposit-refund-way__item {
  border: 0.2rem solid #e4e4e4;
  border-radius: 1.6rem;
  background-color: #fff;
  padding: 5rem;
}
.deposit-refund-way__item h6 {
  line-height: 1.3;
}
.deposit-refund-way__item .list-num02 > li ~ li {
  margin-top: 2rem;
}
.deposit-refund-way__item .list-num02 > li:first-child {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
}
.deposit-refund-way__item .list-num02 > li:first-child > em {
  margin-right: 2rem;
}
.deposit-refund-way__item .list-num02 > li:before {
  color: #7343ff;
}
.deposit-refund-way__item .list-dash > li .ico__sitemap {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.3rem;
}
.deposit-refund-way__item:nth-child(2) {
  background: url("/static/images/sub/bg_deposit_bg.svg") right 3.6rem bottom 6.2rem/23rem auto no-repeat;
}
@media (max-width: 719.98px) {
  .deposit-refund-way__item {
    padding: 3.2rem;
  }
  .deposit-refund-way__item:nth-child(2) {
    background-size: 15rem;
    background-position: right 3.2rem bottom 3.2rem;
    padding-bottom: 12rem;
  }
}
.deposit-refund-way__step {
  display: inline-block;
  padding: 1rem 2.4rem;
  border-radius: 10rem;
  background-color: #7343ff;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 440px) {
  .deposit-refund-way__item .list-num02 > li:first-child {
    align-items: flex-start;
  }
  .deposit-refund-way__item .list-num02 > li .asterisk__txt, .deposit-refund-way__item .list-num02 > li .asterisk__txt--basic {
    display: block;
  }
}
.deposit-userinfo {
  background-color: #f3f3ff;
  border-radius: 1.6rem;
  padding: 5.5rem 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 3rem;
  font-size: 2.3rem;
  margin: 3rem 0 8rem;
}
.deposit-userinfo__number {
  color: #7343ff;
}
@media (max-width: 719.98px) {
  .deposit-userinfo {
    padding: 3.2rem;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 959.98px) {
  .derbyonapp-cancel__cont,
  .deposit-inquiry__cont {
    padding: 3.2rem;
  }
}
@media (max-width: 719.98px) {
  .derbyonapp-cancel__list,
  .deposit-inquiry__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .derbyonapp-cancel__list > li,
  .deposit-inquiry__list > li {
    width: 100%;
    height: auto;
  }
  .derbyonapp-cancel__cont,
  .deposit-inquiry__cont {
    padding: 3.2rem;
    width: 100%;
    height: auto;
    align-items: center;
  }
  .derbyonapp-cancel__cont > span,
  .deposit-inquiry__cont > span {
    top: 1.5rem;
  }
  .derbyonapp-cancel__cont > i,
  .deposit-inquiry__cont > i {
    margin-bottom: 1rem;
  }
}
@media (max-width: 440px) {
  .derbyonapp-cancel__list,
  .deposit-inquiry__list {
    grid-template-columns: 1fr;
  }
}

.todays-race__wrap {
  margin-top: 2rem;
  background-color: #f5f5f5;
  border-radius: 1.6rem;
  padding: 5rem;
}
.todays-race__image {
  margin-bottom: 2rem;
}
.todays-race__image > img {
  width: 100%;
}
.todays-race__content, .todays-race__content--general, .todays-race__content--detail, .todays-race__content--etc {
  padding: 4rem;
  border: 0.2rem solid #e4e4e4;
}
.todays-race__content--general {
  background-color: #f4fbff;
}
.todays-race__content--detail, .todays-race__content--etc {
  border-top: 0;
}
.todays-race__content--detail {
  background-color: #fff;
}
.todays-race__content--etc {
  background-color: #e9f0f3;
}
.todays-race__content .asterisk__txt, .todays-race__content--general .asterisk__txt, .todays-race__content--detail .asterisk__txt, .todays-race__content--etc .asterisk__txt, .todays-race__content .asterisk__txt--basic, .todays-race__content--general .asterisk__txt--basic, .todays-race__content--detail .asterisk__txt--basic, .todays-race__content--etc .asterisk__txt--basic {
  word-break: break-word;
}
.todays-race__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-bottom: 2rem;
}
.todays-race__title h6 {
  padding: 1.1rem 2.4rem;
  border-radius: 5rem;
  background-color: #0279a7;
  margin-bottom: 0;
  font-size: 2.3rem;
  font-family: var(--font-b);
  color: #fff;
  line-height: 1;
}
.todays-race__title h6.todays-race__title-text--type02 {
  background-color: #587784;
}
.todays-race__title > p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-left: 1rem;
}
.todays-race__title > p .todays-race__order--consonant, .todays-race__title > p .todays-race__order--number, .todays-race__title > p .todays-race__order--alphabet {
  margin: 0 0.6rem;
  padding-right: 0.1rem;
}
.todays-race__order {
  font-size: 1.7rem;
  font-family: var(--font-sb);
}
.todays-race__order--consonant, .todays-race__order--number, .todays-race__order--alphabet {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-family: var(--font-sb);
}
.todays-race__order--number, .todays-race__order--alphabet {
  padding-right: 0.1rem;
}
.todays-race__order--consonant {
  color: #0279a7;
  border: 0.2rem solid #0279a7;
}
.todays-race__order--alphabet {
  color: #fff;
  background-color: #1d1d1d;
  font-size: 1.5rem;
  letter-spacing: -0.12rem;
  line-height: 2.3rem;
}
.todays-race__order--number {
  font-size: 1.4rem;
  letter-spacing: -0.1rem;
  color: #fff;
  background-color: #0279a7;
}
.todays-race__list--consonant > li, .todays-race__list--number > li, .todays-race__list--alphabet > li {
  position: relative;
  padding-left: 2.7rem;
}
.todays-race__list--consonant > li ~ li, .todays-race__list--number > li ~ li, .todays-race__list--alphabet > li ~ li {
  margin-top: 0.8rem;
}
.todays-race__list--consonant > li .todays-race__order--consonant, .todays-race__list--consonant > li .todays-race__order--number, .todays-race__list--consonant > li .todays-race__order--alphabet, .todays-race__list--number > li .todays-race__order--consonant, .todays-race__list--number > li .todays-race__order--number, .todays-race__list--number > li .todays-race__order--alphabet, .todays-race__list--alphabet > li .todays-race__order--consonant, .todays-race__list--alphabet > li .todays-race__order--number, .todays-race__list--alphabet > li .todays-race__order--alphabet {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 0.3rem;
}
.todays-race__list--consonant > li span.asterisk__txt, .todays-race__list--consonant > li span.asterisk__txt--basic, .todays-race__list--number > li span.asterisk__txt, .todays-race__list--number > li span.asterisk__txt--basic, .todays-race__list--alphabet > li span.asterisk__txt, .todays-race__list--alphabet > li span.asterisk__txt--basic {
  margin-left: 0.1rem;
}
.todays-race__list--consonant > li > p, .todays-race__list--number > li > p, .todays-race__list--alphabet > li > p {
  margin-top: 0.4rem;
}
.todays-race__list--consonant > li em, .todays-race__list--number > li em {
  color: #0279a7;
}
@media (max-width: 719.98px) {
  .todays-race__wrap {
    padding: 3.2rem;
  }
  .todays-race__content--general, .todays-race__content--detail, .todays-race__content--etc {
    padding: 4rem 2rem;
  }
}