:root {
  --black: #0f0f0f;
  --white: #fff;
  --gray: #a2a2a2;
  --pink: #ff6600;
  /* 2025 theme */
  --purple: #e93ed8;
  --purple-deep: #5d2a63;
  --navy-deep: #14102b;
  /* 헤더바: 좌(네이비) -> 우(퍼플) */
  --hd-grad: linear-gradient(90deg, #14102b 0%, #2a1846 48%, #5d2a63 100%);
  /* 페이지 배경: 좌상단(네이비) -> 우하단(퍼플) */
  --page-grad: linear-gradient(
    155deg,
    #1b1533 0%,
    #2c1a44 22%,
    #4a2158 52%,
    #6b2a6b 78%,
    #7b2e79 100%
  );
  --divider: rgba(255, 255, 255, 0.18);
  /* 상태바 안전영역. .wrap 이 padding-top 으로 먹고 있는 값과 동일하게 맞춘다 */
  --safe-top: env(safe-area-inset-top, 0px);
}
button {
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
  padding: 0;
}
button:active,
button:focus {
  outline: none;
}
.sound_only {
  display: inline-block !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0;
  line-height: 0;
  border: 0 !important;
  overflow: hidden !important;
}
.tc {
  text-align: center !important;
}
.white {
  color: #fff !important;
}
.col_gray {
  color: #a2a2a2 !important;
}
.col_pink {
  color: var(--pink) !important;
}
.bg_black_vs2 {
  background: #22252c !important;
  min-height: calc(100vh - 150px);
}
.bg_black {
  background: var(--black);
}

.mg-b20 {
  margin-bottom: 20px !important;
}
.mg-t10 {
  margin-top: 10px !important;
}
.mg-t20 {
  margin-top: 20px !important;
}
.mg-t30 {
  margin-top: 30px !important;
}
.mg-t40 {
  margin-top: 40px !important;
}
.mg-b30 {
  margin-bottom: 30px !important;
}
.mg-b40 {
  margin-bottom: 40px !important;
}
.mg-b0 {
  margin-bottom: 0 !important;
}
.pd-t0 {
  padding-top: 0px !important;
}
.pd-b30 {
  padding-bottom: 30px !important;
}
.pd-b20 {
  padding-bottom: 20px !important;
}
.swiper img {
  max-width: 100%;
}
.inner {
  padding-left: 20px;
  padding-right: 20px;
}

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.inflex {
  display: inline-flex;
}
.flexBox.area02 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flexBox.area02.ver_noList,
.flexBox.ver_noList {
  -webkit-box-lines: single;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flexBox.area02.ver_noList > * {
  width: auto;
}
.flexBox.justify-center {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flexBox.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flexBox.flex-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex1 {
  flex: 1;
}
.inner_left {
  padding-left: 20px !important;
}
.w100p {
  width: 100% !important;
}

/* 기본 버튼 */
.btn_area {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn_area .btn_s {
  transition: all 0.2s;
  display: inline-block;
  border-radius: 8px;
  color: #000;
  background: #fff;
  border: 1px solid #e9e9e9;
  line-height: 50px;
  height: 52px;
  font-size: 1rem;
  min-width: 120px;
  padding: 0 20px;
}

.btn_area .btn_basic {
  line-height: 44px;
  border-radius: 6px;
  background: var(--pink);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}
.btn_area .btn_basic.disabled {
  background: #565a61;
}
/* 기본 Input 창 */
input.inp_txt {
  border: 1px solid #dfdfdf;
  padding: 10px;
  height: 52px;
  line-height: 50px;
  border-radius: 8px;
  outline: none;
}
input.inp_txt::-webkit-input-placeholder {
  color: #999999;
}
input.inp_txt:-ms-input-placeholder {
  color: #999999;
}

/* common app layout */
.popDiv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 5;
}
.popDiv .cbox {
  position: absolute;
  width: calc(100% - 72px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 24px;
  border-radius: 10px;
  max-height: 90vh;
}
.popDiv .cbox p {
  text-align: center;
  margin-bottom: 16px;
  font-size: 12px;
}
.popDiv .cbox p span {
  background-color: #f4f4f4;
  padding: 5px 12px;
  border-radius: 6px;
}
.popDiv .cbox h2 {
  font-size: 19px;
  text-align: center;
}
.popDiv .cbox h2.ver-mg {
  margin-top: 24px;
}
.popDiv .cbox h2 span {
  font-size: 14px;
  color: #777;
  display: block;
  margin-top: 10px;
  font-weight: 400;
}
.popDiv .cbox .btnWrap {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.popDiv .cbox .btnWrap button {
  width: calc((100% - 8px) / 2);
  height: 44px;
  font-size: 14px;
}
.popDiv .alertBox img {
  width: 60%;
  margin: 20px auto 10px;
}
.popDiv .alertBox.ver_my img {
  margin: 24px auto;
  height: 100px;
  width: auto;
}
.popDiv .alertBox.ver_my img.size_auto {
  max-height: 100px;
  height: auto;
  width: auto;
}
.popDiv .alertBox h3 {
  font-size: 17px;
  text-align: center;
  margin-bottom: 12px;
}
.popDiv .alertBox h3 span {
  text-decoration: underline;
}
.popDiv .alertBox p {
  word-break: keep-all;
  font-size: 14px;
  color: #777;
}
.btn-w {
  background-color: #fff;
  border: #707070 1px solid;
  border-radius: 7px;
}
.btn-b {
  background-color: #000;
  border: #707070 1px solid;
  border-radius: 7px;
  color: #fff;
}
.popDiv .cbox .btnWrap button.w-100 {
  width: 100%;
}
.popDiv .cbox .imgList {
  margin-top: 24px;
  display: flex;
  padding: 0 20px;
  gap: 12px;
}
.popDiv .cbox .imgList .img {
  width: calc((100% - 12px) / 3);
}
.popDiv .cbox .imgList .img img {
  width: 100%;
}

.toastBox {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.81);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  /* 추가 상단 타이틀 노출 */
  z-index: 3;
  overflow-y: scroll;
  min-height: 450px;
}
.toast {
  position: absolute;
  background-color: #272a2b;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 25px 25px 0 0;
  padding: 30px;
  z-index: 1;
}

.chk_box > label {
  margin: 0;
  margin-top: 10px;
  padding: 10px 0;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  color: var(--gray);
}
.chk_box input[type='checkbox'] {
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.chk_box input[type='checkbox'] + span {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #707070;
  border-radius: 4px;
  margin-right: 6px;
}
.chk_box input[type='checkbox'] strong {
  font-weight: normal;
}
.chk_box input[type='checkbox'] + span::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  background: url(../img/common/ico_ckb.svg) no-repeat center center;
  background-size: 50%;
  height: 50%;
}
.chk_box input[type='checkbox']:checked + span {
  border-color: #fff;
}
.chk_box input[type='checkbox']:checked + span::before {
  background: url(../img/common/ico_ckb_on.svg) no-repeat center center;
  background-size: 50%;
}

.toast_inp input {
  width: 100%;
  background: #272a2b;
  border: 1px solid #707070;
  border-radius: 5px;
  box-shadow: none;
  height: 44px;
  line-height: 42px;
  text-align: center;
  color: #fff;
}
.toast_inp input:active,
.toast_inp input:focus {
  outline: 1px solid var(--pink);
  background: #111;
}
