/* changsu start: HM 쇼핑몰 운영 대시보드 */
#container.hm-admin-dashboard {
    --hm-dashboard-bg: #f4f6f9;
    --hm-dashboard-card: #fff;
    --hm-dashboard-line: #e3e8ef;
    --hm-dashboard-text: #111;
    --hm-dashboard-muted: #111;
    --hm-dashboard-blue: #2f7fd8;
    --hm-dashboard-blue-soft: #eaf3ff;
    --hm-dashboard-coral: #ef6a67;
    --hm-dashboard-coral-soft: #fff0ef;
    --hm-dashboard-green: #2f9d78;
    --hm-dashboard-amber: #d99028;
    background: var(--hm-dashboard-bg) !important;
}

/* 대시보드 제목은 다른 HM 관리자 페이지와 동일한 hm-title-area 공통 규칙을 사용합니다. */

#container.hm-admin-dashboard > .container_wr {
    margin-top: 0 !important;
    padding: 0 24px 40px !important;
    background: transparent !important;
    box-sizing: border-box !important;
}

#container.hm-admin-dashboard .container_wr,
#container.hm-admin-dashboard .container_wr * {
    box-sizing: border-box;
}

#container.hm-admin-dashboard .sidx {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

#container.hm-admin-dashboard .sidx::after {
    display: none;
}

#container.hm-admin-dashboard .sidx_anchor {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

#container.hm-admin-dashboard a {
    transition: color .18s ease, border-color .18s ease, background-color .18s ease, transform .18s ease;
}

#container.hm-admin-dashboard .hm-dashboard-overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 18px;
}

#container.hm-admin-dashboard .hm-kpi-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 156px;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 20px 18px;
    overflow: hidden;
    border: 1px solid var(--hm-dashboard-line);
    border-radius: 0;
    background: var(--hm-dashboard-card);
    color: var(--hm-dashboard-text) !important;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(24, 39, 75, .035);
}

#container.hm-admin-dashboard .hm-kpi-card::after {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 72px;
    height: 72px;
    border-radius: 0 0 0 72px;
    background: var(--hm-kpi-soft);
    content: "";
    opacity: .78;
}

#container.hm-admin-dashboard .hm-kpi-card:hover {
    border-color: var(--hm-kpi-color);
    transform: none;
}

#container.hm-admin-dashboard .hm-kpi-card--new {
    --hm-kpi-color: var(--hm-dashboard-coral);
    --hm-kpi-text-color: #b43f3b;
    --hm-kpi-soft: var(--hm-dashboard-coral-soft);
}

#container.hm-admin-dashboard .hm-kpi-card--paid {
    --hm-kpi-color: var(--hm-dashboard-blue);
    --hm-kpi-text-color: #1f63ad;
    --hm-kpi-soft: var(--hm-dashboard-blue-soft);
}

#container.hm-admin-dashboard .hm-kpi-card--ready {
    --hm-kpi-color: var(--hm-dashboard-amber);
    --hm-kpi-text-color: #8a570c;
    --hm-kpi-soft: #fff6e7;
}

#container.hm-admin-dashboard .hm-kpi-card--shipping {
    --hm-kpi-color: var(--hm-dashboard-green);
    --hm-kpi-text-color: #1f7459;
    --hm-kpi-soft: #eaf8f3;
}

#container.hm-admin-dashboard .hm-kpi-card__label {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hm-dashboard-muted) !important;
    font-family: "Pretendard", sans-serif !important;
    font-size: 15px !important;
    line-height: 1;
}

#container.hm-admin-dashboard .hm-kpi-card__label i {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--hm-kpi-color);
}

#container.hm-admin-dashboard .hm-kpi-card__value {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    color: var(--hm-dashboard-text) !important;
    font-family: "Pretendard", "Nanum Gothic", sans-serif !important;
    font-size: 30px !important;
    font-weight: 400 !important;
    line-height: 1;
    letter-spacing: -.04em;
}

#container.hm-admin-dashboard .hm-kpi-card__value small {
    margin-left: 4px;
    color: var(--hm-dashboard-muted) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    letter-spacing: 0;
}

#container.hm-admin-dashboard .hm-kpi-card__meta {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
    color: var(--hm-dashboard-muted) !important;
    font-size: 15px !important;
    line-height: 1.3;
}

#container.hm-admin-dashboard .hm-kpi-card__meta b {
    overflow: hidden;
    color: var(--hm-dashboard-text) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* changsu start: 상단 KPI 카드의 검정 계열 텍스트를 #111로 통일 */
