@charset "UTF-8";
/*
Copyright (c) 2021 Kil Hyung-jin, with Reserved Font Name Pretendard.
https://github.com/orioncactus/pretendard

This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
*/
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url(/assets/fonts/Pretendard-SemiBold.subset.woff2) format("woff2"), url(/assets/fonts/Pretendard-SemiBold.subset.woff) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"), url(/assets/fonts/Pretendard-Medium.subset.woff2) format("woff2"), url(/assets/fonts/Pretendard-Medium.subset.woff) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url(/assets/fonts/Pretendard-Regular.subset.woff2) format("woff2"), url(/assets/fonts/Pretendard-Regular.subset.woff) format("woff");
}
:root {
  --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
    'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    system-ui, sans-serif;
  --text-color-primary: #222;
  --text-color-secondary: #333;
  --text-color-tertiary: #898d93;
  --text-color-disabled: #d6dbe1;
  --text-color-white: #fff;
  --text-color-link: #1f5cf8;
  --text-color-error: #f12e24;
  --color-white: #fff;
  --color-bg-disabled: #f8f9fc;
  --color-bg-hover-gray: #eff1f4;
  --color-bg-hover-blue: #eaf4ff;
  --color-bg-selected: #e0edff;
  --color-primary: #1f5cf8;
  --color-primary-hover: #003ea7;
  --color-primary-disabled: #c4ddff;
  --color-disabled: #d6dbe1;
  --color-border-default: #e6eaef;
  --color-border-light: #e0e0e0;
  --color-border-input: #d0d3d9;
  --color-error: #f12e24;
  --color-error-hover: #d92d25;
  --color-icon-secondary: #898d93;
  --color-shadow: rgba(0, 0, 0, 0.2);
  --color-bg-dark: #222;
  --bg-color-toggle-bar: #333;
  --bg-color-toggle-off: #a5a9af;
  --font-size-28: 28px;
  --font-size-26: 26px;
  --font-size-24: 24px;
  --font-size-20: 20px;
  --font-size-16: 16px;
  --font-size-15: 15px;
  --font-size-14: 14px;
  --font-size-12: 12px;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
}

:root {
  font-family: var(--font-sans);
  font-size: var(--font-size-14);
  font-weight: var(--font-medium);
  color: var(--text-color-primary);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body ::-webkit-scrollbar {
  width: 8px;
}
body ::-webkit-scrollbar-track {
  background: var(--color-bg-disabled);
}
body ::-webkit-scrollbar-thumb {
  background: var(--color-disabled);
  border-radius: 100px;
}

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

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

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

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

button,
input,
select,
textarea,
optgroup,
option {
  color: inherit;
  font: inherit;
  background: none;
  border: 0 none;
}

[hidden],
.is-hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[col-id=enabled].ag-cell-value {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
[col-id=enabled].ag-cell-value > span {
  display: flex;
}

input[type=number] {
  appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.app {
  --card-border-radius: 20px;
  --card-bg: #fff;
  --app-layout-space: 30px;
  min-height: 100vh;
  padding-bottom: 40px;
  background-color: #f2f3f5;
}
.app-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--app-brand-gap, 17px);
}
.app-brand__logo {
  width: 117px;
  height: 35px;
  background: url("/assets/images/soop-logo.svg") no-repeat center/contain;
}
.app-brand__text {
  font-size: var(--font-size-26);
  font-weight: var(--font-semi-bold);
  color: #000;
}

.is-error .ui-input__field,
.is-error .ui-select-box__trigger,
.is-error .ui-textarea__field {
  border-color: var(--color-error);
}
.is-error .ui-input__field:hover,
.is-error .ui-select-box__trigger:hover,
.is-error .ui-textarea__field:hover {
  border-color: var(--color-error);
}
.is-error.is-disabled .ui-select-box__trigger:hover {
  border-color: var(--color-error) !important;
}

.is-emphasis {
  color: var(--text-color-error);
}

.app-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: var(--app-layout-space);
  background-color: #f2f3f5;
  z-index: 10;
}
.app-header .app-service {
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-header .app-service .ui-icon-button--close {
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M23 5L5 23' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 5L23 23' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-color: transparent;
  border-radius: 0;
  border: 0;
}
.app-header .app-service .app-brand .app-brand__text {
  font-size: var(--font-size-15);
  color: #131313;
}

.app-body {
  display: flex;
  min-height: 100vh;
}
.app-body--split {
  flex-direction: row;
}
.app-body--split .app-header {
  position: static;
}
.app-body--split .main {
  padding-inline: var(--app-layout-space);
}
.app-body .app-workspace {
  flex: 1;
}

.app-card {
  background-color: var(--card-bg);
  border-radius: var(--card-border-radius);
}
.app-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--card-header-height, 60px);
  padding-inline: var(--card-padding-inline, 30px);
}
.app-card__title {
  font-size: var(--font-size-20);
  font-weight: var(--font-semi-bold);
  color: var();
}
.app-card__title-container {
  display: flex;
  align-items: center;
}
.app-card__footer {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-block: 40px;
  border-top: 1px solid var(--color-border-default);
}
.app-card__footer .footer-left {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 40px;
}
.app-card .filter-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}
.app-card .filter-controls ~ .filter-controls {
  border-top: 1px solid var(--color-border-default);
}
.app-card .filter-controls--tab {
  padding: 0;
  margin-bottom: -1px;
}
.app-card .filter-controls__item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.app-card .filter-controls .ui-icon-button {
  flex-shrink: 0;
}
.app-card .filter-controls .filter-field {
  display: flex;
  gap: 10px;
  align-items: center;
}
.app-card .filter-controls .filter-field + .filter-field {
  margin-left: 10px;
}
.app-card .data-summary {
  display: inline-flex;
  align-items: center;
  gap: 21px;
}
.app-card .data-summary__label {
  position: relative;
}
.app-card .data-summary__label::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 1px;
  height: 14px;
  margin-top: -7px;
  background-color: var(--color-border-default);
}
.app-card .data-summary__count {
  color: var(--text-color-tertiary);
}
.app-card .content-grid {
  --ag-font-family: var(--font-sans);
  --ag-wrapper-border: 0;
  --ag-wrapper-border-radius: 0;
  --ag-header-background-color: transparent;
  --ag-header-font-size: 12px;
  --ag-header-text-color: var(--text-color-tertiary);
  --ag-header-column-resize-handle-color: transparent;
  --ag-row-border: 1px solid var(--color-border-default);
  --ag-row-hover-bg: #f4f9ff;
  --ag-row-hover-color: #f4f9ff;
  --ag-selected-row-background-color: transparent;
  --ag-column-border: 1px solid var(--color-border-default);
  --ag-cell-horizontal-padding: 14px;
  --ag-pinned-column-border: 1px solid #a5a9af;
  --pinned-left-width: 530px;
  --pinned-right-width: 48px;
  --ag-checkbox-unchecked-border-color: #d6dbe1;
  --ag-checkbox-checked-shape-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M0.293056 5.72123C-0.600029 4.68471 0.750382 3.09982 1.64331 4.13634L4.3843 7.30374L10.3502 0.340876C11.2433 -0.701482 12.601 0.883217 11.7079 1.92558L5.06654 9.67267C4.69361 10.1081 4.08874 10.1094 3.71441 9.67485L0.293056 5.72123Z' fill='white'/%3E%3C/svg%3E");
  --ag-checkbox-checked-shape-color: var(--color-white);
  --ag-checkbox-checked-border-color: var(--color-primary);
  --ag-checkbox-checked-background-color: var(--color-primary);
  --ag-checkbox-indeterminate-shape-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='2' viewBox='0 0 12 2' fill='none'%3E%3Cpath d='M1 1H11' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  --ag-checkbox-indeterminate-border-color: var(--color-primary);
  --ag-checkbox-indeterminate-background-color: var(--color-primary);
  --ag-focus-shadow: none;
}
.app-card .content-grid .ag-root {
  padding-top: 44px;
}
.app-card .content-grid .ag-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--color-border-default);
  background-color: var(--color-bg-disabled);
}
.app-card .content-grid .ag-header.is-fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-top: 0;
}
.app-card .content-grid .ag-cell,
.app-card .content-grid .ag-header-cell {
  align-content: center;
}
.app-card .content-grid .ag-cell.text-left,
.app-card .content-grid .ag-header-cell.text-left {
  text-align: left;
}
.app-card .content-grid .ag-cell.text-left .ag-header-cell-label,
.app-card .content-grid .ag-header-cell.text-left .ag-header-cell-label {
  justify-content: flex-start;
}
.app-card .content-grid .ag-cell.text-center,
.app-card .content-grid .ag-header-cell.text-center {
  text-align: center;
}
.app-card .content-grid .ag-cell.text-center .ag-header-cell-label,
.app-card .content-grid .ag-header-cell.text-center .ag-header-cell-label {
  justify-content: center;
}
.app-card .content-grid .ag-cell.text-right,
.app-card .content-grid .ag-header-cell.text-right {
  text-align: right;
}
.app-card .content-grid .ag-cell.text-right .ag-header-cell-label,
.app-card .content-grid .ag-header-cell.text-right .ag-header-cell-label {
  justify-content: flex-end;
}
.app-card .content-grid .ag-header-cell {
  --ag-checkbox-unchecked-background-color: var(--color-bg-disabled);
  border-right: 1px solid var(--color-border-default);
  text-align: center;
}
.app-card .content-grid .ag-header-cell .ag-header-cell-label {
  justify-content: center;
}
.app-card .content-grid .ag-header-cell.data-descending .ag-header-cell-text {
  position: relative;
  padding-right: 20px;
}
.app-card .content-grid .ag-header-cell.data-descending .ag-header-cell-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6.02688 9.5L2.5 6.2M6.02688 9.5L6.02688 2.5M6.02688 9.5L9.5 6.2' stroke='%23A5A9AF' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
.app-card .content-grid .ag-header-cell.data-ascending .ag-header-cell-text {
  position: relative;
  padding-right: 20px;
}
.app-card .content-grid .ag-header-cell.data-ascending .ag-header-cell-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6.02688 9.5L2.5 6.2M6.02688 9.5L6.02688 2.5M6.02688 9.5L9.5 6.2' stroke='%23A5A9AF' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%) rotate(180deg);
}
.app-card .content-grid .ag-header-cell .ag-icon-asc::before {
  mask-image: url(/assets/images/icon-table-asc.svg);
}
.app-card .content-grid .ag-header-cell .ag-icon-desc::before {
  mask-image: url(/assets/images/icon-table-desc.svg);
}
.app-card .content-grid .ag-header-cell .ag-icon {
  --ag-icon-size: 12px;
}
.app-card .content-grid [col-id=row-edit-button].ag-header-cell .ag-header-cell-label {
  justify-content: center;
}
.app-card .content-grid [col-id=delivery_status].ag-cell > span,
.app-card .content-grid [col-id=ad-preview-button].ag-cell > span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-card .content-grid [col-id=row-edit-button].ag-cell {
  --ag-cell-horizontal-padding: 11px;
}
.app-card .content-grid [col-id=row-edit-button].ag-cell > span {
  display: flex;
  justify-content: center;
}
.app-card .content-grid .cell-row-edit-button span {
  display: flex;
  justify-content: center;
}
.app-card .content-grid .ui-row-edit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-link);
  cursor: pointer;
}
.app-card .content-grid .ad-preview-button {
  display: inline-flex;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M12.9833 10C12.9833 11.65 11.6499 12.9833 9.99993 12.9833C8.34993 12.9833 7.0166 11.65 7.0166 10C7.0166 8.35 8.34993 7.01667 9.99993 7.01667C11.6499 7.01667 12.9833 8.35 12.9833 10Z' stroke='%23898D93' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.99987 16.8917C12.9415 16.8917 15.6832 15.1583 17.5915 12.1583C18.3415 10.9833 18.3415 9.00833 17.5915 7.83333C15.6832 4.83333 12.9415 3.1 9.99987 3.1C7.0582 3.1 4.31654 4.83333 2.4082 7.83333C1.6582 9.00833 1.6582 10.9833 2.4082 12.1583C4.31654 15.1583 7.0582 16.8917 9.99987 16.8917Z' stroke='%23898D93' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  cursor: pointer;
}
.app-card .content-grid .ag-checkbox {
  --ag-icon-size: 20px;
}
.app-card .content-grid .ag-selection-checkbox {
  margin-right: 0 !important;
}
.app-card .ag-body-horizontal-scroll {
  position: absolute;
  bottom: 0;
}
.app-card .ag-body-horizontal-scroll .ag-horizontal-left-spacer,
.app-card .ag-body-horizontal-scroll .ag-horizontal-right-spacer {
  overflow: hidden;
}
.app-card .ag-body-horizontal-scroll .ag-body-horizontal-scroll-viewport {
  border-bottom: 1px solid var(--color-border-default);
}
.app-card .ag-body-horizontal-scroll .ag-body-horizontal-scroll-viewport::-webkit-scrollbar {
  height: 7px;
  background-color: var(--color-bg-disabled);
}
.app-card .ag-body-horizontal-scroll .ag-body-horizontal-scroll-viewport::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--color-disabled);
}
.app-card .ag-body-vertical-scroll-viewport::-webkit-scrollbar {
  width: 8px;
  background-color: var(--color-bg-disabled);
}
.app-card .ag-body-vertical-scroll-viewport::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--color-disabled);
}
.app-card .ag-row-last {
  border-bottom-color: var(--color-border-default);
}
.app-card .grid-link {
  color: var(--color-primary);
  cursor: pointer;
}

