@charset "utf-8";

.text_list {
}
.text_list li {
  margin-bottom: 10px;
}
.text_list li:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}
.text_list li a {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: #000;
}

.search_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 20px 0;
  padding: 0 20px;
}
.search_box .btn {
  width: auto;
  padding: 8px 16px;
  flex: none;
}
.search_box .input_search {
  margin: 0 20px;
}

.membership_desc {
  width: 240px;
  margin: 30px auto 0;
  font-size: 14px;
  font-weight: 400;
}
.card_membership {
  max-width: 240px;
  min-height: 384px;
  margin: 0 auto;
}
.card_membership .text {
  padding: 20px;
}
.custom_select_option_reco {
  height: 130px;
}

.inventory_desc {
  width: 200px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--gray);
  text-align: center;
  font-weight: 400;
}

.popup_detail_bg {
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.popup_detail_box {
  position: relative;
  width: 320px;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
}
.popup_detail_box .close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.popup_detail_box .img {
  width: 100%;
  height: 320px;
}
.popup_detail_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.popup_detail_box .text {
  padding: 20px;
}
.popup_detail_box .popup_detail_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #e6e9f4;
}
.popup_detail_box .popup_detail_list li .title {
  font-size: 16px;
  font-weight: 500;
}
.popup_detail_box .popup_detail_list li .desc {
  font-size: 12px;
  font-weight: 500;
  color: #5a607f;
}

.tree {
  padding: 20px;
}

.set1 {
  width: 100%;
  height: 1px;
  margin: 0 auto;
}

.tree_scrollBox {
  overflow: auto;
}
.tree_scrollBox::-webkit-scrollbar {
  display: none;
}
.tree_scrollBox {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tree_list,
.tree_list_test {
  padding: 20px;
  zoom: 0.6;
}
.tree_list ul {
  position: relative;
  display: flex;
  padding-top: 20px;
}
.tree_list li {
  text-align: center;
  position: relative;
  padding: 20px 5px 0 5px;
}
.tree_list a {
  display: inline-block;
  background-color: #fff;
  color: #000;
}
.tree_list a span {
  display: block;
}
.tree_user {
  display: inline-block;
  width: 162px;
  border-radius: 6px;
  word-break: break-all;
  position: relative;
}
.tree_user_id {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 40px;
  padding: 10px;
  border-radius: 4px 4px 0 0;
  color: var(--orange);
  font-family: "mont";
}
.tree_user_icon img {
  width: 30px;
}
.tree_user_icon,
.tree_user_date {
  padding: 8px 0;
  font-size: 14px;
  font-family: "mont";
}
.tree_user_id.jisa_b {
  background-color: #dc4500;
  color: #fff;
}
.tree_user_id.jibu_b {
  background-color: #01005e;
  color: #fff;
}
.tree_user_name {
  font-family: "mont";
}

/*li 단독속성 (ul의 지정요소가 그 부모의 유일한 자식요소인 경우) */
.tree_list li:only-child {
  padding-top: 0;
  margin: auto;
}

/* after, before 이벤트 */
.tree_list li::before,
.tree_list li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 2px solid #333;
  width: 50%;
  height: 18px;
}
.tree_list li::after {
  right: auto;
  left: 50%;
  border-left: 2px solid #333;
}
.tree_list li:only-child::after,
.tree_list li:only-child::before {
  display: none;
}
.tree_list li:first-child::before,
.tree_list li:last-child::after {
  border: none;
}
.tree_list li:last-child::before {
  border-right: 2px solid #333;
  border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
}
.tree_list li:first-child::after {
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
}
.tree_list ul ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 2px solid #333;
  width: 0;
  height: 20px;
}

/* hover 이벤트 */
.tree_list li a:hover + ul li::after,
.tree_list li a:hover + ul li::before,
.tree_list li a:hover + ul::before,
.tree_list li a:hover + ul ul::before {
  border-color: #ff8000;
}
.tree_list li a:hover {
  box-shadow: 0 0 15px rgba(255, 0, 0, 1);
}
.tree_list li a:hover + ul li a {
  box-shadow: 0 0 15px rgba(255, 0, 0, 1);
}

