/*-------------------------------------------------------------------------------------*
 *  COMMON                                                                             *
 *-------------------------------------------------------------------------------------*/
@charset "utf-8";

:root {
  --ui-bg: #fff;
  --ui-body: #111;
  --ui-marquee: #727b95;
  --ui-row-md: 1024px;
  --ui-row-lg: 1200px;

  --ui-form-hg: 46px;
  --ui-form-rds-01: 6px;
  --ui-form-rds-02: 30px;

  --ui-header-bg: #fff;
  --ui-header-H: 80px;
  --ui-content-Hvh: calc(100vh - 373px);
  --ui-footer-bg: #424754;
  --ui-footer-bdr: #3d3d3d;
  --ui-footer-btn: #78808d;
  --ui-footer-fc1: #7f8a9b;
  --ui-footer-fc2: #8f9bae;

  --ui-mb-maxW: 450px;
  --ui-mb-GNB: 50px;
  --ui-mb-sdw: #bac3eae6;
  --ui-mb-popbg: #d2b496;

  --bs-pnt-01: #ae9681;
  --bs-pnt-02: #c3a782;
  --bs-pnt-03: #ead1bd;
  --bs-btn-01: #c1a386;
  --bs-btn-02: #40455a;
  --bs-btn-03: #fff;
  --bs-btn-04: #a73434;

  --bs-font-00: #111;
  --bs-font-01: #333;
  --bs-font-02: #666;
  --bs-font-03: #999;
  --bs-font-04: #ccc;
  --bs-font-05: #ddd;
  --bs-font-06: #eee;
  --bs-font-07: #fff;
  --bs-font-c1: #424a66;
  --bs-font-c2: #646d89;

  --bs-bdr-01: #0000000a;
  --bs-bdr-02: #00000014;
  --bs-bdr-03: #0000001f;
  --bs-bdr-04: #00000029;

  --bs-blk-01: #0000001a;
  --bs-blk-02: #00000033;
  --bs-blk-03: #00000066;
  --bs-blk-04: #00000099;
  --bs-blk-05: #000000cc;

  --bs-sdw-box-01: 2px 2px 20px #0000000f, 2px 2px 10px #0000000a;
  --bs-sdw-box-02: 0 2px 6px #0000000f, 0 2px 6px #0000000a;
}