main:has(.app-card--page) {
  padding-top: 20px;
}

.common-grid {
  --ag-font-family: var(--font-sans);
  --ag-wrapper-border: 0;
  --ag-wrapper-border-radius: 0;
  --ag-header-row-border: 1px solid var(--color-border-default);
  --ag-header-background-color: var(--color-bg-disabled);
  --ag-header-font-size: 12px;
  --ag-header-text-color: var(--text-color-tertiary);
  --ag-header-column-resize-handle-color: transparent;
  --ag-column-border: 1px solid var(--color-border-default);
  --ag-row-border: 1px solid var(--color-border-default);
  --ag-row-hover-bg: #f4f9ff;
  height: 464px;
}
.common-grid .ag-header {
  position: relative;
  border-top: 1px solid var(--color-border-default);
}
.common-grid .ag-header-container {
  position: relative;
}
.common-grid .ag-header-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1px;
  width: 1px;
  background-color: var(--color-border-default);
}
.common-grid .ag-header-cell {
  box-shadow: inset -1px 0 0 0 var(--color-border-default);
}
.common-grid .ag-header-cell:last-child {
  box-shadow: unset;
}
.common-grid .ag-header-cell.data-descending .ag-header-cell-text {
  position: relative;
  padding-right: 20px;
}
.common-grid .ag-header-cell.data-descending .ag-header-cell-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6.02688 9.5L2.5 6.2M6.02688 9.5L6.02688 2.5M6.02688 9.5L9.5 6.2' stroke='%23A5A9AF' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
.common-grid .ag-header-cell.data-ascending .ag-header-cell-text {
  position: relative;
  padding-right: 20px;
}
.common-grid .ag-header-cell.data-ascending .ag-header-cell-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6.02688 9.5L2.5 6.2M6.02688 9.5L6.02688 2.5M6.02688 9.5L9.5 6.2' stroke='%23A5A9AF' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%) rotate(180deg);
}
.common-grid .ag-header-row {
  box-shadow: inset 1px 0 0 0 var(--color-border-default);
}
.common-grid .ag-row {
  box-shadow: inset 1px 0 0 0 var(--color-border-default);
}
.common-grid .ag-row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1px;
  width: 1px;
  background-color: var(--color-border-default);
}
.common-grid .ag-row-hover {
  background-color: var(--ag-row-hover-bg);
}
.common-grid .ag-row-hover::before {
  content: none;
}
.common-grid .ag-body-vertical-scroll-viewport::-webkit-scrollbar {
  width: 8px;
  border-radius: 4px;
  background-color: var(--color-bg-disabled);
}
.common-grid .ag-body-vertical-scroll-viewport::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--color-disabled);
}
.common-grid .ag-cell,
.common-grid .ag-header-cell {
  align-content: center;
}
.common-grid .ag-cell.text-right,
.common-grid .ag-header-cell.text-right {
  text-align: right;
}
.common-grid .ag-cell.text-right .ag-header-cell-label,
.common-grid .ag-header-cell.text-right .ag-header-cell-label {
  justify-content: flex-end;
}
.common-grid .ag-root-wrapper:has(.ag-body-vertical-scroll:not(.ag-hidden)) {
  border-bottom: 1px solid var(--color-border-default);
  border-right: 1px solid var(--color-border-default);
}
.common-grid .ag-root-wrapper:has(.ag-body-vertical-scroll:not(.ag-hidden)) .ag-header-container {
  box-shadow: unset;
}
.common-grid .ag-root-wrapper:has(.ag-body-vertical-scroll:not(.ag-hidden)) .ag-header-container::before {
  content: none;
}
.common-grid .ag-root-wrapper:has(.ag-body-vertical-scroll:not(.ag-hidden)) .ag-row {
  border-right: 0 none;
}
.common-grid .ag-root-wrapper:has(.ag-body-vertical-scroll:not(.ag-hidden)) .ag-row::before {
  content: none;
}

