body {
  font-family: "Pretendard Variable", sans-serif;
}

/* body {
  font-family: "Maplestory" !important;
}

@font-face {
  font-family: "Maplestory";
  src: url("/assets/app_hyup/fonts/Maplestory Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
} */

/* globals.css 등에 추가 */
@keyframes border-glow {
  0% {
    box-shadow: 0 0 0px rgba(59, 130, 246, 0.4), 0 0 0px rgba(168, 85, 247, 0.4);
  }
  50% {
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6),
      0 0 12px rgba(168, 85, 247, 0.6);
  }
  100% {
    box-shadow: 0 0 0px rgba(59, 130, 246, 0.4), 0 0 0px rgba(168, 85, 247, 0.4);
  }
}

#swal2-title {
  font-size: 22px !important;
}
.animate-border-glow {
  animation: border-glow 2s ease-in-out infinite;
}

.navigation {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  color: #222222;
  border: 1px solid #e9e9e9;
  background: #fff;
}

.navigation a {
  padding: 14px;
  transition: all 0.4s;
}

.navigation a:hover {
  background: #f3f3f3;
}

/* header, footer */
.mo_view {
  display: none;
}

header.header_1 {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 1px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

.border-sm {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.bg-sm {
  background-color: #3571e5;
  color: #fff;
}

.header_top {
  background-color: #1c3a66;
}
.header_top_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
.header_top_left_menu {
  display: flex;
}
.header_top_left_menu a {
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  padding: 0 16px;
  transition: 0.2s;
}
.header_top_left_menu a.header_top_logo {
  padding: 0;
  margin-right: 16px;
}
.header_top_left_menu a:not(.header_top_logo):hover {
  background: rgba(255, 255, 255, 0.2);
}

.header_top_right_menu {
  color: #fff;
  display: flex;
}
.header_top_right_menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 400;
  gap: 4px;
  transition: 0.2s;
}
.header_top_right_menu a span {
  font-weight: bold;
}
.header_top_right_menu a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.header_top_right_menu a svg {
  width: 20px;
  fill: #fff;
}

.header_bottom_inner {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_bottom_logo_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_bottom_logo {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header_bottom_txt_logo {
  width: 100px;
  display: block;
}
.header_bottom_mo_menu svg {
  width: 20px;
  fill: #fff;
  display: block;
}
.header_bottom_menu {
  font-size: 13px;
  display: flex;
  font-weight: 500;
}
.header_bottom_menu > a {
  height: 64px;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  gap: 4px;
  position: relative;
}
.header_bottom_menu > a:hover {
  background: #ededed;
}
.header_bottom_menu > div {
  height: 64px;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  gap: 4px;
  position: relative;
  cursor: pointer;
}
.header_bottom_menu > div:hover {
  background: #ededed;
}
.header_bottom_menu > div svg {
  width: 12px;
}

.sec_depth_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px 0;
  visibility: collapse;
  opacity: 0;
  transition: 0.2s;
  width: max-content;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
}

@media screen and (min-width: 993px) {
  .header_bottom_menu > div:hover .sec_depth_wrap {
    display: block;
    visibility: visible;
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  /* 데스크탑 스타일 */
  .sell_game_box li,
  .add_server_list li,
  .add_server_list li {
    font-size: 14px !important;
  }
}

.header_bottom_menu .sec_depth_wrap.active {
  display: block;
  visibility: visible;
  opacity: 1;
}

.sec_depth_wrap a {
  display: block;
  padding: 0 16px;
  line-height: 48px;
  transition: 0.2s;
  font-weight: 400;
}
.sec_depth_wrap a:hover {
  background: #ededed;
}

.mo_menu_wrap {
  visibility: collapse;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.mo_menu_wrap.active {
  visibility: visible;
}
.mo_menu_bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.46);
  overflow: hidden;
  position: relative;
  transition: 0.3s all;
  opacity: 0;
}
.mo_menu_wrap.active .mo_menu_bg {
  opacity: 1;
}
.mo_menu {
  position: absolute;
  top: 0;
  right: -100%;
  width: 256px;
  height: 100%;
  transition: 0.3s;
  background: #fff;
}
.mo_menu_wrap.active .mo_menu {
  right: 0%;
}

.mo_menu_logo_wrap {
  padding: 15px 10px;
}
.mo_menu_logo_wrap a img {
  display: block;
  width: 80px;
}

.mo_menu_my_wrap {
  padding: 20px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mo_menu_my {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.mo_menu_row {
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  line-height: 20px;
}
.mo_menu_row a {
  font-weight: 600;
}
.mo_menu_row .blue {
  color: #0281ec;
}
.mo_menu_row .red {
  color: #f85477;
}

.mo_link_wrap {
  padding: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mo_link_wrap a {
  display: block;
  font-size: 12px;
  padding: 0 8px;
  line-height: 40px;
  transition: 0.3s;
}
.mo_link_wrap a:hover {
  background: rgba(0, 0, 0, 0.12);
}

.mo_btn_wrap {
  padding: 8px;
}
.mo_btn_wrap a {
  display: block;
  text-align: center;
  line-height: 36px;
  background: #3f51b5;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

footer.footer_1 {
  background: rgb(248, 248, 248);
  padding: 0 20px;
  text-align: center;
  font-size: 11px;
  min-height: 210px;
}
.footer_link_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_link_wrap a {
  margin: 8px 0;
  padding: 0 16px;
  line-height: 36px;
  border-radius: 4px;
  font-weight: 500;
  transition: 0.3s;
}
.footer_link_wrap a:hover {
  background: rgba(0, 0, 0, 0.12);
}
.footer_address_wrap {
  padding: 16px 0;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.8);
}

#wrap {
  /* padding-top: 104px; */
  min-height: calc(100dvh - 302px);
}

@media screen and (max-width: 992px) {
  .pc_view {
    display: none;
  }
  .mo_view {
    display: block;
  }
  .header_top {
    display: none;
  }
  .header_bottom_img_logo {
    width: 20px;
  }
  .header_bottom_txt_logo {
    width: 80px;
  }
  .header_bottom_inner {
    display: block;
    padding: 0;
  }
  .header_bottom_logo_wrap {
    height: 40px;
    background: #1c3a66;
    padding: 0 32px;
  }
  .header_bottom_menu {
    padding: 0 16px;
  }
  .header_bottom_menu > a {
    height: 56px;
  }
  .header_bottom_menu > div {
    height: 56px;
  }
  .header_bottom_menu > div svg {
    width: 10px;
  }
  #wrap {
    /* padding-top: 96px; */
    min-height: calc(100dvh - 210px);
  }
  .search_link {
    width: fit-content !important;
    min-width: 55px !important;
    font-size: 13px !important;
    padding: 6px 8px !important;
  }
}

/* trade */
.trade_page_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1288px;
  padding: 10px 20px;
  margin: 0 auto;
}
.trade_side {
  width: 200px;
}
.trade_mian {
  width: calc(100% - 212px);
}

.trade_my {
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
}
.trade_id {
  margin: 8px;
  margin-top: 0;
  padding: 4px 16px;
  padding-top: 8px;
  line-height: 39px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.trade_id_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  font-size: 13px;
  font-weight: bold;
  height: 40px;
  color: rgba(0, 0, 0, 0.87);
}
.trade_id_row a.blue {
  color: #0281ec;
  font-weight: 700;
}
.trade_id_row a.red {
  color: #f85477;
  font-weight: 700;
}

.trade_id_link {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.trade_id_link a {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  font-size: 12px;
  transition: 0.3s;
}
.trade_id_link a.blue {
  background: #e1f5fe;
}
.trade_id_link a.red {
  background: #fce4ec;
}
.trade_id_link a:hover {
  background: rgba(0, 0, 0, 0.12);
}

.trade_trade a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  height: 36px;
  font-size: 12px;
  transition: 0.3s;
}
.trade_trade a:hover {
  background: rgba(0, 0, 0, 0.12);
}
.trade_trade a span b {
  color: #0281ec;
  font-weight: bold;
}

.side_fix_Wrap.active {
  position: fixed;
  top: 114px;
  left: 50%;
  margin-left: -480px;
  width: 200px;
}

.trade_side_menu_wrap {
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  font-size: 12px;
  margin-bottom: 12px;
}
.trade_side_menu_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  padding: 0 16px;
}
.trade_side_menu_link:hover {
  background: rgba(0, 0, 0, 0.12);
}
.trade_side_menu_link svg {
  width: 7px;
}

.trade_side_menu {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.trade_side_menu div {
  display: none;
}

.trade_side_menu_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  transition: 0.3s;
}
.trade_side_menu_btn:hover {
  background: rgba(0, 0, 0, 0.12);
}
.trade_side_menu_btn.active {
  color: #1976d2;
}
.trade_side_menu_btn.active:hover {
  background: #e1f5fe;
}
.trade_side_menu_btn svg {
  width: 14px;
  transition: 0.3s;
  fill: rgba(0, 0, 0, 0.54);
}
.trade_side_menu_btn.active svg {
  transform: rotate(-180deg);
}

li.active {
  background: #e1f5fe;
  color: #0f409f;
}

.trade_side_menu_a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  transition: 0.3s;
}
.trade_side_menu_a:hover {
  background: rgba(0, 0, 0, 0.12);
}
.trade_side_menu_btn_wrap {
  padding: 8px 10px;
}
.trade_side_menu_btn_wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  background: #3f51b5;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.trade_page_title {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.trade_page_title span {
  color: #3f51b5;
  font-size: 18px;
  font-weight: bold;
}
.trade_page_title h2 {
  color: #3f51b5;
  font-size: 18px;
  font-weight: bold;
}
.trade_page_title a {
  height: 28px;
  border: 1px solid #f85477;
  color: #f85477;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  font-size: 11px;
  border-radius: 4px;
}

.mywrite_page_title {
  color: #3f51b5;
  font-size: 20px;
  font-weight: bold;
  padding: 8px 0px;
}

.mywrite_cate {
  padding: 8px 0px;
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.mywrite_cate a {
  padding: 0 12px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.87);
  transition: 0.3s;
}
.mywrite_cate a.active {
  color: #3d5afe;
  background: #d6dcfb;
}
.mywrite_cate a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.mywrite_cate a.active:hover {
  background: #d6dcfb;
}

.trade_banner {
  margin-bottom: 12px;
  display: block;
}
.trade_banner img {
  width: 100%;
}

.trade_server_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.trade_server_wrap a {
  width: 20%;
  height: 36px;
  background: #eee;
  font-size: 13px;
  min-width: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trade_server_wrap a:hover {
  background: #ddd;
}
.trade_server_wrap a.active {
  color: #fff;
  background: #005dde;
}
.trade_server_wrap a.active:hover {
  color: #fff;
  background: #0056ce;
}

.none_list {
  padding: 64px 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-size: 15px;
}
.none_list svg {
  width: 30px;
  fill: rgba(0, 0, 0, 0.4);
}

.search_link_wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.search_link_row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.87);
}
.search_link_title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 16px;
  color: #3f51b5;
  font-size: 15px;
  font-weight: 600;
  margin-right: 14px;
}
.search_link_title a {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.search_link_title a::before {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.search_link_title a:hover::before {
  background: rgba(0, 0, 0, 0.05);
}
.search_link_title a svg {
  width: 14px;
  display: block;
  fill: rgba(0, 0, 0, 0.6);
}
.search_link_title a .search_link_info {
  position: absolute;
  bottom: calc(100% + 15px);
  left: -52px;
  width: max-content;
  background: rgba(0, 0, 0, 0.5);
  color: #ddd;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 16px;
  border-radius: 4px;
  display: none;
}
.search_link {
  margin: 6px;
  padding: 8px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(0, 0, 0, 0.7);
  transition: 0.3s;
  min-width: 62px !important;
  font-size: 15px;
  border-radius: 2px;
}
.search_link:hover {
  background: rgba(0, 0, 0, 0.05);
}

.search_link.active {
  background: #d6dcfb;
  color: #3d5afe;
}

.sell.active {
  border: 1px solid #93c5fd;
  background-color: #dbeafe;
  color: #3b82f6;
}

.buy.active {
  border: 1px solid #fca5a5;
  background-color: #fee2e2;
  color: #dc2626;
}

.search_link.active:hover {
  background: #d6dcfb;
}

.trade_board_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px;
}
.trade_board_title {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 6px;
}
.trade_board_title svg {
  width: 10px;
}
.trade_board_title_link {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}
.trade_board_title_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  height: 36px;
  border-radius: 4px;
  font-size: 13px;
}
.trade_board_title_link a.my_write_btn {
  border: 1px solid #777;
  color: rgba(0, 0, 0, 0.7);
}
.trade_board_title_link a.write_btn {
  background: #3f51b5;
  color: #fff;
}
.trade_board_info {
  text-align: right;
  line-height: 20px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
}

