/*!
 * v2.5.6
 */
body {
    --BTN-DISABLED-FONT-COLOR: rgba(var(--BLACK-RGB), 0.2);
}

body[data-theme='dark-bak'] {
    --BTN-DISABLED-FONT-COLOR: rgba(var(--WHITE-RGB), 0.2);
}

@media (prefers-color-scheme: dark-bak) {
    body:not([data-theme='light']) {
        --BTN-DISABLED-FONT-COLOR: rgba(var(--WHITE-RGB), 0.2);
    }
}

body {
    --BTN-DEFAULT-BG: #f2f2f2;
}

body[data-theme='dark-bak'] {
    --BTN-DEFAULT-BG: rgba(var(--WHITE-RGB), 0.08);
}

@media (prefers-color-scheme: dark-bak) {
    body:not([data-theme='light']) {
        --BTN-DEFAULT-BG: rgba(var(--WHITE-RGB), 0.08);
    }
}

body {
    --BTN-DEFAULT-COLOR: #06ae56;
}

body[data-theme='dark-bak'] {
    --BTN-DEFAULT-COLOR: rgba(var(--WHITE-RGB), 0.8);
}

@media (prefers-color-scheme: dark-bak) {
    body:not([data-theme='light']) {
        --BTN-DEFAULT-COLOR: rgba(var(--WHITE-RGB), 0.8);
    }
}

body {
    --BTN-DEFAULT-ACTIVE-BG: #e6e6e6;
}

body[data-theme='dark-bak'] {
    --BTN-DEFAULT-ACTIVE-BG: rgba(var(--WHITE-RGB), 0.126);
}

@media (prefers-color-scheme: dark-bak) {
    body:not([data-theme='light']) {
        --BTN-DEFAULT-ACTIVE-BG: rgba(var(--WHITE-RGB), 0.126);
    }
}

body {
    --BTN-ACTIVE-MASK: rgba(var(--BLACK-RGB), 0.1);
}

body[data-theme='dark-bak'] {
    --BTN-ACTIVE-MASK: rgba(var(--WHITE-RGB), 0.05);
}

@media (prefers-color-scheme: dark-bak) {
    body:not([data-theme='light']) {
        --BTN-ACTIVE-MASK: rgba(var(--WHITE-RGB), 0.05);
    }
}

body[data-mode='care'] {
    --BTN-DEFAULT-COLOR: #018942;
}

body[data-mode='care'][data-theme='dark-bak'] {
    --BTN-DEFAULT-COLOR: rgba(var(--WHITE-RGB), 0.8);
}

@media (prefers-color-scheme: dark-bak) {
    body[data-mode='care']:not([data-theme='light']) {
        --BTN-DEFAULT-COLOR: rgba(var(--WHITE-RGB), 0.8);
    }
}

body {
    --DIALOG-LINE-COLOR: rgba(var(--BLACK-RGB), 0.1);
}

body[data-theme='dark-bak'] {
    --DIALOG-LINE-COLOR: rgba(var(--WHITE-RGB), 0.1);
}

@media (prefers-color-scheme: dark-bak) {
    body:not([data-theme='light']) {
        --DIALOG-LINE-COLOR: rgba(var(--WHITE-RGB), 0.1);
    }
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-size: 16px;
    line-height: 1.6;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
}

a img {
    border: 0;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
}

input, textarea {
    caret-color: rgba(var(--PRIMARY-RGB), 1);
}

::-webkit-input-placeholder {
    color: rgba(var(--BLACK-RGB), 0.5);
    line-height: 1;
    font-size: inherit;
}

::placeholder {
    color: rgba(var(--BLACK-RGB), 0.5);
    line-height: 1;
    font-size: inherit;
}

body {
    --BG-0: #ededed;
    --BG-1: #f7f7f7;
    --BG-2: #fff;
    --BG-3: #f7f7f7;
    --BG-4: #4c4c4c;
    --BG-5: #fff;
    --RED: #fa5151;
    --ORANGE: #fa9d3b;
    --YELLOW: #ffc300;
    --GREEN: #91d300;
    --LIGHTGREEN: #95ec69;
    --BRAND: #07c160;
    --BLUE: #10aeff;
    --INDIGO: #1485ee;
    --PURPLE: #6467f0;
    --WHITE: #fff;
    --LINK: #576b95;
    --TEXTGREEN: #06ae56;
    --FG: #000;
    --BG: #fff;
    --TAG-TEXT-ORANGE: #fa9d3b;
    --TAG-BACKGROUND-ORANGE: rgba(250, 157, 59, 0.1);
    --TAG-TEXT-GREEN: #06ae56;
    --TAG-BACKGROUND-GREEN: rgba(6, 174, 86, 0.1);
    --TAG-TEXT-BLUE: #10aeff;
    --TAG-BACKGROUND-BLUE: rgba(16, 174, 255, 0.1);
    --TAG-TEXT-BLACK: rgba(var(--BLACK-RGB), 0.5);
    --TAG-BACKGROUND-BLACK: rgba(var(--BLACK-RGB), 0.05);
}

@media (prefers-color-scheme: dark-bak) {
    body:not([data-theme='light']) {
        --BG-0: #111;
        --BG-1: #1e1e1e;
        --BG-2: #191919;
        --BG-3: #202020;
        --BG-4: #404040;
        --BG-5: #2c2c2c;
        --RED: #fa5151;
        --ORANGE: #c87d2f;
        --YELLOW: #cc9c00;
        --GREEN: #74a800;
        --LIGHTGREEN: #3eb575;
        --BRAND: #07c160;
        --BLUE: #10aeff;
        --INDIGO: #1196ff;
        --PURPLE: #8183ff;
        --WHITE: rgba(var(--WHITE-RGB), 0.8);
        --LINK: #7d90a9;
        --TEXTGREEN: #259c5c;
        --FG: #fff;
        --BG: #000;
        --TAG-TEXT-ORANGE: rgba(250, 157, 59, 0.6);
        --TAG-BACKGROUND-ORANGE: rgba(250, 157, 59, 0.1);
        --TAG-TEXT-GREEN: rgba(6, 174, 86, 0.6);
        --TAG-BACKGROUND-GREEN: rgba(6, 174, 86, 0.1);
        --TAG-TEXT-BLUE: rgba(16, 174, 255, 0.6);
        --TAG-BACKGROUND-BLUE: rgba(16, 174, 255, 0.1);
        --TAG-TEXT-BLACK: rgba(var(--WHITE-RGB), 0.5);
        --TAG-BACKGROUND-BLACK: rgba(var(--WHITE-RGB), 0.05);
    }
}

body[data-theme='dark-bak'] {
    --BG-0: #111;
    --BG-1: #1e1e1e;
    --BG-2: #191919;
    --BG-3: #202020;
    --BG-4: #404040;
    --BG-5: #2c2c2c;
    --RED: #fa5151;
    --ORANGE: #c87d2f;
    --YELLOW: #cc9c00;
    --GREEN: #74a800;
    --LIGHTGREEN: #3eb575;
    --BRAND: #07c160;
    --BLUE: #10aeff;
    --INDIGO: #1196ff;
    --PURPLE: #8183ff;
    --WHITE: rgba(var(--WHITE-RGB), 0.8);
    --LINK: #7d90a9;
    --TEXTGREEN: #259c5c;
    --FG: #fff;
    --BG: #000;
    --TAG-TEXT-ORANGE: rgba(250, 157, 59, 0.6);
    --TAG-BACKGROUND-ORANGE: rgba(250, 157, 59, 0.1);
    --TAG-TEXT-GREEN: rgba(6, 174, 86, 0.6);
    --TAG-BACKGROUND-GREEN: rgba(6, 174, 86, 0.1);
    --TAG-TEXT-BLUE: rgba(16, 174, 255, 0.6);
    --TAG-BACKGROUND-BLUE: rgba(16, 174, 255, 0.1);
    --TAG-TEXT-BLACK: rgba(var(--WHITE-RGB), 0.5);
    --TAG-BACKGROUND-BLACK: rgba(var(--WHITE-RGB), 0.05);
}

body[data-mode='care'] {
    --BG-0: #ededed;
    --BG-1: #f7f7f7;
    --BG-2: #fff;
    --BG-3: #f7f7f7;
    --BG-4: #4c4c4c;
    --BG-5: #fff;
    --RED: #dc3636;
    --ORANGE: #e17719;
    --YELLOW: #bb8e00;
    --GREEN: #4f8400;
    --LIGHTGREEN: #2e8800;
    --BRAND: #018942;
    --BLUE: #007dbb;
    --INDIGO: #0075e2;
    --PURPLE: #6265f1;
    --WHITE: #fff;
    --LINK: #576b95;
    --TEXTGREEN: #06ae56;
    --FG: #000;
    --BG: #fff;
    --TAG-TEXT-ORANGE: #e17719;
    --TAG-BACKGROUND-ORANGE: rgba(225, 119, 25, 0.1);
    --TAG-TEXT-GREEN: #06ae56;
    --TAG-BACKGROUND-GREEN: rgba(6, 174, 86, 0.1);
    --TAG-TEXT-BLUE: #007dbb;
    --TAG-BACKGROUND-BLUE: rgba(0, 125, 187, 0.1);
    --TAG-TEXT-BLACK: rgba(var(--BLACK-RGB), 0.5);
    --TAG-BACKGROUND-BLACK: rgba(var(--BLACK-RGB), 0.05);
}

@media (prefers-color-scheme: dark-bak) {
    body[data-mode='care']:not([data-theme='light']) {
        --BG-0: #111;
        --BG-1: #1e1e1e;
        --BG-2: #191919;
        --BG-3: #202020;
        --BG-4: #404040;
        --BG-5: #2c2c2c;
        --RED: #fa5151;
        --ORANGE: #c87d2f;
        --YELLOW: #cc9c00;
        --GREEN: #74a800;
        --LIGHTGREEN: #3eb575;
        --BRAND: #07c160;
        --BLUE: #10aeff;
        --INDIGO: #1196ff;
        --PURPLE: #8183ff;
        --WHITE: rgba(var(--WHITE-RGB), 0.8);
        --LINK: #7d90a9;
        --TEXTGREEN: #259c5c;
        --FG: #fff;
        --BG: #000;
        --TAG-TEXT-ORANGE: rgba(250, 157, 59, 0.6);
        --TAG-BACKGROUND-ORANGE: rgba(250, 157, 59, 0.1);
        --TAG-TEXT-GREEN: rgba(6, 174, 86, 0.6);
        --TAG-BACKGROUND-GREEN: rgba(6, 174, 86, 0.1);
        --TAG-TEXT-BLUE: rgba(16, 174, 255, 0.6);
        --TAG-BACKGROUND-BLUE: rgba(16, 174, 255, 0.1);
        --TAG-TEXT-BLACK: rgba(var(--WHITE-RGB), 0.5);
        --TAG-BACKGROUND-BLACK: rgba(var(--WHITE-RGB), 0.05);
    }
}

body[data-mode='care'][data-theme='dark-bak'] {
    --BG-0: #111;
    --BG-1: #1e1e1e;
    --BG-2: #191919;
    --BG-3: #202020;
    --BG-4: #404040;
    --BG-5: #2c2c2c;
    --RED: #fa5151;
    --ORANGE: #c87d2f;
    --YELLOW: #cc9c00;
    --GREEN: #74a800;
    --LIGHTGREEN: #3eb575;
    --BRAND: #07c160;
    --BLUE: #10aeff;
    --INDIGO: #1196ff;
    --PURPLE: #8183ff;
    --WHITE: rgba(var(--WHITE-RGB), 0.8);
    --LINK: #7d90a9;
    --TEXTGREEN: #259c5c;
    --FG: #fff;
    --BG: #000;
    --TAG-TEXT-ORANGE: rgba(250, 157, 59, 0.6);
    --TAG-BACKGROUND-ORANGE: rgba(250, 157, 59, 0.1);
    --TAG-TEXT-GREEN: rgba(6, 174, 86, 0.6);
    --TAG-BACKGROUND-GREEN: rgba(6, 174, 86, 0.1);
    --TAG-TEXT-BLUE: rgba(16, 174, 255, 0.6);
    --TAG-BACKGROUND-BLUE: rgba(16, 174, 255, 0.1);
    --TAG-TEXT-BLACK: rgba(var(--WHITE-RGB), 0.5);
    --TAG-BACKGROUND-BLACK: rgba(var(--WHITE-RGB), 0.05);
}

body {
    --BG-COLOR-ACTIVE: #ececec;
}

body[data-theme='dark-bak'] {
    --BG-COLOR-ACTIVE: #373737;
}

@media (prefers-color-scheme: dark-bak) {
    body:not([data-theme='light']) {
        --BG-COLOR-ACTIVE: #373737;
    }
}

[class^="icon-"][class^="icon-"], [class^="icon-"][class*=" icon-"], [class*=" icon-"][class^="icon-"] {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    -webkit-mask-position: 50% 50%;
    mask-position: 50% 50%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    background-color: currentColor;
}

.icon-circle {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E);
}

.icon-download {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11.25%2012.04l-1.72-1.72-1.06%201.06%202.828%202.83a1%201%200%20001.414-.001l2.828-2.828-1.06-1.061-1.73%201.73V7h-1.5v5.04zm0-5.04V2h1.5v5h6.251c.55%200%20.999.446.999.996v13.008a.998.998%200%2001-.996.996H4.996A.998.998%200%20014%2021.004V7.996A1%201%200%20014.999%207h6.251z%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11.25%2012.04l-1.72-1.72-1.06%201.06%202.828%202.83a1%201%200%20001.414-.001l2.828-2.828-1.06-1.061-1.73%201.73V7h-1.5v5.04zm0-5.04V2h1.5v5h6.251c.55%200%20.999.446.999.996v13.008a.998.998%200%2001-.996.996H4.996A.998.998%200%20014%2021.004V7.996A1%201%200%20014.999%207h6.251z%22%2F%3E%3C%2Fsvg%3E);
}

.icon-info {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-.75-12v7h1.5v-7h-1.5zM12%209a1%201%200%20100-2%201%201%200%20000%202z%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-.75-12v7h1.5v-7h-1.5zM12%209a1%201%200%20100-2%201%201%200%20000%202z%22%2F%3E%3C%2Fsvg%3E);
}

