@charset "utf-8";

@import url(default.css);

:root {
  --primary: #0a0f0f;
  --secondary: #2a60f5;
  --semantic: #ff3d60;
  --white: #fff;
  --gray100: #f7f7f9;
  --gray200: #eeeff2;
  --gray300: #dddfe6;
  --gray400: #c6c9d5;
  --gray500: #a0a7b8;
  --gray600: #8690a3;
  --gray700: #68748c;
  --blue100: #eff5ff;
  --blue200: #e1ebff;
  --blue300: #cdddff;
  --blue400: #a7bfef;
  --blue500: #779ddc;
  --blue600: #5584d3;
  --green100: #ecf7f0;
  --green600: #45ac6a;
}
*:focus-visible {
  outline: 2px solid var(--primary);
}
a {
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}
button {
  -webkit-tap-highlight-color: transparent;
}
.color_primary {
  color: #0a0f0f;
  color: var(--primary);
}
.color_secondary {
  color: #2a60f5;
  color: var(--secondary);
}
.color_white {
  color: #fff;
  color: var(--white);
}
.color_blue100 {
  color: #eff5ff;
  color: var(--blue100);
}
.color_blue200 {
  color: #e1ebff;
  color: var(--blue200);
}
.color_blue600 {
  color: #5584d3;
  color: var(--blue600);
}
.color_gray100 {
  color: #f7f7f9;
  color: var(--gray100);
}
.color_gray200 {
  color: #eeeff2;
  color: var(--gray200);
}
.color_gray300 {
  color: #dddfe6;
  color: var(--gray300);
}
.color_gray400 {
  color: #c6c9d5;
  color: var(--gray400);
}
.color_gray600 {
  color: #8690a3;
  color: var(--gray600);
}
.color_gray700 {
  color: #68748c;
  color: var(--gray700);
}
/***************************************************************************************
	Layout
***************************************************************************************/
.layout_header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  height: 56px;
  background-color: var(--white);
}
.layout_header .head_left {
  display: flex;
  align-items: center;
  padding: 0 20px 0 24px;
  height: 100%;
}
.layout_header .btn_head_back {
  display: block;
  width: 24px;
  height: 24px;
  background: url('../images/svg/btn_head_back.svg') no-repeat 0 0;
}
.layout_header .head_title {
  display: block;
  flex: auto;
  overflow: hidden;
  width: 90%;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.layout_header .btn_share {
  display: block;
  padding: 0 24px;
  width: 24px;
  height: 24px;
  background: url('../images/svg/icon_share.svg') no-repeat center left / 24px;
}
.layout_container {
  padding: 92px 24px 0 24px;
  /* 2024.12.31 헤더 살림 , 헤더없는 경우 css padding: 36px 24px 0 24px; */
  /* 2024.12.16 헤더 제거(박상후님 요청) 헤더 존재할 경우 padding: 92px 24px 0 24px; */
}
/* 약관용 레이아웃 */
.page_wrap.type_terms .layout_container {
  padding: 36px 24px 0 24px;
}

/* button */
.btn_primary {
  display: inline-block;
  padding: 0 16px;
  width: 100%;
  height: 60px;
  border-radius: 2px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -0.32px;
  text-align: center;
}
.btn_primary:disabled {
  background-color: var(--gray400);
}
.btn_secondary {
  display: inline-block;
  width: 100%;
  padding: 0 24px;
  height: 60px;
  border-radius: 2px;
  border: 1px solid var(--gray300);
  background-color: var(--white);
  color: var(--primary);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.32px;
  line-height: 60px;
  text-align: center;
}
.btn_secondary:disabled {
  border-color: var(--gray300);
  color: #a8aebf;
}
.btn_small {
  padding: 0 12px;
  height: 36px;
  font-size: 13px;
  line-height: 36px;
}
.btn_xsmall {
  padding: 0 12px;
  height: 33px;
  font-size: 13px;
  line-height: 33px;
}

/* common */
.sr_only {
  overflow: hidden;
  position: absolute;
  margin: -1px 0 0 -1px;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0) !important;
}
.w100p {
  width: 100%;
}

/* 링크 - 우측 화살표 */
.arrow_link {
  display: inline-block;
  padding-right: 20px;
  background: url('../images/svg/arrow_link.svg') 100% 45%/16px no-repeat;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 21px;
  text-align: left;
}

/* badge */
.page_wrap .badge {
  display: inline-block;
  padding: 2px 8px;
  height: 22px;
  border-radius: 0;
  background-color: var(--blue200);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.24px;
  line-height: 18px;
}
.page_wrap .badge.type_event {
  background-color: #004dff;
  color: var(--white);
}