.broadcast_title {
  display: inline-block;
  border-radius: 4px 4px 0 0;
  line-height: 36px;
  padding: 0 16px;
  color: #fff;
  margin-bottom: -3px;
}
.broadcast {
}
.broadcast li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.broadcast li:last-of-type {
  border-bottom: none;
}
.broadcast li a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #e8eaf6;
  padding: 0 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
}

.premium_list_wrap {
  font-size: 13px;
  margin-bottom: 50px;
}
.premium_list_title {
  background: #e91e63;
  display: inline-block;
  border-radius: 4px 4px 0 0;
  line-height: 36px;
  padding: 0 16px;
  color: #fff;
  margin-bottom: -3px;
}
.premium_list {
  border: 3px solid #e91e63;
}
.premium_list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.premium_list li:last-of-type {
  border-bottom: none;
}
.premium_list li a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #e8eaf6;
  padding: 0 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
}
.premium_list2 {
}
.premium_list2 li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.premium_list2 li:last-of-type {
  border-bottom: none;
}
.premium_list2 li a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #e8eaf6;
  padding: 0 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
}

.trade_list_wrap {
  font-size: 13px;
  margin-bottom: 16px;
}
.trade_list {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.trade_list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.trade_list li:last-of-type {
  border-bottom: none;
}
.trade_list li a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.87);
  background: #fff;
}
.trade_list li a:hover {
  /* background: #ededed; */
}

.mywrite_wrap {
  font-size: 13px;
  margin-bottom: 16px;
}
.mywrite {
  border-top: 2px solid rgba(0, 0, 0, 0.87);
}
.mywrite li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mywrite li:last-of-type {
  border-bottom: none;
}
.mywrite li a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.87);
  background: #fff;
}
.mywrite li a:hover {
  background: #ededed;
}

.price_wrap {
  order: 1;
  padding-left: 16px;
  width: 138px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.trade_title_wrap {
  padding: 16px 16px 16px 0;
  /* width: calc(100% - 240px); */
  width: calc(100% - 320px);
}
.trade_title {
  margin-bottom: 4px;
}
.trade_title .sell {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border: 1px solid #93c5fd; /* 연한 파랑 테두리 */
  background-color: #dbeafe; /* 연한 파랑 배경 */
  color: #3b82f6; /* 파란 텍스트 */
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  min-width: 50px;
}

.trade_title .buy {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border: 1px solid #fca5a5; /* 연한 빨강 테두리 */
  background-color: #fee2e2; /* 연한 빨강 배경 */
  color: #dc2626; /* 진한 빨강 텍스트 */
  border-radius: 9999px; /* pill shape */
  font-size: 12px;
  font-weight: 600;
  min-width: 50px;
}

.trade_title .ok {
  padding: 0 8px;
  border: 1px solid #333;
  color: #333;
  font-size: 10px;
  line-height: 16px;
  display: inline-block;
  border-radius: 4px;
}

.trade_title_text {
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  display: block; /* span을 block으로 */
  max-width: 100%; /* 부모 영역 안에서만 표시 */
  white-space: nowrap; /* 줄바꿈 안함 */
  overflow: hidden; /* 넘치는 텍스트 숨김 */
  text-overflow: ellipsis; /* ... 으로 처리 */
}

.trade_name_wrap {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #6d6d6d;
}
.trade_name {
  margin-left: 4px;
}
.divide_line {
  border-left: 1px solid #9e9e9e;
  width: 1px;
  height: 16px;
  margin: 0 7px;
}
.trade_icon_wrap {
  width: 160px;
  padding-right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}
.trade_icon_wrap .pre {
  background: #e91e63;
  padding: 0 8px;
  font-size: 10px;
  border-radius: 4px;
  color: #fff;
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trade_icon_wrap .anj {
  padding: 0 8px;
  font-size: 10px;
  border-radius: 4px;
  width: 100%;
  height: 20px;
  border: 1px solid #9e9e9e;
  color: #9e9e9e;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trade_icon_wrap .anj.on {
  color: #3f51b5;
  border-color: #3f51b5;
}

.search_form_row {
  display: flex;
  gap: 8px;
  padding: 0 12px;
  margin-bottom: 24px;
}
.search_select {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
  padding: 0 12px;
  display: flex;
  width: 33%;
}
.search_select select {
  border: none;
  height: 38px;
  margin: 0;
  padding: 0;
  width: 100%;
  outline: none;
  background: none;
}
.search_input {
  flex: 1 0 auto;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  padding: 0 12px;
}
.search_input input {
  flex: 1 0 auto;
  border: none;
  height: 38px;
  margin: 0;
  padding: 0;
  background: none;
  outline: none;
}
.search_input button {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  padding: 0 4px;
  cursor: pointer;
}
.search_input button img {
  width: 16px;
  filter: invert(45%) sepia(5%) saturate(34%) hue-rotate(317deg)
    brightness(101%) contrast(94%);
}

.odd-bg {
  background-color: #f9f9f9 !important;
}

.status-icon {
  align-self: center;
  width: 0.5rem;
  height: 0.5rem;
  border: 0.125rem solid #e0e5eb;
  border-radius: 50%;
}

.status-icon.active {
  background-color: #00bf75;
  border: none;
}

.page_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.page_wrap a {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.87);
}
.page_wrap a.active {
  background-color: #3f51b5 !important;
  color: #fff;
}
.page_wrap a svg {
  width: 10px;
  fill: #aaa;
}

.none_space {
  height: 24px;
}
.none_space_2 {
  height: 16px;
}
.none_space_3 {
  height: 8px;
}

@media screen and (max-width: 992px) {
  .trade_page_wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .trade_side {
    display: none;
  }
  .trade_mian {
    width: 100%;
  }
  .trade_server_wrap a {
    width: 25%;
  }
  .trade_board_title_wrap {
    gap: 16px;
  }
  .trade_board_title_wrap > div {
    width: 100%;
  }
  .premium_list li a {
    padding-top: 16px;
  }
  .trade_list li a {
    padding-top: 16px;
  }
  .mywrite li a {
    padding-top: 16px;
  }
  .price_wrap {
    order: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 4px;
  }
  .trade_title_wrap {
    padding-top: 0;
    width: calc(100% - 20px);
  }
  .trade_icon_wrap {
    margin-top: -40px;
  }
}

.trade_view_wrap {
  max-width: 730px;
  padding: 12px;
  margin: 0 auto;
}
.back_btn_wrap {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
  padding-right: 8px;
}
.back_btn_wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  color: #757575;
  border: 1px solid #757575;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 12px;
}
.trade_view_title {
  color: #9e9e9e;
  font-size: 13px;
}
.trade_view_title .title {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  line-height: 30px;
}
.trade_view_name {
  padding: 16px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.87);
}
.trade_name_wrap_2 {
  display: flex;
}
.trade_name_wrap_2 svg {
  width: 12px;
  margin-right: 4px;
  fill: #757575;
}
.my_write_btn_wrap {
  padding-bottom: 16px;
}
.my_write_btn_wrap button {
  height: 28px;
  color: #204342;
  border: 1px solid #204342;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 12px;
  background: none;
}
.my_write_btn_wrap button.blue {
  color: #4c5eb9;
  border-color: #4c5eb9;
}
.my_write_btn_wrap button.red {
  color: #e9443b;
  border-color: #e9443b;
}
.my_write_btn_wrap div {
  color: #e9443b;
  font-size: 14px;
}
.my_write_btn_wrap div span {
  color: #4c5eb9;
}
.trade_view_table {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.87);
  font-size: 13px;
}
.trade_view_table_tr {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.trade_view_table_th {
  background: #e8eaf6;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}
.trade_view_table_td {
  width: calc(100% - 55px);
  padding: 8px 16px;
  line-height: 1.5;
}
.trade_view_table_td > div:first-of-type {
  margin-bottom: 8px;
}
.tr_blue_color {
  color: #0281ec;
  font-weight: 900;
}
.trade_cnt_wrap {
  display: flex;
  gap: 8px;
  align-items: center;
  line-height: normal;
}
.trade_cnt_wrap svg {
  width: 12px;
  fill: #757575;
}
.trade_cnt {
  display: flex;
  align-items: center;
}
.trade_cnt a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.trade_cnt input {
  padding: 0;
  margin: 0;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  height: 26px;
  text-align: center;
  width: 50px;
}
.order_cnt_meso_wrap {
  font-weight: 900;
  font-size: 20px;
  color: #3f51b5;
}
#total_price_val,
#total_price_val2 {
  font-weight: 1000;
  font-size: 25px;
  color: rgb(63, 81, 181);
}
.trade_view_btn_wrap {
  display: flex;
  gap: 6px;
}
.trade_view_btn_wrap a.buy_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3f51b5;
  color: #fff;
  height: 36px;
  padding: 0 16px;
  border-radius: 4px;
}

.trade_view_btn_wrap a.chat_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3f51b5;
  color: #fff;
  height: 36px;
  padding: 0 16px;
  border-radius: 4px;
}

.chat_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3f51b5;
  color: #fff;
  height: 36px;
  padding: 0 16px;
  border-radius: 4px;
}

.trade_view_btn_wrap a.wish_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  color: #757575;
  border: 1px solid #757575;
  gap: 4px;
  transition: 0.3s;
}
.trade_view_btn_wrap a.wish_btn.active {
  color: #3f51b5;
  border: 1px solid #3f51b5;
}
.trade_view_btn_wrap a.wish_btn svg {
  width: 14px;
  fill: #757575;
  transition: 0.3s;
}
.trade_view_btn_wrap a.wish_btn.active svg {
  fill: #3f51b5;
}

.view_content_wrap {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}
.view_content_title {
  font-size: 19px;
  font-weight: 700;
}
.view_content p {
  color: #222;
  margin: 10px 0;
}

@media screen and (max-width: 992px) {
}

/* notice */
.notice_page_wrap {
  max-width: 730px;
  margin: 0 auto;
}

.notice_cate_wrap {
  display: flex;
  background: #3f51b5;
  color: #aaa;
}
.notice_cate_wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  font-size: 13px;
  transition: 0.3s;
  position: relative;
}
.notice_cate_wrap a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.notice_cate_wrap a.active {
  color: #fff;
}
.notice_cate_wrap a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: 0;
  left: 0;
}
.notice_title_wrap {
  padding: 16px 16px 8px;
  color: #37474f;
}
.notice_title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.notice_title_info_row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.notice_title_info_row a {
  font-size: 11px;
  border: 1px solid #3f51b5;
  color: #3f51b5;
  padding: 0 12px;
  line-height: 26px;
  border-radius: 4px;
  margin-left: 4px;
  transition: 0.3s;
}
.notice_title_info_row a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.notice_list_wrap {
  margin: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: none;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 16px;
}

