@charset "utf-8";

* {
    position: relative;
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0); 
}

body.on {
    touch-action: none;
    overflow: hidden !important;
    -webkit-user-select: none;
}

html.on {
    touch-action: none;
    overflow: hidden !important;
    overscroll-behavior: none;
    -webkit-user-select: none;
}

#load {
    display: none
}

.loading-container {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    z-index: 99999999999;
    display: flex;
    align-items: center;
    justify-content: center
}

.loading-container .loading {
    width: calc(100vw * (100/640));
    height: calc(100vw * (100/640));
    border-radius: 50%;
    border: 2px solid transparent;
    border-color: transparent #fff transparent #FFF;
    -moz-animation: rotate-loading 1.5s linear 0s infinite normal;
    -moz-transform-origin: 50% 50%;
    -o-animation: rotate-loading 1.5s linear 0s infinite normal;
    -o-transform-origin: 50% 50%;
    -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
    -webkit-transform-origin: 50% 50%;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%
}

.loading-container #loading-text {
    -moz-animation: loading-text-opacity 2s linear 0s infinite normal;
    -o-animation: loading-text-opacity 2s linear 0s infinite normal;
    -webkit-animation: loading-text-opacity 2s linear 0s infinite normal;
    animation: loading-text-opacity 2s linear 0s infinite normal;
    color: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: calc(100vw * (10/640));
    font-weight: bold;
    opacity: 0;
    text-align: center;
    text-transform: uppercase;
    width: calc(100vw * (100/640))
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
}

@-o-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
}

@keyframes loading-text-opacity {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-moz-keyframes loading-text-opacity {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes loading-text-opacity {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-o-keyframes loading-text-opacity {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

/* header */
#header {
    width: 100%;
    height: calc(100vw * (56/375));
    padding: calc(100vw * (7/375)) calc(100vw * (30/375));
    display: flex;
    align-items: center;
}

#header .header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#header .logo {
    width: calc(100vw * (61/375));
    display: flex;
    align-items: center;
    gap: calc(100vw * (8/375));
    color: #25aab7;
    font-size: calc(100vw * (16/375));
    font-weight: 500;
    line-height: calc(100vw * (20/375));
}

#header .right {
    display: flex;
    align-items: center;
    gap: calc(100vw * (22/375));
}

.arim {
    position: relative;
}

.arim.on::after {
    content: 'N';
    width: calc(100vw * (12/375));
    background-color: #FF6B3D;
    font-size: calc(100vw * (6/375));
    color: #FFF;
    line-height: calc(100vw * (12/375));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
}

/* END header */

/* footer */

/* END footer */

/* gnb */
.gnb_wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -o-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    overflow: auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fff;
}

.gnb_big_wrap.on .gnb_wrap {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -o-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.gnb_top {
    padding: calc(100vw * (15/375)) calc(100vw * (20/375)) calc(100vw * (32/375));
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (36/375));
    background: linear-gradient(93deg, #6631FB, #FFB580);
    background-size: 200% 200%;
    border-radius: calc(100vw * (16/375));
    animation: MoveGrad 4s linear infinite;
    overflow: hidden;
    color: #fff;
    .gnb_bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .gnb_xbtn {
        margin-left: auto;
    }
    .gnb_ctxt {
        font-size: calc(100vw * (13/375));
        font-weight: 400;
    }
    .gnb_cnum {
        font-size: calc(100vw * (25/375));
        font-weight: 400;
        margin-top: calc(100vw * (4/375));
        .inter {
            font-weight: 700;
        }
    }
    .gnb_cash {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }
    .gnb_qr {
        padding: calc(100vw * (10/375));
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: calc(100vw * (10/375));
    }
}
.gnb_verify {
    display: flex;
    align-items: center;
    margin-top: calc(100vw * (28/375));
    font-size: calc(100vw * (14/375));
    font-weight: 500;
    padding: 0 calc(100vw * (10/375));
    .arw_right {
        margin-left: auto;
    }
}
.gnb_label {
    padding: calc(100vw * (3/375)) calc(100vw * (14/375));
    background-color: #ff9e59;
    color: #FFF;
    border-radius: calc(100vw * (5/375));
    font-size: calc(100vw * (11/375));
    line-height: calc(100vw * (19/375));
    margin-right: calc(100vw * (11/375));
}

.gnb_top .logo {
    width: calc(100vw * (112/375));
}

.gnb_top .gnb_icon{
    display: flex;
    width: 100%;
    align-items: center;
    gap: calc(100vw * (26/375));
}

.gnb_inner {
    padding: calc(100vw * (15/375)) calc(100vw * (20/375)) calc(100vw * (45/375));
}

.gnb_list_group {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (30/375));
    margin: calc(100vw * (20/375)) 0 0;
    padding: calc(100vw * (40/375)) calc(100vw * (10/375)) 0;
    border-top: 1px solid #eee;
    .gnb_link {
        display: flex;
        align-items: center;
        gap: calc(100vw * (20/375));
        font-size: calc(100vw * (20/375));
        font-weight: 500;
        color: #151515;
    }
    .logout {
        margin-top: calc(100vw * (45/375));
        font-size: calc(100vw * (16/375));
    }
}