/* keyframes ----------------------------------------------------------- */
@keyframes fadein_left {
  0% {
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fadein_right {
  0% {
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes tg_bcoin {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes tg_dice {
  0% {
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3D(10px, -10px, 0);
    transform: translate3D(10px, -10px, 0);
  }
  100% {
    transform: translateZ(0);
  }
}
@keyframes tg_scoin {
  0% {
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3D(-10px, 10px, 0);
    transform: translate3D(-10px, 10px, 0);
  }
  100% {
    transform: translateZ(0);
  }
}
@keyframes tg_triangle {
  0% {
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes tg_gbtn {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeInicon {
  0% {
    opacity: 0.2;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes popupFadeUp {
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes spinY {
  0% {
    transform: rotateY(0deg);
  }
  10% {
    transform: rotateY(360deg);
  }
  50% {
    transform: rotateY(360deg);
  }
  60% {
    transform: rotateY(720deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}

/* @media -------------------------------------------------------------- */
@media (max-width: 999px) {
  html,
  body {
    overscroll-behavior: none;
  }
  body {
    overflow: hidden;
    height: 100% !important;
    background: #f8f8f8 url(../images/bg/MB_indexbg.webp) no-repeat center top !important;
  }
  .PC_wrap {
    position: relative;
    display: none;
  }
  .MB_wrap {
    display: block !important;
  }
}

/* base ---------------------------------------------------------------- */
body {
  background: var(--ui-bg);
  line-height: 1 !important;
  font-size: 14px !important;
  font-weight: 400;
  font-family: 'Spoqa Han Sans Neo', sans-serif !important;
  color: var(--ui-body) !important;
  letter-spacing: -0.5px;
}

/* total --------------------------------------------------------------- */
.Ic_new::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #ed0000;
  border-radius: 50%;
}
.no_scroll {
  overflow: hidden;
}

.Pc_b {
  display: block !important;
}
.Mob_b {
  display: none !important;
}

.row_md {
  max-width: var(--ui-row-md);
  margin: 0 auto;
}
.row_lg {
  max-width: var(--ui-row-lg);
  margin: 0 auto;
}

.cont_Hvh_c {
  display: flex;
  align-items: center;
  min-height: var(--ui-content-Hvh);
}
.cont_Hvh_t {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-height: var(--ui-content-Hvh);
}

.Wf_bebas {
  font-family: 'Bebas Neue', sans-serif;
}
.Wf_GR01 {
  background: linear-gradient(180deg, #e4d5c8 0%, #d1b798 60%, #c8b6a4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  color: transparent;
}

@media (max-width: 768px) {
  .Pc_b {
    display: none !important;
  }
  .Mob_b {
    display: block !important;
  }
}

/* bg ------------------------------------------------------------------ */
.bg_index {
  background: url(../images/bg/indexbg.webp) center top;
  background-size: 1920px 1772px;
}
.bg_casino {
  background: url(../images/bg/casinobg.webp) no-repeat center bottom / 100%
    100%;
}
.bg_sub {
  height: 100%;
  background: #f3f6fc;
}

/* images icon --------------------------------------------------------- */
/*  mobile  */
.uicon_m_board {
  background: url(../images/icon/uicon_m_board.webp) no-repeat;
}
.uicon_m_user {
  background: url(../images/icon/uicon_m_user.webp) no-repeat;
}
.uicon_m_home {
  background: url(../images/icon/uicon_m_home.webp) no-repeat;
}
.uicon_m_customer {
  background: url(../images/icon/uicon_m_customer.webp) no-repeat;
}
.uicon_m_betlist {
  background: url(../images/icon/uicon_m_betlist.webp) no-repeat;
}

/*  casino  */
.gicon_c_evol {
  background: url(../images/game/casino/logo/ispt_evol.webp) no-repeat;
}
.gicon_c_micro {
  background: url(../images/game/casino/logo/ispt_micro.webp) no-repeat;
}
.gicon_c_prag {
  background: url(../images/game/casino/logo/ispt_prag.webp) no-repeat;
}
.gicon_c_dowinn {
  background: url(../images/game/casino/logo/ispt_dowinn.webp) no-repeat;
}
.gicon_c_drgame {
  background: url(../images/game/casino/logo/ispt_dreamgame.webp) no-repeat;
}
.gicon_c_wm {
  background: url(../images/game/casino/logo/ispt_wm.webp) no-repeat;
}
.gicon_c_skywind {
  background: url(../images/game/casino/logo/ispt_skywind.webp) no-repeat;
}
.gicon_c_betgames {
  background: url(../images/game/casino/logo/ispt_betgames.webp) no-repeat;
}
.gicon_c_asiagaming {
  background: url(../images/game/casino/logo/ispt_asiagaming.webp) no-repeat;
}

/*  slot  */
.gicon_s_prag {
  background: url(../images/game/slot/logo/ispt_prag.webp) no-repeat;
}
.gicon_s_micro {
  background: url(../images/game/slot/logo/ispt_micro.webp) no-repeat;
}
.gicon_s_cq9 {
  background: url(../images/game/slot/logo/ispt_cq9.webp) no-repeat;
}
.gicon_s_evopy {
  background: url(../images/game/slot/logo/ispt_evopy.webp) no-repeat;
}
.gicon_s_boog {
  background: url(../images/game/slot/logo/ispt_boog.webp) no-repeat;
}
.gicon_s_pyson {
  background: url(../images/game/slot/logo/ispt_pyson.webp) no-repeat;
}
.gicon_s_hbnr {
  background: url(../images/game/slot/logo/ispt_hbnr.webp) no-repeat;
}
.gicon_s_pystr {
  background: url(../images/game/slot/logo/ispt_pystr.webp) no-repeat;
}
.gicon_s_raxgm {
  background: url(../images/game/slot/logo/ispt_raxgm.webp) no-repeat;
}
.gicon_s_trpro {
  background: url(../images/game/slot/logo/ispt_trpro.webp) no-repeat;
}
.gicon_s_gmart {
  background: url(../images/game/slot/logo/ispt_gmart.webp) no-repeat;
}
.gicon_s_netent {
  background: url(../images/game/slot/logo/ispt_netent.webp) no-repeat;
}
.gicon_s_thukick {
  background: url(../images/game/slot/logo/ispt_thukick.webp) no-repeat;
}
.gicon_s_nolmt {
  background: url(../images/game/slot/logo/ispt_nolmt.webp) no-repeat;
}
.gicon_s_mblots {
  background: url(../images/game/slot/logo/ispt_mblots.webp) no-repeat;
}
.gicon_s_pypers {
  background: url(../images/game/slot/logo/ispt_pypers.webp) no-repeat;
}
.gicon_s_drgsoft {
  background: url(../images/game/slot/logo/ispt_drgsoft.webp) no-repeat;
}
.gicon_s_1x2gaming {
  background: url(../images/game/slot/logo/ispt_1x2gaming.webp) no-repeat;
}
.gicon_s_elk {
  background: url(../images/game/slot/logo/ispt_elk.webp) no-repeat;
}
.gicon_s_pgsoft {
  background: url(../images/game/slot/logo/ispt_pgsoft.webp) no-repeat;
}
.gicon_s_pygo {
  background: url(../images/game/slot/logo/ispt_pygo.webp) no-repeat;
}
.gicon_s_redtgr {
  background: url(../images/game/slot/logo/ispt_redtgr.webp) no-repeat;
}
.gicon_s_bluepnt {
  background: url(../images/game/slot/logo/ispt_bluepnt.webp) no-repeat;
}
.gicon_s_wazdan {
  background: url(../images/game/slot/logo/ispt_wazdan.webp) no-repeat;
}

/*  hotgame  */
.gicon_h_dice {
  background: url(../images/icon/gicon_h_dice.webp) no-repeat;
}
.gicon_h_slot {
  background: url(../images/icon/gicon_h_slot.webp) no-repeat;
}
.gicon_h_ssocer {
  background: url(../images/icon/gicon_h_soccer.webp) no-repeat;
}

/*  sports  */
.gicon_sp_inplay {
  background: url(../images/game/sports/logo/ispt_inplay.webp) no-repeat;
}
.gicon_sp_prematch {
  background: url(../images/game/sports/logo/ispt_prematch.webp) no-repeat;
}

/* image button -------------------------------------------------------- */
.btn_Wbox,
.btn_Hbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  margin: 5px 5px 10px 5px;
}
.btn_Wbox {
  width: 160px;
  height: 54px;
  padding: 0 5px 0 10px;
  font-size: 18px;
  letter-spacing: -1px;
}
.btn_Wbox i {
  width: 26px;
  height: 26px;
}
.btn_Hbox {
  width: 66px;
  height: 76px;
}
.btn_Hbox i {
  width: 30px;
  height: 30px;
}

.btn_jmp .btn_Wbox,
.btn_jmp .btn_Hbox {
  filter: drop-shadow(1px 1px 1px var(--bs-blk-02));
  transition: 0.2s;
}

.btn_Wbox,
.btn_Hbox {
  filter: drop-shadow(1px 1px 1px var(--bs-blk-02));
  transition: 0.2s;
}

.btn_jmp:hover .btn_Wbox,
.btn_jmp:hover .btn_Hbox,
.btn_jmp.active .btn_Wbox,
.btn_jmp.active .btn_Hbox {
  filter: drop-shadow(2px 4px 2px var(--bs-blk-02));
}

.btn_Wbox:hover,
.btn_Hbox:hover,
.btn_Wbox.active,
.btn_Hbox.active {
  filter: drop-shadow(2px 4px 2px var(--bs-blk-02));
}

.btn_Wbox.btn_wht,
.btn_Wbox.btn_pnt:hover,
.btn_Wbox.btn_pnt.active,
.btn_jmp .btn_Wbox.btn_wht,
.btn_jmp:hover .btn_Wbox.btn_pnt,
.btn_jmp.active .btn_Wbox.btn_pnt {
  background: url(../images/btn/btn_Wbox_N.webp) no-repeat center / contain;
  color: var(--bs-font-c2);
}

.btn_Wbox.btn_pnt,
.btn_Wbox.btn_wht:hover,
.btn_Wbox.btn_wht.active,
.btn_jmp .btn_Wbox.btn_pnt,
.btn_jmp:hover .btn_Wbox.btn_wht,
.btn_jmp.active .btn_Wbox.btn_wht {
  background: url(../images/btn/btn_Wbox_O.webp) no-repeat center / contain;
  color: #fff;
}

.btn_Hbox.btn_wht,
.btn_jmp .btn_Hbox.btn_wht,
.btn_jmp:hover .btn_Hbox.btn_pnt,
.btn_jmp.active .btn_Hbox.btn_pnt {
  background: url(../images/btn/btn_Hbox_N.webp) no-repeat center / contain;
}
.btn_Hbox.btn_pnt,
.btn_jmp .btn_Hbox.btn_pnt,
.btn_jmp:hover .btn_Hbox.btn_wht,
.btn_jmp.active .btn_Hbox.btn_wht {
  background: url(../images/btn/btn_Hbox_O.webp) no-repeat center / contain;
}

.ispt_pnt,
.ispt_wht {
  flex-shrink: 0;
  background-size: cover;
  image-rendering: auto;
}

.btn_pnt .ispt_wht,
.btn_pnt .ispt_pnt,
.btn_wht:hover .ispt_wht,
.btn_wht:hover .ispt_pnt,
.btn_wht.active .ispt_wht,
.btn_jmp .btn_pnt .ispt_wht,
.btn_jmp .btn_pnt .ispt_pnt,
.btn_jmp:hover .btn_wht .ispt_wht,
.btn_jmp:hover .btn_wht .ispt_pnt,
.btn_jmp.active .btn_wht .ispt_wht,
.btn_pnt .ispt_wht {
  background-position: center bottom;
}

.btn_wht .ispt_wht,
.btn_wht .ispt_pnt,
.btn_pnt:hover .ispt_wht,
.btn_pnt:hover .ispt_pnt,
.btn_pnt.active .ispt_pnt,
.btn_jmp .btn_wht .ispt_wht,
.btn_jmp .btn_wht .ispt_pnt,
.btn_jmp .btn_wht .ispt_pnt,
.btn_jmp:hover .btn_pnt .ispt_wht,
.btn_jmp:hover .btn_pnt .ispt_pnt,
.btn_jmp.active .btn_pnt .ispt_pnt,
.btn_wht .ispt_pnt {
  background-position: center top;
}

.rev_pnt .ispt_wht,
.rev_pnt .ispt_pnt,
.rev_wht:hover .ispt_wht,
.rev_wht:hover .ispt_pnt,
.rev_wht.active .ispt_wht {
  background-position: center top !important;
}

.rev_wht .ispt_wht,
.rev_wht .ispt_pnt,
.rev_pnt:hover .ispt_wht,
.rev_pnt:hover .ispt_pnt,
.rev_pnt.active .ispt_pnt {
  background-position: center bottom !important;
}

/* PC_wrap ------------------------------------------------------------- */
.PC_wrap {
  position: relative;
  min-width: calc(1200px + calc(320px * 2));
  min-height: 100vh;
  height: 100%;
}
.PC_app {
  position: relative;
}

/* PC header ----------------------------------------------------------- */
.Pheader {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 999;
}
.Phead__bar {
  width: 100%;
  background: var(--ui-header-bg);
  box-shadow: 0 3px 9px var(--bs-blk-01);
}
.Phead__bar .Ph_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--ui-row-lg);
  height: var(--ui-header-H);
  min-width: 768px;
  padding: 0 10px;
  margin: 0 auto;
}

/* header // logo */
.Phead__bar .Phlogo {
  flex-shrink: 0;
}
.Phead__bar .Phlogo a {
  display: block;
  cursor: pointer;
}
.Phead__bar .Phlogo img {
  width: auto;
  height: 42px;
}

/* header // nav */
.Phead__bar .Phnav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}
.Phead__bar .Phnav .Pnav_item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 8px;
  color: #000;
  font-size: 16px;
}
.Phead__bar .Phnav .Pnav_item:hover,
.Phead__bar .Phnav .Pnav_item.active {
  color: var(--bs-pnt-01);
}
.Phead__bar .Phnav .Pnav_item::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--bs-pnt-02);
  border-radius: 2px;
  transition: 0.3s;
}
.Phead__bar .Phnav .Pnav_item:hover::after,
.Phead__bar .Phnav .Pnav_item.active::after {
  left: 0;
  width: 100%;
}

/* header // user base */
.Phead__bar .Profile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 10px;
  transition: 0.2s;
}
.Phead__bar .Profile.bdr {
  background: #f4f4f4;
  border-radius: 8px;
  border: 1px solid #0000000f;
}
.Phead__bar .Profile:hover .Pmydrop {
  display: block;
}

.Phead__bar .Phetc {
  position: relative;
  flex-shrink: 0;
}
.Phead__bar .Phetc .Puser {
  display: block;
  cursor: pointer;
}
.Phead__bar .Phetc .Puser img {
  width: 36px;
  height: auto;
}
.Phead__bar .Phetc .Pinfo_row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.Phead__bar .Phetc .Pinfo_row .Hbtn {
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
}
.Phead__bar .Phetc .Pinfo_row .Hbtn:hover {
  color: var(--bs-pnt-02);
}

.Phead__bar .Pmyuser {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.Phead__bar .Pmyuser .Pinfo_col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.Phead__bar .Pmyuser .Pinfo_col .ifbox {
  display: flex;
  flex-direction: column;
}
.Phead__bar .Pmyuser .Pinfo_col .ifbox .ifrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.3;
  gap: 3px;
  color: var(--bs-font-02);
  font-size: 12px;
}
.Phead__bar .Pmyuser .Pinfo_col .ifbox .ifrow h4 {
  margin: 0 14px 0 0;
  font-size: 12px;
  font-weight: 400;
}
.Phead__bar .Pmyuser .Pinfo_col .ifbox .ifrow span {
  margin-left: auto;
  color: var(--bs-font-01);
  font-size: 14px;
}
.Phead__bar .Pmyuser .Pinfo_col .ifbox .name {
  max-width: 50px;
  color: var(--bs-font-01);
  font-size: 14px;
  white-space: normal;
  word-break: break-word;
}
.Phead__bar .Pmyuser .Pinfo_col .Hbar {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--bs-blk-03),
    transparent 100%
  );
}

/* header // user drop */
.Phead__bar .Pmydrop {
  display: none;
  position: absolute;
  top: 100%;
  right: 8px;
  padding-top: 20px;
  z-index: 8;
  filter: drop-shadow(0 2px 6px var(--bs-blk-02));
}
.Phead__bar .Pmydrop .dplist {
  position: relative;
  width: 160px;
  padding: 10px;
  border: 1px solid #e4e4e4;
  background: #fff;
  border-radius: 10px;
}
.Phead__bar .Pmydrop .dplist::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  transform: translateX(-50%);
}
.Phead__bar .Pmydrop .dplist .item {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 36px;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--bs-font-01);
  font-size: 13px;
}
.Phead__bar .Pmydrop .dplist .item .IcSVG {
  width: 16px;
  height: 16px;
  color: var(--bs-font-01);
}
.Phead__bar .Pmydrop .dplist .item .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.Phead__bar .Pmydrop .dplist .item .name .count {
  display: inline-block;
  min-width: 16px;
  line-height: 14px;
  padding: 1px 3px 2px 2px;
  border-radius: 10px;
  font-size: 10px;
  background: var(--bs-pnt-02);
  color: #fff;
  text-align: center;
  box-sizing: content-box;
}
.Phead__bar .Pmydrop .dplist .item:hover {
  background: var(--bs-pnt-02);
  color: #fff;
}
.Phead__bar .Pmydrop .dplist .item:hover .IcSVG {
  color: #fff;
}

/* header // user hover */
.Phead__bar .Profile.bdr:hover {
  border-color: #79410024;
  background: #7941001f;
  box-shadow: 0 2px 4px var(--bs-blk-01);
}

/* header // drop */
.Phead__drop {
  display: none;
  position: absolute;
  left: 0;
  top: var(--ui-header-H);
  right: 0;
  background: #fffffff5;
  box-shadow: inset 0 4px 10px 0 var(--bs-blk-01), 0 8px 10px 0 var(--bs-blk-01);
  z-index: 1;
}
.Phead__drop.active {
  display: block;
}
.Phead__drop .Pnav_sub {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-gap: 8px;
  padding: 0 10px 10px 10px;
}
.Phead__drop .Pnav_sub.ScrBg {
  overflow-y: auto;
  max-height: 470px;
}
.Phead__drop .Pnav_sub .Pnav_sitem {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 10px 10px;
  transition: 0.3s;
}
.Phead__drop .Pnav_sub .Pnav_sitem:hover {
  background: linear-gradient(0deg, #fff 0, #dee5f6);
}
.Phead__drop .Pnav_sub .Pnav_sitem .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
}
.Phead__drop .Pnav_sub .Pnav_sitem .btn_Hbox {
  margin: 0;
}
.Phead__drop .Pnav_sub .Pnav_sitem .text {
  overflow: hidden;
  display: flex;
  align-items: center;
}
.Phead__drop .Pnav_sub .Pnav_sitem .text span {
  color: var(--bs-font-01);
  font-size: 15px;
  font-weight: 500;
}
.Phead__drop .Pnav_sub .Pnav_sitem .model {
  text-align: center;
}
.Phead__drop .Pnav_sub .Pnav_sitem .model img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  transform: scale(1);
}
.Phead__drop .Pnav_sub .Pnav_sitem:hover .model img {
  filter: drop-shadow(0 0 2px var(--bs-blk-02));
  transform: scale(1.04);
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.Phead__drop .Pnav_sub .Pnav_sitem .btn_Hbox {
  width: 32px;
  height: 38px;
}
.Phead__drop .Pnav_sub .Pnav_sitem .btn_Hbox i {
  width: 18px;
  height: 18px;
  margin: -1px -1px 0 0;
}

/* swiper -------------------------------------------------------------- */
.slide__wrap {
  position: relative;
}
.slide__wrap .swiper-wrapper {
  width: 100%;
  max-height: 470px;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 16 / 5;
}
.slide__wrap .swiper-wrapper .swiper-slide {
  position: relative;
  text-align: center;
  cursor: pointer;
}
.slide__wrap .swiper-wrapper .swiper-slide img {
  max-height: 470px;
  height: auto;
  -o-object-fit: fill;
  object-fit: fill;
  transform: scale(1);
  transition: transform 1s ease, opacity 1s ease;
  will-change: transform, opacity;
  opacity: 0;
}
.slide__wrap .swiper-wrapper .swiper-slide-prev img {
  transform: scale(2);
  opacity: 0;
}
.slide__wrap .swiper-wrapper .swiper-slide-active img {
  transform: scale(1);
  opacity: 1;
}
.slide__wrap .swiper-wrapper .swiper-slide-next img {
  transform: scale(1.6);
  opacity: 0;
}

.slide__wrap .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 0;
}
.slide__wrap .swiper-pagination-bullet {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 10px 0;
  background: url(../images/icon/swiper_nav.svg) no-repeat center;
  transition: 0.3s;
  opacity: 1;
}
.slide__wrap .swiper-pagination-bullet:hover,
.slide__wrap .swiper-pagination-bullet-active {
  background: url(../images/icon/swiper_nav_H.svg) no-repeat center;
}
.slide__wrap .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 30px;
  display: none;
  width: 320px;
  height: 100px;
  background: var(--swiper-thumb) no-repeat center / contain;
  border-radius: 8px;
  transform: translateX(-50%);
  box-shadow: 0 4px 4px var(--bs-blk-01);
  z-index: 1;
}
.slide__wrap .swiper-pagination-bullet:hover::after {
  display: block;
}