#container.hm-admin-dashboard .hm-dashboard-overview .hm-kpi-card,
#container.hm-admin-dashboard .hm-dashboard-overview .hm-kpi-card * {
    color: #111 !important;
}
/* changsu end */

#container.hm-admin-dashboard .hm-dashboard-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(330px, .9fr);
    gap: 18px;
    align-items: stretch;
}

#container.hm-admin-dashboard .hm-dashboard-side {
    display: grid;
    width: auto !important;
    grid-template-rows: auto auto;
    gap: 18px;
    float: none !important;
}

#container.hm-admin-dashboard .hm-dashboard-card {
    min-width: 0;
    margin: 0 !important;
    padding: 22px !important;
    overflow: visible;
    border: 1px solid var(--hm-dashboard-line) !important;
    border-radius: 0;
    background: var(--hm-dashboard-card);
    box-shadow: 0 4px 16px rgba(24, 39, 75, .035);
}

#container.hm-admin-dashboard #anc_sidx_ord {
    width: auto !important;
    float: none !important;
}

#container.hm-admin-dashboard .hm-dashboard-card__head {
    display: flex;
    min-height: 38px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 18px;
}

#container.hm-admin-dashboard .hm-dashboard-card__head h2,
#container.hm-admin-dashboard .sidx_cs .hm-dashboard-card__head h2 {
    margin: 5px 0 0 !important;
    padding: 0 !important;
    color: var(--hm-dashboard-text) !important;
    font-family: "Pretendard", sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
}

#container.hm-admin-dashboard .hm-dashboard-card__eyebrow {
    display: block;
    color: #111 !important;
    font-family: "Pretendard", sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: .12em;
}

#container.hm-admin-dashboard .hm-dashboard-card__caption {
    display: inline-flex;
    height: 26px;
    align-items: center;
    padding: 0 9px;
    border-radius: 0;
    background: #f2f5f8;
    color: var(--hm-dashboard-muted) !important;
    font-size: 15px !important;
    white-space: nowrap;
}

#container.hm-admin-dashboard .hm-dashboard-card__link {
    position: relative;
    padding-right: 14px;
    color: var(--hm-dashboard-blue) !important;
    font-size: 15px !important;
    line-height: 26px;
    text-decoration: none;
    white-space: nowrap;
}

#container.hm-admin-dashboard .hm-dashboard-card__link::after {
    position: absolute;
    top: 0;
    right: 1px;
    content: "›";
    font-size: 17px;
}

#container.hm-admin-dashboard .hm-chart-legend {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--hm-dashboard-muted);
    font-size: 15px;
}

#container.hm-admin-dashboard .hm-chart-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

#container.hm-admin-dashboard .hm-chart-legend i {
    width: 9px;
    height: 9px;
    border-radius: 0;
}

#container.hm-admin-dashboard .hm-chart-legend .is-wholesale {
    background: var(--hm-dashboard-blue);
}

#container.hm-admin-dashboard .hm-chart-legend .is-retail {
    background: var(--hm-dashboard-green);
}

#container.hm-admin-dashboard .hm-chart-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
    padding: 13px 16px;
    border-radius: 0;
    background: #f7f9fb;
}

#container.hm-admin-dashboard .hm-chart-summary span {
    min-width: 0;
    padding: 0 14px;
    border-right: 1px solid var(--hm-dashboard-line);
    color: var(--hm-dashboard-muted) !important;
    font-size: 15px !important;
    line-height: 1.3;
}

#container.hm-admin-dashboard .hm-chart-summary span:first-child {
    padding-left: 0;
}

#container.hm-admin-dashboard .hm-chart-summary span:last-child {
    padding-right: 0;
    border-right: 0;
}

#container.hm-admin-dashboard .hm-chart-summary strong {
    display: block;
    margin-top: 5px;
    overflow: hidden;
    color: var(--hm-dashboard-text) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#container.hm-admin-dashboard .hm-sales-chart {
    position: relative !important;
    min-height: 286px;
}

#container.hm-admin-dashboard .hm-sales-chart__plot {
    position: relative !important;
    inset: auto !important;
    display: grid !important;
    width: 100% !important;
    height: 286px !important;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    margin: 0 !important;
    padding: 14px 10px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--hm-dashboard-line) !important;
    list-style: none !important;
    background: transparent !important;
}

#container.hm-admin-dashboard .hm-sales-chart__plot::before {
    position: absolute;
    z-index: 0;
    top: 14px;
    right: 10px;
    bottom: 41px;
    left: 10px;
    border-top: 1px dashed #e7ebf1;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent calc(25% - 1px),
        #edf0f4 calc(25% - 1px),
        #edf0f4 25%
    );
    content: "";
    pointer-events: none;
}