@media all and (min-width: 320px) and (max-width: 480px) {
  .search_box {
    position: relative;
  }
  .search_box .input_search {
    width: 100%;
    margin: 0 0 0 20px;
  }
  .search_box .btn {
    position: absolute;
    bottom: -70px;
    width: calc(100% - 40px);
  }
  .tree {
    padding: 40px;
  }
}

/*#################### NBR ####################*/

/* POINT - 2022.07.13 : NBR */
.tab_container li {
  width: 100%;
  padding: 5px 10px;
  margin-right: 20px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--sub_gray);
  cursor: pointer;
}
.tab_container li:last-child {
  margin-right: 0;
}
.tab_container li.active {
  background-color: var(--main);
  color: var(--white);
  border: 1px solid var(--main);
}

.history_container li {
  width: 32%;
  padding: 5px 10px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--sub_gray);
  cursor: pointer;
}
.history_container li.active {
  background-color: var(--main);
  color: var(--white);
  border: 1px solid var(--main);
}

.list_container {
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.list_container ul {
}
.list_container ul li {
  border-bottom: 1px solid #e6e9f4;
  color: var(--gray);
}
.list_container ul li:last-child {
  border: none;
}
.list_container ul li p:first-child {
  width: 100px;
  flex: none;
}
.list_container ul li p:last-child {
  word-break: break-all;
  text-align: right;
}
.wallet_flex {
  margin: 0 10px;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}
/* .wallet_flex p { word-break:break-all; } */
.wallet_flex p {
  word-break: keep-all;
}

@media all and (max-width: 600px) {
  /* .tab_container { flex-wrap: wrap; }
  .tab_container li{ width: 49%; margin-bottom: 5px;} */
  .tab_container li {
    word-break: keep-all;
    margin-right: 8px;
  }
}

/* @media all and ( max-width:768px ){
  .wallet_flex {flex-direction: column; align-items: flex-start;}
  .wallet_flex p:first-child { margin-bottom: 5px;}
  .wallet_flex p:last-child { align-self: flex-end; text-align: right;}
} */
/*// POINT - 2022.07.13 : NBR */

/* COIN LIST */
.wallet {
  width: 100%;
}
/* btn_list */
.btn_list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  border-radius: 8px;
}
.btn_item {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  margin-right: 10px;
  background-image: -webkit-linear-gradient(top, #ff8300, #fd3a1d);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  cursor: pointer;
}
.btn_item:last-child {
  margin-right: 0;
}
.btn_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--white);
}
/* coin_list */
.coin_list {
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
}
.coin_item {
  position: relative;
  width: 100%;
  margin-top: 14px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: var(--white);
  box-shadow: 1px 1px 2px rgba(226, 226, 226, 0.3);
  border-radius: 8px;
}
.coin_item:first-of-type {
  margin-top: 0;
}
.item_info {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 12px;
  transition: left 0.3s;
  cursor: pointer;
}
.coin_img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  width: 46px;
  height: 46px;
  margin-right: 10px;
}
.coin_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.coin_text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  word-break: break-all;
}
.coin_name {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  font-family: "mont";
}
.coin_amount {
  text-align: right;
}
.coin_unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}
.coin_cash {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  font-family: "mont";
}
.flex-end {
  flex: none;
}
.notice_title {
  margin-right: 10px;
}

