.wrapper {
  display: flex;
  flex-direction: column;
}

.main {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.nx-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.nx-main {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.nx-header.ver5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #6335b4;
  width: 100%;
  height: 80px;
  padding: 0px 20px 0px 16px;
}

.nx-header_left.ver1 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}

.nx-header_left.ver1 .nx-header-title.ver1 {
  font-size: 22px;
  line-height: 33px;
  font-weight: 700;
  margin-top: -1px;
  color: var(--white);
}

.nx-header_right.ver1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}

.nx-header_right.ver1 .nx-header_subtitle.ver1 {
  font-size: 20px;
  line-height: 29px;
  color: var(--white);
  margin-top: -1px;
}

.nx-main.ver1 {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1 0 auto;
}

.nx-info_box.ver1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 28px 0px;
  flex: 0 0 auto;
  background-color: var(--gray-f5f5f5);
  border-bottom: 1px solid var(--gray-e9e9e9);
}

.nx-info_box.ver1 .nx-info_text.ver1 {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-color);
}

.nx-inner.ver1 {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  width: 100%;
  max-width: 400px;
  border-right: 1px solid var(--gray-e9e9e9);
  border-left: 1px solid var(--gray-e9e9e9);
  margin: 0 auto;
}

.nx-blank_box.ver1 {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

.nx-button.ver4 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  padding: 0px 16px;
  border-radius: 4px;
  font-weight: bold;
  color: var(--white);
  background: var(--button-blue-color, #055bde);
  background-color: var(--button-blue-color);
}

.nx-button.ver4.nx-f-space {
  justify-content: space-between;
}
.nx-button.ver4.nx-fw-normal {
  font-weight: normal;
}

.nx-gray-box.ver1 {
  display: flex;
  width: 100%;
  height: 8px;
  align-items: flex-start;
  align-self: stretch;
  border-top: 1px solid var(--gray-e9e9e9, #e9e9e9);
  border-bottom: 1px solid var(--gray-e9e9e9, #e9e9e9);
  background: var(--gray-f5f5f5, #f5f5f5);
}

.nx-button.ver5 {
  display: flex;
  align-items: center;
  height: 30px;
  gap: 8px;
  padding: 0 12px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: bold;
  background: var(--black-222222);
  color: var(--white);
}

.nx-table.ver1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid var(--gray-e9e9e9);
  background-color: var(--white);
}

.nx-table.ver1 .thead {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--gray-e9e9e9, #e9e9e9);
  background: var(--gray-f5f5f5, #f5f5f5);
}

.nx-table.ver1 .nx-thead {
  background-color: var(--gray-f5f5f5);
  border-bottom: 1px solid var(--gray-e9e9e9);
}

.nx-table.ver1 .nx-tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nx-table.ver1 .nx-table-row {
  position: relative;
  display: flex;
  width: 100%;
  cursor: pointer;
}

.nx-table.ver1 .nx-table-row:not(:last-child) {
  border-bottom: 1px solid var(--gray-e9e9e9);
}

.nx-table.ver1 .nx-table-th {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-color);
  line-height: 20px;
  border-right: 1px solid var(--gray-e9e9e9);
}

.nx-table.ver1 .nx-table-th:not(:last-child) {
  border-right: 1px solid var(--gray-e9e9e9);
}

.nx-table.ver1 .nx-table-td {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
  border-right: 1px solid var(--gray-e9e9e9);
}

.nx-table.ver1 .nx-table-th:nth-child(1),
.nx-table.ver1 .nx-table-td:nth-child(2) {
  flex: 0 0 63px;
}
.nx-table.ver1 .nx-table-th:nth-child(2),
.nx-table.ver1 .nx-table-th:nth-child(3),
.nx-table.ver1 .nx-table-td:nth-child(3),
.nx-table.ver1 .nx-table-td:nth-child(4) {
  width: 100%;
}

.nx-table.ver1 .nx-br-0 {
  border-right: 0;
}
.nx-table.ver1 .nx-js-start {
  justify-content: flex-start;
}
.nx-table.ver1 .nx-pl-20 {
  padding-left: 20px;
}

.nx-table.ver1 input[type='radio'],
.nx-table.ver1 input[type='checkbox'] {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.nx-table_radio_btn.ver1 {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background: var(--gray-eeeeee);
  border-radius: 50%;
  cursor: pointer;
}

.nx-table.ver1 input[type='radio']:checked ~ .nx-table-td,
.nx-table.ver1 input[type='checkbox']:checked ~ .nx-table-td {
  color: var(--fourth-color);
  font-weight: bold;
}

.nx-table.ver1 input[type='radio']:checked + .nx-table-td .nx-table_radio_btn.ver1,
.nx-table.ver1 input[type='checkbox']:checked + .nx-table-td .nx-table_radio_btn.ver1 {
  background: var(--fourth-color);
}
.nx-table.ver1 input[type='radio']:checked + .nx-table-td .nx-table_radio_btn.ver1::after,
.nx-table.ver1 input[type='checkbox']:checked + .nx-table-td .nx-table_radio_btn.ver1::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
}

.nx-table.ver1 input[type='radio']:checked + .nx-table-td .nx-radio-checked,
.nx-table.ver1 input[type='checkbox']:checked + .nx-table-td .nx-radio-checked {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--fourth-color);
}

.nx-button.ver3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  padding: 0px 16px;
  border-radius: 4px;
  font-weight: bold;
  color: var(--white);
  background: var(--button-gray-color, #c1c1c1);
  background-color: var(--button-gray-color);
}
.nx-button.ver3.nx-h-56,
.nx-button.ver4.nx-h-56 {
  height: 56px;
}

.nx-mark.ver1 {
  position: relative;
  display: flex;
  flex-direction: column;
}

.nx-mark.ver1 li {
  position: relative;
  padding-left: 13px;
  line-height: 28px;
}
.nx-mark.ver1 li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 13px;
  width: 2px;
  height: 2px;
  background: var(--black-222222);
  border-radius: 50%;
}

.nx-credit_card.ver1 {
  position: relative;
  width: 284px;
  height: 180px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(8, 101, 243, 1) 0%, rgba(27, 70, 210, 1) 100%);
}