.notice_list_title {
  display: flex;
  line-height: 46px;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.notice_list_title .notice_list_th:first-of-type {
  width: 70%;
  text-align: center;
}
.notice_list_title .notice_list_th:last-of-type {
  width: 30%;
  text-align: center;
}

.notice_list_tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.notice_list_tr a {
  display: flex;
  font-size: 13px;
  align-items: center;
}
.notice_list_tr .notice_list_td:first-of-type {
  width: 70%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px;
}
.notice_list_tr .notice_list_td:last-of-type {
  width: 30%;
  text-align: center;
}

.faq_list_wrap {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.7);
  margin: 8px;
}
ul.tabs {
  display: flex;
  position: relative;
  font-size: 13px;
}
ul.tabs.simsin {
  margin-bottom: 20px;
}
.faq_list_wrap ul.tabs {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.tab-link-bottom {
  position: absolute;
  height: 2px;
  background-color: #1976d2;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
ul.tabs li {
  cursor: pointer;
  padding: 0 12px;
  transition: 0.3s;
  line-height: 48px;
}

ul.tabs.simsin li {
  min-width: 90px;
  text-align: center;
}

ul.tabs li.current {
  color: #1976d2;
}
ul.tabs li:hover {
  background: rgba(0, 0, 0, 0.05);
}
ul.tabs li.current:hover {
  background: #e1f5fe;
}

ul.tabs2 {
  display: flex;
  position: relative;
  font-size: 13px;
}
ul.tabs2.simsin {
  margin-bottom: 20px;
}
.faq_list_wrap ul.tabs2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.tab-link-bottom2 {
  position: absolute;
  height: 2px;
  background-color: #1976d2;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
ul.tabs2 li {
  cursor: pointer;
  padding: 0 12px;
  transition: 0.3s;
  line-height: 48px;
}

ul.tabs2.simsin li {
  min-width: 90px;
  text-align: center;
}

ul.tabs2 li.current {
  color: #1976d2;
}
ul.tabs2 li:hover {
  background: rgba(0, 0, 0, 0.05);
}
ul.tabs2 li.current:hover {
  background: #e1f5fe;
}

.tab-content {
  display: none;
}

.tab-content.current {
  display: inherit;
}

.tab2-content {
  display: none;
}

.tab2-content.current {
  display: inherit;
}

.faq_list li {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  cursor: pointer;
}
.question {
  display: flex;
  justify-content: space-between;
}
.question > div {
  display: flex;
  align-items: center;
  width: calc(100% - 12px);
  padding-right: 16px;
  gap: 10px;
  word-break: keep-all;
}
.question > div > img {
  width: 16px;
  filter: invert(45%) sepia(5%) saturate(34%) hue-rotate(317deg)
    brightness(101%) contrast(94%);
}
.question > img {
  width: 12px;
  filter: invert(45%) sepia(5%) saturate(34%) hue-rotate(317deg)
    brightness(101%) contrast(94%);
  transition: 0.3s;
}
.question.active > img {
  transform: rotate(180deg);
}
.answer {
  padding-top: 16px;
  display: none;
  word-break: keep-all;
}
/* .answer span{} */

@media screen and (max-width: 992px) {
}

.mile_list_wrap {
  max-width: 730px;
  margin: 0 auto;
  padding: 8px;
  background-color: #fff;
}
.aile_top {
  padding: 25px 0 20px;
  text-align: center;
  color: #333;
  font-size: 18px;
  font-weight: bold;
}
.mile_my_wrap {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #f8f9fb;
  padding: 20px 15px;
  font-size: 12px;
  margin-bottom: 36px;
}
.mile_my {
  display: flex;
  margin-bottom: 20px;
}
.mile_my > div {
  width: 50%;
  text-align: center;
  padding: 10px;
}
.mile_my > div:first-of-type {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.mile_my .blue_b {
  font-size: 16px;
  color: #0281ec;
  text-align: center;
  font-weight: 900;
  margin-bottom: 4px;
}
.mile_my .red_b {
  font-size: 16px;
  color: #dc4516;
  text-align: center;
  font-weight: 900;
  margin-bottom: 4px;
}

.mile_cate div {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.mile_cate div:first-of-type {
  margin-bottom: 4px;
}
.mile_cate div a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  height: 30px;
  border-radius: 15px;
  padding: 0 9px;
}

.list_title_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.list_title_wrap div {
  color: #333;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
}
.list_title_wrap select {
  max-width: 140px;
  width: 40%;
}
.mile_list {
  border-top: 2px solid #000;
  font-size: 14px;
}
.mile_list_head {
  background: #e9f3ff;
  display: flex;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mile_list_head div {
  padding: 12px 0;
}
.mile_list_head div:nth-of-type(1) {
  width: 19%;
}
.mile_list_head div:nth-of-type(2) {
  width: 15%;
}
.mile_list_head div:nth-of-type(3) {
  width: 44%;
}
.mile_list_head div:nth-of-type(4) {
  width: 22%;
}

.mile_list_head_2 {
  background: #e9f3ff;
  display: flex;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mile_list_head_2 div {
  padding: 12px 0;
}
.mile_list_head_2 div:nth-of-type(1) {
  width: 25%;
}
.mile_list_head_2 div:nth-of-type(2) {
  width: 27%;
}
.mile_list_head_2 div:nth-of-type(3) {
  width: 15%;
}
.mile_list_head_2 div:nth-of-type(4) {
  width: 16%;
}
.mile_list_head_2 div:nth-of-type(5) {
  width: 17%;
}

.mile_list {
  margin-bottom: 30px;
}
.mile_list_row {
  display: flex;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mile_list_row > div {
  padding: 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mile_list_row > div:nth-of-type(1) {
  width: 19%;
  flex-direction: column;
  gap: 4px;
}
.mile_list_row > div:nth-of-type(2) {
  width: 15%;
  color: #d34c4c;
}
.mile_list_row > div:nth-of-type(3) {
  width: 44%;
  color: rgba(0, 0, 0, 0.87);
}
.mile_list_row > div:nth-of-type(4) {
  width: 22%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mile_list_row_2 {
  display: flex;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mile_list_row_2 > div {
  padding: 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mile_list_row_2 > div:nth-of-type(1) {
  width: 25%;
  flex-direction: column;
  gap: 4px;
}
.mile_list_row_2 > div:nth-of-type(2) {
  width: 27%;
  color: rgba(0, 0, 0, 0.87);
}
.mile_list_row_2 > div:nth-of-type(3) {
  width: 15%;
  color: #d34c4c;
  font-weight: 400;
}
.mile_list_row_2 > div:nth-of-type(4) {
  width: 16%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d34c4c;
  font-weight: 900;
}
.mile_list_row_2 > div:nth-of-type(5) {
  width: 17%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title_span {
  color: rgba(0, 0, 0, 0.6);
  display: none;
}
.sangtae {
  border: 1px solid;
  color: #fff;
  padding: 4px 18px;
  font-size: 12px;
}
.mile_list_row_2 .sangtae {
  padding: 4px 8px;
}

.sangtae.sangtae_silver {
  background: #666;
  border-color: #666;
}
.sangtae.sangtae_green {
  background: #64832e;
  border-color: #64832e;
}
.sangtae.sangtae_orange {
  background: #e46c05;
  border-color: #e46c05;
}
.sangtae.sangtae_blue {
  background: #1758b3;
  border-color: #1758b3;
}
.sangtae.sangtae_red {
  background: #e52218;
  border-color: #e52218;
}
.mile_mo_only {
  display: none;
}

.mile_in_title {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.mile_in_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 5px solid #eb620f;
  margin-bottom: 2px;
  box-sizing: border-box;
}
.mile_in_info {
  font-size: 12px;
  border: 1px solid #d9d9d9;
  background-color: #f1f7f9;
  padding: 15px 10px;
}
.mile_in_info_title {
  color: crimson;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.mile_in_info p {
  line-height: 20px;
  padding-left: 16px;
  position: relative;
}
.mile_in_info p::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 4px;
  width: 8px;
  height: 2px;
  background: #eb620f;
}

.mile_in_info_2 {
  font-size: 12px;
  border: 1px solid #d9d9d9;
  background-color: #f1f7f9;
  padding: 15px 10px;
  margin-bottom: 30px;
}
.mile_in_info_title_2 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.mile_in_info_2 p {
  line-height: 20px;
  padding-left: 16px;
  position: relative;
}
.mile_in_info_2 p::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 4px;
  width: 8px;
  height: 2px;
  background: #eb620f;
}

.mile_in_info_link {
  display: none;
  padding: 8px;
  margin-left: 15px;
  margin-top: 8px;
  background: #fff;
  font-size: 14px;
}
.mile_in_info_link.active {
  display: inline-block;
}

.mile_table {
  width: 100%;
  border-top: 2px solid rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}
.mile_table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mile_table th {
  padding: 12px 0;
  font-size: 13px;
  font-weight: 700;
  background: #f7fcff;
  color: #333;
  width: 90px;
}
.mile_table td {
  padding: 12px 0;
  padding-left: 8px;
  width: calc(100% - 90px);
  font-size: 12px;
  font-weight: 600;
  color: #777;
}
.mile_label_wrap {
  display: flex;
  gap: 4px;
}
.mile_label {
  display: flex;
  align-items: center;
  gap: 2px;
}
.mile_label input {
  margin: 0;
}
.mile_select {
  margin: 0;
  padding: 0 5px;
  height: 30px;
  font-size: 12px;
  color: #777;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  font-weight: 600;
}

.mile_input_row {
  display: flex;
  align-items: center;
  gap: 2px;
}
.mile_input_row input {
  margin: 0;
  padding: 0 5px;
  height: 30px;
  font-size: 12px;
  color: #777;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  font-weight: 600;
}
.mile_td {
  padding-top: 2px;
}
.mile_td span {
  color: #ca2929;
  font-size: 15px;
  font-weight: 900;
}
.account_link {
  display: inline-block;
  padding: 0 8px;
  line-height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.result {
  color: #f36f21;
  font-size: 15px;
  font-weight: 700;
}

.mile_btn_wrap {
  text-align: right;
}
.mile_btn_wrap button {
  border: 1px solid #555;
  color: #555;
  background: #fff;
  width: 80px;
  height: 30px;
  cursor: pointer;
}

.mile_btn_wrap button.red_btn {
  border-color: #e51b13;
  background: #e51b13;
  color: #fff;
}
.mile_btn_wrap button.bk_btn {
  border-color: #555;
  background: #555;
  color: #fff;
}

.card {
  display: none;
}
.fee {
  display: none;
}

.card_pop_cover {
  display: none;
}
.card_pop_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.card_pop {
  background: #fff;
  padding: 20px;
}
.card_pop_title {
  font-size: 16px;
  margin-bottom: 8px;
}
.card_pop table {
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 13px;
}
.card_pop table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.card_pop table tr th {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  padding: 12px;
}
.card_pop table tr td {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  padding: 12px;
}

@media screen and (max-width: 992px) {
  .mile_list_head {
    display: none;
  }
  .mile_list_head_2 {
    display: none;
  }

  .mile_list_row {
    flex-wrap: wrap;
    margin-bottom: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  .mile_list_row > div:nth-of-type(1) {
    order: 1;
    width: 70%;
    background: #f6f6f6;
    font-size: 12px;
    padding: 12px;
    flex-direction: row;
    justify-content: flex-start;
  }
  .mile_list_row > div:nth-of-type(2) {
    order: 4;
    width: 100%;
    background: #f6f6f6;
    display: flex;
    justify-content: space-between;
    padding: 12px;
    font-size: 12px;
  }
  .mile_list_row > div:nth-of-type(3) {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding: 12px;
  }
  .mile_list_row > div:nth-of-type(4) {
    order: 2;
    width: 30%;
    background: #f6f6f6;
    justify-content: flex-end;
    font-size: 12px;
    padding: 12px;
  }

  .mile_list_row_2 {
    flex-wrap: wrap;
    margin-bottom: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  .mile_list_row_2 > div:nth-of-type(1) {
    order: 1;
    width: 70%;
    background: #f6f6f6;
    font-size: 12px;
    padding: 12px;
    flex-direction: row;
    justify-content: flex-start;
  }
  .mile_list_row_2 > div:nth-of-type(2) {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 12px;
    font-size: 14px;
  }
  .mile_list_row_2 > div:nth-of-type(3) {
    order: 4;
    width: 100%;
    background: #f6f6f6;
    justify-content: space-between;
    padding: 12px 12px 4px 12px;
    font-size: 12px;
  }
  .mile_list_row_2 > div:nth-of-type(4) {
    order: 5;
    width: 100%;
    background: #f6f6f6;
    justify-content: space-between;
    padding: 0 12px 12px 12px;
    font-size: 12px;
  }
  .mile_list_row_2 > div:nth-of-type(5) {
    order: 2;
    width: 30%;
    background: #f6f6f6;
    justify-content: flex-end;
    font-size: 12px;
    padding: 12px;
  }

  .mile_mo_only {
    display: inherit;
  }
  .sangtae {
    padding: 4px 12px;
  }
  .mile_list_row_2 .sangtae {
    padding: 4px 8px;
  }
  .sangtae.sangtae_orange {
    color: #e46c05;
    border-color: #e46c05;
    background: #fff;
  }
  .sangtae.sangtae_blue {
    color: #1758b3;
    border-color: #1758b3;
    background: #fff;
  }
  .sangtae.sangtae_red {
    color: #e52218;
    border-color: #e52218;
    background: #fff;
  }
  .title_span {
    display: inherit;
  }

  .card_pop {
    padding: 8px;
  }
  .card_pop table {
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 13px;
    color: #444;
  }
  .card_pop table tr th {
    padding: 4px;
  }
  .card_pop table tr td {
    padding: 4px;
  }
}

.lv_wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 30px;
}
.lv_title {
  padding: 24px 16px;
  margin-bottom: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 18px;
  font-weight: 700;
  color: #37474f;
}
.lv_title.bg_1 {
  background-image: url("/img/lv_bg_1.jpg");
}
.lv_title.bg_2 {
  background-image: url("/img/lv_bg_2.jpg");
}
.lv_title.bg_3 {
  background-image: url("/img/lv_bg_3.jpg");
}
.lv_title.bg_4 {
  background-image: url("/img/lv_bg_4.jpg");
}
.lv_title.bg_5 {
  background-image: url("/img/lv_bg_5.jpg");
}
.lv_title.bg_6 {
  background-image: url("/img/lv_bg_6.jpg");
}
.lv_title.bg_7 {
  background-image: url("/img/lv_bg_7.jpg");
}
.lv_title.bg_8 {
  background-image: url("/img/lv_bg_8.jpg");
}

.out_sec_info .title {
  padding: 16px 8px 4px;
  font-size: 18px;
  color: #37474f;
  font-weight: 700;
}
.out_sec_info .content {
  color: rgb(69, 90, 100);
  padding: 0 8px 24px;
  line-height: 1.5;
}
.out_sec_info .content .reset {
  font-weight: 700;
}

.lv_section {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 24px 20px;
  background: #fff;
}

.lv_section_2 {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 16px;
  background: #fff;
}

.lvup_form_title {
  color: #37474f;
  font-size: 19px;
  font-weight: 700;
}
.union_form_title {
  color: #37474f;
  font-size: 19px;
  font-weight: 700;
  padding: 4px 12px;
}
.lvup_form_sub_title {
  padding: 16px 16px 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-weight: 500;
}
.lvup_input_row {
  padding: 16px;
}

.lvup_name_input {
  border: 1px solid #9e9e9e;
  position: relative;
  max-width: 316px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 8px;
}
.lvup_name_input.active {
  border-color: #4caf50;
}
.lvup_name_input input {
  position: relative;
  background: none;
  border: none;
  width: 100%;
  box-sizing: border-box;
  height: 30px;
  z-index: 1;
}
.lvup_name_input .lvup_name_tag {
  position: absolute;
  top: 50%;
  left: 10px;
  background: #fff;
  color: #777;
  transition: 0.3s;
  font-size: 16px;
  transform: translateY(-50%);
}
.lvup_name_input input:focus {
  outline: none;
}

.lvup_name_input:has(input:focus) {
  border-color: #4caf50;
  border-width: 2px;
}

.lvup_name_input input:focus + .lvup_name_tag {
  color: #4caf50;
  top: 0;
  font-size: 12px;
}
.lvup_name_input.active .lvup_name_tag {
  color: #4caf50;
  top: 0;
  font-size: 12px;
}

.range_input_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
}
.range_result_ip_wrap {
}
.range_result_ip {
  width: 40px;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #444;
  padding: 8px 0;
  transition: 0.3s;
}
.range_result_ip:focus {
  outline: none;
  border-color: #4caf50;
}

.lvup_chk_row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
}
.lvup_chk_row label {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(0, 0, 0, 0.87);
  padding: 0 16px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  transition: 0.3s;
  font-size: 14px;
}
.lvup_chk_row label input {
  display: none;
}
.lvup_chk_row label svg {
  width: 0;
  height: 0;
  fill: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
}
.lvup_chk_row label:has(input:checked) {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}
.lvup_chk_row label input:checked + svg {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}

.lvup_radio_row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  padding-left: 32px;
}
.lvup_radio_row label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
}
.lvup_radio_row label input {
  appearance: none;
  border: 2px solid #777;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 0;
}
.lvup_radio_row label input + span {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 5px;
  left: 5px;
  border-radius: 50%;
}
.lvup_radio_row label input:checked {
  border: 2px solid #4caf50;
}
.lvup_radio_row label input:checked + span {
  background: #4caf50;
}

.lvup_btn_wrap {
  padding: 16px;
}
.lvup_btn_wrap button {
  width: 100%;
  max-width: 316px;
  padding: 0 16px;
  height: 36px;
  border: none;
  background: #4caf50;
  border-radius: 4px;
  color: #fff;
}

.complete_wrap {
  line-height: 1.5;
}
.complete_wrap_title {
  padding-top: 16px;
  color: #37474f;
  font-size: 22px;
  font-weight: 900;
}
.complete_wrap p {
  padding-left: 8px;
  font-size: 16px;
}

.complete_wrap p span {
  font-size: 22px;
  font-weight: 900;
}

.lv_section_title {
  padding: 32px 8px 8px;
  color: #37474f;
  font-size: 20px;
  font-weight: 700;
}

.lvup_table {
  width: 100%;
}
.lvup_table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.lvup_table tr:last-of-type {
  border-bottom: none;
}
.lvup_table tr th {
  text-align: left;
  height: 48px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
}
.lvup_table tr th:first-of-type {
  padding: 0 16px;
  width: 20%;
}
.lvup_table tr td {
  font-size: 13px;
  height: 48px;
  color: rgba(0, 0, 0, 0.87);
}
.lvup_table tr td:first-of-type {
  padding: 0 16px;
}
.lvup_table tbody tr:hover {
  background: rgba(0, 0, 0, 0.05);
}

.table_row {
  display: flex;
  flex-wrap: wrap;
}
.table_row > div {
  width: 50%;
  padding: 0 16px;
}
.table_mo {
  display: none;
}
.lvup_info {
  padding-top: 8px;
  padding-right: 8px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.87);
  text-align: right;
}

.simsin_table {
  width: 100%;
}
.simsin_table thead tr th {
  text-align: left;
  min-height: 48px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
  padding: 0 12px;
}
.simsin_table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.simsin_table tbody tr:last-of-type {
  border-bottom: none;
}

.simsin_table tr td {
  font-size: 13px;
  height: 48px;
  color: rgba(0, 0, 0, 0.87);
  padding: 0 12px;
}
.simsin_table tbody tr:hover {
  background: rgba(0, 0, 0, 0.05);
}

.union_table th {
  height: 48px;
}

.d-md-none {
  display: none;
}

.lv_title_link_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lv_title_link_wrap a {
  width: 30%;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-size: 13px;
}
.lv_title_link_wrap a:first-of-type {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
.lv_title_link_wrap a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.lv_title_link_wrap a.active {
  width: 40%;
  background: #455a64;
  color: #fff;
}
.lv_title_link_wrap a.active:hover {
  background: #678390;
}

.lv_section_link_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px 0;
}
.lv_section_link_wrap a {
  font-size: 13px;
  padding: 0 20px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
}
.lv_section_link_wrap.blue a {
  color: #1976d2;
}
.lv_section_link_wrap.red a {
  color: #ff5252;
}
.lv_section_link_wrap a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.lv_section_link_wrap.blue a:hover {
  background: #e1f5fe;
}
.lv_section_link_wrap.red a:hover {
  background: #fce4ec;
}

.lv_section_title.flex_txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lv_section_title.flex_txt span img {
  width: 10px;
  filter: invert(49%) sepia(8%) saturate(32%) hue-rotate(131deg) brightness(91%)
    contrast(90%);
}
.lv_section_title.flex_txt span:last-of-type {
  font-size: 12px;
}

.slide_toggle_wrap {
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.87);
  margin-bottom: 4px;
}
.slide_toggle_wrap a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}
.slide_toggle_wrap a.active {
  padding: 24px;
}

.slide_toggle_wrap a span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.slide_toggle_wrap a svg {
  width: 16px;
  fill: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
}
.slide_toggle_wrap a > svg.active {
  transform: rotate(-180deg);
}

.slide_toggle {
  padding: 0 24px 16px;
  line-height: 1.5;
  display: none;
}
.slide_toggle img {
  width: 10px;
  filter: invert(38%) sepia(90%) saturate(1812%) hue-rotate(10deg)
    brightness(103%) contrast(101%);
}
.slide_toggle img.only_img {
  width: auto;
  filter: none;
}

.font-weight-bold {
  font-weight: bold;
}
.mt-2 {
  margin-top: 8px;
}

.muto_wrap {
  display: flex;
  justify-content: space-between;
}
.muto_wrap > div {
  width: 49.5%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 8px;
}
.muto_mo {
  display: none;
}

.union_link_wrap {
  padding: 0 8px 12px;
}
.union_link_title {
  margin-bottom: 4px;
}
.union_link_title span {
  font-weight: 700;
  color: #546e7a;
}
.union_link {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.union_link a {
  height: 28px;
  padding: 0 12px;
  border: 1px solid;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  transition: 0.3s;
}

.out_sec_info .union_link_wrap:nth-of-type(2) .union_link_title span {
  color: rgb(84, 110, 122);
}
.out_sec_info .union_link_wrap:nth-of-type(2) .union_link a {
  border-color: #546e7a;
  color: #546e7a;
}
.out_sec_info .union_link_wrap:nth-of-type(2) .union_link a:hover {
  background: rgba(84, 110, 122, 0.1);
}

.out_sec_info .union_link_wrap:nth-of-type(3) .union_link_title span {
  color: rgb(216, 27, 96);
}
.out_sec_info .union_link_wrap:nth-of-type(3) .union_link a {
  border-color: rgb(216, 27, 96);
  color: rgb(216, 27, 96);
}
.out_sec_info .union_link_wrap:nth-of-type(3) .union_link a:hover {
  background: rgba(216, 27, 96, 0.1);
}

.out_sec_info .union_link_wrap:nth-of-type(4) .union_link_title span {
  color: rgb(25, 118, 210);
}
.out_sec_info .union_link_wrap:nth-of-type(4) .union_link a {
  border-color: rgb(25, 118, 210);
  color: rgb(25, 118, 210);
}
.out_sec_info .union_link_wrap:nth-of-type(4) .union_link a:hover {
  background: rgba(25, 118, 210, 0.1);
}

.out_sec_info .union_link_wrap:nth-of-type(5) .union_link_title span {
  color: rgb(67, 160, 71);
}
.out_sec_info .union_link_wrap:nth-of-type(5) .union_link a {
  border-color: rgb(67, 160, 71);
  color: rgb(67, 160, 71);
}
.out_sec_info .union_link_wrap:nth-of-type(5) .union_link a:hover {
  background: rgba(67, 160, 71, 0.1);
}

.out_sec_info .union_link_wrap:nth-of-type(6) .union_link_title span {
  color: rgb(142, 36, 170);
}
.out_sec_info .union_link_wrap:nth-of-type(6) .union_link a {
  border-color: rgb(142, 36, 170);
  color: rgb(142, 36, 170);
}
.out_sec_info .union_link_wrap:nth-of-type(6) .union_link a:hover {
  background: rgba(142, 36, 170, 0.1);
}

.out_sec_info .union_link_wrap:nth-of-type(7) .union_link_title span {
  color: rgb(245, 124, 0);
}
.out_sec_info .union_link_wrap:nth-of-type(7) .union_link a {
  border-color: rgb(245, 124, 0);
  color: rgb(245, 124, 0);
}
.out_sec_info .union_link_wrap:nth-of-type(7) .union_link a:hover {
  background: rgba(245, 124, 0, 0.1);
}
/* 챗 */

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.left {
  display: flex;
  justify-content: left;
  align-items: center;
}
.right {
  display: flex;
  justify-content: right;
  margin-right: 10px;
  align-items: center;
}
.chat {
  display: flex;
}
.chat .right_time {
  color: #a0a0a0;
  font-weight: bold;
  margin-top: 4px;
  margin-left: 6px;
}
.chat .left_time {
  color: #a0a0a0;
  font-weight: bold;
  margin-top: 4px;
  margin-right: 6px;
}
.profile {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
  margin: 8px;
  text-align: center;
}
.profile a {
  padding: 10px 0px;
  display: inline-block;
}
.chat_list {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  word-break: break-word;
  white-space: pre-wrap;
  max-width: 300px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  line-height: 26px;
}
.chat_img {
  width: 250px;
}
.infoline .chat_list {
  max-width: 500px;
}
.seller {
  background-color: #477ee3;
  color: #fff;
}
.buyer {
  background-color: grey;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .lv_section {
    padding: 16px 8px;
  }
  .lvup_name_input {
    max-width: 100%;
  }
  .lvup_btn_wrap {
    text-align: center;
  }
  .lvup_table tr th:first-of-type {
    width: 30%;
  }
  .table_mo {
    display: inline;
  }
  .table_row > div {
    width: 100%;
  }

  .hidden-sm-and-down {
    display: none;
  }
  .d-md-none {
    display: block;
  }
  .union_table .d-md-none {
    display: table-cell;
  }
  .union_table thead tr.d-md-none {
    display: table-row;
  }
  .muto_pc {
    display: none;
  }
  .muto_mo {
    display: block;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 8px;
  }
  .muto_mo .simsin_table td {
    padding: 16px;
    line-height: 2;
  }
}

@property --val {
  syntax: "<integer>";
  inherits: true;
  initial-value: 0;
}

label.rnage_lb {
  --c: #4caf50; /* slider color */
  --g: round(0.3em, 1px); /* the gap */
  --l: round(0.2em, 1px); /* line thickness*/
  --s: round(1.3em, 1px); /* thumb size*/
  --t: round(8px, 1px); /* tooltip tail size */
  --r: round(5px, 1px); /* tooltip radius */

  timeline-scope: --thumb-view;
  position: relative; /* No, It's not useless so don't remove it (or remove it and see what happens) */
  font-size: 12px;
}

input.rnage_ip {
  width: 100%;
  max-width: 120px;
  height: var(--s); /* needed for Firefox*/
  --_c: color-mix(in srgb, var(--c), #4caf50 var(--p, 0%));
  appearance: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  font-size: inherit;
}
input.rnage_ip:focus-visible,
input.rnage_ip:hover {
  --p: 25%;
}
input.rnage_ip:active,
input.rnage_ip:focus-visible {
  --_b: var(--s);
}
/* chromium */
input.rnage_ip[type="range" i]::-webkit-slider-thumb {
  height: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 var(--_b, var(--l)) inset var(--_c);
  border-image: linear-gradient(90deg, var(--_c) 50%, #ababab 0) 0 1 /
    calc(50% - var(--l) / 2) 100vw/0 calc(100vw + var(--g));
  -webkit-appearance: none;
  appearance: none;
  transition: 0.3s;
  anchor-name: --thumb;
  view-timeline: --thumb-view inline;
}
/* Firefox */
input.rnage_ip[type="range"]::-moz-range-thumb {
  height: var(--s);
  width: var(--s);
  background: none;
  border-radius: 50%;
  box-shadow: 0 0 0 var(--_b, var(--l)) inset var(--_c);
  /* border-image: linear-gradient(90deg,var(--_c) 50%,#ababab 0) 0 1/calc(50% - var(--l)/2) 100vw/0 calc(100vw + var(--g)); */
  -moz-appearance: none;
  appearance: none;
  transition: 0.3s;
  anchor-name: --thumb;
  view-timeline: --thumb-view inline;
}
output.rnage_op {
  position-anchor: --thumb;
  position: absolute;
  position-area: top;
  inset: 0 -4em;
  color: #fff;
  font-weight: bold;
  font-family: sans-serif;
  text-align: center;
  padding-block: 0.5em;
  width: 30px;
  border-bottom: var(--t) solid #0000;
  border-radius: var(--r) / var(--r) var(--r) calc(var(--r) + var(--t))
    calc(var(--r) + var(--t));
  --_m: 100% / var(--t) var(--t) no-repeat;
  --_g: 100%, #0000 99%, #000 102%;
  mask: linear-gradient(#000 0 0) padding-box,
    radial-gradient(100% 100% at 100% var(--_g)) calc(50% + var(--t) / 2)
      var(--_m),
    radial-gradient(100% 100% at 0 var(--_g)) calc(50% - var(--t) / 2) var(--_m);
  animation: range linear both;
  animation-timeline: --thumb-view;
  animation-range: entry 100% exit 0%;
}
output.rnage_op.bottom {
  position-area: bottom;
  border-top: var(--t) solid #0000;
  border-bottom: none;
  border-radius: var(--r) / calc(var(--r) + var(--t)) calc(var(--r) + var(--t))
    var(--r) var(--r);
  --_m: 0% / var(--t) var(--t) no-repeat;
  --_g: 0%, #0000 99%, #000 102%;
}
output.rnage_op:before {
  content: counter(num);
  counter-reset: num var(--val);
}

@keyframes range {
  0% {
    background: #4caf50;
    --val: var(--max);
  }
  100% {
    background: #4caf50;
    --val: var(--min);
  }
}

@supports not (anchor-name: ---) {
  output.rnage_op {
    display: none;
  }
}

.mypage_wrap {
  max-width: 730px;
  padding: 12px;
  margin: 0 auto;
}
.mypage_title {
  padding: 20px 0;
  font-size: 19px;
  color: #37474f;
  font-weight: 700;
  text-align: center;
}
.join_day {
  font-size: 13px;
  padding: 10px 0;
}
.join_day span {
  color: #e91e63;
}
.mypage_info_wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}
.my_grade {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.my_grade .txt {
  font-weight: 700;
  font-size: 14px;
}
.bronze {
  color: #843c0c;
}
.my_grade .point {
  font-size: 12px;
  color: #0281ec;
}

.my_grade a {
  position: relative;
}
.my_grade a svg {
  width: 14px;
  display: block;
  fill: rgba(0, 0, 0, 0.6);
}

.grade_info {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(calc(-50% - 45px));
  width: max-content;
  max-width: 90vw;
  background: rgba(97, 97, 97, 0.9);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  padding: 5px 16px;
  display: none;
}

.grade_info1 {
  position: absolute;
  top: calc(100% + 8px);
  width: max-content;
  max-width: 90vw;
  background: rgba(97, 97, 97, 0.9);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  padding: 5px 16px;
  display: none;
}

.my_review_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
}
.my_review_wrap span {
  color: #ef1c18;
}
.star_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 12px;
}
.star_wrap img {
  width: 20px;
}
.my_review_wrap a {
  padding: 0 10px;
  height: 20px;
  border: 1px solid #777;
  color: #777;
  font-size: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.my_review_wrap a:hover {
  background: rgba(0, 0, 0, 0.12);
}

.my_inj_wrap {
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 2px;
}

.my_inj_wrap .inj {
  padding: 1px 7px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.3);
}
.my_inj_wrap .inj.active {
  color: #0281ec;
  border-color: #0281ec;
}

.review_write_btn_wrap {
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.review_write_btn_wrap button {
  height: 44px;
  color: #fff;
  padding: 0 20px;
  font-size: 13px;
  background: #2196f3;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.review_write_btn_wrap button.review_write_btn {
  background: #272727;
}

.my_btn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 16px 0;
}
.my_btn_wrap a {
  border: 1px solid #0f409f;
  color: #0f409f;
  font-size: 13px;
  padding: 0 12px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.mypage_section {
  padding: 16px 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.my_mile_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  font-size: 13px;
}
.my_mile_row > span {
  font-weight: 700;
}
.my_mile_row div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.my_mile_row div .blue {
  color: #0281ec;
  font-weight: 700;
}
.my_mile_row div .red {
  color: #f85477;
  font-weight: 700;
}
.my_mile_row div a.btn {
  padding: 0 10px;
  height: 20px;
  border: 1px solid #777;
  color: #777;
  font-size: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.my_name {
  color: #3f51b5;
  font-size: 15px;
}
.num {
  color: #3f51b5;
  font-weight: 700;
}
.ing_row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 13px;
}

.tong_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.tong_row > div {
  width: calc(50% - 4px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 24px 16px;
  text-align: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.87);
}
.tong_row div div:first-of-type {
  padding-bottom: 4px;
}
.tong_row div div:last-of-type {
  font-size: 14px;
}
.tong_row div div span {
  color: #ef1c18;
}
.tong_info {
  letter-spacing: -1px;
  text-align: center;
  color: rgba(0, 0, 0, 0.87);
}
.mypage_top_btn {
  display: flex;
}
.mypage_top_btn a {
  border: 1px solid #757575;
  padding: 0 12px;
  height: 28px;
  font-size: 13px;
  color: #757575;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modify_wrap {
  max-width: 600px;
  padding: 12px;
  margin: 0 auto;
}
.modify_table {
  width: 100%;
  margin-bottom: 30px;
}
.modify_table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.modify_table tr td {
  padding: 0 16px;
  height: 48px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.87);
}
.modify_table tr td:first-of-type {
  width: 110px;
}
.modify_table tr td:last-of-type {
  width: 68px;
}
.modify_table tr td a {
  font-size: 10px;
  color: #3f51b5;
  border: 1px solid #3f51b5;
  width: 36px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.modify_btn_wrap {
  display: flex;
  justify-content: space-between;
}
.modify_btn_wrap a {
  height: 44px;
  padding: 0 20px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}
.modify_btn_wrap a:first-of-type {
  background: #272727;
  color: #fff;
}
.modify_btn_wrap a:last-of-type {
  background: #3f51b5;
  color: #fff;
}

.black_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  display: none;
}
.modify_pop_wrap {
  background: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  border-radius: 8px;
  padding: 16px 24px;
  width: 90%;
  max-width: 500px;
  display: none;
}
.modify_pop_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  padding-bottom: 20px;
}
.modify_pop_title a svg {
  width: 16px;
  display: block;
  fill: rgba(0, 0, 0, 0.6);
}

.modify_pop_input {
  padding: 0 8px;
}
.modify_pop_input input {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  padding: 0 16px;
  outline: none;
  box-sizing: border-box;
}
.chk_txt {
  text-align: right;
  /* padding: 2px 16px; */
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
}
.modify_pop_textarea {
  padding: 0 8px;
}
.modify_pop_textarea textarea {
  width: 100%;
  height: 150px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  padding: 12px;
  outline: none;
  box-sizing: border-box;
}
.modify_pop_info {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  padding: 4px;
}

.modify_pop_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3f51b5;
  background: #fff;
  border: 1px solid #3f51b5;
  width: 100%;
  height: 44px;
  font-size: 13px;
}

.modify_pop_btn button {
  background: #3f51b5;
  color: #fff;
  width: 100%;
  height: 44px;
  border: none;
  font-size: 13px;
}

.phone_pop_input_wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.phone_pop_input_wrap .phone_pop_input {
  width: calc(100% - 68px);
}
.phone_pop_input_wrap .phone_pop_input input {
  width: 100%;
  height: 28px;
  padding: 0 16px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  outline: none;
}
.phone_pop_input_wrap a {
  width: 60px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  color: #fff;
  background: #3f51b5;
  border-radius: 4px;
}

.basic_radio_row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 8px;
}
.basic_radio_row.nop {
  padding: 0;
}
.basic_radio_row label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
}
.basic_radio_row label input {
  appearance: none;
  border: 2px solid #777;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 0;
}
.basic_radio_row label input[type="checkbox"] {
  border-radius: 4px;
}
.basic_radio_row label input + span {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 5px;
  left: 5px;
  border-radius: 50%;
}
.basic_radio_row label input[type="checkbox"] + span {
  width: 10px;
  height: 10px;
  border-radius: 4px;
}
.basic_radio_row label input:checked {
  border: 2px solid #3f51b5;
}
.basic_radio_row label input:checked + span {
  background: #3f51b5;
}

@media screen and (max-width: 992px) {
  .tong_row > div {
    width: 100%;
  }
}

.sell_list_wrap {
  max-width: 854px;
  padding: 12px;
  margin: 0 auto;
}

.sell_list_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  font-size: 20px;
  font-weight: 700;
}
.sell_list_title a {
  border: 1px solid #757575;
  padding: 0 12px;
  height: 28px;
  font-size: 13px;
  color: #757575;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list_num {
  font-size: 20px;
  color: #dd1313;
  font-weight: 900;
  padding: 12px;
}

.sell_list_search_wrap {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}
.sell_list_search_wrap input {
  width: 100px;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
.sell_list_search_wrap button {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.6);
}

.sell_list table {
  width: 100%;
}
.sell_list table thead tr {
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  background: #e9f3ff;
}
.sell_list table thead tr th {
  padding: 12px 10px;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}
.sell_list table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.sell_list table tr:hover {
  background: rgba(0, 0, 0, 0.05);
}

.sell_list table tbody tr td {
  font-size: 14px;
  padding: 20px 10px 20px 10px;
  letter-spacing: -0.5px;
  color: #777;
  text-align: center;
}
.sell_list table tbody tr td:nth-of-type(2) {
  text-align: left;
}

.sell_list table tbody tr td p.gcate {
  font-size: 13px;
}
.sell_list table tbody tr td p.subject {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.sell_list table tbody tr td p.price {
  color: #ca2929;
  font-weight: 900;
  line-height: 1.5;
}
.sell_list table tbody tr td p.price_2 {
  color: #aaa;
}

.sell_list table tbody tr td span {
  display: block;
  padding: 4px 8px;
  font-size: 12px;
  text-align: center;
  color: #fff;
}
.sell_list table tbody tr td span.red {
  background: #e52319;
}
.sell_list table tbody tr td span.blue {
  background: #1658b3;
}
.sell_list table tbody tr td span.green {
  background: #77933c;
}
.sell_list table tbody tr td span.orange {
  background: #e46c0a;
}

@media screen and (max-width: 992px) {
  .sell_list table thead tr th:nth-of-type(1) {
    display: none;
  }
  .sell_list table tbody tr td:nth-of-type(1) {
    display: none;
  }
  .sell_list table thead tr th:nth-of-type(3) {
    display: none;
  }
  .sell_list table tbody tr td:nth-of-type(3) {
    display: none;
  }

  .sell_list table thead tr th {
    padding: 8px;
  }
  .sell_list table tbody tr td {
    padding: 8px;
  }
}

.trade_detail_title {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.trade_detail_title a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 86px;
  height: 30px;
  gap: 4px;
  font-size: 13px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.trade_detail_sub {
  display: flex;
  gap: 4px 10px;
  flex-wrap: wrap;
  width: calc(100% - 90px);
}
.trade_detail_date_wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}
.trade_detail_date_wrap .date {
  font-size: 12px;
  color: #444;
}
.trade_detail_date_wrap .box {
  width: 80px;
  color: #fff;
  font-size: 12px;
  padding: 2px 0;
  text-align: center;
}
.trade_detail_date_wrap .box.blue {
  background: #1658b3;
}
.trade_detail_date_wrap .box.red {
  background: #e52319;
}
.trade_detail_date_wrap .box.green {
  background: #77933c;
}
.trade_detail_date_wrap .box.orange {
  background: #e46c0a;
}

.detail_in_title {
  padding-left: 20px;
  position: relative;
  color: #444;
  font-size: 16px;
  font-weight: bold;
}
.detail_in_title span {
  font-weight: 400;
}
.detail_in_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 5px solid #eb620f;
  margin-bottom: 2px;
  box-sizing: border-box;
}

.sangtae_img_wrap img {
  width: 100%;
}
.detail_table {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.87);
}
.detail_table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.detail_table th {
  width: 15%;
  padding: 12px 0;
  vertical-align: middle;
  text-align: center;
  background: rgba(0, 173, 243, 0.03);
  color: #333;
  font-size: 14px;
  letter-spacing: -1px;
  font-size: 13px;
  font-weight: 700;
}
.detail_table td {
  padding: 12px;
  word-break: keep-all;
}
.detail_row {
  display: none;
}
.detail_row.on {
  display: table-row;
}
.detail_cate {
  font-size: 12px;
  color: #2f5dc1;
}
.detail_subject {
  font-size: 14px;
  color: #666;
}
.detail_price {
  font-size: 13px;
  color: #666;
}
.table_link {
  font-size: 12px;
  padding: 3px 5px;
  background-color: #fff;
  font-weight: 500;
  border-radius: 5px;
  border: 1px solid #dee1e4;
  text-align: center;
  letter-spacing: -0.5px;
  color: #333;
}
.sell_link {
  font-size: 14px;
  font-weight: bold;
  color: #0281ec;
}

.detail_table td div.row {
  line-height: 1.5;
}
.detail_table td div.row img {
  vertical-align: text-top;
}

.buy_info_row {
  background: rgba(0, 173, 243, 0.03);
  border: 1px solid #e6e6e6;
  box-sizing: border-box;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #444;
}
.buy_info_link_wrap {
  padding: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.trade_on_btn {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #555;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
}

.buy_info_link_wrap a {
  width: 30%;
  max-width: 150px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #555;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
}
.buy_info_link_wrap a.red {
  background: #e51b13;
}
.sell_chat_btn {
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #43a5f5;
}

.cancel_r_label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(0, 0, 0, 0.6);
  padding: 4px 0;
}
.cancel_r_label input {
  margin: 0;
  padding: 0;
  width: 18px;
  height: 18px;
}

.login_wrap {
  max-width: 548px;
  padding: 12px;
  margin: 0 auto;
}
.logiin_top_img a {
  padding: 16px 0;
  display: block;
}
.logiin_top_img a img {
  width: 100%;
  display: block;
}
.login {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.login_title {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.login_content {
  padding: 32px;
}
.login_input input {
  width: 100%;
  box-sizing: border-box;
  height: 56px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 0 16px;
  font-size: 16px;
}

.login_chk_row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.login_chk_row label {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(0, 0, 0, 0.87);
}
.login_chk_row label input {
  accent-color: #666;
}

.login_btn {
  width: 100%;
  height: 50px;
  background: #3f51b5;
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 14px;
  cursor: pointer;
}
.login_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #fff;
  color: #3f51b5;
  border: 1px solid #3f51b5;
  border-radius: 0;
  font-size: 14px;
}

.find_wrap {
  max-width: 752px;
  padding: 12px;
  margin: 0 auto;
}
.find_title {
  text-align: center;
  color: #333;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 0;
}

.find_tab {
  display: flex;
  border: 1px solid #568deb;
  border-radius: 4px;
}
.find_tab a {
  width: 50%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  transition: 0.3s;
}
.find_tab a.active {
  background: #568deb;
  color: #fff;
}

.find_row {
}
.find_row > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.find_row > a svg {
  width: 14px;
  transition: 0.3s;
  fill: rgba(0, 0, 0, 0.6);
}
.find_row > a svg.active {
  transform: rotate(-180deg);
}
.find_row > a > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  color: #444;
}
.find_row > a > div span {
  color: #206bcd;
}

.find_info {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: #fbfbfb;
  padding: 40px 0;
}
.find_info > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.find_info div {
  font-weight: bold;
  color: #444;
  line-height: 1.5;
  text-align: center;
}
.find_info div span {
  font-weight: 400;
  font-size: 14px;
}
.find_info div a {
  width: 100%;
  max-width: 340px;
  height: 50px;
  color: #fff;
  background: #568deb;
  display: flex;
  justify-content: center;
  align-items: center;
}

.join_title {
  padding: 20px 0;
  font-size: 19px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 700;
}
.join_title p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 400;
}

.join_input_row {
}

.join_name_input {
  border-bottom: 1px solid #9e9e9e;
  position: relative;
  width: 100%;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}
.join_name_input.active {
  border-color: #1976d2;
}
.join_name_input.red {
  border-color: #ff5252;
}
.join_name_input input {
  position: relative;
  background: none;
  border: none;
  width: 100%;
  box-sizing: border-box;
  height: 30px;
  z-index: 1;
}
.join_name_input .join_name_tag {
  position: absolute;
  top: 50%;
  left: 2px;
  background: #fff;
  color: #777;
  transition: 0.3s;
  font-size: 16px;
  transform: translateY(-50%);
}
.join_name_input input:focus {
  outline: none;
}

.join_name_input:has(input:focus) {
  border-color: #1976d2;
  border-width: 2px;
}
.join_name_input.red:has(input:focus) {
  border-color: #ff5252;
}

.join_name_input input:focus + .join_name_tag {
  color: #1976d2;
  top: 0;
  font-size: 12px;
}
.join_name_input.red input:focus + .join_name_tag {
  color: #ff5252;
}
.join_name_input.active .join_name_tag {
  color: #1976d2;
  top: 0;
  font-size: 12px;
}
.join_name_input.red .join_name_tag {
  color: #ff5252;
}
.chk_info_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}
.chk_info {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
.red + .chk_info_wrap .chk_info {
  color: #ff5252;
}
.red + .chk_info_wrap .chk_txt {
  color: #ff5252;
}

.join_phone_row {
  display: flex;
  gap: 8px;
}
.join_phone_row > div {
  width: calc(100% - 68px);
}
.join_phone_row > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 28px;
  color: #fff;
  background: #3f51b5;
  border-radius: 4px;
  font-size: 11px;
  margin-top: 6px;
}
.join_phone_row > a.chk_link {
  background: #e82b62;
}