.delivery-status {
  display: inline-flex;
  min-width: 50px;
  padding: 3px 14px;
  border-radius: 50px;
  color: var(--delivery-status-text-color);
  background-color: var(--delivery-status-bg-color);
  font-size: var(--font-size-12);
  line-height: 20px;
}
.delivery-status__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.delivery-status--ended {
  --delivery-status-text-color: var(--text-color-tertiary);
  --delivery-status-bg-color: #ecedef;
}
.delivery-status--pending {
  --delivery-status-text-color: var(--color-primary);
  --delivery-status-bg-color: var(--color-bg-selected);
}
.delivery-status--active {
  --delivery-status-text-color: #00943e;
  --delivery-status-bg-color: #e0f9d3;
}
.delivery-status--deleted {
  --delivery-status-text-color: #f12e24;
  --delivery-status-bg-color: #ffe2e7;
}

.app-card--page {
  max-width: var(--app-card-page-max-width, 1280px);
  min-width: var(--app-card-page-min-width, 1280px);
  margin-inline: auto;
}

.app-card--no-controls {
  overflow: hidden;
}
.app-card--no-controls .app-card__content {
  margin-top: -1px;
}

.ui-error-message {
  display: flex;
  width: 100%;
  align-items: center;
  min-height: 36px;
  margin-top: 4px;
  padding-inline: 2px;
  color: var(--text-color-error);
  line-height: 14px;
  text-align: left;
}
.ui-error-message--invalid {
  line-height: 22px;
}

.ui-guide-message {
  color: var(--text-color-tertiary);
}

.data-panel {
  --form-items-gap: 40px;
  --form-item-row-align-items: flex-start;
  --form-item-row-gap: 30px;
  --form-item-label-width: 120px;
  --form-item-label-min-width: 120px;
  --form-item-label-min-height: 36px;
}
.data-panel--split {
  display: flex;
}
.data-panel--split .data-panel__body {
  flex: 1;
}
.data-panel__body {
  padding: var(--form-content-padding, 40px);
}
.data-panel__items {
  display: flex;
  flex-direction: column;
  gap: var(--form-items-gap);
}
.data-panel__items ~ .data-panel__items {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border-default);
}
.data-panel__items--split {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.data-panel__description {
  line-height: 22px;
}
.data-panel .data-row {
  display: flex;
  align-items: var(--form-item-row-align-items);
  gap: var(--form-item-row-gap);
}
.data-panel .data-row--column {
  flex-direction: column;
  gap: var(--form-item-column-gap, 10px);
}
.data-panel .data-row--column .data-row__field {
  width: 100%;
}
.data-panel .data-row--dense {
  column-gap: 0;
}
.data-panel .data-row .data-row__label {
  display: flex;
  align-items: center;
  gap: 2px;
  width: var(--form-item-label-width);
  min-width: var(--form-item-label-min-width);
  min-height: var(--form-item-label-min-height);
  white-space: nowrap;
}
.data-panel .data-row .data-row__label-text {
  position: relative;
  display: inline-block;
  font-size: var(--font-size-16);
  font-weight: var(--font-semi-bold);
}
.data-panel .data-row .data-row__label-text.is-required {
  padding-right: 5px;
}
.data-panel .data-row .data-row__label-text.is-required::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.data-panel .data-row .data-row__label-text-sub {
  font-size: var(--font-size-14);
}
.data-panel .data-row .data-row__label--split {
  width: 100%;
  justify-content: space-between;
}
.data-panel .data-row .data-row__label--fit {
  --form-item-label-width: auto;
  --form-item-label-min-width: auto;
}
.data-panel .data-row .data-row__field {
  --data-placeholder-margin-top: 10px;
  --data-placeholder-value-height: 105px;
}
.data-panel .data-row .data-row__field .data-row__label-text {
  font-weight: var(--font-medium);
}
.data-panel .data-row .data-row__field-value {
  display: flex;
  align-items: center;
  min-height: 36px;
}
.data-panel .data-row .data-row__field {
  flex: 1;
}
.data-panel .data-row .data-row__field-child {
  --ui-select-box-min-width: 100px;
  --ui-select-box-max-width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.data-panel .data-row .data-row__field-child .ui-select-box__panel {
  --ui-select-box-panel-z-index: 105;
}
.data-panel .data-row .data-row__field-group ~ .data-row__field-group {
  margin-top: 4px;
}
.data-panel .data-row .data-row__field-block {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.data-panel .data-row .data-row__field-block ~ .data-row__field-block {
  margin-top: 40px;
}
.data-panel .data-row .data-row__field-tooltip {
  display: inline-flex;
  align-items: center;
}
.data-panel .data-setting-button {
  position: relative;
  padding-right: 14px;
  color: var(--color-primary);
  cursor: pointer;
}
.data-panel .data-setting-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M4 10L8 6L4 2' stroke='%231F5CF8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.data-panel .ui-input--countable {
  position: relative;
}
.data-panel .ui-input--countable .ui-input__field {
  --input-spacing: 8px 68px 8px 12px;
  width: var(--ui-input-countable-width, 100%);
}
.data-panel .ui-input--countable .ui-input__counter {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color-tertiary);
  font-weight: var(--font-medium);
}
.data-panel .ui-input--countable .ui-input__counter .current-count {
  color: var(--text-color-tertiary);
  font-weight: inherit;
}
.data-panel .ui-input--countable .ui-input__counter .current-count:not([data-current-count="0"]) {
  color: var(--text-color-primary);
}
.data-panel .ui-input--currency {
  position: relative;
  width: fit-content;
}
.data-panel .ui-input--currency .ui-input__field {
  --input-spacing: 8px 12px 8px 48px;
  width: var(--ui-input-currency-width);
}
.data-panel .ui-input--currency::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background-color: var(--color-bg-disabled);
  background-image: url("/assets/images/icon_currency.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 10px;
  transform: translateY(-50%);
}
.data-panel .ui-input--currency:has(input[disabled]) {
  --text-color-currency-unit: var(--text-color-disabled);
}
.data-panel .ui-input--percentage {
  position: relative;
  width: fit-content;
}
.data-panel .ui-input--percentage .ui-input__field {
  --input-spacing: 8px 48px 8px 12px;
  width: 100px;
}
.data-panel .ui-input--percentage::before {
  content: "%";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  color: var(--text-color-currency-unit, var(--text-color-tertiary));
  border-radius: 4px;
  background-color: var(--color-bg-disabled);
  line-height: 28px;
  text-align: center;
}
.data-panel .ui-input--percentage:has(input[disabled]) {
  --text-color-currency-unit: var(--text-color-disabled);
}
.data-panel .ui-textarea--countable {
  position: relative;
  width: fit-content;
}
.data-panel .ui-textarea--countable .ui-textarea__field {
  --textarea-spacing: 16px 88px 16px 16px;
}
.data-panel .ui-textarea--countable .ui-textarea__counter {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: var(--text-color-tertiary);
  font-weight: var(--font-medium);
}
.data-panel .ui-textarea--countable .ui-textarea__counter .current-count {
  color: var(--text-color-primary);
  font-weight: var(--font-medium);
}
.data-panel .ui-form-group {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  min-height: 36px;
}
.data-panel .ui-form-group:has(.has-branch) {
  padding-left: var(--branch-offset);
}
.data-panel .ui-form-group__label {
  min-height: 36px;
  align-content: center;
}
.data-panel .ui-form-group__child {
  flex-basis: 522px;
  margin-top: 4px;
}
.data-panel .ui-form-group__item {
  display: inline-flex;
  align-items: center;
}
.data-panel .ui-form-group--wrap {
  row-gap: 16px;
  max-width: 522px;
  margin-top: 6px;
  padding: 16px;
  border: 1px solid var(--color-border-default);
  border-radius: 8px;
}
.data-panel .ui-form-group--wrap .ui-checkbox {
  flex-basis: calc(25% - 30px);
  min-height: auto;
}
.data-panel .ui-form-group__branch {
  display: flex;
  gap: 30px;
}
.data-panel .action-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.data-panel .action-box--block {
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}
.data-panel .action-box--block .ui-error-message {
  padding-left: 0;
}
.data-panel .action-box__description {
  color: var(--text-color-tertiary);
}
.data-panel .ui-combo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.data-panel .ui-combo-box__description {
  color: var(--text-color-tertiary);
}
.data-panel .ui-combo-box ~ .ui-combo-box {
  margin-top: 4px;
}
.data-panel .form-select-group {
  display: flex;
  gap: 10px;
  align-items: center;
}
.data-panel .form-select-group:has(.has-branch) {
  padding-left: var(--branch-offset);
}
.data-panel .has-branch {
  position: relative;
  padding-left: 30px;
}
.data-panel .has-branch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-left: 1px solid var(--color-border-default);
  border-bottom: 1px solid var(--color-border-default);
}
.data-panel .category-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.data-panel .category-list__item {
  display: block;
  align-content: center;
  height: 36px;
}
.data-panel .category-list__item--root {
  font-size: var(--font-size-16);
}
.data-panel .setting-status {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  align-content: center;
}
.data-panel .setting-status__button {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M11.2803 1.91504C11.6244 1.92641 11.9026 2.07615 12.1533 2.26953C12.3936 2.45492 12.6593 2.72184 12.9688 3.03125C13.2782 3.34066 13.5451 3.60636 13.7305 3.84668C13.9238 4.09741 14.0736 4.37562 14.085 4.71973C14.086 4.75253 14.086 4.78556 14.085 4.81836C14.0736 5.16267 13.924 5.44154 13.7305 5.69238C13.5451 5.93267 13.2781 6.19846 12.9688 6.50781L6.4375 13.0391C6.2617 13.2149 6.11086 13.3714 5.91992 13.4795C5.72904 13.5875 5.51748 13.636 5.27637 13.6963L2.92969 14.2832C2.7655 14.3242 2.587 14.3702 2.43848 14.3848C2.28375 14.3999 2.02289 14.3959 1.81348 14.1865C1.60407 13.9771 1.6001 13.7163 1.61523 13.5615C1.62976 13.413 1.67575 13.2345 1.7168 13.0703L2.30371 10.7236C2.36399 10.4825 2.41249 10.271 2.52051 10.0801C2.62861 9.88915 2.78513 9.7383 2.96094 9.5625L9.49219 3.03125C9.80154 2.72189 10.0673 2.45492 10.3076 2.26953C10.5585 2.07603 10.8373 1.92636 11.1816 1.91504C11.2144 1.91396 11.2475 1.91396 11.2803 1.91504Z' stroke='%23A5A9AF'/%3E%3Cpath d='M9 3.66667L11.5 2L14 4.5L12.3333 7L9 3.66667Z' fill='%23A5A9AF'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
.data-panel .date-time-group {
  --date-input-width: 126px;
}
.data-panel .date-time-group .date-input-container {
  --date-input-min-width: 126px;
}
.data-panel .date-time-group .picker-dropdown {
  top: auto;
  bottom: calc(100% + 8px);
}
.data-panel .date-range-group {
  display: flex;
  gap: 10px;
  align-items: center;
}
.data-panel .date-range-group__item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.data-panel .date-time-helper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 485px;
  min-height: 36px;
  margin-top: 4px;
}
.data-panel .date-time-helper .ui-checkbox__label {
  color: var(--text-color-tertiary);
}

.data-placeholder {
  margin-top: var(--data-placeholder-margin-top);
}
.data-placeholder__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  margin-bottom: 10px;
}
.data-placeholder__label {
  font-size: var(--font-size-16);
}
.data-placeholder__box {
  border: 1px solid var(--color-border-default);
  border-radius: 8px;
  background-color: var(--color-bg-disabled);
}
.data-placeholder__value {
  margin: 5px;
  overflow-y: auto;
  height: var(--data-placeholder-value-height);
  padding: 11px;
}
.data-placeholder__value--muted {
  color: var(--text-color-tertiary);
}