.nx-credit_card.ver1 .img-logo {
  position: absolute;
  width: 124px;
  height: 24px;
  top: 20px;
  left: 20px;
}

.nx-credit_card.ver1 .img-cardchip {
  position: absolute;
  width: 36px;
  height: 29px;
  top: 62px;
  left: 20px;
}

.nx-credit_card.ver1 .img-creditcard {
  position: absolute;
  width: 100px;
  height: 11px;
  bottom: 20px;
  right: 20px;
}

.nx-credit_card.ver1 .nx-credit_text.ver1 {
  position: absolute;
  right: 25px;
  bottom: 20px;
  color: var(--white);
  text-align: right;
}

.nx-bg_box.ver1 {
  width: 100%;
  background: var(--gray-f5f5f5);
  border: 1px solid var(--gray-e9e9e9);
  border-radius: 4px;
}

.nx-line.ver1 {
  width: 100%;
  height: 1px;
  background: var(--gray-e9e9e9);
}

.nx-footer_ver2 {
  position: fixed;
  bottom: 0;
  display: flex;
  width: 100%;
  max-width: 718px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-e9e9e9);
  background: var(--white);
}

.nx-coupon_box.ver2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--gray-e9e9e9);
  padding: 14px 16px 18px;
  cursor: pointer;
}
.nx-coupon_date.ver1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 16px;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
  background: var(--red-f90033);
  border-radius: 2px;
  flex: 0 0 auto;
}

.nx-coupon_radio {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  visibility: hidden;
}
.nx-coupon_radio:disabled + .nx-coupon_box.ver2 {
  background: var(--gray-f5f5f5);
}
.nx-coupon_radio:disabled + .nx-coupon_box.ver2,
.nx-coupon_radio:disabled + .nx-coupon_box.ver2 .nx-c-gray6 {
  color: var(--gray-999999);
}
.nx-coupon_radio:disabled + .nx-coupon_box.ver2 .nx-coupon_date {
  background: var(--gray-cccccc);
}

