@font-face {
  font-family: "Noto Sans KR";
  src: url("/assets/fonts/webapp/NotoSansKR-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("/assets/fonts/webapp/NotoSansKR-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("/assets/fonts/webapp/NotoSansKR-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("/assets/fonts/webapp/NotoSansKR-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("/assets/fonts/webapp/NotoSansKR-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("/assets/fonts/webapp/NotoSansKR-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* INK - my reset css kit */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  word-break: keep-all;
}

body {
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
select,
textarea,
button {
  outline: 0;
  border: 0;
  box-sizing: border-box;
}

input[type=checkbox],
input[type=radio],
select,
button {
  cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   1. Root Variables & Base Styles
   ========================================================================== */
:root {
  --color-primary: #f62670;
  --color-secondary: #1f3864;
  --color-third: #2b446e;
  --color-default: #eeeeee;
  --color-white: #ffffff;
  --color-black-100: #000000;
  --color-black-80: #333333;
  --color-black-60: #666666;
  --color-black-40: #999999;
  --color-black-20: #cccccc;
  --color-black-10: #e6e6e6;
  --color-gray: #b2b2b2;
  --color-gray-100: #808080;
  --color-gray-80: #e3e3e3;
  --color-gray-60: #f8f8f8;
  --color-red: #ff6161;
  --color-dark-green: #008704;
  --color-dark-blue: #0054d2;
  --color-blue: #1765ef;
  --color-light-blue-gray: #7b89a1;
  --color-light-blue: #8791a4;
  --color-blank: transparent;
  --color-black-a-60: rgba(0, 0, 0, 0.6);
}

body {
  margin: 0;
  font-family: "Noto Sans KR", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

/* ==========================================================================
   2. Utility Classes (Loops)
   ========================================================================== */
.spacing-4 {
  margin: 4px;
}

.spacing-top-4 {
  margin-top: 4px;
}

.spacing-bottom-4 {
  margin-bottom: 4px;
}

.spacing-left-4 {
  margin-left: 4px;
}

.spacing-right-4 {
  margin-right: 4px;
}

.spacing-8 {
  margin: 8px;
}

.spacing-top-8 {
  margin-top: 8px;
}

.spacing-bottom-8 {
  margin-bottom: 8px;
}

.spacing-left-8 {
  margin-left: 8px;
}

.spacing-right-8 {
  margin-right: 8px;
}

.spacing-12 {
  margin: 12px;
}

.spacing-top-12 {
  margin-top: 12px;
}

.spacing-bottom-12 {
  margin-bottom: 12px;
}

.spacing-left-12 {
  margin-left: 12px;
}

.spacing-right-12 {
  margin-right: 12px;
}

.spacing-16 {
  margin: 16px;
}

.spacing-top-16 {
  margin-top: 16px;
}

.spacing-bottom-16 {
  margin-bottom: 16px;
}

.spacing-left-16 {
  margin-left: 16px;
}

.spacing-right-16 {
  margin-right: 16px;
}

.spacing-20 {
  margin: 20px;
}

.spacing-top-20 {
  margin-top: 20px;
}

.spacing-bottom-20 {
  margin-bottom: 20px;
}

.spacing-left-20 {
  margin-left: 20px;
}

.spacing-right-20 {
  margin-right: 20px;
}

.spacing-24 {
  margin: 24px;
}

.spacing-top-24 {
  margin-top: 24px;
}

.spacing-bottom-24 {
  margin-bottom: 24px;
}

.spacing-left-24 {
  margin-left: 24px;
}

.spacing-right-24 {
  margin-right: 24px;
}

.spacing-28 {
  margin: 28px;
}

.spacing-top-28 {
  margin-top: 28px;
}

.spacing-bottom-28 {
  margin-bottom: 28px;
}

.spacing-left-28 {
  margin-left: 28px;
}

.spacing-right-28 {
  margin-right: 28px;
}

.spacing-32 {
  margin: 32px;
}

.spacing-top-32 {
  margin-top: 32px;
}

.spacing-bottom-32 {
  margin-bottom: 32px;
}

.spacing-left-32 {
  margin-left: 32px;
}

.spacing-right-32 {
  margin-right: 32px;
}

.spacing-36 {
  margin: 36px;
}

.spacing-top-36 {
  margin-top: 36px;
}

.spacing-bottom-36 {
  margin-bottom: 36px;
}

.spacing-left-36 {
  margin-left: 36px;
}

.spacing-right-36 {
  margin-right: 36px;
}

.spacing-40 {
  margin: 40px;
}

.spacing-top-40 {
  margin-top: 40px;
}

.spacing-bottom-40 {
  margin-bottom: 40px;
}

.spacing-left-40 {
  margin-left: 40px;
}

.spacing-right-40 {
  margin-right: 40px;
}

.spacing-2 {
  margin: 2px;
}

.spacing-top-2 {
  margin-top: 2px;
}

.spacing-bottom-2 {
  margin-bottom: 2px;
}

.spacing-left-2 {
  margin-left: 2px;
}

.spacing-right-2 {
  margin-right: 2px;
}

.spacing-10 {
  margin: 10px;
}

.spacing-top-10 {
  margin-top: 10px;
}

.spacing-bottom-10 {
  margin-bottom: 10px;
}

.spacing-left-10 {
  margin-left: 10px;
}

.spacing-right-10 {
  margin-right: 10px;
}

.spacing-13 {
  margin: 13px;
}

.spacing-top-13 {
  margin-top: 13px;
}

.spacing-bottom-13 {
  margin-bottom: 13px;
}

.spacing-left-13 {
  margin-left: 13px;
}

.spacing-right-13 {
  margin-right: 13px;
}

.spacing-15 {
  margin: 15px;
}

.spacing-top-15 {
  margin-top: 15px;
}

.spacing-bottom-15 {
  margin-bottom: 15px;
}

.spacing-left-15 {
  margin-left: 15px;
}

.spacing-right-15 {
  margin-right: 15px;
}

.spacing-18 {
  margin: 18px;
}

.spacing-top-18 {
  margin-top: 18px;
}

.spacing-bottom-18 {
  margin-bottom: 18px;
}

.spacing-left-18 {
  margin-left: 18px;
}

.spacing-right-18 {
  margin-right: 18px;
}

.spacing-23 {
  margin: 23px;
}

.spacing-top-23 {
  margin-top: 23px;
}

.spacing-bottom-23 {
  margin-bottom: 23px;
}

.spacing-left-23 {
  margin-left: 23px;
}

.spacing-right-23 {
  margin-right: 23px;
}

.spacing-25 {
  margin: 25px;
}

.spacing-top-25 {
  margin-top: 25px;
}

.spacing-bottom-25 {
  margin-bottom: 25px;
}

.spacing-left-25 {
  margin-left: 25px;
}

.spacing-right-25 {
  margin-right: 25px;
}

.spacing-26 {
  margin: 26px;
}

.spacing-top-26 {
  margin-top: 26px;
}

.spacing-bottom-26 {
  margin-bottom: 26px;
}

.spacing-left-26 {
  margin-left: 26px;
}

.spacing-right-26 {
  margin-right: 26px;
}

.spacing-35 {
  margin: 35px;
}

.spacing-top-35 {
  margin-top: 35px;
}

.spacing-bottom-35 {
  margin-bottom: 35px;
}

.spacing-left-35 {
  margin-left: 35px;
}

.spacing-right-35 {
  margin-right: 35px;
}

.spacing-36 {
  margin: 36px;
}

.spacing-top-36 {
  margin-top: 36px;
}

.spacing-bottom-36 {
  margin-bottom: 36px;
}

.spacing-left-36 {
  margin-left: 36px;
}

.spacing-right-36 {
  margin-right: 36px;
}

.spacing-90 {
  margin: 90px;
}

.spacing-top-90 {
  margin-top: 90px;
}

.spacing-bottom-90 {
  margin-bottom: 90px;
}

.spacing-left-90 {
  margin-left: 90px;
}

.spacing-right-90 {
  margin-right: 90px;
}

.spacing-bottom-footer {
  margin-bottom: 70px;
}

.padding-2 {
  padding: 2px;
}

.padding-side-2 {
  padding-left: 2px;
  padding-right: 2px;
}

.padding-vertical-2 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.padding-left-2 {
  padding-left: 2px;
}

.padding-4 {
  padding: 4px;
}

.padding-side-4 {
  padding-left: 4px;
  padding-right: 4px;
}

.padding-vertical-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.padding-left-4 {
  padding-left: 4px;
}

.padding-6 {
  padding: 6px;
}

.padding-side-6 {
  padding-left: 6px;
  padding-right: 6px;
}

.padding-vertical-6 {
  padding-top: 6px;
  padding-bottom: 6px;
}

.padding-left-6 {
  padding-left: 6px;
}

.padding-8 {
  padding: 8px;
}

.padding-side-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.padding-vertical-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.padding-left-8 {
  padding-left: 8px;
}

.padding-10 {
  padding: 10px;
}

.padding-side-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.padding-vertical-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.padding-left-10 {
  padding-left: 10px;
}

.padding-12 {
  padding: 12px;
}

.padding-side-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.padding-vertical-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.padding-left-12 {
  padding-left: 12px;
}

.padding-14 {
  padding: 14px;
}

.padding-side-14 {
  padding-left: 14px;
  padding-right: 14px;
}

.padding-vertical-14 {
  padding-top: 14px;
  padding-bottom: 14px;
}

.padding-left-14 {
  padding-left: 14px;
}

.padding-16 {
  padding: 16px;
}

.padding-side-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.padding-vertical-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.padding-left-16 {
  padding-left: 16px;
}

.padding-18 {
  padding: 18px;
}

.padding-side-18 {
  padding-left: 18px;
  padding-right: 18px;
}

.padding-vertical-18 {
  padding-top: 18px;
  padding-bottom: 18px;
}

.padding-left-18 {
  padding-left: 18px;
}

.padding-20 {
  padding: 20px;
}

.padding-side-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.padding-vertical-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.padding-left-20 {
  padding-left: 20px;
}

.padding-22 {
  padding: 22px;
}

.padding-side-22 {
  padding-left: 22px;
  padding-right: 22px;
}

.padding-vertical-22 {
  padding-top: 22px;
  padding-bottom: 22px;
}

.padding-left-22 {
  padding-left: 22px;
}

.padding-24 {
  padding: 24px;
}

.padding-side-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.padding-vertical-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.padding-left-24 {
  padding-left: 24px;
}

.padding-26 {
  padding: 26px;
}

.padding-side-26 {
  padding-left: 26px;
  padding-right: 26px;
}

.padding-vertical-26 {
  padding-top: 26px;
  padding-bottom: 26px;
}

.padding-left-26 {
  padding-left: 26px;
}

.padding-28 {
  padding: 28px;
}

.padding-side-28 {
  padding-left: 28px;
  padding-right: 28px;
}

.padding-vertical-28 {
  padding-top: 28px;
  padding-bottom: 28px;
}

.padding-left-28 {
  padding-left: 28px;
}

.padding-30 {
  padding: 30px;
}

.padding-side-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.padding-vertical-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.padding-left-30 {
  padding-left: 30px;
}

.padding-32 {
  padding: 32px;
}

.padding-side-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.padding-vertical-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.padding-left-32 {
  padding-left: 32px;
}

.padding-34 {
  padding: 34px;
}

.padding-side-34 {
  padding-left: 34px;
  padding-right: 34px;
}

.padding-vertical-34 {
  padding-top: 34px;
  padding-bottom: 34px;
}

.padding-left-34 {
  padding-left: 34px;
}

.padding-36 {
  padding: 36px;
}

.padding-side-36 {
  padding-left: 36px;
  padding-right: 36px;
}

.padding-vertical-36 {
  padding-top: 36px;
  padding-bottom: 36px;
}

.padding-left-36 {
  padding-left: 36px;
}

.padding-38 {
  padding: 38px;
}

.padding-side-38 {
  padding-left: 38px;
  padding-right: 38px;
}

.padding-vertical-38 {
  padding-top: 38px;
  padding-bottom: 38px;
}

.padding-left-38 {
  padding-left: 38px;
}

.padding-40 {
  padding: 40px;
}

.padding-side-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.padding-vertical-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padding-left-40 {
  padding-left: 40px;
}

.padding-15 {
  padding: 15px;
}

.padding-side-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.padding-vertical-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.padding-left-15 {
  padding-left: 15px;
}

.padding-48 {
  padding: 48px;
}

.padding-side-48 {
  padding-left: 48px;
  padding-right: 48px;
}

.padding-vertical-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.padding-left-48 {
  padding-left: 48px;
}

.border-radius-2 {
  border-radius: 2px;
}

.border-radius-4 {
  border-radius: 4px;
}

.border-radius-6 {
  border-radius: 6px;
}

.border-radius-8 {
  border-radius: 8px;
}

.border-radius-10 {
  border-radius: 10px;
}

.border-radius-12 {
  border-radius: 12px;
}

.border-radius-14 {
  border-radius: 14px;
}

.border-radius-16 {
  border-radius: 16px;
}

.border-radius-18 {
  border-radius: 18px;
}

.border-radius-20 {
  border-radius: 20px;
}

.border-radius-60 {
  border-radius: 60px;
}

.border-primary {
  border: 1px solid var(--color-primary);
}

.border-secondary {
  border: 1px solid var(--color-secondary);
}

.border-third {
  border: 1px solid var(--color-third);
}

.border-default {
  border: 1px solid var(--color-default);
}

.border-white {
  border: 1px solid var(--color-white);
}

.border-black-100 {
  border: 1px solid var(--color-black-100);
}

.border-black-80 {
  border: 1px solid var(--color-black-80);
}

.border-black-60 {
  border: 1px solid var(--color-black-60);
}

.border-black-40 {
  border: 1px solid var(--color-black-40);
}

.border-black-20 {
  border: 1px solid var(--color-black-20);
}

.border-black-10 {
  border: 1px solid var(--color-black-10);
}

.border-gray {
  border: 1px solid var(--color-gray);
}

.border-gray-100 {
  border: 1px solid var(--color-gray-100);
}

.border-gray-80 {
  border: 1px solid var(--color-gray-80);
}

.border-gray-60 {
  border: 1px solid var(--color-gray-60);
}

.border-red {
  border: 1px solid var(--color-red);
}

.border-dark-green {
  border: 1px solid var(--color-dark-green);
}

.border-dark-blue {
  border: 1px solid var(--color-dark-blue);
}

.border-blue {
  border: 1px solid var(--color-blue);
}

.border-light-blue-gray {
  border: 1px solid var(--color-light-blue-gray);
}

.border-light-blue {
  border: 1px solid var(--color-light-blue);
}

.border-blank {
  border: 1px solid var(--color-blank);
}

.border-black-a-60 {
  border: 1px solid var(--color-black-a-60);
}

.height-10 {
  height: 10px;
}

.height-20 {
  height: 20px;
}

.height-30 {
  height: 30px;
}

.height-40 {
  height: 40px;
}

.height-50 {
  height: 50px;
}

.height-60 {
  height: 60px;
}

.height-70 {
  height: 70px;
}

.height-80 {
  height: 80px;
}

.height-90 {
  height: 90px;
}

.height-100 {
  height: 100px;
}

.height-1 {
  min-height: 1px;
}

.height-12 {
  min-height: 12px;
}

.height-18 {
  min-height: 18px;
}

.height-22 {
  min-height: 22px;
}

.height-24 {
  min-height: 24px;
}

.height-43 {
  min-height: 43px;
}

.height-48 {
  min-height: 48px;
}

.height-52 {
  min-height: 52px;
}

.height-54 {
  min-height: 54px;
}

.height-56 {
  min-height: 56px;
}

.height-62 {
  min-height: 62px;
}

.height-66 {
  min-height: 66px;
}

.height-98 {
  min-height: 98px;
}

.height-131 {
  min-height: 131px;
}

.height-167 {
  min-height: 167px;
}

.height-206 {
  min-height: 206px;
}

.height-234 {
  min-height: 234px;
}

.height-334 {
  min-height: 334px;
}

.width-10p {
  min-width: 10%;
}

.width-20p {
  min-width: 20%;
}

.width-30p {
  min-width: 30%;
}

.width-40p {
  min-width: 40%;
}

.width-50p {
  min-width: 50%;
}

.width-60p {
  min-width: 60%;
}

.width-70p {
  min-width: 70%;
}

.width-80p {
  min-width: 80%;
}

.width-90p {
  min-width: 90%;
}

.width-100p {
  min-width: 100%;
}

.width-1 {
  min-width: 1px;
}

.width-12 {
  min-width: 12px;
}

.width-18 {
  min-width: 18px;
}

.width-22 {
  min-width: 22px;
}

.width-24 {
  min-width: 24px;
}

.width-43 {
  min-width: 43px;
}

.width-48 {
  min-width: 48px;
}

.width-52 {
  min-width: 52px;
}

.width-54 {
  min-width: 54px;
}

.width-56 {
  min-width: 56px;
}

.width-62 {
  min-width: 62px;
}

.width-66 {
  min-width: 66px;
}

.width-98 {
  min-width: 98px;
}

.width-131 {
  min-width: 131px;
}

.width-167 {
  min-width: 167px;
}

.width-206 {
  min-width: 206px;
}

.width-234 {
  min-width: 234px;
}

.width-334 {
  min-width: 334px;
}

.width-12m {
  max-width: 12px;
}

.height-12m {
  max-height: 12px;
}

.font-size-2 {
  font-size: 2px;
}

.font-size-4 {
  font-size: 4px;
}

.font-size-6 {
  font-size: 6px;
}

.font-size-8 {
  font-size: 8px;
}

.font-size-10 {
  font-size: 10px;
}

.font-size-12 {
  font-size: 12px;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-22 {
  font-size: 22px;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-26 {
  font-size: 26px;
}

.font-size-28 {
  font-size: 28px;
}

.font-size-30 {
  font-size: 30px;
}

.font-size-32 {
  font-size: 32px;
}

.font-size-34 {
  font-size: 34px;
}

.font-size-36 {
  font-size: 36px;
}

.font-size-38 {
  font-size: 38px;
}

.font-size-40 {
  font-size: 40px;
}

.font-size-13 {
  font-size: 13;
}

.font-size-15 {
  font-size: 15;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-third {
  color: var(--color-third);
}

.text-default {
  color: var(--color-default);
}

.text-white {
  color: var(--color-white);
}

.text-black-100 {
  color: var(--color-black-100);
}

.text-black-80 {
  color: var(--color-black-80);
}

.text-black-60 {
  color: var(--color-black-60);
}

.text-black-40 {
  color: var(--color-black-40);
}

.text-black-20 {
  color: var(--color-black-20);
}

.text-black-10 {
  color: var(--color-black-10);
}

.text-gray {
  color: var(--color-gray);
}

.text-gray-100 {
  color: var(--color-gray-100);
}

.text-gray-80 {
  color: var(--color-gray-80);
}

.text-gray-60 {
  color: var(--color-gray-60);
}

.text-red {
  color: var(--color-red);
}

.text-dark-green {
  color: var(--color-dark-green);
}

.text-dark-blue {
  color: var(--color-dark-blue);
}

.text-blue {
  color: var(--color-blue);
}

.text-light-blue-gray {
  color: var(--color-light-blue-gray);
}

.text-light-blue {
  color: var(--color-light-blue);
}

.text-blank {
  color: var(--color-blank);
}

.text-black-a-60 {
  color: var(--color-black-a-60);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-secondary {
  background-color: var(--color-secondary);
}

.bg-third {
  background-color: var(--color-third);
}

.bg-default {
  background-color: var(--color-default);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-black-100 {
  background-color: var(--color-black-100);
}

.bg-black-80 {
  background-color: var(--color-black-80);
}

.bg-black-60 {
  background-color: var(--color-black-60);
}

.bg-black-40 {
  background-color: var(--color-black-40);
}

.bg-black-20 {
  background-color: var(--color-black-20);
}

.bg-black-10 {
  background-color: var(--color-black-10);
}

.bg-gray {
  background-color: var(--color-gray);
}

.bg-gray-100 {
  background-color: var(--color-gray-100);
}

.bg-gray-80 {
  background-color: var(--color-gray-80);
}

.bg-gray-60 {
  background-color: var(--color-gray-60);
}

.bg-red {
  background-color: var(--color-red);
}

.bg-dark-green {
  background-color: var(--color-dark-green);
}

.bg-dark-blue {
  background-color: var(--color-dark-blue);
}

.bg-blue {
  background-color: var(--color-blue);
}

.bg-light-blue-gray {
  background-color: var(--color-light-blue-gray);
}

.bg-light-blue {
  background-color: var(--color-light-blue);
}

.bg-blank {
  background-color: var(--color-blank);
}

.bg-black-a-60 {
  background-color: var(--color-black-a-60);
}

.width-100vw {
  width: 100vw;
}

.height-100vh {
  height: 100vh;
}

.width-full {
  min-width: 100%;
  align-self: stretch;
}

.height-full {
  min-height: 100%;
  align-self: stretch;
}

.box-shadow-top {
  box-shadow: 0px -6px 20px rgba(0, 0, 0, 0.0392156863);
}

.box-shadow-bottom {
  box-shadow: 0px 6px 6px hsla(0, 0%, 0%, 0.039);
}

.box-shadow-button {
  box-shadow: 0px 3px 6px #0000001F;
}

.input-focus-type-1:focus {
  outline: 1px solid var(--color-secondary);
  outline-offset: 1px;
}

/* ==========================================================================
   3. Layout & Flex Utilities
   ========================================================================== */
.center-flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.center-flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.top-flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.top-flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.left-flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.left-flex-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.between-center-flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.between-top-flex-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.flex-1-1 {
  flex: 1 1 auto;
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-28 {
  gap: 28px;
}

.gap-32 {
  gap: 32px;
}

.gap-36 {
  gap: 36px;
}

.gap-40 {
  gap: 40px;
}

.gap-5 {
  gap: 5px;
}

.gap-6 {
  gap: 6px;
}

.gap-9 {
  gap: 9px;
}

.gap-10 {
  gap: 10px;
}

.text-center {
  text-align: center;
}

.text-vertical-center {
  display: flex;
  align-items: center;
}

.align-middle {
  vertical-align: middle;
}

.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.relative {
  position: relative;
}

.abs-bottom-8p {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 100%;
}

.abs-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
}

.abs-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.abs-top-left {
  position: absolute;
  top: 0;
  left: 0;
}

.abs-top-right {
  position: absolute;
  top: 0;
  right: 0;
}

.roated-180 {
  transform: rotate(180deg);
}

.rotated-180 {
  transform: rotate(180deg);
}

.custom-select {
  position: relative;
  cursor: pointer;
}

.custom-select .now-select {
  cursor: pointer;
}

.custom-select .select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: var(--color-white);
  overflow: hidden;
  z-index: 20;
  max-height: 312px;
}

.custom-select .select-option {
  width: 100%;
  height: 52px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.custom-select .select-option:hover {
  background: var(--color-black-10);
}

.custom-select.active .now-select {
  outline: 1px solid var(--color-secondary);
}

.custom-select.active .select-options {
  display: block;
}

.honor_label {
  width: 33px;
  height: 17px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
}

.honor_label.--hosim {
  background-color: #eadcff;
  color: #4f3f94;
}

.honor_label.--maewol {
  background-color: #fbeee1;
  color: #cc751d;
}

.honor_label.--baekin {
  background-color: #f1eed4;
  color: #706400;
}

.honor_label.--magnolia {
  background-color: #ecfbff;
  color: #3e7181;
}

.honor_label.--gyeokgi {
  background-color: #ffe9f2;
  color: #bc003f;
}

.honor_label.--jinwol {
  background-color: #dbeee4;
  color: #008f21;
}

/* ==========================================================================
   4. Search Component Styles
   ========================================================================== */
.search-result-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.search-result-summary .search-result-count__num,
.search-result-summary .search-result-sum__num {
  font-weight: 700;
  color: var(--color-primary);
}

.search-pagination,
.donation-pagination {
  display: grid;
  grid-template-columns: 80px auto 80px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-bottom: 10px;
}

.search-pagination__btn,
.donation-pagination__btn {
  height: 48px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-white);
}

.search-pagination__btn--disabled,
.donation-pagination__btn--disabled {
  background: var(--color-light-blue);
  color: var(--color-white);
}

.search-pagination__btn--disabled:disabled,
.donation-pagination__btn--disabled:disabled {
  opacity: 0.7;
}

.search-pagination__index,
.donation-pagination__index {
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 400;
}

.search-pagination__index.--current,
.donation-pagination__index.--current {
  font-weight: 700;
}

.search-pagination__page,
.donation-pagination__page {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black-100);
}

/* DataTables (Search page) */
#searchTable_wrapper .dataTables_filter,
#searchTable_wrapper .dataTables_length,
#searchTable_wrapper .dataTables_info,
#searchTable_wrapper .dataTables_paginate,
.fund-dt-wrapper .dataTables_filter,
.fund-dt-wrapper .dataTables_length,
.fund-dt-wrapper .dataTables_info,
.fund-dt-wrapper .dataTables_paginate {
  display: none !important;
}

/* Remove DataTables default borders/spacing */
.dataTable,
.fund-dt.dataTable {
  background: var(--color-white);
  margin: 0 !important;
  border: 0;
  /* Hide DataTables sorting icons (we use custom button) */
}

.dataTable thead th,
.dataTable thead td,
.fund-dt.dataTable thead th,
.fund-dt.dataTable thead td {
  border-bottom: 0;
}

.dataTable.no-footer,
.fund-dt.dataTable.no-footer {
  border-bottom: 0;
}

.dataTable thead>tr>th.sorting::before,
.dataTable thead>tr>th.sorting::after,
.dataTable thead>tr>th.sorting_asc::before,
.dataTable thead>tr>th.sorting_asc::after,
.dataTable thead>tr>th.sorting_desc::before,
.dataTable thead>tr>th.sorting_desc::after,
.fund-dt.dataTable thead>tr>th.sorting::before,
.fund-dt.dataTable thead>tr>th.sorting::after,
.fund-dt.dataTable thead>tr>th.sorting_asc::before,
.fund-dt.dataTable thead>tr>th.sorting_asc::after,
.fund-dt.dataTable thead>tr>th.sorting_desc::before,
.fund-dt.dataTable thead>tr>th.sorting_desc::after {
  /* display: none !important; */
}

/* Match existing search table design */
.table {
  /* Column sizing similar to existing grid (Search page only) */
  /* Column sizing (Donation detail page) */
}

.table .fund-dt {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.table .fund-dt thead tr {
  background: var(--color-secondary);
}

.table .fund-dt thead th {
  height: 40px;
  padding: 0;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
}

.table .fund-dt thead th .th-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
}

.table .fund-dt thead th .sort {
  padding: 0;
}

.table .fund-dt thead th.cell--amount .th-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
}

.table .fund-dt thead th.cell--amount .sort {
  padding: 0;
}

.table .fund-dt thead th.cell--num .th-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
}

.table .fund-dt thead th.cell--num .sort {
  padding: 0;
}

.table .fund-dt thead th.sorting {
  padding: 0;
}

.table .fund-dt tbody tr {
  border-bottom: 1px solid var(--color-black-10);
  cursor: pointer;
}

.table .fund-dt tbody tr:last-child {
  border-bottom: 0;
}

.table .fund-dt tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

.table .fund-dt tbody td {
  height: 50px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-secondary);
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table .fund-dt tbody td.cell--bold {
  font-weight: 700;
}

.table .fund-dt tbody td.cell--num {
  color: var(--color-black-60);
}

.table .fund-dt tbody td.cell--amount {
  text-align: right;
  font-weight: 500;
  color: var(--color-primary);
}

.table #searchTable thead th:nth-child(1),
.table #searchTable tbody td:nth-child(1) {
  width: 39px;
}

.table #searchTable thead th:nth-child(2),
.table #searchTable tbody td:nth-child(2) {
  width: 43px;
}

.table #searchTable thead th:nth-child(4),
.table #searchTable tbody td:nth-child(4) {
  width: 90px;
}

.table #searchTable thead th:nth-child(5),
.table #searchTable tbody td:nth-child(5) {
  width: 110px;
}

.table #honorTable thead th:nth-child(1),
.table #honorTable tbody td:nth-child(1) {
  width: 42px;
}

.table #honorTable thead th:nth-child(3),
.table #honorTable tbody td:nth-child(3) {
  width: 100px;
}

.table #honorTable thead th:nth-child(4),
.table #honorTable tbody td:nth-child(4) {
  width: 70px;
}