.token-card {
  display: flex;
  flex-direction: column;
  max-width: 522px;
  margin-top: 10px;
  border: 1px solid var(--color-border-default);
  border-radius: 8px;
  overflow: hidden;
}
.token-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding-inline: 14px;
  background-color: var(--color-bg-disabled);
  border-bottom: 1px solid var(--color-border-default);
  color: var(--text-color-tertiary);
}
.token-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background-color: var(--color-white);
}
.token-card__body:has(.data-form-group__row) {
  padding: 0;
  gap: 0;
}

.token-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.token-box--scrollable {
  align-content: flex-start;
  height: fit-content;
  max-height: 146px;
  overflow-y: auto;
  padding: 9px 14px;
  margin: 5px;
}
.token-box .token-item {
  position: relative;
  display: inline-flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding-inline: 12px;
  border: 1px solid var(--color-border-default);
  border-radius: 4px;
  background-color: var(--color-bg-disabled);
}
.token-box .token-item__label {
  flex: 1;
  max-width: 248px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.token-box .token-item--block {
  width: 100%;
  max-width: 100%;
}
.token-box .token-item:has(.token-item__delete) {
  padding-inline-end: 44px;
}
.token-box .token-item__delete {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 12px;
  width: 20px;
  height: 20px;
  background: url(/assets/images/button-close.svg) no-repeat center/contain;
  cursor: pointer;
}

.meta-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.meta-list__item {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  gap: 2px;
  color: var(--text-color-primary);
}
.meta-list__item--error .meta-list__value {
  color: var(--text-color-error);
}
.meta-list__item--success .meta-list__value {
  color: var(--text-color-link);
}

.data-form-group {
  display: flex;
  flex-direction: column;
  width: 400px;
  margin-top: 10px;
  border: 1px solid var(--color-border-default);
  border-radius: 8px;
}
.data-form-group__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 14px;
  background-color: var(--color-bg-disabled);
  color: var(--text-color-tertiary);
}
.data-form-group__title:has(.ui-popover--tooltip) {
  justify-content: flex-start;
}
.data-form-group__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--color-border-default);
  background-color: var(--color-white);
}
.data-form-group__content:has(.data-form-group__row) {
  padding: 0;
  gap: 0;
}
.data-form-group__content:has(.tag-box) {
  padding: 14px 6px;
}
.data-form-group__row {
  padding: 14px;
}
.data-form-group__value {
  display: block;
  min-height: 36px;
  align-content: center;
}
.data-form-group .tag-box {
  height: 128px;
  overflow-y: auto;
}
.data-form-group .tag-box__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-inline: 8px;
}
.data-form-group .tag-box__item {
  display: block;
  position: relative;
  align-content: center;
  height: 36px;
  padding-inline: 12px;
  border: 1px solid var(--color-border-default);
  border-radius: 4px;
  background-color: var(--color-bg-disabled);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.data-form-group .tag-box__item:has(.tag-box__delete) {
  padding-inline-end: 44px;
}
.data-form-group .tag-box__delete {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 12px;
  width: 20px;
  height: 20px;
  background: url(/assets/images/button-close.svg) no-repeat center/contain;
  cursor: pointer;
}

.data-form-group__unit:first-child .data-form-group__title {
  border-radius: 8px 8px 0 0;
}
.data-form-group__unit:last-child .data-form-group__content {
  border-radius: 0 0 8px 8px;
}

.data-form-group__unit ~ .data-form-group__unit,
.data-form-group__row ~ .data-form-group__row {
  border-top: 1px solid var(--color-border-default);
}

.search-card {
  display: flex;
  min-height: 210px;
  padding: 6px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
  border: 1px solid var(--color-disabled);
  border-radius: 8px;
  width: 100%;
}
.search-card.is-error {
  border-color: var(--color-error);
}
.search-card.is-error:hover {
  border-color: var(--color-error);
}
.search-card__header {
  width: 100%;
}
.search-card__body {
  width: 100%;
  border-top: 1px solid var(--color-border-default);
}

.line-card {
  border-radius: 8px;
  border: 1px solid var(--color-border-default);
  overflow: hidden;
}
.line-card__body {
  height: 208px;
  padding: 16px;
  overflow-y: auto;
  margin-right: 5px;
}
.line-card__body::-webkit-scrollbar-track {
  margin: 6px 0;
}

.scroll-x {
  margin-right: 0;
  margin-bottom: 5px;
  overflow-x: auto;
  overflow-y: hidden;
}
.scroll-x::-webkit-scrollbar {
  height: 8px;
}
.scroll-x::-webkit-scrollbar-track {
  background: var(--color-bg-disabled);
}
.scroll-x::-webkit-scrollbar-thumb {
  background: var(--color-disabled);
  border-radius: 100px;
}
.scroll-x::-webkit-scrollbar-track {
  margin: 0 6px;
}

.code-block code {
  color: var(--text-color-tertiary);
  line-height: 20px;
  display: block;
  font-family: var(--font-sans);
}

.main-header {
  display: flex;
  align-items: center;
  height: 60px;
}
.main-header__title {
  flex: 1;
  font-size: var(--font-size-28);
  font-weight: var(--font-semi-bold);
}

.app-utils {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  height: 60px;
  margin-left: auto;
  align-items: center;
  font-size: var(--font-size-16);
  font-weight: var(--font-medium);
  color: var(--text-color-primary);
  line-height: 14px;
}
.app-utils button {
  cursor: pointer;
}
.app-utils__item {
  position: relative;
  margin-inline: 10px;
}
.app-utils__item:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 1px;
  height: 16px;
  background-color: #d6dbe1;
  transform: translateY(-50%);
}
.app-utils__item:first-child:after, .app-utils__item:last-child:after {
  content: none;
}
.app-utils__item:last-child {
  margin-right: 0;
}
.app-utils__item--account {
  font-weight: inherit;
}
.app-utils__item--notify {
  width: 28px;
  height: 28px;
  background: url("/assets/images/icon-bell.svg") no-repeat center/contain;
  margin-right: 0;
}
.app-utils__item--notify.has-value {
  background-image: url("/assets/images/icon-bell-on.svg");
}