@media all and (max-width: 410px) {
  .coin_name {
    width: 100%;
    text-align: right;
  }
  .coin_cash {
    text-align: right;
  }
  /* .coin_text{justify-content: flex-end} */
  .coin_text {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .coin_amount {
    text-align: left;
  }
}
/*// COIN LIST */

/* CUSTOMER_SERVICE */
.customer_section {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.notice_title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 5px;
  word-break: break-all;
}
.date {
  font-size: 14px;
  font-weight: 400;
  flex: none;
}
.service_text::after {
  content: "|";
  margin-left: 5px;
  color: var(--black);
  font-weight: 400;
}
.service_image::after {
  content: "|";
  margin-left: 5px;
  color: var(--black);
  font-weight: 400;
}
.service_text {
  color: var(--blue);
  font-weight: 700;
}
.service_image {
  color: var(--red);
  font-weight: 700;
}
.service_wait::before {
  content: "[답변 대기]";
  margin-right: 5px;
  color: var(--black);
  font-weight: 700;
  font-size: 12px;
  color: var(--red);
}
.service_done::before {
  content: "[답변 완료]";
  margin-right: 5px;
  color: var(--black);
  font-weight: 700;
  font-size: 12px;
  color: var(--blue);
}
.service_width {
  max-width: 120px;
}
.notice_view {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sub_gray);
}
.customer_text p {
  font-size: 15px;
  font-weight: 400;
  word-break: break-all;
}
.customer_img {
  text-align: center;
}
.customer_img img {
  max-width: 50%;
}