.slide__wrap .swiper-button-next,
.slide__wrap .swiper-button-prev {
  top: 50%;
  display: none;
  width: 38px;
  height: 80px;
  background: #47527780;
  color: #fff;
  transform: translateY(-50%);
}
.slide__wrap .swiper-button-prev {
  left: 0;
}
.slide__wrap .swiper-button-next {
  right: 0;
}
.slide__wrap .swiper-button-next::after,
.slide__wrap .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}
.slide__wrap:hover .swiper-button-next,
.slide__wrap:hover .swiper-button-prev {
  display: flex;
}

/* PC_MB // marquee ---------------------------------------------------- */
.marquee {
  display: flex;
  align-items: center;
  width: 100%;
}
.marquee .maq_track {
  position: relative;
  overflow: hidden;
  display: flex;
  flex: 1;
  height: 100%;
}
.marquee .maq_track .maq_text {
  position: absolute;
  top: 0;
  display: inline-flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  will-change: transform;
}
.marquee .maq_track .maq_text span {
  display: inline-block;
  letter-spacing: 0;
}

.marquee.Pmaq {
  max-width: var(--ui-row-lg);
  height: 40px;
  padding: 0 20px;
  margin: 20px auto 0;
  background: linear-gradient(180deg, #fff 14%, #ecefff 74%, #fefeff 98%);
  border: 1px solid #d1d5f5;
  border-radius: 20px;
}
.marquee.Pmaq .maq_icon {
  width: 40px;
  margin: 0 8px 10px 0;
}
.marquee.Pmaq .maq_track .maq_text span {
  padding-right: 150px;
  color: var(--ui-marquee);
}

.marquee.Mmaq {
  overflow: hidden;
  height: 18px;
  padding: 0 10px;
}
.marquee.Mmaq .IcSVG {
  width: 16px;
  height: 16px;
  color: var(--bs-pnt-02);
}
.marquee.Mmaq .maq_track .maq_text {
  margin-left: 4px;
}
.marquee.Mmaq .maq_track .maq_text span {
  padding-right: 100px;
  color: var(--bs-font-01);
  font-size: 11px;
}

/* content ------------------------------------------------------------- */
.Pcontent {
  position: relative;
}

/* section ------------------------------------------------------------- */
.section__wrap {
  overflow: hidden;
  max-width: var(--ui-row-lg);
  padding: 10px 10px;
  margin: 0 auto;
}

/* section // title */
.sec_title {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 50px 0 0 0;
  color: var(--bs-font-c2);
  font-weight: 400;
  letter-spacing: 0;
}
.sec_title .tit_en {
  position: relative;
  top: -10px;
  width: 240px;
  height: 28px;
}
.sec_title .tit_en img {
  width: 100%;
  height: auto;
}
.sec_title .tit_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
  width: 100%;
  height: 56px;
}
.sec_title .tit_box::before,
.sec_title .tit_box::after {
  content: '';
  flex-grow: 1;
  max-width: 480px;
  height: 20px;
  background: url(../images/title/title_bar.webp) no-repeat left center / cover;
}
.sec_title .tit_box::after {
  transform: scaleX(-1);
}
.sec_title .tit_box .title {
  font-size: 40px;
}
.sec_title .tit_box .title strong {
  font-weight: 700;
}
.sec_title .tit_sub {
  margin-top: 10px;
  font-size: 14px;
}

/* section // tab button */
.sec_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}
.sec_nav.snv_livecns {
  justify-content: flex-end;
}
.sec_nav.snv_hotgame {
  justify-content: center;
}
.sec_nav.snv_hotgame button {
  gap: 12px;
}
.sec_nav.snv_hotgame button i {
  width: 28px;
  height: 28px;
}

/* section // box */
.sec_box {
  position: relative;
  display: none;
}
.sec_box.active {
  display: block;
}

/* section // targetbox */
.target_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.target_box .tgbox_left {
  flex-shrink: 0;
  width: 470px;
  height: 100%;
}
.target_box .tgbox_left .tg_lbox {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.target_box .tgbox_right {
  flex-shrink: 0;
  width: 384px;
}
.target_box .fade_L {
  animation: fadein_left 0.6s ease-in forwards;
}
.target_box .fade_R {
  animation: fadein_right 0.6s ease-in forwards;
}

.target_box .tg_bcoin {
  position: absolute;
  right: -10px;
  top: 90px;
  width: 71px;
  height: auto;
  z-index: 1;
  animation: tg_bcoin 4s infinite;
}
.target_box .tg_dice {
  position: absolute;
  left: -10px;
  top: 450px;
  width: 72px;
  height: auto;
  z-index: 1;
  animation: 4s ease 0s infinite normal none running tg_dice;
}
.target_box .tg_scoin {
  position: absolute;
  right: 80px;
  top: 32px;
  width: 35px;
  height: auto;
  z-index: 1;
  animation: tg_scoin 4s infinite;
}
.target_box .tg_triangle {
  position: absolute;
  left: -60px;
  top: 230px;
  width: 121px;
  height: auto;
  z-index: 1;
  animation: tg_triangle 4s infinite;
}
.target_box .tg_model {
  width: 410px;
  height: auto;
}
.target_box .tg_hotgame {
  width: 600px;
  height: auto;
}

.target_box .tg_title {
  margin-bottom: 24px;
}
.target_box .tg_title h2 {
  line-height: 0.9;
  margin: 0;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 1px;
}
.target_box .tg_title h3 {
  line-height: 1.2;
  margin: 0;
  color: var(--bs-font-c2);
  font-size: 50px;
  letter-spacing: -1px;
}
.target_box .tg_title h4 {
  line-height: 1;
  margin: 0;
  color: var(--bs-pnt-01);
  font-size: 24px;
  letter-spacing: 0;
}
.target_box .tg_title h5 {
  line-height: 1;
  margin: 0;
  color: var(--bs-pnt-01);
  font-size: 40px;
  letter-spacing: -1px;
}

.target_box .tg_rbox {
  position: relative;
}
.target_box .tg_rbox .tg_exp {
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--bs-font-c2);
  font-size: 16px;
}
.target_box .tg_rbox .tg_item {
  margin-bottom: 24px;
}
.target_box .tg_rbox .tg_item img {
  width: auto;
  height: 34px;
}

.target_box .tg_glist {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px 0;
}
.target_box .tg_glist .gemb_item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
}
.target_box .tg_glist .gemb_item .btn_Hbox {
  width: 72px;
  height: 82px;
}
.target_box .tg_glist .gemb_item .btn_Hbox:hover {
  animation: tg_gbtn 0.5s ease forwards;
}
.target_box .tg_glist .gemb_item .btn_Hbox i {
  width: 36px;
  height: 36px;
}
.target_box .tg_glist .gemb_item .text {
  overflow: hidden;
  display: flex;
  align-items: center;
}
.target_box .tg_glist .gemb_item .text span {
  color: var(--bs-font-c2);
  font-size: 16px;
}

/* section // livecns */
.sec_livecns {
  width: 100%;
  height: 630px;
  padding: 0 120px;
  margin: 34px 0 10px;
  border: 6px solid #fff;
  background: linear-gradient(180deg, #fff 3%, #f4f5ff);
  border-radius: 24px;
  box-shadow: 0 8px 12px 0 #e8c19880;
}
.sec_livecns .corner {
  position: absolute;
  width: 125px;
  height: auto;
}
.sec_livecns .corner.cor_tl {
  left: -6px;
  top: -6px;
  transform: rotate(0deg);
}
.sec_livecns .corner.cor_tr {
  right: -6px;
  top: -6px;
  transform: rotate(90deg);
}
.sec_livecns .corner.cor_bl {
  left: -6px;
  bottom: -6px;
  transform: rotate(-90deg);
}
.sec_livecns .corner.cor_br {
  right: -6px;
  bottom: -6px;
  transform: rotate(180deg);
}

/* section // hotgame */
.sec_hotgame {
  width: 100%;
  height: 500px;
  margin: 34px 0 10px;
}
.sec_hotgame .target_box .tgbox_left {
  flex: 1;
}
.sec_hotgame .target_box .tgbox_right {
  flex: 1;
}
.sec_hotgame .target_box .tgbox_right h3 {
  font-size: 60px;
}
.sec_hotgame .target_box .tgbox_right h5 {
  font-size: 50px;
}

/* section // service */
.sec_service {
  width: 100%;
  margin: 60px 0 140px;
}

.service_item {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.service_item .scv_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-transform: uppercase;
}
.service_item .scv_item .svc_amte {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  background: url(../images/section/circle_bg.png) no-repeat 50% / contain;
  color: #fff;
  font-size: 14px;
  filter: drop-shadow(0 2px 4px var(--bs-blk-03));
}
.service_item .scv_item .svc_amte .title {
  font-size: 30px;
}
.service_item .scv_item .svc_amte .title span {
  margin-left: 2px;
  font-size: 14px;
  letter-spacing: -1px;
}
.service_item .scv_item .svc_amte .circle {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 90px;
  height: 90px;
  background: url(../images/section/circle_bar.png) no-repeat center / contain;
}
.service_item .scv_item .svc_amte .circle .default {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 90px;
  background: url(../images/section/circle_default.png) no-repeat 0 / cover;
}
.service_item .scv_item .svc_amte .circle .cover {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 90px;
  background: url(../images/section/circle_default.png) no-repeat 100% / cover;
  transform-origin: left center;
}
.service_item .scv_item h3 {
  margin: 26px 0 0;
  color: var(--bs-font-c1);
  font-size: 18px;
  font-weight: 700;
}
.service_item .scv_item p {
  width: 120px;
  line-height: 1.4;
  margin: 12px 0;
  color: var(--bs-font-c2);
  font-size: 13px;
  text-align: center;
  letter-spacing: 0;
}

.service_info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  margin-top: 50px;
}
.service_info .scv_info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.service_info .scv_info .qna_img {
  flex-shrink: 0;
  width: 108px;
}
.service_info .scv_info .qna_img img {
  width: 100%;
  height: auto;
}
.service_info .scv_info .qna_box {
  max-width: 70%;
}
.service_info .scv_info .qna_box h3 {
  margin: 0;
  color: var(--bs-font-c1);
  font-size: 16px;
  font-weight: 700;
}
.service_info .scv_info .qna_box p {
  margin: 12px 0 0;
  line-height: 1.4;
  color: var(--bs-font-c2);
  font-size: 14px;
}