#container.hm-admin-dashboard .hm-sales-chart__day {
    position: relative;
    z-index: 1;
    display: grid;
    min-width: 0;
    grid-template-rows: minmax(0, 1fr) 42px;
    padding: 0 6px;
}

#container.hm-admin-dashboard .hm-sales-chart__day.is-today {
    border-radius: 0;
    background: rgba(47, 127, 216, .045);
}

#container.hm-admin-dashboard .hm-sales-chart__bars {
    display: flex;
    min-height: 0;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
    padding-top: 26px;
}

#container.hm-admin-dashboard .hm-sales-chart__bar {
    position: relative;
    display: block;
    width: min(24px, 32%);
    height: var(--hm-bar-height);
    min-height: 0;
    border-radius: 0;
    cursor: default;
    animation: hm-dashboard-bar-rise .55s ease-out both;
    transform-origin: bottom;
}

#container.hm-admin-dashboard .hm-sales-chart__bar.wholesale {
    background: linear-gradient(180deg, #4d96e5 0%, var(--hm-dashboard-blue) 100%);
}

#container.hm-admin-dashboard .hm-sales-chart__bar.retail {
    background: linear-gradient(180deg, #49b28c 0%, var(--hm-dashboard-green) 100%);
}

#container.hm-admin-dashboard .hm-sales-chart__bar:hover,
#container.hm-admin-dashboard .hm-sales-chart__bar:focus {
    filter: saturate(1.08) brightness(.96);
    outline: 0;
}

#container.hm-admin-dashboard .hm-sales-chart__bar em {
    position: absolute;
    z-index: 5;
    bottom: calc(100% + 8px);
    left: 50%;
    display: none;
    width: max-content;
    max-width: 140px;
    padding: 6px 8px;
    border-radius: 0;
    background: #172033;
    color: #fff !important;
    font-size: 15px !important;
    font-style: normal;
    line-height: 1;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(23, 32, 51, .18);
}

#container.hm-admin-dashboard .hm-sales-chart__bar:hover em,
#container.hm-admin-dashboard .hm-sales-chart__bar:focus em {
    display: block;
}

#container.hm-admin-dashboard .hm-sales-chart__date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--hm-dashboard-text) !important;
    font-family: "Pretendard", sans-serif !important;
    font-size: 15px !important;
    white-space: nowrap;
}

#container.hm-admin-dashboard .hm-sales-chart__date small {
    color: #111 !important;
    font-size: 15px !important;
}

#container.hm-admin-dashboard .hm-sales-chart__day.is-today .hm-sales-chart__date {
    color: var(--hm-dashboard-blue) !important;
    font-weight: 400 !important;
}

@keyframes hm-dashboard-bar-rise {
    from { transform: scaleY(0); opacity: .35; }
    to { transform: scaleY(1); opacity: 1; }
}

#container.hm-admin-dashboard .hm-dashboard-action-card .tbl_wrap,
#container.hm-admin-dashboard .hm-dashboard-stock-card .tbl_wrap {
    padding: 0 !important;
}

#container.hm-admin-dashboard .hm-dashboard-card .tbl_head01,
#container.hm-admin-dashboard .hm-dashboard-card .tbl_head01.tbl_wrap {
    overflow: hidden;
    border: 1px solid var(--hm-dashboard-line) !important;
    border-radius: 0 !important;
}

#container.hm-admin-dashboard .hm-dashboard-card .tbl_head01 table {
    width: 100%;
    border: 0 !important;
    border-collapse: collapse !important;
    table-layout: fixed;
}

#container.hm-admin-dashboard .hm-dashboard-card .tbl_head01 th,
#container.hm-admin-dashboard .hm-dashboard-card .tbl_head01 td {
    height: auto !important;
    padding: 11px 10px !important;
    border: 0 !important;
    border-right: 1px solid var(--hm-dashboard-line) !important;
    border-bottom: 1px solid var(--hm-dashboard-line) !important;
    background: #fff !important;
    color: var(--hm-dashboard-text) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    vertical-align: middle !important;
}

#container.hm-admin-dashboard .hm-dashboard-card .tbl_head01 thead th {
    background: #f7f9fb !important;
    color: #111 !important;
    font-size: 15px !important;
}

#container.hm-admin-dashboard .hm-dashboard-card .tbl_head01 tr > :last-child {
    border-right: 0 !important;
}

#container.hm-admin-dashboard .hm-dashboard-card .tbl_head01 tbody tr:last-child > * {
    border-bottom: 0 !important;
}