.text_list .title {
  font-weight: 700;
  margin-right: 10px;
}
.text_list .date {
  font-family: "mont";
}
.notice_write {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}
.notice_date {
  font-size: 14px;
  font-weight: 400;
  font-family: "mont";
}
@media screen and (max-width: 767px) {
  .customer_img img {
    max-width: 100%;
  }
  .tab_container li {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media all and (max-width: 480px) {
  .date {
    flex: none;
    width: 80px;
    text-align: right;
  }
  .notice_title {
    margin-right: 10px;
  }
  .service_wait::before {
    display: block;
  }
  .service_wait {
    width: 80px;
    text-align: right;
    flex: none;
  }
  .service_done {
    width: 80px;
    text-align: right;
    flex: none;
  }
  .service_done::before {
    display: block;
  }
  .notice_title + .flex-end {
    width: 80px;
    flex: none;
    text-align: right;
  }
  .text_list .title {
    margin-right: 10px;
  }
}

/*// CUSTOMER_SERVICE */

/* SEND02 */
.input_list {
  width: 100%;
}
.input_item {
  display: flex;
  align-items: flex-end;
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.input_item label {
  flex-grow: 1;
  font-size: 16px;
  font-weight: 700;
}
.input_item_txt {
  padding: 0 20px 10px;
  font-size: 14px;
  font-weight: 500;
}
.input_basic {
  width: 100%;
  height: 40px;
  padding: 10px 16px;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid var(--sub_gray);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  font-family: "mont";
}
.input_basic::placeholder {
  color: var(--main);
  font-weight: 700;
}
.button_img {
  position: absolute;
  right: 20px;
  bottom: 9px;
  width: 50px;
  height: 40px;
  background: transparent;
}
.note_title {
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.note_stitle {
  font-size: 14px;
  font-weight: 500;
  padding-top: 14px;
}
/*// SEND02 */

/* SEND03 */
.txt_sender {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.drop_arrow_img {
  transform: rotate(90deg);
  margin: 0 auto;
  display: block;
}
.addr_send {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--line);
  font-size: 14px;
  font-weight: 400;
  padding: 14px 10px;
  word-break: break-all !important;
}
.confirm_text_center {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-align: center;
}
/*// SEND03 */

/* SEND_PIN */
.send_info {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.send_sinfo {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.pinnumber {
  margin-right: 4px;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  text-align: center;
  background-color: var(--line);
  padding-top: 15px;
}
.pinnumber:last-child {
  margin-right: 0;
}
.send_button_pin {
  color: #000;
  width: 33%;
  font-weight: 700;
  padding: 20px 40px;
  margin-bottom: 2px;
  border-radius: 10px;
  outline: none;
  border: none;
  background-color: transparent;
  font-size: 26px;
}
.reset_txt {
  font-size: 18px;
  font-weight: 700;
}
.pin_active {
  background-color: var(--main);
}
.number_box {
  margin-top: 60px;
}
.number_box input::placeholder {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.comp_btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 768px;
}
.send_next_button {
  background-color: var(--inactive);
  color: #fff;
}
.send_next_button.active {
  background-color: var(--main);
}
/*// SEND_PIN */

.complete_title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  padding: 20px 0;
}

/* 220801 이메일 등록인증 퍼블리싱 : NBR  */
.aute_comp {
  padding: 20px;
  margin-bottom: 30px;
}
.aute_comp p {
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}
/*// 220801 이메일 등록인증 퍼블리싱 : NBR  */

/*#################### // NBR ####################*/

/*#################### NJH ####################*/

/* send > send  : 2022-07-13 : NJH */
.send_wrap {
  padding: 0 20px;
}
/* .copy_btn {max-width: 200px; min-height: unset; padding:8px 0;} */
.copy_btn {
  max-width: 200px;
  min-height: unset;
  padding: 8px 10px;
}
.align_end {
  align-items: flex-end;
}
.send_box {
  padding: 10px;
  margin-top: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.send_box span {
  color: var(--gray);
}
.coin_select {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--orange);
  border-radius: 5px;
  font-size: 16px;
}
.coin_select option {
  width: 100%;
  color: var(--orange);
}
.send_box li {
  padding: 10px;
  border-bottom: 1px solid #e6e9f4;
}
.send_box li:last-child {
  border-bottom: none;
}
.quantity_input {
  display: block;
  width: 100%;
  height: 50px;
  padding-left: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.send_button {
  width: 33%;
  padding: 10px;
  margin-bottom: 2px;
  font-size: 20px;
  border-radius: 10px;
  background-color: #fff;
  color: var(--orange);
  outline: none;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* inventory 채굴 등록 페이지 - 인벤토리 */
.custom_select.inventory {
  width: 86px;
  padding: 10px 0;
  flex: none;
}
.filter_btn {
  width: 100%;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.filter_btn img {
  margin-bottom: -5px;
}
.custom_select.inventory .custom_select_option {
  width: 110px;
  height: unset;
  font-size: 14px;
  font-weight: 400;
  border: none;
  padding: 20px;
  left: -10px;
  z-index: 2;
}
.custom_select.inventory .custom_select_option li.active {
  font-weight: 800;
}
.search_bar {
  display: block;
  position: relative;
  width: 160px;
  height: 40px;
}
/* 160px(xd상 검색바 width) / 335px(기준 width 375px - (양쪽 여백 20px씩)*2 = 335px) * 100% = 47.76119402985075% */
.search_bar .input_box {
  height: 100%;
  margin-top: 0;
  font-size: 14px;
  border-radius: 20px;
  border: 1px solid var(--bg);
}
.search_bar .input_box:focus {
  border: 1px solid var(--main);
}
.search_icon {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}
.inventory_filter {
  width: max-content;
  margin-left: auto;
}
.inventory_filter li {
  height: 32px;
  padding: 4px 10px;
  font-size: 14px;
  border-radius: 8px;
  background-color: var(--bg);
  border: 1px solid #bec8cf;
  cursor: pointer;
  margin-right: 10px;
}
.inventory_filter li:last-child {
  margin-right: 0;
}
.inventory_filter li.active {
  color: #fff;
  background-color: #171725;
  border-color: #171725;
}
.inventory_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  padding: 20px;
  padding-bottom: 35px;
}
.inventory_list li {
  width: calc(50vw - 27.5px);
  max-width: 356.5px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(21, 34, 50, 0.08);
  display: flex;
  flex-direction: column;
}
/* booster_img 재생버튼 추가 관련 relative 추가 : 22.08.23 NBR */
.booster_img {
  position: relative;
  width: 100%;
  height: calc(50vw - 27.5px);
  max-height: 356.5px;
  background-color: lavender;
  object-fit: contain;
  cursor: pointer;
}
.booster_img > img {
  width: 100%;
  height: 100%;
}
.booster_img > video {
  width: 100%;
}
.booster_txt {
  padding: 20px 15px 15px 15px;
  background-color: #fff;
  min-height: 85px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.booster_txt p:last-child {
  color: #131523;
}
.booster_txt p:nth-child(2) {
  height: 38px;
}
.register_booster {
  height: 32px;
  font-size: 12px;
  line-height: 32px;
  margin-top: auto;
}
.toggle_booster {
  height: 32px;
  font-size: 12px;
  line-height: 32px;
  margin-top: auto;
}

/* 2022-08-23 : JJH 재구매 페이지 */
.popup_box.repurchase .popup_text {
  height: 300px;
  overflow: auto;
  display: block;
  overscroll-behavior: none;
}
.popup_box.repurchase .popup_desc {
  text-align: left;
}

.inventory_list.repurchase li {
  cursor: pointer;
}
.inventory_list.repurchase .booster_txt .amount {
  display: inline-block;
  padding: 4px 8px;
  margin-bottom: 10px;
  border-radius: 5px;
  background-color: #f1f1f1;
  font-size: 10px;
  font-weight: 400;
}
.inventory_list.repurchase .booster_txt .title {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  margin-bottom: 4px;
}
.inventory_list.repurchase .booster_txt .author {
  font-size: 12px;
  font-weight: 400;
  color: #222;
  margin-bottom: 4px;
}
.inventory_list.repurchase .booster_txt .price {
  font-size: 12px;
  font-weight: 500;
  color: #7e7e7e;
}
.inventory_list.repurchase .booster_txt .price span {
  font-size: 16px;
  font-weight: 800;
  color: #ff8300;
}

.inventory_list.repurchase .booster_txt {
  padding: 20px 10px;
}
.inventory_list.repurchase .booster_txt p:nth-child(2) {
  height: auto;
}

.agreement_checkbox {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.repurchase_checkbox {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
}

.checkbox_mockup {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #7e7e7e;
}

.checkbox_mockup.active {
  background: url("../img/svg/icon_checked.svg") center;
  border: 1px solid transparent;
}

/*#################### // NJH ####################*/

/*220801 후원인 추가 : SJW */
.jisa_b {
  background-color: #dc4500;
}
.jibu_b {
  background-color: #01005e;
}

.jisa_info {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #dc4500;
  margin-right: 40px;
  margin-left: 10px;
}

.jibu_info {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #01005e;
  margin-right: 40px;
  margin-left: 10px;
}

.center_wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.center_wrap img {
  width: 34px;
  height: 34px;
}
.center_wrap2 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.line {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mail_btn {
  width: 100%;
  border-radius: 10px;
  background-image: -webkit-linear-gradient(top, #ff8300, #fd3a1d);
  font-size: 16px;
  font-weight: 700;
  font-family: "noto";
  color: #fff;
  cursor: pointer;
  padding: 10px 0;
}
.swiper_box {
  padding: 0 20px;
}
.nft_img {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin: 0 auto;
}
.nft_img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}
.nft_swiper {
  padding: 10px 0 30px;
}
.line_bar {
  width: 100%;
  border: 1px solid #ededed;
  margin-bottom: 10px;
}
.swiper-pagination-bullet-active {
  background-image: -webkit-linear-gradient(top, #ff8300, #fd3a1d);
}

/* 220810 트리구조 변경 */
.user_level {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  min-height: 100px;
}

.user_levelinfo {
  background: #fbfbfb;
  padding: 40px 0;
  text-align: center;
  border: 1px solid #e6e9f4;
  height: 100px;
  width: 98px;
  font-family: "mont";
  font-weight: 700;
  color: #171725;
}
.level_img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
}
.level_img img {
  width: 100%;
}
.star_txt {
  font-size: 14px;
  font-family: "mont";
  font-weight: 500;
  color: #5a607f;
  text-align: center;
  padding-top: 6px;
}
.level_imgwrap {
  padding: 18px 22px 0;
  background: #fff;
  height: 100px;
  border: 1px solid #e6e9f4;
  border-left: none;
  flex-grow: 1;
}
/* .center_box { display: flex; justify-content: center; align-items: center; flex-grow: 1; background: #fff; min-height:50px; border:1px solid #E6E9F4; } */
.center_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  background: #fff;
  min-height: 50px;
  border: 1px solid #e6e9f4;
  border-top: none;
  border-left: none;
}
.center_box_fixed_layout {
  width: calc((100% - 98px) / 2);
}
.center_levelinfo {
  background: #fbfbfb;
  padding: 14px 0;
  text-align: center;
  border: 1px solid #e6e9f4;
  height: 50px;
  width: 98px;
  border-top: none;
}
.jisa_one,
.jibu_one {
  width: 24px;
  height: 24px;
  background: #f0142f;
  font-size: 10px;
  font-family: "noto";
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-right: 10px;
}
.jibu_one {
  background: #9a71ff;
}
.jisa_txt {
  font-size: 14px;
  font-family: "noto";
  color: #5a607f;
  font-weight: 500;
}

.tree_imgbox {
  position: relative;
}
.tree_wrap {
  width: 130px;
  display: inline-block;
  word-break: break-all;
}
.tree_level_icon {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 888;
}
.tree_user_box {
  position: relative;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  background: #30333a;
  padding: 28px 10px 10px;
  color: #fff;
  font-family: "mont";
  font-weight: 700;
  font-size: 14px;
}

.jisa_box {
  position: absolute;
  width: 24px;
  height: 100%;
  top: 0;
  left: 0;
  background: #f0142f;
  z-index: 899;
}

.jibu_box {
  position: absolute;
  width: 24px;
  height: 100%;
  top: 0;
  left: 0;
  background: #9a71ff;
  z-index: 899;
}

.tree_pd10 {
  padding: 10px !important;
}

.tree_pt40 {
  padding-top: 40px !important;
}

.tree_name_box {
  padding: 10px 10px 4px;
  text-align: left;
  color: #ff8300;
  font-size: 12px;
  font-family: "noto";
  font-weight: 700;
}
.tree_amount_box {
  padding: 0 10px;
  text-align: left;
  font-family: "mont";
  font-size: 12px;
  font-weight: 500;
  color: #131523;
}
.tree_date_box {
  font-family: "mont";
  font-size: 10px;
  font-weight: 500;
}
.tree_datelevelbox {
  display: flex;
  justify-content: space-between;
  padding: 0 10px 10px;
  align-items: flex-end;
}
.tree_leve_box {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-family: "noto";
  font-weight: 700;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.general_grade {
  background: #e6e6ea;
  color: #5a607f;
}
.jibu_grade {
  background: #9a71ff;
  color: #fff;
}
.jisa_grade {
  background: #f0142f;
  color: #fff;
}
.mt50 {
  margin-top: 50px;
}
.tree_name {
  position: relative;
  z-index: 990;
}

.tree_list ul.no_pt {
  padding-top: 0;
}
.tree_list_test {
  padding: 20px;
}
.tree_list_test ul {
  position: relative;
  display: flex;
  padding-top: 20px;
}
.tree_list_test li {
  text-align: center;
  position: relative;
  padding: 50px 5px 0 5px;
}
.tree_list_test a {
  display: inline-block;
  color: #000;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgb(21 34 50 / 8%);
  width: 110px;
}
/*li 단독속성 (ul의 지정요소가 그 부모의 유일한 자식요소인 경우) */
.tree_list_test li:only-child {
  padding-top: 0;
  margin: auto;
}
/* after, before 이벤트 */
.tree_list_test li::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 50%;
  border-top: 2px solid #333;
  width: 50%;
  height: 18px;
  z-index: 999;
}
.tree_list_test li::after {
  content: "";
  position: absolute;
  top: 10px;
  border-top: 2px solid #333;
  width: 50%;
  height: 18px;
  right: auto;
  left: 50%;
  border-left: 2px solid #333;
  z-index: 999;
}
.tree_list_test li:only-child::after {
  display: none;
}
.tree_list_test li:only-child::before {
  display: none;
}
.tree_list_test li:first-child::before {
  border: none;
}
.tree_list_test li:last-child::after {
  border: none;
}
.tree_list_test li:last-child::before {
  border-right: 2px solid #333;
  border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
}

.tree_list_test li:first-child::after {
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
}
.tree_list_test ul ul::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  border-left: 2px solid #333;
  width: 0;
  height: 20px;
}
.userinfo_box {
  border-radius: 0 0 6px 7px;
  background: #fff;
}
.select_li select {
  min-width: 58px;
  background: url(../img/svg/icon_arrow_up.svg) no-repeat 98% 50%;
  font-size: 14px;
  font-family: "noto";
  font-weight: 700;
  margin-right: 20px;
}
.select_li .input_box {
  height: 40px;
  padding: 0;
  margin-top: 0;
  border: none;
  margin-right: 6px;
}
.user_level .search_bar {
  margin-left: 20px;
}
/* hover 이벤트 */
.tree_list_test .tree_imgbox:hover {
  outline: 3px solid #ff8300;
  border-radius: 8px;
  box-shadow: 0 1px 10px rgb(255 128 0 / 50%);
}
.tree_list_test .tree_imgbox:hover > .tree_user_box {
  background-image: -webkit-linear-gradient(top, #ff8300, #fd3a1d);
  box-shadow: 0 0 15px rgba(255, 0, 0, 1);
}
.tree_list_test li a:hover + ul li::after,
.tree_list_test li a:hover + ul li::before,
.tree_list_test li a:hover + ul::before,
.tree_list_test li a:hover + ul ul::before {
  border-color: #ff8000;
} /*선 전체*/
.tree_list_test li a:hover + ul .tree_user_box {
  background: #ffda58;
  color: #131523;
}
.tree_list_test li a:hover + ul a {
  outline: 3px solid #ff8300;
}
.tree_list_test li a:hover + ul a {
  background: #ffda58;
  box-shadow: 0 1px 10px rgb(255 128 0 / 50%);
}

.cau-text {
  color: var(--red);
  font-size: 12px;
  display: inline-block;
  margin-top: 8px;
}

/*두번째 자식*/
/* .tree_list_test li a:hover+ul > li > ul .tree_user_box {background: #FFF2E5; color:#131523;} */
.tree_list_test li a:hover + ul > li > ul .tree_user_box {
  background: #fff2e5;
  color: #131523;
}
/* hover 이벤트 */
/* .tree_list_test ul li:first-child:nth-last-child(1) {
  padding-top:120px;
} */

.one_level {
  outline: 2px solid #ff8300;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: "noto";
  font-weight: 700;
  color: #fff;
  width: 94px;
  background-image: -webkit-linear-gradient(top, #ff8300, #fd3a1d);
  height: 38px;
  border-radius: 8px 8px 0 0;
}

.two_level {
  outline: 2px solid #ff8300;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: "noto";
  font-weight: 700;
  color: #131523;
  width: 94px;
  background: #ffda58;
  height: 38px;
  border-radius: 8px 8px 0 0;
}

.three_level {
  outline: 2px solid #ff8300;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: "noto";
  font-weight: 700;
  color: #131523;
  width: 94px;
  background: #fff2e5;
  height: 38px;
  border-radius: 8px 8px 0 0;
}

/* //220810 트리구조 변경 */

/*220811 send1 페이지 클래스 변경*/
.send_span {
  width: 112px;
  word-break: keep-all;
}
.p60 {
  padding-top: 50px !important;
}
.p40 {
  padding-top: 40px !important;
}
.tp10 {
  padding-top: 10px !important;
}
/*Textarea*/
.textareabox {
  width: 100%;
  margin-top: 10px;
  resize: none;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  font-family: "noto";
  font-size: 15px;
  font-weight: 400;
  border: 1px solid #bec8cf;
}
.list_container ul .no_bottom {
  border-bottom: 0;
}
/*220803 로그인페이지 내 EYE 추가 */
.pass_show,
.pass_show_re {
  position: relative;
}

/* 220823 nft 재생버튼 추가 관련 클래스 추가 */
.auto_btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 50;
}
.change_pwd {
  text-align: center;
  text-decoration: underline;
}
.pass_show img,
.pass_show_re img {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
}

.send-nft .footer {
  position: absolute;
  bottom: 0;
}

.btns-box {
  display: flex;
  gap: 4px;
}

@media screen and (max-width: 767px) {
  .nft_img {
    height: 180px;
  }
  .tab_container_j {
    font-size: 15px;
  }
}

@media screen and (max-width: 500px) {
  .history_container li {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
