@charset "UTF-8";

:root {
    --whiteFD: #FDFDFD;
    --whiteFA: #FAFAFA;
    --gray47: #474747;
    --gray64: #646464;
    --gray85: #667085;
    --gray81: #818181;
    --grayA8: #A8A8A8;
    --grayA2: #A2A2A2;
    --grayE1: #E1E1E1;
    --grayF3: #F3F3F3;
    --black1A: #1A1A1A;
    --black12: #121212;
    --black23: #232323;
    --black28: #101828;
    --blueFF: #157BFF;
    --mainColor: #C0EA00;
    --buttonColor: #2D2D2D;
    --error: #FF4415;
    --modalBg: #00000066;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    vertical-align: top;
    text-decoration: none;
    font-family: 'Pretendard';
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

@font-face {
    font-family: 'Pretendard';
    src: url(../font/Pretendard-Black.otf);
    font-weight: 900;
    font-style: Black;
}

@font-face {
    font-family: 'Pretendard';
    src: url(../font/Pretendard-ExtraBold.otf);
    font-weight: 800;
    font-style: ExtraBold;
}

@font-face {
    font-family: 'Pretendard';
    src: url(../font/Pretendard-Bold.otf);
    font-weight: 700;
    font-style: Bold;
}

@font-face {
    font-family: 'Pretendard';
    src: url(../font/Pretendard-SemiBold.otf);
    font-weight: 600;
    font-style: SemiBold;
}

@font-face {
    font-family: 'Pretendard';
    src: url(../font/Pretendard-Medium.otf);
    font-weight: 500;
    font-style: Medium;
}

@font-face {
    font-family: 'Pretendard';
    src: url(../font/Pretendard-Regular.otf);
    font-weight: 400;
    font-style: Regular;
}

@font-face {
    font-family: 'Pretendard';
    src: url(../font/Pretendard-Light.otf);
    font-weight: 300;
    font-style: Light;
}

@font-face {
    font-family: 'Pretendard';
    src: url(../font/Pretendard-ExtraLight.otf);
    font-weight: 200;
    font-style: ExtraLight;
}

@font-face {
    font-family: 'Pretendard';
    src: url(../font/Pretendard-Thin.otf);
    font-weight: 100;
    font-style: Thin;
}

.bg-area {
    width: 100%;
    height: 812px;
    margin: 0 auto;
    background-image: url(/assets/img/splash-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-logo-box {
    width: 275px;
    height: 42px;
}

.splash-logo-box>img {
    width: 100%;
    height: 100%;
}

/* 다크모드 */
body {
    transition: all 0.3s;
}

body.dark-mode {
    background-color: var(--black12);
    color: var(--grayF3) !important;
}

body.dark-mode p,
.body.dark-mode .chart-name-text-box .chart-name {
    color: var(--grayF3) !important;
}

body.dark-mode .chart-exchange,
body.dark-mode .base-price {
    color: var(--gray81) !important;
}

body.dark-mode .header-img-box {
    filter: invert(1);
}

body.dark-mode .tab-menu {
    border-bottom: 1px solid var(--buttonColor);
}

body.dark-mode .count-btn.my {
    background-color: var(--buttonColor);
}

body.dark-mode .time-box,
body.dark-mode .main-bottom-menu {
    width: 100%;
    background-color: #717171;
    border-radius: 16px 16px 0 0;
}

body.dark-mode .trade-menu-bar .trade-menu-txt {
    color: var(--black12) !important;
}

body.dark-mode .tab-button {
    color: var(--gray64);
    border-bottom: 1px;
}

body.dark-mode .user-input,
body.dark-mode .select-trigger {
    color: #F3F3F3;
    background-color: var(--black23) !important;
}


body.dark-mode .join-membership-text {
    color: var(--grayE1) !important;
}

body.dark-mode .button-border {
    background-color: none;
    border-color: var(--mainColor);
}

body.dark-mode .button-border>a {
    color: var(--mainColor);
}

body.dark-mode .tab-menu .tab-button.active {
    color: var(--whiteFD);
    border-bottom: 1px solid var(--mainColor);
    z-index: 10;
}

body.dark-mode .address-box,
body.dark-mode .hold-list {
    background: var(--buttonColor) !important;
    color: var(--grayF3);
}

body.dark-mode .address-link {
    color: var(--gray81) !important;
}

body.dark-mode .hold-coin,
body.dark-mode .id-sub-title {
    color: var(--grayA8) !important;
}

body.dark-mode .btn {
    background: var(--mainColor);
}

body.dark-mode .btn a {
    color: var(--black1A) !important;
}

body.dark-mode .btn.details-btn a {
    color: var(--mainColor) !important;
}

body.dark-mode .btn.details-btn {
    background-color: #121212 !important;
    border-color: var(--mainColor);
}

body.dark-mode .history-wrap {
    background-color: var(--buttonColor);
}

body.dark-mode .closing-price,
body.dark-mode .supporting-text {
    color: var(--gray81) !important;
}

body.dark-mode .supporting-text.confirem {
    color: var(--mainColor) !important;
}


body.dark-mode .filter-group {
    background-color: #232323 !important;
    border: 1px solid var(--gray81) !important;
}

body.dark-mode .filter-group p,
body.dark-mode .close-text,
body.dark-mode .user-input::placeholder {
    color: var(--gray64) !important;
}

body.dark-mode .user-input:focus {
    border: 1px solid var(--gray81);
    box-shadow: 0 1 2 #1A1A1A0A;
}

body.dark-mode .filter-group .filter-img img,
.body.dark-mode .search-img {
    fill: var(--gray64) !important;
    stroke: var(--gray64) !important;
}

body.dark-mode .search-input-box .search-box {
    border-color: var(--gray81) !important;
}

body.dark-mode .modal-text {
    color: var(--grayA8) !important;
}

body.dark-mode .filter-img>img,
body.dark-mode .copy-box>img {
    filter: invert(0.3);
}

body.dark-mode .search-input-box::before {
    filter: invert(0.4);
}


body.dark-mode .search-input-box>.search-box {
    background-color: #232323;
    color: var(--grayF3);
}

body.dark-mode .modal-bg {
    background-color: #000000A3;
}

body.dark-mode .modal-conts {
    background-color: var(--buttonColor);
}

body.dark-mode .modal-btn.coin body.dark-mode .modal-btn.coin {
    border-color: var(--gray81) !important;
    color: var(--grayA8);
}

body.dark-mode .modal-btn,
body.dark-mode .authentication-button,
body.dark-mode .retransmit-button {
    background-color: var(--buttonColor);
    border-color: var(--mainColor);
    color: var(--mainColor)
}

body.dark-mode .modal-btn.active {
    background-color: var(--mainColor);
    color: var(--black1A);
}

body.dark-mode .select-options,
body.dark-mode .filter-modal {
    background: var(--buttonColor);
}

body.dark-mode .period-btn {
    color: var(--grayA8);
    border-color: var(--gray81);
}

body.dark-mode .period-btn.on,
body.dark-mode .type-btn.on {
    background: none;
    border-color: var(--mainColor) !important;
    color: var(--mainColor) !important;
}

body.dark-mode .calendar-btn,
body.dark-mode .calendar-btn p {
    background-color: var(--grayF3);
    color: var(--gray81) !important;
}

body.dark-mode .input-date {
    color: var(--grayA8);
}

body.dark-mode .type-btn {
    background: none;
    color: var(--grayA8);
}

body.dark-mode .button-default {
    background-color: var(--grayA2);
}

body.dark-mode .button-white,
body.dark-mode .button-default.on {
    background-color: var(--mainColor);
    color: var(--black1A);
}

body.dark-mode .button-default.on>a,
body.dark-mode .button-white>a {
    color: var(--black1A);
}

body.dark-mode .modal-close-img,
body.dark-mode .back-arrow-box {
    filter: invert(1) !important;
}

body.dark-mode .select-trigger .select-text,
body.dark-mode .volatile-price,
body.dark-mode .volatile-price {
    color: var(--gray64) !important;
}

body.dark-mode .reason,
body.dark-mode .completed-txt,
body.dark-mode .id-sub-title,
body.dark-mode .user-label-text {
    color: var(--grayA8) !important;
}

body.dark-mode .dark-btn {
    filter: invert(1);
}

body.dark-mode .select-options>li,
body.dark-mode .id-title,
body.dark-mode .completed-title {
    color: var(--grayF3);
}

body.dark-mode .select-trigger>.select-text {
    color: #F3F3F3 !important;
}

body.dark-mode .select-options>.body.dark-mode .checkbox-custorm {
    cursor: pointer;
}

body.dark-mode .checkbox-custorm:checked {
    border: 1px solid var(--mainColor);
    border-radius: 4.8px;
    background-image: url(/assets/img/RadioButtonChecked.svg);
}

body.dark-mode .confirm-btn {
    background-color: var(--mainColor);
    color: var(--black1A);
}

body.dark-mode .asterisk {
    color: var(--error) !important;
}



/* 레이아웃 */
.body-wrap {
    height: 812px;
}

.login-conts,
.conts-container {
    width: 100%;
    padding: 16px;
    max-width: 375px;
    margin: 0 auto;
}

.login-conts.find {
    padding: 0;
    height: calc(100% - 48px);
}

.flex-col {
    width: 100%;
    height: calc(100% - 48px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-wrap {
    width: 100%;
    height: 100%;
    max-width: 375px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-title-box {
    width: 100%;
    height: 48px;
    display: none;
}

.pc-title {
    display: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    vertical-align: middle;
    margin-bottom: 16px;
}

.pc-title.login {
    text-align: center;
    margin: 0;
}

.column_16 {
    width: 100%;
    height: 860px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px 32px;
}

.padding-0 {
    padding: 0 !important;
    padding-top: 8px !important;
}

.hight-conts {
    height: calc(100% - 48px) !important;
}

.inner {
    width: 100%;
    height: calc(812px - 80px);
}



/* 버튼 */
.button-default {
    width: 100%;
    flex-grow: 1;
    height: 56px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    outline: none;
    border: none;
    background-color: var(--grayE1);
    color: var(--whiteFA);
    cursor: pointer;
}

.button-default>a {
    color: var(--whiteFA)
}

.button-default.on {
    background-color: var(--buttonColor);
    color: var(--mainColor);
}

.button-default.on>a {
    color: var(--mainColor);
}

.button-white {
    width: 100%;
    flex-grow: 1;
    height: 48px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    outline: none;
    border: none;
    background-color: var(--buttonColor);
    color: white;
    cursor: pointer;
}

.button-white>a {
    color: white;
}


.join-membership-box {
    width: 100%;
    text-align: center;
}

.button-fit-area {
    text-align: center;
    width: 100%;
    height: 86px;
    box-sizing: border-box;
}

.button-border {
    width: 100%;
    height: 56px;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 24px;
    outline: none;
    background: none;
    color: var(--black1A);
    border: 1px solid var(--buttonColor);
    box-sizing: border-box;
    border-radius: 12px;
    cursor: pointer;
}

.button-border>a {
    color: var(--black1A);
}

.amount.minus {
    color: var(--blueFF) !important;
}

.amount.plus {
    color: var(--error) !important;
}

.dark-btn {
    cursor: pointer;
    display: none !important;
}

.dark-btn.header {
    justify-self: right;
    display: none !important;
}

/* ------------------------------- */

.login-wrap {
    height: 100%;
    font-family: 'Pretendard';
}

/* 모바일 헤더 */

.header-wrap-mobile {
    width: 100%;
    height: 48px;
    padding: 4px 8px;
    box-sizing: border-box;
    display: grid;
    align-items: center;
    box-sizing: border-box;
    grid-template-rows: 40px;
    grid-template-columns: 8fr 19.9fr 8fr;
    /* grid-template-columns: minmax(80px, 8fr) minmax(199px, 19.9fr) minmax(80px, 8fr); */
}

.back-arrow-box>img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.header-img-box {
    width: 40px !important;
    height: 40px !important;
    cursor: pointer;
}

.header-img-box>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-img-box.dark {
    display: flex;
    align-items: center;
    justify-self: right;
    cursor: pointer;
}

.header-img-box.home {
    display: flex;
    align-items: center;
    justify-self: right;
}

.header-img-box.home>img {
    width: 24px;
    height: 24px;
}

.header-img-box>img {
    width: 40px;
    height: 40px;
}

.header-img-box.x-mark {
    width: 40px;
    height: 40px;
    justify-self: right;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-img-box.x-mark>img {
    width: 24px;
    height: 24px;
}


.header-wrap-mobile .header-text {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

.header-text.complate {
    grid-column-start: 2;
    grid-column-end: 3;
}

/* pc 헤더 */

.header-box-pc {
    width: 100%;
    background-color: var(--buttonColor);
    display: none;
}

.gnb-group {
    width: 576px;
    height: 34.38px;
    display: flex;
    align-items: center;
    gap: 64px;
}

.pc-logo {
    width: 220px;
    height: 100%;
    cursor: pointer;
}

.pc-logo>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gnb {
    display: flex;
    align-items: center;
    width: 294px;
    height: 100%;
    justify-content: space-between;
    color: var(--grayA8);
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}

.gnb>li {
    cursor: pointer;
}

.gnb>li>a {
    color: var(--grayA8);
}


/* pc-menu-button */
.button-gruop {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-button {
    width: 88px;
    height: 40px;
    border-radius: 8px;
    padding: 8px 16px;
    outline: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    background: none;
    color: var(--mainColor);
    box-shadow: none;
    border: 1px solid var(--mainColor);
    box-sizing: border-box;
    font-family: 'Pretendard';
    text-wrap: nowrap;
    cursor: pointer;
}

.menu-button>a {
    color: var(--mainColor);
}

.menu-button.bg-main {
    background-color: var(--mainColor);
    color: var(--black1A)
}

.menu-button.bg-main>a {
    color: var(--black1A)
}

.user-name-box {
    color: var(--mainColor);
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

/* 메인 */

.login-title-pc {
    width: 100%;
    height: 48px;
    padding: 4px 8px;
    text-align: center;
    display: none;
}

/* 로그인 로고 */
.login-logo-warp {
    width: 100%;
    height: 120px;
    margin-bottom: 24px;
}

.login-logo-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-logo-box>.tara-games-logo {
    width: 220px;
    height: 34.38px;
}

/* user-login-group */
.user-login-group {
    width: 100%;
    margin-bottom: 56px;
}

/* usr-input-box */
.user-input-box {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.user-input-box.name-box {
    height: 78px;
    margin-bottom: 16px;
}

.user-input-box.password-box {
    margin-bottom: 24px;
}

/* 유저 아이디 */
.user-label-text {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: var(--gray64);
    margin-bottom: 4px;
}

.user-input {
    width: 100%;
    height: 56px;
    background: var(--grayF3);
    border-radius: 10px;
    padding: 15px 16px;
    font-size: 18px;
    color: var(--black1A);
    outline: none;
    border: none;
    font-family: 'Pretendard';
    transition: all 0.2s ease;
}

.user-input:focus {
    border: 1px solid var(--gray81);
    background-color: #FFFFFF;
}

.user-input ::placeholder {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    font-family: 'Pretendard';
    vertical-align: middle;
    color: var(--grayA8);
}

input[type="password"]::-ms-reveal,
input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-textfield-decoration-container {
    display: none !important;
}

/* user-password 유저 패스워드 */
.user-label-text.password {
    width: fit-content;
    position: relative;
}


.password-wrap {
    width: 100%;
    position: relative;
    margin-bottom: 16px;
}

.password-wrap.new {
    margin-bottom: 4px;
}

.password-wrap.nomargin {
    margin: 0;
}


.eyes-checked {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background-position: center;
    background-repeat: no-repeat;
    appearance: none;
    flex-shrink: 0;
    background-image: url(/assets/img/eye-off.svg);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #1A1A1A;
    z-index: 10;
    cursor: pointer;
}

.eyes-checked:checked {
    background-image: url(/assets/img/eye-on.svg);
}

.error {
    font-weight: 400;
    margin-top: 4px;
    font-size: 12px;
    line-height: 18px;
    vertical-align: middle;
    color: var(--error);
}


/* 아이디/비밀번호 찾기 */
.find-user-infor {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: right;
    color: var(--gray64);
}

.find-user-infor>a {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: right;
    color: var(--gray64);
}

/* .user-input-box.num{
    display: none;
} */

/* 로그인버튼 */
.login-button {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    color: var(--mainColor);
    background: var(--buttonColor);
    border: none;
    outline: none;
    font-family: 'Pretendard';

}

.login-button>a {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    color: var(--mainColor);
}

/* 회원가입 버튼 */

.join-membership-text {
    color: var(--gray64);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.join-agreement-box {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.join-check {
    align-self: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.join-check>img {
    width: 100%;
    height: 100%;
}

/* 계정찾기 */
.login-find-wrap {
    width: 100%;
    height: 812px;
}

.login-box {
    width: 100%;
    height: 100%;
}

.find-conts-wrap {
    width: 100%;
    height: calc(100% - 48px);
}

.find-tab-box {
    width: 100%;
    height: 100%;
}

.tab-menu {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
}

.tab-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grayA8);
    font-weight: 500;
    font-size: 16px;
    width: 50%;
    height: 100%;
    line-height: 24px;
    vertical-align: middle;
    text-align: center;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.tab-button.active {
    border-color: var(--mainColor);
    color: var(--black1A);
}

.tab-conts {
    width: 100%;
    height: calc(100% - 48px);
    font-family: 'Pretendard';
}

.find-id-wrap,
.find-password-wrap {
    width: 100%;
    height: 100%;
}

.find-container {
    width: 100%;
    height: fit-content;
}

.find-id,
.find-password {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.content-title {
    width: 100%;
    height: 110px;
    padding: 24px 16px;
}

.content-title.join {
    width: 100%;
    height: 134px;
}

.id-title {
    color: #1A1A1A;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.id-sub-title {
    color: var(--gray64);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.find-form-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 16px 32px;
}

.user-input-box.email-box {
    width: 100%;
}

.email-input-group {
    position: relative;
}

.num-timer {
    position: absolute;
    top: 50%;
    right: 0;
    margin-right: 16px;
    transform: translateY(-50%);
}

.authentication-button-box {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}

.authentication-button,
.retransmit-button {
    border-radius: 8px;
    box-sizing: border-box;
    background-color: white;
    border: 1px solid var(--buttonColor);
    padding: 5px 12px;
    outline: none;
    color: #1A1A1A;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    height: 32px;
    font-family: 'Pretendard';
    align-self: center;
    -ms-text-combine-horizontal: center;
    text-wrap: nowrap;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.authentication-button {
    width: 73px;
}

.confirm-btn {
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid var(--buttonColor);
    padding: 5px 12px;
    outline: none;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    height: 32px;
    -ms-text-combine-horizontal: center;
    text-wrap: nowrap;
    cursor: pointer;
    width: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--buttonColor);
    color: #C0EA00;
}

.retransmit-button {
    width: 61px;
    line-height: 22px;

}

.amount.minus {
    color: var(--blueFF) !important;
}

.amount.plus {
    color: var(--error) !important;
}


.user-input.email-input {
    background-color: white;
    border: 1px solid var(--buttonColor);
    margin-bottom: 4px;
}

.user-input.email-input::placeholder {
    color: var(--grayA8);
}

.supporting-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    vertical-align: middle;
    color: var(--gray81);
}

.button-area {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    width: 100%;
    padding: 8px 16px 16px;
    box-sizing: border-box;
}

.button-area.h-80 {
    height: 80px;
    padding: 8px 16px 16px;
    box-sizing: border-box;
}

.checkbox-gruop {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    z-index: -1;
}

.checkbox-custorm {
    appearance: none;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url(/assets/img/RadioButton.svg);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #1A1A1A;
    cursor: pointer;
}

.checkbox-custorm.control {
    width: 16px !important;
    height: 16px !important;
    background-size: cover;
}

.checkbox-custorm:checked {
    background-image: url(/assets/img/RadioButtonChecked.svg);
}

.arrow-box {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    align-self: center;
    cursor: pointer;
}

.arrow-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 아이디 찾기 */
.subscription-box {
    width: 100%;
    padding: 0 16px 32px;
}

.subscription-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--grayE1);
    border-radius: 12px;
    padding: 16px;
}

.subscription-details-list {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
}

.category {
    width: 50px;
    font-family: 'Pretendard';
    font-size: 14px;
    line-height: 22px;
    color: #646464;
}

.content {
    font-size: 16px;
    line-height: 24px;
    vertical-align: middle;
}

/* 모달창 */
.modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000066;
    z-index: 10000;
}

.modal-conts {
    width: 295px;
    height: 228px;
    padding: 32px 16px 16px;
    border-radius: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    text-align: center;
}

.modal-conts.login-modal {
    height: 144px;
}

.modal-conts.game-over {
    height: 180px;
}

.modal-text-group {
    width: 100%;
    height: 108px;
    margin-bottom: 24px;
}

.modal-text-group.login-modal {
    height: 24px;
}

.modal-title {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    vertical-align: middle;
}

.modal-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    vertical-align: center;
}

.modal-text.login-modal {
    color: var(--gray47);
    margin-bottom: 24px;
}

.modal-text.game-over {
    color: var(--black1A);
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px;
}

.profits {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
}

.modal-btn-group {
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: space-between;
}

.modal-btn {
    width: 127.5px;
    height: 100%;
    border-radius: 12px;
    outline: none;
    border: 1px solid var(--buttonColor);
    background-color: white;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    align-self: center;
    cursor: pointer;
}

.modal-btn.active {
    background-color: var(--buttonColor);
    color: var(--mainColor);
}

.modal-btn.confirm {
    width: 263px;
    height: 48px;
    background-color: var(--buttonColor);
    color: var(--mainColor);
}


/* 회원가입 */
.main-conts {
    width: 100%;
    padding: 16px;
    height: calc(100% - 48px);
    margin: 0 auto;
}

.main-conts.column {
    min-height: calc(100% - 48px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-conts.join {
    height: calc(100% - 80px);
}

.main-conts-inner {
    width: 100%;
    padding: 24px 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-wrap {
    width: 100%;
    padding: 16px;
}

.agreement {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--grayE1);
    color: var(--black1A);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.essential {
    height: 118px;
}

.essential-list {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.essential-list .left-alignment {
    display: flex;
    gap: 8px;
    align-items: center;
}

.essential-txt {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.asterisk-group {
    display: flex;
}

.asterisk {
    color: var(--error);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    vertical-align: middle;
}

/* 가입완료 */
.completed-container {
    width: 100%;
    height: 100%;
}

.comleted-img-box {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    margin-bottom: 24px;
}

.completed-text-box {
    text-align: center;
}

.completed-title {
    color: var(--black1A);
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 8px;
}

.completed-txt {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray64);
}

.comleted-img-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.completed-wrap {
    height: fit-content;
    margin: 0 auto;
    margin-top: 212px;
}

/* wallet transfer  */

.content-inner {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    height: calc(100% - 48px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.content-inner.error-page {
    height: 100%;
}


.wallet-container {
    width: 100%;
    height: 100%;
    padding: 12px 16px;
}

/* wallet history */
.wallet-container.transaction {
    padding: 0;
}

.has-transaction-history {
    padding: 16px 16px 24px;
}

.no-transaction-history {
    width: 100%;
    height: 100%;
}

/* 데이터가 없는 경우 */
.no-transaction-history>p {
    margin-top: 346px;
    color: #101828;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

/* 데이터가 있는 경우 */
.keyword-wrap {
    display: flex;
    flex-direction: column;
}

.search-keyword {
    box-sizing: border-box;
    height: 32px;
    width: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-history {
    border: 1px solid var(--grayE1);
    padding: 7px 12px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-button-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-img {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.search-img>img {
    width: 100%;
    height: 100%;
}

/* search-wrap */

.search-wrap {
    width: 100%;
    height: 32px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 23px;
    margin-bottom: 35px;
    animation: all 0.3s ease-in;
}

.search-input-box {
    position: relative;
    height: 32px;
    flex: 1;
}

.search-box {
    width: 100%;
    height: 100%;
    padding: 5px 36px;
    border-radius: 10px;
    border: 1px solid var(--grayE1);
    background-color: var(--whiteFA);
}

.search-input-box::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    z-index: 100;
    background-image: url(../../assets/img/search.svg);
}

.search-box ::placeholder {
    color: var(--grayA8);
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}


.search-imgs {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    z-index: 1000 !important;
}


.search-imgs>img {
    width: 100%;
    height: 100%;
}

.close-text {
    text-align: center;
    width: 32px;
    font-size: 14px;
    line-height: 22px;
    vertical-align: middle;
    color: var(--black1A);
    cursor: pointer;
}

.filter-group {
    display: flex;
    box-sizing: border-box;
    gap: 4px;
    align-items: center;
    border: 1px solid var(--grayE1);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 500x;
    line-height: 18px;
    color: var(--black1A);
    cursor: pointer;
}

.filter-img {
    width: 16px;
    height: 16px;
}

.filter-img>img {
    width: 100%;
    height: 100%;
}

.wallet-form-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.custom-select-box {
    position: relative;
    width: 100%;
}

.select-trigger {
    height: 56px;
    line-height: 56px;
    padding: 0 16px;
    background: var(--grayF3);
    border-radius: 10px;
    cursor: pointer;
    border: none;
    font-size: 14px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-label-text {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: var(--gray64);
    margin-bottom: 8px;
}

.select-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    vertical-align: middle;
    color: var(--grayA8);
}

.arrow-img-box {
    width: 18px;
    height: 18px;
}

.arrow-img-box>img {
    width: 100%;
    height: 100%;
}

.hidden {
    display: none;
}

.select-options {
    position: absolute;
    top: 90px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px #0000001A;
    display: none;
    z-index: 10;
    max-height: 240px;
    overflow-y: auto;
}

.select-options li {
    height: 48px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    vertical-align: middle;
    transition: all 0.2s;
    color: var(--black1A);
}

.select-options li:hover {
    background: var(--grayF3);
}

.input-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.input-title-right {
    font-size: 12px;
    line-height: 18px;
    vertical-align: middle;
    color: var(--grayA8);
}

.input-group {
    position: relative;
}

.tara-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    vertical-align: middle;
    color: var(--grayA8);
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}

/*총금액 및 수수료 */
.total-amount {
    width: 100%;
}

.charge-box,
.total-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.charge-box {
    margin-bottom: 8px;
}

.charge,
.total {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    vertical-align: middle;
    color: var(--gray64);
}

.charge-price {
    color: var(--black1A);
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-align: right;
    vertical-align: middle;
}

.total-price {
    font-weight: 500;
    font-size: 18px;
    text-align: right;
    vertical-align: middle;
    line-height: 26px;
    color: #101828;
}

.messages-box {
    width: fit-content;
    text-align: center;
    margin: 0 auto;
    margin-top: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.messages-box.error-page {
    margin-top: 219px;
}

.complate-img-box {
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
}

.complate-img-box.error {
    width: 80px;
    height: 80px;
}

.complate-img-box>img {
    width: 100%;
    height: 100%;
}

.coins-sent {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
}

.coins-sent>span {
    display: block;
}

.reason {
    margin-top: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--gray64);
}

.reason>span {
    display: block;
}

/* transaction */
.filter-modal {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--whiteFD);
    border-radius: 16px 16px 0 0;
}

.modal-close-img {
    display: flex;
    align-items: center;
    justify-content: right;
    height: 48px;
    padding: 16px 16px 8px 16px;
    cursor: pointer;
}

.modal-close-img>img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.filter-modal-con {
    padding: 0 24px 24px;
}

.view-wrap {
    margin-bottom: 24px;
}

.filter-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--black1A);
    margin-bottom: 16px;
}

.period-btn-group {
    width: 100%;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 8px;
}

.period-btn {
    padding: 7px 12px;
    text-align: center;
    border-radius: 10px;
    width: calc(100% / 4);
    border: 1px solid var(--grayE1);
    height: 36px;
    color: var(--black28);
    font-size: 14px;
    line-height: 22px;
    text-wrap: nowrap;
    cursor: pointer;
}

.period-btn.on {
    border-color: var(--mainColor);
    background-color: #F7FDE5;
}

.calendar-box {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

.calendar-btn {
    flex: 1;
    height: 56px;
    box-sizing: border-box;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid var(--grayE1);
    cursor: pointer;
}

.calendar-select {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    vertical-align: middle;
    color: var(--gray85);
}

.input-date {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    vertical-align: middle;
    color: var(--black1A);
}

.calendar-img {
    width: 16px;
    height: 16px;
}

.calendar-img>img {
    width: 100%;
    height: 100%;
}

.bar {
    width: 6px;
    height: 1px;
    background-color: var(--grayE1);
}

.select-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* transaction-type */
.transaction-type {
    margin-bottom: 24px;
}

.type-btn-list {
    display: flex;
    gap: 8px;
}

.type-btn {
    border: 1px solid var(--grayE1);
    padding: 7px 12px;
    border-radius: 10px;
    height: 36px;
    background-color: white;
    color: var(--black1A);
    cursor: pointer;
}

.type-btn.on {
    border-color: var(--mainColor);
    background-color: #F7FDE5;
}

/* date-array */

.date-array {
    display: flex;
    gap: 8px;
}

.right-arrow {
    cursor: pointer;
}

.history-none-wrap {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    height: calc(100% - 48px);
    text-align: center;
}

.history-details-txt {
    margin-top: 346px;
    box-sizing: ;
    color: var(--black1A);
    font-size: 16px;
    font-weight: 500;

}

.button-area.btn-box {
    display: none;
}

.login-find-wrap.custom-height{
    height: max-content;
    min-height: 962px;
    height: 100%;
}


@media screen and (min-width:1024px) {

    /* 헤더 */
    .login-wrap {
        height: 1080px;
    }

    /* 모바일 헤더 */
    .header-wrap-mobile {
        max-width: 375px;
        margin: 0 auto;
    }

    .back-arrow-box>img {
        display: none;
    }

    /* PC 헤더 */
    .header-box-pc {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 60px;
        height: 64px;
    }

    /* login-contents */
    .login-box {
        max-width: 375px;
        height: 812px;
        margin: 0 auto;
        margin-top: 40px;
    }

    /* 레이아웃 */

    .login-conts {
        padding: 0;
        height: 812px;
        margin-top: 40px;
    }

    .login-title-box {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pc-title {
        display: block;
    }

    .main-inner {
        padding: 16px;
    }

    .body-wrap {
        height: 1080px;
    }

    .login-conts.find {
        height: 812px;
    }

    .tab-conts {
        height: calc(100% - 48px);
    }

    .find-tab-box {
        height: calc(100% - 48px);
    }

    .column_16 {
        box-sizing: border-box;
    }

    .padding-0 {
        padding: 8px 16px 16px !important;
    }

    .main-wrap {
        margin-top: 40px;
        height: 812px;
        box-sizing: border-box;
    }
    .main-wrap.sign-up {
        height: 848px;
    }

    .main-wrap.completed {
        justify-content: flex-start;
    }

    /* 로그인 */
    .error {
        font-weight: 500;
        font-size: 13px;
        line-height: 20px;
    }

    /* 가입완료 */
    .completed-wrap {
        margin-top: 170px;
        margin-bottom: 40px;
    }

    /* wallet transfer  */

    .content-inner {
        width: 100%;
        height: 992px;
        max-width: 768px;
        margin-top: 24px;
        padding-top: 16px;
        display: block;
    }

    .content-inner.complate {
        padding: 0;
        margin-bottom: 40px;
        max-width: 738px;
    }

    .wallet-container {
        height: fit-content;
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .wallet-container.complate {
        margin-bottom: 40px;
    }


    .pc-title.transaction {
        margin: 16px;
    }

    .select-label-text {
        font-size: 14px;
        line-height: 22px;
        color: var(--grayA8);
    }

    .user-label-text {
        font-size: 14px;
        line-height: 22px;
    }

    .charge,
    .total {
        font-size: 14px;
        line-height: 22px;
    }

    .charge-price {
        font-size: 14px;
        line-height: 22px;
    }

    .total-price {
        color: var(--black1A);
    }

    .select-options li {
        font-size: 16px;
        line-height: 24px;
    }

    .messages-box {
        width: 375px;
        margin-top: 280px;
    }

    .coins-sent>span {
        display: inline;
    }

    .button-area.join.complate {
        width: 375px;
        margin: 0 auto;
    }

    .button.white>a {
        color: var(--mainColor);
    }

    .content-inner.error-page {
        height: 812px;
        padding: 0;
    }

    .reason>span {
        display: inline;
    }

    .reason>.pc-block {
        display: block;
    }

    .complate-img-box.error {
        width: 120px;
        height: 120px;
    }

    .content-inner.transaction {
        padding: 0;
    }

    .wallet-container.transaction {
        padding: 0;
    }

    .search-keyword {
        height: 36px;
    }

    .filter-group {
        font-size: 14px;
        line-height: 22px;
    }

    .history-wrap {
        height: 96px;
    }

    .search-input-box {
        height: ;
    }

    .keyword-wrap {
        flex-direction: column-reverse;
    }

    .search-wrap {
        margin-bottom: 44px;
    }

    .filter-modal {
        width: 375px;
        height: 492px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 16px;
    }

    .dark-btn {
        width: 24px;
        height: 24px;
    }

    .dark-btn>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .history-none-wrap {
        width: 100%;
        max-width: 768px;
        margin: 0 auto;
        margin-top: 24px;
        height: 992px;
        position: relative;
    }

    .history-details-txt {
        margin-top: 280px;
        line-height: 26px;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 40px;
    }

    .button-area.btn-box {
        display: block;
        width: 375px;
        height: 80px;
        margin: 0 auto;
    }

    .button-area.false {
        width: 375px;
        margin: 0 auto;
    }


}