.utils-notify {
  width: 290px;
}
.utils-notify__item {
  padding-block: 6px;
  border-bottom: 1px solid var(--color-border-default);
}
.utils-notify__item:last-child {
  border: none;
}
.utils-notify__card {
  display: flex;
  padding: 8px;
  flex-direction: column;
  gap: 10px;
  border-radius: 8px;
  font-size: var(--font-size-12);
}
.utils-notify__card:hover {
  background-color: var(--color-bg-hover-blue);
}
.utils-notify__card:hover .utils-notify__message {
  color: var(--text-color-link);
}
.utils-notify__card:hover .utils-notify__time {
  color: var(--text-color-link);
}
.utils-notify__message {
  line-height: 20px;
}
.utils-notify__time {
  color: var(--text-color-tertiary);
  line-height: 28px;
}

.bullet-list__item {
  position: relative;
  padding-left: 10px;
}
.bullet-list__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 3px;
  height: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='3' viewBox='0 0 3 3' fill='none'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23D6DBE1'/%3E%3C/svg%3E");
  background-size: cover;
}

.ui-list {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  gap: 2px;
}
.ui-list__item {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 8px;
}

.is-scrolled .app-header {
  border-bottom: 1px solid var(--color-border-default);
}

.ui-accordion {
  transition: all 0.4s ease-in-out;
}
.ui-accordion__header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid var(--color-border-default);
  cursor: pointer;
  line-height: 0;
}
.ui-accordion__header:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/assets/images/ico-arrow.svg) no-repeat center/contain;
  position: absolute;
  right: 8px;
  top: 8px;
}
.ui-accordion__header[aria-expanded=false]:after {
  transform: rotate(180deg);
}
.ui-accordion__header[aria-expanded=true]:after {
  transform: rotate(0deg);
}
.ui-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.25s ease;
}
.ui-accordion__panel.is-expanded {
  grid-template-rows: 1fr;
}
.ui-accordion__content {
  overflow: hidden;
}
.ui-accordion .ui-checkbox-trigger {
  display: inline-flex;
}

.data-table {
  --var-table-cell-border: 1px solid var(--color-border-default);
}
.data-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background-color: var(--color-white);
}
.data-table table th,
.data-table table td {
  border-right: var(--var-table-cell-border);
  height: 44px;
  padding: 0 14px;
  font-weight: var(--font-medium);
  text-align: center;
}
.data-table table th:last-child,
.data-table table td:last-child {
  border-right: 0;
}
.data-table table th:first-child:has(> .visually-hidden),
.data-table table td:first-child:has(> .ui-checkbox) {
  width: 48px;
}
.data-table .cell-align-left {
  text-align: left;
}
.data-table .cell-align-right {
  text-align: right;
}
.data-table .cell-align-center {
  text-align: center;
}
.data-table__header {
  border: var(--var-table-cell-border);
  border-bottom: 0;
}
.data-table__viewport {
  max-height: 245px;
  overflow-y: auto;
  border: var(--var-table-cell-border);
}
.data-table .table-header th,
.data-table .table-header td {
  background-color: var(--color-bg-disabled);
  text-align: left;
  font-size: var(--font-size-12);
  color: var(--text-color-tertiary);
}
.data-table .table-body td,
.data-table .table-body th {
  font-size: var(--font-size-14);
}
.data-table .table-body td {
  border-bottom: var(--var-table-cell-border);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.data-table .table-body td:has(.ui-checkbox) {
  overflow: visible;
}
.data-table .table-body tr:hover th,
.data-table .table-body tr:hover td {
  background-color: #f4f9ff;
}
.data-table .table-body tr:hover .is-empty {
  background-color: transparent;
}
.data-table .table-body tr:last-child td {
  border-bottom: 0;
}

.app-stepper {
  padding: 20px 40px;
  font-size: var(--font-size-14);
  font-weight: var(--font-semi-bold);
  line-height: 20px;
  border-bottom: 1px solid var(--color-border-default);
}
.app-stepper .stepper-list {
  display: flex;
  align-items: center;
  justify-content: center;
  counter-reset: step-index;
}
.app-stepper .stepper-list__item {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-color-tertiary);
  counter-increment: step-index;
}
.app-stepper .stepper-list__item.is-active {
  color: var(--text-color-primary);
}
.app-stepper .stepper-list__item.is-active::before {
  background: #222;
  color: var(--text-color-white);
}
.app-stepper .stepper-list__item::before {
  content: counter(step-index);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 100%;
  font-size: var(--font-size-15);
  font-weight: var(--font-medium);
  color: var(--text-color-tertiary);
  background-color: var(--color-bg-hover-gray);
}
.app-stepper .stepper-list__item::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  margin-inline: 19px;
  mask: url("/assets/images/stepper-dashed-line.svg") repeat-x center/contain;
  background-color: var(--color-disabled);
}
.app-stepper .stepper-list__item:last-child::after {
  content: none;
}
.app-stepper .stepper-list__item:has(+ .stepper-list__item.is-active)::after {
  background: #222;
}
.app-stepper .stepper-list__label {
  white-space: nowrap;
}