/* checkbox */
.wrap_checkbox {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 12px;
}
.wrap_checkbox > input[type='checkbox'] {
  position: relative;
  width: 24px;
  height: 24px;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.wrap_checkbox > label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 24px;
  color: var(--primary);
}
.wrap_checkbox > input[type='checkbox']:before {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 1px;
  background: var(--gray400) url('../images/svg/img_check.svg') 50% 50%/16px no-repeat;
  content: '';
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.wrap_checkbox > input[type='checkbox']:checked:before {
  background: var(--primary) url('../images/svg/img_check.svg') 50% 50%/16px no-repeat;
}
.wrap_checkbox > input[type='checkbox']:disabled:before {
  background: var(--gray400) url('../images/svg/img_check3.svg') 50% 50%/16px no-repeat;
}
.wrap_checkbox > input[type='checkbox']:checked:disabled:before {
  background: var(--primary) url('../images/svg/img_check.svg') 50% 50%/16px no-repeat;
}

/* checkbox - 박스 없이 체크만 */
.wrap_checkbox.type_nobox {
  align-items: flex-start;
}
.wrap_checkbox.type_nobox > input[type='checkbox'] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
}
.wrap_checkbox.type_nobox > input[type='checkbox']:before {
  width: 16px;
  height: 16px;
  border-radius: 0;
  background: transparent url('../images/svg/img_check3.svg') 50% 50%/16px no-repeat;
}
.wrap_checkbox.type_nobox > input[type='checkbox']:checked:before {
  background: transparent url('../images/svg/img_check4.svg') 50% 50%/16px no-repeat;
}
.wrap_checkbox.type_nobox > input[type='checkbox']:disabled:before {
  background: transparent url('../images/svg/img_check3.svg') 50% 50%/16px no-repeat;
}
.wrap_checkbox.type_nobox > input[type='checkbox']:checked:disabled:before {
  background: transparent url('../images/svg/img_check4.svg') 50% 50%/16px no-repeat;
}
.wrap_checkbox.type_nobox > label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

