:root {
  --color01: rgb(166, 25, 85);
  --color02: rgb(214, 59, 126);
  --color03: #fcf3f8;
  --color01-01: rgba(166, 25, 86, 0.288);
}

:root.gold {
  --color01: #d9ba66;
  --color02: #ebcb71;
  --color03: #fff8ef;
  --color01-01: rgba(218, 186, 101, 0.288);
}

:root.org {
  --color01: #f6a700;
  --color02: #ffc43f;
  --color03: #fffcef;
  --color01-01: rgb(246, 167, 0, 0.288);
}
:root.svr {
  --color01: #c5c6ca;
  --color02: rgb(197, 198, 202);
  --color03: #fff;
  --color01-01: rgba(197, 198, 202, 0.5);
}
@font-face {
  font-family: "NotoSansKR";
  font-weight: 100;
  src:
    url("../fonts/NotoSansKR/NotoSansKR-Thin.ttf") format("truetype"),
    url("../fonts/NotoSansKR/NotoSansKR-Thin.woff") format("woff");
}
@font-face {
  font-family: "NotoSansKR";
  font-weight: 200;
  src:
    url("../fonts/NotoSansKR/NotoSansKR-ExtraLight.ttf") format("truetype"),
    url("../fonts/NotoSansKR/NotoSansKR-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "NotoSansKR";
  font-weight: 300;
  src:
    url("../fonts/NotoSansKR/NotoSansKR-Light.ttf") format("truetype"),
    url("../fonts/NotoSansKR/NotoSansKR-Light.woff") format("woff");
}
@font-face {
  font-family: "NotoSansKR";
  font-weight: 400;
  src:
    url("../fonts/NotoSansKR/NotoSansKR-Regular.ttf") format("truetype"),
    url("../fonts/NotoSansKR/NotoSansKR-Regular.woff") format("woff");
}
@font-face {
  font-family: "NotoSansKR";
  font-weight: 500;
  src:
    url("../fonts/NotoSansKR/NotoSansKR-Medium.ttf") format("truetype"),
    url("../fonts/NotoSansKR/NotoSansKR-Medium.woff") format("woff");
}
@font-face {
  font-family: "NotoSansKR";
  font-weight: 600;
  src:
    url("../fonts/NotoSansKR/NotoSansKR-SemiBold.ttf") format("truetype"),
    url("../fonts/NotoSansKR/NotoSansKR-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "NotoSansKR";
  font-weight: 700;
  src:
    url("../fonts/NotoSansKR/NotoSansKR-Bold.ttf") format("truetype"),
    url("../fonts/NotoSansKR/NotoSansKR-Bold.woff") format("woff");
}
@font-face {
  font-family: "NotoSansKR";
  font-weight: 800;
  src:
    url("../fonts/NotoSansKR/NotoSansKR-ExtraBold.ttf") format("truetype"),
    url("../fonts/NotoSansKR/NotoSansKR-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "NotoSansKR";
  font-weight: 900;
  src:
    url("../fonts/NotoSansKR/NotoSansKR-Black.ttf") format("truetype"),
    url("../fonts/NotoSansKR/NotoSansKR-Black.woff") format("woff");
}

@font-face {
  font-family: "Crimson Pro";
  font-weight: 700;
  src: url("../fonts/Crimson_Pro/static/CrimsonPro-Bold.ttf") format("truetype");
}
html {
  min-height: 100vh;
}
body {
  min-height: 100vh;
  font-family: "NotoSansKR";
}
*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "NotoSansKR";
}
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
em,
img,
strong,
b,
i,
dl,
dt,
dd,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
thead,
tr,
th,
td,
header,
section {
  padding: 0;
  margin: 0;
  border: 0;
}

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
em,
img,
strong,
b,
i,
dl,
dt,
dd,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
thead,
tr,
th,
td,
header,
section {
  margin: 0;
}
a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
ul,
li {
  list-style: none;
}
header,
section {
  display: block;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
img {
  vertical-align: top;
}
button img {
  vertical-align: baseline;
}
h1,
h2,
h3,
h4,
h5,
h6,
span,
p,
div {
  word-break: keep-all;
}

button {
  cursor: pointer;
  background: transparent;
  border: 0;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
}
label:has(input[type="checkbox"]),
label:has(input[type="radio"]) {
  display: flex;
  column-gap: 4px;
  align-items: center;
  justify-content: center;
}
input[type="checkbox"],
input[type="radio"] {
  width: 14px;
  height: 14px;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  accent-color: var(--color02);
  border: 1px solid #dddddd66;
}
.lab-hidden {
  position: absolute !important;
  width: 0;
  height: 0;
  overflow: hidden;
  line-height: 0;
  text-indent: -9999px;
}
.color-black {
  color: #000 !important;
}
.color-main {
  color: var(--color01) !important;
}
.color-red {
  color: #db0000;
}
.color-gray {
  color: #666;
}
.fw-black {
  font-weight: 900 !important;
}
html {
  font-size: 14px;
}

header,
main {
  width: 100%;
}

main > section {
  max-width: 1516px;
  margin: 0 auto;
}

main > section {
  padding: 40px 0px;
}

a:hover,
a:visited {
  color: inherit;
  text-decoration: underline;
}
/* input basic css */
.inp-basic {
  display: block;
  width: 100%;
  padding: 0 10px;
  font-size: 1.6429rem;
  font-size: 1rem;
  line-height: 2rem;
  /* color: #333; */
  /* 2025.08.26 */
  background-color: transparent;
  border: solid 1px #dddddd66;
  border-radius: 5px;
}
/* textarea basic css */
.txtarea-basic {
  display: block;
  width: 100%;
  height: 60px;
  overflow: overlay;
  font-weight: 400;
  line-height: 1.2;
  word-break: break-all;
  white-space: pre-line;
  resize: none;
  outline: 0;
  border: 1px solid #dddddd66;
  border-radius: 5px;
}
/* select basic css */
.sel-basic {
  width: auto;
  max-width: 200px;
  height: 1.7857rem;
  padding: 0 2.143rem 0 0.429rem;
  font-size: 1rem;
  font-weight: 400;
  font-weight: 500;
  line-height: 1.5714rem;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgb(255 255 255 / 30%);
  background-image: url(../images/icon/icon_select_arrow-line.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) 54%;
  background-size: 0.714rem 0.429rem;
  border: solid 1px #dddddd66;
  border-radius: 5px;
}
.sel-basic::-ms-expand {
  display: none;
}
.sel-basic + .tbl {
  margin-top: 10px;
}
.fw-m {
  font-weight: 500;
}
.btn {
  min-width: 65px;
  padding: 0px 8px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5714rem;
  color: inherit;
  word-break: keep-all;
  border-radius: 13.5px;
}
.btn:hover {
  color: #fff;
}
td .btn {
  min-width: 60px;
}
.btn-main {
  color: #fff;
  background-color: var(--color01);
}
.btn-col02 {
  color: #fff;
  background-color: var(--color02);
}
.btn-hpink {
  color: #fff;
  background-color: rgb(166, 25, 85);
}
.btn-pink {
  color: #fff;
  background-color: rgb(214, 59, 126);
}
.btn-dgray {
  color: #fff;
  background-color: #666666;
}
.btn-gray {
  color: #fff;
  background-color: #b0b0a8;
}
.btn-gold {
  color: #fff;
  background-color: #f4b73f;
}
.btn-w {
  color: #333;
  background-color: #fff;
  border: 1px solid #dddddd66;
}
.btn-w:hover {
  color: #333;
}
.btn-blue {
  color: #fff;
  background-color: #2b15b3;
}
.btn-sm {
  min-width: 45px;
  padding: 0px 4px;
  line-height: 24px !important;
  border-radius: 10px;
}
.btn-md {
  min-width: 80px;
  padding: 0px 16px;
  line-height: 2.2857rem;
  border-radius: 20px;
}
span.btn {
  cursor: default !important;
}

.tbl {
  min-width: 100%;
  word-break: break-word;
  table-layout: fixed;
}
.widget__main .tbl {
  position: sticky;
  left: 0;
}
.dv-tblwrap {
  position: relative;
  max-height: 40vh;
  overflow-y: auto;
  border-top: 1px solid #dddddd66;
}
.tbl caption {
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-indent: 9999;
}
.tbl thead {
  color: #fff;
  background-color: #66665c;
  border: 1px solid #dddddd66;
  border-width: 1px 0px;
}
.dv-tblwrap .tbl thead {
  border-top: 0;
}
.tbl thead th {
  padding: 0.46rem 0;
  font-size: 1rem;
  white-space: nowrap;
}
.tbl tbody tr {
  border-bottom: 1px solid #dddddd66;
}
.tbl tbody td {
  font-size: 1rem;
  line-height: 1.5;
  white-space: nowrap;
}
.tbl tbody td a {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tbl tbody th {
  padding: 0px 2px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  background-color: #66665c;
}
.tbl th,
.tbl td {
  text-align: center;
}
/* 2025.10.20 */
.tbl td {
  max-width: 235px;
  padding: 0.46rem 6px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tbl td:has(.btn) {
  padding: 0.286rem 8px;
}
.tbl td > div {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 2025.10.23 */
.tbl td > button.p-0 {
  width: 14px;
  height: 14px;
  margin-left: 4px;
}
.tbl tr > *.show {
  max-width: unset;
  overflow: visible;
  text-overflow: unset;
}
/* error페이지 */
#error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}
#error {
  margin-top: -50px;
}
#error h2 {
  z-index: -1;
  font-size: 21.4286rem;
  font-weight: 700;
  line-height: 1;
  color: #eee;
  letter-spacing: -0.025em;
}
#error p {
  font-size: 1.7143rem;
  font-weight: 500;
}
#error button {
  padding: 0 24px;
  margin-top: 10px;
  font-size: 1.4286rem;
  line-height: 3rem;
  border-radius: 42px;
}
*:has(> [class*="float"]) {
  clear: both;
}
.cus-mw-100 {
  max-width: 100px !important;
}
.cus-mw-150 {
  max-width: 150px !important;
}
.cus-mw-300 {
  max-width: 300px !important;
}
.cus-mw-400 {
  max-width: 400px !important;
}
.cus-mw-500 {
  max-width: 500px !important;
}
