:root {
    --main-color: #EE7701;
    --bg-color: #FAFAFA;
    --black-color: #3A3A3A;
    --sub-txt-color: #777777;
    --border-color: #D9D9D9;
}
* {
    box-sizing: border-box;
    /*
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    */
    -webkit-tap-highlight-color : transparent;
}
*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
*::-webkit-scrollbar-thumb {
    height: 10%;
    background: #999;
    border-radius: 10px;
}
*::-webkit-scrollbar-track {
     background: rgba(33, 122, 244, .1);
}
html {
    scroll-behavior : smooth;
}
body {
    font-family: "Pretendard", "Open Sans";
    position: relative;
    background-color: #F9FAFC;
    padding: 16px 0;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 0 48px 12px rgba(0, 0, 0, 0.2);
    height: calc(100vh - 32px);
    background-color: #F3F3F3;
    border-radius: 24px;
    overflow: hidden;
}


/*모달*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 102;
  display: none;
}
.modal .terms-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: calc(100% - 32px);
  max-width: 1270px;
}
.modal .terms-box .tit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background-color: var(--black-color);
}
.modal .terms-box .tit-box span {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.modal .terms-box .tit-box button {
  display: inline-block;
}
.modal .terms-box .tit-box img {
  width: 24px;
  height: 24px;
}
.modal .terms-box .content {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  height: auto;
  overflow-y: auto;
  padding: 24px;
  height: 500px;
}



/*header*/
.header-wrap {
    width: 100%;
    max-width: 480px;
    height: 70px;
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 0 16px;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
}
.user-box {
    display: flex;
    align-items: center;
    gap: 8px;
}
.user-box a {
    display: inline-block;
    width: 90px;
    padding: 12px 4px;
    text-align: center;
    border-radius: 8px;
    background-color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.user-box a:hover {
    background-color: var(--main-color);
}
.logo {
    width: 150px
}

.navigation-wrap {
    bottom: 16px;
    width: 100%;
    max-width: 480px;
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translate(-50%);
    z-index: 98;
    background-color: #fff;
    box-shadow: -12px 0 12px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0 0 16px 16px;
    padding: 0 16px;
    overflow: hidden;
}
.fnb {
    display: flex;
    align-items: center;
}
.fnb li {
    width: 100%;
}
.fnb li a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--black-color);
    padding: 12px 0;
}
.fnb li a.on {
    border-top: 3px solid var(--main-color);
    color: var(--main-color);
    padding: 10px 0 12px;
}
.fnb li a img {
    width: 24px;
}
.fnb li a .icon {
    width: 24px;
    height: 24px;
}
.fnb li a .icon.home {
    background-image: url('../images/common/fnb_icons_1.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.fnb li a.on .icon.home {
    background-image: url('../images/common/fnb_icons_1_mc.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.fnb li a .icon.buy {
    background-image: url('../images/common/fnb_icons_2.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.fnb li a.on .icon.buy {
    background-image: url('../images/common/fnb_icons_2_mc.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.fnb li a .icon.faq {
    background-image: url('../images/common/fnb_icons_3.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.fnb li a.on .icon.faq {
    background-image: url('../images/common/fnb_icons_3_mc.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.fnb li a .icon.notice {
    background-image: url('../images/common/fnb_icons_4.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.fnb li a.on .icon.notice {
    background-image: url('../images/common/fnb_icons_4_mc.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.fnb li a .icon.my {
    background-image: url('../images/common/fnb_icons_5.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.fnb li a.on .icon.my {
    background-image: url('../images/common/fnb_icons_5_mc.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.back-btn {
    margin: 0;
}
.back-btn img {
    width: 24px;
}

/*회원*/
.sign-area .tit-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sign-area .tit-box .sign-logo {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}
.sign-area .tit-box .sign-logo img {
    width: 150px;
}
.sign-area .tit-box .tit {
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color);
    text-align: center;
}
.sign-area .tit-box .tit-sub {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    text-align: center;
    line-height: 1.5;
    word-break: keep-all;
}
.form-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
}
.form-box.mt-0 {
    margin-top: 0;
}
.form-box .input-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-box .input-box > p {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.form-box .input-box > p b {
    font-weight: 600;
    color: var(--main-color);
}
.warning-box {
    margin: 8px 0 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.warning-box.gap {
    margin: 0;
}
.warning {
    display: flex;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color);
    line-height: 1.3;
}
.warning img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.form-box .input-box input[type="text"], .form-box .input-box input[type="password"], .form-box .input-box input[type="email"] {
    width: 100%;
    height: 50px;
    border: 1px solid var(--border-color);
    padding: 0 16px;
    border-radius: 16px;
}
.form-box .input-box input[type="text"]:focus, .form-box .input-box input[type="password"]:focus, .form-box .input-box input[type="email"]:focus {
    border: 1px solid var(--main-color);
}
.form-box .input-box input:read-only {
    background-color: var(--bg-color) !important;
    color: var(--sub-txt-color) !important;
}
.form-box .password-link {
    width: 100%;
    text-align: right;
}
.form-box .password-link a {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.form-box .password-link a:hover {
    color: var(--main-color);
}
.form-box .sign-btn-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-box .sign-btn-wrap a, .form-box .sign-btn-wrap button {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    padding: 0 16px;
    border-radius: 16px;
    text-align: center;
}
.form-box .sign-btn-wrap .login-btn {
    color: #fff;
    background-color: var(--black-color);
}
.form-box .sign-btn-wrap .signup-btn {
    border: 1px solid var(--border-color);
}
.form-box .sign-btn-wrap .login-btn:hover {
    opacity: .8;
}
.form-box .sign-btn-wrap .signup-btn:hover {
    color: var(--black-color);
    background-color: var(--bg-color);
}
.form-box .social-login {
    width: 100%;
    margin-top: 24px;
}
.form-box .social-login > p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    margin-bottom: 16px;
    white-space: nowrap;
}
.form-box .social-login > p::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}
.form-box .social-login > p::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}
.form-box .social-login a {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #ffcd00;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    border-radius: 16px;
}
.form-box .social-login a:hover {
    opacity: .8;
}
.form-box .social-login a img {
    width: 20px;
}
.form-box .login-back {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.form-box .login-back a {
    display: inline-block;
    font-weight: 600;
    color: var(--main-color);
}
.form-box .login-back a:hover {
    text-decoration: underline;
}
.sign-terms {
    width: 100%;
    padding: 16px;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 16px;
}
.sign-terms > p {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 4px;
}
.sign-terms .terms-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sign-terms .terms-item .hd {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}
.sign-terms .terms-item .hd .box {
    width: 100%;
}
.sign-terms .terms-item .hd label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.sign-terms .terms-item .hd label span {
    font-weight: 500;
    color: var(--main-color);
}
.sign-terms .terms-item .hd .terms-icon {
    width: 12px;
    height: 12px;
    transition: all .2s ease-in-out;
}
.sign-terms .terms-item .hd .terms-icon.rotate {
    transform: rotate(45deg);
}
.sign-terms .terms-item .content {
    background-color: #fff;
    border-radius: 8px;
    padding: 8px;
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color);
    line-height: 1.5;
    height: 100px;
    overflow: hidden;
    overflow-y: auto;
    margin-bottom: 8px;
    border: 1px solid var(--border-color);
    display: none;
}
.sign-terms .all-chk {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
}
.sign-terms .all-chk label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
}

/*메인*/
.main-area {
    width: 100%;
    height: calc(100vh - 32px);
    padding: 86px 16px 100px;
    overflow: hidden;
    overflow-y: auto;
}
.main-visual {
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}
.main-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-area {
    background-color: #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding: 24px 16px;
    border-radius: 8px;
}
.page-tit {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}
.page-tit::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: var(--main-color);
}


/*faq*/
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-list li {
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 16px;
}
.faq-list li.on {
    border: 1px solid var(--main-color);
}
.faq-list li:hover {
    border: 1px solid var(--main-color);
}
.faq-list .faq-tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    cursor: pointer;
}
.faq-list .faq-tit.faq-on {
    color: var(--main-color);
}
.faq-list .faq-tit .tit b {
    font-weight: 700;
    color: var(--main-color);
    margin-right: 6px;
}
.faq-list .faq-tit .faq-icon {
    width: 12px;
    height: 12px;
    transition: all .2s ease-in-out;
}
.faq-list .faq-tit.faq-on .faq-icon {
    transform: rotate(45deg);
}
.faq-list .faq-content {
    padding: 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    line-height: 1.3;
    background-color: var(--bg-color);
    margin-top: 12px;
    border-radius: 8px;
    display: none;
}
.faq-list .faq-content p {
    font-family: 'Pretendard' !important;
    font-size: 14px !important;
    color: var(--sub-txt-color) !important;
    background-color: var(--bg-color) !important;
    word-break: keep-all;
    line-height: 1.5 !important;
}


/*notice*/
.notice-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.notice-list li a {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 16px;
}
.notice-list li:hover a {
    border: 1px solid var(--main-color);
}
.notice-list li a .tit-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.notice-list li a .tit-box .tit {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.notice-list li:hover a .tit-box .tit {
    color: var(--main-color);
}
.notice-list li a .tit-box .icon {
    background-color: #fff;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
}
.notice-list li a .tit-box .icon img {
    width: 20px;
    height: 20px;
}
.notice-list li a .date {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.view-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.view-area .top {
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.view-area .top .tit {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
}
.view-area .top .info {
    display: flex;
    align-items: center;
}
.view-area .top .info span {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    color: #999;
}
.view-area .content {
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 16px;
}
.view-area .content p {
    word-break: normal !important;
    font-size: 14px !important;
}
.btn-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.btn-wrap a {
    display: inline-block;
    width: 90px;
    padding: 12px 4px;
    text-align: center;
    border-radius: 8px;
    background-color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.btn-wrap a:hover {
    background-color: var(--main-color);
}


/*결제내역*/
.history-area .page-expl {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.history-area .reco-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 16px;
    margin: 16px 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.history-area .reco-box img {
    width: 20px;
}
.history-area .reco-box span {
    font-weight: 500;
    color: var(--main-color);
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
}
.history-list li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 16px;
}
.history-list li.empty {
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.history-list li .name {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: 6px;
    line-height: 1.3;
}
.history-list li .pay {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    margin-bottom: 12px;
}
.history-list li .pay span {
    font-weight: 500;
    color: var(--main-color);
}
.history-list li .period {
    display: flex;
    align-items: center;
}
.history-list li .period span {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.history-list li .period span:first-child {
    font-weight: 500;
    color: var(--black-color);
}
.history-list li .period span:first-child::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: var(--border-color);
    margin: 0 8px;
}

/*mypage*/
.mypage-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mypage-area .hd {
    background-color: var(--bg-color);
    padding: 16px;
    border-radius: 16px;
}
.mypage-area .hd .name {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.mypage-area .hd .name span {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
}
.mypage-area .hd .info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 24px;
}
.mypage-area .hd .info .item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mypage-area .hd .info .item .icon {
    background-color: #fff;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
}
.mypage-area .hd .info .item .icon img {
    width: 20px;
    height: 20px;
}
.mypage-area .hd .info .item span {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}

.form-box .password-link a {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.form-box .password-link a:hover {
    color: var(--main-color);
}
.mypage-btn-wrap {
    width: 100%;
    display: flex;
    gap: 8px;
}
.mypage-btn-wrap a {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    padding: 0 16px;
    border-radius: 16px;
    text-align: center;
}
.mypage-btn-wrap a:first-child {
    color: #fff;
    background-color: var(--black-color);
}
.mypage-btn-wrap a:hover {
    opacity: .8;
}
.mypage-btn-wrap .signup-btn:hover {
    color: var(--black-color);
    background-color: var(--bg-color);
}

.mypage-area .bt {
    background-color: var(--bg-color);
    padding: 16px;
    border-radius: 16px;
}
.mypage-area .bt > p {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 24px;
}
.support-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.support-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    background-color: #fff;
    cursor: pointer;
}
.support-list a:hover {
    border: 1px solid var(--main-color);
}
.support-list a .icon {
    background-color: #fff;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
}
.support-list a .icon img {
    width: 20px;
    height: 20px;
}

/*shop*/
.bubble {
    display: none;
}
.shop-area .tab-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.shop-area .tab-menu .item {
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 16px;
}
.shop-area .tab-menu .item.on {
    border: 1px solid var(--main-color) !important;
}
.shop-area .tab-menu .item:hover {
    border: 1px solid var(--main-color);
}
.new-radio-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}
.new-radio-btn label {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}
.new-radio-btn label .img-box {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: var(--bg-color);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.new-radio-btn label .img-box img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.new-radio-btn label .txt span {
    font-size: 18px;
    font-weight: 400;
    color: var(--black-color);
}
.new-radio-btn input[type="radio"] {
    display: none;
}
.new-radio-btn .arrow {
    width: 24px;
    height: 24px;
}
.tab-cont {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 102;
    transition: opacity .1s ease;
}
.tab-cont.show {
    opacity: 1;
    visibility: visible;
}
.tab-cont .box {
    width: 100%;
    max-width: 480px;
    height: 500px;
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 16px;
    background-color: #fff;
    padding: 24px 16px;
    overflow: hidden;
    overflow-y: auto;
    transition: all .3s ease;
}
.tab-cont.show .box {
    bottom: 16px;
}
.tab-cont .box .date-tit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
}
.tab-cont .box .date-tit .icon {
    background-color: #F5F5F5;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.tab-cont .box .date-tit .icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.tab-cont .box .new-page-tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}
.tab-cont .box .new-page-tit span {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    text-align: center;
}
.tab-cont .box .new-page-tit button {
    width: 26px;
    height: 26px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F5F5F5;
}
.tab-cont .box .new-page-tit button img {
    width: 18px;
    height: 18px;
    opacity: .8;
}
.tab-cont .box .new-page-tit button:hover img {
    opacity: 1;
}
.tab-cont .box .infoArea {
    background-color: var(--bg-color);
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    line-height: 1.3;
    word-break: normal;
    display: none;
}
.new-price-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}
.new-price-box .radio-btn {
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 16px;
    cursor: pointer;
}
.new-price-box .radio-btn.on {
    border: 1px solid var(--main-color);
}
.new-price-box .radio-btn input[type="radio"] {
    display: none;
}
.new-price-box .empty-box {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    text-align: center;
    grid-column: 1 / -1;
}
.new-price-box .shop-btn-wrap {
    grid-column: 1 / -1;
}
.new-price-box .radio-btn label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.new-price-box .radio-btn label .name {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    text-align: center;
    line-height: 1.5;
    word-break: keep-all;
}
.new-price-box .radio-btn label .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
    text-align: center;
}
.shop-btn-wrap {
    margin-top: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.shop-btn-wrap button {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: var(--black-color);
    padding: 0 16px;
    border-radius: 16px;
    text-align: center;
}
.shop-btn-wrap button:hover {
    background-color: var(--main-color);
}

.done-area {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-y: auto;
}
.done-area .result-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
}
.done-area .result-box .name {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.done-area .result-box .name p:first-child {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
}
.done-area .result-box .name p:nth-child(2){
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    line-height: 1.3;
}
.done-area .result-box .info {
    padding-top: 12px;
    border-top: 1px dashed var(--border-color);
}
.done-area .result-box .info .item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.done-area .result-box .info .item span {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.done-area .result-box .info .item span:nth-child(2) {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
}
.done-area .expl-box {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0 48px;
}
.done-area .expl-box p {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    line-height: 1.3;
}
.done-area .input-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.done-area .input-box input[type="text"], .done-area .input-box input[type="email"], .done-area .input-box input[type="password"], .done-area .input-box select {
    width: 100%;
    height: 50px;
    border: 1px solid var(--border-color);
    padding: 0 16px;
    border-radius: 16px;
}
.done-area .input-box label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    cursor: pointer;
}
.done-area .input-box label input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

.terms-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
}
.terms-wrap .all {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
}
.terms-wrap .each {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.terms-wrap .each .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.terms-wrap label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    cursor: pointer;
}
.terms-wrap label span {
    color: var(--main-color);
}
.terms-wrap button {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    text-decoration: underline;
}
.terms-wrap label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0 6px 0 0;
}
.btn-wrap {
    display: flex;
    gap: 8px;
}
.btn-wrap a, .btn-wrap button {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: var(--black-color);
    padding: 0 16px;
    border-radius: 16px;
    text-align: center;
}
.btn-wrap a:hover, .btn-wrap button:hover {
    opacity: .8;
}

.count-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
}
.count-box .count-24 {
    font-size: 20px;
    font-weight: 500;
    color: var(--main-color);
}

.result-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bank-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    margin-top: 16px;
}
.bank-list > span:first-child {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
    animation: blink 1s infinite;
}
.bank-list > span:nth-child(2) {
    font-size: 20px;
    font-weight: 500;
    color: var(--main-color);
}
@keyframes blink {
    0% {
    opacity: 1;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

.copy-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 8px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
    margin-bottom: 12px;
}
.copy-btn:hover {
    background-color: var(--bg-color);
}
.copy-btn img {
    width: 16px;
}

.result-list {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.result-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.result-list li span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    letter-spacing: -1px;
}
.result-list li span:nth-child(2) {
    font-weight: 500;
    color: var(--black-color);
}