/* checkbox toggle switch */
.wrap_switch {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
.wrap_switch > label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 23px;
}
.wrap_switch > input[type='checkbox'] {
  position: relative;
  width: 50px;
  height: 30px;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.wrap_switch > input[type='checkbox'][disabled] {
  pointer-events: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}
.wrap_switch > input[type='checkbox']:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 30px;
  background: url('../images/svg/switch_default.svg') 0 0/50px 30px no-repeat;
  content: '';
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.wrap_switch > input[type='checkbox']:checked:before {
  background: url('../images/svg/switch_check.svg') 100% 0/50px 30px no-repeat;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.wrap_switch > input[type='checkbox']:disabled:before {
  background: url('../images/svg/switch_disabled.svg') 50% 50%/50px 30px no-repeat;
}
.wrap_switch > input[type='checkbox']:checked:disabled:before {
  background: url('../images/svg/switch_disabled_active.svg') 50% 50%/50px 30px no-repeat;
}

/* radio */
.wrap_radio {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.wrap_radio > label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.32px;
  line-height: 21px;
  width: calc(100% - 30px);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  color: var(--gray600);
}
.wrap_radio > input[type='radio']:checked + label {
  color: var(--primary);
}
.wrap_radio > input[type='radio'] {
  position: relative;
  width: 16px;
  height: 16px;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.wrap_radio > input[type='radio']:before {
  display: block;
  width: 16px;
  height: 16px;
  background-color: transparent;
  background-image: none;
  content: '';
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.wrap_radio > input[type='radio']:checked:before {
  background: transparent url('../images/svg/img_check4.svg') 50% 50%/16px no-repeat;
}
.wrap_radio > input[type='radio']:disabled:before {
  background-color: transparent;
}
.wrap_radio > input[type='radio']:checked:disabled:before {
  background: transparent url('../images/svg/img_check4.svg') 50% 50%/16px no-repeat;
}

/* list 리스트 공통 */
[class^='list_'] > li + li {
  margin-top: 4px;
}
[class^='list_'] > li,
[class^='bullet_'] {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
}

/* list - dot */
.bullet_dot,
.list_dot > li,
.list_dash > li {
  padding-left: 8px;
  color: var(--gray700);
}
.bullet_dot strong,
.list_dot > li strong {
  font-weight: 600;
}
.bullet_dot:before,
.list_dot > li:before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--gray700);
  content: '';
}
.list_dash > li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '-';
}
/* table > list */
tbody [class^='list_'] li,
tbody .bullet_dot {
  font-size: 12px;
  color: var(--gray700);
}

/* list - number */
.list_num {
  counter-reset: number;
}
.list_num li {
  padding-left: calc(2ch + 2px);
  font-size: 14px;
  letter-spacing: -0.3px;
  line-height: 20px;
}
.list_num li:before {
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: number;
  content: counter(number) '.';
  width: 2ch;
}
/* 넘버링 서브 (약관용) */
.list_num li > ul {
  counter-reset: sub;
  list-style: none;
  padding-left: 0;
  margin-left: calc(-2ch - 2px);
}
.list_num > li > ul > li {
  position: relative;
  padding-left: calc(3ch + 2px);
}
.list_num > li > ul > li::before {
  counter-increment: sub;
  content: counter(number) '-' counter(sub) '.';
  position: absolute;
  left: 0;
  top: 0;
  width: 3ch;
}
.list_num.type2 {
  counter-reset: initial;
}
.list_num.type2 li {
  padding-left: 0;
}
.list_num.type2 li:before {
  content: none;
}
.list_num > li strong,
.list_num > li.type_bold,
.list_num > li.type_bold:before {
  font-weight: 600;
}

/* grid table */
table.v_top td {
  vertical-align: top !important;
}
/* column */
.grid_column thead th {
  padding: 10px;
  border-left: 1px solid var(--gray300);
  background-color: var(--gray200);
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
}
.grid_column thead th:first-of-type {
  border-left: 0;
}
.grid_column tbody td {
  padding: 10px;
  border-left: 1px solid var(--gray300);
  border-bottom: 1px solid var(--gray300);
  color: var(--gray700);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.24px;
  line-height: 17px;
  text-align: left;
  word-break: break-all;
  overflow-wrap: break-word;
}
.grid_column tbody td:first-of-type {
  border-left: 0;
}
.grid_column tbody td.line_left {
  border-left: 1px solid var(--gray300);
}
.grid_column tbody td.check img {
  width: 16px;
  height: 16px;
}
.grid_column tbody td.left {
  text-align: left;
}
.grid_column tbody td > b,
.grid_column tbody td > strong {
  font-weight: 600;
}
.grid_column td .list_dot > li,
.grid_column td .bullet_dot {
  padding-left: 8px;
}
.grid_column td .list_dot > li:before,
.grid_column td .bullet_dot:before {
  width: 2px;
  height: 2px;
}
.grid_column td * + [class^='list_'],
.grid_column td > [class^='list_']:first-child {
  margin-top: 4px;
}
.grid_column td .list_num > li {
  font-size: 12px;
  letter-spacing: -0.24px;
  line-height: 17px;
}
.grid_column td .list_num > li:before {
  color: #626b7d;
}
/* row */
.grid_row tbody th {
  padding: 10px;
  border-bottom: 1px solid var(--gray300);
  background-color: var(--gray200);
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
}
.grid_row tbody tr:first-of-type th {
  border-top: 1px solid var(--gray300);
}
.grid_row tbody tr:last-child th {
  border-bottom: 1px solid var(--gray300);
}
.grid_row tbody td {
  padding: 10px;
  border-bottom: 1px solid var(--gray300);
  color: var(--gray700);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.24px;
  line-height: 17px;
  text-align: left;
  word-break: break-all;
  overflow-wrap: break-word;
}
.grid_row tbody tr:first-of-type td {
  border-top: 1px solid var(--gray300);
}
.grid_row tbody td > b,
.grid_row tbody td > strong {
  font-weight: 600;
}
.grid_row tbody td .list_dot > li,
.grid_row tbody td .bullet_dot {
  padding-left: 8px;
  font-size: 12px;
  letter-spacing: -0.24px;
  line-height: 17px;
}
.grid_row td .list_dot > li:before,
.grid_row tbody td .bullet_dot:before {
  width: 2px;
  height: 2px;
}
.grid_row tbody td * + .list_num {
  margin-top: 4px;
}
.grid_row tbody td .list_num > li {
  margin-left: 9px;
  font-size: 12px;
  letter-spacing: -0.24px;
  line-height: 17px;
}
.grid_row td .list_num > li:before {
  color: #626b7d;
}

/* popup 공통 */
.wrap_popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: -500%;
  z-index: 1000;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: transparent;
  -webkit-transition: bottom cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
  transition: bottom cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
}
.wrap_popup.active {
  bottom: 0;
}
.wrap_popup .bg_dimmed {
  position: fixed;
  left: 0;
  bottom: -500%;
  z-index: 1001;
  width: 100%;
  height: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(24, 32, 48, 0.7);
}
.wrap_popup.active .bg_dimmed {
  bottom: 0;
}
.wrap_popup.type_toast {
  align-items: flex-end;
}
.wrap_popup.active.type_toast {
  align-items: flex-end;
  bottom: 120px;
}
.wrap_popup.active.type_bottom {
  align-items: flex-end;
  -webkit-transition: bottom cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.4s;
  transition: bottom cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.4s;
}