.agree_input_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  background: #f5f5f5;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
}
.agree_input_row.all {
  background: #e3f2fd;
  font-size: 15px;
  font-weight: bold;
}
.agree_input_row:nth-of-type(2n) {
  background: #fafafa;
}
.agree_input_row input {
  display: none;
}
.agree_input_row label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

.agree_input_row label svg {
  fill: rgba(255, 255, 255, 0);
  border: 2px solid #888;
  border-radius: 4px;
  width: 14px;
  height: 14px;
}
.agree_input_row.all label svg {
  border: 2px solid #666;
  width: 16px;
  height: 16px;
}

.agree_input_row input:checked + label svg {
  background: #1a76d2;
  border-color: #1a76d2;
  fill: rgba(255, 255, 255, 1);
}
.agree_input_row a {
  font-size: 11px;
  color: #5c6bc0;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
}
.agree_input_row a:hover {
  background: rgba(92, 107, 192, 0.1);
}
.join_btn {
  width: 100%;
  height: 40px;
  background: #3f51b5;
  color: #fff;
  border-radius: 4px;
  border: none;
}

.terms_wrap {
  max-width: 752px;
  margin: 0 auto;
  padding: 12px;
}
.tit_area h3 {
  color: #333;
  font-size: 20px;
  line-height: 25px;
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
}
.terms_wrap table {
  font-size: 13px;
  line-height: 1.5;
}
.f_666 {
  color: #666 !important;
}
.ln_h30 {
  line-height: 30px !important;
}
.fs16 {
  font-size: 16px !important;
  line-height: 1;
  color: #222;
}
.fs15 {
  font-size: 15px;
}
.fs14 {
  font-size: 14px;
}

