@charset "utf-8";
@import url(/eng/css/xeicon.css);
@import url(/eng/css/common.css);
@import url(/eng/css/header.css);
@import url(/eng/css/footer.css);
@import url(/eng/css/nav.css);
@import url(/eng/css/components.css);
@import url(/eng/css/form/form.css);

:root {
  --primary: #28B8AF;
  --secondary: #202b46;
  --primary-hover: #099990;
  --secondary-hover: #080e1c;
  --bg-light: #FCFCFC;
  --bg-hover: #F4F6F6;
  --border-color: #E3EAEC;
  --form-rd1: .4rem;
}

/* Skip To Content */
#skipNav {
  position: absolute;
  left: 0;
  top: -1000px;
  width: 100%;
  height: 0px;
  z-index: 1000;
  line-height: 0px;
  font-size: 0px
}

#skipNav a {
  display: block;
  text-align: center;
  width: 100%;
  line-height: 0px;
  font-size: 0px
}

#skipNav a:focus,
#skipNav a:hover,
#skipNav a:active {
  position: absolute;
  left: 0px;
  top: 1000px;
  padding: 8px 0;
  display: block;
  box-sizing: border-box;
  height: 36px;
  background: #20262c;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  color: #fff
}

html {
  font-size: 10px;
}

body {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  font-family: Pretendard, sans-serif;
  background: #f9f9f9;
  word-break: keep-all;
}

body.scroll-hdn {
  overflow-y: hidden;
}

a {
  color: inherit;
}

a:hover {
  color: var(--primary);
}

body.modal {
  overflow: hidden;
}

body.modal .modalPanel {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .8);
}

.container {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}