.icon-safe-success {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201000%201000%22%3E%3Cpath%20d%3D%22M500.9%204.6C315.5%2046.7%20180.4%2093.1%2057.6%20132c0%20129.3.2%20231.7.2%20339.7%200%20304.2%20248.3%20471.6%20443.1%20523.7C695.7%20943.3%20944%20775.9%20944%20471.7c0-108%20.2-210.4.2-339.7C821.4%2093.1%20686.3%2046.7%20500.9%204.6zm248.3%20349.1l-299.7%20295c-2.1%202-5.3%202-7.4-.1L304.4%20506.1c-2-2.1-2.3-5.7-.6-8l18.3-24.9c1.7-2.3%205-2.8%207.2-1l112.2%2086c2.3%201.8%206%201.7%208.1-.1l274.7-228.9c2.2-1.8%205.7-1.7%207.7.3l17%2016.8c2.2%202.1%202.2%205.3.2%207.4z%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23070202%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201000%201000%22%3E%3Cpath%20d%3D%22M500.9%204.6C315.5%2046.7%20180.4%2093.1%2057.6%20132c0%20129.3.2%20231.7.2%20339.7%200%20304.2%20248.3%20471.6%20443.1%20523.7C695.7%20943.3%20944%20775.9%20944%20471.7c0-108%20.2-210.4.2-339.7C821.4%2093.1%20686.3%2046.7%20500.9%204.6zm248.3%20349.1l-299.7%20295c-2.1%202-5.3%202-7.4-.1L304.4%20506.1c-2-2.1-2.3-5.7-.6-8l18.3-24.9c1.7-2.3%205-2.8%207.2-1l112.2%2086c2.3%201.8%206%201.7%208.1-.1l274.7-228.9c2.2-1.8%205.7-1.7%207.7.3l17%2016.8c2.2%202.1%202.2%205.3.2%207.4z%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23070202%22%2F%3E%3C%2Fsvg%3E);
}

.icon-safe-warn {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201000%201000%22%3E%3Cpath%20d%3D%22M500.9%204.5c-185.4%2042-320.4%2088.4-443.2%20127.3%200%20129.3.2%20231.7.2%20339.6%200%20304.1%20248.2%20471.4%20443%20523.6%20194.7-52.2%20443-219.5%20443-523.6%200-107.9.2-210.3.2-339.6C821.3%2092.9%20686.2%2046.5%20500.9%204.5zm-26.1%20271.1h52.1c5.8%200%2010.3%204.7%2010.1%2010.4l-11.6%20313.8c-.1%202.8-2.5%205.2-5.4%205.2h-38.2c-2.9%200-5.3-2.3-5.4-5.2L464.8%20286c-.2-5.8%204.3-10.4%2010-10.4zm26.1%20448.3c-20.2%200-36.5-16.3-36.5-36.5s16.3-36.5%2036.5-36.5%2036.5%2016.3%2036.5%2036.5-16.4%2036.5-36.5%2036.5z%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23020202%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201000%201000%22%3E%3Cpath%20d%3D%22M500.9%204.5c-185.4%2042-320.4%2088.4-443.2%20127.3%200%20129.3.2%20231.7.2%20339.6%200%20304.1%20248.2%20471.4%20443%20523.6%20194.7-52.2%20443-219.5%20443-523.6%200-107.9.2-210.3.2-339.6C821.3%2092.9%20686.2%2046.5%20500.9%204.5zm-26.1%20271.1h52.1c5.8%200%2010.3%204.7%2010.1%2010.4l-11.6%20313.8c-.1%202.8-2.5%205.2-5.4%205.2h-38.2c-2.9%200-5.3-2.3-5.4-5.2L464.8%20286c-.2-5.8%204.3-10.4%2010-10.4zm26.1%20448.3c-20.2%200-36.5-16.3-36.5-36.5s16.3-36.5%2036.5-36.5%2036.5%2016.3%2036.5%2036.5-16.4%2036.5-36.5%2036.5z%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23020202%22%2F%3E%3C%2Fsvg%3E);
}

.icon-success {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E);
}

.icon-success-circle {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6zm-1.172-6.242l5.809-5.808.848.849-5.95%205.95a1%201%200%2001-1.414%200L7%2012.426l.849-.849%202.98%202.98z%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6zm-1.172-6.242l5.809-5.808.848.849-5.95%205.95a1%201%200%2001-1.414%200L7%2012.426l.849-.849%202.98%202.98z%22%2F%3E%3C%2Fsvg%3E);
}

.icon-success-no-circle {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.657%2018.435L3%2012.778l1.414-1.414%204.95%204.95L20.678%205l1.414%201.414-12.02%2012.021a1%201%200%2001-1.415%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.657%2018.435L3%2012.778l1.414-1.414%204.95%204.95L20.678%205l1.414%201.414-12.02%2012.021a1%201%200%2001-1.415%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.icon-waiting {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.75%2011.38V6h-1.5v6l4.243%204.243%201.06-1.06-3.803-3.804zM12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.75%2011.38V6h-1.5v6l4.243%204.243%201.06-1.06-3.803-3.804zM12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.icon-waiting-circle {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.6%2011.503l3.891%203.891-.848.849L11.4%2012V6h1.2v5.503zM12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6z%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.6%2011.503l3.891%203.891-.848.849L11.4%2012V6h1.2v5.503zM12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6z%22%2F%3E%3C%2Fsvg%3E);
}

.icon-warn {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-.763-15.864l.11%207.596h1.305l.11-7.596h-1.525zm.759%2010.967c.512%200%20.902-.383.902-.882%200-.5-.39-.882-.902-.882a.878.878%200%2000-.896.882c0%20.499.396.882.896.882z%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-.763-15.864l.11%207.596h1.305l.11-7.596h-1.525zm.759%2010.967c.512%200%20.902-.383.902-.882%200-.5-.39-.882-.902-.882a.878.878%200%2000-.896.882c0%20.499.396.882.896.882z%22%2F%3E%3C%2Fsvg%3E);
}

.icon-info-circle {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6zM11.4%2010h1.2v7h-1.2v-7zm.6-1a1%201%200%20110-2%201%201%200%20010%202z%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6zM11.4%2010h1.2v7h-1.2v-7zm.6-1a1%201%200%20110-2%201%201%200%20010%202z%22%2F%3E%3C%2Fsvg%3E);
}

.icon-cancel {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6z%22%20fill-rule%3D%22nonzero%22%2F%3E%3Cpath%20d%3D%22M12.849%2012l3.11%203.111-.848.849L12%2012.849l-3.111%203.11-.849-.848L11.151%2012l-3.11-3.111.848-.849L12%2011.151l3.111-3.11.849.848L12.849%2012z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6z%22%20fill-rule%3D%22nonzero%22%2F%3E%3Cpath%20d%3D%22M12.849%2012l3.11%203.111-.848.849L12%2012.849l-3.111%203.11-.849-.848L11.151%2012l-3.11-3.111.848-.849L12%2011.151l3.111-3.11.849.848L12.849%2012z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);
}

.icon-search {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M16.31%2015.561l4.114%204.115-.848.848-4.123-4.123a7%207%200%2011.857-.84zM16.8%2011a5.8%205.8%200%2010-11.6%200%205.8%205.8%200%200011.6%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M16.31%2015.561l4.114%204.115-.848.848-4.123-4.123a7%207%200%2011.857-.84zM16.8%2011a5.8%205.8%200%2010-11.6%200%205.8%205.8%200%200011.6%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.icon-clear {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13.06%2012l3.006-3.005-1.06-1.06L12%2010.938%208.995%207.934l-1.06%201.06L10.938%2012l-3.005%203.005%201.06%201.06L12%2013.062l3.005%203.005%201.06-1.06L13.062%2012zM12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010z%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13.06%2012l3.006-3.005-1.06-1.06L12%2010.938%208.995%207.934l-1.06%201.06L10.938%2012l-3.005%203.005%201.06%201.06L12%2013.062l3.005%203.005%201.06-1.06L13.062%2012zM12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010z%22%2F%3E%3C%2Fsvg%3E);
}

.icon-back {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm1.999-6.563L10.68%2012%2014%208.562%2012.953%207.5%209.29%2011.277a1.045%201.045%200%20000%201.446l3.663%203.777L14%2015.437z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm1.999-6.563L10.68%2012%2014%208.562%2012.953%207.5%209.29%2011.277a1.045%201.045%200%20000%201.446l3.663%203.777L14%2015.437z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.icon-delete {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6.774%206.4l.812%2013.648a.8.8%200%2000.798.752h7.232a.8.8%200%2000.798-.752L17.226%206.4H6.774zm11.655%200l-.817%2013.719A2%202%200%200115.616%2022H8.384a2%202%200%2001-1.996-1.881L5.571%206.4H3.5v-.7a.5.5%200%2001.5-.5h16a.5.5%200%2001.5.5v.7h-2.071zM14%203a.5.5%200%2001.5.5v.7h-5v-.7A.5.5%200%200110%203h4zM9.5%209h1.2l.5%209H10l-.5-9zm3.8%200h1.2l-.5%209h-1.2l.5-9z%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6.774%206.4l.812%2013.648a.8.8%200%2000.798.752h7.232a.8.8%200%2000.798-.752L17.226%206.4H6.774zm11.655%200l-.817%2013.719A2%202%200%200115.616%2022H8.384a2%202%200%2001-1.996-1.881L5.571%206.4H3.5v-.7a.5.5%200%2001.5-.5h16a.5.5%200%2001.5.5v.7h-2.071zM14%203a.5.5%200%2001.5.5v.7h-5v-.7A.5.5%200%200110%203h4zM9.5%209h1.2l.5%209H10l-.5-9zm3.8%200h1.2l-.5%209h-1.2l.5-9z%22%2F%3E%3C%2Fsvg%3E);
}