/* footer  ------------------------------------------------------------- */
.Pfooter {
  background: var(--ui-footer-bg);
}
.Pfooter .row_lg {
  padding: 0 10px;
}

/* footer // slide */
.footer_slide {
  display: flex;
  align-items: center;
  height: 80px;
  border-bottom: 1px solid #555;
}
.footer_slide .swiper-slide {
  text-align: center;
}
.footer_slide .swiper-slide img {
  width: auto;
  height: 34px;
  opacity: 0.4;
}

/* footer // etc */
.footer_etc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 40px 0 30px 0;
}
.footer_etc .box_cp {
  flex-shrink: 1;
  max-width: 400px;
  width: 100%;
}
.footer_etc .box_cp img {
  width: auto;
  height: 42px;
  margin-bottom: 14px;
}
.footer_etc .box_cp p {
  line-height: 1.6;
  color: var(--ui-footer-fc1);
  font-size: 12px;
  text-align: justify;
  letter-spacing: 0;
}

.footer_etc .box_fbtn {
  display: flex;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.footer_etc .box_fbtn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  min-width: 110px;
  height: 110px;
  border: 1px solid var(--ui-footer-bdr);
  background: var(--ui-footer-btn);
  border-radius: 4px;
}
.footer_etc .box_fbtn a .IcSVG {
  width: 36px;
  height: 36px;
  color: #eee;
}
.footer_etc .box_fbtn a span {
  color: #eee;
}

.footer_etc .box_fmenu {
  display: flex;
  gap: 10px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.footer_etc .box_fmenu .fmenu {
  flex: 1;
}
.footer_etc .box_fmenu .fmenu h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
}
.footer_etc .box_fmenu .fmenu a {
  display: block;
  margin-bottom: 14px;
  color: var(--ui-footer-fc2);
  font-size: 13px;
}

/* casino page  -------------------------------------------------------- */
.section__casino {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  max-width: var(--ui-row-lg);
  margin: 0 auto;
}
.sec_casino {
  position: relative;
}
.sec_casino .target_box {
  gap: 50px;
  width: 100%;
  height: 700px;
}
.sec_casino .target_box .tgbox_left {
  width: 520px;
}
.sec_casino .target_box .tgbox_left .tg_lbox {
  width: 100%;
  justify-content: center;
}
.sec_casino .target_box .tgbox_right {
  width: 600px;
}
.sec_casino .target_box .tg_model {
  width: 510px;
  height: auto;
}
.sec_casino .target_box .tg_glist {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 20px 0;
  margin: 40px 0;
}
.sec_casino .target_box .tg_glist .gemb_item .text span {
  color: var(--bs-font-c1);
}

/* slot page  ---------------------------------------------------------- */
/* slot // banner */
.banner__wrap {
  overflow: hidden;
  width: 100%;
}
.sec_bnr {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 400px;
}
.sec_bnr .bn_title {
  display: block;
}
.sec_bnr .bn_title h3 {
  margin: 0 0 5px;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -4px;
}
.sec_bnr .bn_title p {
  margin: 0 0 5px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -2px;
}
.sec_bnr .bn_img {
  position: absolute;
  right: -20px;
  top: 40px;
  width: 500px;
  height: auto;
  filter: drop-shadow(0 0 6px var(--bs-blk-02));
}

/* slot // section */
.section__slot {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: var(--ui-row-lg);
  padding: 0 10px;
  margin: 0 auto;
}

.sec_slot {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-bottom: 100px;
}
.sec_slot .slot_snb {
  display: flex;
  flex-flow: column;
  min-width: 95px;
  max-height: 720px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--bs-sdw-box-01);
}
.sec_slot .slot_snb .slot_lst button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: 80px;
}
.sec_slot .slot_snb .slot_lst button i {
  display: block;
  width: 26px;
  height: 26px;
}
.sec_slot .slot_snb .slot_lst button span {
  color: var(--ui-font-01);
  font-size: 11px;
  word-break: keep-all;
}
.sec_slot .slot_snb .slot_lst button:hover,
.sec_slot .slot_snb .slot_lst button.active {
  background: var(--bs-pnt-02);
}
.sec_slot .slot_snb .slot_lst button:hover i,
.sec_slot .slot_snb .slot_lst button.active i {
  background-position: center bottom;
}
.sec_slot .slot_snb .slot_lst button:hover span,
.sec_slot .slot_snb .slot_lst button.active span {
  color: #fff;
}

.sec_slot .slot_cont {
  display: flex;
  flex-flow: column;
  width: 100%;
  background: #fff;
  box-shadow: var(--bs-sdw-box-01);
}
.sec_slot .slot_cont .slot_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
  border-bottom: 1px solid var(--bs-bdr-02);
}
.sec_slot .slot_cont .slot_head .tab_inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
}
.sec_slot .slot_cont .slot_head .tab_inner .tab_btn {
  position: relative;
  display: block;
  min-width: 50px;
  line-height: 70px;
  padding: 0 10px;
  color: var(--bs-font-00);
  font-size: 16px;
  text-align: center;
}
.sec_slot .slot_cont .slot_head .tab_inner .tab_btn::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--bs-pnt-02);
  border-radius: 2px;
  transition: 0.3s;
}
.sec_slot .slot_cont .slot_head .tab_inner .tab_btn.active {
  color: var(--bs-pnt-02);
}
.sec_slot .slot_cont .slot_head .tab_inner .tab_btn.active::after {
  left: 0;
  width: 100%;
}
.sec_slot .slot_cont .tab_search {
  position: relative;
  display: flex;
  align-items: center;
  width: 300px;
  height: 40px;
  border: 1px solid var(--bs-bdr-03);
  background: #fff;
  border-radius: 4px;
}
.sec_slot .slot_cont .tab_search input {
  width: 100%;
  height: 100%;
  padding: 0 40px 0 20px;
  cursor: text;
}
.sec_slot .slot_cont .tab_search button[type='submit'] {
  width: 40px;
  height: 40px;
}
.sec_slot .slot_cont .tab_search button[type='submit'] .IcSVG {
  width: 18px;
  height: 18px;
  color: var(--bs-font-03);
  transform: scaleX(-1);
}

.sec_slot .slot_gamebox {
  display: none;
  padding: 20px;
}
.sec_slot .slot_gamebox.active {
  display: block;
}

.game_lst {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 14px;
}
.game_lst.md_gmlst {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
.game_lst .game_item {
  overflow: hidden;
  border: 1px solid var(--bs-bdr-02);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--bs-sdw-box-01);
}
.game_lst .game_item .gm_thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 3;
}
.game_lst .game_item .gm_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.game_lst .game_item .gm_thumb:hover img {
  transform: scale(1.08);
}
.game_lst .game_item .gm_thumb .overlay {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--bs-blk-04);
  transform: scale(0);
  transition: transform 0.2s ease;
}
.game_lst .game_item .gm_thumb .overlay .btn_start {
  width: 60%;
  height: 46px;
  background: var(--bs-pnt-02);
  border-radius: 8px;
  box-shadow: var(--bs-sdw-box-01);
  color: #fff;
  font-size: 16px;
}
.game_lst .game_item .gm_thumb:hover .overlay {
  transform: scale(1);
}
.game_lst .game_item .gm_info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 10px;
}
.game_lst .game_item .gm_info h3 {
  height: 100%;
  line-height: 1.1;
  margin: 0;
  color: var(--bs-font-01);
  font-size: 16px;
  text-align: center;
}
.game_lst .game_item .gm_info .btn_like {
  flex-shrink: 0;
  width: 20px;
  height: 40px;
  cursor: pointer;
}
.game_lst .game_item .gm_info .btn_like .uicon_like {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/icon/uicon_like.svg) no-repeat center;
}
.game_lst .game_item .gm_info .btn_like.check .uicon_like {
  background: url(../images/icon/uicon_like_o.svg) no-repeat center;
}

@media (max-width: 768px) {
  .game_lst.md_gmlst {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
  }
  .game_lst .game_item .gm_info {
    padding: 8px 8px;
  }
  .game_lst .game_item .gm_info h3 {
    font-size: 12px;
  }
}

/* slot // board */
.section__board {
  display: flex;
  width: 100%;
  max-width: var(--ui-row-lg);
  margin: 0 auto;
}

.sec_board {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 20px 0 140px;
}
.sec_board .frb_Lnb {
  flex-shrink: 0;
  width: 200px;
}
.sec_board .frb_Lnb .Flnb_lst {
  overflow: hidden;
  position: sticky;
  top: calc(var(--ui-head-H) + 30px);
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--bs-sdw-box-01);
}
.sec_board .frb_Lnb .Flnb_lst a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 64px;
  padding: 0 10px 0 30px;
  color: var(var(--bs-font-01));
  font-size: 14px;
  transition: 0.2s;
}
.sec_board .frb_Lnb .Flnb_lst a:hover,
.sec_board .frb_Lnb .Flnb_lst a.active {
  background: var(--bs-pnt-02);
  color: #fff;
  font-size: 16px;
}
.sec_board .frb_Lnb .Flnb_lst a i {
  display: inline-block;
  width: 18px;
  height: 18px;
  filter: drop-shadow(1px 1px 1px var(--bs-blk-01));
}
.sec_board .frb_Lnb .Flnb_lst a:hover span,
.sec_board .frb_Lnb .Flnb_lst a.active span {
  text-shadow: 0 0 4px var(--bs-blk-02);
}

