@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
@font-face {
  font-family: "BM DOHYEON";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/BMDOHYEON.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans KR", sans-serif;
}
body {
  min-width: 1200px;
  overflow: scroll;
}

/* Brand Logo */
.logo {
  display: inline-flex;
  align-items: center;
  height: 32px;
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: #0070d8;
}
.logo::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  border-radius: 4px;
  background-image: url("/img/shop_white_icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  /* background-color: #0070d8; */
}
.logo::after {
  content: "";
  display: inline-block;
  width: 90px;
  height: 25px;
  margin-top: -1px;
  /* background-image: url("/img/logo_title.svg"); */
  background-image: url("/img/logo_title2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: unset;
}
.logo.white {
  color: #fff;
}
.logo.white::before {
  background-image: url("/img/shop_black_icon.svg");
  background-color: #fff;
}
.logo.white::after {
  background-image: url("/img/logo_title_white.svg");
}

/* header */
.header {
  position: relative;
  display: block;
  width: 100%;
  height: 72px;
  border-bottom: 1px solid #e4e4e4;
  box-sizing: border-box;
  background-color: #fff;
  z-index: 1;
}
.header-inner-wrap {
  height: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}
.header-inner {
  display: flex;
  height: 100%;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.header-left {
  float: left;
}
.header-right {
  float: right;
}
.header-left > div,
.header-right > div {
  display: inline-flex;
  align-items: center;
}
.header-right .button-wrap .button:last-child {
  margin-right: 0;
}
.header-info {
  margin-right: 14px;
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #000b33;
}
.header-info p {
  display: inline-block;
  margin: 0 4px;
  font-weight: 700;
}

/* content */
.content {
  display: block;
  width: 100%;
  min-height: calc(100vh - 255px);
  background-color: #fff;
}
.content .context-wrap {
  display: block;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}
.context {
  position: relative;
}
.context .inner-wrap {
  width: 100%;
  margin: auto;
  padding: 60px 0 80px;
}
.context .inner-wrap.login,
.context .inner-wrap.regist,
.context .inner-wrap.member,
.context .inner-wrap.payment {
  max-width: 500px;
}

/* tab */
.tab-wrap .tab-menu {
  position: relative;
  display: flex;
}
.tab-wrap .tab-menu .tab-item {
  width: 100%;
  height: 60px;
}
.tab-wrap .tab-menu .tab-item .tab-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 12px 0;
  font-style: normal;
  font-size: 20px;
  font-weight: 500;
  line-height: 29px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  color: #adadad;
  cursor: pointer;
}
.tab-wrap .tab-menu .tab-item span.tab-link {
  cursor: default;
}
.tab-wrap .tab-menu .tab-item.active .tab-link {
  border: 1px solid #000b33;
  background-color: #000b33;
  color: #fff;
}

/* pagination */
.pagination-box {
  margin-top: 43px;
  margin-bottom: 60px;
}
.pagination-box.hidden {
  display: none;
}
.pagination-box .pagination {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.pagination-box .pagination .page {
  margin-left: 8px;
}
.pagination-box .pagination .page:first-child {
  margin-left: 0;
}
.pagination-box .pagination .page .page-button {
  width: 32px;
  height: 32px;
  border-width: 0;
  font-family: "Noto Sans KR", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  background-color: #f4f4f4;
  color: #b7b7b7;
  cursor: pointer;
}
.pagination-box .pagination .page.prev .page-button::before,
.pagination-box .pagination .page.next .page-button::before {
  font-size: 14px;
  color: #000b33;
}
.pagination-box .pagination .page.prev .page-button::before {
  content: "◀";
}
.pagination-box .pagination .page.next .page-button::before {
  content: "▶";
}
.pagination-box .pagination .page.active .page-button {
  color: #000b33;
}

/* footer */
.footer {
  display: block;
  padding: 40px 0 55px;
  background-color: #000b33;
}
.footer-inner-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: justify;
}
.footer-context > div {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0;
}
.footer-context > div:first-child {
  margin: 0 0 32px;
}
.footer-context > div > p {
  display: inline-block;
  height: 24px;
  margin: 0;
  padding: 0;
  font-style: normal;
  font-size: 16px;
  font-weight: 200; /* 400이 샘플의 굵기 보다 굵어서 200으로 사용 */
  line-height: 23px;
  text-align: initial;
  color: #fff;
}
.footer-context > div > p::before {
  content: "";
  position: relative;
  top: 1px;
  margin: 0 12px;
  border-left: 1px solid #fff;
}
.footer-context > div > p:first-child::before {
  content: none;
}

/* header fixed */
body {
  height: calc(100vh - 72px); /* 100vh == total 100% | 100vh - header-height */
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.content {
  margin-top: 72px;
}

/* Components CSS */

/* 전체 스크롤 CSS */
/* Designing for scroll-bar */
/* ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
} */
/* Track */
/* ::-webkit-scrollbar-track {
    background: #e9e9e9;
    border-radius: 6px;
} */
/* Handle */
/* ::-webkit-scrollbar-thumb {
    background: #1d6bca;
    border-radius: 6px;
} */
/* Handle on hover */
/* ::-webkit-scrollbar-thumb:hover {
    background: #3b88e4;
} */

/* datepicker */
/* .datepicker-input {
    cursor: pointer;
} */
.datepicker-picker {
  font-family: "Noto Sans KR", sans-serif;
}
/* 상단 월/년도 선택 패널 */
.datepicker-header {
  border-radius: 4px 4px 0 0;
}
.datepicker-header .datepicker-controls {
  align-items: center;
  padding: 2px;
  border-bottom: 1px solid #e4e4e4;
}
/* 월/년도 선택 패널 좌우버튼 */
.datepicker-header .datepicker-controls .button {
  color: #000b33;
}
/* .datepicker-header .datepicker-controls .button:hover {} */
.datepicker-header .datepicker-controls .button.next-btn,
.datepicker-header .datepicker-controls .button.prev-btn {
  font-size: 14px;
  color: #8d8d8d;
}
/* 날짜 선택화면 - 일자 cell 기본설정 */
.datepicker-picker span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 50%;
  color: #000b33;
}
/* 날짜 선택화면 - cell(미선택 :hover) */
.datepicker-cell:not(.disabled):hover {
  border: 1px solid #0070d8;
  background-color: #fff;
  box-sizing: border-box;
}
/* 날짜 선택화면 - cell(해당 월이 아닌 일자) */
.datepicker-cell.next:not(.disabled),
.datepicker-cell.prev:not(.disabled) {
  color: #bbb;
}
/* 날짜 선택화면 - cell(선택된 일자의 다른 년도) */
.datepicker-cell.focused:not(.selected) {
  border: none;
  background-color: #e8e8e8;
}
/* 날짜 선택화면 - cell(선택됨) */
.datepicker-cell.selected,
.datepicker-cell.selected:hover {
  background-color: #0070d8;
}
/* 월/년도 선택화면 - cell */
.datepicker-view.datepicker-grid .datepicker-cell {
  height: 4rem;
  line-height: 4rem;
}

/* remote */
.remote-group {
  position: fixed;
  bottom: 48px;
  left: calc(50% + (600px + 110px + 48px));
  /* 50% + (context-width/2 + remote-width/2 + remote-margin) */
  width: 217px;
  margin-bottom: 48px;
  transform: translateX(-50%); /* remote-box 중앙 정렬용 */
}
.remote-group .remote-box {
  display: flex;
  width: 217px;
  height: 82px;
  margin-top: 12px;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  box-sizing: border-box;

  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.remote-group .remote-box:first-child {
  margin-top: 0;
}
.remote-group .remote-box.cs {
  background-color: #fff;
}
.remote-group .remote-box.cs::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-right: 12px;
  border: 2px solid #69b71b;
  border-radius: 50%;
  background-image: url(/img/dial_icon.svg);
  background-repeat: no-repeat;
  background-size: 27px 27px;
  background-position: center;
  box-sizing: border-box;
}
.remote-group .remote-box.kakao {
  background-color: #fae100;
  cursor: pointer;
}
.remote-group .remote-box.kakao::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-right: 12px;
  /* border: 2px solid #69b71b; */
  border-radius: 50%;
  background-image: url(/img/kakaotalk_icon.svg);
  background-repeat: no-repeat;
  background-size: 50px 50px;
  background-position: center;
  box-sizing: border-box;
}
.remote-group .remote-box > span {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: center;
  text-align: left;
}
.remote-group .remote-box > span > p {
  flex-flow: nowrap;
}
.remote-group .remote-box > span > p:first-child {
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000b33;
}
.remote-group .remote-box > span > p + p {
  font-style: normal;
  font-size: 18px;
  letter-spacing: -0.2px;
  font-weight: 400;
  line-height: 26px;
  color: #000b33;
}
.remote-group .remote-box.kakao > span > p:first-child {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #3c1e1e;
}
.remote-group .remote-box.kakao > span > p + p {
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #3c1e1e;
}