.nx-coupon_radio:checked + .nx-coupon_box.ver2 {
  border: 2px solid var(--fourth-color);
}

/* 리셉션 05~08 */
.nx-tab_box.ver1 {
  width: 100%;
  background: var(--white, #ffffff);
}
.nx-tab.ver1 .nx-button_box.ver1 {
  border-bottom: 1px solid #e3e7ed;
  padding: 0px 20px 0px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nx-button_box.ver1 .nx-button.ver1 {
  background: #ffffff;
  display: flex;
  gap: 0px;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 64px;
  position: relative;
  font-size: 18px;
  line-height: 26px;
  gap: 4px;
}
.nx-button_box.ver1 .nx-button.ver1.nx-active {
  font-weight: bold;
  color: var(--purple-6335b4, #6335b4);
}
.nx-button_box.ver1 .nx-button.ver1.nx-active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: var(--purple-6335b4, #6335b4);
}
.nx-inner_wrap.ver1 {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  border-left: 1px solid var(--gray-e9e9e9, #e9e9e9);
  border-right: 1px solid var(--gray-e9e9e9, #e9e9e9);
}
.nx-coupon_section.ver1 {
  padding: 24px 16px 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.nx-input_box.ver1 {
  border-bottom: 1px solid #dddddd;
  padding: 8px 0px 8px 0px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.nx-input.ver1 {
  border: 0;
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.nx-coupon_section.ver1 .nx-button_box.ver1 {
  width: 100%;
}
.nx-coupon_section.ver1 .nx-button_box.ver1 .nx-button.ver1 {
  background: var(--primary-color, #6335b4);
  border-radius: 4.04px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  position: relative;
  overflow: hidden;
  color: var(--white, #ffffff);
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
}
.nx-gray-box.ver1 {
  background: var(--gray-f5f5f5);
  border-top: 1px solid var(--gray-e9e9e9);
  border-bottom: 1px solid var(--gray-e9e9e9);
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 8px;
  position: relative;
  overflow: hidden;
}
.nx-list_section.ver1 {
  padding: 24px 16px 50px 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.nx-tab.ver2 {
  background: var(--gray-f3f4f7, #f3f4f7);
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  position: relative;
}
.nx-tab.ver2 .nx-button.ver1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 24px;
}
.nx-tab.ver2 .nx-active {
  padding: 11px 0px 11px 0px;
  height: 48px;
  font-weight: bold;
  color: var(--primary-color);
  background: var(--white, #ffffff);
  border: 1px solid var(--primary-color);
  border-radius: 4px;
}

.nx-popup_wrap.ver1 {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: #ffffff;
}
.nx-popup.ver1 {
  width: 100%;
  max-width: 720px;
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}

.nx-coupon_box.ver1 {
  width: 100%;
}

.nx-list_section.ver1 .nx-coupon_box.ver1 > .nx-notice_box.ver1 {
  padding: 24px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0px;
}
.nx-coupon_box.ver1 > .nx-notice_box.ver1 > .nx-text_box.ver1 {
  display: flex;
  gap: 4px;
}

.nx-coupon_box.ver1 .nx-list.ver1 {
  padding: 8px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.nx-coupon_box.ver1 .nx-list_item.ver1 {
  border-bottom: 1px solid #e9e9e9;
  padding: 16px 0px 16px 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.nx-coupon_box.ver1 .nx-list_item.ver1:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.nx-coupon_box.ver1 .nx-list_item.ver1 .nx-top.ver1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nx-coupon_box.ver1 .nx-item_name.ver1 {
  font-size: 18px;
  line-height: 27px;
  font-weight: bold;
}
.nx-coupon_box.ver1 .nx-badge.ver1 {
  background: var(--red-da4841, #da4841);
  border-radius: 2px;
  padding: 2px 0px 2px 0px;
  width: 64px;
  height: 24px;
  position: relative;
  overflow: hidden;
}
.nx-coupon_box.ver1 .nx-list_item.ver1 .nx-middle.ver1 {
  padding: 3px 0px 0px 0px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.nx-coupon_box.ver1 .nx-middle.ver1 .nx-text_box.ver1 {
  display: flex;
  flex-direction: row;
  gap: 3px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 100%;
  max-width: 230px;
  position: relative;
}
.nx-coupon_box.ver1 .nx-middle.ver1 .nx-box.ver1 {
  padding: 5px 0px 0px 0px;
}
.nx-coupon_box.ver1 .nx-list_item.ver1 .nx-bottom.ver1 {
  display: flex;
  width: 100%;
  padding-top: 16px;
}
.nx-bottom.ver1 .nx-button.ver1 {
  background: var(--button-tint-color, #1ab8be);
  border-radius: 4px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
}
.nx-coupon_box.ver1.expired .nx-item_name.ver1,
.nx-coupon_box.ver1.expired .nx-middle.ver1 .nx-text_box.ver1 p,
.nx-coupon_box.ver1.expired .nx-middle.ver1 .nx-box.ver1 .nx-text.ver1 {
  color: #999;
}
.nx-coupon_box.ver1.expired .nx-badge.ver1 {
  background-color: #ccc;
}
.nx-page_info.ver1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: var(--gray-f5f5f5, #f5f5f5);
}
.nx-page_info.ver2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: var(--gray-f5f5f5, #f5f5f5);
}
.nx-page_info.ver1 .nx-text.ver1 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nx-page_info.ver1 .nx-button.ver1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 0px;
  width: 116px;
  height: 32px;
  border-radius: 25px;
  border: 1px solid var(--gray-999999, #999999);
  background: var(--white, #ffffff);
}
.nx-coin_list.ver1 {
  display: flex;
  flex-direction: column;
  padding: 4px 16px 50px;
  width: 100%;
}
.nx-coin_list.ver1 .nx-list_item.ver1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px 20px 0px;
  width: 100%;
  border-bottom: 1px solid var(--gray-e9e9e9);
}
.nx-coin_list.ver1 .nx-list_item.ver1:last-child {
  border: 0;
}

.nx-inner_wrap.ver1 .nx-tab_box.ver2 {
  padding: 24px 16px 0;
  width: 100%;
}

.nx-coin_list.ver1 .nx-list_item.ver1 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
  border-bottom: 1px solid #e9e9e9;
}
.nx-list_item.ver1:last-child {
  border: 0;
}

.nx-list_item.ver1 .nx-left.ver1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  width: 192px;
}

.nx-list_item.ver1 .nx-center.ver1 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}
.nx-list_item.ver1 .nx-right.ver1 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  width: 100px;
}

.nx-list_item.ver1.nx-amount_up .nx-right.ver1 .nx-text.ver1 {
  color: var(--blue-3f73db);
}
.nx-list_item.ver1.nx-amount_down .nx-right.ver1 .nx-text.ver1 {
  color: var(--red-da4841);
}
.nx-table_box.ver1 {
  padding-top: 24px;
}
.nx-table_box.ver1 .nx-table.ver2 {
  background-color: #ffffff;
}

.nx-table_box.ver1 .nx-table.ver2 .nx-row.ver1 {
  width: 100%;
  border-bottom: 1px solid #e9e9e9;
}
.nx-table_box.ver1 .nx-table.ver2 .nx-row.ver1:first-child {
  border-top: 1px solid #e9e9e9;
}

.nx-table_box.ver1 .nx-table.ver2 .nx-th.ver1 {
  padding: 11px 16px 12px;
  width: 32.5%;
  background-color: #f5f5f5;
  border-left: 1px solid #e9e9e9;
  border-right: 1px solid #e9e9e9;
  vertical-align: middle;
  text-align: left;
}

.nx-table_box.ver1 .nx-table.ver2 .nx-td.ver1 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px 12px;
  border-right: 1px solid #e9e9e9;
  vertical-align: middle;
}
.nx-ellipsis1 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
/* 리셉션 //05~08 */