.sec_board .frb_cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.sec_board .frb_cont .frb_item {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 2px 4px var(--bs-blk-04);
  transition: all 0.25s ease;
  cursor: pointer;
}
.sec_board .frb_cont .frb_item img {
  width: 100%;
  height: auto;
}
.sec_board .frb_cont .frb_item:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px var(--bs-blk-05);
}
.sec_board .frb_cont .frb_item.frb_N::after,
.sec_board .frb_cont .frb_item.frb_R::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 166px;
  height: 29px;
}
.sec_board .frb_cont .frb_item.frb_N::after {
  background: url(../images/icon/ubadge_notice.webp) no-repeat center / contain;
}
.sec_board .frb_cont .frb_item.frb_R::after {
  background: url(../images/icon/ubadge_rules.webp) no-repeat center / contain;
}

/* MB_wrap -------------------------------------------------------------- */
.MB_wrap {
  display: none;
  overflow-y: auto;
  max-width: var(--ui-mb-maxW);
  min-height: 100vh;
  height: 100%;
  margin: 0 auto;
  padding-bottom: calc(var(--ui-mb-GNB) + env(safe-area-inset-bottom));
  background: var(--ui-bg);
}

/* Mheader -------------------------------------------------------------- */
.Mheader {
  position: relative;
  background: #fff;
}
.Mheader .Mhd_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 8px;
}
.Mheader .Mhd_row .Mhd_logo {
  display: block;
}
.Mheader .Mhd_row .Mhd_logo img {
  width: auto;
  height: 26px;
}
.Mheader .Mhd_row .Mhd_more {
  display: flex;
  align-items: center;
  gap: 8px;
}
.Mheader .Mhd_row .Mhd_more .Mhbtn {
  position: relative;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.Mheader .Mhd_row .Mhd_more .Mhbtn .IcSVG {
  width: 20px;
  height: 20px;
  color: var(--bs-font-02);
}
.Mheader .Mhd_row .Mhd_more .Mhbtn.Ic_new::after {
  position: absolute;
  top: 2px;
  right: 0;
}

/* Mswiper --------------------------------------------------------------- */
.Msdr_wrap {
  overflow-y: hidden;
  width: 100%;
  height: auto;
  padding: 0 8px;
}
.Msdr_wrap .swiper-wrapper .swiper-slide img {
  max-height: 140px;
  min-height: 130px;
  border-radius: 4px;
}

/* member nav ----------------------------------------------------------- */
.service_area {
  padding: 8px 0 10px 0;
}

.member_nav {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 5px;
  padding: 10px 10px;
  margin: 8px 8px 0 8px;
  border: 0px solid #79410024;
  background: #7941001f;
  border-radius: 6px;
}
.member_nav .mbnav_info {
  display: flex;
  align-items: center;
}
.member_nav .mbnav_info .mbr_login {
  display: flex;
  align-items: center;
  gap: 8px;
}
.member_nav .mbnav_info .mbr_login a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}
.member_nav .mbnav_info .mbr_login .Mbtn_login {
  background: var(--bs-pnt-02);
  color: #fff;
}
.member_nav .mbnav_info .mbr_login .Mbtn_register {
  background: #fff;
  border-color: var(--bs-pnt-02);
  color: var(--bs-pnt-01);
}

.member_nav .mbnav_info .mbr_info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.member_nav .mbnav_info .mbr_info .user_level {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #7941003d;
  background: #fff;
  border-radius: 6px;
}
.member_nav .mbnav_info .mbr_info .user_level img {
  width: auto;
  height: 26px;
}
.member_nav .mbnav_info .mbr_info .user_text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.member_nav .mbnav_info .mbr_info .user_text .u_name {
  display: block;
  color: var(--bs-font-01);
  font-size: 12px;
}
.member_nav .mbnav_info .mbr_info .user_text .u_money {
  display: block;
  color: var(--bs-font-01);
  font-size: 14px;
  letter-spacing: 0;
}

.member_nav .mbnav_nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.member_nav .mbnav_nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}
.member_nav .mbnav_nav p {
  margin: 0;
  color: var(--ui-mb-pnt);
  font-size: 12px;
  font-weight: 500;
}
.member_nav .mbnav_nav .Nbar {
  width: 1px;
  height: 80%;
  background: #00000024;
}
.member_nav .mbnav_nav .IcSVG {
  width: 20px;
  height: 20px;
  color: var(--bs-pnt-01);
}

/* gameEnter ------------------------------------------------------------ */
.gameEnter_wrap {
  display: flex;
  overflow: auto;
  width: 100%;
  height: calc(var(--vh, 1vh) * 50);
  padding: 0 8px;
  transition: all 0.2s;
}

/* gameEnter // game_lnb */
.game_lnb {
  position: relative;
  display: flex;
  justify-content: center;
  flex-basis: 0;
  max-width: 78px;
  width: 100%;
  height: 100%;
}
.game_lnb .gm_list {
  position: relative;
  overflow-y: auto;
  padding: 0 5px 5px 0;
  margin: 0;
}
.game_lnb .gm_list li {
  margin-bottom: 8px;
}
.game_lnb .gm_list .gitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  width: 64px;
  height: 44px;
  padding: 0 6px;
  background: url(../images/btn/btn_sbox_N.webp) no-repeat center / contain;
  filter: drop-shadow(0 2px 2px var(--ui-mb-sdw));
  transition: 0;
}
.game_lnb .gm_list .gitem i {
  flex-shrink: 0;
  display: block;
  width: 22px;
  height: 22px;
  background-size: 22px 44px;
  background-position: center bottom;
}
.game_lnb .gm_list .gitem span {
  display: block;
  line-height: 1.2;
  color: var(--bs-font-c2);
  font-size: 11px;
  font-weight: 700;
  text-align: right;
  word-break: break-all;
  white-space: normal;
  letter-spacing: -1px;
}
.game_lnb .gm_list .gitem.on {
  background: url(../images/btn/btn_sbox_O.webp) no-repeat center / contain;
}
.game_lnb .gm_list .gitem.on i {
  background-position: center top;
  animation: fadeInicon 0.3s forwards;
  filter: drop-shadow(0 2px 2px var(--bs-blk-02));
}
.game_lnb .gm_list .gitem.on span {
  color: #fff;
}

/* gameEnter // game_Entcont */
.game_Entcont {
  position: relative;
  overflow: scroll;
  flex: 1 1 0%;
  width: 100%;
}

.gametab_cont {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.gametab_cont .gmtab_box {
  padding: 0 6px;
}
.gmtab_box .mgame_list {
  display: grid;
  grid-gap: 12px;
}
.gmtab_box .mgame_list a {
  display: block;
  overflow: hidden;
  max-width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px var(--ui-mb-sdw);
  cursor: pointer;
}
.gmtab_box .mgame_list img {
  width: 100%;
  height: auto;
}
.gmtab_box .mgame_list.mgm_1fr {
  grid-template-columns: repeat(1, 1fr);
}
.gmtab_box .mgame_list.mgm_1fr .mgame_list a {
  aspect-ratio: 81 / 30;
}
.gmtab_box .mgame_list.mgm_2fr {
  grid-template-columns: repeat(2, 1fr);
}
.gmtab_box .mgame_list.mgm_2fr .mgame_list a {
  aspect-ratio: 1 / 1;
}

/* MB_gnb --------------------------------------------------------------- */
.MB_gnb {
  position: fixed;
  left: 50%;
  bottom: 0;
  max-width: var(--ui-mb-maxW);
  width: 100%;
  transform: translateX(-50%);
}
.MB_gnb .Mgnb_list {
  display: flex;
  height: var(--ui-mb-GNB);
  padding-bottom: env(safe-area-inset-bottom);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: #fff;
  box-shadow: 0 0 6px 0 var(--bs-blk-02);
}
.MB_gnb .Mgnb_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  gap: 4px;
  text-align: center;
}
.MB_gnb .Mgnb_list a i {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background-size: 24px 48px;
  background-position: center bottom;
}
.MB_gnb .Mgnb_list a span {
  display: block;
  color: var(--bs-font-c2);
  font-size: 10px;
}
.MB_gnb .Mgnb_list a.on i {
  background-position: center top;
  animation: fadeInicon 0.2s forwards;
  filter: drop-shadow(0 2px 2px var(--bs-blk-02));
}
.MB_gnb .Mgnb_list a.on span {
  color: var(--bs-pnt-02);
  font-weight: 700;
}

/* PC_MB // page move  -------------------------------------------------- */
.pg_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}
.pg_nav .btn_pg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--bs-bdr-03);
  background: #fff;
  border-radius: 4px;
  color: var(--bs-font-02);
  font-size: 16px;
}
.pg_nav .btn_pg.active {
  border: none;
  background: var(--bs-pnt-02);
  color: #fff;
}
.pg_nav .btn_pg .uicon_pg {
  display: block;
  width: 12px;
  height: 12px;
  color: var(--bs-font-02);
}
.pg_nav .btn_pg.prev .uicon_pg {
  transform: rotate(-90deg);
}
.pg_nav .btn_pg.next .uicon_pg {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .pg_nav .btn_pg {
    flex: 1;
    min-width: auto;
  }
}

/* PC_MB // img3d ---------------------------------------------------------- */
.img3d {
  perspective: 1000px;
}
.img3d img {
  animation: spinY 5s linear infinite;
  transform-style: preserve-3d;
  filter: drop-shadow(0 2px 2px var(--bs-blk-03));
}

/* PC_MB // tabbox ------------------------------------------------------ */
.WP_tab {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}
.WP_tab .tab_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 4px;
  border: 1px solid var(--bs-bdr-02);
  background: #fff;
  border-radius: 4px;
  color: var(--ui-font-00);
  font-size: 13px;
}
.WP_tab .tab_btn.active {
  border-color: var(--bs-pnt-02);
  background: var(--bs-pnt-02);
  color: #fff;
  box-shadow: var(--bs-sdw-box-01);
}
.WP_tabbox {
  display: none;
  flex-direction: column;
}
.WP_tabbox.active {
  display: flex;
}

@media (max-width: 768px) {
  .WP_tab {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* PC_MB // scrbox ------------------------------------------------------ */
.WP_scrwrap {
  margin-bottom: 6px;
}
.scrbox {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 6px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}
.scrbox::-webkit-scrollbar {
  display: none;
}
.scrbox button {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--bs-bdr-03);
  border-radius: 6px;
}
.scrbox button .name {
  line-height: 1.1;
  color: var(--ui-font-01);
  word-break: break-all;
}
.scrbox button.active {
  background: var(--bs-pnt-02);
  box-shadow: 0 2px 2px var(--bs-blk-02);
}
.scrbox button.active i {
  background-position: center bottom;
}
.scrbox button.active span {
  color: #fff;
}

.scrbox_game button {
  max-width: 70px;
  width: 100%;
  height: 70px;
  padding: 6px 6px;
}
.scrbox_game button i {
  width: 24px;
  height: 24px;
}
.scrbox_game button .name {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 11px;
}

.scrbox_basic button {
  justify-content: center;
  flex-direction: row;
  flex: 0 1 auto;
  min-width: 90px;
  height: 40px;
  padding: 4px 4px;
}
.scrbox_basic button .name {
  font-size: 13px;
}

/* PC_MB // button ------------------------------------------------------ */
.Wbtn {
  border-radius: 30px;
  font-size: 14px;
}
.Wbtn.Wbc_pnt {
  background: var(--bs-btn-01);
  color: #fff;
}
.Wbtn.Wbc_navy {
  background: var(--bs-btn-02);
  color: #fff;
}

.Wbtn_fxrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.thm_login .Wbtn {
  width: 100%;
  height: 46px;
}
.thm_register .Wbtn {
  width: 100%;
  height: 46px;
}
.thm_Form .Wbtn {
  flex: 1;
  height: 46px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .thm_login .Wbtn {
    height: 48px;
    font-size: 16px;
  }
  .thm_register .Wbtn {
    height: 48px;
    margin-top: 10px;
    font-size: 16px;
  }
  .thm_Form .Wbtn {
    height: 48px;
    font-size: 16px;
  }
}

/* form_item ------------------------------------------------------------ */
.form_item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid transparent;
}
.form_item:focus-within {
  border-color: var(--bs-pnt-02);
}
.form_item[readonly] {
  background: var(--bs-bdr-03);
  border-radius: 6px;
  pointer-events: none;
}