.review_wrap {
  margin-bottom: 30px;
}

.review_title {
  text-align: center;
  color: #37474f;
  font-size: 20px;
  font-weight: 700;
}
.review_total_star {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  gap: 16px;
}
.review_total_star img {
  width: 30px;
}

.review_list {
  margin-bottom: 30px;
}
.review_list li {
  display: flex;
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  gap: 20px;
}
.review_profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.review_profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review_row {
  width: calc(100% - 60px);
}
.review_txt {
  color: rgba(0, 0, 0, 0.87);
}
.review_txt .review_date {
  margin-left: 6px;
  font-size: 11px;
}

.review_star {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 16px;
  gap: 4px;
  margin-bottom: 10px;
}
.review_star img {
  width: 16px;
}
.review_content {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}

.order_wrap {
  max-width: 752px;
  padding: 12px;
  margin: 0 auto;
}

.order_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  color: #444;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 2px solid #0281ec;
}
.order_title a {
  border: 1px solid #999;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 6px;
}
.order_table_wrap {
  margin-bottom: 24px;
}
.order_table_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
}
.order_table_wrap span {
  color: #e51b13;
  font-size: 13px;
}
.order_table table {
  border-top: 1px solid #000;
  width: 100%;
  font-size: 13px;
  color: #666;
  vertical-align: middle;
}
.order_table table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  line-height: 22px;
}
.order_table table tr th {
  padding: 10px 0 10px 20px;
  background: #f7fcff;
  text-align: left;
  width: 15%;
  color: #444;
  font-weight: 600;
}
.order_table table tr td {
  padding: 10px 0 10px 10px;
}
.order_table table tr td .red {
  color: #e51b13;
  font-size: 13px;
}
.order_table table tr td input[type="text"] {
  height: 30px;
  font-size: 13px;
  padding: 0 5px;
  line-height: 30px;
  border: 1px solid #c0c0c0;
  color: #555;
  vertical-align: middle;
}
.order_option_wrap {
  padding: 20px 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
}
.order_option_title {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}
.order_option_title button {
  font-size: 13px;
  border: 1px solid rgb(116, 116, 116);
  border-radius: 5px;
  color: rgb(116, 116, 116);
  padding: 0px 5px;
}