.table #donationTable {
  /* amount column takes the remaining space */
}

.table #donationTable thead th:nth-child(1),
.table #donationTable tbody td:nth-child(1) {
  width: 42px;
}

.table #donationTable thead th:nth-child(2),
.table #donationTable tbody td:nth-child(2) {
  width: 96px;
}

.table #donationTable thead th:nth-child(3),
.table #donationTable tbody td:nth-child(3) {
  width: 40px;
}

.table #donationTable thead th:nth-child(4),
.table #donationTable tbody td:nth-child(4) {
  width: 40px;
}

.table #fundingStatsTable {
  /* amount column takes the remaining space */
}

.table #fundingStatsTable thead th:nth-child(1),
.table #fundingStatsTable tbody td:nth-child(1) {
  width: 60px;
}

.table #fundingStatsTable thead th:nth-child(2),
.table #fundingStatsTable tbody td:nth-child(2) {
  width: 60px;
}

.table #fundingStatsTable thead th:nth-child(3),
.table #fundingStatsTable tbody td:nth-child(3) {
  width: 60px;
}

/* ==========================================================================
   5. Honor Component Styles
   ========================================================================== */
.honor-content-list .active .title {
  color: var(--color-blue);
}

.honor-content-list .active .icon {
  border-radius: 100%;
  color: var(--color-blank);
  border: 1px solid var(--color-secondary);
}