.Inp_lab {
  height: var(--ui-form-hg);
}
.Inp_def {
  height: var(--ui-form-hg);
}

.Frm_st1 {
  border-color: var(--bs-bdr-02);
  background: #fff;
  box-shadow: var(--bs-sdw-box-01);
}
.Frm_st2 {
  border-color: var(--bs-bdr-03);
  background: #fff;
  box-shadow: var(--bs-sdw-box-01);
}
.Frm_st3 {
  border: 1px solid var(--bs-bdr-03);
  background: #fff;
  border-radius: 6px;
}

/* form_item // uicon */
.uicon {
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  padding: 6px;
  margin: 8px;
  border-radius: 50px;
  box-sizing: content-box;
}
.uicon_btn {
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  padding: 4px;
  margin: 10px;
  border-radius: 50px;
  box-sizing: content-box;
  background-color: var(--bs-blk-01) !important;
}
.uicon_clear {
  background: url(../images/icon/uicon_x.svg) no-repeat center / 8px;
  opacity: 0.8;
}
.uicon_eye {
  background: url(../images/icon/uicon_eye.svg) no-repeat center / 14px;
  opacity: 0.6;
}
.uicon_eye.show {
  background: url(../images/icon/uicon_eye_show.svg) no-repeat center / 14px;
  opacity: 0.6;
}
.uicon_user {
  background: url(../images/icon/uicon_user.svg) no-repeat center / 14px;
}
.uicon_password {
  background: url(../images/icon/uicon_password.svg) no-repeat center / 14px;
}
.uicon_success {
  background: url(../images/icon/uicon_success.svg) no-repeat center / 16px;
  opacity: 0.8;
}
.uicon_calendar {
  background: url(../images/icon/uicon_calendar.svg) no-repeat center / 14px;
}
.uicon_bank {
  background: url(../images/icon/uicon_bank.svg) no-repeat center / 14px;
}
.uicon_bank_num {
  background: url(../images/icon/uicon_bank_num.svg) no-repeat center / 14px;
}
.uicon_code {
  background: url(../images/icon/uicon_code.svg) no-repeat center / 14px;
}

/* form_item // input */
.form_Inp {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  color: var(--bs-font-01);
  font-size: 14px;
  letter-spacing: 0;
}
.form_Inp::placeholder {
  color: var(--bs-font-02);
  opacity: 0.8;
}
.form_Inp:-ms-input-placeholder {
  color: var(--bs-font-02);
  opacity: 0.8;
}
.form_Inp::-webkit-input-placeholder {
  color: var(--bs-font-02);
  opacity: 0.8;
}

.form_tal {
  text-align: left;
}
.form_tac {
  text-align: center;
}
.form_tar {
  text-align: right;
}
.form_birth {
  text-align: left;
}

/* form_item // checkbox */
.Chk_cstm {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
  transition: 0.2s;
}
.Chk_cstm input[type='checkbox'] {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid var(--bs-bdr-02);
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.Chk_cstm input[type='checkbox']::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 34%;
  height: 54%;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: translate(-40%, -60%) rotate(45deg) scale(0);
  transition: 0.2s;
}
.Chk_cstm input[type='checkbox']:checked {
  background: var(--bs-pnt-02);
  border-color: var(--bs-pnt-02);
}
.Chk_cstm input[type='checkbox']:checked::after {
  transform: translate(-40%, -60%) rotate(45deg) scale(1);
}
.Chk_cstm label {
  flex-shrink: 0;
  margin: 2px 0 0 0;
  font-weight: normal;
  user-select: none;
  cursor: pointer;
}

/* form_item // selectbox */
.Sbox_def::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  background: url(../images/icon/uicon_select.svg) no-repeat center / contain;
  transform: translateY(-50%);
  transition: 0.3s ease;
  pointer-events: none;
  opacity: 0.7;
}
.Sbox_def:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
}
.Sbox_def select {
  width: 100%;
  height: 100%;
  color: var(--bs-font-00);
}

.Sbox_def {
  height: var(--ui-form-hg);
}
.Sbox_phn {
  height: var(--ui-form-hg);
}
.Sbox_phn select {
  padding: 0 30px 0 20px;
  text-align: left;
}
.Sbox_bank {
  height: var(--ui-form-hg);
}
.Sbox_bank select {
  padding: 0 30px 0 0;
  text-align: left;
}

/* form_item // selectbox custom */
.Sbox_cstm {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
  cursor: pointer;
}
.Sbox_cstm::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: url(../images/icon/uicon_select.svg) no-repeat center / contain;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
}
.Sbox_cstm.open {
  box-shadow: var(--bs-sdw-box-01);
}
.Sbox_cstm.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.Sbox_cstm .Sbox_hdr {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--ui-form-hg);
  padding: 0 10px;
  color: var(--bs-font-00);
}
.Sbox_cstm .Sbox_opt {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid var(--bs-bdr-03);
  z-index: 9;
}
.Sbox_cstm.top .Sbox_hdr {
  border-radius: 0 0 6px 6px !important;
}
.Sbox_cstm.top .Sbox_opt {
  top: auto !important;
  bottom: calc(100% + -1px) !important;
}
.Sbox_cstm.open .Sbox_hdr {
  border-radius: 6px 6px 0 0;
}
.Sbox_cstm.open .Sbox_opt {
  display: block;
  left: 0;
  top: calc(100% + -1px);
}
.Sbox_cstm.top .Sbox_opt .slt_list .slt_item:last-child {
  border-bottom: none;
}
.Sbox_cstm.open .Sbox_opt .slt_list .slt_item:first-child {
  border-top: none;
}

.Sbox_cstm .slt_list {
  margin: 0;
  max-height: calc(calc(var(--ui-form-hg) * 5) + 1px);
}
.Sbox_cstm .slt_list .slt_item {
  display: flex;
  align-items: center;
  height: var(--ui-form-hg);
  padding: 0 10px;
  border-top: 1px solid var(--bs-bdr-02);
}
.Sbox_cstm .slt_list .slt_item:hover {
  background: var(--bs-blk-03);
}
.Sbox_cstm .slt_list .slt_item.active {
  background: var(--bs-blk-05);
}

.Sbox_cstm .opt_item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.Sbox_cstm .opt_item img {
  flex-shrink: 0;
  width: auto;
  height: 26px;
}
.Sbox_cstm .opt_item .slt_text {
  line-height: 1;
}
.Sbox_cstm .opt_item .slt_text > span {
  display: block;
  padding: 0 10px 0 0;
}
.Sbox_cstm .opt_item .slt_text .Mtit {
  color: var(--ui-font-00);
  font-size: 14px;
}
.Sbox_cstm .opt_item .slt_text .Stit {
  color: var(--ui-font-00);
  font-size: 11px;
  letter-spacing: 0;
  opacity: 0.6;
}

.Sbox_cstm[readonly] .Sbox_hdr {
  background: var(--bs-bdr-02) !important;
  pointer-events: none;
}

/* form_item // msg */
.msg_line {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 16px 0 6px;
  color: #e61414;
  font-size: 13px;
}
.msg_row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px 0 16px;
  color: #e61414;
  font-size: 12px;
}
.msg_row .IcSVG {
  display: block;
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  :root {
    --ui-form-hg: 48px;
  }
  /* form_item */
  .Frm_st1 {
    border-color: transparent;
    background: #ffffff33;
    box-shadow: none;
  }

  .form_mob {
    flex-wrap: wrap;
  }
  .form_mob span {
    display: none;
  }
  .form_mob > div {
    flex: 1;
    min-width: 0;
  }
  .form_mob .Sbox_phn {
    flex: 0 0 100%;
  }

  /* form_item // uicon */
  .uicon {
    width: 14px;
    height: 14px;
    padding: 8px;
    margin: 8px;
    background-color: #ffffffcc !important;
    opacity: 1;
  }
  .uicon_btn {
    width: 14px;
    height: 14px;
    padding: 4px;
    margin: 10px;
    background-color: #ffffff4d !important;
    filter: brightness(6);
    opacity: 1;
  }

  /* form_item // input */
  .form_Inp {
    color: #fff;
    font-size: 16px;
    text-align: center;
  }
  .form_Inp::placeholder {
    color: #fff;
    opacity: 0.8;
  }
  .form_Inp:-ms-input-placeholder {
    color: #fff;
    opacity: 0.8;
  }
  .form_Inp::-webkit-input-placeholder {
    color: #fff;
    opacity: 0.8;
  }

  /* form_item // checkbox */
  .Chk_cstm input[type='checkbox'] {
    background: #ffffff33;
  }
  .Chk_cstm label {
    color: #fff;
  }

  /* form_item // selectbox */
  .Sbox_def select {
    text-align-last: center;
  }
  .Sbox_phn select,
  .Sbox_bank select {
    padding: 0;
    color: #fff;
  }
  .Sbox_phn select option,
  .Sbox_bank select option {
    background: #363639;
  }
  .Sbox_phn::after,
  .Sbox_bank::after {
    display: none;
  }
  .Sbox_def.Inp_dep select {
    padding: 0 20px;
    text-align-last: left;
    color: var(--bs-font-00);
  }
  .Sbox_def.Inp_dep select option {
    background: #fff;
  }
  .Sbox_phn.Inp_dep::after {
    display: block;
  }

  /* form_item // msg */
  .msg_row {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  input[type='date']::-webkit-calendar-picker-indicator {
    display: none;
  }
}

/* PC_MB // popup ------------------------------------------------------- */
#pops_bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000000cc;
  z-index: 9999;
}

.WP_popup {
  position: relative;
  width: 100%;
  height: auto;
}

.WP_popup .pops_box {
  position: absolute;
  flex-direction: column;
  min-height: 560px;
  z-index: 1;
}
.WP_popup .pops_box .pbx_head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background: var(--ui-mb-popbg);
}
.WP_popup .pops_box .pbx_head img {
  width: auto;
  height: 32px;
  filter: brightness(0) invert(1);
}
.WP_popup .pops_box .pbx_head .pbx_close {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
.WP_popup .pops_box .pbx_head .pbx_close .IcSVG {
  width: 16px;
  height: 16px;
  color: #fff;
}
.WP_popup .pops_box .pbx_cont {
  overflow: hidden;
  width: 100%;
  height: auto;
  background: var(--ui-mb-popbg);
  object-fit: contain;
  text-align: center;
}
.WP_popup .pops_box .pbx_cont img {
  max-width: 100%;
  height: auto;
}
.WP_popup .pops_box .pbx_footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: var(--ui-mb-popbg);
}
.WP_popup .pops_box .pbx_footer .pbx_close_24 {
  padding: 12px 20px;
  background: #00000024;
  border-radius: 40px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}