.order_option_wrap label {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: rgb(116, 116, 116);
}
.order_option_wrap label.blue {
  border: 1px solid #0281ec;
  background-color: #e8fcff;
  font-size: 16px;
  font-weight: bold;
  color: #444;
  padding: 20px;
}
.order_option_wrap label.red {
  border: 1px solid #f85477;
  background-color: #fdedfd;
  font-size: 16px;
  font-weight: bold;
  color: #444;
  padding: 20px;
}
.order_option_wrap label input[type="radio"] {
  padding: 0;
  margin: 0;
  margin-right: 10px;
}
.op_point {
  font-size: 18px;
  color: rgb(2, 129, 236);
}
.red .op_point {
  font-size: 18px;
  color: rgb(248, 84, 119);
}
.op_info {
  font-size: 13px;
  color: rgb(116, 116, 116);
}

.result_wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.result_wrap > div {
  width: calc(50% - 8px);
  padding: 20px;
}
.result_wrap .left_re {
  border: 2px solid #c7c7c7;
}
.result_wrap .right_re {
  border: 2px solid #0581ec;
  background: #f8ffff;
}
.result_line {
  height: 1px;
  width: 100%;
  background-color: rgb(220, 220, 220);
  margin: 20px 0;
}
.result_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #444;
}
.result_b {
  color: rgb(2, 129, 236);
}
.result_b.fo_18 {
  font-size: 18px;
}
.result_to {
  color: rgb(248, 84, 119);
  font-weight: bold;
  font-size: 18px;
}
.mi_label {
  display: flex;
  align-items: center;
  border: 1px solid rgb(116, 116, 116);
  background: rgb(255, 255, 255);
  padding: 0 5px;
  border-radius: 5px;
}
.mi_label input {
  margin: 0;
  padding: 0;
  margin-right: 4px;
}
.result_input_row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.result_input_row input {
  font-size: 13px;
  padding: 0 5px;
  border: 1px solid #c0c0c0;
  color: #555;
  vertical-align: middle;
  width: 100px;
  height: 30px;
  text-align: right;
}
.result_input_row a {
  border: 1px solid rgb(116, 116, 116);
  padding: 5px;
  background-color: rgb(248, 248, 248);
  cursor: pointer;
  font-size: 12px;
}