.gnb_etc {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (15/375));
    font-size: calc(100vw * (15/375));
    color: #999;
    font-weight: 400;
    padding: calc(100vw * (30/375)) calc(100vw * (30/375)) calc(100vw * (60/375));
    background-color: #f8f8f8;
    .ver {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.logout_btn {
    display: block;
    border-radius: calc(100vw * (10/375));
    background-color: #3f3f43;
    color: #fff;
    font-size: calc(100vw * (17/375));
    font-weight: 500;
    text-align: center;
    padding: calc(100vw * (16/375));
    margin-top: calc(100vw * (56/375));
}
/* END gnb */

/* sub_header */
.sub_header {
    background-color: #fff;
}

.sub_header_box {
    z-index: 91;
    padding: 0 calc(100vw * (20/375));
    width: 100vw;
    height: calc(100vw * (60/375));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub_header_box .name {
    color: #262626;
    font-size: calc(100vw * (18/375));
    font-weight: 500;
}

.back_link {
    background: url('../image/sub/back_link.svg') no-repeat left / contain;
    width: calc(100vw * (54/375));
    height: calc(100vw * (14/375));
    display: block;
}

.h_btn_group {
    width: calc(100vw * (50/375));
    display: flex;
    align-items: center;
    justify-content: end;
}

.gnb_home {
    width: calc(100vw * (24/375));
}
/* END sub_header */


/* modal */
.modal {
    position: fixed;
    z-index: 1001;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.modal_con {
    position: fixed;
    left: 0;
    right: 0;
    display: none;
    bottom: 0;
    max-height: 95%;
    overflow: auto;
    z-index: 1002;
    background: #fff;
    border-radius: calc(100vw * (20/375)) calc(100vw * (20/375)) 0 0;
}

.modal_head {
    padding: 0 calc(100vw * (20/375));
    height: calc(100vw * (60/375));
    justify-content: space-between;
    border-radius: calc(100vw * (20/375)) calc(100vw * (20/375)) 0 0;
    background-color: #fff;
}

.modal_head .modal_tit {
    font-weight: 600;
    color: #111;
    font-size: calc(100vw * (16/375));
}

.modal_head .modal_close {
    width: calc(100vw * (25/375));
    height: calc(100vw * (25/375));
    justify-content: center;
}

.modal_head .modal_close .img_icon {
    width: calc(100vw * (13/375));
    height: calc(100vw * (13/375));
}

/* END modal */

/* pop */
.pop {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    max-width: 95%;
    max-height: 95%;
    /* overflow: auto; */
    background-color: #fff;
    z-index: 10011;
    border-radius: 10px;
    display: none;
}

.pw_pop .pop {
    width: 95%;
}

.pw_modal .pop_close_btn img {
    filter: brightness(0) invert(1);
}

.pop_close_btn {
    position: absolute;
    width: calc(100vw * (13/375));
    height: calc(100vw * (13/375));
    right: calc(100vw * (15/375));
    top: calc(100vw * (15/375));
    z-index: 2;
}

.common_pop .pop {
    width: 90%;
    padding: 25px 15px;
}

.id_btn button.chk {
    background: #c8c8c8;
}

.id_btn button {
    color: #fff;
}

.id_btn button {
    height: 40px;
    width: 120px;
    margin: 0 5px;
    border-radius: 5px;
    font-size: 15px;
    background: #6A37FA;
}

/* END pop */
.g_home_btn {
    width: calc(100vw * (24/375));
    justify-content: center;
    margin-right: calc(100vw * (10/375));
}

.g_home_btn .icon {
    width: calc(100vw * (24/375));
    height: calc(100vw * (24/375));
}

a {
    -webkit-tap-highlight-color: transparent;
}

/* PW Modal */

.pw_modal_bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100000;
    display: none;
}
.pw_slideup {
    transform: translateY(100%);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 90vh;
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: #FFF;
    z-index: 100001;
    border-radius: calc(100vw * (20/375)) calc(100vw * (20/375)) 0 0;
    transition: 0.5s;
}

.num_pad.head_ver {
    margin-bottom: calc(100vw * (27/375));
}

.title.head_ver {
    text-align: center;
}
/* END PW Modal */