.honor-content-list .active .icon.text {
  font-weight: 500;
  font-size: 13px;
  border: none;
  color: var(--color-secondary);
}

.honor-content-list .icon {
  min-width: 12px;
  max-height: 12px;
}

/* ==========================================================================
   6. Global Elements & Misc
   ========================================================================== */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

footer .navi-box a .footer_icon {
  width: 28px;
  height: 28px;
}

footer .navi-box a .footer_icon.m_honor {
  background-image: url("/assets/img/honorItems_icon.svg");
}

footer .navi-box.--active a .footer_icon.m_honor {
  background-image: url("/assets/img/honorItems_icon-active.svg");
}

footer .navi-box a .footer_icon.m_stats {
  background-image: url("/assets/img/fundraisingStats_icon.svg");
}

footer .navi-box.--active a .footer_icon.m_stats {
  background-image: url("/assets/img/fundraisingStats_icon-active.svg");
}

footer .navi-box a .footer_icon.m_home {
  background-image: url("/assets/img/home_icon.svg");
}

footer .navi-box.--active a .footer_icon.m_home {
  background-image: url("/assets/img/home_icon-active.svg");
}

footer .navi-box a .footer_icon.m_search {
  background-image: url("/assets/img/search_icon.svg");
}

footer .navi-box.--active a .footer_icon.m_search {
  background-image: url("/assets/img/search_icon-active.svg");
}

footer .navi-box a .footer_icon.m_lastview {
  background-image: url("/assets/img/recentViews_icon.svg");
}

footer .navi-box.--active a .footer_icon.m_lastview {
  background-image: url("/assets/img/recentViews_icon-active.svg");
}

footer .navi-box a .footer_icon_title {
  color: var(--color-black-100);
}

footer .navi-box.--active a .footer_icon_title {
  color: var(--color-primary);
}

.popup {
  position: fixed;
  top: 0;
  z-index: 200;
}

.side-menu {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 200;
}

.scroll_lock {
  overflow: hidden;
}

/*# sourceMappingURL=common.css.map */