.ad-preview {
  --ad-preview-width: 100%;
  --ad-preview-height: 674px;
  --ad-preview-padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ad-preview .ui-select-box {
  --ui-select-box-width: 220px;
}
.ad-preview .bullet-list {
  font-size: var(--font-size-12);
  color: var(--text-color-tertiary);
  line-height: 20px;
}
.ad-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}
.ad-preview__title {
  font-size: var(--font-size-16);
}
.ad-preview__item {
  position: relative;
  width: var(--ad-preview-width);
  height: var(--ad-preview-height);
  padding: var(--ad-preview-padding);
  border-radius: 8px;
  background-color: #e6eaef;
}
.ad-preview__frame {
  position: absolute;
  top: 20px;
  left: 50%;
  width: var(--ad-preview-frame-width);
  height: var(--ad-preview-frame-height);
  transform: translateX(-50%);
  background-size: cover;
  background-repeat: no-repeat;
}
.ad-preview__frame-group {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
}
.ad-preview__frame-item {
  width: 255px;
  height: 519px;
  flex-shrink: 0;
  background-image: url("https://www.figma.com/api/mcp/asset/5ca0032a-aa36-4efc-b08a-630b6484ab7c");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.status-indicator {
  --status-indicator-dot-size: 12px;
  display: inline-flex;
  align-items: center;
}
.status-indicator--waiting {
  --status-indicator-dot-bg: #ffc559;
}
.status-indicator--suspended {
  --status-indicator-dot-bg: #f12e24;
}
.status-indicator--confirmed {
  --status-indicator-dot-bg: #00943e;
}
.status-indicator__label {
  display: inline-flex;
  align-items: center;
  gap: var(--status-indicator-gap, 8px);
}
.status-indicator__label::before {
  content: "";
  flex-shrink: 0;
  width: var(--status-indicator-dot-size);
  height: var(--status-indicator-dot-size);
  border-radius: 50%;
  background: var(--status-indicator-dot-bg);
}

.modal-preview-button {
  display: inline-flex;
  width: 16px;
  height: 16px;
  background-image: url("/assets/images/icon-view-modal.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  cursor: pointer;
}

.ui-stack-button {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: #eff1f4;
  border-radius: 50%;
  cursor: pointer;
}
.ui-stack-button:disabled {
  cursor: not-allowed;
}
.ui-stack-button:before, .ui-stack-button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background-color: #898d93;
}
.ui-stack-button::before {
  transform: translate(-50%, -50%);
}
.ui-stack-button--add::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.ui-stack-button--remove::after {
  content: none;
}
.ui-stack-button--remove::before {
  background-color: #898d93;
}

.ui-form-group {
  display: flex;
  gap: 30px;
  align-items: center;
}
.ui-form-group__item {
  display: inline-flex;
  align-items: center;
}

.ui-radio,
.ui-form-group:has(.ui-radio) {
  --radio-color-primary-light: var(--color-primary-disabled);
  --radio-color-primary-border-light: var(--color-primary-disabled);
  --radio-color-border: var(--color-border-input);
  --radio-color-border-disabled: var(--color-disabled);
  --radio-color-bg-disabled: var(--color-bg-disabled);
  --radio-color-label-disabled: var(--color-icon-secondary);
  --radio-size: 20px;
  --radio-border-width: 1px;
  --radio-dot-size: 8px;
  --radio-transition: 0.15s ease;
}

.ui-radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: var(--font-medium);
  line-height: 20px;
}
.ui-radio__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  /* 선택 */
}
.ui-radio__input:checked + .ui-radio__icon {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.ui-radio__input:checked + .ui-radio__icon::after {
  opacity: 1;
}
.ui-radio__input {
  /* 선택 + disabled */
}
.ui-radio__input:checked:disabled + .ui-radio__icon {
  border-color: var(--radio-color-primary-border-light);
  background-color: var(--radio-color-primary-light);
}
.ui-radio__input:checked:disabled + .ui-radio__icon::after {
  opacity: 1;
}
.ui-radio__input {
  /* 미선택(기본) */
}
.ui-radio__input:not(:checked) + .ui-radio__icon {
  border-color: var(--radio-color-border);
  background-color: var(--color-white);
}
.ui-radio__input {
  /* 미선택 + 비활성 */
}
.ui-radio__input:not(:checked):disabled + .ui-radio__icon {
  border-color: var(--radio-color-border-disabled);
  background-color: var(--radio-color-bg-disabled);
}
.ui-radio__input {
  /* disabled label */
}
.ui-radio__input:disabled ~ .ui-radio__label {
  color: var(--radio-color-label-disabled);
}
.ui-radio__input {
  /* disabled cursor */
}
.ui-radio__input:disabled + .ui-radio__icon, .ui-radio__input:disabled ~ .ui-radio__label {
  cursor: not-allowed;
}
.ui-radio__icon {
  position: relative;
  width: var(--radio-size);
  height: var(--radio-size);
  border-radius: 50%;
  box-sizing: border-box;
  border: var(--radio-border-width) solid var(--radio-color-border);
  background-color: var(--color-white);
  transition: border-color var(--radio-transition), background-color var(--radio-transition);
}
.ui-radio__icon::after {
  content: "";
  position: absolute;
  width: var(--radio-dot-size);
  height: var(--radio-dot-size);
  border-radius: 50%;
  background-color: var(--color-white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity var(--radio-transition);
}
.ui-radio__label {
  white-space: nowrap;
}
.ui-radio {
  /* hover */
}
.ui-radio:hover .ui-radio__input:not(:disabled):not(:checked) + .ui-radio__icon {
  border-color: var(--color-primary);
}

.ui-checkbox,
.ui-form-group:has(.ui-checkbox) {
  --checkbox-color-primary-light: var(--color-primary-disabled);
  --checkbox-color-primary-border-light: var(--color-primary-disabled);
  --checkbox-color-border: var(--color-disabled);
  --checkbox-color-border-disabled: var(--color-disabled);
  --checkbox-color-bg-disabled: var(--color-bg-disabled);
  --checkbox-color-label-disabled: var(--color-icon-secondary);
  --checkbox-size: 20px;
  --checkbox-border-radius: 4px;
  --checkbox-border-width: 1px;
  --checkbox-transition: 0.15s ease;
  /* 체크 SVG */
  --checkbox-icon-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M0.293056 5.72123C-0.600029 4.68471 0.750382 3.09982 1.64331 4.13634L4.3843 7.30374L10.3502 0.340876C11.2433 -0.701482 12.601 0.883217 11.7079 1.92558L5.06654 9.67267C4.69361 10.1081 4.08874 10.1094 3.71441 9.67485L0.293056 5.72123Z' fill='white'/%3E%3C/svg%3E");
  /* 인디터미넌트 SVG */
  --checkbox-icon-indeterminate: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='2' viewBox='0 0 12 2' fill='none'%3E%3Cpath d='M1 1H11' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ui-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: var(--font-medium);
  line-height: 20px;
}
.ui-checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  /* 체크 */
}
.ui-checkbox__input:checked + .ui-checkbox__box {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.ui-checkbox__input:checked + .ui-checkbox__box::after {
  background-image: var(--checkbox-icon-check);
  opacity: 1;
}
.ui-checkbox__input {
  /* 체크 + disabled */
}
.ui-checkbox__input:checked:disabled + .ui-checkbox__box {
  border-color: var(--checkbox-color-primary-border-light);
  background-color: var(--checkbox-color-primary-light);
}
.ui-checkbox__input:checked:disabled + .ui-checkbox__box::after {
  background-image: var(--checkbox-icon-check);
  opacity: 1;
}
.ui-checkbox__input {
  /* 미체크 + disabled */
}
.ui-checkbox__input:not(:checked):disabled + .ui-checkbox__box {
  border-color: var(--checkbox-color-border-disabled);
  background-color: var(--checkbox-color-bg-disabled);
}
.ui-checkbox__input {
  /* label disabled 색상 */
}
.ui-checkbox__input:disabled ~ .ui-checkbox__label {
  color: var(--checkbox-color-label-disabled);
}
.ui-checkbox__input {
  /* disabled cursor */
}
.ui-checkbox__input:disabled + .ui-checkbox__box, .ui-checkbox__input:disabled ~ .ui-checkbox__label {
  cursor: not-allowed;
}
.ui-checkbox__box {
  display: inline-block;
  position: relative;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  border-radius: var(--checkbox-border-radius);
  border: var(--checkbox-border-width) solid var(--checkbox-color-border);
  background-color: var(--color-white);
  box-sizing: border-box;
  transition: border-color var(--checkbox-transition), background-color var(--checkbox-transition);
  flex-shrink: 0;
}
.ui-checkbox__box::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity var(--checkbox-transition);
}
.ui-checkbox__label {
  white-space: nowrap;
}
.ui-checkbox {
  /* 미체크 */
}
.ui-checkbox:not(.ui-checkbox--indeterminate) .ui-checkbox__input:not(:checked):not(:disabled) + .ui-checkbox__box {
  border-color: var(--checkbox-color-border);
  background-color: var(--color-white);
}
.ui-checkbox {
  /* hover */
}
.ui-checkbox:not(.ui-checkbox--indeterminate):hover .ui-checkbox__input:not(:disabled):not(:checked) + .ui-checkbox__box {
  border-color: var(--color-primary);
}
.ui-checkbox {
  /* 인디터미넌트 – (예: .ui-checkbox.ui-checkbox--indeterminate) */
}
.ui-checkbox--indeterminate .ui-checkbox__input:not(:checked) + .ui-checkbox__box {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.ui-checkbox--indeterminate .ui-checkbox__input:not(:checked) + .ui-checkbox__box::after {
  height: 2px;
  background-image: var(--checkbox-icon-indeterminate);
  opacity: 1;
}
.ui-checkbox--indeterminate {
  /* 인디터미넌트 checked – 일반 체크박스와 동일한 스타일 */
}
.ui-checkbox--indeterminate .ui-checkbox__input:checked + .ui-checkbox__box {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.ui-checkbox--indeterminate .ui-checkbox__input:checked + .ui-checkbox__box::after {
  height: 10px;
  background-image: var(--checkbox-icon-check);
  opacity: 1;
}
.ui-checkbox--indeterminate {
  /* 인디터미넌트 disabled */
}
.ui-checkbox--indeterminate .ui-checkbox__input:disabled:not(:checked) + .ui-checkbox__box {
  border-color: var(--checkbox-color-primary-border-light);
  background-color: var(--checkbox-color-primary-light);
}
.ui-checkbox--indeterminate .ui-checkbox__input:disabled:not(:checked) + .ui-checkbox__box::after {
  height: 2px;
  background-image: var(--checkbox-icon-indeterminate);
  opacity: 1;
}
.ui-checkbox--indeterminate {
  /* 인디터미넌트 disabled - checked 상태 */
}
.ui-checkbox--indeterminate .ui-checkbox__input:checked:disabled + .ui-checkbox__box {
  border-color: var(--checkbox-color-primary-border-light);
  background-color: var(--checkbox-color-primary-light);
}
.ui-checkbox--indeterminate .ui-checkbox__input:checked:disabled + .ui-checkbox__box::after {
  height: 10px;
  background-image: var(--checkbox-icon-check);
  opacity: 1;
}

.ui-input__field {
  width: 100%;
  height: var(--input-height, 36px);
  padding: var(--input-spacing, 8px 12px);
  border-radius: 8px;
  border: 1px solid var(--color-border-default);
  background-color: var(--color-white);
}
.ui-input__field:hover, .ui-input__field:focus, .ui-input__field:focus-visible {
  border-color: var(--color-primary);
  outline: none;
}
.ui-input__field::placeholder {
  color: var(--text-color-tertiary);
}
.ui-input__field:disabled {
  background-color: var(--color-bg-disabled);
  color: var(--text-color-disabled);
  cursor: not-allowed;
}
.ui-input__field:disabled:hover {
  border: 1px solid var(--color-border-default);
}
.ui-input--right .ui-input__field {
  text-align: right;
}

.ui-search {
  --search-border-color: var(--color-border-default);
  --search-background-color: var(--color-white);
  --search-border-radius: 8px;
  position: relative;
  height: 36px;
}
.ui-search__field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 10px;
  border: 1px solid var(--search-border-color);
  border-radius: var(--search-border-radius);
  background-color: var(--search-background-color);
  padding-inline: 12px;
  overflow: hidden;
}
.ui-search__field-input {
  flex: 1;
  height: 100%;
  font-size: var(--font-size-14);
  font-weight: var(--font-medium);
  outline: none;
}
.ui-search__field:hover, .ui-search__field:focus, .ui-search__field:focus-visible {
  border-color: var(--color-primary);
  outline: none;
}
.ui-search__field::placeholder {
  color: var(--text-color-tertiary);
}
.ui-search .ui-search__button {
  width: 20px;
  height: 20px;
  mask-image: url("/assets/images/icon-search.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--search-button-color, #222);
  cursor: pointer;
}

.ui-search--filter {
  display: inline-flex;
  border: 1px solid var(--search-border-color);
  border-radius: var(--search-border-radius);
  background-color: var(--search-background-color);
}
.ui-search--filter .ui-search__filter {
  min-width: var(--search-filter-min-width, 116px);
}
.ui-search--filter:focus-within {
  border-color: var(--color-primary);
}
.ui-search--filter .ui-select-box {
  --ui-select-box-trigger-padding-inline: 12px 40px;
  --ui-select-box-trigger-border-color: transparent;
  --ui-select-box-height: 100%;
  position: relative;
  width: 100%;
}
.ui-search--filter .ui-select-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 20px;
  margin-top: -10px;
  background-color: var(--color-border-default);
}
.ui-search--filter .ui-search__field,
.ui-search--filter .ui-select-box__trigger {
  border: 0;
}

.ui-search--frameless .ui-search__field {
  border: 0;
  background-color: var(--color-bg-disabled);
}
.ui-search--frameless .ui-search__button {
  --search-button-color: var(--color-icon-secondary);
}

.ui-textarea__field {
  resize: none;
  width: var(--text-area-width, 800px);
  height: var(--textarea-height, 100px);
  padding: var(--textarea-spacing, 16px);
  border-radius: 8px;
  border: 1px solid var(--color-border-default);
  background-color: var(--color-white);
}
.ui-textarea__field:hover, .ui-textarea__field:focus, .ui-textarea__field:focus-visible {
  border-color: var(--color-primary);
  outline: none;
}
.ui-textarea__field::placeholder {
  color: var(--text-color-tertiary);
}
.ui-textarea__field:disabled {
  background-color: var(--color-bg-disabled);
  color: var(--text-color-disabled);
  cursor: not-allowed;
}
.ui-textarea__field:disabled:hover {
  border: 1px solid var(--color-border-default);
}

/* button */
.ui-button {
  display: var(--button-display, inline-flex);
  height: var(--button-height, 36px);
  align-items: center;
  justify-content: center;
  gap: var(--button-gap, 4px);
  min-width: var(--button-min-width, 53px);
  padding-inline: var(--button-padding-inline, 16px);
  color: var(--button-text-color);
  border: 1px solid var(--button-border-color);
  border-radius: var(--button-border-radius, 8px);
  font-size: var(--button-font-size, 14px);
  font-weight: var(--font-semi-bold);
  line-height: 16px;
  white-space: nowrap;
  cursor: pointer;
}
.ui-button:hover {
  background-color: var(--button-hover-bg);
}
.ui-button:disabled {
  cursor: not-allowed;
  background-color: var(--color-bg-disabled, var(--color-white));
}

.ui-button--small {
  --button-height: 32px;
  --button-font-size: 12px;
}

.ui-button--medium {
  --button-min-width: 78px;
}

.ui-button--large {
  --button-min-width: 108px;
  --button-height: 44px;
  --button-font-size: 16px;
}

.ui-button--fix {
  width: 100%;
}

.ui-button--round {
  --button-border-radius: 100px;
}

.ui-button--outline {
  --button-text-color: var(--color-primary);
  --button-border-color: var(--color-primary);
  background-color: var(--color-white);
}
.ui-button--outline:disabled {
  --button-text-color: var(--color-disabled);
  --button-border-color: var(--color-border-default);
}

.ui-button-text {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-size: var(--font-size-14);
  line-height: 14px;
  gap: 2px;
  white-space: nowrap;
  cursor: pointer;
}
.ui-button-text::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 12'%3E%3Cpath stroke='%231F5CF8' stroke-linecap='round' d='m4 10 4-4-4-4'/%3E%3C/svg%3E") 0 0 no-repeat;
  background-color: var(--color-primary);
}

.ui-button--primary {
  --button-text-color: var(--text-color-white);
  background-color: var(--color-primary);
}
.ui-button--primary:hover {
  --button-hover-bg: var(--color-primary-hover);
}
.ui-button--primary:disabled {
  background-color: var(--color-disabled);
}

.ui-button--secondary {
  --button-border-color: var(--color-border-default);
  background-color: var(--color-white);
}
.ui-button--secondary:hover {
  --button-hover-bg: var(--color-bg-hover-gray);
}
.ui-button--secondary:disabled {
  --button-text-color: var(--color-disabled);
}

.ui-button--reject {
  --button-text-color: var(--text-color-white);
  --button-border-color: var(--color-error);
  background-color: var(--color-error);
}
.ui-button--reject:hover {
  --button-hover-bg: var(--color-error-hover);
}
.ui-button--reject:disabled {
  --button-text-color: var(--color-white);
  --button-border-color: var(--color-disabled);
  background-color: var(--color-disabled);
}

.ui-button-text--primary {
  color: var(--color-primary);
}

[class*=ui-button--icon]:disabled, [class*=ui-button--icon]:has(input[disabled]) {
  --button-text-color: var(--color-disabled);
  --button-border-color: var(--color-border-default);
  cursor: not-allowed;
  background-color: var(--color-bg-disabled, var(--color-white));
}
[class*=ui-button--icon]::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--button-icon-color, var(--color-primary));
}
[class*=ui-button--icon]:disabled::before, [class*=ui-button--icon]:has(input[disabled])::before {
  background-color: var(--color-disabled);
}