.WP_popup .pops_box.fade-out {
  animation: popupFadeUp 0.5s ease forwards;
}

@media (max-height: 700px) {
  #pops_bg {
    overflow: auto;
  }
  .WP_popup .pops_box {
    position: absolute;
    transform: translate(-50%, 3%) !important;
  }
}
@media (max-width: 460px) {
  #pops_bg {
    overflow: auto;
  }
  .WP_popup .pops_box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    transition: transform 0.3s ease;
  }
  .WP_popup .pops_box .pbx_cont {
    width: 100%;
    height: auto;
  }
}

/* PC_MB // modal ------------------------------------------------------- */
.modal__wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  background: #000000cc;
  z-index: 9999;
}

.WP_modal {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 300px;
  width: 100%;
  min-height: 180px;
  padding: 20px 30px;
  margin: auto 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
}
.WP_modal.Scr_cont {
  flex-shrink: 1;
}
.WP_modal.Scr_cont .MD_cont {
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

.WP_modal .MDbtn_back {
  display: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8;
}
.WP_modal .MDbtn_back .IcSVG {
  width: 14px;
  height: 14px;
  color: var(--bs-font-01);
  transform: rotate(-90deg);
}
.WP_modal .MDbtn_close {
  position: absolute;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8;
}
.WP_modal .MDbtn_close .IcSVG {
  width: 14px;
  height: 14px;
  color: var(--bs-font-01);
  transition: 0.3s;
}
.WP_modal .MDbtn_close:hover {
  background: var(--bs-blk-01);
  border-radius: 6px;
}
.WP_modal .MDbtn_close:hover .IcSVG {
  transform: rotate(-180deg);
}

/* WP_modal // MD_head */
.WP_modal .MD_head {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  min-height: 40px;
  margin-bottom: 10px;
}
.WP_modal .MD_head span {
  margin-right: 36px;
  color: var(--bs-font-00);
  font-size: 20px;
  font-weight: 700;
}
.WP_modal .MD_cont {
  position: relative;
}
.WP_modal .MD_cont img {
  max-width: 100%;
  height: auto;
}
.WP_modal .MD_cont.Pdbox {
  padding: 10px 4px;
}
.WP_modal .MD_cont.Mgbox {
  margin: 10px;
}

/* WP_modal // basic */
.thm_basic .WP_modal {
  max-width: 700px;
}
.thm_basic .WP_modal.Scr_cont {
  max-height: 600px;
}
.thm_basic .MDbtn_close {
  top: 22px;
  right: 20px;
}
.thm_basic .WP_modal .MD_head img {
  width: auto;
  height: 48px;
  margin: 10px auto;
}

/* WP_modal // login */
.thm_login .WP_modal {
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 740px;
  height: 520px;
  padding: 20px 30px;
  background: #fff url(../images/bg/loginbg.webp) no-repeat center / contain;
}
.thm_login .MDbtn_close {
  top: 20px;
  right: 20px;
}

.thm_login .login_model {
  flex-shrink: 0;
  width: 400px;
  height: 100%;
}
.thm_login .login_model img {
  position: absolute;
  left: 0;
  bottom: 1px;
}
.thm_login .login_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.thm_login .login_wrap form {
  width: 100%;
}
.thm_login .login_wrap .form_item {
  border-radius: 30px;
}
.thm_login .login_wrap .log_logo {
  width: 100%;
  margin-bottom: 36px;
  text-align: center;
}
.thm_login .login_wrap .log_logo img {
  width: auto;
  height: 50px;
}
.thm_login .login_wrap .log_form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

/* WP_modal // register */
.thm_register .WP_modal {
  max-width: 700px;
}
.thm_register .WP_modal.Scr_cont {
  max-height: 600px;
}
.thm_register .MDbtn_close {
  top: 20px;
  right: 20px;
}

.thm_register .MD_head img {
  width: auto;
  height: 48px;
  margin: 30px auto 10px auto;
}
.thm_register .MD_cont {
  margin: 10px 36px 20px 36px;
}
.thm_register .MD_cont .reg_form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.thm_register .form_item {
  border-radius: 30px;
}
.thm_register .Inp_lab .btn_idcheck {
  min-width: 64px;
  height: 100%;
  padding: 0 6px;
  margin-right: -1px;
  border: 1px solid var(--bs-pnt-02);
  background: #fff;
  border-radius: 50px;
  color: var(--bs-font-00);
  font-size: 13px;
  box-sizing: content-box;
}
.thm_register .Inp_birth {
  height: var(--ui-form-hg);
  padding: 0 0 0 30px;
}
.thm_register .Inp_birth .form_Inp {
  flex: 0 0 auto;
  width: 26px;
}
.thm_register .form_fxrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

@media (max-width: 768px) {
  /* WP_modal */
  .modal__wrap {
    padding: 10px;
  }
  .modal__wrap.thm_fixed {
    padding: 0;
  }
  .modal__wrap.thm_fixed .WP_modal {
    max-width: 100%;
    border-radius: 0;
  }
  .modal__wrap.thm_fixed .WP_modal .MDbtn_back {
    display: block;
  }
  .modal__wrap.thm_fixed .WP_modal .MDbtn_back:hover {
    background: var(--bs-blk-01);
    border-radius: 6px;
  }
  .modal__wrap.thm_fixed .WP_modal .MDbtn_close {
    display: none;
  }

  .WP_modal {
    min-height: 320px;
    padding: 10px;
    border-radius: 6px;
  }
  .WP_modal.Pos_abs {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
  }

  /* WP_modal // MD_head */
  .WP_modal .MD_head span {
    font-size: 20px;
  }
  .WP_modal .MD_head img {
    width: auto;
    height: 40px;
    margin: 20px auto 20px auto;
  }
  .WP_modal .MD_cont.Pdbox {
    padding: 5px 5px;
  }

  /* WP_modal // basic */
  .thm_basic .WP_modal {
    padding: 10px;
  }
  .thm_basic .WP_modal.Scr_cont {
    max-height: 100%;
  }
  .thm_basic .MDbtn_close {
    top: 12px;
    right: 10px;
  }
  .thm_basic .WP_modal .MD_head img {
    height: 40px;
    margin: 5px auto;
  }

  /* WP_modal // login */
  .thm_login {
    padding: 0;
    background: linear-gradient(var(--bs-blk-02), var(--bs-blk-02)),
      url(../images/bg/mobile_reg_bg.webp) no-repeat center / cover;
  }
  .thm_login .WP_modal {
    width: 100%;
    height: 100%;
    padding: 0;
    background: none;
    box-shadow: none;
  }
  .thm_login .MDbtn_close {
    top: 18px;
    right: 18px;
    filter: brightness(6);
  }
  .thm_login .MDbtn_close:focus {
    background: #ffffff1a;
  }

  .thm_login .login_model {
    display: none;
  }
  .thm_login .login_wrap {
    margin: 0 36px;
  }
  .thm_login .login_wrap .log_logo {
    margin-bottom: 40px;
  }
  .thm_login .login_wrap .log_logo img {
    width: auto;
    height: 44px;
  }
  .thm_login .login_wrap .log_form .form_item:nth-child(1) {
    margin-bottom: -2px;
  }
  .thm_login .login_wrap .log_form .form_fxrow {
    padding: 5px 14px;
    margin-bottom: 20px;
  }
  .thm_login .login_wrap .log_form .Wbc_navy {
    border: 1px solid var(--bs-pnt-02);
    background: var(--bs-blk-03);
  }

  /* WP_modal // register */
  .thm_register {
    padding: 0;
    background: linear-gradient(var(--bs-blk-02), var(--bs-blk-02)),
      url(../images/bg/mobile_reg_bg.webp) no-repeat center / cover;
  }
  .thm_register .WP_modal {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .thm_register .WP_modal.Scr_cont {
    max-height: 100%;
  }
  .thm_register .MDbtn_close {
    top: 18px;
    right: 18px;
  }
  .thm_register .MDbtn_close:focus {
    background: #ffffff1a;
  }
  .thm_register .MDbtn_close img {
    filter: invert(1) contrast(6);
  }

  .thm_register .MD_head {
    padding: 5px 10px;
    box-sizing: content-box;
  }
  .thm_register .MD_head img {
    width: auto;
    height: 42px;
    margin: 50px auto 5px auto;
  }
  .thm_register .MD_cont {
    margin: 10px 36px 40px 36px;
  }
  .thm_register .MD_cont .reg_form {
    gap: 16px;
  }
  .thm_register .MD_cont .reg_form .form_has {
    padding: 0 40px 0 0;
  }

  .thm_register .Inp_lab .btn_idcheck {
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid var(--bs-pnt-02);
    background: var(--bs-pnt-02);
    color: #fff;
    font-size: 14px;
  }
  .thm_register .Inp_birth span {
    color: #fff;
    font-size: 12px;
  }
}

/* PC_MB // thm_Form ------------------------------------------------------- */
.thm_Form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.thm_Form .bank_table {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--bs-bdr-03);
  border-bottom: none;
}
.thm_Form .bank_table > div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  border-bottom: 1px solid var(--bs-bdr-03);
}
.thm_Form .bank_table .name {
  background: var(--bs-pnt-01);
  color: #fff;
  font-size: 13px;
}
.thm_Form .bank_table .time {
  color: var(--bs-font-01);
  font-size: 12px;
}

.thm_Form .dep_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 11px 10px;
  border: 1px solid var(--bs-bdr-03);
  background: #f4f4f4;
  border-radius: 6px;
  box-shadow: var(--bs-sdw-box-02);
}
.thm_Form .dep_box h3 {
  margin: 0 0 10px 4px;
  color: var(--bs-font-01);
  font-size: 14px;
}
.thm_Form .dep_box h4 {
  margin: 0;
  color: var(--bs-font-01);
  font-size: 16px;
}
.thm_Form .dep_box .dep_cont {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.2;
  letter-spacing: 0;
}
.thm_Form .dep_box .dep_cont em {
  display: block;
  color: var(--bs-font-02);
  font-size: 13px;
  word-break: break-word;
}
.thm_Form .dep_box .dep_cont span {
  display: block;
  color: var(--bs-font-02);
  font-size: 13px;
  word-break: break-word;
}
.thm_Form .dep_box .Inp_dep {
  height: var(--ui-form-hg);
  border-radius: 6px;
  box-shadow: none !important;
}
.thm_Form .dep_box .Inp_dep .form_Inp {
  padding: 0 20px;
  text-align: left;
}
.thm_Form .dep_box .Inp_dep .Wbtn_chipOut {
  min-width: 60px;
  height: 100%;
  padding: 0 6px;
  margin-right: -1px;
  border: 1px solid var(--bs-btn-01);
  background: var(--bs-btn-01);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  box-sizing: content-box;
}