/* popup - 얼럿 */
.wrap_alert {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  z-index: 1005;
  padding: 30px 20px 24px;
  width: calc(100vw - 40px);
  min-height: 170px;
  /* border-radius: 24px; */
  background-color: var(--white);
}
.wrap_alert .pop_contents_area {
  width: 100%;
  padding: 0 4px 30px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 21px;
}
.wrap_alert .pop_contents_area > small {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 21px;
}
.wrap_alert .pop_btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 6px;
  width: 100%;
  height: 60px;
}
.wrap_alert .pop_btn_area [class^='btn_'] {
  padding: 0;
  width: 60%;
}
.wrap_alert .pop_btn_area [class^='btn_']:first-child {
  width: calc(40% - 6px);
}

/* popup - full 풀팔업 */
.wrap_full {
  position: relative;
  z-index: 1005;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: var(--white);
}
.wrap_full .pop_header_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1006;
  padding: 0 24px;
  width: 100%;
  height: 56px;
  background-color: var(--white);
}
.wrap_popup.active .wrap_full .pop_header_area {
  position: fixed;
  top: 0;
  left: 0;
}
.wrap_full .pop_header_area h1 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.32px;
  line-height: 21px;
}
.wrap_full .pop_header_area .btn_close {
  width: 24px;
  height: 24px;
  background: url('../images/svg/btn_close_popup.svg') 100% 0/100% no-repeat;
}
.wrap_full .pop_contents_area {
  overflow-y: auto;
  position: relative;
  z-index: 1005;
  padding: 36px 24px 140px;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100 - 56px);
  background-color: var(--white);
  font-size: 14px;
  line-height: 21px;
}
.wrap_popup.active .wrap_full .pop_contents_area {
  position: fixed;
  top: 56px;
  left: 0;
}
.wrap_full .pop_contents_area img {
  width: 100%;
}
.wrap_full .pop_contents_area .full_title {
  padding: 12px 0 36px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.48px;
  line-height: 31px;
}
.wrap_full .pop_contents_area .full_title b {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.48px;
  line-height: 31px;
}
.wrap_full .pop_bottom_btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1006;
  padding: 38px 20px;
  width: 100%;
  background: linear-gradient(0deg, var(--white) 79.8%, rgba(255, 255, 255, 0) 99.17%);
}
.wrap_popup.active .wrap_full .pop_bottom_btn_area {
  position: fixed;
  bottom: 0;
  left: 0;
}

/* popup - toast 토스트 */
.wrap_toast {
  position: relative;
  z-index: 1005;
  padding: 16px 24px;
  width: calc(100% - 40px);
  border-radius: 1px;
  background-color: rgba(10, 15, 15, 0.7);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  text-align: center;
}
.wrap_toast > b {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

/* popup - 바텀시트 */
.wrap_bottomsheet {
  position: relative;
  z-index: 1005;
  padding: 40px 24px;
  width: 100%;
  max-height: calc(100vh - 119px);
  /* border-radius: 24px 24px 0 0; */
  background-color: var(--white);
}
.wrap_bottomsheet .pop_contents_area {
  overflow-y: auto;
  max-height: calc(100vh - 255px);
  min-height: 100px;
}
.wrap_bottomsheet .pop_contents_area .bottom_title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 26px;
}
.wrap_bottomsheet .pop_contents_area .bottom_conents {
  margin-top: 10px;
  padding: 0 4px;
  color: #626b7d;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 21px;
}
.wrap_bottomsheet .pop_contents_area .bottom_conents + .arrow_link {
  margin-top: 30px;
}
.wrap_bottomsheet .pop_contents_area .arrow_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--gray200);
  background-color: var(--white);
  background-position: right 24px top 50%;
  box-shadow: 0px 7px 25px rgba(221, 228, 241, 0.5);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  line-height: 24px;
}
.wrap_bottomsheet .pop_btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 6px;
  width: 100%;
  height: 60px;
}
.wrap_bottomsheet .pop_btn_area [class^='btn_'] {
  padding: 0;
  width: 60%;
}
.wrap_bottomsheet .pop_btn_area [class^='btn_']:first-child {
  width: calc(40% - 6px);
}
.wrap_bottomsheet .pop_btn_area.w100p {
  width: 100%;
}