.ui-button--icon-plus::before {
  mask-image: url(/assets/images/icon-plus.svg);
  background-color: var(--color-white);
}

.ui-button--icon-upload::before {
  mask-image: url(/assets/images/icon-file-upload.svg);
  background-color: var(--color-primary);
}

.ui-button--icon-download::before {
  mask-image: url(/assets/images/icon-download-12.svg);
  background-color: var(--color-primary);
}

.ui-icon-button {
  --icon-size: 36px;
  display: var(--icon-button-display, inline-flex);
  align-items: center;
  justify-content: center;
  width: var(--icon-size);
  height: var(--icon-size);
  border: 1px solid var(--button-border-color, var(--color-border-default));
  border-radius: 50%;
  background-color: var(--icon-button-bg, var(--color-white));
  cursor: pointer;
}
.ui-icon-button:hover {
  --icon-button-bg: var(--color-bg-hover-gray);
}
.ui-icon-button:after {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.ui-icon-button--copy:after {
  background-image: url("/assets/images/icon-copy.svg");
}
.ui-icon-button--download:after {
  background-image: url("/assets/images/icon-download.svg");
}
.ui-icon-button--upload:after {
  background-image: url("/assets/images/icon-upload.svg");
}
.ui-icon-button--settings-column:after {
  background-image: url("/assets/images/icon-settings-column.svg");
}
.ui-icon-button--reset:after {
  background-image: url("/assets/images/icon-reset.svg");
}
.ui-icon-button--search:after {
  background-image: url("/assets/images/icon-search.svg");
}
.ui-icon-button--settings {
  --icon-size: 12px;
  border: none;
  background-color: transparent;
}
.ui-icon-button--settings:after {
  width: 12px;
  height: 12px;
  background-image: url("/assets/images/icon-settings.svg");
}

/* link */
.ui-link {
  position: relative;
  display: block;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ui-link--small {
  font-size: var(--font-size-12);
}
.ui-link--underline {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.ui-link--primary {
  color: var(--color-primary);
}
.ui-link--muted {
  color: var(--text-color-tertiary);
}
.ui-link--arrow {
  padding-right: 16px;
}
.ui-link--arrow:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 12'%3E%3Cpath stroke='%231F5CF8' stroke-linecap='round' d='m4 10 4-4-4-4'/%3E%3C/svg%3E") 0 0 no-repeat;
  background-color: var(--color-primary);
}

/* tab */
.tab {
  --tab-display: inline-flex;
  --tab-menu-gap: 4px;
  --tab-menu-padding-block: 0;
  --tab-menu-padding-inline: 20px;
  --tab-menu-border-bottom-width: 2px;
  --tab-menu-border-color: transparent;
  --tab-menu-text-color: var(--text-color-primary);
  --tab-menu-info-color: #7d7d7d;
  --tab-menu-active-text-color: var(--text-color-link);
  --tab-menu-active-border-color: var(--color-primary);
  display: var(--tab-display);
  margin-bottom: var(--tab-margin-bottom);
  box-shadow: var(--tab-bottom-line);
}
.tab--toolbar {
  --tab-menu-height: 60px;
  --tab-menu-font-size: 20px;
  --tab-menu-font-weight: 600;
}
.tab.ui-form-group {
  --tab-bottom-line: none;
}

.tab__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--tab-menu-gap);
  width: var(--tab-menu-width);
  min-width: var(--tab-menu-min-width);
  height: var(--tab-menu-height);
  padding-block: var(--tab-menu-padding-block);
  padding-inline: var(--tab-menu-padding-inline);
  color: var(--tab-menu-text-color);
  border-bottom-width: var(--tab-menu-border-bottom-width);
  border-bottom-style: solid;
  border-bottom-color: var(--tab-menu-border-color);
  font-size: var(--tab-menu-font-size);
  font-weight: var(--tab-menu-font-weight);
  cursor: pointer;
}
.tab__menu.active {
  --tab-menu-border-color: var(--tab-menu-active-border-color);
  color: var(--tab-menu-active-text-color);
}
.tab__menu.ui-radio {
  --tab-menu-min-width: auto;
  --tab-menu-padding-block: 0;
  --tab-menu-padding-inline: 0;
  --tab-menu-border-bottom-width: 0;
  --tab-menu-height: auto;
}