.thm_Form .dep_button {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 6px;
}
.thm_Form .dep_button .Mbtn_dep {
  height: 40px;
  border: 1px solid var(--bs-bdr-04);
  background: var(--bs-btn-03);
  border-radius: 4px;
  color: var(--bs-font-01);
  font-size: 14px;
  text-align: center;
}
.thm_Form .dep_button .Mbtn_dep:hover {
  background: var(--bs-pnt-01);
  color: #fff;
}
.thm_Form .dep_button .Mbtn_dep.reset {
  background: var(--bs-btn-04);
  color: #fff;
}
.thm_Form .dep_button .Mbtn_dep.max {
  display: block;
  background: var(--bs-btn-02);
  color: #fff;
}

@media (max-width: 768px) {
  .thm_Form {
    gap: 15px;
  }
  .thm_Form .bank_table {
    grid-template-columns: repeat(4, 1fr);
    border-right: none;
  }
  .thm_Form .bank_table > div {
    height: 24px;
    border-right: 1px solid var(--bs-bdr-03);
  }
  .thm_Form .bank_table .name {
    font-size: 12px;
  }
  .thm_Form .bank_table .time {
    font-size: 11px;
    text-align: center;
  }

  .thm_Form .dep_box .Inp_dep .uicon_btn {
    background-color: rgba(0, 0, 0, 0.1) !important;
    filter: brightness(1);
  }
  .thm_Form .dep_box .Inp_dep .form_Inp {
    color: var(--bs-font-01);
  }

  .thm_Form .dep_button {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .thm_Form .dep_button .Mbtn_dep.reset {
    display: none;
  }
}

/* PC_MB // board ------------------------------------------------------- */
.Brd_list {
  --bd-font-head: #333;
  --bd-font-money: #333;
  --bd-font-state: #333;
  --bd-font-date: #333;
}
.Brd_list {
  width: 100%;
  border: 1px solid var(--bs-bdr-03);
  border-bottom: none;
}
.Brd_list .Brd_head {
  display: flex;
  align-items: center;
  height: 40px;
  background: #f4f4f4;
  border-bottom: 1px solid var(--bs-bdr-03);
}
.Brd_list .Brd_head > div {
  color: var(--bd-font-head);
}
.Brd_list .Brd_body {
  padding: 0;
  margin: 0;
}
.Brd_list .Brd_body li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  border-bottom: 1px solid var(--bs-bdr-03);
}

.Brd_list .Brd_row > div {
  font-size: 13px;
  text-align: center;
}
.Brd_list .Brd_row li > div {
  text-align: center;
}

.Brd_list .In_money {
  flex: 1;
  color: var(--bd-font-money);
  letter-spacing: 0;
}
.Brd_list .Out_money {
  flex: 1;
  color: var(--bd-font-money);
  letter-spacing: 0;
}
.Brd_list .my_point {
  flex: 1;
  color: var(--bd-font-money);
  letter-spacing: 0;
}
.Brd_list .ch_point {
  flex: 1;
  color: var(--bd-font-money);
  letter-spacing: 0;
}
.Brd_list .state {
  flex: 0 0 100px;
  color: var(--bd-font-state);
}
.Brd_list .admin {
  flex: 0 0 100px;
  color: var(--bd-font-state);
}
.Brd_list .date {
  flex: 0 0 100px;
  color: var(--bd-font-date);
}
.Brd_list .etc {
  flex: 0 0 100px;
}
.Brd_list .Brd_body .and {
  color: #535353;
}
.Brd_list .Brd_body .end {
  color: #1c61d0;
}
.Brd_list .Brd_body .cancel {
  color: #cb3535;
}
.Brd_list .IcSVG {
  width: 18px;
  height: 18px;
  color: var(--bs-font-02);
}
.Brd_list .Wbtn_delete {
  padding: 4px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .Brd_list .state {
    flex: 0 0 50px;
    color: var(--bd-font-state);
  }
  .Brd_list .admin {
    flex: 0 0 60px;
    color: var(--bd-font-state);
  }
  .Brd_list .date {
    flex: 0 0 90px;
    color: var(--bd-font-date);
  }
  .Brd_list .etc {
    flex: 0 0 50px;
  }
}

/* PC // side banner ---------------------------------------------------- */
.side_banner {
  position: absolute;
  top: 580px;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: calc(305px * 2);
  width: 300px;
  z-index: 999;
  transition: top 0.3s ease;
}
.side_banner .bnitem {
  width: 300px;
}
.side_banner .bnitem img {
  width: auto;
  height: 120px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .side_banner {
    display: none;
  }
}

/* PC_MB // mypage_wrap ---------------------------------------------------- */
.mypage_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.user_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: 1px solid #dbc6b6;
  background: linear-gradient(159deg, #f5dbc6 3%, #8e6c50 80%);
  border-radius: 6px;
  box-shadow: var(--bs-sdw-box-02);
}
.user_info .u_count {
  position: absolute;
  top: -4px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 16px;
  padding: 0 5px;
  background: #bc1f1f;
  color: #fff;
  font-size: 11px;
  box-shadow: var(--bs-sdw-box-02);
  border-radius: 30px;
  letter-spacing: 0;
}

.user_info .user_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.user_info .user_row .urbox {
  display: flex;
  align-items: center;
  gap: 6px;
}
.user_info .user_row .urbox .u_level {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border: 1px solid #ffffff99;
  background: #0000003d;
  border-radius: 8px;
}
.user_info .user_row .urbox .u_level img {
  width: auto;
  height: 40px;
}
.user_info .user_row .urbox .u_text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.user_info .user_row .urbox .u_text .name {
  color: var(--bs-font-01);
  font-size: 22px;
  font-weight: 700;
}
.user_info .user_row .urbox .u_text .mr_text {
  padding-left: 2px;
  color: var(--bs-font-02);
  font-size: 12px;
}
.user_info .user_row .urbox .u_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 50px;
  height: 54px;
  background: #0000003d;
  border-radius: 6px;
}
.user_info .user_row .urbox .u_btn p {
  margin: 0;
  color: var(--bs-pnt-03);
  font-size: 11px;
}
.user_info .user_row .urbox .u_btn .IcSVG {
  width: 20px;
  height: 20px;
  color: var(--bs-pnt-03);
}
.user_info .user_row .urbox .u_btn:hover p {
  color: #fff;
}
.user_info .user_row .urbox .u_btn:hover .IcSVG {
  color: #fff;
  animation: fadeInicon 0.4s forwards;
}

.user_info .user_row.ur_dk {
  padding: 6px 6px;
  border: 1px solid var(--bs-blk-01);
  background: #0000003d;
  border-radius: 6px;
  box-shadow: inset 0 0 10px var(--bs-blk-02);
}
.user_info .user_row.ur_dk .urbox {
  padding: 6px 0;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  color: #ccc;
}
.user_info .user_row.ur_dk .urbar {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    #ffffff66 50%,
    transparent 100%
  );
}
.user_info .user_row.ur_dk p {
  margin: 0;
  color: #ddd;
  font-size: 13px;
}
.user_info .user_row.ur_dk strong {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 0 1px 1px var(--bs-blk-02);
}

.user_box {
  padding: 10px;
  border-radius: 6px;
  box-shadow: var(--bs-sdw-box-02);
}
.user_box.user_mypage {
  border: 1px solid var(--bs-bdr-03);
  background: #f4f4f4;
}
.user_box.user_menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  border: 1px solid #79410024;
  background: #7941001f;
}
.user_box.user_menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: 1px solid #79410040;
  background: #fff;
  font-size: 14px;
  border-radius: 6px;
}
.user_box.user_menu a:hover {
  border: 1px solid #6c523d;
  background: #926f53;
  color: #fff;
}
.user_box .Inp_dep {
  height: var(--ui-form-hg);
  border-radius: 6px;
  box-shadow: none !important;
}
.user_box .Inp_dep .form_Inp {
  padding: 0 20px;
  text-align: left;
}
.user_box .Inp_dep .Wbtn_reset {
  min-width: 60px;
  height: 100%;
  padding: 0 6px;
  margin-right: -1px;
  border: 1px solid var(--bs-btn-01);
  background: var(--bs-btn-01);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  box-sizing: content-box;
}
.user_box .user_nts {
  width: 100%;
  line-height: 1.2;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--bs-bdr-03);
  background: #fff;
  border-radius: 6px;
}
.user_box .user_nts span {
  display: block;
  color: var(--bs-font-01);
  font-size: 14px;
}

@media (max-width: 768px) {
  .mypage_wrap {
    gap: 12px;
  }

  .user_info {
    padding: 8px;
  }
  .user_info .u_count {
    padding: 0 5px 1px 5px;
  }

  .user_info .user_row .urbox {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .user_info .user_row .urbox .u_level {
    width: 44px;
    height: 44px;
    border-radius: 6px;
  }
  .user_info .user_row .urbox .u_level img {
    width: auto;
    height: 34px;
  }
  .user_info .user_row .urbox .u_text {
    line-height: 1.2;
  }
  .user_info .user_row .urbox .u_text .name {
    font-size: 16px;
  }
  .user_info .user_row .urbox .u_text .mr_text {
    font-size: 11px;
  }
  .user_info .user_row .urbox .u_btn {
    gap: 4px;
    width: 44px;
    height: 44px;
  }
  .user_info .user_row .urbox .u_btn p {
    font-size: 10px;
  }
  .user_info .user_row .urbox .u_btn .IcSVG {
    width: 18px;
    height: 18px;
  }

  .user_info .user_row.ur_dk {
    padding: 4px;
  }
  .user_info .user_row.ur_dk .urbox {
    padding: 4px 0;
    gap: 4px;
  }
  .user_info .user_row.ur_dk .urbox:nth-child(1) {
    flex: 0 0 30%;
  }
  .user_info .user_row.ur_dk .urbox:nth-child(3) {
    flex: 1;
  }
  .user_info .user_row.ur_dk .urbox:nth-child(5) {
    flex: 1;
  }
  .user_info .user_row.ur_dk .urbar {
    height: 30px;
  }
  .user_info .user_row.ur_dk p {
    font-size: 12px;
  }
  .user_info .user_row.ur_dk strong {
    font-size: 16px;
    font-weight: 700;
  }

  .user_box {
    padding: 8px;
  }
  .user_box.user_menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .user_box.user_menu a {
    height: 46px;
    font-size: 14px;
  }
  .user_box.user_menu a:hover {
    border: 1px solid #6c523d;
    background: #926f53;
    color: #fff;
  }
  .user_box .user_nts {
    padding: 8px;
    margin-bottom: 6px;
  }
  .user_box .user_nts span {
    font-size: 13px;
  }

  .user_box .Inp_dep {
    height: calc(var(--ui-form-hg) - 6px);
  }
  .user_box .Inp_dep .form_Inp {
    padding: 0 10px;
    color: var(--bs-font-01);
  }
}