#container.hm-admin-dashboard .hm-dashboard-card .tbl_head01 tbody tr:hover > * {
    background: #f9fbfd !important;
}

#container.hm-admin-dashboard .hm-dashboard-card .tbl_head01 a {
    display: block;
    color: var(--hm-dashboard-text) !important;
    text-decoration: none;
}

#container.hm-admin-dashboard .hm-dashboard-action-card tbody th {
    text-align: left;
    white-space: nowrap;
}

#container.hm-admin-dashboard .hm-dashboard-action-card .td_num a {
    color: var(--hm-dashboard-blue) !important;
    font-weight: 400 !important;
}

#container.hm-admin-dashboard .hm-dashboard-action-card .td_price {
    text-align: right;
}

#container.hm-admin-dashboard .hm-dashboard-stock-card .hm-dashboard-card__head {
    margin-bottom: 14px;
}

#container.hm-admin-dashboard .hm-dashboard-stock-card td {
    text-align: center;
}

#container.hm-admin-dashboard .hm-dashboard-stock-card td a {
    color: var(--hm-dashboard-coral) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
}

#container.hm-admin-dashboard #anc_sidx_settle {
    margin: 18px 0 !important;
    padding: 22px !important;
    border: 1px solid var(--hm-dashboard-line) !important;
}

#container.hm-admin-dashboard .hm-dashboard-payment-card .tbl_wrap {
    overflow-x: auto;
}

#container.hm-admin-dashboard .hm-dashboard-payment-card table {
    min-width: 760px;
    text-align: center;
}

#container.hm-admin-dashboard .hm-dashboard-payment-card tbody th {
    background: #fbfcfd !important;
    font-weight: 400 !important;
}

#container.hm-admin-dashboard .hm-dashboard-payment-card tbody td:nth-child(odd) {
    color: var(--hm-dashboard-blue) !important;
    font-weight: 400 !important;
}

#container.hm-admin-dashboard .hm-dashboard-cs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

#container.hm-admin-dashboard .hm-dashboard-cs section {
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 22px !important;
    float: none !important;
}

#container.hm-admin-dashboard .hm-dashboard-message-card {
    display: flex;
    min-height: 270px;
    flex-direction: column;
}

#container.hm-admin-dashboard .hm-dashboard-message-card .ul_wrap {
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;
}

#container.hm-admin-dashboard .hm-dashboard-message-card .ul_wrap ul {
    margin: 0;
    padding: 0;
}

#container.hm-admin-dashboard .hm-dashboard-message-card .ul_wrap li {
    position: relative;
    min-height: 50px;
    padding: 11px 2px !important;
    border-bottom: 1px solid #edf0f4;
    color: var(--hm-dashboard-muted) !important;
    font-size: 15px !important;
    line-height: 1.45;
    list-style: none;
}

#container.hm-admin-dashboard .hm-dashboard-message-card .ul_wrap li:last-child {
    border-bottom: 0;
}

#container.hm-admin-dashboard .hm-dashboard-message-card .ul_wrap li > a {
    display: block !important;
    margin: 0 0 4px !important;
    overflow: hidden;
    color: var(--hm-dashboard-text) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#container.hm-admin-dashboard .hm-dashboard-message-card .oneq_cate {
    display: inline-flex;
    margin-bottom: 5px;
    color: var(--hm-dashboard-blue) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
}

#container.hm-admin-dashboard .hm-dashboard-message-card .sv_wrap,
#container.hm-admin-dashboard .hm-dashboard-message-card .sv_member {
    color: var(--hm-dashboard-muted) !important;
    font-size: 15px !important;
}

#container.hm-admin-dashboard .hm-dashboard-message-card .empty_list {
    display: flex;
    min-height: 120px;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #111 !important;
    text-align: center;
}

#container.hm-admin-dashboard .hm-dashboard-message-card .btn_list03 {
    margin: 16px 0 0 !important;
}

#container.hm-admin-dashboard .hm-dashboard-message-card .btn_list03 a {
    display: flex !important;
    width: 100%;
    height: 40px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 12px !important;
    border: 1px solid var(--hm-dashboard-line) !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #111 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    text-decoration: none;
}

#container.hm-admin-dashboard .hm-dashboard-message-card .btn_list03 a:hover {
    border-color: #b8c5d5 !important;
    background: #f7f9fb !important;
    color: var(--hm-dashboard-blue) !important;
}