.tab__menu-text {
  display: inline-block;
  white-space: nowrap;
}

.tab__menu-info {
  display: inline-block;
  color: var(--tab-menu-info-color);
  font-size: var(--font-size-12);
  white-space: pre-wrap;
}
.tab__menu.active .tab__menu-info {
  color: var(--color-primary);
}

.tab-content__item {
  display: none;
}
.tab-content__item.active {
  display: block;
}

.ui-popover {
  position: relative;
  z-index: 30;
}
.ui-popover__panel {
  position: absolute;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 4px);
  border-radius: var(--panel-border-radius, 6px);
  border: 1px solid var(--color-border-default);
  background: var(--color-white);
  box-shadow: var(--panel-box-shadow, 0 1px 2px 0) rgba(0, 0, 0, 0.2);
}
.ui-popover__panel::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: var(--arrow-offset, 50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--color-border-default);
}
.ui-popover__panel::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: var(--arrow-offset, 50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--color-white);
}
.ui-popover__panel--left {
  left: 0;
  transform: translateX(0);
}
.ui-popover__panel--left::before, .ui-popover__panel--left::after {
  left: var(--arrow-offset, 20px);
  transform: translateX(0);
}
.ui-popover__panel--right {
  left: auto;
  right: 0;
  transform: translateX(0);
}
.ui-popover__panel--right::before, .ui-popover__panel--right::after {
  left: auto;
  right: var(--arrow-offset, 20px);
  transform: translateX(0);
}
.ui-popover__panel--top::before {
  content: "";
  bottom: auto;
  top: 100%;
  border-bottom: none;
  border-top: 6px solid var(--color-border-default);
}
.ui-popover__panel--top::after {
  content: "";
  bottom: auto;
  top: 100%;
  border-bottom: none;
  border-top: 5px solid var(--color-white);
}
.ui-popover__panel--side-arrow::before {
  content: "";
  position: absolute;
  left: -6px;
  top: var(--arrow-offset, 50%);
  bottom: auto;
  transform: translateY(-50%);
  border-left: none;
  border-right: 6px solid var(--color-border-default);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.ui-popover__panel--side-arrow::after {
  content: "";
  position: absolute;
  left: -5px;
  top: var(--arrow-offset, 50%);
  bottom: auto;
  transform: translateY(-50%);
  border-left: none;
  border-right: 5px solid var(--color-white);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.ui-popover__content {
  padding: 6px 12px;
}
.ui-popover__content--scroll {
  overflow-y: auto;
  height: 233px;
  padding-right: 0;
}
.ui-popover__content .ui-popover__tooltip-text {
  color: var(--text-color-tertiary);
  font-size: var(--font-size-12);
  line-height: 20px;
}
.ui-popover .js-popover-toggle {
  cursor: pointer;
}
.ui-popover--tooltip {
  display: inline-block;
  margin-left: 2px;
}
.ui-popover--tooltip .ui-popover__button-info {
  width: 12px;
  height: 12px;
  background: url("/assets/images/icon-info.svg") no-repeat center/contain;
  vertical-align: middle;
}
.ui-popover--tooltip .ui-popover__button-detail {
  width: 20px;
  height: 20px;
  background: url("/assets/images/icon-view-detail.svg") no-repeat center/contain;
  vertical-align: middle;
}
.ui-popover--tooltip .ui-popover__panel {
  top: calc(100% + 10px);
}
.ui-popover--tooltip .ui-popover__tooltip-text {
  white-space: nowrap;
}
.ui-popover--complex .ui-popover__header {
  display: flex;
  height: 56px;
  padding: 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--color-border-default);
}
.ui-popover--complex .ui-popover__panel {
  --panel-border-radius: 8px;
  --panel-box-shadow: 0 2px 4px 0;
}
.ui-popover--complex .ui-popover__content {
  padding-inline: 6px;
}
.ui-popover--complex .ui-popover__footer {
  display: flex;
  height: 56px;
  padding: 12px 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-top: 1px solid var(--color-border-default);
}

.app--auth .app-body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.auth-card {
  width: var(--auth-width, 460px);
  padding: 50px 40px;
}
.auth-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 50px;
}
.auth-card__notice {
  margin-top: 50px;
  font-size: var(--font-size-12);
  color: var(--text-color-tertiary);
  line-height: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
}
.form-field__header {
  text-align: center;
}
.form-field__title {
  font-size: var(--font-size-24);
  font-weight: var(--font-semi-bold);
}
.form-field__description {
  margin-top: 20px;
  font-size: var(--font-size-14);
  color: var(--text-color-tertiary);
  line-height: 20px;
}
.form-field__description strong {
  font-weight: var(--font-medium);
}

.form-field--login .form-field__item + .form-field__item {
  margin-top: var(--form-item-gap, 10px);
}
.form-field--login .form-field__item:last-child {
  --form-item-gap: 30px;
}
.form-field--login .ui-input__field {
  --input-height: 44px;
}

.form-field--otp {
  padding-block: 50px;
  gap: 20px;
  border-top: 1px solid var(--color-border-default);
  border-bottom: 1px solid var(--color-border-default);
}
.form-field--otp + .auth-card__notice {
  margin-top: 10px;
}
.form-field--otp .form-field__item {
  text-align: center;
}
.form-field--otp .form-field__item--otp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-inline: 38px;
}
.form-field--otp .form-field__item--otp .form-field__label {
  font-size: var(--font-size-14);
  color: var(--text-color-tertiary);
}
.form-field--otp .form-field__item--otp .ui-input__field {
  --input-height: 44px;
  width: 44px;
  text-align: center;
  font-size: var(--font-size-18);
  font-weight: var(--font-medium);
}
.form-field--otp .otp-field {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.form-field--otp .ui-link {
  display: inline-block;
}