/* 
context-width + (remote-width + remote-margin*2)*2
(중앙 정렬이기 때문에 양옆 여백까지 고려)
*/
@media screen and (max-width: 1826px) {
  .remote-group {
    left: unset;
    right: 48px;
    transform: unset;
  }
}

/* input common */
input,
select {
  height: 44px;
  padding: 12px 16px;
  font-family: "Noto Sans KR", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #fff;
  color: #000b33;
}
input.bg-input,
select.bg-input {
  border: none;
  border-radius: 0;
  background-color: unset;
}
select {
  /* select 화살표 설정 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("/img/down_arrow_icon.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-position-x: calc(100% - 18px);
}
input::placeholder {
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #848484;
}
/* input[type=number] */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* custom checkbox */
input[type="checkbox"] {
  position: absolute;
  visibility: hidden;
}
input[type="checkbox"] + .chk-body {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #e4e4e4;
  border-radius: 2px;
  box-sizing: border-box;
  background-color: #fff;
  cursor: pointer;

  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input[type="checkbox"] + .chk-body::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 1px;
  display: none;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(315deg);
}
input[type="checkbox"]:checked + .chk-body {
  border-color: #1d6bca;
  background-color: #1d6bca;
}
input[type="checkbox"]:checked + .chk-body::after {
  display: inline-block;
}

/* input option */
.input.full {
  width: 100%;
}
.input-box {
  display: flex;
  margin: 32px 0;
}
.input-box.right {
  text-align: right;
  justify-content: flex-end;
}
.input-box.required .input-label::after {
  content: "*";
  margin-left: 2px;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #ff7272;
}
.input-box > div {
  position: relative;
  width: 100%;
  text-align: left;
}
.input-box > span {
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: 100px;
  margin-left: 16px;
}
.input-box .input-label {
  display: inline-block;
  margin-bottom: 8px;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #000b33;
}
.input-box .input-warning {
  position: absolute;
  margin-top: 4px;
  font-style: normal;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  color: #ff7272;
}
.input-phone-group {
  display: flex;
  align-items: center;
}
.input-phone-group > .input-select,
.input-phone-group > .input-number {
  width: 100%;
  max-width: 112px;
}
.input-phone-group > .input-select {
  margin-right: 10px;
}
.input-phone-group > .input-number {
  margin: 0 10px 0 9px;
}
.input-phone-group > .input-number:last-child {
  margin-right: 0;
}
.input-button-wrap {
  display: flex;
  margin-top: 60px;
}
.input-button-wrap > .button:first-child {
  margin-right: 12px;
}
.input-button-wrap > .button:last-child {
  margin-left: 12px;
}
.input-button-wrap > .button:only-child {
  margin: 0;
}

/* button */
.button {
  /* height: 44px; */
  margin: 0 6px;
  padding: 4px 12px;
  font-family: "Noto Sans KR", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border: 1px solid #2e7bc1;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #2e7bc1;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;

  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.button.full {
  width: 100%;
}
a.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.button.form {
  max-width: 100px;
  height: 44px;
  margin: 0;
}
.button.logo {
  margin: 0;
  padding: 0 10px 0 0;
  border: none;
  background-color: unset;
  /* color: #0070d8; */
}
.button.logo:active {
  color: #0070d8;
}
.button.login {
  height: 60px;
  font-style: normal;
  font-size: 20px;
  font-weight: 500;
  line-height: 29px;
}
.button.submit {
  height: 44px;
  margin: 0;
  font-style: normal;
  font-size: 14px;
  font-weight: 400; /* 500이 샘플의 굵기 보다 굵어서 400으로 사용 */
  line-height: 20px;
  text-align: center;
  border-radius: unset;
}
.button.excel {
  border-color: #478546;
  background-color: #478546;
}
.button.excel::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 3px;
  left: -2px;
  width: 18px;
  height: 18px;
  margin-right: 4px;
  background-image: url(/img/excel_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
/* .button.excel::after {
    content: '';
    position: relative;
    display: inline-block;
    top: 2px;
    right: -4px;
    width: 18px;
    height: 18px;
    margin-left: 0;
    background-image: url(/img/download_arrow_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
} */
.button.link {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans KR", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  text-decoration: underline;
  border: none;
  background-color: unset;
  color: #000b33;
}
.button.reverse {
  background-color: #fff;
  color: #0070d8;
}
.button.reverse2 {
  background-color: #000b33;
  border-color: #fff;
}
.button.reverse.submit {
  color: #000b33;
}
.button.color-black {
  color: #000b33;
}
.button.state {
  min-width: 69px;
  margin: 0 6px;
  border-color: #e4e4e4;
  background-color: #fff;
  color: #9d9d9d;
  cursor: pointer;
}
.button.state:first-child {
  margin-left: 0;
}
.button.state:last-child {
  margin-right: 0;
}
.button.active {
  border-color: #0070d8;
  color: #000b33;
}
.button.disabled {
  border-color: #cdcdcd;
  background-color: #cdcdcd;
  color: #9d9d9d;
  cursor: default;
}

.footer-menu-container {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  color: #fff;
  gap: 50px;
}

.footer-menu-container div {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  cursor: pointer;
}

div.page-header {
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  /* identical to box height */

  text-align: center;

  color: #000000;

  border-bottom: 1px solid #e4e4e4;

  position: relative;
}

div.page-header div.board-btns {
  position: absolute;
  top: 80px;
  right: 15px;

  display: flex;
  flex-direction: row;
}

div.page-content {
  display: flex;
  flex-direction: column;
  flex: 1;

  min-height: calc(100vh - 475px);
}

div.faq-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
  border-bottom: 1px solid #e4e4e4;
  cursor: pointer;
  position: relative;
}

div.btn-img {
  position: absolute;
  top: 30px;
  right: 15px;
}
div.btn-img.down {
  transform: rotate(180deg);
}

div.faq-question {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;

  color: #000000;
  padding: 24px 0px;
}

div.faq-answer {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;

  color: #000000;
  display: none;
  padding-bottom: 24px;
}
div.faq-answer.show {
  display: block;
}

div.board-list {
  display: flex;
  flex-direction: column;
}

.board-header-item {
  display: flex;
  flex-direction: row;
  flex: 1;
  background-color: #f6f6f6;
  min-height: 63px;

  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;

  color: #3e3a39;

  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;

  align-items: center;
}

.board-header-item div:nth-child(1) {
  display: flex;
  flex: 0.5;
  justify-content: center;
  align-items: center;
}
.board-header-item div:nth-child(2) {
  display: flex;
  flex: 8;
  margin-left: 25px;
}
.board-header-item div:nth-child(3) {
  display: flex;
  flex: 1;
}

.board-item {
  display: flex;
  flex-direction: row;
  flex: 1;
  min-height: 63px;

  border-bottom: 1px solid #e4e4e4;

  align-items: center;
}

.board-item div:nth-child(1) {
  display: flex;
  flex: 0.5;
  justify-content: center;
  align-items: center;
}
.board-item div:nth-child(2) {
  display: flex;
  flex: 8;

  margin-left: 25px;

  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  /* identical to box height */

  color: #3e3a39;
}
.board-item div:nth-child(3) {
  display: flex;
  flex: 1;

  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;

  color: #a5a5a5;
}

#notice-pagination-output {
  padding: 25px 0px;
}