@media(max-width:1280px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media(max-width:1180px) {
  html {
    font-size: 8px;
  }

  body {
    font-size: 15px;
  }
}

@media (max-width:780px) {
  body {
    font-size: 14px;
  }

  .header .top .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ##################### basic style ############################### */
/* box */
.round-box {
  border-radius: 2rem;
  border: solid 1px var(--border-color);
  padding: 2rem;
}

.round-box.gray {
  background-color: var(--bg-light);
}

.scroll-box {
  height: 400px;
  overflow-y: auto;
  border: solid 1px #dcdcdc;
}

.scroll-box::-webkit-scrollbar {
  width: 3px;
}

.scroll-box::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 5px;
}

.scroll-box::-webkit-scrollbar-track {
  background-color: #dcdcdc;
  border-radius: 10px;
  box-shadow: inset 0px 0px 5px white;
}

/* list */
.b-list {
  display: flex;
  flex-direction: column;
}

.b-list ul {
  padding-left: 2rem;
}

.b-list.disc>li {
  display: flex;
  padding-left: 10px;
  position: relative;
}

.b-list.disc>li::before {
  content: '';
  display: inline-flex;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #D9E1E3;
  margin-right: .5rem;
  position: absolute;
  left: 0;
  top: .5em;
}

.b-list.disc.point>li::before {
  background-color: var(--primary);
}

.b-list.decimal {
  list-style-type: decimal;
}

/* text */
.txt-sm {
  font-size: .9em;
}

.txt-gray-10 {
  color: #fff !important;
}

.txt-gray-5 {
  color: #404040 !important;
}

.txt-gray-0 {
  color: #000 !important;
}

.txt-primay {
  color: var(--primary) !important;
}

.txt-red {
  color: #CD0404 !important;
}

.txt-left {
  text-align: left !important;
}

.txt-center {
  text-align: center !important;
}

.txt-right {
  text-align: right !important;
}

/* font-weight */
.fw700 {
  font-weight: 700 !important;
}

.fw500 {
  font-weight: 500 !important;
}

.fw400 {
  font-weight: 400 !important;
}

/* grid */
.grid {
  display: grid;
  row-gap: 1rem;
  column-gap: 1rem;
}

.grid.col2 {
  grid-template-columns: repeat(2, 50%);
}

.grid.col3-auto {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}

.grid.autoFit {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

@media (max-width:780px) {
  .grid.mbl-col1 {
    grid-template-columns: repeat(1, 100%) !important;
  }
}

/* label */
.label {
  font-size: 1.13em;
  font-weight: 700;
}

/* bullet */
.bullet {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.bullet::before {
  content: '';
  display: inline-flex;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #808080;
  margin-right: .5rem;
}

/* flex */
.flex {
  display: flex !important;
}

.flex.wrap {
  flex-wrap: wrap !important;
}

.flex.column {
  flex-direction: column !important;
}

.flex.align-center {
  align-items: center !important;
}

.flex.justify-center {
  justify-content: center !important;
}

.flex.justify-between {
  justify-content: space-between !important;
}

.flex.center {
  align-items: center !important;
  justify-content: center !important;
}

.flex.justify-end {
  justify-content: flex-end !important;
}

.flex.align-end {
  align-items: flex-end !important;
}

.gap1 {
  gap: .5rem !important;
}

.gap2 {
  gap: 1rem !important;
}

.gap3 {
  gap: 1.5rem !important;
}

.gap4 {
  gap: 2rem !important;
}

.gap5 {
  gap: 2.5rem !important;
}

.gap6 {
  gap: 3rem !important;
}

.gap7 {
  gap: 3.5rem !important;
}

.flex-gr-1 {
  flex-grow: 1 !important;
}

.flex-sh-0 {
  flex-shrink: 0 !important;
}


@media (max-width:780px) {
  .flex.mbl-column {
    flex-direction: column !important;
  }
}

/* padding */
.pa1 {
  padding: 1rem !important;
}

.pl1 {
  padding-left: 1rem !important;
}

.pr1 {
  padding-right: 1rem !important;
}

.pt1 {
  padding-top: 1rem !important;
}

.pb1 {
  padding-bottom: 1rem !important;
}

.pa2 {
  padding: 2rem !important;
}

.pl2 {
  padding-left: 2rem !important;
}

.pr2 {
  padding-right: 2rem !important;
}

.pt2 {
  padding-top: 2rem !important;
}

.pb2 {
  padding-bottom: 2rem !important;
}

.pb3 {
  padding-bottom: 3rem !important;
}

/* margin */
.ma1 {
  margin: 1rem !important;
}

.ml1 {
  margin-left: 1rem !important;
}

.mr1 {
  margin-right: 1rem !important;
}

.mt1 {
  margin-top: 1rem !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb1 {
  margin-bottom: 1rem !important;
}

.ma2 {
  margin: 2rem !important;
}

.ml2 {
  margin-left: 2rem !important;
}

.mr2 {
  margin-right: 2rem !important;
}

.mt2 {
  margin-top: 2rem !important;
}

.mb2 {
  margin-bottom: 2rem !important;
}

.mt3 {
  margin-top: 3rem !important;
}

/* button */
:root {
  --btn-height: 4.5rem;
  --btn-small-height: 3.5rem;
}

.btn {
  background: var(--primary);
  color: #fff;
  padding: 1em;
  border-radius: var(--form-rd1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  gap: 3px;
  height: 2.86em;
  transition: background .3s ease 0s;
}

.btn:hover {
  background: var(--primary-hover);
  color: #fff;
}

.btn.secondary {
  background-color: var(--secondary);
}

.btn.secondary:hover {
  background-color: var(--secondary-hover);
}

.btn.white {
  background-color: #fff;
  color: #333;
  border: solid 1px #ededed;
}

.btn.white:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn.small {
  padding: 1em;
  font-size: .9em;
  height: var(--btn-small-height);
}

.txtBtn {
  display: inline-flex;
  padding: .3em .5em;
}

.txtBtn:hover {
  color: #000;
  font-weight: 700;
}

.txtBtn.border {
  border: solid 1px #dcdcdc;
  border-radius: .4rem;
}

.txtBtn.border:hover {
  background-color: #fafafa;
}

.txtBtn.sm {
  font-size: .9em;
}

.txtBtn.xsm {
  font-size: .8em;
}

/* border */
.bord-bottom-dash {
  border-bottom: dashed 1px var(--border-color);
}


/* table */
.table {
  width: 100%;
  border-top: solid 2px var(--primary);
}

.table.fixed {
  table-layout: fixed;
}

.table th {
  background-color: #FCFCFC;
  font-weight: 700;
}

.table th,
.table td {
  border-bottom: solid 1px var(--border-color);
  border-left: solid 1px var(--border-color);
  border-right: solid 1px var(--border-color);
  padding: .7em;
  align-items: middle;
}

.table.center th,
.table.center td {
  text-align: center;
}

.table th:first-child,
.table th:last-child,
.table td:first-child,
.table td:last-child {
  border-left: none;
  border-right: none;
}

.table.bord td,
.table.bord th {
  border-left: solid 1px var(--border-color);
  border-right: solid 1px var(--border-color);
  border-bottom: solid 1px var(--border-color);
}

@media (max-width:780px) {
  :root {
    --btn-height: 7.2rem;
  }
}


/* nation icon */
.nation {
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}

.n-icon {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}

.n-icon.korea,
.n-icon.C02 {
  background-image: url(/kor/img/nation/South\ Korea.svg);
}

.n-icon.philippines,
.n-icon.C03 {
  background-image: url(/kor/img/nation/Philippines.svg);
}

.n-icon.thailand,
.n-icon.C04 {
  background-image: url(/kor/img/nation/Thailand.svg);
}

.n-icon.china,
.n-icon.C05 {
  background-image: url(/kor/img/nation/China.svg);
}

.n-icon.australia,
.n-icon.C06 {
  background-image: url(/kor/img/nation/Australia.svg);
}

.n-icon.newzealand,
.n-icon.C07 {
  background-image: url(/kor/img/nation/New\ Zealand.svg);
}

.n-icon.singapore,
.n-icon.C08 {
  background-image: url(/kor/img/nation/Singapore.svg);
}

.n-icon.usa,
.n-icon.C09 {
  background-image: url(/kor/img/nation/USA.svg);
}

.n-icon.taiwan,
.n-icon.C10 {
  background-image: url(/kor/img/nation/Taiwan.svg);
}

.n-icon.vietnam,
.n-icon.C11 {
  background-image: url(/kor/img/nation/Vietnam.svg);
}

.n-icon.C12,
.n-icon.japan {
  background-image: url(/kor/img/nation/Japan.svg);
}

.n-icon.C13,
.n-icon.russia {
  background-image: url(/kor/img/nation/Russia.svg);
}

.n-icon.C14,
.n-icon.canada {
  background-image: url(/kor/img/nation/Canada.svg);
}

.n-icon.C15,
.n-icon.indonesia {
  background-image: url(/kor/img/nation/Indonesia.svg);
}

.n-icon.C16,
.n-icon.netherlands {
  background-image: url(/kor/img/nation/Netherlands.svg);
}

.n-icon.C17,
.n-icon.hongkong {
  background-image: url(/kor/img/nation/Hongkong.svg);
}

.n-icon.C18,
.n-icon.uk {
  background-image: url(/kor/img/nation/UK.svg);
}

.n-icon.C19,
.n-icon.cambodia {
  background-image: url(/kor/img/nation/Cambodia.svg);
}

.n-icon.C20,
.n-icon.germany {
  background-image: url(/kor/img/nation/Germany.svg);
}

.n-icon.C21,
.n-icon.malaysia {
  background-image: url(/kor/img/nation/Malaysia.svg);
}

.n-icon.C22,
.n-icon.india {
  background-image: url(/kor/img/nation/India.svg);
}

.n-icon.C23,
.n-icon.mongolia {
  background-image: url(/kor/img/nation/Mongolia.svg);
}

.n-icon.C24,
.n-icon.france {
  background-image: url(/kor/img/nation/France.svg);
}

.n-icon.C25,
.n-icon.uae {
  background-image: url(/kor/img/nation/UAE.svg);
}

.n-icon.C26,
.n-icon.italy {
  background-image: url(/kor/img/nation/Italy.svg);
}

.n-icon.C27,
.n-icon.spain {
  background-image: url(/kor/img/nation/Spain.svg);
}

.n-icon.C28,
.n-icon.mexico {
  background-image: url(/kor/img/nation/Mexico.svg);
}

.n-icon.C29,
.n-icon.israel {
  background-image: url(/kor/img/nation/Israel.svg);
}

.n-icon.C30,
.n-icon.eu {
  background-image: url(/kor/img/nation/EU.svg);
}


.w-break {
  word-break: break-all !important;
}

.scroll-box-row {
  overflow-x: auto;
  border: solid 1px var(--border-color);
}

.scroll-box-row.bord_none {
  border: none
}

.scroll-box-row>* {
  min-width: 1000px;
}

.scroll-box-row::-webkit-scrollbar {
  height: 5px;
  cursor: pointer;
}

.scroll-box-row::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 5px;
}

.scroll-box-row::-webkit-scrollbar-track {
  background-color: #dcdcdc;
  border-radius: 5px;
  box-shadow: inset 0px 0px 5px white;
}


/* popup */
.dialog {
  display: none;
}

.dialog.open {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
}

.dialog.open>* {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 20px;
  z-index: 10;
  max-width: 750px;
  width: calc(100% - 40px);
}

.dialog.open::before {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
}

.dialog .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
}

.dialog .head {
  background: var(--primary);
  color: #fff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  border-radius: 20px 20px 0 0;
  min-height: 45px;
  align-items: center;
  font-weight: 500;
  font-size: 1.1em;
}

.dialog .body {
  padding: 40px;
  overflow-y: auto;
  flex-grow: 1;
}

.dialog .body .comment {
  font-size: 1.2em;
  font-weight: 700;
  text-align: center;
}

.dialog .foot {
  border-top: solid 1px #dcdcdc;
  padding: 20px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 780px) {
  .dialog .body {
    padding: 20px;
  }

  .dialog .foot {
    padding: 10px;
    display: flex;
  }

  .dialog .foot button {
    flex-grow: 1;
  }
}

/* .topBtn */
.topBtn {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 4em;
  height: 4em;
  background-color: #fafafa;
  border: solid 1px #dcdcdc;
  z-index: 10;
  display: none;
  opacity: .5;
  font-weight: 700;
  color: #777;
}

.topBtn:hover {
  opacity: 1;
}

.topBtn.active {
  display: flex;
}

@media (max-width:780px) {
  .topBtn {
    opacity: 1;
    width: 3.5em;
    height: 3.5em;
  }
}

.stickyTable {
  height: calc(100vh - 410px);
  overflow-y: auto;
}

.stickyTable table thead {
  position: sticky;
  top: 0;
  border-bottom: solid 1px #ddd;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, .05);

}

.stickyTable {
  border-top: solid 2px var(--primary) !important;
}

.stickyTable::-webkit-scrollbar {
  width: 3px;
}

.stickyTable::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.stickyTable::-webkit-scrollbar-track {
  background-color: #dcdcdc;
  border-radius: 30px;
  box-shadow: inset 0px 0px 3px white;
}

.stickyTable .table {
  border-top: none;
}

@media (max-width:1200px) {
  .stickyTable {
    height: calc(100vh - 318px);
  }
}

/* width */
.w100 {
  width: 100% !important;
}

@media (max-width: 780px) {
  .m-w100 {
    width: 100% !important;
  }
}

.bord-box {
  border: solid 1px #dcdcdc;
}

.bord-box.gray {
  background-color: #fafafa;
}

.bord-box .title {
  font-size: 1.1em;
  font-weight: 500;
  padding: 1rem;
  border-bottom: solid 1px #dcdcdc;
  background-color: #fafafa;
}

.bord-box img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a.underline {
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

a.underline::after {
  content: "\e980";
  font-family: 'xeicon';
  color: #F44336;
  font-weight: 300 !important;
  margin-left: 1px;
  margin-right: 3px;
  display: inline-block;
}

/*  추가 */
.bord-top {
  border-top: solid 1px var(--border-color) !important;
}

*[class*=bord].dashed {
  border-style: dashed !important;
}

.bord-box.whBlue {
  background-color: #f8fdff !important;
  border: solid 1px #cfe5ed;
}

.txt-lg-1 {
  font-size: 1.1em;
}

.txt-lg-2 {
  font-size: 1.3em;
}

.bord-none {
  border: none !important;
}

.w800-box {
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 860px) {
  .w800-box {
    max-width: none !important;
  }
}

.table th {
  position: relative;
}

.require {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary);
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  font-size: 8px;
  line-height: 0;
  color: #fff;
}

.require::before {
  content: "\e928";
  font-family: "xeicon";
}

.totalBox label {
  font-weight: 700;
  color: #058179;
}

.totalBox input[type="checkbox"] {
  background-color: #28b8af;
  border-color: #058179;
  color: #fff;
}

.totalBox input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.bg-gray{
  background-color: #fafafa;
}