.order_s_btn {
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  background-color: #0281ec;
  border: 1px solid #0281ec;
  text-align: center;
  width: 100%;
  padding: 10px 0 10px 0;
  line-height: 1.5;
  margin-top: 20px;
}

.order_b_bottom_info {
  font-size: 14px;
  line-height: 1.5;
}

.result_bot {
  border: 2px solid #0581ec;
  padding: 20px;
}

@media screen and (max-width: 992px) {
  .order_table table tr th {
    padding: 10px 0 10px 20px;
    background: #f7fcff;
    text-align: left;
    width: 25%;
  }
  .result_wrap > div {
    width: 100%;
  }
}

.safe_service_wrap {
  max-width: 754px;
  padding: 12px;
  margin: 0 auto;
}
.safe_service_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  font-size: 20px;
  font-weight: 700;
}
.safe_service_title a {
  border: 1px solid #757575;
  padding: 0 12px;
  height: 28px;
  font-size: 13px;
  color: #757575;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.safe_img_wrap img {
  width: 100%;
  display: block;
}
.safe_txt_wrap {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}
.safe_txt_wrap h2 {
  font-size: 18px;
}

.trade_write_wrap {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.trade_write_section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.buy_none {
  display: none;
}
.pro_type {
  display: none;
}
.s_b_none {
  display: none;
}
.trade_write_wrap .trade_write_section:last-of-type {
  border-bottom: none;
}
.trade_write_title {
  display: flex;
  align-items: center;
  position: relative;
  padding: 24px 16px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: bold;
}
.trade_write_title a {
  margin-left: 10px;
}
.trade_write_title a svg {
  width: 14px;
  fill: rgba(0, 0, 0, 0.6);
  display: block;
}
.trade_write_title a div {
  position: absolute;
  left: 0;
  top: 45px;
  background: rgba(0, 0, 0, 0.6);
  color: #ddd;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 4px;
  max-width: 90vw;
  display: none;
  z-index: 99;
}
.trade_write_radio_row {
  padding: 16px 8px;
}
.trade_write_input_row.add_css {
  display: flex;
  justify-content: space-between;
}

.trade_write_select_row {
  padding: 0 16px 16px;
}
.trade_write_select_row select {
  border: 1px solid #9e9e9e;
  border-radius: 4px;
  background: none;
  width: 100%;
  max-width: 220px;
  height: 56px;
  font-size: 16px;
  padding: 0 8px;
  box-sizing: border-box;
}

.trade_write_input_row_half {
  padding: 0 16px 16px;
}
.trade_write_input_row_three {
  padding: 0 16px 16px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.trade_write_input_row_all {
  padding: 0 16px 16px;
}
.trade_write_input_row {
}
.trade_write_input {
  border: 1px solid #9e9e9e;
  position: relative;
  width: 100%;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
}
.trade_write_input_row_half .trade_write_input_row {
  max-width: 340px;
}
.trade_write_input_row_three .trade_write_input_row {
  flex: 1;
}

@media screen and (max-width: 992px) {
  .sub_space {
    display: none !important;
  }
  .trade_write_input_row_three .trade_write_input_row.mo_flex {
    flex: none;
  }
}
.trade_write_input input {
  position: relative;
  background: none;
  border: none;
  width: 100%;
  padding: 0 8px;
  box-sizing: border-box;
  height: 30px;
  z-index: 1;
}
.trade_write_select {
  position: relative;
}

.trade_write_select select {
  min-width: 150px;
  border: 1px solid #9e9e9e;
  border-radius: 4px;
  background: none;
  width: 100%;
  height: 56px;
  font-size: 16px;
  padding: 0 8px;
  box-sizing: border-box;
  color: #777;
}
.trade_write_select select:focus {
  border-color: #1976d2;
  border-width: 2px;
}
.trade_write_input .trade_write_tag {
  position: absolute;
  top: 50%;
  left: 8px;
  background: #fff;
  color: #777;
  transition: 0.3s;
  font-size: 16px;
  transform: translateY(-50%);
}
.trade_write_select .trade_write_tag {
  position: absolute;
  top: 0;
  left: 8px;
  background: #fff;
  color: #777;
  transition: 0.3s;
  font-size: 12px;
  transform: translateY(-50%);
}
.trade_write_select select:focus + .trade_write_tag {
  color: #1976d2;
}
.trade_write_input input:focus {
  outline: none;
}
.trade_write_input input.nonc {
  pointer-events: none;
  opacity: 0;
}

.trade_write_input:has(input:focus) {
  border-color: #1976d2;
  border-width: 2px;
}

.trade_write_input input:focus + .trade_write_tag {
  color: #1976d2;
  top: 0;
  font-size: 12px;
}
.trade_write_input.active .trade_write_tag {
  top: 0;
  font-size: 12px;
}
.trade_write_input_row .chk_info {
  opacity: 0;
  transition: 0.3s;
}
.trade_write_input:has(input:focus) + .chk_info_wrap .chk_info {
  opacity: 1;
}
.trade_write_title_info {
  color: rgba(0, 0, 0, 0.6);
  padding: 16px;
}
.trade_write_title_info.red {
  color: rgb(239, 28, 24);
  font-weight: 600;
}

.text_wright_bot_info {
  display: none;
}
.text_wright_bot_info.active {
  display: block;
}
.text_wright_bot_info_row {
  padding: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.text_wright_bot_info_row.blue {
  color: #3f51b5;
}

.form_info_bottom {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.5;
}
.form_info_bottom span {
  font-size: 16px;
}
.text_wright_btn_wrap {
  padding: 8px;
  text-align: right;
}
.text_wright_btn_wrap button {
  width: 78px;
  height: 44px;
  border: none;
  color: #fff;
  border-radius: 4px;
  background: #2196f3;
}
.text_wright_btn_wrap button.reset_btn {
  background: #272727;
}

.header_2 {
  background: #0f409f;
}
.header_2_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}
.header_2_logo img {
  width: 200px;
  display: block;
}
.header_2_link_wrap {
  display: flex;
  gap: 10px;
}
.header_2_link_wrap a {
  width: 100px;
  height: 30px;
  border-radius: 15px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_2_link_wrap a:first-of-type {
  border: 1px solid #fff;
}
.header_2_link_wrap a:nth-of-type(2) {
  background: linear-gradient(to right, #107eff, #0059fa);
}
.header_2_link_wrap a:nth-of-type(3) {
  background: linear-gradient(to right, #f27665, #cd4954);
}
.header_2_link_wrap a:nth-of-type(4) {
  background: linear-gradient(to right, #b3b3b3, #898787);
}

.header_2_mo_btn {
  display: none;
}

.header_2 nav {
  background: #07399c;
  margin-top: 10px;
}

.header_2 nav div {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
}
.header_2 nav div a {
  width: 140px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  position: relative;
}
.header_2 nav div a:nth-of-type(1)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 30px;
  transform: translateY(-50%);
  background: #fff;
}

.header_2 nav div a:nth-of-type(1),
.header_2 nav div a:nth-of-type(2) {
  background: #477ee3;
}
.header_2 nav div a:last-of-type {
  display: none;
}

.header_2_nav ul {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
}

.header_2_nav ul li a {
  width: 140px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  position: relative;
}

.header_2_nav ul li:first-of-type a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 30px;
  transform: translateY(-50%);
  background: #fff;
}

.header_2_nav ul li:first-of-type a,
.header_2_nav ul li:nth-of-type(2) a {
  background: #477ee3;
}

.header_2_nav ul li:last-of-type {
  display: none;
}

.header_2 .top_search {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.main_visual_wrap {
  height: 600px;
  background-image: url("/img/main_visual.png");
  background-size: cover;
  background-position: center;
}

.main_side_menu {
  position: fixed;
  z-index: 1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #0565dd;
  padding: 30px 10px;
  border-radius: 40px 0 0 40px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  width: 188px;
  justify-content: center;
}

.main_side_menu_toggle {
  position: fixed;
  z-index: 1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #0565dd;
  padding: 30px 10px;
  border-radius: 40px 0 0 40px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  width: 188px;
  justify-content: center;
}

.main_side_menu a {
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0;
  color: #fff;
  font-size: 12px;
}
.main_side_menu a img {
  height: 30px;
}

.section_1 {
  background: #f2f4ff;
}
.section_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5px 15px 50px;
}

.main_search_form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #0e79fe;
  height: 60px;
  border-radius: 30px;
  padding-left: 20px;
}
.main_search_radio {
  display: flex;
  gap: 10px;
}
.main_search_radio label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 5px;
}
.main_search_radio label input[type="radio"] {
  display: none;
}
.main_search_radio label span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #0e79fe;
}
.main_search_radio label input[type="radio"]:checked + span {
  background: #0e79fe;
}
.main_search_radio label p {
  color: #666;
}
.main_search_form input[type="text"] {
  border: none;
  background: none;
  flex: 1 0 auto;
  outline: none;
  margin-left: 12px;
}
.main_search_form button {
  border: none;
  background: none;
  padding: 0 4px;
  cursor: pointer;
}
.main_search_form button img {
  width: 50px;
  display: block;
}

.section_title_wrap {
  display: flex;
  justify-content: center;
}
.section_title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(#07399c, #0565dd);
  padding: 10px 50px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.game_menu_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.game_menu_wrap a {
  width: calc((100% - 30px) / 4);
}
.game_menu_wrap a img {
  width: 100%;
  display: block;
}

.section_2 {
  background-image: url("/img/section_2_bg.png");
  background-size: cover;
  background-position: center;
}
.section_2_inner {
  max-width: 1280px;
  padding: 50px 16px 100px;
  margin: 0 auto;
}

.main_mile_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.main_mile_wrap a {
  width: calc((100% - 60px) / 7);
  background: #fff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  aspect-ratio: 1;
  gap: 20px;
  text-align: center;
  font-weight: bold;
}
.main_mile_wrap a img {
  width: 60px;
}
.main_mile_wrap a:nth-of-type(4) img,
.main_mile_wrap a:nth-of-type(5) img {
  width: auto;
  height: 60px;
}

.section_3 {
  padding: 50px 0 100px;
}
.section_3 a {
  display: block;
  max-width: 1248px;
  margin: 0 auto;
}
.section_3 a img {
  display: block;
  width: 100%;
}
.section_4 {
  background: #dce6f5;
}
.section_4_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.section_4_inner_left {
  width: 50%;
  padding: 30px 20px 50px;
  border-right: 1px solid #0565dd;
}
.section_4_inner_right {
  width: 50%;
  padding: 30px 60px 50px;
}
.section_4_title {
  color: #333;
  font-size: 30px;
  font-weight: 900;
}
.section_4_inner_left .section_4_title {
  text-align: center;
}
.section_4_link {
  display: flex;
  justify-content: center;
  padding: 16px;
}
.section_4_link a {
  padding: 16px;
  text-align: center;
  color: #676565;
  font-size: 18px;
  font-weight: bold;
}
.section_4_link a img {
  width: 140px;
  margin-bottom: 16px;
}
.ph_num {
  font-size: 50px;
  font-weight: bold;
  color: #0e79fe;
  padding: 20px 0;
}
.ph_txt {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.ph_txt.red {
  color: #ff0015;
}
.ph_txt.blue {
  color: #0e47a1;
}

.footer_2 {
  background: #040404;
  color: #fff;
  font-size: 13px;
}
.footer_2_inner {
  max-width: 1280px;
  padding: 30px 16px;
  margin: 0 auto;
}

.footer_2_link_wrap {
  display: flex;
  gap: 21px;
  margin-bottom: 20px;
}
.footer_2_info_wrap {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.footer_2_info_wrap img {
  width: 140px;
}

@media screen and (max-width: 992px) {
  .header_2_inner {
    align-items: center;
  }

  .header_2_logo img {
    width: 100px;
  }
  .header_2_link_wrap {
    display: none;
  }
  .header_2_mo_btn {
    display: block;
  }
  .header_2_mo_btn svg {
    width: 20px;
    display: block;
    fill: #fff;
  }
  .header_2 nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    z-index: 9;
    margin-top: 0px !important;
  }
  .header_2 nav.active {
    right: 0;
  }
  .header_2 nav div {
    display: block;
    padding: 0;
  }
  .header_2 nav div a {
    display: block;
    width: 100%;
    padding: 16px;
    height: auto;
    background: #477ee3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .header_2 nav div a:last-of-type {
    display: block;
  }
  .header_2 nav div a:nth-of-type(1) {
    /* background: none; */
  }
  .header_2 nav div a:nth-of-type(1)::after {
    display: none;
  }
  .main_side_menu {
    position: relative;
    width: 100%;
    border-radius: 0;
    transform: translateY(0);
    padding: 10px 30px;
  }
  .main_side_menu a {
    width: calc((100% - 24px) / 4);
  }
  .main_visual_wrap {
    background-position: 90%;
  }
  .section_inner {
    padding: 16px;
  }
  .main_search_form {
    height: 40px;
    position: relative;
    padding-left: 8px !important;
  }

  .main_search_form button img {
    width: 27px;
    min-width: 27px;
    position: absolute;
    top: 5px;
    right: 5px;
  }
  .section_title {
    padding: 6px 50px;
    font-size: 18px;
  }
  .game_menu_wrap {
    gap: 8px;
  }
  .game_menu_wrap a {
    width: calc((100% - 16px) / 3);
  }

  .section_2_inner {
    padding: 30px 16px 60px;
  }
  .main_mile_wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }
  .main_mile_wrap a {
    width: calc((100% - 24px) / 4);
    gap: 6px;
    font-size: 12px;
    letter-spacing: -1px;
  }
  .main_mile_wrap a img {
    width: 30px;
  }
  .main_mile_wrap a:nth-of-type(4) img,
  .main_mile_wrap a:nth-of-type(5) img {
    height: 30px;
  }
  .section_3 {
    padding: 30px 0;
  }
  .section_4_inner_left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #0565dd;
    padding: 16px;
  }
  .section_4_title {
    font-size: 18px;
  }
  .section_4_inner_left .section_4_title {
    text-align: left;
  }
  .section_4_link {
    justify-content: flex-start;
    padding: 10px 0;
    gap: 40px;
  }
  .section_4_link a {
    padding: 0;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .section_4_link a img {
    width: 80px;
  }
  .section_4_inner_right {
    width: 100%;
    padding: 16px;
  }
  .footer_2 {
    font-size: 10px;
  }
  .footer_2_link_wrap {
    gap: 6px;
  }
  .ph_num {
    font-size: 30px;
    padding: 10px 0;
  }
  .ph_txt {
    font-size: 18px;
  }
  .footer_2_info_wrap {
    gap: 16px;
  }
  .footer_2_info_wrap img {
    width: 100px;
  }

  .top_search {
    padding-bottom: 10px !important;
  }

  .main_m_search_form {
    border-radius: 10px 10px 0px 0px !important;
    border-bottom: 0px !important;
  }
  .m_search_box {
    border-top: 0px !important;
    border: 2px solid #0e79fe !important;
    border-top: 0px !important;
  }

  .search_box {
    width: 100% !important;
    right: 0px !important;
    padding: 5px !important;
  }
  .latest_search {
    font-size: 12px !important;
  }
  .game_list {
    width: 200px !important;
  }
  .delete_btn:before {
    font-size: 10px !important;
  }
  .main_search_radio {
    gap: 5px !important;
  }
  .main_search_radio label {
    gap: 3px !important;
  }
  .main_search_radio label p {
    font-size: 12px;
    word-break: keep-all;
    margin-right: 3px;
    /* width: 37px; */
    /* min-width: 37px; */
  }

  #server_list {
    padding-left: 5px !important;
    width: 100%;
  }
  .header_2 .top_search {
    padding: 0px 0px !important;
  }
}

/* 모바일 (화면이 768px 이하일 때 적용) */
@media screen and (max-width: 768px) {
  .search_box {
    min-width: 100% !important; /* 화면 전체 너비 */
    min-height: auto; /* 높이 자동 */
    position: relative; /* 절대 위치 해제 */
    right: 0; /* 오른쪽 고정 해제 */
    top: 0;
    border: none;
    background-color: #f9f9f9; /* 모바일은 다른 배경 */
    padding: 20px;
  }

  .server_list2 {
    overflow-y: auto; /* 가로 스크롤 활성화 */
    max-height: 300px;
  }
}

.search_box {
  min-width: 740px;
  min-height: 300px;
  display: flex;
  border: 1px solid #0e79fe;
  margin: 0 auto;
  position: relative;
  top: -1px;
  background-color: #fff;
  position: absolute;
  right: 44px;
  padding: 10px;
  z-index: 99;
}
.game_list {
  width: 360px;
  overflow-y: auto;
  max-height: 300px;
}
.star_title {
  padding: 16px 0 10px;
  font-size: 18px;
  font-weight: 700;
}
.star_rating {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  gap: 16px;
  margin-bottom: 24px;
}
.star_rating .star {
  width: 30px;
  height: 30px;
  background: url("/img/star_off.png") no-repeat;
  background-size: 100%;
  cursor: pointer;
}
.star_rating .star.on {
  background: url("/img/star_on.png") no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 992px) {
}

/* chat */
#chat_wrap {
  border: 1px solid #aaa;
  display: none;
}
.chat_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  font-size: 12px;
  color: #fff;
  background: #3f51b5;
}
.chat_title span {
  font-size: 14px;
  font-weight: 700;
}
.chat_title a {
  border: 1px solid #fff;
  border-radius: 4px;
  font-size: 10px;
  padding: 4px 10px;
}
.chat_head {
  padding: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.chat_head_row {
  color: #3f51b5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.chat_head_row span {
  font-weight: 700;
}
.chat_head_row svg {
  fill: #3f51b5;
  width: 20px;
  display: block;
  margin-left: 8px;
}
.chat_head_link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.chat_head_link a {
  background: #3f51b5;
  border-radius: 4px;
  font-size: 10px;
  padding: 4px 10px;
  color: #fff;
}

.chat_content_wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.chat_content {
  padding: 16px;
  max-height: 500px;
  overflow-y: scroll;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
.info_chat_row {
  display: flex;
  justify-content: center;
}
.info_chat {
  color: #fff;
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 500px;
  background: #42a5f5;
}
.info_chat_title {
  font-size: 20px;
  margin-bottom: 30px;
}
.info_chat_content {
  font-size: 12px;
  line-height: 1.5;
}
.info_chat_content a {
  background: #3f51b5;
  border-radius: 4px;
  font-size: 11px;
  padding: 4px 10px;
  color: #fff;
}
.info_chat_date {
  margin-top: 20px;
  text-align: right;
  font-size: 12px;
}

.send_chat_row {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.send_chat {
  background: #e3f2fd;
  font-size: 14px;
  padding: 8px 16px;
  max-width: 80%;
  border-radius: 4px;
}
.send_chat_date {
  color: #9e9e9e;
  font-size: 12px;
}
.receive_chat_row {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.receive_chat {
  background: #89c6f8;
  font-size: 14px;
  padding: 8px 16px;
  max-width: 80%;
  border-radius: 4px;
}
.receive_chat_date {
  color: #9e9e9e;
  font-size: 12px;
}

.chat_write_wrap {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat_write_wrap svg.bubble {
  width: 20px;
  fill: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
}
.chat_write_wrap:has(textarea:focus) svg.bubble {
  fill: #3f51b5;
}
.chat_write_wrap .textarea_wrap {
  flex: 1 0 auto;
}
.chat_write_wrap .textarea_wrap div {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
.chat_write_wrap .textarea_wrap textarea {
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #aaa;
  outline: none;
  resize: none;
  font-size: 14px;
  line-height: 1.5;
  transition: 0.3s;
}
.chat_write_wrap textarea:focus {
  border-color: #3f51b5;
}
.chat_write_link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 20%;
  max-width: 100px;
  margin-left: 10px;
}
.chat_write_link a {
  width: 100%;
  background: #3f51b5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  padding: 4px;
}
.chat_write_link a svg {
  fill: #fff;
  width: 20px;
}
.file-button {
  padding: 10px 10px;
  font-size: 16px;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 50%;
}
.send-button {
  padding: 10px 10px;
  font-size: 16px;
  background-color: #07399c;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 50%;
}
.file-button .fa-paperclip {
  font-size: 20px;
  color: #333;
}
.send-button .fa-paper-plane {
  font-size: 20px;
}

.send-button:hover {
  background-color: #3358a3;
}

.msginput {
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  margin-right: 10px;
}

.color-red {
  color: #ff0015 !important;
}

a {
  text-decoration: none;
  color: inherit;
}
p {
  margin-bottom: 0px;
}
label {
  margin-bottom: 0px;
}
.basic_radio_row label input + span {
  top: 7px;
}

/* a:hover {
  color: inherit;
  text-decoration: none;
} */
.sell_server_list {
  display: flex;
  justify-content: space-between;
  border-left: 1px solid;
  border-right: 1px solid;
  border-bottom: 1px solid;
}
.sch_form_sell {
  width: 100%;
  height: 40px;
  padding: 5px 15px;
  border: 2px solid #277fe8;
  background: #fff;
}

.stitle {
  height: 26px;
  line-height: 26px;
  background: #f5f5f5;
  font-weight: 600;
  text-align: center;
  width: 100%;
  display: inline-block;
}
.sell_game_list {
  flex: 1;
  padding: 10px;
}
.add_server_list {
  flex: 1;
  padding-left: 10px;
  border-left: 1px solid #ccc;
  padding: 10px;
}

.add_server_list li {
  margin-bottom: 4px;
  font-size: 12px;
}

.sell_game_box {
  overflow-y: scroll;
  max-height: 450px;
}

.sell_game_box li {
  margin-bottom: 4px;
  font-size: 12px;
  padding: 4px;
}

.add_server_list li {
  font-size: 12px;
  padding: 4px;
}

.sell_game_box li:hover,
.add_server_list li:hover {
  background: #e1e1e1;
  font-weight: 700;
}
.sell_game_box li a,
.add_server_list li a {
  padding-left: 10px;
}
.trade_write_tag.active {
  top: 0;
  font-size: 12px;
}

#server_list {
  border-left: 1px solid #ebeef3;
  padding-left: 10px;
}

.game {
  margin-bottom: 10px;
}

.game_list li,
.server_list li {
  margin-bottom: 8px;
}

.new_game {
  text-align: center;
  padding-right: 10px;
  padding: 7px;
  border-top: 1px solid #e6e7e9;
  border-left: 1px solid #e6e7e9;
}

.delete_btn:before {
  display: inline-block;
  width: 15px;
  content: "\2573";
  font-size: 12px;
  line-height: normal;
  margin-right: 8px;
}

.latest_search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.trade-off,
.trade_end {
  /* background-color: #cfcfcf !important; */
  color: #ccc;
  position: relative;
}

.trade_end_item:after {
  content: "거래완료";
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0px;
  display: flex;
  font-size: 16px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
}

.trade_away_item:after {
  content: "자리비움";
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0px;
  display: flex;
  font-size: 16px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
}

.right > .profile {
  background-color: #0f409f !important;
}

/* 기본 숨김 상태일 때 투명 */
.custom-modal {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 표시될 때 */
.custom-modal.modal-open {
  opacity: 1 !important;
  transform: translateY(0);
}

.custom-input {
  height: 30px;
  font-size: 13px;
  padding: 0 5px;
  line-height: 30px;
  border: 1px solid #c0c0c0;
  color: #555;
  vertical-align: middle;
}

.truncate-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*  */
.trade_end_item > div,
.trade_away_item > div {
  opacity: 0.6;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 8px;
}

.dot-away {
  background-color: red !important;
  animation: pulse 1.2s infinite;
}

.dot-active {
  background-color: green !important;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.server_list2 > li {
  min-width: 140px;
}