.icon-success-no-circle-thin {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.864%2016.617l-5.303-5.303-1.061%201.06%205.657%205.657a1%201%200%20001.414%200L21.238%206.364l-1.06-1.06L8.864%2016.616z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.864%2016.617l-5.303-5.303-1.061%201.06%205.657%205.657a1%201%200%20001.414%200L21.238%206.364l-1.06-1.06L8.864%2016.616z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.icon-arrow {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.icon-arrow-bold {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2212%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.157%2012.711L4.5%2018.368l-1.414-1.414%204.95-4.95-4.95-4.95L4.5%205.64l5.657%205.657a1%201%200%20010%201.414z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2212%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.157%2012.711L4.5%2018.368l-1.414-1.414%204.95-4.95-4.95-4.95L4.5%205.64l5.657%205.657a1%201%200%20010%201.414z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.icon-back-arrow {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M3.343%2012l7.071%207.071L9%2020.485l-7.778-7.778a1%201%200%20010-1.414L9%203.515l1.414%201.414L3.344%2012z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M3.343%2012l7.071%207.071L9%2020.485l-7.778-7.778a1%201%200%20010-1.414L9%203.515l1.414%201.414L3.344%2012z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.icon-back-arrow-thin {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10%2019.438L8.955%2020.5l-7.666-7.79a1.02%201.02%200%20010-1.42L8.955%203.5%2010%204.563%202.682%2012%2010%2019.438z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10%2019.438L8.955%2020.5l-7.666-7.79a1.02%201.02%200%20010-1.42L8.955%203.5%2010%204.563%202.682%2012%2010%2019.438z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.icon-close {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2010.586l5.657-5.657%201.414%201.414L13.414%2012l5.657%205.657-1.414%201.414L12%2013.414l-5.657%205.657-1.414-1.414L10.586%2012%204.929%206.343%206.343%204.93%2012%2010.586z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2010.586l5.657-5.657%201.414%201.414L13.414%2012l5.657%205.657-1.414%201.414L12%2013.414l-5.657%205.657-1.414-1.414L10.586%2012%204.929%206.343%206.343%204.93%2012%2010.586z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.icon-close-thin {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.25%2010.693L6.057%204.5%205%205.557l6.193%206.193L5%2017.943%206.057%2019l6.193-6.193L18.443%2019l1.057-1.057-6.193-6.193L19.5%205.557%2018.443%204.5z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.25%2010.693L6.057%204.5%205%205.557l6.193%206.193L5%2017.943%206.057%2019l6.193-6.193L18.443%2019l1.057-1.057-6.193-6.193L19.5%205.557%2018.443%204.5z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.icon-back-circle {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6zm1.999-5.363L12.953%2016.5%209.29%2012.723a1.045%201.045%200%20010-1.446L12.953%207.5%2014%208.563%2010.68%2012%2014%2015.438z%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6zm1.999-5.363L12.953%2016.5%209.29%2012.723a1.045%201.045%200%20010-1.446L12.953%207.5%2014%208.563%2010.68%2012%2014%2015.438z%22%2F%3E%3C%2Fsvg%3E);
}

.icon-success {
    color: rgba(var(--PRIMARY-RGB), 1);
}

.icon-waiting {
    color: var(--BLUE);
}

.icon-warn {
    color: var(--RED);
}

.icon-info {
    color: var(--BLUE);
}

.icon-success-circle {
    color: rgba(var(--PRIMARY-RGB), 1);
}

.icon-success-no-circle, .icon-success-no-circle-thin {
    color: rgba(var(--PRIMARY-RGB), 1);
}

.icon-waiting-circle {
    color: var(--BLUE);
}

.icon-circle {
    color: rgba(var(--BLACK-RGB), 0.3);
}

.icon-download {
    color: rgba(var(--PRIMARY-RGB), 1);
}

.icon-info-circle {
    color: rgba(var(--BLACK-RGB), 0.3);
}

.icon-safe-success {
    color: rgba(var(--PRIMARY-RGB), 1);
}

.icon-safe-warn {
    color: var(--YELLOW);
}

.icon-cancel {
    color: var(--RED);
}

.icon-search {
    color: rgba(var(--BLACK-RGB), 0.5);
}

.icon-clear {
    color: rgba(var(--BLACK-RGB), 0.3);
}

.icon-clear:active {
    color: rgba(var(--BLACK-RGB), 0.5);
}

.icon-delete.icon-gallery-delete {
    color: rgba(var(--WHITE-RGB), 1);
}

.icon-arrow.icon-arrow, .icon-arrow.icon-arrow-bold, .icon-arrow.icon-back-arrow, .icon-arrow.icon-back-arrow-thin, .icon-arrow-bold.icon-arrow, .icon-arrow-bold.icon-arrow-bold, .icon-arrow-bold.icon-back-arrow, .icon-arrow-bold.icon-back-arrow-thin, .icon-back-arrow.icon-arrow, .icon-back-arrow.icon-arrow-bold, .icon-back-arrow.icon-back-arrow, .icon-back-arrow.icon-back-arrow-thin, .icon-back-arrow-thin.icon-arrow, .icon-back-arrow-thin.icon-arrow-bold, .icon-back-arrow-thin.icon-back-arrow, .icon-back-arrow-thin.icon-back-arrow-thin {
    width: 1.2em;
}

.icon-arrow, .icon-arrow-bold {
    color: rgba(var(--BLACK-RGB), 0.3);
}

.icon-back-arrow, .icon-back-arrow-thin {
    color: rgba(var(--BLACK-RGB), 0.9);
}

.icon-back, .icon-back-circle {
    color: rgba(var(--BLACK-RGB), 0.9);
}

.icon-msg.icon-msg {
    width: 6.4em;
    height: 6.4em;
}

.icon-msg.icon-msg.icon-warn {
    color: var(--RED);
}

.icon-msg.icon-msg.icon-info-circle {
    color: var(--BLUE);
}

.icon-msg-primary.icon-msg-primary {
    width: 6.4em;
    height: 6.4em;
}

.icon-msg-primary.icon-msg-primary.icon-warn {
    color: var(--YELLOW);
}

.hidden-abs {
    opacity: 0;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hidden-space:empty:before {
    content: "\00A0";
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.a11y-combo {
    position: relative;
}

.a11y-combo-helper {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.a11y-combo-content {
    position: relative;
    z-index: 1;
}

.wa-hotarea-el {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 44px;
    min-height: 44px;
    width: 100%;
    height: 100%;
}

.wa-hotarea-el-wrp, .wa-hotarea, .wa-hotarea-before {
    position: relative;
}

.wa-hotarea-el-wrp a, .wa-hotarea a, .wa-hotarea-before a, .wa-hotarea-el-wrp navigator, .wa-hotarea navigator, .wa-hotarea-before navigator {
    position: relative;
    z-index: 1;
}

.wa-hotarea-before:before, .wa-hotarea:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 44px;
    min-height: 44px;
    width: 100%;
    height: 100%;
}

.link {
    color: rgba(var(--LINK-RGB), 1);
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
}

.link:visited {
    color: rgba(var(--LINK-RGB), 1);
}

.link:active {
    opacity: 0.5;
}

.btn {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 16px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 8px;
    line-height: 1;
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
    width: 184px;
}

.btn:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--BTN-ACTIVE-MASK);
    border-radius: 8px;
}

.btn:not(.btn-disabled):not(.btn-loading):active:before, .btn:not([disabled]):not(.btn-loading):active:before {
    /*content: "";*/
}

.btn-block {
    width: auto;
}

.btn-inline {
    display: inline-block;
}

.btn-default {
    color: var(--BTN-DEFAULT-COLOR);
    background-color: var(--BTN-DEFAULT-BG);
}

.btn-default:not(.btn-disabled):visited {
    color: var(--BTN-DEFAULT-COLOR);
}

.btn-primary {
    background-color: rgba(var(--PRIMARY-RGB), 1);
}

.btn-primary:not(.btn-disabled):visited {
    color: #fff;
}

.btn-warn {
    color: var(--RED);
    background-color: var(--BTN-DEFAULT-BG);
}

.btn-warn:not(.btn-disabled):visited {
    color: var(--RED);
}

.btn-disabled, .btn[disabled] {
    color: var(--BTN-DISABLED-FONT-COLOR);
    background-color: var(--BTN-DEFAULT-BG);
}

.btn-loading .loading {
    margin: -0.2em 0.34em 0 0;
}

.btn-loading .primary-loading {
    margin: -0.2em 8px 0 0;
    vertical-align: middle;
    color: currentColor;
}

.btn-loading .primary-loading:before {
    content: "";
}

.btn-loading.btn-primary {
    color: rgba(var(--WHITE-RGB), 1);
}

.btn-cell {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    color: #fff;
    line-height: 1.41176471;
    padding: 16px;
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
    overflow: hidden;
    background-color: var(--BG-5);
}

.btn-cell + .btn-cell {
    margin-top: 16px;
}

.btn-cell:active {
    /*background-color: var(--BG-COLOR-ACTIVE);*/
}

.btn-cell-icon {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    margin: -0.2em 0.34em 0 0;
}

.btn-cell-default {
    color: rgba(var(--BLACK-RGB), 0.9);
}

.btn-cell-primary {
    color: rgba(var(--LINK-RGB), 1);
}

.btn-cell-warn {
    color: var(--RED);
}

.bottom-fixed-opr-page {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.bottom-fixed-opr-page-content {
    min-height: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    padding-bottom: 80px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.bottom-fixed-opr {
    padding: 16px 32px 24px;
    padding: 16px calc(32px + constant(safe-area-inset-right)) calc(24px + constant(safe-area-inset-bottom)) calc(32px + constant(safe-area-inset-left));
    padding: 16px calc(32px + env(safe-area-inset-right)) calc(24px + env(safe-area-inset-bottom)) calc(32px + env(safe-area-inset-left));
    background: #ffffff;
    position: relative;
}

.bottom-fixed-opr:before {
    content: "";
    height: 80px;
    background: -webkit-linear-gradient(bottom, #ffffff, rgba(var(--WHITE-RGB), 0));
    background: linear-gradient(to top, #ffffff, rgba(var(--WHITE-RGB), 0));
    position: absolute;
    bottom: calc(100% - 1px);
    left: 0;
    right: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

body[data-theme='dark-bak'] .bottom-fixed-opr {
    background: #191919;
}

@media (prefers-color-scheme: dark-bak) {
    body:not([data-theme='light']) .bottom-fixed-opr {
        background: #191919;
    }
}

body[data-theme='dark-bak'] .bottom-fixed-opr:before {
    background: -webkit-linear-gradient(bottom, #191919, rgba(25, 25, 25, 0));
    background: linear-gradient(to top, #191919, rgba(25, 25, 25, 0));
}

@media (prefers-color-scheme: dark-bak) {
    body:not([data-theme='light']) .bottom-fixed-opr:before {
        background: -webkit-linear-gradient(bottom, #191919, rgba(25, 25, 25, 0));
        background: linear-gradient(to top, #191919, rgba(25, 25, 25, 0));
    }
}

.bottom-fixed-opr-page .bottom-fixed-opr {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.bottom-fixed-opr-page .bottom-fixed-opr .btn {
    width: 184px;
    padding-left: 16px;
    padding-right: 16px;
}

.bottom-fixed-opr-page .bottom-fixed-opr .btn:nth-last-child(n+2), .bottom-fixed-opr-page .bottom-fixed-opr .btn:nth-last-child(n+2) + .btn {
    margin: 0 8px;
    width: 136px;
}

.bottom-fixed-opr-page .bottom-fixed-opr .btn:nth-last-child(n+2):first-child, .bottom-fixed-opr-page .bottom-fixed-opr .btn:nth-last-child(n+2) + .btn:first-child {
    margin-left: 0;
}

.bottom-fixed-opr-page .bottom-fixed-opr .btn:nth-last-child(n+2):last-child, .bottom-fixed-opr-page .bottom-fixed-opr .btn:nth-last-child(n+2) + .btn:last-child {
    margin-right: 0;
}

.bottom-fixed-opr-page-btn-wrap .bottom-fixed-opr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.bottom-fixed-opr-page-btn-wrap .bottom-fixed-opr .btn:nth-last-child(n+2), .bottom-fixed-opr-page-btn-wrap .bottom-fixed-opr .btn:nth-last-child(n+2) + .btn {
    width: 184px;
    margin: 16px 0 0;
}

.bottom-fixed-opr-page-btn-wrap .bottom-fixed-opr .btn:nth-last-child(n+2):first-child, .bottom-fixed-opr-page-btn-wrap .bottom-fixed-opr .btn:nth-last-child(n+2) + .btn:first-child {
    margin-top: 0;
}

.half-screen-dialog.half-screen-dialog-bottom-fixed {
    padding: 0;
}

.half-screen-dialog.half-screen-dialog-bottom-fixed .half-screen-dialog-hd {
    padding: 0 24px;
    padding: 0 calc(24px + constant(safe-area-inset-right)) 0 calc(24px + constant(safe-area-inset-left));
    padding: 0 calc(24px + env(safe-area-inset-right)) 0 calc(24px + env(safe-area-inset-left));
}

.half-screen-dialog.half-screen-dialog-bottom-fixed .half-screen-dialog-bd {
    padding-bottom: 0;
}

.half-screen-dialog.half-screen-dialog-bottom-fixed .half-screen-dialog-ft {
    padding: 0;
}

.half-screen-dialog.half-screen-dialog-bottom-fixed .bottom-fixed-opr-page {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-height: 0;
}

.half-screen-dialog.half-screen-dialog-bottom-fixed .bottom-fixed-opr-page-content {
    padding: 0 24px;
    padding: 0 calc(24px + constant(safe-area-inset-right)) 0 calc(24px + constant(safe-area-inset-left));
    padding: 0 calc(24px + env(safe-area-inset-right)) 0 calc(24px + env(safe-area-inset-left));
}

.half-screen-dialog.half-screen-dialog-bottom-fixed .bottom-fixed-opr {
    padding: 16px 0 64px;
    padding: 16px 0 calc(64px + constant(safe-area-inset-bottom));
    padding: 16px 0 calc(64px + env(safe-area-inset-bottom));
}

button.btn, input.btn {
    border-width: 0;
    outline: 0;
    -webkit-appearance: none;
}

button.btn:focus, input.btn:focus {
    outline: 0;
}

button.btn-inline, input.btn-inline, button.btn-mini, input.btn-mini {
    width: auto;
}

.btn-mini {
    display: inline-block;
    width: auto;
    padding: 4px 8px;
    border-radius: 4px;
}

.btn-xmini {
    display: inline-block;
    width: auto;
    padding: 0 12px;
    line-height: 2;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2.8px;
}

.btn + .btn {
    /*margin-top: 16px;*/
}

.btn.btn-mini + .btn.btn-mini {
    margin-top: auto;
}

.btn.btn-xmini + .btn.btn-xmini {
    margin-top: auto;
}

.btn.btn-inline + .btn.btn-inline {
    margin-left: 16px;
}

.btn-area {
    margin: 16px;
}

.btn-area .btn + .btn {
    margin-top: 16px;
}

.btn-area-inline {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.btn-area-inline .btn {
    margin-top: auto;
    margin-right: 16px;
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.btn-area-inline .btn:last-child {
    margin-right: 0;
}

.btn-reset {
    background: transparent;
    border: 0;
    padding: 0;
    outline: 0;
}

.btn-icon {
    background: transparent;
    border: 0;
    padding: 0;
    outline: 0;
    font-size: 0;
}

.btn-icon:active [class*="icon-"] {
    color: rgba(var(--BLACK-RGB), 0.5);
}

.cells {
    overflow: hidden;
    position: relative;
}

.cells:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    z-index: 2;
    display: none;
}

.cells:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    z-index: 2;
    display: none;
}

.cells-title {
    padding: 16px;
    line-height: 1.4;
}

.cells-title + .cells {
}

.cells-title + .cells:before {
    display: block;
}

.cells-tips {
    margin-top: 8px;
    color: rgba(var(--BLACK-RGB), 0.5);
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
    line-height: 1.4;
}

.cells-tips a, .cells-tips navigator {
    color: rgba(var(--LINK-RGB), 1);
}

.cells-tips navigator {
    display: inline;
}

.cell {
    padding: 16px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: rgba(var(--BLACK-RGB), 0.9);
}

.cell:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 16px;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    z-index: 2;
}

.cell:first-child:before {
    display: none;
}

.cell-active:active:after {
    /*content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--BG-COLOR-ACTIVE);
    pointer-events: none;*/
}

.cell-primary {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.cell-hd {
    margin-right: 8px;
}

.cell-bd {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
}

.cell-ft {
    text-align: right;
    color: rgba(var(--BLACK-RGB), 0.5);
}

.cell-ft button {
    vertical-align: bottom;
}

.cell-content {
    font-size: 14px;
    color: rgba(var(--BLACK-RGB), 0.5);
    line-height: 1.4;
    padding-top: 4px;
}

.cell-image + .cell-title {
    padding-top: 8px;
}

.cell-swiped {
    display: block;
    padding: 0;
}

.cell-swiped > .cell-bd {
    position: relative;
    z-index: 1;
    background-color: rgba(var(--WHITE-RGB), 1);
}

.cell-swiped > .cell-ft {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    color: #fff;
}

.swiped-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 16px 1em;
    line-height: 1.41176471;
    color: inherit;
}

.swiped-btn-default {
    background-color: var(--BG-0);
}

.swiped-btn-warn {
    background-color: var(--RED);
}

.cell-access {
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
    color: inherit;
}

.cell-access:active:after {
    /*content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--BG-COLOR-ACTIVE);
    pointer-events: none;*/
}

.cell-access .cell-ft {
    padding-right: 16px;
    position: relative;
}

.cell-access .cell-ft:after {
    content: " ";
    width: 12px;
    height: 24px;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    background-color: currentColor;
    color: rgba(var(--BLACK-RGB), 0.3);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    position: absolute;
    top: 50%;
    right: -2px;
    margin-top: -12px;
}

.cell-link {
    color: rgba(var(--LINK-RGB), 1);
}

.cell-link:first-child:before {
    display: block;
}

.check-label {
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
}

.check-label.cell-readonly, .check-label.cell-disabled {
    color: rgba(var(--BLACK-RGB), 0.1);
}

.check {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.check[disabled] + .icon-checked {
    opacity: 0.1;
}

.cells-radio .cell-ft {
    padding-left: 16px;
    font-size: 0;
}

.cells-radio .check + .icon-checked {
    min-width: 16px;
    color: transparent;
}

.cells-radio .check:checked + .icon-checked, .cells-radio .check[aria-checked="true"] + .icon-checked {
    color: rgba(var(--PRIMARY-RGB), 1);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.657%2018.435L3%2012.778l1.414-1.414%204.95%204.95L20.678%205l1.414%201.414-12.02%2012.021a1%201%200%2001-1.415%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.657%2018.435L3%2012.778l1.414-1.414%204.95%204.95L20.678%205l1.414%201.414-12.02%2012.021a1%201%200%2001-1.415%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.cells-checkbox .check-label:before {
    left: 55px;
}

.cells-checkbox .cell-hd {
    padding-right: 16px;
    font-size: 0;
}

.cells-checkbox .icon-checked {
    color: rgba(var(--BLACK-RGB), 0.3);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E);
}

.cells-checkbox .check:checked + .icon-checked, .cells-checkbox .check[aria-checked="true"] + .icon-checked {
    color: rgba(var(--PRIMARY-RGB), 1);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E);
}

.label {
    display: block;
    width: 105px;
    word-wrap: break-word;
    word-break: break-all;
}

.input {
    width: 100%;
    border: 0;
    outline: 0;
    -webkit-appearance: none;
    background-color: transparent;
    font-size: inherit;
    color: inherit;
    height: 1.41176471em;
    line-height: 1.41176471;
    font-weight: inherit;
}

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

.input:focus:not(:placeholder-shown) + .btn-input-clear {
    display: inline;
}

.textarea {
    display: block;
    border: 0;
    resize: none;
    background: transparent;
    width: 100%;
    color: inherit;
    font-size: 1em;
    line-height: inherit;
    height: 80px;
    outline: 0;
}

.textarea-counter {
    color: rgba(var(--BLACK-RGB), 0.3);
    text-align: right;
    font-size: 14px;
}

.cell-warn .textarea-counter {
    color: var(--RED);
}

.cell-warn {
    color: var(--RED);
}

.cell-warn .icon-warn {
    display: inline-block;
}

.cell-readonly .input:disabled, .cell-disabled .input:disabled, .cell-readonly .textarea:disabled, .cell-disabled .textarea:disabled {
    opacity: 1;
    -webkit-text-fill-color: rgba(var(--BLACK-RGB), 0.5);
}

.cell-readonly .input[disabled], .cell-disabled .input[disabled], .cell-readonly .textarea[disabled], .cell-disabled .textarea[disabled], .cell-readonly .input[readonly], .cell-disabled .input[readonly], .cell-readonly .textarea[readonly], .cell-disabled .textarea[readonly] {
    color: rgba(var(--BLACK-RGB), 0.5);
}

.btn-input-clear {
    display: none;
    padding-left: 8px;
}

.btn-input-clear [class*="icon-"] {
    width: 18px;
}

.cells-form .cell-switch:active, .cells-form .cell-vcode:active, .cells-form .cell-readonly:active, .cells-form .cell-disabled:active {
    background-color: transparent;
}

.cells-form .cell-ft {
    font-size: 0;
}

.cells-form .icon-warn {
    display: none;
}

.cells-form input, .cells-form textarea, .cells-form label[for] {
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
}

.form-preview {
    position: relative;
}

.form-preview:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.form-preview:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.form-preview .form-preview-hd {
    position: relative;
    padding: 16px;
}

.form-preview .form-preview-hd:after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 0;
    height: 1px;
    border-bottom: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.form-preview .form-preview-hd .form-preview-value {
    font-size: 20px;
}

.form-preview .form-preview-bd {
    padding: 16px;
}

.form-preview .form-preview-ft {
    position: relative;
    line-height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.form-preview .form-preview-ft:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid var(--DIALOG-LINE-COLOR);
    color: var(--DIALOG-LINE-COLOR);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.form-preview .form-preview-item {
    overflow: hidden;
    padding: 4px 0;
}

.form-preview .form-preview-key {
    float: left;
    margin-right: 16px;
    min-width: 80px;
    color: rgba(var(--BLACK-RGB), 0.5);
    text-align: justify;
    text-align-last: justify;
}

.form-preview .form-preview-value {
    display: block;
    overflow: hidden;
    word-break: normal;
    word-wrap: break-word;
    text-align: right;
}

.form-preview .form-preview-btn {
    position: relative;
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    color: rgba(var(--LINK-RGB), 1);
    text-align: center;
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
}

.form-preview button.form-preview-btn {
    background-color: transparent;
    border: 0;
    outline: 0;
    line-height: inherit;
    font-size: inherit;
}

.form-preview .form-preview-btn:active {
    /*background-color: var(--BG-COLOR-ACTIVE);*/
}

.form-preview .form-preview-btn:after {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    bottom: 0;
    border-left: 1px solid var(--DIALOG-LINE-COLOR);
    color: var(--DIALOG-LINE-COLOR);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.form-preview .form-preview-btn:first-child:after {
    display: none;
}

.form-preview .form-preview-btn-default {
    color: rgba(var(--BLACK-RGB), 0.9);
}

.form-preview .form-preview-btn-primary {
    color: rgba(var(--LINK-RGB), 1);
}

.form-preview-list {
    padding-top: 24px;
    padding-bottom: 24px;
    position: relative;
}

.form-preview-list:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.form-preview-list:last-child {
    padding-bottom: 0;
}

.form-preview-list .form-preview-item {
    margin-top: 12px;
}

.form-preview-list .form-preview-item:first-child {
    margin-top: 0;
}

.form-preview-list .form-preview-key {
    float: left;
    margin-right: 16px;
    width: 80px;
    min-width: 80px;
    color: rgba(var(--BLACK-RGB), 0.5);
    text-align: left;
    text-align-last: unset;
}

.form-preview-list .form-preview-value {
    display: block;
    overflow: hidden;
    word-break: normal;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.form-preview-list > .cells-title:first-child {
    margin-top: 0;
}

.cell-select {
    padding: 0;
}

.cell-select .cell-bd:after {
    content: " ";
    width: 12px;
    height: 24px;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    background-color: currentColor;
    color: rgba(var(--BLACK-RGB), 0.3);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -12px;
}

.select {
    -webkit-appearance: none;
    border: 0;
    outline: 0;
    background-color: transparent;
    width: 100%;
    font-size: inherit;
    min-height: 56px;
    line-height: 56px;
    position: relative;
    z-index: 1;
    padding-left: 16px;
    padding-right: 40px;
    color: rgba(var(--BLACK-RGB), 0.9);
    vertical-align: bottom;
    box-sizing: border-box;
}

.cell-select-before .cell-hd {
    padding-left: 0;
    position: relative;
}

.cell-select-before .cell-hd:after {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    bottom: 0;
    border-right: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.cell-select-before .cell-hd:before {
    content: " ";
    width: 12px;
    height: 24px;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    background-color: currentColor;
    color: rgba(var(--BLACK-RGB), 0.3);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -12px;
}

.cell-select-before .cell-bd {
    padding-left: 16px;
}

.cell-select-before .cell-bd:after {
    display: none;
}

.cell-select-before .select {
    max-width: 5em;
    width: 105px;
    box-sizing: content-box;
}

.cell-select-after .cell-hd {
    padding-left: 16px;
}

.cell-select-after .select {
    padding-left: 0;
}

.cell-vcode {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.vcode-img {
    margin-left: 5px;
    height: 56px;
    vertical-align: middle;
}

.vcode-btn {
    display: inline-block;
    height: 56px;
    margin-left: 5px;
    padding: 0 0.6em 0 0.7em;
    line-height: 56px;
    vertical-align: middle;
    color: rgba(var(--LINK-RGB), 1);
    position: relative;
}

.vcode-btn:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    bottom: 0;
    border-left: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

button.vcode-btn {
    background-color: transparent;
    border: 0;
    outline: 0;
}

.vcode-btn:active {
    color: var(--LINK-ACTIVE);
}

.gallery {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    z-index: 1000;
}

.gallery-img, .gallery-opr {
    position: absolute;
    left: 0;
    left: constant(safe-area-inset-left);
    left: env(safe-area-inset-left);
    right: 0;
    right: constant(safe-area-inset-right);
    right: env(safe-area-inset-right);
}

.gallery-img {
    top: 0;
    top: constant(safe-area-inset-top);
    top: env(safe-area-inset-top);
    bottom: 60px;
    bottom: calc(60px + constant(safe-area-inset-bottom));
    bottom: calc(60px + env(safe-area-inset-bottom));
    width: 100%;
    background: center center no-repeat;
    background-size: contain;
}

.gallery-opr {
    position: absolute;
    bottom: 0;
    background-color: #0d0d0d;
    color: rgba(var(--WHITE-RGB), 1);
    line-height: 60px;
    text-align: center;
}

.gallery-del {
    display: block;
    padding-bottom: 0;
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
}

.gallery-del:active {
    opacity: 0.5;
}

.cell-switch {
    padding-top: 12px;
    padding-bottom: 12px;
}

.cell-switch.cell-readonly, .cell-switch.cell-disabled {
    color: rgba(var(--BLACK-RGB), 0.1);
}

.switch {
    -webkit-appearance: none;
    appearance: none;
}

.switch, .switch-cp-box {
    vertical-align: bottom;
    position: relative;
    width: 48px;
    height: 24px;
    background-color: rgba(var(--BLACK-RGB), 0.1);
    border: 0;
    padding: 2px;
    outline: 0;
    border-radius: 16px;
    box-sizing: border-box;
    -webkit-transition: background-color 0.1s, border 0.1s;
    transition: background-color 0.1s, border 0.1s;
}

.switch:after, .switch-cp-box:after {
    content: " ";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 2px 3px 0 rgba(var(--BLACK-RGB), 0.06);
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
    transition: -webkit-transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
    transition: transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
    transition: transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35), -webkit-transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
}

.switch:checked, .switch-cp-input:checked + .switch-cp-box, .switch-cp-input[aria-checked="true"] + .switch-cp-box {
    background-color: rgba(var(--PRIMARY-RGB), 1);
}

.switch:checked:after, .switch-cp-input:checked + .switch-cp-box:after, .switch-cp-input[aria-checked="true"] + .switch-cp-box:after {
    -webkit-transform: translateX(24px);
    transform: translateX(24px);
}

.switch[disabled], .switch-cp-input[disabled] + .switch-cp-box, .switch-cp-input[aria-disabled="true"] + .switch-cp-box {
    opacity: 0.1;
}

.switch-cp-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.switch-cp-box {
    display: block;
}

.cell-uploader {
    padding-bottom: 24px;
}

.uploader {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.uploader-hd {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    padding-bottom: 16px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.uploader-title {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.uploader-info {
    color: rgba(var(--BLACK-RGB), 0.3);
}

.uploader-bd {
    margin-bottom: -8px;
    margin-right: -8px;
    overflow: hidden;
}

.uploader-files {
    list-style: none;
}

.uploader-file {
    float: left;
    margin-right: 8px;
    margin-bottom: 8px;
    width: 96px;
    height: 96px;
    background: no-repeat center center;
    background-size: cover;
}

.uploader-file-status {
    position: relative;
}

.uploader-file-status:before {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(var(--BLACK-RGB), 0.5);
}

.uploader-file-status .uploader-file-content {
    display: block;
}

.uploader-file-content {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: rgba(var(--WHITE-RGB), 1);
}

.uploader-file-content .icon-warn {
    display: inline-block;
}

.uploader-input-box {
    float: left;
    position: relative;
    margin-right: 8px;
    margin-bottom: 8px;
    width: 96px;
    height: 96px;
    box-sizing: border-box;
    background-color: #ededed;
}

body[data-theme='dark-bak'] .uploader-input-box {
    background-color: #2e2e2e;
}

@media (prefers-color-scheme: dark-bak) {
    body:not([data-theme='light']) .uploader-input-box {
        background-color: #2e2e2e;
    }
}

.uploader-input-box:before, .uploader-input-box:after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #a3a3a3;
}

body[data-theme='dark-bak'] .uploader-input-box:before, body[data-theme='dark-bak'] .uploader-input-box:after {
    background-color: #6d6d6d;
}

@media (prefers-color-scheme: dark-bak) {
    body:not([data-theme='light']) .uploader-input-box:before, body:not([data-theme='light']) .uploader-input-box:after {
        background-color: #6d6d6d;
    }
}

.uploader-input-box:before {
    width: 2px;
    height: 32px;
}

.uploader-input-box:after {
    width: 32px;
    height: 2px;
}

.uploader-input-box:active:before, .uploader-input-box:active:after {
    opacity: 0.7;
}

.uploader-input {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
}

.msg-content a, .msg-content-primary a, .msg-tips a {
    color: rgba(var(--LINK-RGB), 1);
    display: inline-block;
    vertical-align: baseline;
}

.msg {
    padding-top: 48px;
    padding-bottom: 48px;
    /*padding: calc(48px + constant(safe-area-inset-top)) constant(safe-area-inset-right) calc(48px + constant(safe-area-inset-bottom)) constant(safe-area-inset-left);
    padding: calc(48px + env(safe-area-inset-top)) env(safe-area-inset-right) calc(48px + env(safe-area-inset-bottom)) env(safe-area-inset-left);*/
    text-align: center;
    line-height: 1.4;
    min-height: 100%;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.msg-icon-area {
}

.msg-text-area {
    padding: 0 32px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    line-height: 1.6;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.msg-text-area:first-child {
    /*padding-top: 96px;*/
}

.msg-align-top .msg-text-area:first-child {
    padding-top: 0;
}

.msg-title {
    font-weight: normal;
    font-size: 20px;
    color: rgba(var(--BLACK-RGB), 0.9);
}

.msg-content {
    font-weight: 400;
    color: rgba(var(--BLACK-RGB), 0.9);
}

.msg-info {
    font-size: 14px;
    color: rgba(var(--BLACK-RGB), 0.5);
}

.msg-title + .msg-content {
    /*margin-top: 8px;*/
}

.msg-title + .msg-custom-area {
}

.msg-content + .msg-custom-area {
}

.msg-info + .msg-custom-area {
}

.msg-custom-area {
    text-align: left;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    padding: 0 32px;
}

.msg-custom-area .cells-group-form .cells {
    margin: 0;
}

.msg-opr-area {
}

.msg-opr-area .btn-area {
    margin: 0;
}

.msg-opr-area .btn-area .btn + .btn {
    margin-top: 16px;
}

/*.msg-opr-area:last-child {
    margin-bottom: 96px;
}*/

.msg-tips-area {
    padding: 0 32px;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.msg-tips-area:last-child {
}

.msg-tips {
    font-size: 14px;
    color: rgba(var(--BLACK-RGB), 0.5);
}

.msg-extra-area {
    padding: 0 32px;
    box-sizing: border-box;
    color: rgba(var(--BLACK-RGB), 0.5);
}

.msg-extra-area a {
    color: rgba(var(--LINK-RGB), 1);
    display: inline;
}

.msg-icon-area + .msg-text-area {
    margin-top: 16px;
}

.msg-icon-area + .msg-custom-area {
    margin-top: 16px;
}

.msg-icon-area + .msg-opr-area {
    margin-top: 16px;
}

.msg-icon-area + .msg-tips-area {
    margin-top: 16px;
}

.msg-text-area + .msg-custom-area {
    margin-top: 16px;
}

.msg-text-area + .msg-opr-area {
    margin-top: 16px;
}

.msg-text-area + .msg-extra-area {
    margin-top: 16px;
}

.msg-text-area + .msg-tips-area {
    margin-top: 16px;
}

.msg-custom-area + .msg-opr-area {
    margin-top: 16px;
}

.msg-custom-area + .msg-tips-area {
    margin-top: 16px;
}

.msg-custom-area + .msg-extra-area {
    margin-top: 16px;
}

.msg-opr-area + .msg-custom-area {
    margin-top: 16px;
}

.msg-opr-area + .msg-extra-area {
    margin-top: 32px;
}

.msg-opr-area + .msg-tips-area {
    margin-top: 16px;
}

.msg-tips-area + .msg-opr-area {
    margin-top: 16px;
}

.steps {
}

.steps-item-title,
.steps-item-content {
    display: block;
}

.steps-item-title {
}

.steps-item-content {
    margin-top: 8px;
}

.steps-item-info {
    font-size: 14px;
    color: rgba(var(--BLACK-RGB), 0.5);
    list-style: none;
    overflow: hidden;
    line-height: 1;
    margin-top: 8px;
}

.steps-item-info-meta {
    float: left;
    padding-right: 8px;
}

.steps-item-info-meta-extra {
    position: relative;
    padding-left: 8px;
}

.steps-item-info-meta-extra:before {
    content: " ";
    position: absolute;
    top: 2px;
    left: 0;
    width: 2px;
    height: 10px;
    border-left: 1px solid rgba(var(--BLACK-RGB), 0.1);
    color: rgba(var(--BLACK-RGB), 0.1);
    transform-origin: 0 0;
    transform: scaleX(0.5);
}

.steps-item-content + .steps-item-extra,
.steps-item-extra + .steps-item-content {
    margin-top: 8px;
}

.steps-vertical {
    position: relative;
}

.steps-vertical .steps-item {
    position: relative;
    padding-bottom: 16px;
}

.steps-vertical .steps-item:last-child {
    padding-bottom: 0;
}

.steps-vertical .steps-item::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: rgba(var(--BLACK-RGB), 0.1);
    position: absolute;
    z-index: 1;
    left: 0;
    top: 12px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.steps-vertical .steps-item:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 24px;
    width: 1px;
    bottom: 0;
    border-left: 1px solid rgba(var(--BLACK-RGB), 0.1);
    color: rgba(var(--BLACK-RGB), 0.1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.steps-vertical .steps-item:first-child:not(.steps-item-success)::after {
    background-color: rgba(var(--PRIMARY-RGB), 1);
}

.steps-vertical .steps-item:last-child:before {
    display: none;
}

.steps-vertical .steps-item-inner {
    position: relative;
    z-index: 2;
    padding-left: 16px;
}

.steps-vertical .steps-item-icon {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 12px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: rgba(var(--BLACK-RGB), 0.3);
}

.steps-vertical .steps-item-icon:before {
    top: 24px;
}

.steps-vertical .steps-item.steps-item-icon::after {
    display: none;
}

.steps-vertical .steps-item-success:before {
    border-color: rgba(var(--PRIMARY-RGB), 1);
}

.steps-vertical .steps-item.steps-item-success::after {
    background-color: rgba(var(--PRIMARY-RGB), 1);
}

.steps-vertical .steps-item.steps-item-success + .steps-item .steps-item-inner .steps-item-icon {
    color: rgba(var(--PRIMARY-RGB), 1);
}

.steps-horizonal {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.steps-horizonal .steps-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.steps-horizonal .steps-item:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: rgba(var(--BLACK-RGB), 0.1);
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.steps-horizonal .steps-item:after {
    content: "";
    height: 1px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    margin: 0 4px;
    background: rgba(var(--BLACK-RGB), 0.1);
}

.steps-horizonal .steps-item:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    flex: none;
}

.steps-horizonal .steps-item:last-child:after {
    display: none;
}

.steps-horizonal .steps-item:first-child:not(.steps-item-success):before {
    background: rgba(var(--PRIMARY-RGB), 1);
}

.steps-horizonal .steps-item-inner {
    margin-left: 8px;
}

.steps-horizonal .steps-item-success:before,
.steps-horizonal .steps-item-success:after {
    background: rgba(var(--PRIMARY-RGB), 1);
}

.steps-horizonal .steps-item-success + .steps-item:before {
    background: rgba(var(--PRIMARY-RGB), 1);
}

.steps-horizonal-primary {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.steps-horizonal-primary .steps-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    position: relative;
}

.steps-horizonal-primary .steps-item:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.1);
    color: rgba(var(--BLACK-RGB), 0.1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.steps-horizonal-primary .steps-item:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    flex: none;
}

.steps-horizonal-primary .steps-item:last-child:before {
    display: none;
}

.steps-horizonal-primary .steps-item-inner {
    position: relative;
    padding-top: 36px;
}

.steps-horizonal-primary .steps-item-inner:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: rgba(var(--BLACK-RGB), 0.1);
    top: 0;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.steps-horizonal-primary .steps-item-inner:after {
    content: "";
    background-color: rgba(var(--WHITE-RGB), 1);
    width: 8px;
    height: 8px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(8px, -50%);
    transform: translate(8px, -50%);
}

.steps-horizonal-primary .steps-item-success:before {
    border-color: rgba(var(--PRIMARY-RGB), 1);
}

.steps-horizonal-primary .steps-item-success .steps-item-inner:before {
    background: rgba(var(--PRIMARY-RGB), 1);
}

.steps-horizonal-primary .steps-item-success + .steps-item .steps-item-inner:before {
    background: rgba(var(--PRIMARY-RGB), 1);
}

.steps-horizonal-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    text-align: center;
}

.steps-horizonal-center .steps-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    position: relative;
}

.steps-horizonal-center .steps-item:after,
.steps-horizonal-center .steps-item:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.1);
    color: rgba(var(--BLACK-RGB), 0.1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.steps-horizonal-center .steps-item:before {
    right: 50%;
}

.steps-horizonal-center .steps-item:after {
    left: 50%;
}

.steps-horizonal-center .steps-item:first-child:before {
    display: none;
}

.steps-horizonal-center .steps-item:last-child:after {
    display: none;
}

.steps-horizonal-center .steps-item-inner {
    position: relative;
    z-index: 1;
    padding-top: 36px;
}

.steps-horizonal-center .steps-item-inner:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: rgba(var(--BLACK-RGB), 0.1);
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.steps-horizonal-center .steps-item-inner:after {
    content: "";
    background-color: rgba(var(--WHITE-RGB), 1);
    width: 8px;
    height: 8px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.steps-horizonal-center .steps-item-success:before,
.steps-horizonal-center .steps-item-success:after,
.steps-horizonal-center .steps-item-success .steps-item-inner:before,
.steps-horizonal-center .steps-item-success + .steps-item:before,
.steps-horizonal-center .steps-item-success + .steps-item .steps-item-inner:before {
    background: rgba(var(--PRIMARY-RGB), 1);
}

page, body {
    --cellMarginLR: 16px;
    --cellPaddingLR: 16px;
}

.cells-group {
    border: 0;
}

.cells-group:first-child {
    margin-top: 0;
}

.cells-group-form {
    margin-top: 24px;
}

.cells-group-form .cells {
    margin-left: 16px;
    margin-left: var(--cellMarginLR);
    margin-right: 16px;
    margin-right: var(--cellMarginLR);
}

.cells-group-form .cells:before, .cells-group-form .cells:after {
    left: 16px;
    left: var(--cellPaddingLR);
    right: 16px;
    right: var(--cellPaddingLR);
}

.cells-group-form .cell {
    padding: 16px 16px;
    padding: 16px var(--cellPaddingLR);
}

.cells-group-form .cell:before {
    left: 16px;
    left: var(--cellPaddingLR);
    right: 16px;
    right: var(--cellPaddingLR);
}

.cells-group-form .cell-hd {
    padding-right: 16px;
}

.cells-group-form .cell-ft {
    padding-left: 16px;
}

.cells-group-form .cells-title {
    margin-top: 24px;
    margin-bottom: 8px;
    padding: 0 32px;
}

.cells-group-form:first-child .cells-title {
    margin-top: 0;
}

.cells-group-form .cells-tips {
    margin-top: 8px;
    padding: 0 calc(16px + 16px);
    padding: 0 calc(var(--cellMarginLR) + var(--cellPaddingLR));
    color: rgba(var(--BLACK-RGB), 0.3);
    color: rgba(var(--BLACK-RGB), 0.3);
}

.cells-group-form .cells-tips a {
    font-weight: 700;
}

.cells-group-form .cells-tips-warn {
    color: var(--RED);
}

.cells-group-form .label {
    max-width: 5em;
    margin-right: 8px;
}

.cells-group-form .cell-access:active:after, .cells-group-form .cell-active:active:after {
}

.cells-group-form .cell-warn input {
    color: var(--RED);
}

.cells-group-form .icon-warn {
    display: none;
}

.cells-group-form .cell-switch:active:after, .cells-group-form .cell-vcode:active:after, .cells-group-form .cell-readonly:active:after, .cells-group-form .cell-disabled:active:after {
    display: none;
}

.cells-group-form input, .cells-group-form textarea, .cells-group-form label[for] {
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
}

.cells-group-form .cell-wrap {
    -webkit-box-align: initial;
    -webkit-align-items: initial;
    align-items: initial;
    padding-top: 8px;
    padding-bottom: 8px;
}

.cells-group-form .cell-wrap .cell-hd {
    padding-right: 0;
}

.cells-group-form .cell-wrap .label {
    margin-top: 8px;
}

.cells-group-form .cell-wrap .cell-bd {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.cells-group-form .cell-control {
    margin: 8px 0 8px 16px;
}

.cells-group-form .cell-control-flex {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 30vw;
}

.cells-group-form .vcode-btn {
    font-size: 16px;
    padding: 0 12px;
    height: auto;
    width: auto;
    line-height: 2;
    border-radius: 6px;
    color: #06ae56;
    color: var(--BTN-DEFAULT-COLOR);
    background-color: #f2f2f2;
    background-color: var(--BTN-DEFAULT-BG);
}

.cells-group-form .vcode-btn:before {
    display: none;
}

.cells-group-form .cell-vcode.cell-wrap {
    padding-top: 4px;
    padding-bottom: 4px;
}

.cells-group-form .cell-vcode.cell-wrap .label {
    margin-top: 12px;
}

.cells-group-form .cell-vcode.cell-wrap .input {
    min-height: 1.88235294em;
}

.cells-group-form .cells-checkbox .check-label:before {
    left: calc(40px + 16px);
    left: calc(40px + var(--cellPaddingLR));
}

.cells-group-form .cell-select {
    padding: 0;
}

.cells-group-form .cell-select-before .cell-hd {
    padding-right: 0;
}

.cells-group-form .cell-switch {
    padding: 12px 16px;
}

.cells-group-form-primary {
    margin-top: 32px;
}

.cells-group-form-primary .cells {
    background: #f7f7f7;
    background: var(--BG-1);
    border-radius: 8px;
    overflow: hidden;
}

.cells-group-form-primary .cells:before, .cells-group-form-primary .cells:after {
    display: none;
}

.cells-group-form-primary .cell-access:active:after, .cells-group-form-primary .cell-active:active:after {
    /*border-radius: 0;*/
}

.form {
    padding: 56px 0 0;
    padding: calc(56px + constant(safe-area-inset-top)) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
    padding: calc(56px + env(safe-area-inset-top)) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    line-height: 1.4;
    min-height: 100%;
    box-sizing: border-box;
    background-color: rgba(var(--WHITE-RGB), 1);
}

.form .footer, .form .footer-link {
    font-size: 14px;
}

.form .agree {
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    text-align: justify;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    line-height: 1.6;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.form .agree-checkbox {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    margin-top: 0;
}

.form .agree-text {
    min-width: 0;
}

.form-text-area {
    padding: 0 32px;
    color: rgba(var(--BLACK-RGB), 0.9);
    text-align: center;
}

.form-control-area {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    margin: 32px 0;
}

.form-tips-area, .form-extra-area {
    margin-bottom: 24px;
    padding: 0 32px;
    text-align: center;
}

.form-extra-area {
    margin-top: 52px;
}

.form-opr-area {
    padding: 0 32px;
}

.form-opr-area:last-child {
    margin-bottom: 32px;
}

.form-opr-area + .form-tips-area {
    margin-top: 16px;
    margin-bottom: 0;
}

.form-tips-area + .form-extra-area {
    margin-top: 32px;
}

.form-tips-area:last-child {
    margin-bottom: 60px;
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.36;
}

.form-content {
    margin-top: 16px;
}

.form-tips {
    color: rgba(var(--BLACK-RGB), 0.5);
    font-size: 14px;
}

.form-tips a, .form-tips navigator {
    color: rgba(var(--LINK-RGB), 1);
}

.form-tips navigator {
    display: inline;
}

.article {
    padding: 48px 24px;
    padding: 48px calc(24px + constant(safe-area-inset-right)) calc(48px + constant(safe-area-inset-bottom)) calc(24px + constant(safe-area-inset-left));
    padding: 48px calc(24px + env(safe-area-inset-right)) calc(48px + env(safe-area-inset-bottom)) calc(24px + env(safe-area-inset-left));
    color: rgba(var(--BLACK-RGB), 0.9);
    color: rgba(var(--BLACK-RGB), 0.9);
    line-height: 1.6;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.article section {
    margin-bottom: 48px;
}

.article section section {
    margin-bottom: 32px;
}

.article section section section {
    margin-bottom: 24px;
}

.article h1, .article h2, .article h3, .article h4, .article h5, .article h6 {
    line-height: 1.4;
}

.article h1 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 48px;
    text-align: center;
}

.article h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

.article h3 {
    font-weight: 500;
    margin-bottom: 8px;
}

.article h4 {
    font-weight: 400;
    margin-bottom: 4px;
}

.article h5, .article h6 {
    font-weight: 400;
}

.article * {
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.article img {
    vertical-align: bottom;
}

.article p {
    margin: 0 0 24px;
}

.article ol, .article ul {
    list-style: none;
    margin-bottom: 24px;
}

.article ol ol, .article ul ol, .article ol ul, .article ul ul {
    padding-left: 16px;
    margin-bottom: 0;
}

.tab-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    z-index: 998;
    background-color: var(--BG-1);
}

.tab-bar:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.tab-bar-item {
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    padding: 8px 0;
    padding-bottom: calc(8px + constant(safe-area-inset-bottom));
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    font-size: 0;
    color: rgba(var(--BLACK-RGB), 0.9);
    text-align: center;
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
}

.tab-bar-item:first-child {
    padding-left: constant(safe-area-inset-left);
    padding-left: env(safe-area-inset-left);
}

.tab-bar-item:last-child {
    padding-right: constant(safe-area-inset-right);
    padding-right: env(safe-area-inset-right);
}

.tab-bar-item.tab-bar-item-on .tab-bar-icon, .tab-bar-item.tab-bar-item-on .tab-bar-icon > i, .tab-bar-item.tab-bar-item-on .tab-bar-name {
    color: rgba(var(--PRIMARY-RGB), 1);
}

.tab-bar-icon {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

i.tab-bar-icon, .tab-bar-icon > i {
    font-size: 24px;
}

.tab-bar-icon img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
    filter: brightness(0) invert(1);
}

.tab-bar-name {
    font-size: 12px;
    line-height: 1;
}

.navbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    position: relative;
    z-index: 500;
    background-color: rgba(var(--WHITE-RGB), 1);
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
}

.navbar:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid rgba(var(--BLACK-RGB), 0.1);
    border-bottom: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.navbar + .tab-panel {
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
}

.navbar-item {
    position: relative;
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    padding: 16px 0;
    padding-top: calc(16px + constant(safe-area-inset-top));
    padding-top: calc(16px + env(safe-area-inset-top));
    text-align: center;
    line-height: 1.41176471;
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
}

.navbar-item:active {
    /*background-color: var(--BG-COLOR-ACTIVE);*/
}

.navbar-item.navbar-item-on {
    /*background-color: var(--BG-COLOR-ACTIVE);*/
}

.navbar-item:after {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    bottom: 0;
    border-right: 1px solid rgba(var(--BLACK-RGB), 0.1);
    border-right: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.navbar-item:first-child {
    padding-left: constant(safe-area-inset-left);
    padding-left: env(safe-area-inset-left);
}

.navbar-item:last-child {
    padding-right: constant(safe-area-inset-right);
    padding-right: env(safe-area-inset-right);
}

.navbar-item:last-child:after {
    display: none;
}

.tab {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.tab-navbar {
    width: 100%;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    align-self: center;
    text-align: center;
    box-sizing: border-box;
    padding: 0;
    /*background: linear-gradient(180deg, rgba(var(--LIGHT-RGB), 1) 75%, transparent 100%) !important;*/
}

.tab-navbar-item {
    display: inline-block;
    padding: 0;
    margin: 0 12px;
}

.tab-navbar-item:first-child {
    margin-left: 0;
}

.tab-navbar-item:last-child {
    margin-right: 0;
}

.tab-navbar-item-active {
    position: relative;
    font-weight: bold;
    color: rgba(var(--PRIMARY-RGB), 1);
}

.tab-navbar-item-active:after {
    content: " ";
    position: absolute;
    bottom: -6px;
    left: 50%;
    right: 0;
    width: 24px;
    margin-left: -12px;
    border-bottom: 4px solid currentColor;
    transform-origin: 0 0;
    transform: scaleY(0.5);
    border-radius: 8px;
}

.tab-panel {
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-panel-item {
    display: none;
}

.progress {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.progress-bar {
    background-color: var(--BG-0);
    height: 4px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.progress-inner-bar {
    width: 0;
    height: 100%;
    background-color: rgba(var(--PRIMARY-RGB), 1);
}

.progress-label {
    display: block;
    margin-left: 16px;
}

.panel {
    position: relative;
    overflow: hidden;
}

.panel:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    display: none;
}

.panel:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    display: none;
}

.panel .cells:after {
    display: none;
}

.panel-hd {
    padding: 16px;
    position: relative;
}

.panel-hd:after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 0;
    height: 1px;
    border-bottom: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.media-box {
    padding: 16px;
    position: relative;
}

.media-box:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 16px;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.media-box:first-child:before {
    display: none;
}

a.media-box {
    color: #000;
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
}

a.media-box:active {
    /*background-color: var(--BG-COLOR-ACTIVE);*/
}

.media-box-title {
    display: block;
    font-weight: 400;
    color: rgba(var(--BLACK-RGB), 0.9);
    font-size: 16px;
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.media-box-content {
    color: rgba(var(--BLACK-RGB), 0.5);
    font-size: 14px;
    padding-top: 4px;
    /*overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;*/
}

.media-box-info {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(var(--BLACK-RGB), 0.5);
    list-style: none;
    overflow: hidden;
}

.media-box-info-meta {
    display: inline-block;
}

.media-box-info-meta + .media-box-info-meta {
    margin-left: 8px;
}

.media-box-info-meta-extra {
    padding-left: 8px;
    border-left: 1px solid rgba(var(--BLACK-RGB), 0.1);
}

.media-box-appmsg {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.media-box-appmsg .media-box-hd {
    margin-right: 16px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.media-box-appmsg .media-box-thumb {
    width: 100%;
    max-height: 100%;
    vertical-align: top;
}

.media-box-appmsg .media-box-bd {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
}

.media-box-small-appmsg {
    padding: 0;
}

.media-box-small-appmsg .cells {
    margin-top: 0;
}

.media-box-small-appmsg .cells:before {
    display: none;
}

.grids {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.grids:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.grids:after {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    bottom: 0;
    border-left: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.grid {
    position: relative;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
    width: 33.33333333%;
    padding: 12px 0;
    box-sizing: border-box;
}

.grid:before {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    bottom: 0;
    border-right: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.grid:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.grid:active {
    /*background-color: var(--BG-COLOR-ACTIVE);*/
}

.grid-image, .grid-icon {
    margin: 0 auto;
    text-align: center;
}

.grid-image img, .grid-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.grid-image + .grid-name,
.grid-icon + .grid-name {
    margin-top: 4px;
}

.grid-name {
    display: block;
    text-align: center;
    color: rgba(var(--BLACK-RGB), 0.9);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.footer {
    color: rgba(var(--BLACK-RGB), 0.3);
    text-align: center;
}

.footer a, .footer navigator {
    color: rgba(var(--LINK-RGB), 1);
}

.footer navigator {
    display: inline;
}

.footer-fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-bottom: calc(16px + constant(safe-area-inset-bottom));
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    left: constant(safe-area-inset-left);
    left: env(safe-area-inset-left);
    right: constant(safe-area-inset-right);
    right: env(safe-area-inset-right);
}

.footer-links {
}

.footer-link {
    display: inline-block;
    vertical-align: top;
    margin: 0 8px;
    position: relative;
    font-size: 14px;
}

.footer-link:before {
    content: " ";
    position: absolute;
    top: 0.36em;
    bottom: 0.36em;
    left: -8px;
    width: 1px;
    border-left: 1px solid rgba(var(--BLACK-RGB), 0.3);
    color: rgba(var(--BLACK-RGB), 0.3);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.footer-link:first-child:before {
    display: none;
}

.footer-text {
    padding: 0 16px;
    font-size: 12px;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.flex-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.dialog {
    position: fixed;
    z-index: 5000;
    top: 50%;
    left: 16px;
    right: 16px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-color: rgba(var(--WHITE-RGB), 1);
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    max-height: 90%;
}

.dialog-hd {
    padding: 24px 24px 16px 24px;
}

.dialog-title {
    line-height: 1.4;
}

.dialog-bd {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px;
    margin-bottom: 24px;
    line-height: 1.4;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    color: rgba(var(--BLACK-RGB), 0.5);
}

.dialog-bd:first-child {
    min-height: 40px;
    margin-top: 24px;
    color: rgba(var(--BLACK-RGB), 0.9);
}

.dialog-ft {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.dialog-ft:after {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid var(--DIALOG-LINE-COLOR);
    color: var(--DIALOG-LINE-COLOR);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.dialog-btn {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    display: block;
    line-height: 1.41176471;
    padding: 16px 0;
    color: rgba(var(--PRIMARY-RGB), 1);
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
    position: relative;
    overflow: hidden;
}

.dialog-btn:active {
    /*background-color: var(--BG-COLOR-ACTIVE);*/
}

.dialog-btn:after {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    bottom: 0;
    border-left: 1px solid var(--DIALOG-LINE-COLOR);
    color: var(--DIALOG-LINE-COLOR);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.dialog-btn:first-child:after {
    display: none;
}

.dialog-btn-default {
    color: rgba(var(--BLACK-RGB), 0.9);
}

.skin-android .dialog {
    text-align: left;
    box-shadow: 0 6px 30px 0 rgba(var(--BLACK-RGB), 0.1);
}

.skin-android .dialog-title {
}

.skin-android .dialog-hd {
    text-align: left;
}

.skin-android .dialog-bd {
    color: rgba(var(--BLACK-RGB), 0.5);
}

.skin-android .dialog-bd:first-child {
    color: rgba(var(--BLACK-RGB), 0.9);
}

.skin-android .dialog-ft {
    display: block;
    text-align: right;
    line-height: 40px;
    min-height: 40px;
    padding: 0 24px 16px;
}

.skin-android .dialog-ft:after {
    display: none;
}

.skin-android .dialog-btn {
    display: inline-block;
    vertical-align: top;
    padding: 0 0.8em;
}

.skin-android .dialog-btn:after {
    display: none;
}

.skin-android .dialog-btn:last-child {
    margin-right: -0.8em;
}

.skin-android .dialog-btn-default {
    color: rgba(var(--BLACK-RGB), 0.9);
}

@media screen and (min-width: 352px) {
    .dialog {
        width: 320px;
        margin: 0 auto;
    }
}

.half-screen-dialog {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 160px;
    max-height: 75%;
    z-index: 5000;
    line-height: 1.4;
    background-color: rgba(var(--WHITE-RGB), 1);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
    padding: 0 24px;
    padding: 0 calc(24px + constant(safe-area-inset-right)) constant(safe-area-inset-bottom) calc(24px + constant(safe-area-inset-left));
    padding: 0 calc(24px + env(safe-area-inset-right)) env(safe-area-inset-bottom) calc(24px + env(safe-area-inset-left));
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

@media only screen and (max-device-height: 558px) {
    .half-screen-dialog {
        max-height: calc(100% - 16px);
    }
}

.half-screen-dialog-hd {
    min-height: 64px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.half-screen-dialog-hd .icon-btn, .half-screen-dialog-hd .btn-icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: rgba(var(--BLACK-RGB), 0.3);
}

.half-screen-dialog-hd .icon-btn:active, .half-screen-dialog-hd .btn-icon:active {
    /*opacity: 0.5;*/
}

.half-screen-dialog-hd-side {
    position: relative;
    left: -8px;
}

.half-screen-dialog-hd-main {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.half-screen-dialog-hd-side + .half-screen-dialog-hd-main {
    text-align: center;
    padding: 0 16px;
}

.half-screen-dialog-hd-main + .half-screen-dialog-hd-side {
    right: -8px;
    left: auto;
}

.half-screen-dialog-hd-main + .half-screen-dialog-hd-side .icon-btn, .half-screen-dialog-hd-main + .half-screen-dialog-hd-side .btn-icon {
    right: 0;
}

.half-screen-dialog-title {
    display: block;
    color: rgba(var(--BLACK-RGB), 0.9);
}

.half-screen-dialog-sub-title {
    display: block;
    color: rgba(var(--BLACK-RGB), 0.5);
    font-size: 14px;
}

.half-screen-dialog-bd {
    /*-webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    overflow-y: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;*/
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.half-screen-dialog-content {
    font-weight: 700;
    color: rgba(var(--BLACK-RGB), 0.9);
    line-height: 1.4;
}

.half-screen-dialog-tips {
    padding-top: 16px;
    font-size: 14px;
    color: rgba(var(--BLACK-RGB), 0.3);
    line-height: 1.4;
}

.half-screen-dialog-ft {
    padding: 16px 0 32px 0;
    text-align: center;
}

.half-screen-dialog-ft:empty {
    padding: 16px 0;
}

.half-screen-dialog-ft .btn:nth-last-child(n+2), .half-screen-dialog-ft .btn:nth-last-child(n+2) + .btn {
    display: inline-block;
    vertical-align: top;
    margin: 0 8px;
    width: 136px;
}

.half-screen-dialog-btn-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.half-screen-dialog-btn-area .btn {
    width: 184px;
    padding-left: 16px;
    padding-right: 16px;
}

.half-screen-dialog-btn-area .btn:nth-last-child(n+2), .half-screen-dialog-btn-area .btn:nth-last-child(n+2) + .btn {
    margin: 0 8px;
    width: 136px;
}

.half-screen-dialog-btn-area .btn:nth-last-child(n+2):first-child, .half-screen-dialog-btn-area .btn:nth-last-child(n+2) + .btn:first-child {
    margin-left: 0;
}

.half-screen-dialog-btn-area .btn:nth-last-child(n+2):last-child, .half-screen-dialog-btn-area .btn:nth-last-child(n+2) + .btn:last-child {
    margin-right: 0;
}

.half-screen-dialog-btn-area + .half-screen-dialog-attachment-area {
    margin-top: 16px;
    margin-bottom: -16px;
}

.half-screen-dialog-btn-wrap .half-screen-dialog-btn-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.half-screen-dialog-btn-wrap .half-screen-dialog-btn-area .btn:nth-last-child(n+2), .half-screen-dialog-btn-wrap .half-screen-dialog-btn-area .btn:nth-last-child(n+2) + .btn {
    width: 184px;
    margin: 16px 0 0;
}

.half-screen-dialog-btn-wrap .half-screen-dialog-btn-area .btn:nth-last-child(n+2):first-child, .half-screen-dialog-btn-wrap .half-screen-dialog-btn-area .btn:nth-last-child(n+2) + .btn:first-child {
    margin-top: 0;
}

.half-screen-dialog-large {
    max-height: none;
    top: 16px;
}

.icon-more {
    -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E  %3Cpath fill-opacity='.9' fill-rule='evenodd' d='M5 10.25a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5zm7 0a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5zm7 0a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5z'/%3E%3C/svg%3E") no-repeat 50% 50%;
    mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E  %3Cpath fill-opacity='.9' fill-rule='evenodd' d='M5 10.25a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5zm7 0a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5zm7 0a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5z'/%3E%3C/svg%3E") no-repeat 50% 50%;
}

.icon-slide-down {
    -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'%3E  %3Cdefs%3E    %3Crect id='dda90263-a290-4594-926f-6aba8cb4779f-a' width='24' height='24' x='0' y='0' rx='12'/%3E  %3C/defs%3E  %3Cg fill='none' fill-rule='evenodd'%3E    %3Cmask id='dda90263-a290-4594-926f-6aba8cb4779f-b' fill='%23fff'%3E      %3Cuse xlink:href='%23dda90263-a290-4594-926f-6aba8cb4779f-a'/%3E    %3C/mask%3E    %3Cuse fill='%23000' fill-opacity='.05' xlink:href='%23dda90263-a290-4594-926f-6aba8cb4779f-a'/%3E    %3Cg fill-opacity='.9' mask='url(%23dda90263-a290-4594-926f-6aba8cb4779f-b)'%3E      %3Cpath fill='%23000' d='M11.407 15.464L6.693 10.75l1.179-1.179 4.125 4.125 4.124-4.125L17.3 10.75l-4.714 4.714a.833.833 0 0 1-1.179 0z'/%3E    %3C/g%3E  %3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'%3E  %3Cdefs%3E    %3Crect id='dda90263-a290-4594-926f-6aba8cb4779f-a' width='24' height='24' x='0' y='0' rx='12'/%3E  %3C/defs%3E  %3Cg fill='none' fill-rule='evenodd'%3E    %3Cmask id='dda90263-a290-4594-926f-6aba8cb4779f-b' fill='%23fff'%3E      %3Cuse xlink:href='%23dda90263-a290-4594-926f-6aba8cb4779f-a'/%3E    %3C/mask%3E    %3Cuse fill='%23000' fill-opacity='.05' xlink:href='%23dda90263-a290-4594-926f-6aba8cb4779f-a'/%3E    %3Cg fill-opacity='.9' mask='url(%23dda90263-a290-4594-926f-6aba8cb4779f-b)'%3E      %3Cpath fill='%23000' d='M11.407 15.464L6.693 10.75l1.179-1.179 4.125 4.125 4.124-4.125L17.3 10.75l-4.714 4.714a.833.833 0 0 1-1.179 0z'/%3E    %3C/g%3E  %3C/g%3E%3C/svg%3E");
}

.icon-btn.icon-btn {
    outline: 0;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
    border-width: 0;
    background-color: transparent;
    color: rgba(var(--BLACK-RGB), 0.9);
    font-size: 0;
    width: auto;
    height: auto;
}

.icon-btn-goback.icon-btn-goback {
    color: rgba(var(--BLACK-RGB), 0.9);
    width: 1.2em;
    height: 2.4em;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10%2019.438L8.955%2020.5l-7.666-7.79a1.02%201.02%200%20010-1.42L8.955%203.5%2010%204.563%202.682%2012%2010%2019.438z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat 50% 50%;
    mask: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10%2019.438L8.955%2020.5l-7.666-7.79a1.02%201.02%200%20010-1.42L8.955%203.5%2010%204.563%202.682%2012%2010%2019.438z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat 50% 50%;
}

.icon-btn-close.icon-btn-close {
    color: rgba(var(--BLACK-RGB), 0.9);
    width: 1.4em;
    height: 2.4em;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.25%2010.693L6.057%204.5%205%205.557l6.193%206.193L5%2017.943%206.057%2019l6.193-6.193L18.443%2019l1.057-1.057-6.193-6.193L19.5%205.557%2018.443%204.5z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat 50% 50%;
    mask: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.25%2010.693L6.057%204.5%205%205.557l6.193%206.193L5%2017.943%206.057%2019l6.193-6.193L18.443%2019l1.057-1.057-6.193-6.193L19.5%205.557%2018.443%204.5z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat 50% 50%;
}

.toast {
    position: fixed;
    z-index: 5000;
    width: 120px;
    height: 120px;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    border-radius: 12px;
    color: rgba(var(--WHITE-RGB), 0.9);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: #4c4c4c;
    box-sizing: border-box;
    line-height: 1.4;
}

.toast-text {
    width: auto;
    height: auto;
    min-width: 152px;
    max-width: 216px;
    padding: 12px 0;
}

.toast-text .toast-content {
    font-size: 14px;
}

.icon-toast {
    display: block;
}

.icon-toast.icon-toast {
    width: 64px;
    height: 64px;
}

.icon-toast.icon-success-no-circle {
    color: rgba(var(--WHITE-RGB), 0.9);
}

.icon-toast.icon-warn {
    color: rgba(var(--WHITE-RGB), 0.9);
}

.icon-toast.loading {
    width: 3.6em;
    height: 3.6em;
}

.icon-toast.primary-loading {
    width: 1em;
    height: 1em;
    font-size: 40px;
    color: #ededed;
}

.icon-toast.primary-loading:before {
    border-width: 4px 0 4px 4px;
}

.icon-toast.primary-loading:after {
    border-width: 4px 4px 4px 0;
}

.icon-toast.primary-loading .primary-loading-dot {
    width: 4px;
    height: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.toast-loading + .toast-content {
    margin-top: 8px;
}

.toast-content {
    padding: 0 12px;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.toast-text-more .icon-toast {
    margin-bottom: 12px;
}

.toast-text-more .toast-content {
    font-size: 14px;
    line-height: 1.6;
}

.mask {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(var(--BLACK-RGB), 0.6);
}

.mask-transparent {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.action-sheet {
    position: fixed;
    left: 0;
    bottom: 0;
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 5000;
    width: 100%;
    background-color: var(--BG-1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
}

.action-sheet-title {
    position: relative;
    height: 56px;
    padding: 8px 24px;
    padding: 8px calc(24px + constant(safe-area-inset-right)) 8px calc(24px + constant(safe-area-inset-left));
    padding: 8px calc(24px + env(safe-area-inset-right)) 8px calc(24px + env(safe-area-inset-left));
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
    color: rgba(var(--BLACK-RGB), 0.5);
    background: rgba(var(--WHITE-RGB), 1);
}

.action-sheet-title:before {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.action-sheet-title .action-sheet-title-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.action-sheet-menu {
    color: rgba(var(--BLACK-RGB), 0.9);
    background-color: rgba(var(--WHITE-RGB), 1);
}

.action-sheet-action {
    margin-top: 8px;
    color: rgba(var(--BLACK-RGB), 0.5);
    background-color: rgba(var(--WHITE-RGB), 1);
}

.action-sheet-action .action-sheet-cell:last-child {
    padding-bottom: calc(12px + constant(safe-area-inset-bottom));
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

.action-sheet-cell {
    position: relative;
    padding: 16px;
    padding: 12px calc(16px + constant(safe-area-inset-right)) 12px calc(16px + constant(safe-area-inset-left));
    padding: 12px calc(16px + env(safe-area-inset-right)) 12px calc(16px + env(safe-area-inset-left));
    text-align: center;
    overflow: hidden;
}

.action-sheet-cell:before {
    content: " ";
    position: absolute;
    left: 16px;
    top: 0;
    right: 16px;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.action-sheet-cell:active {
    /*background-color: var(--BG-COLOR-ACTIVE);*/
}

.action-sheet-cell:first-child:before {
    display: none;
}

.action-sheet-cell-warn {
    color: var(--RED);
}

.skin-android .action-sheet {
    position: fixed;
    left: 50%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 274px;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: transparent;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.skin-android .action-sheet-action {
    display: none;
}

.skin-android .action-sheet-menu {
    border-radius: 8px;
    box-shadow: 0 6px 30px 0 rgba(var(--BLACK-RGB), 0.1);
}

.skin-android .action-sheet-cell {
    padding: 12px 16px;
    color: rgba(var(--BLACK-RGB), 0.9);
    text-align: left;
}

.skin-android .action-sheet-cell:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.skin-android .action-sheet-cell:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.action-sheet-toggle {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.loadmore {
    margin: 0 auto;
    text-align: center;
}

.loadmore-tips {
    display: inline-block;
    vertical-align: middle;
    color: rgba(var(--BLACK-RGB), 0.5);
}

.loadmore-line {
    position: relative
}

.loadmore-line::after {
    content: " ";
    width: 200%;
    height: 1px;
    background-color: rgba(var(--BLACK-RGB), 0.07);
    display: inline-block;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    position: absolute;
    top: 50%;
    left: -50%;
    right: -50%
}

.loadmore-line .loadmore-tips {
    position: relative;
    z-index: 2;
    background-color: rgba(var(--LIGHT-RGB), 1);
    color: rgba(var(--BLACK-RGB), 0.5);
    padding: 0 16px;
}

.loadmore-dot .loadmore-tips {
    padding: 0 8px;
}

.loadmore-dot .loadmore-tips:before {
    content: " ";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(var(--BLACK-RGB), 0.07);
    display: inline-block;
    position: relative;
    vertical-align: 0;
    top: -8px;
}

.badge {
    display: inline-block;
    padding: 0.15em 0.4em;
    min-width: 0.66666667em;
    border-radius: 18px;
    background-color: var(--RED);
    color: #fff;
    line-height: 1.2;
    text-align: center;
    font-size: 12px;
    vertical-align: middle;
}

.badge-dot {
    padding: 0.4em;
    min-width: 0;
}

.top-tips {
    display: none;
    position: fixed;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    top: 8px;
    left: 8px;
    right: 8px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    z-index: 5000;
    word-wrap: break-word;
    word-break: break-all;
}

.top-tips-success {
    background-color: rgba(var(--SUCCESS-RGB), 1);
}

.top-tips-error {
    background-color: var(--RED);
}

.top-tips-info {
    background-color: rgba(var(--INFO-RGB), 1);
}

.list-tips {
    list-style: none;
    padding-top: 24px;
    padding-bottom: 24px;
    line-height: 1.4;
    color: rgba(var(--BLACK-RGB), 0.5);
    position: relative;
}

.list-tips:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.list-tips:last-child {
    padding-bottom: 0;
}

.list-tips-item {
    position: relative;
    padding-left: 15px;
    margin: 16px 0;
}

.list-tips-item:before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: -0.1em;
}

.list-tips-item:first-child {
    margin-top: 0;
}

.form-preview-list + .list-tips > .list-tips-item:first-child {
    margin-top: 6px;
}

.search-bar {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    box-sizing: border-box;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 12px 16px;
}

.search-bar.search-bar-focusing .search-bar-cancel-btn {
    display: block;
}

.search-bar.search-bar-focusing .search-bar-label {
    display: none;
}

.search-bar .icon-search {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.search-bar-form {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
}

.search-bar-box {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.search-bar-box .search-bar-input {
    width: 100%;
    margin: 0 8px;
    border: 0;
    box-sizing: content-box;
    background: transparent;
    caret-color: rgba(var(--PRIMARY-RGB), 1);
    color: rgba(var(--BLACK-RGB), 0.9);
    font-weight: inherit;
    font-size: inherit;
}

.search-bar-box .search-bar-input:focus {
    outline: none;
}

.search-bar-box .search-bar-submit {
    background: transparent;
    border: none;
    font-size: inherit;
}

.search-bar-box .icon-clear {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    -webkit-mask-size: 20px;
    mask-size: 20px;
}

.search-bar-box .icon-clear:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44px;
}

.search-bar-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
}

.search-bar-text + .search-bar-input {
    margin-left: 16px;
}

.search-bar-input + .search-bar-submit {
    margin-left: 8px;
}

.search-bar-label {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: rgba(var(--BLACK-RGB), 0.5);
    width: 100%;
    line-height: 1;
}

.search-bar-label i {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.search-bar-label span {
    display: inline-block;
    vertical-align: middle;
}

.search-bar-cancel-btn {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    display: none;
    margin-left: 8px;
    line-height: 28px;
    color: rgba(var(--LINK-RGB), 1);
}

.search-bar-input:not(:valid) + .icon-clear {
    display: none;
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.picker {
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    left: 0;
    bottom: 0;
    z-index: 5000;
    background-color: rgba(var(--WHITE-RGB), 1);
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.picker-hd {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    padding: 16px;
    padding: 16px calc(16px + constant(safe-area-inset-right)) 16px calc(16px + constant(safe-area-inset-left));
    padding: 16px calc(16px + env(safe-area-inset-right)) 16px calc(16px + env(safe-area-inset-left));
    position: relative;
    text-align: center;
    line-height: 1.4;
}

.picker-hd:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.picker-bd {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    position: relative;
    background-color: rgba(var(--WHITE-RGB), 1);
    height: 240px;
    overflow: hidden;
}

.picker-group {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    position: relative;
    height: 100%;
}

.picker-group:first-child .picker-item {
    padding-left: constant(safe-area-inset-left);
    padding-left: env(safe-area-inset-left);
}

.picker-group:last-child .picker-item {
    padding-right: constant(safe-area-inset-right);
    padding-right: env(safe-area-inset-right);
}

.picker-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 3;
    background-image: -webkit-linear-gradient(top, rgba(var(--WHITE-RGB), 0.95), rgba(var(--WHITE-RGB), 0.6)), -webkit-linear-gradient(bottom, rgba(var(--WHITE-RGB), 0.95), rgba(var(--WHITE-RGB), 0.6));
    background-image: linear-gradient(180deg, rgba(var(--WHITE-RGB), 0.95), rgba(var(--WHITE-RGB), 0.6)), linear-gradient(0deg, rgba(var(--WHITE-RGB), 0.95), rgba(var(--WHITE-RGB), 0.6));
    background-position: top, bottom;
    background-size: 100% 92px;
    background-repeat: no-repeat;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

body[data-theme='dark-bak'] .picker-mask {
    background-image: -webkit-linear-gradient(top, rgba(25, 25, 25, 0.95), rgba(25, 25, 25, 0.6)), -webkit-linear-gradient(bottom, rgba(25, 25, 25, 0.95), rgba(25, 25, 25, 0.6));
    background-image: linear-gradient(180deg, rgba(25, 25, 25, 0.95), rgba(25, 25, 25, 0.6)), linear-gradient(0deg, rgba(25, 25, 25, 0.95), rgba(25, 25, 25, 0.6));
}

@media (prefers-color-scheme: dark-bak) {
    body:not([data-theme='light']) .picker-mask {
        background-image: -webkit-linear-gradient(top, rgba(25, 25, 25, 0.95), rgba(25, 25, 25, 0.6)), -webkit-linear-gradient(bottom, rgba(25, 25, 25, 0.95), rgba(25, 25, 25, 0.6));
        background-image: linear-gradient(180deg, rgba(25, 25, 25, 0.95), rgba(25, 25, 25, 0.6)), linear-gradient(0deg, rgba(25, 25, 25, 0.95), rgba(25, 25, 25, 0.6));
    }
}

.picker-indicator {
    width: 100%;
    height: 56px;
    position: absolute;
    left: 0;
    top: 92px;
    z-index: 3;
}

.picker-indicator:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.picker-indicator:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.picker-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.picker-item {
    height: 48px;
    line-height: 48px;
    text-align: center;
    color: rgba(var(--BLACK-RGB), 0.9);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.picker-item-disabled {
    color: rgba(var(--BLACK-RGB), 0.5);
}

@-webkit-keyframes slideUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate-slide-up, .animate-slide-up {
    -webkit-animation: slideUp ease 0.3s forwards;
    animation: slideUp ease 0.3s forwards;
}

@-webkit-keyframes slideDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.animate-slide-down, .animate-slide-down {
    -webkit-animation: slideDown ease 0.3s forwards;
    animation: slideDown ease 0.3s forwards;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in, .animate-fade-in {
    -webkit-animation: fadeIn ease 0.3s forwards;
    animation: fadeIn ease 0.3s forwards;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.animate-fade-out, .animate-fade-out {
    -webkit-animation: fadeOut ease 0.3s forwards;
    animation: fadeOut ease 0.3s forwards;
}

.transition.mask {
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
}

.transition.half-screen-dialog {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.transition-show.mask {
    opacity: 1;
    visibility: visible;
}

.transition-show.half-screen-dialog {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.agree {
    display: block;
    padding: 8px 15px 0;
    font-size: 14px;
    -webkit-tap-highlight-color: rgba(var(--BLACK-RGB), 0);
}

.agree a, .agree navigator {
    color: rgba(var(--LINK-RGB), 1);
}

.agree navigator {
    display: inline;
}

.agree-text {
    color: rgba(var(--BLACK-RGB), 0.5);
    margin-left: 2px;
}

.agree-checkbox {
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    border: 0;
    outline: 0;
    vertical-align: middle;
    background-color: currentColor;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E);
    color: rgba(var(--BLACK-RGB), 0.3);
    width: 1em;
    height: 1em;
    margin-top: -0.2em;
}

.agree-checkbox-check {
    opacity: 0;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.agree-checkbox:checked, .agree-checkbox-check[aria-checked="true"] + .agree-checkbox {
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E);
    color: rgba(var(--PRIMARY-RGB), 1);
}

.agree-animate {
    -webkit-animation: agree 0.3s 1;
    animation: agree 0.3s 1;
}

@-webkit-keyframes agree {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    16% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }

    28% {
        -webkit-transform: translateX(-16px);
        transform: translateX(-16px);
    }

    44% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    59% {
        -webkit-transform: translateX(-16px);
        transform: translateX(-16px);
    }

    73% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    82% {
        -webkit-transform: translateX(16px);
        transform: translateX(16px);
    }

    94% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes agree {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    16% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }

    28% {
        -webkit-transform: translateX(-16px);
        transform: translateX(-16px);
    }

    44% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    59% {
        -webkit-transform: translateX(-16px);
        transform: translateX(-16px);
    }

    73% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    82% {
        -webkit-transform: translateX(16px);
        transform: translateX(16px);
    }

    94% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.primary-loading {
    font-size: 16px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    position: relative;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    color: #606060;
    -webkit-animation: circleLoading 1s steps(60, end) infinite;
    animation: circleLoading 1s steps(60, end) infinite;
}

.primary-loading:before, .primary-loading:after {
    content: "";
    display: block;
    width: 0.5em;
    height: 1em;
    box-sizing: border-box;
    border: 0.125em solid;
    border-color: currentColor;
}

.primary-loading:before {
    border-right-width: 0;
    border-top-left-radius: 1em;
    border-bottom-left-radius: 1em;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000 8%, rgba(var(--BLACK-RGB), 0.3) 95%);
}

.primary-loading:after {
    border-left-width: 0;
    border-top-right-radius: 1em;
    border-bottom-right-radius: 1em;
    -webkit-mask-image: -webkit-linear-gradient(top, rgba(var(--BLACK-RGB), 0) 8%, rgba(var(--BLACK-RGB), 0.3) 95%);
}

.primary-loading-dot {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -0.0625em;
    width: 0.125em;
    height: 0.125em;
    border-top-right-radius: 0.125em;
    border-bottom-right-radius: 0.125em;
    background: currentColor;
}

@-webkit-keyframes circleLoading {
    0% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}

@keyframes circleLoading {
    0% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}

.primary-loading-primary {
    color: rgba(var(--PRIMARY-RGB), 1);
}

.primary-loading-transparent {
    color: #ededed;
}

.loading {
    font-size: 10px;
    width: 2em;
    height: 2em;
    display: inline-block;
    vertical-align: middle;
    -webkit-animation: loading 1s steps(12, end) infinite;
    animation: loading 1s steps(12, end) infinite;
    background: transparent url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E9E9E9' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23989697' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%239B999A' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23A3A1A2' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23ABA9AA' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23B2B2B2' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23BAB8B9' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23C2C0C1' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23CBCBCB' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23D2D2D2' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23DADADA' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E2E2E2' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E") no-repeat;
    background-size: 100%;
}

.loading.loading-transparent, .btn-loading.btn-primary .loading {
    background-image: url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect xmlns='http://www.w3.org/2000/svg' width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.56)' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.5)' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.43)' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.38)' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.32)' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.28)' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.25)' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.2)' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.17)' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.14)' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.1)' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.03)' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E");
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}

@keyframes loading {
    0% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}

.slider {
    padding: 15px 18px;
    -webkit-user-select: none;
    user-select: none;
}

.slider-inner {
    position: relative;
    height: 2px;
    background-color: rgba(var(--BLACK-RGB), 0.1);
}

.slider-track {
    height: 100%;
    background-color: rgba(var(--PRIMARY-RGB), 1);
    width: 0;
}

.slider-handler {
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 28px;
    margin-left: -14px;
    margin-top: -14px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(var(--BLACK-RGB), 0.1);
}

.slider-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.slider-box .slider {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.slider-box-value {
    margin-left: 0.5em;
    min-width: 24px;
    color: rgba(var(--BLACK-RGB), 0.5);
    text-align: center;
    font-size: 14px;
}

.navigation-bar {
    overflow: hidden;
}

.navigation-bar-inner {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5001;
    width: calc(100% - 32px);
    height: 48px;
    padding: 0 16px;
    color: rgba(var(--WHITE-RGB), 1);
    background-color: rgba(var(--PRIMARY-RGB), 1);
}

.navigation-bar-inner,
.navigation-bar-inner .navigation-bar-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.navigation-bar-inner .navigation-bar-left {
    position: relative;
}

.navigation-bar-inner .navigation-bar-left .navigation-bar-buttons {
    display: flex;
    justify-content: start;
    align-items: center;
    align-content: center;
    align-self: center;
    text-align: center;
    box-sizing: border-box;
    padding: 6px 4px;
    position: relative;
}

.navigation-bar-inner .navigation-bar-left .navigation-bar-buttons::before {
    content: "";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border: 1px solid rgba(var(--WHITE-RGB), 0.2);
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    box-sizing: border-box;
    border-radius: 32px;
    background-color: rgba(var(--BLACK-RGB), 0.07);
}

.navigation-bar-inner .navigation-bar-left .navigation-bar-buttons .navigation-bar-button {
    padding: 0 8px;
    position: relative;
    line-height: 1;
}

.navigation-bar-inner .navigation-bar-left .navigation-bar-buttons .navigation-bar-button::before {
    content: " ";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 1px;
    border-left: 1px solid rgba(var(--BLACK-RGB), 0.07);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.navigation-bar-inner .navigation-bar-left .navigation-bar-buttons .navigation-bar-button:first-child::before {
    display: none;
}

.navigation-bar-inner .navigation-bar-left .navigation-bar-button {
    display: inline-block;
    vertical-align: middle;
    color: rgba(var(--WHITE-RGB), 1);
}

.navigation-bar-inner .navigation-bar-left .navigation-bar-button-go-home {
    display: block;
    width: 16px;
    height: 16px;
    -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20class%3D%22icon%22%20viewBox%3D%220%200%201024%201024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22200%22%20height%3D%22200%22%3E%3Cpath%20d%3D%22M803.873%201023.126H684.836c-50.012%200-95.57-46.075-95.57-96.678V719.062l-4.638-4.708H440.415l-4.627%204.708v207.387c0%2048.791-47.344%2096.678-95.57%2096.678H221.192c-50.025%200-95.58-46.075-95.58-96.678V562.605l-4.628-4.708H76.378c-34.602%200-61.397-14.642-71.694-39.129-8.52-20.3-3.247-43.7%2013.77-61.069%2031.39-32%2088.51-91.677%20152.214-158.233C250.6%20215.96%20341.19%20121.318%20404.194%2057.025c69.363-70.788%20150.04-70.822%20219.403.011%2063.955%2065.244%20154.41%20160.892%20234.228%20245.282%2063.185%2066.817%20117.77%20124.514%20148.457%20155.857%2016.996%2017.312%2022.223%2040.758%2013.647%2061.183-10.116%2024.124-36.776%2038.54-71.264%2038.54h-44.582l-4.64%204.708V926.45c0%2048.79-47.343%2096.676-95.57%2096.676zM420.998%20667.995h183.047l31.57%2032.056v226.397c0%2025.392%2024.374%2050.33%2049.222%2050.33h119.036c20.594%200%2049.223-25.346%2049.223-50.33V543.595l31.569-32.045h64c16.77%200%2026.411-5.092%2028.538-10.14%201.832-4.355-2.603-9.357-4.006-10.794-31.005-31.638-85.702-89.481-149.044-156.445-79.684-84.254-169.979-179.744-233.64-244.694-51.324-52.368-101.916-52.334-153.208-.011-62.823%2064.102-153.312%20158.64-233.152%20242.045-63.875%2066.727-121.13%20126.55-152.598%20158.641-2.253%202.298-5.782%206.744-4.142%2010.66%202.173%205.17%2012.164%2010.738%2028.968%2010.738h64l31.58%2032.045v382.854c0%2024.44%2025.313%2050.33%2049.233%2050.33H340.22c22.54%200%2049.222-27.292%2049.222-50.33V700.052l31.556-32.057z%22%20fill%3D%22%23666%22%2F%3E%3C%2Fsvg%3E") no-repeat 100% 100%;
    mask: url("data:image/svg+xml;charset=utf8,%3Csvg%20class%3D%22icon%22%20viewBox%3D%220%200%201024%201024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22200%22%20height%3D%22200%22%3E%3Cpath%20d%3D%22M803.873%201023.126H684.836c-50.012%200-95.57-46.075-95.57-96.678V719.062l-4.638-4.708H440.415l-4.627%204.708v207.387c0%2048.791-47.344%2096.678-95.57%2096.678H221.192c-50.025%200-95.58-46.075-95.58-96.678V562.605l-4.628-4.708H76.378c-34.602%200-61.397-14.642-71.694-39.129-8.52-20.3-3.247-43.7%2013.77-61.069%2031.39-32%2088.51-91.677%20152.214-158.233C250.6%20215.96%20341.19%20121.318%20404.194%2057.025c69.363-70.788%20150.04-70.822%20219.403.011%2063.955%2065.244%20154.41%20160.892%20234.228%20245.282%2063.185%2066.817%20117.77%20124.514%20148.457%20155.857%2016.996%2017.312%2022.223%2040.758%2013.647%2061.183-10.116%2024.124-36.776%2038.54-71.264%2038.54h-44.582l-4.64%204.708V926.45c0%2048.79-47.343%2096.676-95.57%2096.676zM420.998%20667.995h183.047l31.57%2032.056v226.397c0%2025.392%2024.374%2050.33%2049.222%2050.33h119.036c20.594%200%2049.223-25.346%2049.223-50.33V543.595l31.569-32.045h64c16.77%200%2026.411-5.092%2028.538-10.14%201.832-4.355-2.603-9.357-4.006-10.794-31.005-31.638-85.702-89.481-149.044-156.445-79.684-84.254-169.979-179.744-233.64-244.694-51.324-52.368-101.916-52.334-153.208-.011-62.823%2064.102-153.312%20158.64-233.152%20242.045-63.875%2066.727-121.13%20126.55-152.598%20158.641-2.253%202.298-5.782%206.744-4.142%2010.66%202.173%205.17%2012.164%2010.738%2028.968%2010.738h64l31.58%2032.045v382.854c0%2024.44%2025.313%2050.33%2049.233%2050.33H340.22c22.54%200%2049.222-27.292%2049.222-50.33V700.052l31.556-32.057z%22%20fill%3D%22%23666%22%2F%3E%3C%2Fsvg%3E") no-repeat 100% 100%;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: currentColor
}

.navigation-bar-inner .navigation-bar-left .navigation-bar-button-go-back {
    display: block;
    width: 10px;
    height: 16px;
    -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='24' viewBox='0 0 12 24'%3E  %3Cpath fill-opacity='.9' fill-rule='evenodd' d='M10 19.438L8.955 20.5l-7.666-7.79a1.02 1.02 0 0 1 0-1.42L8.955 3.5 10 4.563 2.682 12 10 19.438z'/%3E%3C/svg%3E") no-repeat 50% 50%;
    mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='24' viewBox='0 0 12 24'%3E  %3Cpath fill-opacity='.9' fill-rule='evenodd' d='M10 19.438L8.955 20.5l-7.666-7.79a1.02 1.02 0 0 1 0-1.42L8.955 3.5 10 4.563 2.682 12 10 19.438z'/%3E%3C/svg%3E") no-repeat 50% 50%;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: currentColor
}

.navigation-bar-inner .navigation-bar-left .navigation-bar-button-go-home:active,
.navigation-bar-inner .navigation-bar-left .navigation-bar-button-go-back:active {
    opacity: .5
}

.navigation-bar-inner .navigation-bar-center {
    text-align: left;
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: start;
    justify-content: start;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0 16px;
}

.navigation-bar-inner .navigation-bar-loading {
    margin-right: 4px;
    font-size: 0;
}

.navigation-bar-inner .navigation-bar-loading .loading {
    margin-left: 0;
}

.navigation-bar-inner .navigation-bar-right {
}

.navigation-bar-placeholder {
    height: 48px;
    position: relative;
    z-index: 50;
}

.tab-bar-custom {
    position: fixed;
    z-index: 998;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--BG-1);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    box-sizing: border-box;
    padding-bottom: calc(8px + constant(safe-area-inset-bottom));
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

.tab-bar-custom:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(var(--BLACK-RGB), 0.07);
    color: rgba(var(--BLACK-RGB), 0.07);
    transform-origin: 0 0;
    transform: scaleY(0.5);
}

.tab-bar-custom .tab-bar-custom-theme {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    width: 100%;
}

.tab-bar-custom .tab-bar-custom-theme .tab-bar-custom-theme-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.tab-bar-custom .tab-bar-custom-theme .tab-bar-custom-theme-text {
    font-weight: bold;
    line-height: 1;
    margin-left: 8px;
}

.tab-bar-custom .tab-bar-custom-theme .tab-bar-custom-theme-button {
    margin-left: 8px;
}

.tab-bar-custom .tab-bar-custom-item-group {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.tab-bar-custom .tab-bar-custom-item-group .tab-bar-custom-item {
    position: relative;
    text-align: center;
    flex: 1;
    min-width: 44px;
}

/*.tab-bar-custom .tab-bar-custom-item-group .tab-bar-custom-item:first-child {
    margin-left: 4px;
}*/

.tab-bar-custom .tab-bar-custom-item-group .tab-bar-custom-item .tab-bar-custom-icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
    display: inline-block;
    margin-bottom: 4px;
}

.tab-bar-custom .tab-bar-custom-item-group .tab-bar-custom-item .tab-bar-custom-text {
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    padding: 0;
    margin: 0;
    line-height: 12px;
    white-space: nowrap;
}

.tab-bar-custom .tab-bar-custom-item-group .tab-bar-custom-item.active {
    background-color: rgba(var(--PRIMARY-RGB), 1);
}

.tab-bar-custom .tab-bar-custom-item-group .tab-bar-custom-item.active .tab-bar-custom-icon,
.tab-bar-custom .tab-bar-custom-item-group .tab-bar-custom-item.active i,
.tab-bar-custom .tab-bar-custom-item-group .tab-bar-custom-item.active .tab-bar-custom-text {
    color: rgba(var(--WHITE-RGB), 1);
}

.tab-bar-custom .tab-bar-custom-item-group + .tab-bar-custom-button-group {
    margin-left: 8px;
}

.tab-bar-custom .tab-bar-custom-button-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.tab-bar-custom .tab-bar-custom-button-group .tab-bar-custom-button {
    position: relative;
    flex: 1 1 auto;
    color: rgba(var(--WHITE-RGB), 1);
    text-align: center;
    vertical-align: middle;
    background-color: rgba(var(--PRIMARY-RGB), 1);
    padding: 10px 4px;
    border-radius: 9999px;
    line-height: 1;
}

.tab-bar-custom .tab-bar-custom-button-group .tab-bar-custom-button::after {
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border: 1px solid rgba(var(--PRIMARY-RGB), 1);
    transform: scale(0.5);
    transform-origin: 0 0;
    box-sizing: border-box;
    border-radius: 9999px;
}

.tab-bar-custom .tab-bar-custom-button-group .tab-bar-custom-button:not(:last-child):first-child {
    color: rgba(var(--PRIMARY-RGB), 1);
    background-color: transparent;
}

.tab-bar-custom .tab-bar-custom-button-group > .tab-bar-custom-button-group:not(:first-child) > .tab-bar-custom-button,
.tab-bar-custom .tab-bar-custom-button-group > .tab-bar-custom-button:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.tab-bar-custom .tab-bar-custom-button-group > .tab-bar-custom-button-group:not(:first-child) > .tab-bar-custom-button::after,
.tab-bar-custom .tab-bar-custom-button-group > .tab-bar-custom-button:not(:first-child)::after {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.tab-bar-custom .tab-bar-custom-button-group > .tab-bar-custom-button-group:not(:first-child),
.tab-bar-custom .tab-bar-custom-button-group > .tab-bar-custom-button:not(:first-child) {
    margin-left: -1px;
}

.tab-bar-custom .tab-bar-custom-button-group > .tab-bar-custom-button-group:not(:last-child) > .tab-bar-custom-button,
.tab-bar-custom .tab-bar-custom-button-group > .tab-bar-custom-button:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.tab-bar-custom .tab-bar-custom-button-group > .tab-bar-custom-button-group:not(:last-child) > .tab-bar-custom-button::after,
.tab-bar-custom .tab-bar-custom-button-group > .tab-bar-custom-button:not(:last-child)::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.popup {
    position: fixed;
    z-index: 5000;
    top: 50%;
    left: 32px;
    right: 32px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    max-height: 90%;
}

.popup .popup-btn {
    position: fixed;
    z-index: 5001;
    bottom: -60px;
    left: calc(50% - 18px);
    color: rgba(var(--WHITE-RGB), 1);
    font-size: 36px;
}

.accordion {

}

.accordion .accordion-item .accordion-item-name {
    display: flex;
    justify-content: space-between;
}

.accordion .accordion-item .accordion-item-name .chevron {
    position: relative;
    width: 12px;
    margin-left: 16px;
}

.accordion .accordion-item .accordion-item-name .chevron:after {
    content: " ";
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -12px;
    width: 12px;
    height: 24px;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    background-color: currentColor;
    color: rgba(var(--BLACK-RGB), 0.3);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
}

.accordion .accordion-item .accordion-item-content {
    display: none;
}

.accordion .accordion-item.accordion-item-active .accordion-item-name {
    font-weight: normal;
}

.accordion .accordion-item.accordion-item-active .accordion-item-name .chevron:after {
    transform: rotate(90deg);
}

.accordion .accordion-item-active .accordion-item-content {
    display: block;
}