/* changsu start: 항목별 타이틀을 제외한 관리자 메인 본문 나눔고딕 13px 통일 */
html body #container#container.hm-admin-dashboard .container_wr .hm-dashboard-overview *,
html body #container#container.hm-admin-dashboard .container_wr .hm-dashboard-primary *,
html body #container#container.hm-admin-dashboard .container_wr .hm-dashboard-payment-card *,
html body #container#container.hm-admin-dashboard .container_wr .hm-dashboard-cs * {
    font-family: "Nanum Gothic", "나눔고딕", "Malgun Gothic", "맑은 고딕", sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}

/* changsu start: 상단 KPI 수치 글자를 최초 HM 대시보드 디자인으로 복원 */
html body #container#container.hm-admin-dashboard .container_wr .hm-kpi-card__value {
    color: var(--hm-kpi-text-color) !important;
    font-family: "Pretendard", "Nanum Gothic", sans-serif !important;
    font-size: 30px !important;
    font-weight: 750 !important;
    line-height: 1 !important;
    letter-spacing: -.04em !important;
}

html body #container#container.hm-admin-dashboard .container_wr .hm-kpi-card__value small {
    color: var(--hm-kpi-text-color) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}
/* changsu end */

/* changsu start: 그래프 요약 라벨과 금액 14px 조정 */
html body #container#container.hm-admin-dashboard .container_wr .hm-chart-summary span,
html body #container#container.hm-admin-dashboard .container_wr .hm-chart-summary strong {
    font-size: 14px !important;
}
/* changsu end */

html body #container#container.hm-admin-dashboard .container_wr .hm-kpi-card__label,
html body #container#container.hm-admin-dashboard .container_wr .hm-dashboard-card__eyebrow,
html body #container#container.hm-admin-dashboard .container_wr .hm-dashboard-card__head h2 {
    font-family: "Pretendard", sans-serif !important;
}

/* changsu start: KPI 하단 설명·금액을 영역 한글 타이틀 서체로 통일 */
html body #container#container.hm-admin-dashboard .container_wr .hm-kpi-card__meta,
html body #container#container.hm-admin-dashboard .container_wr .hm-kpi-card__meta b {
    color: #111 !important;
    font-family: "Pretendard", sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
}
/* changsu end */

html body #container#container.hm-admin-dashboard .container_wr .hm-kpi-card__label,
html body #container#container.hm-admin-dashboard .container_wr .hm-dashboard-card__head h2 {
    font-size: 16px !important;
}

html body #container#container.hm-admin-dashboard .container_wr .hm-kpi-card__label {
    color: var(--hm-kpi-text-color) !important;
}

html body #container#container.hm-admin-dashboard .container_wr .hm-dashboard-card__eyebrow {
    font-size: 11px !important;
}
/* changsu end */

/* changsu start: 관리자 메인 본문 박스 라운드 제거 */
html body #container#container.hm-admin-dashboard .container_wr :is(
    .hm-dashboard-overview,
    .hm-dashboard-primary,
    .hm-dashboard-payment-card,
    .hm-dashboard-cs
),
html body #container#container.hm-admin-dashboard .container_wr :is(
    .hm-dashboard-overview,
    .hm-dashboard-primary,
    .hm-dashboard-payment-card,
    .hm-dashboard-cs
) * {
    border-radius: 0 !important;
}

html body #container#container.hm-admin-dashboard .container_wr .hm-kpi-card__label i {
    border-radius: 50% !important;
}
/* changsu end */

@media (max-width: 1280px) {
    #container.hm-admin-dashboard .hm-dashboard-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #container.hm-admin-dashboard .hm-dashboard-main-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    #container.hm-admin-dashboard .hm-dashboard-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }
}

@media (max-width: 900px) {
    #container.hm-admin-dashboard > .container_wr {
        padding: 0 12px 28px !important;
    }

    #container.hm-admin-dashboard .hm-dashboard-overview,
    #container.hm-admin-dashboard .hm-dashboard-side,
    #container.hm-admin-dashboard .hm-dashboard-cs {
        grid-template-columns: minmax(0, 1fr);
    }

    #container.hm-admin-dashboard .hm-dashboard-card {
        padding: 18px !important;
    }

    #container.hm-admin-dashboard .hm-sales-chart__day {
        padding: 0 2px;
    }

    #container.hm-admin-dashboard .hm-sales-chart__bars {
        gap: 3px;
    }

    #container.hm-admin-dashboard .hm-sales-chart__bar {
        width: min(18px, 38%);
    }

    #container.hm-admin-dashboard .hm-sales-chart__date {
        flex-direction: column;
        gap: 1px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #container.hm-admin-dashboard *,
    #container.hm-admin-dashboard *::before,
    #container.hm-admin-dashboard *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* changsu end: HM 쇼핑몰 운영 대시보드 */
