/* style.css */

.cursor {
 cursor: pointer;
}

.main-bg {
    background-image: url("/wallet/extends/images/main_bg.png");
    width: 100%; height: 40rem;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center; 
    position: relative;
}
.main-bg .tit-txt {
    position: absolute;
    width: 100%;
    top: 10rem;
    padding-left: 1.5rem;
}
.main-bg .tit-txt h1{
    color: #fff;
    font-size: 2.8rem;
    font-weight: 200;
}
.main-bg .tit-txt h1 p {
    font-weight: 500;
    font-size: 2.2rem;
}

#login .main-visual {
    position: relative;
    margin:8rem 3rem 6rem 3rem;
    text-align: center;
}
#login .main-visual .main-img {
    position: initial;
}
#login .main-visual .fade-in{
    position: absolute;
    opacity: 0;
}
#login .main-visual .el1{
    left:20px;
    top:0;
}
#login .main-visual .el2{
    left:-16px;
    bottom:50%;
}
#login .main-visual .el3{
    left:0;
    bottom:0;
}
#login .main-visual .el4{
    right:20px;
    top:0;
}
#login .main-visual .el5{
    right:-20px;
    bottom:50%;
}
#login .main-visual .el6{
    right:8px;
    bottom:0;
}
#login .log-form {
    background: #fff;
}
#login .log-form .head {
    text-align: center;
    color:#3B3B3E;
}
#login .log-form .head h1{
    font-size:2.4rem;
    font-weight: 900;
    padding-bottom:8px;
}
#login .log-form .head p {
    font-size: 1.6rem;
    padding-bottom: 4rem;
    line-height: 2rem;
}
#login .log-form .head p a {
    color: #266cf7;
    font-weight: 600;
    margin: .5rem;
}
#login .log-form input[type=text],
#login .log-form input[type=password]{
    font-size: 1.35rem;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 24px;
    margin-bottom: 1.6rem;
 
}
#login .log-form input[type=text]:focus,
#login .log-form input[type=password]:focus{
    border:2px solid #3B3B3E;
    box-shadow: 2px 4px 16px 0px rgba(0, 0, 0, 0.08);
}
#login .log-form input[type="submit"] {
    margin-top:48px;
    background: #3B3B3E;
    color: #fff;    
    padding: 12px 16px;
    border-radius: 24px;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
}
#login .log-form .foot {
    font-size: 1.6rem;
    display: flex;
    justify-content:space-between;
    padding: 8px 0;
    font-weight: 300;
}
#login .log-form .foot a {
    font-weight: 500;
}

.floating-menu{
    z-index: 2;
    position: fixed;
    top: 300px;
    right: 0;
}

.floating-menu .floating-icon{
	background:#000;
	border-radius:50%;
    display: table;
    margin-bottom: 9px;
}

.floating-menu .floating-icon.gift{
	background:#F15050;
}

.floating-menu .floating-icon img{
	width:28px;
	height:28px;
    margin: 6px 18px 0;
}

.floating-menu .floating-icon p{
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 22px;	
    font-weight: bold;
}


/*main index */
.main-header{
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
}
.main-header .logo{
    font-size: 1.6rem;
    font-weight: 900;
}
.main-header .material-icons{
    color:#A7A7AC;
    font-size:24px;
}
.main-inner {
    width: 100%;
    padding: 0  16px 10rem;
    background-color: #F6F6FA;
}
.my-wallet{
    background-color: #fff;
    box-shadow: 4px 8px 20px 4px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding:16px;
    margin-bottom: 24px;
}
.main-tit{
    padding-top:24px;
    font-size: 1.6rem;
    font-weight: 700;
    padding-bottom:8px;
}
.my-wallet .wallet__tit{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color:#3B3B3D;
}
.my-wallet .wallet__tit .material-icons{
    color:#C4C4CA;
    padding-left: 16px;
    font-size: 24px;
}
.my-wallet .wallet__tit.active .material-icons{
    transform: rotateX(180deg);   
}
.my-wallet .wallet__cont{
    visibility: hidden;
    transition: height 0.3s;
    height: 0vh;
    pointer-events:none;
    overflow: hidden;
}
.my-wallet .wallet__cont.show{
    visibility: visible;
    height: 27vh;
    pointer-events: auto;
    overflow: auto;
}
.my-wallet .cont__coin{
    display: flex;
    padding:8px 0;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    text-align: right;
}
.my-wallet .cont__coin .cont__name{
    font-weight: 700;
    color:#19191A;
    font-size: 1.6rem;
    text-align: left;
}
.my-wallet .cont__coin .cont_num{
    font-weight: 500;
    color:#3B3B3D;
    font-size: 1.6rem;
}
.my-wallet .cont__coin .txt_market{
    color:#848489;
    font-weight: 400;
    font-size: 1.4rem;
}
.my-wallet .cont__coin span{
    color:#A7A7AC;
    font-weight: 400;
    font-size: 1.2rem;
}
.icon-menu{
    display: flex;
    flex-wrap: wrap;
    padding-bottom:16px;
}
.icon-menu .menu{
    width:calc(50% - 4px);
    border-radius: 12px;
    text-align: center;
    padding:10px;
    margin-bottom:8px;
}
.icon-menu .menu p{
    padding-bottom:8px;
    font-size: 1.6rem;
    color: #19191A;
    font-weight: 500;
}
.icon-menu .m1{
    background-color: #DCE7FC;
    margin-right:8px;
}
.icon-menu .m2{
    background-color: #E4E4F0;
}
.icon-menu .m3{
    background-color: #DCF6FA;
    margin-right:8px;
}
.icon-menu .m4{
    background-color: #E1F3FF;
}
.icon-menu .m5{
    background-color: #F5E6CE;
    margin-right:8px;
}
.icon-menu .m6{
    background-color: #F0EAE4;
}
.icon-menu .m7{
    background-color: #F9F3DE;
    margin-right:8px;
}
.icon-menu .m8{
    background-color: #FBE8DB;
}
.sam-mall{
    padding: 0px 8px;
    height: 240px;
}   
.sam-mall img{
    border-radius: 8px;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.12));
}
.sam-mall p{
    padding-top: 16px;
    font-size: 1.4rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 1.2em;
    height: 5em;
}

.main-notice li{
    display: flex;
    justify-content: space-between;
    border-radius: 4px;
    background-color: #fff;
    margin-bottom:8px;
    font-size: 1.4rem;
    padding: 8px 16px;
}
.main-notice li a{
    color:#49494C;
}
.main-notice li p{
    color:#98989C ;
}
.main-notice li:hover{
    /* elevatioin-big */
    box-shadow: 4px 8px 20px 4px rgba(0, 0, 0, 0.08);
}
.cs-center{
    border-radius: 24px;
    background-color: #fff;
    padding:16px;
    overflow: hidden;
}
.cs-center .tel-num{
    font-size: 2.3rem;
    color:#19191A;
    font-weight: 800;
}
.cs-center .tel-num span{
    color:#848489;
    font-size: 1.4rem;
    font-weight: 400;
}
.cs-center .kakao-btn{
    background-color: #3B3B3D;
    border-radius: 24px ;
    padding:8px 24px;
    color:#fff;
    font-size: 1.6rem;
    margin-top:1.2rem;
    float: right;
}
.cs-center .kakao-btn  img{
    vertical-align: middle;
}
.divide_line{
    height:1px;
    background-color: #DEDEE3;
    width: 100%;
    margin:40px 0 40px;
}
.foot-list {
    color:#49494C;
    display: flex;
    padding-bottom: 24px;
    font-size:1.4rem;
}
.foot-list ul{
    margin-right:16px;
}
.foot-list ul li{
    margin-right:16px;
    padding-bottom:8px;
}
.main-footer{
    font-size: 1.4rem;
    padding-bottom:80px;
    color:#49494C;
}
.main-footer img{
    display: block;
    padding-bottom: 8px;
}
#m-open-menu {
    display: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    background: #36374080;
}
#m-open-menu.show{
    display: block;
}
#m-open-menu .menu-container {
    position: absolute;
    top: 0;
    left: 20%;
    right: 0;
    bottom: 0;
    background: #fff;
    width:80%;
    overflow: hidden;
    box-shadow: 1px 1px 8px rgb(0 0 0 / 4%), 2px 2px 20px rgb(0 0 0 / 6%);
    
}
#m-open-menu.show .menu-container {
    right:0;
    left:20% !important;
}
.user-area{
    position: relative;
    padding:16px ;
} 
.user-area .lang-select ul{
    font-size:1.4rem;
    align-items: center;
    display: flex;
    padding-bottom:16px;
}
.user-area .lang-select ul li{
    margin-right:16px;
    color:#98989C;
    font-weight: 700;
}
.user-area .lang-select ul li.on{
    background-color: #3B3B3D;
    border-radius: 24px;
    color:#fff;
    padding:8px 16px;
}
.user-area a{
    font-size:1.6rem;
    color:#3B3B3D;
    padding-right:16px;
}
#m-open-menu .close-btn{
    position: absolute;
    font-size: 32px;
    right:0;
    top:16px;
}
#m-open-menu .menu-list{
    font-size:1.8rem;
    
    color:#19191A;
    padding:24px 16px;
}
#m-open-menu .menu-list li{
    padding-bottom:16px;
}
#m-open-menu .menu-list li a{
    font-weight: 700;
}
.cs-area{
    font-size:1.4rem;
    padding:16px;
    color:#49494C;
}


/* charge shop */

header.mu-main .p-charge {
    padding: 1rem 1.5rem;
}
header.mu-main .p-charge p {
    font-size: 1.6rem;
    color: #fff;
    padding-bottom: 1.5rem;
}
header.mu-main .p-charge input {
    padding: 1.4rem;
    font-size: 1.4rem;
    border: none;
    border-radius: .6rem;
    background: #fff;
}
header.mu-main .p-charge input::placeholder {
    color: #4b4b4b;
    font-weight: 500;
}

#charge-shop .content {
    height: calc(100% - 29.5rem);
    overflow: auto;
    padding: 3rem 1.5rem;
}

#charge-shop .content .tab-mu{
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}
#charge-shop .content .tab-mu li:first-child{
    margin-right:8px;
}
#charge-shop .content .tab-mu li {
    font-size: 1.6rem;
    color: #5F656E;
    flex:1;
    text-align: center;
    background: rgba(229, 229, 229, 0.5);
    padding: 1rem;
    border-radius: 24px;
}
#charge-shop .content .content-tit{
    font-size: 1.6rem;
    font-weight: bold;
}
#charge-shop .content .tab-mu li.on a {
    color: #1E5EFF;
    font-weight: bold;
}

#charge-shop .content .ct-box.show{
    display: block;
}


#charge-shop .content .ct-box .ct-tit {
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
}
#charge-shop .content .ct-box .payment-type {
    display: flex;
    margin: 10px 0;
}
#charge-shop .content .ct-box select {
    width:96.5%;
    flex: 1;
    padding: 1rem;
    font-size: 1.4rem;
    border: 1px solid #ddd;
    margin: 0 0.5rem;
}

#charge-shop .content .ct-box input{
    flex: 1;
    padding: 1rem;
    font-size: 1.4rem;
    border: 1px solid #ddd;
    color: #999;
    background: #fff;
    margin: 0 0.5rem;
}


#charge-shop .content .ct-box .payment-type input {
    flex: 1;
    padding: 1rem;
    font-size: 1.4rem;
    border: 1px solid #ddd;
    color: #999;
    background: #fff;
    margin: 0 0.5rem;
}
#charge-shop .content .ct-box .payment-type input.on {
    background: #4b84f7;
    border: 1px solid #4b84f7;
    color: #fff;
}
#charge-shop .content .ct-box .payment-type input:first-child {
    margin-right: .5rem;
}

#charge-shop .content .ct-box .guide{
    color: red;	
    font-size: 1.4rem;
    font-weight: bold;	
}

#charge-shop .content .cm-btn {
    margin-top: 3rem;
}


#charge-shop .content .charge-price{
    margin-bottom:2.4rem;
}
#charge-shop .content .charge-price .price-tit{
    font-size: 1.4rem;
    margin-bottom:4px;
}
#charge-shop .content .charge-price .price-ct{
    background-color:#F1F1FF;
    font-size: 1.6rem;
    padding:8px 16px;
    border-radius: 4px;
}
#charge-shop .serial-num{
    background-color:#fff;
    border:1px solid #E5E5E5;
    width: 100%;
    padding:0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom:1.6rem;
}
#charge-shop .serial-num.show{
    display: block;
}


#charge-shop .serial-num table{
	height:120px;
	display:grid;
    align-content: baseline;
}

#charge-shop .serial-num th{
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom:1px solid #ccc;
    padding:.8rem;
}


#charge-shop .serial-num td{
    font-size: 1.5rem;
    text-align: center;
    border-bottom:1px solid #E5E5E5;
    padding:.6rem;
	width:30%;
}

#charge-shop .serial-num th:first-child,#charge-shop .serial-num td:first-child{
    width: 10rem;
}

#charge-shop .serial-num th:nth-child(2),#charge-shop .serial-num td:nth-child(2){
    width: 22rem;
}


#charge-shop .agree-chk{
    margin-top:1.6rem;
}
#charge-shop .agree-chk+label{
    font-size: 1.4rem;
}
#charge-shop .agree-ct{
    font-size: 1.3rem; 
    background-color: rgba(229, 229, 229, 0.5);
    padding:8px 16px;
    height:80px;
    color: #f10606;
}
#charge-shop .agree-ct ul{
    list-style: disc;
    margin-left:16px;
}



.add-info .type-info p{
	font-size: 1.4rem;
}

.add-info .type-info p.f_size_m{
    font-size: 1.5rem;
    font-weight: bold;
}

.add-info .type-info p .copy_icon{
    text-decoration: underline;
    margin-left: 1.5rem;
    color: #f10606;
    font-weight: bold;
}


/* shopping mall */
#mall {
    height: calc(100% - 26.5rem);
    overflow-y: auto;
}
#mall .content {
    padding: 3rem 0;
}
#mall .p-align-type {
    background: #fff;
    overflow-x: auto;
    white-space: nowrap;
    height: 6rem;
    margin-bottom: 1rem;
}
#mall .p-align-type ul {
    font-size: 0;
    padding-top: 1.4rem;
}
#mall .p-align-type ul li {
    display: inline-block;
    font-size: 1.3rem;
    padding: 0 1.3rem;
    color: #ccc;
}
#mall .p-align-type ul li.on {
    color: #0f4dea;
    font-weight: 600;
    position: relative;
}
#mall .p-align-type ul li.on::after {
    content: "";
    position: absolute;
    top: -.65rem; left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: .5rem; height: .5rem;
    background: #0f4dea;
    border-radius: 50%;
}

#mall .item-area {
    background: #fff;
    padding: 1.5rem 0;
    height: calc(100% - 27.2rem);
    overflow-y: scroll;
}
#mall .item-area .total-unit p {
    font-size: 1.4rem;
    padding: 0 0 1rem 1.5rem;
    color: #4b4b4b;
    border-bottom: 1px solid #ddd;
}
#mall .item-area .total-unit p span {
    font-weight: 600;
    color: #000;
    padding: 0 .5rem;
}
#mall .item-area .p-list {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem .5rem 0 .5rem;
}
#mall .item-area .p-list .p-box {
    flex-basis: 50%;
    padding: 0 1rem;
    margin-bottom: 2.5rem;
}

#mall .item-area .p-list .p-box img{
 min-width:95px;
}
 #mall .item-area .p-list .p-box video{
	width:100%;
	height:95px;
 }

#mall .item-area .p-list .p-box .item {
    padding: 2rem;
    margin-bottom: 2rem;
    height: 15.5rem;
    overflow: hidden;
    box-shadow: 1px 1px 3px 3px rgba(208,210,211,.2),-1px -1px 8px 3px rgba(208,210,211,.2);
}
#mall .item-area .p-list .p-box .item-info {
    padding-right: 1rem;
}
#mall .item-area .p-list .p-box .item-info .item-nm {
    font-size: 1.5rem;
    color: #4b4b4b;
}

#mall .item-area .p-list .p-box .item-info .item-pr {
    font-size: 1.8rem;
    font-weight: 600;
    padding-bottom: .3rem;
}
#mall .item-area .p-list .p-box .item-info .free-delivery {
    color: #ff9327;
    font-weight: 600;
    font-size: 1.2rem;
}


/* nft goods list  S*/
.nft-bg{background:#fff}

#mall .nft-content{
    background: #f1f2f3;
}

#mall .p-sort-tab-area {
    background: #fff;
    overflow-x: auto;
    white-space: nowrap;
    height: 6rem;
    margin-bottom: 1rem;
}

#mall .p-sort-tab-area .align-tab-box{
    display: flex;
    flex-direction: row-reverse;
}

#mall .p-sort-tab-area .align-tab-box select{
    border: none;
    padding: 1rem 2rem 1rem 2rem;
    width: 9rem;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 2rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(/wallet/extends/images/slide-down.png) no-repeat 98% 60%;	
}

#mall .nft-item-area{
	background: rgb(255, 255, 255);
}

#mall .nft-item-area .p-list{
    display: flex;
    flex-wrap: wrap;
}

#mall .nft-item-area .p-list .p-box{
    flex-basis: 100%;
    margin-bottom: 2.5rem;
	text-align:center;
}

#mall .nft-item-area .p-list .p-box .item{
    margin: 2rem;
    background: #F6F6F6;
    width: 90%;
    text-align: center;
    display: inline-block;
}

#mall .nft-item-area .p-list .p-box .item video{
	width:100%;
	height:22rem;
}

#mall .nft-item-area .p-list .p-box .item img{
	height:22rem;
}

#mall .nft-item-area .p-list .p-box .item-info{
    width: 90%;
	margin: 0 2rem;
    text-align: left;
}


#mall .nft-item-area .p-list .p-box .item-info .item-date-area .progress-sticker{
    background: #C3C3C3;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.2px;
    margin-right: 0.5rem;
}

#mall .nft-item-area .p-list .p-box .item-info .item-date-area .progress-date{
    background: #F4F4F4;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    color: #212121;
    font-size: 1.2rem;
	font-weight:500;
    letter-spacing: 0.2px;
    margin-right: 0.5rem;
}

#mall .nft-item-area .p-list .p-box .item-info .item-date-area .nft-like-icon{
    float: right;
}

#mall .nft-item-area .p-list .p-box .item-info .item-date-area .nft-like-icon img{
    vertical-align: middle;
    margin-top: -0.15rem;
	cursor:pointer;
}

#mall .nft-item-area .p-list .p-box .item-info .item-date-area .nft-like-icon em{
    font-size: 1.4rem;
    letter-spacing: 0.2px;
    margin-left: 1rem;
    font-weight: bold;
    color: #212121;
}


#mall .nft-item-area .p-list .p-box .item-info .item-nm{
    margin-top: 1.2rem;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.2px;	
	color: #212121;
}

#mall .nft-item-area .p-list .p-box .item-info .item-pr{
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.2px;	
	color: #222222;
}

#mall .nft-item-area .p-list .p-box .item-info .item-type{
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 1rem;
    letter-spacing: 0.2px;
    color: #222222;
}

#mall .nft-item-area .p-list .p-box .item-info .item-pr-area{
    margin-top: 1.5rem;
}

#mall .nft-item-area .p-list .p-box .item-info .item-pr-area ul{
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}

#mall .nft-item-area .p-list .p-box .item-info .item-pr-area ul li{
	font-size:1.4rem;
	letter-spacing: 0.2px;
	font-weight:bold;
	color:#222222;
}

#mall .nft-item-area .p-list .p-box .item-info .item-pr-area ul li:first-child{
   color: #666666;	
}

#mall .more-btn {
    text-align: center;
    margin: 3rem 0;
}
#mall .more-btn input {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    padding: 1.3rem 4rem;
    background: linear-gradient(to right, #4b84f7, #114fea);
    border: none;
    border-radius: 2.2rem;
}

/* nft goods list  E*/


/* mall- detail */
#mall.detail {
    height: calc(100% - 20.4rem);
    overflow-y: auto;
    background: #fff;
}

#mall.detail .item-thum {
    background: #fff;
    padding: 3rem 1.5rem;
    margin-bottom: 1rem;
}
#mall.detail .item-thum .thum-img {
    padding: 0 2rem;
    margin-bottom: 2rem;
    text-align: center;
}
#mall.detail .item-thum .item-info .item-nm {
    font-size: 1.5rem;
    color: #4b4b4b;
}
#mall.detail .item-thum .item-info .item-pr {
    font-size: 1.8rem;
    font-weight: 600;
}
#mall.detail .item-thum .item-info .item-pr .free {
    font-size: 1.3rem;
    color: #ff9327;
    font-weight: 500;
}
#mall.detail .add-info {
    background: #fff;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}
#mall.detail .add-info ul {
    font-size: 0;
    padding: .5rem 0;
}
#mall.detail .add-info ul li {
    display: inline-block;
    font-size: 1.4rem;
    color: #4b4b4b;
}
#mall.detail .add-info ul li:first-child {
    width: 6rem;
    vertical-align: top;
    font-weight: bold;
}
#mall.detail .add-info ul li:last-child {
    width: calc(100% - 6rem);
    text-align: left;    
}
#mall.detail .p-dt-info {
    background: #fff;
    padding: 1rem 0 5rem 0;
}
#mall.detail .p-dt-info .head {
    border-bottom: 1px solid #ddd;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
#mall.detail .p-dt-info .head p{
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1.2rem;
    display: inline-block;
	letter-spacing: 0.2px;
	cursor:pointer;
}

#mall.detail .p-dt-info .head p.on{
    border-bottom: 2px solid #1d1dcc;
}

#mall.detail .p-dt-info .dt-img {
    margin: 2rem 0;
}
#mall.detail .p-dt-info .p-info-txt {
    padding: 1.5rem;
	display:none;
}

#mall.detail .p-dt-info .p-info-txt.on{
	display:block;
}

#mall.detail .p-dt-info .p-info-txt .nft-history-area{
	width:100%;
}

#mall.detail .p-dt-info .p-info-txt .nft-history-area h3{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.2px;
	color:#222222;
}


#mall.detail .p-dt-info .p-info-txt .nft-history-area .history-col-title{
    display: flex;
    justify-content: space-between;
	font-weight:bold;
    border-bottom: 1px solid #000;
    line-height: 3rem;
}

#mall.detail .p-dt-info .p-info-txt .nft-history-area .history-col-title li:first-child{
    flex-basis: 30%;
}
 
#mall.detail .p-dt-info .p-info-txt .nft-history-area .history-col-data{
    display: flex;
    justify-content: space-between;
}

#mall.detail .p-dt-info .p-info-txt .nft-history-area .recent-nft-history{
    border-bottom: 7px solid #F5F5F5;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

#mall.detail .p-dt-info .p-info-txt .nft-history-area .history-col-data li{
	line-height:3rem;
}

#mall.detail .p-dt-info .p-info-txt .nft-history-area .history-col-data li:first-child{
    flex-basis: 30%;
}


#mall.detail .p-dt-info .p-info-txt .nft-history-area .history-col-data .non-data{
    flex-basis: 100% !important;
	text-align:center;
}

#mall.detail .p-dt-info .p-info-txt p {
    font-size: 1.4rem;
    color: #4b4b4b;
    padding-bottom: 2rem;
}
#mall.detail .p-dt-info .info-table {
    padding: 1rem;
    margin: 0 1.5rem;
    border-top: 1px solid #6b73ff;
    border-bottom: 1px solid #ddd;
}
#mall.detail .p-dt-info .info-table ul {
    font-size: 0;
}
#mall.detail .p-dt-info .info-table ul li {
    display: inline-block;
    font-size: 1.3rem;
    padding: .5rem 0;
}
#mall.detail .p-dt-info .info-table ul li:first-child {
    width: 12rem;
}
#mall.detail .p-dt-info .info-table ul li:last-child {
    text-align: right;
    width: calc(100% - 12rem);
}
#mall.detail .p-dt-info .contract-addr {
    padding: 1.5rem;
}
#mall.detail .p-dt-info .contract-addr .tit {
    font-size: 1.4rem;
    padding: 0 0 .75rem .75rem;
}
#mall.detail .p-dt-info .contract-addr .addr-box {
    padding: 1rem 0;
    font-size: 1.4rem;
    border: 2px solid transparent;
    background: linear-gradient(to right, #fff, #fff),linear-gradient(to right, #6b73ff, #1d1dcc);
    background-clip: padding-box, border-box;
    background-origin: border-box;
    background-size: 100% 100%;
    border-radius: 1.2rem;
    text-align: center;
}
#mall.detail .p-dt-info .contract-addr .addr-box p {
    font-size: 1.3rem;
}
#mall.detail .fixed-buy-btn {
    position: fixed;
    bottom: 8.5rem; left: 0;
    width: 100%;
    padding: 0 1.5rem;
}
#mall.detail .fixed-buy-btn .buy-btn {
    font-size: 1.6rem;
    color: #fff;
    width: 100%;
    font-weight: 500;
    padding: 1.4rem 0;
    box-shadow: 1px 1px 5px rgba(51,51,51,.4);
    border-radius: 4px;
    border: none;
    background: linear-gradient( to right, #4b84f7, #0f4dea);
}

#mall.detail .fixed-buy-btn .close-buy-btn{
    font-size: 1.6rem;
    color: #fff;
    width: 100%;
    font-weight: 500;
    padding: 1.4rem 0;
    box-shadow: 1px 1px 5px rgb(51 51 51 / 40%);
    border-radius: 4px;
    border: none;
    background: linear-gradient( to right, #999, #c7c7c7);
}

/* maill_detail : popup */

/* maill_nft_detail S */
#mall.detail .nft-item-thum {
	margin-bottom: 1rem;
    padding: 1.5rem;
    border-bottom: 7px solid #F5F5F5;
}

#mall.detail .nft-item-thum .thum-img {
    margin-bottom: 2rem;
    text-align: center;
    background: #F6F6F6;
}

#mall.detail .nft-item-thum .thum-img  img{
	height:22rem;
}

#mall.detail .nft-item-thum .thum-img  video{
	width:100%;
	height:22rem;
}

#mall.detail .nft-item-info .item-cate .progress-sticker{
	background:#666666;
    border-radius: 3px;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-right: 1rem;
}

#mall.detail .nft-item-info .item-cate .nft-sales{
    border-radius: 3px;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    color: #212121;
    font-weight: 500;
    line-height: 1.2rem;
    letter-spacing: 0.2px;
    margin-right: 1rem;
    background: #F4F4F4;
}

#mall.detail .nft-item-info .item-cate .nft-sales em{
    font-weight: bold;
}

#mall.detail .nft-item-info .item-goods-info{
	margin-top:2rem;
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.5rem;
}

#mall.detail .nft-item-info .item-contract-info{
    border-bottom: 1px solid #E1E1E1;
    padding-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
	letter-spacing: .03rem;
}

#mall.detail .nft-item-info .item-goods-info .item-nm{
    color: #222222;
    font-size: 2.6rem;
    font-weight: bold;
    letter-spacing: -1.8px;
    flex-basis: 46%;
}


#mall.detail .nft-item-info .item-goods-info .item-date{
    margin-top: 0.8rem;
	flex-basis: 54%;
}

#mall.detail .nft-item-info .item-goods-info .item-date-box{
    width: 35px;
    height: 35px;
    background: #F9F9F9;
    border-radius: 2px;
	text-align:center;
    display: inline-block;
}

#mall.detail .nft-item-info .item-goods-info .item-date-box .item-date-data{
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1rem;
}

#mall.detail .nft-item-info .item-goods-info .item-date-box .item-date-type{
    font-size: 0.7rem;
    font-weight: 350;
    line-height: 2rem;
    transform: translate(-5%, 0%) scale(.7);
}

#mall.detail .nft-item-info .item-goods-info .item-date-col{
    display: inline-block;
    height: 35px;
}

#mall.detail .nft-item-info .item-goods-info .item-date-col dd{
    vertical-align: middle;
    font-size: 2rem;
    color: #C4C4C4;
    transform: translate(-5%, -20%);	
}

#mall.detail .nft-item-info .item-goods-price{
	margin-top:1.5rem;
}

#mall.detail .nft-item-info .item-goods-price dl{
    display: flex;
    justify-content: space-between;	
	margin-bottom:2rem;
}

#mall.detail .nft-item-info .item-goods-price dd{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #666666;
}

#mall.detail .nft-item-info .item-goods-price dd p{
    font-size: 1rem;
    font-weight: bold;
    color: #999999;
    text-align: right;
    letter-spacing: 0.2px;
}

#mall.detail .nft-item-info .item-goods-price dd:last-child{
    font-size: 1.4rem;
    font-weight: bold;
	color:#222222;
}


#mall.detail .nft-item-info .item-goods-price dl.none-margin{
	margin-bottom:.5rem;
}

#mall.detail .add-nft-info{
	margin-top:1rem;
    border-bottom: 1px solid #AEAEAE;
}

#mall.detail .add-nft-info .creator-info-box{
    display: flex;
    justify-content: flex-start;	
}

#mall.detail .add-nft-info .creator-info-box .creator-info-profile{
	flex-basis:40%
}

#mall.detail .add-nft-info .creator-info-box .creator-info-profile ul{
	margin: 1rem 1rem 1rem 1.5rem;
    border-right: 1px solid #F5F5F5;
}

#mall.detail .add-nft-info .creator-info-box .creator-info-profile ul li{
	display:inline-block;
}

#mall.detail .add-nft-info .creator-info-box .creator-info-profile ul .creator-info-profile-img{
    width: 24px;
    margin-right: 0.5rem;
}

#mall.detail .add-nft-info .creator-info-box .creator-info-profile ul .creator-info-profile-img img{
	height:24px;
    border-radius: 50%
}

#mall.detail .add-nft-info .creator-info-box .creator-info-profile ul li p{
	font-size:1rem;
	font-weight:500;
	letter-spacing: 0.2px;
	color:#666666;
}

#mall.detail .add-nft-info .creator-info-box .creator-info-profile ul li .creator-info-name{
    font-size: 1.2rem;
    font-weight: bold;
	color:#222222;
}

#mall.detail .add-nft-info .creator-info-box .creator-info-edition{
	flex-basis:60%;
    position: relative;
}

#mall.detail .add-nft-info .creator-info-box .creator-info-edition ul li{
	font-size:1rem;
	font-weight:500;
	letter-spacing: 0.2px;
	color:#666666;
}

#mall.detail .add-nft-info .creator-info-box .creator-info-edition ul li .tooltip-ico{
	width:10px;
	height:10px;
	background:#aaa;
    vertical-align: middle;
    border-radius: 50%;
    margin-left: 0.5rem;
    transform: translate(0%, -8%);
    display: inline-block;
    cursor: pointer;
}

 #mypage .nft-goods-info .nft-ct-box .tooltip-ico{
 	width:15px;
	height:15px;
	background:#aaa;
    vertical-align: middle;
    border-radius: 50%;
    margin-left: 0.5rem;
    transform: translate(0%, -8%);
    display: inline-block;
    cursor: pointer;
 }

#mall.detail .add-nft-info .creator-info-box .creator-info-edition ul li .tooltip-ico em{
    color: #fff;
    font-weight: bold;
    transform: translate(44%, -15%) scale(0.8);
    display: inline-block;
}

#mypage .nft-goods-info .nft-ct-box .tooltip-ico em{
    color: #fff;
    font-weight: bold;
    transform: translate(60%, -10%) scale(1);
    display: inline-block;
}



#mall.detail .add-nft-info .nft-item-explan{
	margin:1.5rem;
    height: 5.5rem;
    overflow: auto;
}

#mall.detail .add-nft-info .nft-item-explan p{
	font-size:1.2rem;
	font-weight:400;
	letter-spacing: 0.2px;
	word-break:break-all;
	white-space:pre-line;
}



#mall.detail .p-dt-info .p-info-txt .nft-history-area .nft-edition-ttitle{
    font-size: 1.3rem;
    font-weight: bold;
    color: #666666;
    text-align: right;
    margin-bottom: 2rem;
	letter-spacing: 0.2px;
}

#mall.detail .p-dt-info .p-info-txt .nft-history-add-txt{
    text-align: right;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.2px;	
}

#mall.detail .fixed-buy-btn .nft-buy-btn {
    font-size: 1.6rem;
    color: #fff;
    width: 48%;
    font-weight: 500;
    padding: .5rem 0;
    box-shadow: 1px 1px 5px rgba(51,51,51,.4);
    border-radius: 4px;
    border: none;
    background: linear-gradient( to right, #4b84f7, #0f4dea);
}

#mall.detail .fixed-buy-btn .nft-buy-btn:first-child{
	margin-right:1rem;
}

.fixed-buy-btn .ot-popup .ot-nft-list{
    font-size: 0;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    border-top: 4px solid #C3C3C3;
    border-bottom: 4px solid #F5F5F5;
}

.fixed-buy-btn .ot-popup .ot-nft-list .ot-unit{
    display: inline-block;
    width: 100%;	
}


.fixed-buy-btn .ot-popup .ot-nft-list .ot-unit p span{
    display: inline-block;
    width: 60%;
    vertical-align: middle;
    font-size: 1.6rem;
	font-weight:500;
	letter-spacing: 0.2px;
    color: #222222;
}

.fixed-buy-btn .ot-popup .ot-nft-list .ot-unit p .edition-select{
    border-left: 1px solid #C3C3C3;
    height: 5rem;
    width: 40%;
    text-align: right;
}

.fixed-buy-btn .ot-popup .ot-nft-list .ot-unit p .edition-select select{
    font-size: 1.4rem;
    letter-spacing: 0.2px;
    font-weight: 800;
    width: 90%;
    padding: 0.5rem 1rem;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    border-radius: 4px;
    margin-top: 1rem;
    background: url(/wallet/extends/images/slide-down.png) no-repeat 98% 60%;
}

.fixed-buy-btn .ot-popup .ot-nft-list .ot-unit p .edition-select select option{
    font-size: 1.4rem;
    letter-spacing: 0.2px;
    font-weight: 800;
	color:#222222;
}


.fixed-buy-btn .ot-popup .ot-nft-list .ot-unit p .edition-select select option.sales-complete{
	color:#999999;
}

.fixed-buy-btn .ot-popup .ot-nft-list .ot-unit .token-auction-info{
	display:flex;
    justify-content: space-between;
	margin-top:1.5rem;
}

.fixed-buy-btn .ot-popup .ot-nft-list .ot-unit .token-auction-info .auction-col{
	font-size:1.3rem;
	width:auto;
}

.fixed-buy-btn .ot-popup .ot-nft-list .ot-unit .token-auction-info .auction-data{
	font-size:1.4rem;
	font-weight:bold;
	width:auto;
}
.fixed-buy-btn .ot-popup .ot-nft-list .ot-unit .token-auction-info .auction-data i{
	font-size:1.4rem;
	font-weight:bold;
}

.fixed-buy-btn .ot-popup .ot-nft-list .ot-unit .token-auction-info .auction-data em{
	display:block;
	font-size:1rem;
	color: #999999;
	letter-spacing: 0.2px;
    text-align: center;
}

.fixed-buy-btn .ot-popup .ot-price{
    border-bottom: 1px solid #c3c3c3;	
}

.fixed-buy-btn .ot-popup .ot-price .total-pr{
    font-size: 0;
    margin-bottom: 2rem;	
}


.fixed-buy-btn .ot-popup .ot-price .total-pr li:first-child{
    width: 12rem;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #222222;
}

.fixed-buy-btn .ot-popup .ot-price .total-pr li input[type=text]{
	width:100%;
    padding: 0.5rem 8rem 0.5rem 0.5rem;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    border-radius: 4px;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.2px;
    text-align: right;

}

.fixed-buy-btn .ot-popup .ot-price .total-pr li:last-child span{
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.2px;
    color: #222222;
    position: absolute;
    right: 1rem;
    top: 0.6rem;
}

.fixed-buy-btn .ot-popup .ot-price .total-pr .nft-coin-type select{
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.2px;
    color: #222222;
    border: none;
    padding: 0 2rem 0 0;
    background: url(/wallet/extends/images/slide-down.png) no-repeat 98% 60%;
}

.fixed-buy-btn .ot-popup .ot-price .total-pr .pr-item-block{
	display:block;
    width: 100%;
	text-align:left;
}

.fixed-buy-btn .ot-popup .ot-price .total-pr .pr-item-block input[type=date]{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #222222;
    padding: 0.25rem 1.5rem;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    border-radius: 2px;
    margin-top: 1rem;
}

.fixed-buy-btn .ot-popup .ot-price .total-pr .pr-item-block .date-bar{	
	font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.2px;
    color: #222222;
    position: static;
}



.fixed-buy-btn .ot-popup .ot-price .total-pr li:last-child .nft-coin-type-gray{
	color:#999999;
}

.fixed-buy-btn .ot-popup .ot-price .total-pr li:last-child em{
	display:block;
    font-size: 1rem;
    font-weight: 500;
    color: #999999;
}

.fixed-buy-btn .ot-popup .ot-price .total-pr .tot-price-col{
    vertical-align: top;
    margin-top: 0.5rem;	
}

.fixed-buy-btn .ot-popup .ot-bal{
    padding: 2rem 0;
    border-bottom: 1px solid #c3c3c3;
}

.fixed-buy-btn .ot-popup .ot-bal .bal-pr{
    display: flex;
    justify-content: space-between;	
}

.fixed-buy-btn .ot-popup .ot-bal li{
	font-size:1.3rem;
	font-weight:bold;
	letter-spacing: 0.2px;
	color:#222222;
}

.fixed-buy-btn .ot-popup .ot-bal li:last-child{
	font-size:1.4rem;
}


.fixed-buy-btn .ot-popup .ot-agree{
    padding: 2.5rem 0 5rem;
}

.fixed-buy-btn .ot-popup .ot-agree p input[type=checkbox]{
    vertical-align: middle;
}

.fixed-buy-btn .ot-popup .ot-agree p label{
    font-size: 1.3rem;
    letter-spacing: 0.2px;
    color: #222222;
    margin-left: 0.5rem;
    line-height: 3rem;
    vertical-align: middle;
}

.fixed-buy-btn .ot-popup .ot-agree p label em{
	cursor:pointer;
    font-weight: bold;	
}

.agree_pop_layer{
    position: absolute;
	display:none;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(123, 123, 123,0.74);
    overflow-x: hidden;
    overflow-y: auto;	
}

.agree_pop_layer .agree-content-fix, .agree_pop_layer .agree-content-auction{
    position: absolute;
    width: 95%;	
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	padding:2rem;
}

.agree_pop_layer .agree-content-fix p, .agree_pop_layer .agree-content-auction p{
	font-size:1.4rem;
	color: #000000;
    line-height: 2rem;
    margin-bottom: 1.5rem;
}

.agree_pop_layer .agree-content-auction{
	display:none;
}


/* maill_nft_detail E */

/* maill_nft_wish S */

#wish{
    height: calc(100% - 6.5rem);
    overflow-y: auto;
    padding: 2rem 0;	
}

#wish .sel-area{
    padding: 0 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid #ddd;
    font-size: 0;	
}

#wish .sel-area .all-sel{
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 5rem);
    padding-right: 1rem;	
}


#wish .sel-area .all-sel input[type="checkbox"]+label::before {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
}
#wish .sel-area .all-sel p {
    font-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
}
#wish .sel-area .all-sel .item-unit span{
    font-weight: 500;
}
#wish .sel-area .delete-btn {
    display: inline-block;
    text-align: right;
    vertical-align: middle;
    width: 5rem;
}
#wish .sel-area .delete-btn input {
    font-size: 1.4rem;
    padding: .3rem 0;
    width: 100%;
    border: 1px solid #ccc;
    background: #e6e7e8;
}
#wish .in-wish {
    background: #fff;
    margin-bottom: 1rem;
}
#wish .in-wish .item-box {
    border-bottom: 8px solid #ddd;
    font-size: 0;
    padding: 1.5rem;
}

#wish .in-wish .item-box .ch-box {
    display: inline-block;
    vertical-align: top;
    width: 2rem; height: 2rem;
}
#wish input[type="checkbox"] {
    display: none;
}
#wish input[type="checkbox"]+label::before {
    content: "";
    display: inline-block;
    width: 2rem; height: 2rem;
    border: 1px solid #ccc;
    background: #fff;
}
#wish input[type="checkbox"]:checked+label::before {
    background-image: url("/wallet/extends/images/checked.png");
    width: 2rem; height: 2rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #121296;
}
#wish .in-wish .item-box .item-img {
    display: inline-block;
    vertical-align: top;
    width: 9rem;
    background: #E5E5E5;
    text-align: center;
    margin-left: 1rem;
    position: relative;
}

#wish .in-wish .item-box .item-img img{
	height:6.6rem;
}


#wish .in-wish .item-box .item-info {
    display: inline-block;
    vertical-align: top;
    padding: .5rem 0 .5rem 1.5rem;
    width: calc(100% - 12rem);
}
#wish .in-wish .item-box .item-info .item-nm {
    font-size: 1.3rem;
	font-weight:500;
    letter-spacing: 0.2px;
    color: #212121;
}

#wish .in-wish .item-box .item-price{
    display: block;
    border-top: 1px solid #E1E1E1;	
    margin: 1rem 0 0 3rem;
}

#wish .in-wish .item-box .item-price .item-price-box{ 
	display: flex;justify-content: space-between;
    padding-top: 0.5rem;
}

#wish .in-wish .item-box .item-price .item-price-box .goods-price-title{
	font-size: 1.3rem;letter-spacing: 0.2px;color: #666666;font-weight: 500;	
}

#wish .in-wish .item-box .item-price .item-price-box .goods-price{
	font-size: 1.4rem;font-weight: bold;letter-spacing: 0.2px;color: #222;
	text-align:right;
}

#wish .in-wish .item-box .item-price .item-price-box .goods-price em{
	display:block;
	font-size:1rem;font-weight:500;letter-spacing: 0.2px;color:#999999;
}

#wish .in-wish .item-box .item-price .item-date-box{
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    font-weight: 500;
    color: #212121;
    text-align: right;
    margin-top: 2rem;	
}

#wish .in-wish .item_non{
    padding: 2rem;
    text-align: center;	
}
/* maill_nft_wish E */

/* my_nft_detail S */
#mypage.nft-detail .nft-item-thum{
    margin-bottom: 1rem;
}

#mypage.nft-detail .nft-item-thum .thum-img {
    margin-bottom: 2rem;
    text-align: center;
    background: #F6F6F6;
}

#mypage.nft-detail .nft-item-thum .thum-img  video{
	height:22rem;
}

#mypage.nft-detail .nft-item-thum .thum-img  img{
	height:22rem;
}

#mypage.nft-detail .nft-item-thum .nft-item-info{
    border-top: 2px solid #6C9EFF;
    border-bottom: 2px solid #6C9EFF;
    padding: 2rem 0;
}

#mypage.nft-detail .nft-item-info .item-goods-price dl{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2rem;	
}

#mypage.nft-detail .nft-item-info .item-goods-price dd{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #666666;	
}

#mypage.nft-detail .nft-item-info .item-goods-price dd:first-child{
    flex-basis: 40%;	
}

#mypage.nft-detail .nft-item-info .item-goods-price dd:last-child{
    color: #222222;
}

#mypage.nft-detail .p-dt-info .p-info-txt{
    padding: 1.5rem;
}

#mypage.nft-detail .p-dt-info .p-info-txt .nft-history-area{
	width:100%;
}

#mypage.nft-detail .p-dt-info .p-info-txt .nft-history-area h3{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.2px;
	color:#222222;
}


#mypage.nft-detail .p-dt-info .p-info-txt .nft-history-area .history-col-title{
    display: flex;
    justify-content: space-between;
	font-weight:bold;
    border-bottom: 1px solid #AEAEAE;
    line-height: 3rem;
}

#mypage.nft-detail .p-dt-info .p-info-txt .nft-history-area .history-col-title li{
	font-size:1.2rem;
	font-weight:500;
	letter-spacing: 0.2px;
	color:#666666;
}

#mypage.nft-detail .p-dt-info .p-info-txt .nft-history-area .history-col-title li:first-child{
    flex-basis: 30%;
}
 
#mypage.nft-detail .p-dt-info .p-info-txt .nft-history-area .history-col-data{
    display: flex;
    justify-content: space-between;
}

#mypage.nft-detail .p-dt-info .p-info-txt .nft-history-area .recent-nft-history{
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

#mypage.nft-detail .p-dt-info .p-info-txt .nft-history-area .history-col-data li{
	line-height:3rem;
}

#mypage.nft-detail .p-dt-info .p-info-txt .nft-history-area .history-col-data li:first-child{
    flex-basis: 30%;
}


#mypage.nft-detail .p-dt-info .p-info-txt .nft-history-area .history-col-data .non-data{
    flex-basis: 100% !important;
    text-align: center;
    background-image: url("/wallet/extends/images/none_file_ico.png");
    background-repeat: repeat;
    background-repeat: no-repeat;
    background-position: top;
    letter-spacing: 0.2px;
    font-weight: bold;
    font-size: 1.2rem;
    color: #C1C1C1;
    padding: 6rem 0 3rem 0;
    margin-top: 5rem;
}
}

#mypage.nft-detail .p-dt-info .p-info-txt p {
    font-size: 1.4rem;
    color: #4b4b4b;
    padding-bottom: 2rem;
}

#mypage.nft-detail .fixed-buy-btn {
    position: fixed;
    bottom: 8.5rem; left: 0;
    width: 100%;
    padding: 0 1.5rem;
}
#mypage.nft-detail .fixed-buy-btn .buy-btn {
    font-size: 1.6rem;
    color: #fff;
    width: 100%;
    font-weight: 500;
    padding: 1.4rem 0;
    box-shadow: 1px 1px 5px rgba(51,51,51,.4);
    border-radius: 4px;
    border: none;
    background: linear-gradient( to right, #4b84f7, #0f4dea);
}

#mypage.nft-detail .fixed-buy-btn .nft-buy-btn, #mypage.nft-detail .fixed-buy-btn .none-nft-buy-btn {
    font-size: 1.6rem;
    color: #fff;
    width: 48%;
    font-weight: 500;
    padding: 1.3rem 0;
    box-shadow: 1px 1px 5px rgba(51,51,51,.4);
    border-radius: 4px;
    border: 1px solid #6C9EFF;
    background: linear-gradient( to right, #4b84f7, #0f4dea);
}

#mypage.nft-detail .fixed-buy-btn .nft-buy-btn:first-child{
    background: #FFFFFF;
    margin-right: 1rem;
    color: #6C9EFF;
	margin-right:1rem;
}


#mypage.nft-detail .fixed-buy-btn .ot-popup {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 1.5rem;
    transition: .5s ease;
    max-height: 38rem;
    overflow-y: auto;
}

#mypage.nft-detail .fixed-buy-btn .ot-popup .bg{
    background: #fff;
    border-radius: 2rem;
    box-shadow: 1px 1px 5px rgb(51 51 51 / 40%);
    padding: 2rem 1.5rem;
}

#mypage.nft-detail .fixed-buy-btn .ot-popup.hide {
    max-height: 0;
    overflow: hidden;
}
#mypage.nft-detail .fixed-buy-btn .ot-popup .bg {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 1px 1px 5px rgba(51,51,51,.4);
    padding: 2rem 1.5rem;
}


#mypage.nft-detail .fixed-buy-btn .ot-popup .ot-price{
	border-bottom:none;
    padding-bottom: 3rem;
}

/* my_nft_detail E */


#mall.detail .fixed-buy-btn .ot-popup {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 1.5rem;
    transition: .5s ease;
    max-height: 38rem;
    overflow-y: auto;
}
#mall.detail .fixed-buy-btn .ot-popup.hide {
    max-height: 0;
    overflow: hidden;
}
#mall.detail .fixed-buy-btn .ot-popup .bg {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 1px 1px 5px rgba(51,51,51,.4);
    padding: 2rem 1.5rem;
}

.fixed-buy-btn .ot-popup .hide-btn {
    text-align: center;
    margin-bottom: 2rem;
}
.fixed-buy-btn .ot-popup .ot-sel p {
    font-size: 1.5rem;
    padding: 0 0 .75rem .75rem;
}
.fixed-buy-btn .ot-popup .ot-sel select {
    width: 100%;
    font-size: 1.4rem;
    padding: 1rem;
    border: 1px solid #ddd;
    color: #666;
}
.fixed-buy-btn .ot-popup .ot-list {
    font-size: 0;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.fixed-buy-btn .ot-popup .ot-list .ot-unit  {
    display: inline-block;
    width: calc(100% - 14rem);
}
.fixed-buy-btn .ot-popup .ot-list .ot-unit p {
    font-size: 1.3rem;
    color: #4b4b4b;
    padding: 0 0 1rem .75rem;
}
.fixed-buy-btn .ot-popup .ot-list .ot-unit .unit-box {
    border: 1px solid #ddd;
    display: inline-block;
    border-radius: .6rem;
}
.fixed-buy-btn .ot-popup .ot-list .ot-unit .unit-box button {
    background: #ddd;
    vertical-align: middle;
    width: 2.8rem; height: 2.8rem;
    border: none;
    position: relative;
}

.fixed-buy-btn .ot-popup .ot-list .ot-unit .unit-box .inp_opt {
    vertical-align: middle;
    text-align: center;
    border: none;
    width: 3.5rem;
}

.fixed-buy-btn .ot-popup .ot-list .ot-unit .unit-box .minus-btn {
    border-radius: .5rem 0 0 .5rem;
}
.fixed-buy-btn .ot-popup .ot-list .ot-unit .unit-box .plus-btn {
    border-radius: 0 .5rem .5rem 0;
}
.fixed-buy-btn .ot-popup .ot-unit .unit-box button img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.fixed-buy-btn .ot-popup .ot-list .ot-unit .unit-box span {
    font-size: 1.4rem;
    padding: 0 1.5rem;
    display: inline-block;
    vertical-align: middle;
}
.fixed-buy-btn .ot-popup .ot-list .unit-pr {
    display: inline-block;
    width: 14rem;
    text-align: right;
}
.fixed-buy-btn .ot-popup .ot-list .unit-pr p {
    font-size: 1.6rem;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
}

.fixed-buy-btn .ot-popup .ot-list .unit-pr p .bid-input{
    width: 9rem;
    vertical-align: middle;
    text-align: center;
    border: solid 1px #ddd;
    height: 2.8rem;	
}

.fixed-buy-btn .ot-popup .ot-list .unit-pr button {
    position: relative;
    width: 2.5rem; height: 2.5rem;
    border: 1px solid #999;
    margin-left: .5rem;
}
.fixed-buy-btn .ot-popup .ot-list .unit-pr button img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%)
}
.fixed-buy-btn .ot-popup .total-pr {
    font-size: 0;
    margin-bottom: 2rem;
}
.fixed-buy-btn .ot-popup .total-pr li{
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 300;
}
.fixed-buy-btn .ot-popup .total-pr li:first-child {
    width: 12rem;
}
.fixed-buy-btn .ot-popup .total-pr li:last-child{
    width: calc(100% - 12rem);
    text-align: right;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
}
.fixed-buy-btn .ot-popup .btn-group {
    display: flex;
}
.fixed-buy-btn .ot-popup .btn-group input {
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 2rem;
    padding: 1.3rem;
}
.fixed-buy-btn .ot-popup .btn-group .pop-cart {
    flex: 2;
    border: 2px solid transparent;
    background: linear-gradient(to right, #fff, #fff),linear-gradient(to right,#4b84f7, #0f4dea);
    color: #0f4dea;
    background-clip: padding-box, border-box;
    background-origin: border-box;
    background-size: 100% 100%;
    margin-right: 1rem;
}
.fixed-buy-btn .ot-popup .btn-group .pop-buy {
    flex: 3;
    border: 2px solid transparent;
    background: linear-gradient(to right, #4b84f7, #0f4dea),linear-gradient(to right,#4b84f7, #0f4dea);
    color: #fff;
    background-clip: padding-box, border-box;
    background-origin: border-box;
    background-size: 100% 100%;
} 
/* mypgae */
#mypage {
    height: calc(100% - 27.5rem);
    overflow-y: auto;
    overflow-x: hidden;
}
#mypage .mp-menu {
    position: absolute;
    top: 27rem; left: 0;
    padding: 0 1.5rem;
    width: 100%;
    height: 65rem;
}
#mypage .mp-menu .setting {
    background: #fff;
    border-radius: 1.2rem;
    padding: 0 1.5rem;
    box-shadow: 4px 4px 4px rgba(208,210,211,.4),-4px -4px 8px rgba(208,210,211,.4);
}

#mypage .mp-menu .setting .tab-menu {
    padding: 0 1rem;
}
#mypage .mp-menu .setting .tab-menu ul {
    display: flex;
    border-bottom: 1px solid #ddd;
}
#mypage .mp-menu .setting .tab-menu li {
    flex: 1;
    text-align: center;
    font-size: 1.6rem;
}

#mypage .mp-menu .setting .tab-menu li a {
    color: #888;
    padding: 1.3rem 0;
    display: inline-block;
}
#mypage .mp-menu .setting .tab-menu li.on {
    border-bottom: 2px solid #0f4dea;
}
#mypage .mp-menu .setting .tab-menu li.on a {
    color: #0f4dea;
    font-weight: 500;
}
#mypage .mp-menu .setting .head p{
    font-size: 1.6rem;
    position: relative;
    padding: 1.5rem 1rem;
    font-weight: 500;
    border-bottom: 1px solid #0f4dea;
}
#mypage .mp-menu .setting .head p::after{
    content: "";
    display: inline-block;
    width: 2.4rem; height: 2.4rem;
    position: absolute;
    top: 50%; right: 1.5rem;
    transform: translateY(-50%);
    background-image: url("/wallet/extends/images/menu_icon.png");
}
#mypage .mp-menu .set-mu input[type="button"]{
    width: 100%;
    padding: 1rem 0;
    border-radius: 1.8rem;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    background: #081b60;
}
#mypage .mp-menu .set-mu {
    padding: 1.5rem 1rem;
    overflow-y: auto;
}
#mypage .mp-menu .set-mu li {
    font-size: 1.5rem;
    padding: 1rem;
    /* border: 1px solid #ddd; */
    margin: .5rem 0;
}
#mypage .mp-menu .set-mu li::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 12px; height: 12px;
    border-radius: 50%;
    margin-right: 10px;
    border: 3px solid #0f4dea;
    background: #fff;
}
#mypage .mp-menu .set-mu li:hover {
    background: rgba(15,77,234,.2);
    /* border: 1px solid rgba(15,77,234,.2); */
}
#mypage .mp-menu .set-mu li a {
    color: #4b4b4b;
}
#mypage .mp-menu .set-mu li:hover a {
    color: #0f4dea;
    font-weight: 500;
}

/*메뉴 구분 칩*/
 .mu-chips{
    margin-top:20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.mu-chips li{
    width:48%;
    text-align: center;
    padding:6px 0;
    font-size:1.6rem;
    background-color: #F4F4F4;
    border-radius: 4px;
    margin:4px 1%;
}

.mu-chips li.last{width:98%}
.mu-chips li.active{
    background: rgba(15,77,234,.2);
}
.mu-chips li.active a{
    color: #0f4dea;
    font-weight: 500;
}


@media screen and (min-device-height:1024px) {
    #mypage .mp-menu .set-mu {
        height: 35rem;
    }
}
@media (min-device-height:480px) and (max-device-height:1023px) {
    #mypage .mp-menu .set-mu {
        height: 22rem;
    }
}
#mypage .mp-menu .set-mu li {
    font-size: 1.5rem;
    padding: .75rem 0;
}
#mypage .mp-menu .set-mu li a {
    color: #4b4b4b;
}
/* mypage : coin_payment */

/* 공과금 납부 S */
.tab-area{
	width: 100%;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 4rem;
}

.tab-area ul{
	display:flex;
    justify-content: space-between;
	padding:1rem;
}

.tab-area ul li{
    font-size: 1.4rem;
    color: #5F656E;
    position: relative;
    background: rgba(229, 229, 229, 0.5);
    padding: 0.9rem 1.1rem;
    border-radius: 20px;
}

.tab-area ul li.on{
	background:#E6ECFE;
}

.tab-area ul li.on a{
	color: #1E5EFF;
	font-weight:bold;
}
/*
.tab-area ul li a::after{
    content: "|";
    position: absolute;
    margin-left: 1rem;
    color: rgba(95, 101, 110, 0.2);
    font-size: 1.2rem;
    margin-top: .3rem;
}
*/

.tab-area ul li:last-child a::after{
    content: "";
}

.select-area{
    background: #E6ECFE;
    margin: 0 1rem 8rem;
    border-radius: 10px;
    padding-bottom: .5rem;
}

.select-area h1{
    font-size: 1.6rem;
    color: #1E5EFF;
    font-weight: bold;
    padding: 2rem 2rem 1rem;
}

.select-area ul li{
    position: relative;
    height: 6rem;
    font-size: 1.5rem;
    line-height: 6rem;
    border-bottom: 1px solid #E5E5E5;
    background: #fff;
    padding-left: 1.2rem;
    margin: 1rem;
    border-radius: 10px;
	color:#5F656E;
	font-weight:bold;
}


.select-area ul li:last-child{
    border-bottom: none;
}

.select-area ul li img{
    width: 2rem;
    position: absolute;
    right: 2rem;
    top: 2.1rem;
}

.select-area ul li.on img{
    width: 1.5rem;
}

.select-area ul li .bank-reg-btn{
    position: absolute;
    right: 1rem;
    top: 1.6rem;
    border: solid 1px #1E5EFF;
    border-radius: 7px;
    padding: .5rem 1rem;
    font-weight: bold;
    color: #1E5EFF;
    font-size: 1.2rem;
}

.account-form{
    width: 100%;	
	margin-top:5rem;
}

.account-form  .form-area .ct-box{
    padding: 2rem 1.5rem;
    background: #fff;
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 1px solid #E7E7E9;
    margin: 2rem 2rem;
}

.account-form .form-area h1{
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #333333;	
    text-align: center;
}

.account-form  .form-area .ct-box .inp-box p{
	font-size:1.6rem;
	color:#5F656E;
	font-weight:bold;
	margin-bottom:1.5rem;
}

.account-form  .form-area .ct-box select{
    flex: 1;
    padding: 1rem;
    font-size: 1.6rem;
    border: 1px solid #ddd;
    margin-bottom: 3rem;
	color:#5F656E;
}

.account-form  .form-area .ct-box .pay-input{
    padding: 1rem;
    font-size: 1.6rem;
    border: none;
    border-bottom: 1px solid #5F656E;
}

.account-form .cm-btn{
	text-align:center;
}

.account-form .cm-btn input{
    width: 90%;	
    margin-top: 1.5rem;
    border-radius: 10px;
}

.account-form .confirm-box{
    margin: 3rem 0 1rem;
}
.account-form .confirm-box .inp-box{
	text-align:center;
}


.account-form .confirm-box input{
    padding: 1.5rem 1.5rem;
    border: 1px solid rgba(68, 75, 85, 0.5);
	color:rgba(95, 101, 110, 0.5);
	font-size: 1.8rem;
	font-weight:bold;
}



/* 공과금 납부 E */

#mypage.depth2 {
    background: rgba(166,187,244,.1);
    height: calc(100% - 27.2rem);
    overflow-y: auto;
}

#mypage.depth2.util {
    background: transparent;
}

#mypage.depth2.samsung-pay-content{
    height: calc(100% - 17rem);
    padding: 1rem 0;
}

#mypage .pay-list {
    padding: 3rem 0 9rem;
}
#mypage .pay-list .ct-box {
    margin-bottom: 1.5rem;
}
#mypage .pay-list .ct-box:last-child {
    margin-bottom: 0;
}
#mypage .pay-list .ct-box .head {
    padding: 0 0 1rem .75rem;
    border-bottom: 1px solid #121296;
}
#mypage .pay-list .ct-box .head ul li{
    display: inline-block;
    font-size: 1.4rem;
}
#mypage .pay-list .ct-box .head ul li span {
    margin: 0 .25rem;
}
#mypage .pay-list .ct-box .pay-info {
    padding: 1rem .5rem 0 .5rem;
}
#mypage .pay-list .ct-box .pay-info ul {
    font-size: 0;
}
#mypage .pay-list .ct-box .pay-info ul li{
    display: inline-block;
    font-size: 1.4rem;
    padding: .5rem;
    color: #4b4b4b;
}
#mypage .pay-list .ct-box .pay-info ul li:first-child {
    width: 8rem;
} 
#mypage .pay-list .ct-box .pay-info ul li:last-child {
    width: calc(100% - 8rem);
    font-weight: 600;
}

#mypage .pay-list .ct-box .pay-info ul li .href-target{
    text-decoration: underline;
    color: #2196f3;
}

#mypage .pay-list .ct-box .pay-info .coin-Buy {
    color: #3d75f2;
}
#mypage .pay-list .ct-box .pay-info .coin-Sell {
    color: #ef264d;
}

#mypage .pay-list .ct-box .step-item-box{
	text-align:center;
	margin-top:1rem;
}

#mypage .pay-list .ct-box .step-item-box .item-btn{
    border: 1px solid #6C9EFF;
    box-sizing: border-box;
    border-radius: 4px;
    background: #FFFFFF;
    padding: 0.5rem 3rem;
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 0.2px;
	color: #6C9EFF;
	margin:0 .5rem;
}

#mypage .pay-list .ct-box .step-item-box .item-btn:last-child{
	background: #6C9EFF;	
	color: #FFFFFF;
}

#mypage .more-btn {
    text-align: center;
    margin-bottom: 5rem;
}
#mypage .more-btn input {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    padding: 1.3rem 4rem;
    background: linear-gradient(to right, #4b84f7, #114fea);
    border: none;
    border-radius: 2.2rem;
}

/* 공과금 납부내역 S*/
#mypage .pay-list .ct-box.util{
    border-radius: 1.2rem;	
	padding:0;
}

#mypage .pay-list .ct-box.util .head{
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #E5E5E5;
    background: rgba(229, 229, 229, 0.2);
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;	
}

#mypage .pay-list .ct-box.util .head li{margin:.5rem 0;}

#mypage .pay-list .ct-box.util .head li .ct-box-title{
    font-size: 1.5rem;
    color: #333333;
    font-weight: bold;
}

#mypage .pay-list .ct-box.util .head li .ct-box-text{
    font-size: 1.5rem;
    color: #333333;
    font-weight: bold;
    margin-left: 3rem;
}

#mypage .pay-list .ct-box.util .pay-info{
	padding:1rem 1.5rem;
}

#mypage .pay-list .ct-box.util .pay-info ul li{
	display:block;
    font-size: 1.5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#mypage .pay-list .ct-box.util .pay-info ul li:first-child{
	width:auto;
}

#mypage .pay-list .ct-box.util .pay-info li .ct-box-title{
    font-size: 1.5rem;
    color: #333333;
    font-weight: bold;
    width: 8.5rem;
    display: inline-block;
}


#mypage .pay-list .ct-box.util .pay-info li .ct-box-text{
    font-size: 1.5rem;
    color: #333333;
}

#mypage .pay-list .ct-box.util .pay-info li .ct-box-text.hash{
	font-size:.8rem;
}


#mypage .pay-list .ct-box.util .pay-info li .cancel-btn{
    padding: .5rem 5rem;
    font-size: 1.4rem;
    margin: 0 0.5rem;
    background: #4b84f7;
    border: 1px solid #4b84f7;
    color: #fff;
}

#mypage .pay-list .ct-box.util .pay-info li.cancel{
	width:100%;
	text-align:center;
}


/* 공과금 납부내역 E*/


/* 공과금 무통장 입금 S */
#mypage .tab-menu.util{
	width:100%;
}

#mypage .tab-menu.util ul{
    display: flex;
    justify-content: space-around;
    margin: 0 -0.75rem;
}

#mypage .tab-menu.util ul li{
    font-size: 1.6rem;
    color: #5F656E;
    background: #E6ECFE;
    width: 50%;
    text-align: center;
    padding: 1.5rem;
}

#mypage .tab-menu.util ul li.on{
    background: #002D9C;
}

#mypage .tab-menu.util ul li a{
	font-weight:bold;
}

#mypage .tab-menu.util ul li.on a{
	color:#fff;
}

#mypage .tab-menu.util ul li:first-child{
	border-top-left-radius:10px;
	border-bottom-left-radius:10px;
}

#mypage .tab-menu.util ul li:last-child{
	border-top-right-radius:10px;
	border-bottom-right-radius:10px;
}

#mypage .tab-menu.util ul li.on:first-child{
	border-top-right-radius:10px;
	border-bottom-right-radius:10px;
    margin-right: -2rem;
    z-index: 10;
}

#mypage .tab-menu.util ul li.on:last-child{
	border-top-left-radius:10px;
	border-bottom-left-radius:10px;
    margin-left: -2rem;
    z-index: 10;
}

#mypage .buy-form.util{
    padding: 0 0 8rem 0;
}

#mypage .buy-form.util .form-area .ct-box p{
	padding:0;
}

#mypage .buy-form.util .form-area .ct-box p.add-text{
    font-size: 1.4rem;
}

#mypage .buy-form.util .form-area .ct-box select{
    width: 100%;
    flex: 1;
    padding: 1rem;
    font-size: 1.4rem;
    border: 1px solid #ddd;
}

#mypage .buy-form.util .form-area .ct-box .bank-text span{
	font-size:1.6rem;
	color:#1E5EFF;
	font-weight:bold;
}

#mypage .buy-form.util .form-area .ct-box .bank-text .bank-title{
	display:inline-block;
	width:7rem;
}

#mypage .buy-form.util .form-area .ct-box .bank-text .card-title{
	display:inline-block;
}

#mypage .buy-form.util .form-area .ct-box .inp-box.mgt{
	margin-top: 2rem;
}

#mypage .buy-form.util .form-area .ct-box .inp-box.mgt input[type=text]{
    font-size: 1.6rem;
	font-weight:bold;
	padding:2rem 5.5rem 2rem 1.5rem;
	color:rgba(95, 101, 110, 0.5);
	text-align:center;
}
#mypage .buy-form.util .form-area .ct-box .inp-box #copy-account{
    width: 5rem;
    height: 5rem;
    background: #E6ECFE;
    text-align: center;
    line-height: 5rem;
    border-radius: 10px;
    font-size: 1.6rem;
    font-weight: bold;	
}

#mypage .buy-form.util .form-area .ct-box .guide{
    color: red;	
    font-size: 1.4rem;
    font-weight: bold;	
}


#mypage .buy-form.util .ct-box .payment-type{
    display: flex;
    margin: 10px 0;
}

#mypage .buy-form.util .ct-box .payment-type input{
    flex: 1;
    padding: 1rem;
    font-size: 1.4rem;
    border: 1px solid #ddd;
    color: #999;
    background: #fff;
    margin: 0 0.5rem;
}
#mypage .buy-form.util .form-area .ct-box .card-text{
	margin-top:3rem;
}

#mypage .buy-form.util .ct-box .payment-type input.on {
    background: #4b84f7;
    border: 1px solid #4b84f7;
    color: #fff;
}

/* 공과금 무통장 입금 E */

/* mypage : product-payment */
#mypage .product-pay .ct-box .head ul li {
    margin: 0 .35rem !important;
}
#mypage .product-pay .ct-box .head ul .order-num {
    font-weight: 500;
}
#mypage .product-pay .ct-box .pay-info li:first-child {
    font-weight: 500 !important;
}
#mypage .product-pay .ct-box .pay-info li:last-child{
    font-weight: 400 !important;
}
/* mypage : tos common */
#mypage.tos {
    padding: 2rem 0;
    height: calc(100% - 18.5rem);
}
/* tos common */
.cm-tos-box {
    background: #fff;
    padding: 1.5rem;
}
.cm-tos-box p {
    font-size: 1.3rem;
    padding-bottom: 1rem;
    color: #333;
    font-weight: 500;
}
.cm-tos-box ul li {
    font-size: 1.3rem;
    color: #4b4b4b;
}
/* coin category common */
.coin-cate-mu {
    background: #fff;
    border: 2px solid #080c5e;
    border-radius: 1.2rem;
    padding: 1.5rem;
    z-index: 99;
    position: relative;
}
.coin-cate-mu .head p {
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
}

.coin-cate-mu .head p .sel-balance-area{
    float: right;
    color: #000;
    margin-right: 4.5rem;
    font-size: 1.4rem;
    line-height: 2.75rem;
}


.coin-cate-mu .head p::after {
    content: "";
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    background-image: url("/wallet/extends/images/cate_icon.png");
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}
.coin-cate-mu .coin-list {
    display: none;
    padding-top: 1.5rem;
}

.coin-cate-mu .coin-list li {
    font-size: 1.5rem;
    color: #4b4b4b;
    font-weight: 300;
    padding: .5rem 0;
}

.coin-cate-mu .coin-list li.on {
    color: #0f4dea;
    font-weight: 500;
}

.coin-cate-mu .coin-list li .user-balance-area{
    float: right;
    color: #000;
}

/* mypage :buy_coin */
#mypage .buy-form {
    padding: 2rem 0 5rem 0;
}

#mypage .buy-form.account-register-form.no{
	display:none;
}

#mypage .buy-form.pay-send-form.no{
	display:none;
}


#mypage .buy-form .form-area {
    padding: 2rem 0;
}
#mypage .buy-form .form-area .ct-box {
    margin-bottom: 2rem;
}
#mypage .buy-form .form-area .ct-box p {
    font-size: 1.6rem;
    font-weight: 500;
    padding-bottom: 1rem;
}
#mypage .buy-form .form-area .ct-box .inp-box {
    position: relative;
	margin:.5rem 0;
}
#mypage .buy-form .form-area .ct-box .inp-box input {
    padding: 1rem 5.5rem 1rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: .6rem;
    font-size: 1.4rem;
}

#mypage .buy-form .form-area .ct-box .inp-box input.pay-input {
	padding:1rem;
}

#mypage .buy-form .form-area .ct-box .inp-box span {
    position: absolute;
    top: 50%; right: 1.5rem;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: #999;
}

#mypage .buy-form  .cm-btn{
	text-align:center;
}

/* 공과금 납부 신청 S */
#mypage .buy-form .form-area .ct-box .buy-rate{
	font-size:1.6rem; 
	color:rgba(255, 0, 9, 0.5);
	font-weight:bold;
}

#mypage .buy-form .form-area .ct-box .buy-rate-info{
	font-size:1.6rem; 
	color:#333;
	font-weight:bold;
}

#mypage .buy-form .form-area .ct-box .inp-box-comment{
	font-size:1.2rem;
	color:rgba(255, 0, 9, 0.5);
}

#mypage .buy-form .form-area .ct-box .inp-box-comment .mgr-line{
    margin-left: .9rem;
}

#mypage .buy-form .form-area .ct-box .inp-box-comment.flex{
	display:flex;
    justify-content: space-between;
}

#mypage .buy-form.util .form-area .ct-box .inp-box.agree {
	margin-top:3rem;
}


#mypage .buy-form.util .form-area .ct-box .inp-box.agree .agree_check{
    width: 2rem;
    height: 2rem;
    padding: 0;
    border-radius: 0px;
    vertical-align: top;
}

#mypage .buy-form.util .form-area .ct-box .inp-box.agree .agree-text{
    position: unset;
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    margin-left: 1rem;
}


#mypage .buy-form.util .form-area .ct-box .inp-box.agree .agree-info{
    background: rgba(229, 229, 229, 0.5);
    padding: 1.5rem;
    margin: 2rem 0 0;
    height: 16rem;
    overflow-y: auto;
}

#mypage .buy-form.util .form-area .ct-box .inp-box.agree .agree-info ul li{
    margin: 1rem 0;
    font-size: 1.2rem;
}

#mypage .buy-form.util .form-area .ct-box .inp-box.agree .agree-info ul li p{ 
    color: #FF0009;
    font-size: 1.1rem;
    margin: .5rem 0 0 1rem;
}

/* 공과금 납부 신청 E */



/* mypage : edit-info */
#mypage.edit-info {
    height: calc(100% - 20.4rem);
}
#mypage .cm-user-info {
    padding: 2rem 0;
}
#mypage .cm-user-info .cm-btn {
    margin: 3rem 0;
}
.cm-user-info .ct-box {
    margin-bottom: 2rem;
}
.cm-user-info .ct-box p {
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 1rem;
}
.cm-user-info .ct-box .inp-box {
    position: relative;
}
.cm-user-info .ct-box .inp-box input {
    padding: 1rem 5rem 1rem 1.5rem;
    font-size: 1.4rem;
    border: 1px solid #ddd;
    border-radius: .6rem;
}
.cm-user-info .ct-box .inp-box .edit-btn {
    width: 1.8rem; height: 1.8rem;
    position: absolute;
    top: 50%; right: 1.5rem;
    transform: translateY(-50%);
}
/* mypage : conversion */
#mypage .conv-form {
    padding: 2rem 0;
}
#mypage .conv-form .form-area{
    padding: 2rem 0;
}
#mypage .conv-form .form-area .ct-box {
    margin-bottom: 2rem;
}
#mypage .conv-form .form-area .ct-box p{
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 1rem;
}
#mypage .conv-form .form-area .ct-box .inp-box {
    position: relative;
}
#mypage .conv-form .form-area .ct-box input {
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: .6rem;
    font-size: 1.4rem;
}
#mypage .conv-form .form-area .conv-unit .inp-box input {
    padding: 1rem 4.5rem 1rem 1.5rem;
}
#mypage .conv-form .form-area .ct-box .inp-box .edit-btn {
    position: absolute;
    top: 50%; right: 1.5rem;
    transform: translateY(-50%);
}
#mypage .conv-form .form-area .coin-conv {
    margin-top: 1rem;
    position: relative;
}
#mypage .conv-form .form-area .coin-conv input {
    padding: 1rem 5rem 1rem 8rem;
}
#mypage .conv-form .form-area .coin-conv span {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
}
#mypage .conv-form .form-area .coin-conv .tit {
    left: 1.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: #4b4b4b;
}
#mypage .conv-form .form-area .coin-conv .coin-nm {
    right: 1.5rem;
    font-size: 1.3rem;
    color: #999;
}
#mypage .conv-form .cm-btn {
    margin-bottom: 3rem;
}

/* my nft  member info S*/
#mypage .nft-user-info{
    border-radius: 1.2rem;
    background: #fff;
    box-shadow: 4px 4px 4px rgb(208 210 211 / 20%), -4px -4px 8px rgb(208 210 211 / 20%);		
}

#mypage .nft-user-info .nft-profile{
    text-align: center;
    padding: 2rem;
}

#mypage .nft-user-info .nft-profile .profile-box{ 
    width: 120px;
    height: 120px;
    display: inline-block;
    text-align: center;
    background: #BBD5FD;
}

#mypage .nft-user-info .nft-profile .profile-box img{ 
    display: block;
    margin: auto;
    padding-top: 1.8rem;
	height:77px;
}

#mypage .nft-user-info .nft-profile .profile-box span{ 
    font-size: 1.1rem;
    background: #F9F9F9;
    display: block;
    padding: 0.7rem;
    margin-top: 1.8rem;
}

#mypage .nft-user-info .nft-profile .profile-name{
    margin-top: 1.6rem;
    font-size: 1.4rem;
	line-height: 2rem;
    font-weight: bold;
    color: #222222;	
}

#mypage .nft-user-info .nft-profile .profile-name span{
    margin: 0 1rem;
    color: #c4c4c4;
}

#mypage .nft-user-info .nft-ct-box{
    padding: 1rem 1.5rem;
}

#mypage .nft-user-info .nft-ct-box p{
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 1rem;
}

#mypage .nft-user-info .nft-ct-box .inp-box input, textarea{
    padding: 1rem 5rem 1rem 1.5rem;
    font-size: 1.4rem;
    border: 1px solid #ddd;
    border-radius: 0.6rem;
}

#mypage .nft-user-info .cm-btn{
    margin: 3rem 0;
}


#mypage .nft-user-info .nft-ct-box .inp-box textarea{
	height:15rem;
}

/* my nft  member info E*/

/* my nft  list S*/
#mypage .p-list{
    display: flex;
    flex-wrap: wrap;
    padding:1.5rem 0 0;
}

#mypage .p-list .p-box{
    flex-basis: 50%;
    padding: 0 0.5rem;
    margin-bottom: 2.5rem;
}

#mypage .p-list .p-box .item{
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 1px 1px 3px 3px rgb(208 210 211 / 20%), -1px -1px 8px 3px rgb(208 210 211 / 20%);	
}

#mypage .p-list .p-box .item video{
    width: 100%;
    height: 14rem;
}

#mypage .p-list .p-box .item img{
    height: 14rem;
}

#mypage .p-list .p-box .item p{
    margin-top: 2rem;
    font-size: 1.4rem;
    font-weight: 500;
}


#mypage .p-list .p-none-box{
	flex-basis: 100%;
    padding: 0 0.5rem;
    margin: 2.5rem 0;
}

#mypage .p-list .p-none-box .item{
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    background: #FFFFFF;
    height: 8rem;
    box-shadow: 1px 1px 3px 3px rgb(208 210 211 / 20%), -1px -1px 8px 3px rgb(208 210 211 / 20%);	
}

#mypage .p-list .p-none-box .item p{
    border-bottom: solid 2px #6C9EFF;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 4.5rem;
}

/* my nft  list E*/

/* my nft reg S*/
#mypage .nft-goods-info{
    border-radius: 1.2rem;
    background: #fff;
    box-shadow: 4px 4px 4px rgb(208 210 211 / 20%), -4px -4px 8px rgb(208 210 211 / 20%)	
}

#mypage .nft-goods-info .nft-goods{
    text-align: center;
    padding: 1.5rem;
}

#mypage .nft-goods-info .nft-goods .nft-goods-box{
	position:relative;
	height:17rem;
	overflow:hidden;
}

#mypage .nft-goods-info .nft-goods .nft-goods-box video{
    max-width: 100%;
}

#mypage .nft-goods-info .nft-goods .nft-goods-box .nft-info .info-text{
    position: absolute;
    width: 100%;
    top: 6rem;
    font-size: 1.4rem;
    line-height: 1.8rem;
	z-index:5;
	color:#001131;
}

#mypage .nft-goods-info .nft-goods .nft-goods-box .nft-info .info-text-etc{
    position: absolute;
    z-index: 5;
    top: 12.5rem;
	text-align:left;
    font-size: 1rem;
    line-height: 1.8rem;
	letter-spacing: 0.2px;
    left: 1rem;
	color:#596479;
}


#mypage .nft-goods-info .nft-ct-box{
    padding: 1rem 1.5rem;
    position: relative;
}

#mypage .nft-goods-info .nft-ct-box.auction-goods-col{
	display:none;
}

#mypage .nft-goods-info .nft-ct-box .inp-box.rel{
	position:relative;
}

#mypage .nft-goods-info .nft-ct-box .inp-box.rel .inp-box-select{
    padding: 1rem 2rem 1rem 1.5rem;
    font-size: 1.4rem;
    border: 1px solid #ddd;
    border-radius: 0.6rem;
    width: 100%;	
}

#mypage .nft-goods-info .nft-ct-box .inp-box .date-bar{
	margin:0 .4rem;
}


#mypage .nft-goods-info .nft-ct-box .nft-select-box{
    float: right;
}


#mypage .nft-goods-info .nft-ct-box .nft-select-box select{
    padding: 0.5rem 1.5rem 0.5rem;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.4rem;
    color: #222222;
    margin-bottom: 0.5rem;
}

#mypage .nft-goods-info .nft-ct-box .nft-select-box-abs{
    position: absolute;
    right: 0;
}

#mypage .nft-goods-info .nft-ct-box .nft-select-box-abs select{
    padding: 1rem 3rem 1rem 1rem;
    box-sizing: border-box;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.4rem;
    color: #222222;
    margin-bottom: 0.5rem;
    border: none;
}

#mypage .nft-goods-info .nft-ct-box .nft-select-box-abs em{
    position: absolute;
    bottom: 1.2rem;
    right: 1.5rem;
    font-weight: 500;
    font-size: 1.4rem;
    color: #222222;
    letter-spacing: 0.2px;
}

#mypage .nft-goods-info .nft-ct-box p{
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 1rem;
	letter-spacing: 0.2px;
}

#mypage .nft-goods-info .nft-ct-box .inp-box input, textarea{
    padding: 1rem 2rem 1rem 1.5rem;
    font-size: 1.4rem;
    border: 1px solid #ddd;
    border-radius: 0.6rem;
}

#mypage .nft-goods-info .nft-ct-box .inp-box.rel input{
    padding: 1rem 8rem 1rem 1.5rem;
}

#mypage .nft-goods-info .nft-ct-box .explan{
	height:10rem;
}

#mypage .nft-goods-info .nft-ct-box .ntf_content{
	margin-top:1rem;
	height:20rem;
}

#mypage .nft-goods-info .cm-btn{
	margin:4rem 0;
}
/* my nft reg E*/

/* wallet */
#wallet {
    height: calc(100% - 27.5rem);
    overflow-y: auto;
    padding: 0 0 7rem;
}

#wallet.coinlist{
    margin-top: 27rem;
}

#wallet .coin-list{
    padding: 3rem 1.5rem;
}
#wallet .ct-box {
    font-size: 0;
    margin-bottom: 2rem;
    position: relative; 
}
#wallet .ct-box .coin-wallet {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 2.5rem);
}
#wallet .ct-box .coin-wallet .coin-nm {
    font-size: 1.5rem;
    color: #080c5e;
    font-weight: 500;
    padding-bottom: .5rem;
}
#wallet .ct-box .coin-wallet .coin-pr {
    font-size: 2rem;
    font-weight: 600;
}
#wallet .ct-box .coin-wallet .coin-pr span {
    font-size: 1.3rem;
    color: #999;
}
#wallet .ct-box .open-menu {
    display: inline-block;
    vertical-align: top;
    text-align: right;
    width: 1rem;
    margin-left: 1.5rem;
}
#wallet .ct-box .open-menu .op-mu-icon {
    width: 1rem; height: 2.5rem;
}
#wallet .ct-box .open-menu .menu-list {
    display: none;
    position: absolute;
    z-index: 9;
    right: 3rem; top: 2rem;
    width: 11rem;
    border: 1px solid #ddd;
    background: #fff;
    padding: .75rem 1.5rem;
    text-align: left;
}
#wallet .ct-box .open-menu .menu-list.show {
    display: block;
}
#wallet .ct-box .open-menu .menu-list li {
    padding: .35rem;
}
#wallet .ct-box .open-menu .menu-list li a {
    font-size: 1.4rem;
    color: #4b4b4b;
}
/* wallet : qr_code */
#wallet.depth2 {
    background: rgba(166,187,244,.1);
    height: calc(100% - 19.8rem);
    overflow-y: auto;
}
#wallet .qr-code {
    padding: 2rem 0;
}
#wallet .qr-code .qr-copy {
    background: #fff;
    border-radius: 1.2rem;
    padding: 3rem 1.5rem;
    text-align: center;
}
#wallet .qr-code .qr-copy .qr-img {
    margin-bottom: 2.5rem;
}
#wallet .qr-code .qr-copy p {
    font-size: 1.5rem;
    line-height: 2.2rem;
    word-break: break-all;
    margin-bottom: 1rem;
} 
#wallet .qr-code .qr-copy input{
    border:none;
    font-size: 1.4rem;
    color: #0f4dea;
    background: transparent;
    font-weight: 500;
    text-decoration: underline;
}
#wallet .qr-code .btn-group {
    padding: 3rem 0;
}
#wallet .qr-code .btn-group input {
    padding: 1.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    width: 100%;
    margin-bottom: .75rem;
}
#wallet .qr-code .btn-group input:first-child{
    background: #121296;
    color: #fff;
    border: none;
}
#wallet .qr-code .btn-group input:last-child {
    border: 1px solid #121296;
    color: #121296;
    background: #fff;
}
/* wallet - send */
#wallet .coin-send {
    padding: 2rem 0;
}
#wallet .coin-send .ct-box {
    margin-bottom: 2rem;
}
#wallet .coin-send .ct-box .speed .tit {
    color: #999;
    font-size: 1.3rem;
}

#wallet .coin-send .ct-box .speed ul {
    text-align: center;
    font-size: 0;
    padding: 1rem 0;
}
#wallet .coin-send .ct-box .speed ul li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 2rem;
}
#wallet .coin-send .ct-box .speed input[type="radio"] {
    display: none;
}
#wallet .coin-send .ct-box .speed input[type="radio"]+label {
    display: inline-block;
    
    position: relative;
}
#wallet .coin-send .ct-box .speed input[type="radio"]+label::before {
    content: "";
    display: inline-block;
    width: 2rem; height: 2rem;
    border-radius: 50%;
    border: 1px solid #ddd;
}
#wallet .coin-send .ct-box .speed input[type="radio"]:checked+label::before {
    background-image: url("/wallet/extends/images/radio_on.png");
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #ff9327;
}
#wallet .coin-send .ct-box .speed ul li p {
    font-size: 1.4rem;
    margin-top: .75rem;
    color: #999;
}
#wallet .coin-send .ct-box .speed ul li p.on {
    color: #ff9327;
    font-weight: 500;
}
#wallet .coin-send .ct-box .tit {
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
}

#wallet .coin-send .ct-box .des{
    font-size: 1.3rem;
    padding-bottom: 1rem;
    margin-top: 1rem;
}

#wallet .coin-send .ct-box .des .red{
    font-size: 1.5rem;	
	font-weight:700;
	color:red;
}


#wallet .coin-send .ct-box input[type="text"] {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    font-size: 1.4rem;
    border-radius: .6rem;
}

#wallet .coin-send .ct-box input[type="password"] {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    font-size: 1.4rem;
    border-radius: .6rem;
}

#wallet .coin-send .ct-box .inp-box span {
    display: block;
    text-align: right;
    font-size: 1.2rem;
    padding: .5rem 1rem 0 0;
    color: #666;
}
#wallet .coin-send .cm-btn {
    padding: 1rem 0 3rem 0;
}
/* wallet : point_conversion */
#wallet .pt-conv {
    padding: 2rem 0;
}
#wallet .pt-conv .ct-box select {
    width: 100%;
    font-size: 1.4rem;
    padding: 1rem 1.5rem; 
    border: 1px solid #ddd;
    color: #4b4b4b;
    border-radius: .6rem;
}
#wallet .pt-conv .ct-box select option {
    color: #333;
}
#wallet .pt-conv .ct-box span {
    font-size: 1.3rem;
    color: #121296;
    font-weight: 500;
    display: inline-block;
    padding-bottom: .5rem;
}
#wallet .pt-conv .ct-box .tit {
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
}
#wallet .pt-conv .ct-box input {
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    border: 1px solid #ddd;
    border-radius: .6rem;
}
#wallet .pt-conv .cm-btn {
    padding: 1rem 0 3rem 0;
}

#wallet .ct-box .state{
    padding: 1rem 0.5rem 0 0;
    text-align: right;
}

#wallet .ct-box .state input{
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
    border-radius: 0.6rem;
    border: none;
    font-weight: 500;
    background: #0f4dea;
    color: #fff;
}

#wallet .ct-box .state span{
    display: none;
    color: #0f4dea;
    font-size: 1.3rem;
}

/* join common */
#join {
    background: #f1f2f3;
    padding: 2rem 0;
    height: calc(100% - 12.1rem);
    overflow-y: auto;
}
#join .btn-group {
    padding: 0 1.5rem;
    margin-bottom: 3rem;
}
#join .btn-group input{
    width: 100%;
    font-size: 1.6rem;
    padding: 1.5rem;
    font-weight: 500;
    background: linear-gradient(to right, #6b73ff, #1d1dcc);
    color: #fff;
    border-radius: 1.2rem;
    border: none;    
}
/* join : step1 */
#join .tos-box {
    margin-bottom: 3rem;
}
#join .tos-box .sub-tit {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1rem 0 1.5rem 1.5rem;
    color: #121296;
}
#join .cm-tos-box {
    height: 22rem;
    overflow-y: auto;
} 
/* join : step2 */
#join .ct-box {
    margin-bottom: 2rem;
}
#join .ct-box .tit {
    font-size: 1.5rem;
    padding-bottom: 1rem;
    font-weight: 500;
}
#join .ct-box .tit span {
    color: #ef264d;
    font-size: 1.3rem;
    font-weight: 500;
    margin-left: .5rem;
}
#join .ct-box input[type="text"] {
    font-size: 1.4rem;
    border-radius: .6rem;
    padding: 1rem;
    border: 1px solid #ddd;
}

#join .ct-box input[type="email"] {
    font-size: 1.4rem;
    border-radius: .6rem;
    padding: 1rem;
    border: 1px solid #ddd;
}
#join .ct-box input[type="password"] {
    font-size: 1.4rem;
    border-radius: .6rem;
    padding: 1rem;
    border: 1px solid #ddd;
}
#join .ct-box .state {
    padding: 1rem .5rem 0 0;
    text-align: right;
}
/* 2021/02/03 line 1117 join : fin */
#join .greeting {
    background: #fff;
    padding: 2rem;
    margin-bottom: 3rem;
}
#join .greeting p {
    font-size: 1.4rem;
    color: #4b4b4b;
    word-wrap: break-word;
}

#join .ct-box .state input {
    font-size: 1.3rem;
    padding: .5rem 1rem;
    border-radius: .6rem;
    border: none;
    font-weight: 500;
    background: #0f4dea;
    color: #fff;
}
#join .ct-box .state span {
    display: none;
    color: #0f4dea;
    font-size: 1.3rem;
}
/* cart */
#cart {
    height: calc(100% - 6.5rem);
    overflow-y: auto;
    padding: 2rem 0;
}
#cart .sel-area {
    padding: 0 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid #ddd;
    font-size: 0;
}
#cart .sel-area .all-sel {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 5rem);
    padding-right: 1rem;
}
#cart .sel-area .all-sel input[type="checkbox"]+label::before {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
}
#cart .sel-area .all-sel p {
    font-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
}
#cart .sel-area .all-sel .item-unit span{
    font-weight: 500;
}
#cart .sel-area .delete-btn {
    display: inline-block;
    text-align: right;
    vertical-align: middle;
    width: 5rem;
}
#cart .sel-area .delete-btn input {
    font-size: 1.4rem;
    padding: .3rem 0;
    width: 100%;
    border: 1px solid #ccc;
    background: #e6e7e8;
}
#cart .in-cart {
    background: #fff;
    margin-bottom: 1rem;
}
#cart .in-cart .item-box {
    border-bottom: 1px solid #ddd;
    font-size: 0;
    padding: 1.5rem;
}

#cart .in-cart .item-box .ch-box {
    display: inline-block;
    vertical-align: top;
    width: 2rem; height: 2rem;
}
#cart input[type="checkbox"] {
    display: none;
}
#cart input[type="checkbox"]+label::before {
    content: "";
    display: inline-block;
    width: 2rem; height: 2rem;
    border: 1px solid #ccc;
    background: #fff;
}
#cart input[type="checkbox"]:checked+label::before {
    background-image: url("/wallet/extends/images/checked.png");
    width: 2rem; height: 2rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #121296;
}
#cart .in-cart .item-box .item-img {
    display: inline-block;
    vertical-align: top;
    width: 6rem;
    padding: 1rem;
    margin-left: 1rem;
    position: relative;
}


#cart .in-cart .item-box .item-info {
    display: inline-block;
    vertical-align: top;
    padding: .5rem 0 .5rem 1.5rem;
    width: calc(100% - 9rem);
}
#cart .in-cart .item-box .item-info .item-nm {
    font-size: 1.5rem;
    font-weight: 500;
}
#cart .in-cart .item-box .item-info .option {
    margin-bottom: 1rem;
}
#cart .in-cart .item-box .item-info .option li {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.2rem;
    color: #666;
}
#cart .in-cart .item-box .item-info .option .bar {
    margin: 0 .5rem;
}
#cart .in-cart .item-box .item-info .add-op {
    font-size: 0;
}
#cart .in-cart .item-box .item-info .add-op .unit-box {
    border: 1px solid #ddd;
    display: inline-block;
    border-radius: .6rem;
    width: 8rem;
}

#cart .in-cart .item-box .item-info .add-op .unit-box input[type=text]{
    text-align: center;
	border:none;
}

#cart .in-cart .item-box .item-info .add-op .unit-box button {
    display: inline-block;
    width: 2.5rem; height: 2.5rem;
    background: #ddd;
    position: relative;
}
#cart .in-cart .item-box .item-info .add-op .unit-box button img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
#cart .in-cart .item-box .item-info .add-op .unit-box .minus-btn {
    border-radius: .5rem 0 0 .5rem;
}
#cart .in-cart .item-box .item-info .add-op .unit-box .plus-btn {
    border-radius: 0 .5rem .5rem 0;
}
#cart .in-cart .item-box .item-info .add-op .unit-box span {
    font-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    padding: 0 1rem;
}
#cart .in-cart .item-box .item-info .add-op .pr-area {
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    width: calc(100% - 8rem);
}
#cart .in-cart .item-box .item-info .add-op .pr-area p {
    font-size: 1.6rem;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
}
#cart .in-cart .item-box .item-info .add-op .pr-area .sel-delete {
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #ccc;
    width: 2rem; height: 2rem;
    margin-left: 1rem;
}
#cart .receipt {
    background: #fff;
    padding: 1.5rem;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 3rem;
}
#cart .receipt ul {
    font-size: 0;
}
#cart .receipt ul li {
    display: inline-block;
    vertical-align: middle;
}
#cart .receipt ul li:first-child {
    width: 9rem;
}
#cart .receipt ul li:last-child {
    width: calc(100% - 9rem);
    text-align: right;
}
#cart .receipt .pay-list {
    margin-bottom: 1rem;
}
#cart .receipt .pay-list li {
    font-size: 1.5rem;
    color: #4b4b4b;
}
#cart .receipt .total-pr li:first-child {
    font-size: 1.5rem;
    color: #4b4b4b;
}
#cart .receipt .total-pr li:last-child {
    font-size: 2.2rem;
    font-weight: 600;
}
#cart .cm-btn {
   padding: 0 1.5rem 5rem 1.5rem;
   
}
/* payment */
#payment{
    height: calc(100% - 5.5rem);
    overflow-y: auto;
    padding-bottom: 8.5rem;
}
#payment .cm-box {
    background: #fff;
    margin-bottom: 1rem;
    padding: 2rem 0;
}
#payment .cm-box .cm-tit {
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0 0 1.5rem 1.5rem;
}
#payment .cm-box .order-item {
    padding: 1.5rem;
    border-bottom: 1px solid #ddd;
}
#payment .cm-box .order-item:last-child {
    border-bottom: none;
}
#payment .cm-box .order-item .item-box {
    font-size: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #ddd;
}
#payment .cm-box .order-item .item-img {
    display: inline-block;
    vertical-align: top;
    width: 6rem;
}
#payment .cm-box .order-item .item-info {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 6rem);
    padding-left: 2rem;
}
#payment .cm-box .order-item .item-info .item-nm {
    font-size: 1.6rem;
    font-weight: 500;
    padding-bottom: .35rem;
}
#payment .cm-box .order-item .item-info .option li {
    color: #666;
    font-size: 1.3rem;
    display: inline-block;
    vertical-align: middle;
}
#payment .cm-box .order-item .item-info .option li .option-pr {
    font-weight: 500;
    color: #333;
}
#payment .cm-box .order-item .item-info .option .bar {
    margin: 0 .5rem;
}

#payment .cm-box .order-item .item-info .free {
    color: #ff9327;
    font-weight: 600;
    font-size: 1.3rem;
}
#payment .cm-box .order-item .total-pr {
    font-size: 0;
    padding: 1.5rem 1rem 0 1rem;
}
#payment .cm-box .order-item .total-pr li {
    display: inline-block;
    vertical-align: middle;
}
#payment .cm-box .order-item .total-pr li:first-child {
    font-size: 1.4rem;
    width: 8rem;
   
}
#payment .cm-box .order-item .total-pr li:last-child {
    font-size: 1.8rem;
   width: calc(100% - 8rem); 
   text-align: right;
}
#payment .cm-box .order-item .total-pr li:last-child span {
    font-weight: 600;
}
#payment .order-list {
    margin-top: 1rem;
}
#payment .delivery-info .user-destination {
    padding: 0 1.5rem;
}
#payment .delivery-info .info-edit {
    text-align: right;
    margin-bottom: 1rem;
}
#payment .delivery-info .info-edit input[type="button"] {
    font-size: 1.4rem;
    padding: .5rem 1rem;
    border: 1px solid #ddd;
    background: #fafafa;
    color: #4b4b4b;
}
#payment .delivery-info .addr-box p {
    font-size: 1.4rem;
    color: #4b4b4b;
}
#payment .memo-sel {
    padding: 0 1.5rem;
}
#payment .memo select {
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    color: #4b4b4b;
}
#payment .memo select {
    width: 100%;
}
#payment .pay-price .receipt {
    padding: 0 1.5rem;
}
#payment .pay-price .receipt ul {
    font-size: 0;
}
#payment .pay-price .receipt ul li {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.4rem;
    color: #4b4b4b;
}
#payment .pay-price .receipt ul li:first-child {
    width: 10rem;
}
#payment .pay-price .receipt ul li:last-child {
    text-align: right;
    width: calc(100% - 10rem);
}
#payment .pay-price .receipt .pay-list {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed #ddd;
}

#payment .pay-price .receipt .total-pay li:first-child {
    font-size: 1.5rem;
}
#payment .pay-price .receipt .total-pay li:last-child {
    font-weight: 600;
    font-size: 1.8rem;
    color: #000;
}
#payment .pay-type .method-pay {
    padding: 0 1.5rem;
}
#payment .pay-type .type-box {
    display: flex;
    margin-bottom: 1rem;
}
#payment .pay-type .type-box input[type="button"] {
    flex:1;
    padding: 1.2rem 0;
    font-size: 1.5rem;
    border: 1px solid #ddd;
    color: #666;
    background: #fff;
}
#payment .pay-type .type-box input[type="button"].on {
    color: #114fea;
    border: 1px solid #114fea;
}
#payment .pay-type .add-info {
    margin-bottom: 1rem;
    display: none;
}
#payment .pay-type .add-info .type-info {
    display: none;    
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 1.5rem 1rem;
}


#payment .pay-type .add-info p {
    font-size: 1.3rem;
    padding: .5rem 0;
}
#payment .pay-type .type-box input[type="button"]:first-child {
    margin-right: 1rem;
}
#payment .pay-tos {
    padding: 2rem 1.5rem;
}
#payment .pay-tos input[type="checkbox"] {
    display: none;
}
#payment .pay-tos input[type="checkbox"]+label {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 1rem;
}
#payment .pay-tos input[type="checkbox"]+label::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 2rem; height: 1.8rem;
    border-radius: 50%;
    border: 1px solid #ddd;
    margin-right: .75rem;
}
#payment .pay-tos input[type="checkbox"]:checked+label::before {
    background-image: url("/wallet/extends/images/radio_on.png");
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #ff9327;
}
#payment .pay-tos input[type="checkbox"]+label p {
    font-size: 1.5rem;
    display: inline-block;
    vertical-align: middle;
    color: #4b4b4b;
}
#payment .buy-btn {
    position: fixed;
    width: 100%;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 1.5rem;
}
#payment .buy-btn input{
    width: 100%;
    background: linear-gradient( to right, #4b84f7, #0f4dea);
    font-size: 1.6rem;
    border: none;
    color: #fff;
    font-weight: 500;
    padding: 1.5rem 0;
    border-radius: 2.5rem;
}

/* style.css */
/* 2021/02/09 line 1560 game_store 추가 */

#game .gm-tit {
    padding: 3rem 0;
}
#game .gm-tit h1 {
    text-align: center;
    color: #333;
    font-weight: 600;
    font-size: 2.4rem;
}
#game {
    height: calc(100% - 28rem);
    overflow-y: auto;
}
#game .store-link {
    display: flex;
    flex-wrap: wrap;
}
#game .store-link .gm-box {
    flex-basis: 50%;
    margin-bottom: 2rem;
    cursor: pointer;
}
#game .store-link .gm-box img {
    border-radius: 1.6rem;
    box-shadow: 4px 4px 4px rgb(51,51, 51,.2), -4px -4px 8px rgb(51,51, 51,.2);
}
#game .store-link .gm-box:nth-child(2n -1) {
    padding-right: 1rem;
}
#game .store-link .gm-box:nth-child(2n) {
    padding-left: 1rem;
}

    /* paymenyt : addr-enter */
    #payment .addr-enter {
        display: none;
        z-index: 999;
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    #payment .addr-enter .page-title {
        position: relative;
        width: 100%;
        height: 3.5rem;
        border-bottom: 1px solid #ccc;
    }
    #payment .addr-enter .page-title h2 {
        position: absolute;
        top: 50%;
        left: 1rem;
        transform: translateY(-50%);
        font-size: 1.1rem;
        color: #333;
    }
    #payment .addr-enter .page-title .none-btn {
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        width: 1.5rem;
        height: 1.5rem;
        background-image: url("../images/none-btn.png");
    }
    #payment .addr-enter table td {
        padding: 1rem;
        padding-bottom: 0;
    }
    #payment .addr-enter table input {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        border: 1px solid #999;
    }
    #payment .addr-enter table select {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        color: #4b4b4b;
    }
    #payment .addr-enter table input[type="button"] {
        background: #fafafa;
    }
    #payment .addr-enter .save {
        position: fixed;
        bottom: 0;
        width: 100%;
        padding: 1rem;
        text-align: center;
    }
    #payment .addr-enter .save input {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.75rem;
        background: #fff;
        color: #fc8a03;
        font-weight: 500;
        border: 1px solid #fc8a03;
    }

/* 2021/03/02 line 1595 notice page 추가 */
#notice {
    background: #f0f1f4;
    padding: 2rem 0;
}
#notice.index {
    height: calc(100% - 17.4rem);
    overflow-y: auto;
}
#notice .ct-tit {
    font-size: 1.7rem;
    font-weight: 500;
    padding: 0 1.5rem;
    margin-bottom: 1.2rem;
}
#notice .noti-box {
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
#notice .noti-box a {
    display: block;
    border-bottom: 1px solid #eee;
}
#notice .noti-box ul {
    padding: 1.5rem;
}
#notice .noti-box a:last-child {
    border-bottom: none;
}

#notice .noti-box ul .tit {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}


#notice .noti-box ul .date {
    color: #99A2AA;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

#notice .noti-box ul .date .answer{
    float: right;	
	font-weight: 700;
}

#notice .noti-box a:last-child {
    border-bottom: none;
}

#notice.detail {
    height: calc(100% - 17.4rem);
    overflow-y: auto;
}

#notice.detail .head {
    background: #fff;
    padding: 2rem;
    border-top: 1px solid #0f4dea;
    border-bottom: 1px solid #ddd;
}
#notice.detail .head .tit {
    font-size: 1.6rem;
    font-weight: 500;
    padding-bottom: .5rem;
}
#notice.detail .head .date {
    color: #999;
    font-size: 1.4rem;
}
#notice.detail .dt-form {
    padding: 3rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #ddd;
}
#notice.detail .dt-form p{
    font-size: 1.4rem;
}

#notice .support .noti{
    font-size: 1.4rem;
    padding-top: 40%;
}
#notice .support .link {
    text-align: center;
    margin-top: 50px;
}
#notice .support .link a{
    background: #121296;
    padding: 1.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff; 
    border: none;
}
/* style.css */


#notice.detail .dt-form pre{
    font-size: 1.5rem;
    white-space: pre-wrap;
    color: #333;
}
#notice.detail .dt-form .download {
    margin-top: 3rem;
} 
#notice.detail .dt-form .download a {
    display: block;
    border: 1px solid #121296;
    padding: .75rem 1.5rem;
    border-radius: 1.7rem;
}
#notice.detail .dt-form .download a p {
    font-size: 1.4rem;
    word-break: break-all;
    display: inline-block;
    vertical-align: middle;
    color: #4b4b4b;
    font-weight: 300;
}
#notice.detail .dt-form .download a p::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
    width: 1.6rem; height: 1.6rem;
    background-image: url("/wallet/extends/images/download_icon.png");
    background-size: 100% 100%;
}
.wrap-loading{ /*화면 전체를 어둡게 합니다.*/
    z-index: 9999;
    position: fixed;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background: rgba(0,0,0,0.2); /*not in ie */
    filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr='#20000000',endColorstr='#20000000');    /* ie */
}

.wrap-loading div{ /*로딩 이미지*/
    position: fixed;
    top:50%;
    left:50%;
    margin-left: -21px;
    margin-top: -21px;
}

.display-none{ /*감추기*/
    display:none;
}


/* User_info Area Start */
.wrap .user_info{background: url(/wallet/extends/images/user_info_bg.png) no-repeat 50% 50% / cover; border-radius: 0 0 0 30px; padding: 30px 0 40px;}
.wrap .user_info.login{padding:0;position: absolute;width:100%;}
.wrap .user_info .point{width: 100%; height: auto; display: flex;flex-wrap: nowrap; align-items: center;justify-content: space-between; margin-bottom: 2px;}
.wrap .user_info .lang-list{position: absolute;right: 0px;padding: 12px;text-align: left;display:none;}
.wrap .user_info .lang-list li a{font: bold 13px/1 'Montserrat', sans-serif;color: #fff;line-height:25px;}
.wrap .user_info.login .lang-list li a{color: #000;}
.wrap .user_info .point span{font: bold 14px/1 'Montserrat', sans-serif; color: #fff;}
.wrap .user_info .point img{margin-left: 2px;}
.wrap .user_info .point img.lang-select{cursor:pointer;}
.wrap .user_info .card{width: 100%; height: auto; text-align: center;}
.wrap .user_info .card img{box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);width:22rem;height:12rem;margin:1rem 0;}
.wrap .user_info .info{width: 100%; height: auto; display: flex; align-items: center; justify-content: space-between;}
.wrap .user_info .info .user{display: flex; align-items: center;}
.wrap .user_info .info .user .user_img{margin-right: 10px; width: 36px; height: 36px; clip-path: circle(18px at center);}
.wrap .user_info .info .user .user_img img{ display: block; width: 100%; height: 100%;}
.wrap .user_info .info .user .name{font-size: 14px; color: #fff;}
.wrap .user_info .info .btn_box a{display: inline-block; color: #fff; font-size: 14px; font-weight: bold; background-color: #6788fe; width: 90px; height: 30px; line-height: 30px; text-align: center; border-radius: 15px; cursor: pointer;}


.wrap .lang-list{position: absolute;right: 0px;top:35px;padding: 12px;text-align: left;display:none;z-index:10;}
.wrap .lang-list li a{font: bold 13px/1 'Montserrat', sans-serif;color: #fff;line-height:25px;}
.wrap img.lang-select{cursor:pointer;float:right;margin: 20px 25px;}


.container{width: 100%; margin: 0 auto; padding: 0 20px;position:relative;}
.container_fluid{width: 100%; height: 100%; margin: 0 auto;position: relative;}

/* Contents Area Start */
.wrap .contents #my_wallet{width: 100%; height: auto; margin-top: -26px; padding: 15px 20px 15px 28px; display: flex; align-items: center; justify-content: space-between; background-color: #fff; box-shadow: 0 0 10px rgba(6, 11, 117, 0.17); border-radius: 10px;}
.wrap .contents .notice_banner{width: 100%; height: auto; margin-top: 5px; padding: 10px 15px 10px 18px; display: flex; align-items: center; justify-content: space-between; background-color: #fff; box-shadow: 0 0 10px rgba(6, 11, 117, 0.17); border-radius: 10px;}
.wrap .contents #my_wallet p{font: 600 16px/1 'Montserrat', sans-serif; color: #323232;}
.wrap .contents #my_wallet .menu_bt{width: auto; height: auto; cursor: pointer;}
.wrap .contents #my_wallet .menu_bt img{display: block;}

.wrap .contents .cate-list {
    max-height: 0;
    overflow: hidden;
    transition: .3s ease;
}
.wrap .contents .cate-list.show {
    max-height: 18rem;
    overflow-y: auto;
}
.wrap .contents .cate-list ul {
    padding: 1rem;
}
.wrap .contents  .cate-list ul li {
    font-size: 1.5rem;
    color: #4b4b4b;
    font-weight: 300;
    padding: .5rem 0;
}
.wrap .contents .cate-list ul li.on {
    color: #0f4dea;
    font-weight: 500;
}


.wrap .contents .content_list{width: 100%; height: auto; padding: 10px 0;}
.wrap .contents .content_list .top_box{margin: 0 -5px 10px; width: auto; height: auto;}
.wrap .contents .content_list .top_box::after{content: ''; display: block; clear: both;}
.wrap .contents .content_list .top_box>ul{width: calc(100% / 3); height: auto; float: left; padding: 0 5px;}
.wrap .contents .content_list .top_box>ul li{width: 100%; height: auto; margin-bottom: 10px;}
.wrap .contents .content_list .top_box>ul li:last-child{margin-bottom: 0;}
.wrap .contents .content_list .top_box>ul li a{width: 100%; height: 80px; padding-top: 36px; display: block; box-shadow: 0 0 8px rgba(6, 11, 117, 0.17); border-radius: 5px; text-align: center; color: #525252; font-size: 16px; font-weight: 400; cursor: pointer; background-color: #fff; position: relative; line-height: 1;}
.wrap .contents .content_list .top_box>ul li a::after{content: ''; display: block; width: 6px; height: 6px; background-color: #4a48fc; border-radius: 50%; position: absolute; left: 50%; top: 22px; transform: translateX(-50%);}
.wrap .contents .content_list .top_box>ul li.chart a{height: 170px; background: url(/wallet/extends/images/chart_bg.png) no-repeat 50% 50% / cover; color: #fff; font-weight: 500; padding-top: 40px; line-height: 1.2;}
.wrap .contents .content_list .top_box>ul li.chart a::after{display: none;}
.wrap .contents .content_list .top_box>ul li.chart a img{display: block; margin: 0 auto 15px;}
.wrap .contents .content_list .bottom_box{width: 100%; height: auto;}
.wrap .contents .content_list .bottom_box ul{width: auto; height: auto; margin: 0 -5px;}
.wrap .contents .content_list .bottom_box ul::after{content: ''; display: block; clear: both;}
.wrap .contents .content_list .bottom_box ul li{float: left; width: 35%; height: auto; padding: 0 5px;}
.wrap .contents .content_list .bottom_box ul li a{display: block; width: 100%; height: 80px; line-height: 80px; background-color: #fff; box-shadow: 0 0 8px rgba(6, 11, 117, 0.17); text-align: center; font-size: 16px; border-radius: 5px; color: #525252;}
.wrap .contents .content_list .bottom_box ul li:first-child a{background: url(/wallet/extends/images/content_bg1.png) no-repeat 50% 50% / cover;}
.wrap .contents .content_list .bottom_box ul li:last-child a{background: url(/wallet/extends/images/content_bg2.png) no-repeat 50% 50% / cover;}

/* Quick_menu Area Start */
.wrap .quick_menu{
    z-index: 2;
    position: fixed;bottom: -2px; left: 0;width: 100%;height: 64px; background-color: #fff;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
     
}
.wrap .quick_menu ul{width: 100%; height: auto; display: flex; align-items: center;}
.wrap .quick_menu ul li{width: calc(100% / 4); height: auto; text-align: center; position: relative; }
.wrap .quick_menu ul li a{display: block; padding: 8px 0; width: 100%;  cursor: pointer;color:#19191A; opacity: .5;}
.wrap .quick_menu ul li a img{display: block; margin: 0 auto;}
.wrap .quick_menu ul li a span{font-size: 1.2rem;}
.wrap .quick_menu ul li.active a{opacity: 1; }
.wrap .quick_menu ul li.active a span{font-weight:700}

@media screen and (max-width: 500px){
  .wrap{width: 100%;}
  .container{padding: 0 5.263vw;}

  .wrap .main{width: 100%; height: calc(100% - 50px);}
    
  /* User_info Area Start */
  .wrap .user_info{border-radius: 0 0 0 7.895vw; padding: 4.411vh 0 5.88vh;}
  .wrap .user_info.login{padding:0;border-radius: 0 0 7.895vw 7.895vw}
  .wrap .user_info .point{margin-bottom: 0.294vh;}
  .wrap .user_info .point img{margin-left: 0.526vw;}
  .wrap .user_info .card img{box-shadow: 0 0 3.947vw rgba(0, 0, 0, 0.17); height: 12.647vh;}
  .wrap .user_info .info .user .user_img{margin-right: 2.632vw; width: 9.474vw; height: 5.294vh; clip-path: circle(4.737vw at center);}
  .wrap .user_info .info .btn_box a{width: 23.684vw; height: 4.411vh; line-height: 4.411vh; border-radius: 3.947vw; cursor: pointer;}

  /* Contents Area Start */
  .wrap .contents #my_wallet{margin-top: -3.823vh; padding: 2.205vh 5.263vw 2.205vh 7.368vw; box-shadow: 0 0 2.632vw rgba(6, 11, 117, 0.17); border-radius: 2.632vw;}
  .wrap .contents #my_wallet .menu_bt img{height: 2.5vh;}
  .wrap .contents .content_list{padding: 2.941vh 0;}
  .wrap .contents .content_list .top_box{margin: 0 -1.316vw 1.470vh;}
  .wrap .contents .content_list .top_box>ul{padding: 0 1.316vw;}
  .wrap .contents .content_list .top_box>ul li{margin-bottom: 1.470vh;}
  .wrap .contents .content_list .top_box>ul li a{height: 11.764vh; padding-top: 5.294vh; box-shadow: 0 0 2.105vw rgba(6, 11, 117, 0.17); border-radius: 1.316vw;}
  .wrap .contents .content_list .top_box>ul li a::after{top: 3.235vh;}
  .wrap .contents .content_list .top_box>ul li.chart a{height: 25vh; padding-top: 5.882vh;}
  .wrap .contents .content_list .top_box>ul li.chart a img{margin: 0 auto 2.205vh; height: 4.705vh;}
  .wrap .contents .content_list .bottom_box ul{margin: 0 -0.735vh;}
  .wrap .contents .content_list .bottom_box ul li{padding: 0 1.316vw;}
  .wrap .contents .content_list .bottom_box ul li a{height: 11.764vh; line-height: 11.764vh; box-shadow: 0 0 2.105vw rgba(6, 11, 117, 0.17); border-radius: 1.316vw;}

}

@media screen and (max-width: 320px){
  .wrap .user_info .point span{font-size: 13px;}
  .wrap .user_info .info .btn_box a{font-size: 13px;}
  .wrap .user_info .info .user .name{font-size: 13px;}
  .wrap .contents #my_wallet p{font-size: 14px;}
  .wrap .contents .content_list .top_box>ul li a{font-size: 14px;}
  .wrap .contents .content_list .bottom_box ul li a{font-size: 14px;}
}
.paypal-buttons-label-paypal{
z-index:0;
}
/* staking main */
.promo_box{
    width: 100%;
    display: flex;
   flex-wrap: wrap;
   overflow-y: hidden;
}

.first_promo{
    width: 43%;
    height: 100%;
    border: 1px solid #E7E7E9;
    box-sizing: border-box; 
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    border-radius: 10px;
    margin: 1rem;
    cursor: pointer;
}

.first_promo>.title {
        text-align: center;
}

.first_promo>.title p{
    color: #333333;
    text-align: center;
    padding: 1rem 0rem;
    font-weight: 600;
}
.promo_box .img{
    width: 8rem;
    height: 8rem;
}
.promo_box .promo_info_box{
    width: 100%;
    height: 100%;
}

.promo_box .reward_title{
    width: 100%;
    background-color:#E7E7E9;
}
.promo_box .reward_title p{
    font-weight: bold;
    color: #5F656E;
    text-align: center;
    padding: 0.5rem;
}
.promo_box .reward_info{
    width: 100%;
    background: #F0F8FF;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.promo_box .reward_info p{
    text-align: center;
    padding: 0.9rem 2rem;
}

.staking_sec .img_box img{
    width: 13rem;
    height: 13rem;
}
.staking_sec .img_box{
    display: flex;
}
.staking_sec .img_box span{
    width: 50%;
    font-weight: bold;
    color: #333333;
    text-align: center;
    font-size: 13px;
}

.staking_sec .staking_content{
    text-align: left;
    font-size:1.3rem;
}
.promo_reward{
    width: 100%;
    background: #F0F8FF;
    border: 1px solid #E7E7E9;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}
.promo_reward p{
    text-align: center;
    padding: 0.2rem;
}
/*기본정보*/
.basic_info{
    width: 90%;
    height: 9rem;
    margin-left: 1.15rem;
    margin-top: 1rem;
    border: 1px solid #E7E7E9;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    border-radius: 10px;
}
.basic1, .basic2{
    width: 100%;
    height: 4rem;
}
.p1, .p2, .p3, .p4{
    font-family: Roboto;
    font-weight: bold;
    color: #000000;
    width: 50%;
    height: 4rem;
    float: left;
    padding: 0.65rem 1.5rem;
    font-size:1.2rem;
}
.basic_info span{
    font-weight: 300;
    color: #5F656E;
}

/*예치하기 박스*/
.apply_box{
    text-align: left;
    width: 90%;
    height: 100%;
    margin-left: 1.15rem;
    margin-top: 1rem;
    border: 1px solid #E7E7E9;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    border-radius: 10px;
    font-size:1.4rem;
}
.staking_sec .amount{
    padding-left: 20px;
    padding-bottom: 10px;
}

.staking_sec .amount input{
    flex: 1;
    padding: 1rem;
    font-size: 1.4rem;
    border: 1px solid #ddd;
    color: #999;
    background: #fff;
}
.staking_sec .amount input[type=button]{
    width: 90%;
    height: 100%;
    background: #002D9C;
    border-radius: 10px;
    color:#fff;
    cursor: pointer;
}
.staking_sec .amount input[type=radio]{
    color:#fff;

}

.staking_sec .amount input[type=radio]:checked{
    background: #002D9C;
}


/* The Modal (background) */
.modal{
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1072; /* Sit on top */
    left: 0;
    top: 0;
    width: 361px; /* Full width */
    height: 690px; /* Full height */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 42px;
}


/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 30% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */                          
}

.modal-content.coin-util{
    background-color: #fefefe;
    margin: 30% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 95%; /* Could be more or less, depending on screen size */                          
}

.modal-content.coin-util .ct-box {
    margin: 2rem 0;
}
.modal-content.coin-util .ct-box p {
    font-size: 1.6rem;
    font-weight: 500;
    padding-bottom: 1rem;
}
.modal-content.coin-util .ct-box .inp-box {
    position: relative;
	margin:.5rem 0;
}
.modal-content.coin-util .ct-box .inp-box input {
    padding: 1rem 5.5rem 1rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: .6rem;
    font-size: 1.4rem;
}

.modal-content.coin-util .ct-box .inp-box input.pay-input {
	padding:1rem;
}

.modal-content.coin-util .ct-box .inp-box span {
    position: absolute;
    top: 50%; right: 1.5rem;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: #999;
}

.modal-content.coin-util .info-comment{
    color: #f00c0c;
    font-size: 1.2rem;
    margin: 1rem;
}

.modal-content .action-btn .act-submit{
    width: 49%;
    display: inline-block;
    cursor: pointer;
    background-color: #121296;
    color: #fff;
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;	
}

.modal-content .action-btn .act-cancel{
    width: 49%;
    display: inline-block;
    cursor: pointer;
    background-color: #DDDDDD;
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    float: right;
}


  /* 코인 swap */
  #swap-area {
    padding:32px 16px 0px;
}
#swap-area .swap-coin1{
    padding-bottom:24px;
}
#swap-area  .swap_icon_line{
    border-bottom:1px solid #ccc;     
    position: relative;
}
#swap-area  .swap_icon_line span{
    position: absolute;
    top:50%; left:50%; transform: translate(-50%, -50%);

}
#swap-area .coin-select{
    position: relative;
    padding-bottom: 16px;
}
#swap-area .coin-select img{
    vertical-align: top; 
    padding-right:2px;
	width:24px;
}
#swap-area .coin-select strong{
    font-size:18px;
    font-weight: bold;
    line-height: 24px;
}
#swap-area a.drow_down {
    display: inline-block;
    height: 24px;
    width: 24px;
    padding: 0;
    background: url("/wallet/extends/images/ic_drop_down.svg") center  no-repeat;
    overflow: hidden;
    text-indent: -999em;
    vertical-align: top;
}
#swap-area .market_list {
    display: none;
    width: 85%;
    position: absolute;
    left:0;
    top:32px;
    padding:16px;    
    border:1px solid #ccc;
    background-color: #fff;
	z-index:10;
} 
#swap-area .market_list ul li{
    font-size:1.4rem;
    padding-top:8px;
}
#swap-area .market_list ul li img{
    width:20px;
    vertical-align: middle;
}
#swap-area .market_list .search input[type=text]{
    border:1px solid #E5E5E5;
    border-radius: 5px;
    height: 40px;
    width:210px;
    padding:8px;
}
#swap-area .market_list .search a.btn {
    position: absolute;
    top:24px; right:50px;
    display: block;
    width: 24px;
    height: 24px;
    background: url(/wallet/extends/images/search.png)  no-repeat;
    overflow: hidden;
    text-indent: -999em;
}
#swap-area .swap-info{
    margin-bottom:8px;
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
}
#swap-area .swap-info .txt_red{
    color:#E63434;
}

#swap-area input[type=text]{
    width: 100%;
    height:40px; 
    margin-right:2%;
    border:1px solid #ccc;
    border-radius: 5px;
    padding:0 8px;
    margin-bottom:8px;
}
#swap-area  input[type=button],.popup input[type=button]{
    background-color: #121296; color:#fff;
    border:0; border-radius: 5px;
}

#swap-area .inp-area{
    display: flex;
}
#swap-area .inp-area input[type=text]{
    width:73%; 
}
#swap-area .inp-area input[type=button]{
    width:25%;
    height:40px;
}
#swap-area .swap-info span{
    color:#818291;
}

#swap-area .swap-coin2{
    padding-top:24px;
}
#swap-area .show_popup { 
    padding:64px 0 48px;
}
#swap-area .show_popup a{
    line-height: 200%;   
    display: block;
    font-weight: 500;
    font-size:1.6rem;
    text-decoration: underline;
}
#swap-area .swap_btn{
    position: fixed;
    width: calc(100% - 32px);
    height: 48px;
    bottom:56px;right:16px;
}
 /* 코인가져오기 popup */
 #swap-area .popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow:scroll; /* Enable scroll if needed */
    margin-top:100px;
    background-color: #fefefe;
    padding-bottom:30%;
}

#swap-area .pop-content {
    padding:16px;                          
    
}
#swap-area .pop-content p {
    font-size: 1.6rem; font-weight: 500;
    line-height: 160%;
}
#swap-area .pop-content p span{
    color:#121296;
    line-height: 160%;
    font-size: 1.4rem;
}

#swap-area .pop-content img{
    margin:8px 0 16px;
    border:1px solid #ccc;
}
#swap-area .pop-header{
    position: relative;
    padding:16px; 
    text-align: center;
    border-bottom:1px solid #ccc;
}
#swap-area .pop-header p{
    font-size: 1.8rem;
    font-weight: 600;
}
#swap-area .pop-header .close{
    position: absolute;
    right:16px;
    top:12px;
    cursor: pointer;
}
#swap-area .popup input[type=button]{
    height: 48px; width: calc(100% - 32px);
    margin:0 auto;
    display: block;
}

#swap-area .swap_icon {
    vertical-align: middle;
    padding-right: 4px;
}

.swap_icon{
    vertical-align: middle;
}

/*추천인 명단*/
.recommend_area .ct-box-tab{
    display: flex;
    margin-bottom:16px;
}
.recommend_area .ct-box-tab li{
    width:50%;
    background: #fff;
    padding:16px 0;
    text-align: center;
    border-bottom:2px solid #E5E5E5;
}
.recommend_area .ct-box-tab li a{
    font-size: 1.6rem;
    color:#666;
}
.recommend_area .ct-box-tab li.active{
    border-bottom: 3px solid #121296;
}
.recommend_area .ct-box-tab li.active a{
    color:#121296;
    font-weight: 600;
}
.recommend_area .lv-info{
    font-size:1.4rem;
    padding-bottom:16px;
    color:#666;
}
.recommend_area .lv-info span.active{
    font-size:1.4rem;
    padding-bottom:16px;
    color:#2C2C2D;
    font-weight: 600;
}
.recommend_area .ct-box_main{
    font-size: 16px;
    border-radius: 10px;
    padding: 1.6rem;
    background: #fff;
    box-shadow:1px 1px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.recommend_area .ct-box_main h1{
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom:16px;
}
.recommend_area .ct-box_main .txt_reward{
    font-size: 1.4rem;
}
.recommend_area .ct-box_main .btn-area{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.recommend_area .btn-area input{
    width:100%;
    padding:8px 0;
    margin:4px 0;
    border:0;
    border-radius: 4px;
    font-weight: 600;
    background-color: #121296;
    color:#fff;
}
.recommend_area .btn-area input.ghost{
    background-color: #fff;
    color:#121296;
    border:1px solid #121296; 
}
.recommend_area .btn-area input.disable{
    background-color: #B0B0B3; 
}
.recommend_area .recmd_info{
    color:#2C2C2D;
    font-size: 1.4rem;
    font-weight: 400;
}
.recommend_area .recmd_info b{
    font-weight: 600;
}
.recommend_area .txt_blue{
    color:#3466E6;

}

.recommend_area .txt_red {
    color:#E63434;
    
}
.recommend_area h1.tit{
    padding-top:24px;
    font-size: 1.8rem;
    font-weight: 600;
    padding-bottom:24px;
}
.recommend_area h1.tit span{
    font-size: 1.6rem;
    font-weight: 400;
    color:#2C2C2D;
}
.recommend_area .history-box label{
    float: right;
    font-size:1.4rem;
    font-weight: 500;
    padding-bottom: 8px;
}
.recommend_area .history-box table {
    font-size: 1.6rem;
    color:#2C2C2D;
    text-align: center;
}
.recommend_area .history-box table tr th{
    background-color: #F4F4F4;
    border-bottom: 1px solid #E5E5E5;
    border-top: 1px solid #E5E5E5;
    height: 40px;
    font-weight: 500;
}
.recommend_area .history-box table tr td{
    font-size: 1.5rem;
    height: 32px;
    border-bottom: 1px solid #E5E5E5;
}
/*리워드 상세 내역*/
.recommend_area .search-area{
    display: flex;
    justify-content: space-between;
    margin:8px 0 10px 0;
}


.recommend_area .search-area button{
    border:1px solid #121296;
    background-color: #fff;
    padding:4px 4px;
    border-radius: 8px;
}
.recommend_area .search-area button.active{
    background-color: rgba(15,77,234,.2);
}
.recommend_area .search-area button img{
    vertical-align: middle;
    margin-top:-2px;
}
.recommend_area .search-area button span{
    font-size:1.6rem;
    
    color:#121296;
    font-weight:500;
    padding:0 10px 0 2px;
}
.recommend_area table.rewd_detail thead th{
    border-bottom:1px solid #E5E5E5;
    height:40px;
    text-align: left;
    font-weight: 600;
    font-size: 1.6rem;

}

.recommend_area table.rewd_detail thead th:first-child{
	width: 8rem;
}

.recommend_area table.rewd_detail tbody th{
    height:30px;
    text-align: left;
    font-weight: 600;
    font-size: 1.4rem;
}
.recommend_area table.rewd_detail tbody td{
    height:30px;
    font-weight: 400;
    font-size: 1.4rem;
}
.recommend_area table.rewd_detail tbody td em{
    font-weight: 600;
}

/*추천인 -> 라워드 입금 상세 내역 -> 기간검색 */
.recommend_area .set_form .period.active {
    background: #f6f8fb;
    color: #121296;
}
.recommend_area .set_form{
    display: flex;
    border: 1px solid #E5E5E5;
    flex-direction: row;
    justify-content: space-around;
}
.recommend_area .set_form .period {
    border-left:1px solid #E5E5E5;
    box-sizing: border-box;
    display: inline-block;
    width:100%;
    font-size: 1.4rem;
    margin-right:-2px;
    padding: 6px 0;
    background: #fff;
    text-align: center;
    cursor: pointer;
}
.recommend_area .ct-box{
    margin-top:16px;
}
.recommend_area .ct-box h1{
    font-size:1.8rem;
    font-weight: 600;
    padding-bottom: 8px;
}
.recommend_area .date-area {
    padding-top:8px;
    display: flex;
    justify-content:space-between;
}
.recommend_area .date-area span{
   font-size:1.8rem;
   line-height: 40px;

}
.recommend_area .date-area input{
   height:40px;
   padding:4px;
   border:1px solid #E5E5E5;
   
}
.recommend_area > .btn-area{
    margin-top:8px;
    display: flex;
    justify-content:space-between;
}
.recommend_area > .btn-area input{
    width: 49%;
}

/*추천인 -> 라워드 입금 상세 내역 -> 조건검색 */
.recommend_area .set_level .period:first-child{
    border-left:0;
}
.recommend_area .set_level .period:last-child{
    border-right:1px solid #E5E5E5;
}
.recommend_area .search{
    position: relative;
    margin-bottom:4px;
}
.recommend_area .search input[type=text]{
    border:0;
    border-bottom:1px solid #B0B0B3;
    height: 32px;
    width:100%;
    padding:8px;
}
.recommend_area .search a.btn {
    position: absolute;
    top:0px; right:8px;
    display: block;
    width: 24px;
    height: 24px;
    background: url(/wallet/extends/images/search.png)  no-repeat;
    overflow: hidden;
    text-indent: -999em;
}
.recommend_area ul.id_list li{
    height: 30px;
    line-height: 30px;
    font-size: 1.4rem;
    border-bottom: 1px solid #E5E5E5;
}

/*추천인 -> 라워드 지급 상세 내역 */
.recommend_area .search-area > div > button{
    height: 100%;
    margin-left:2px;
}
.recommend_area .search-area > div > button span {
    padding: 6px 10px;
}

.recommend_area .txt_none{
    color:#666;
    font-size:1.4rem;
}

/*유료회원 신청*/
.paid-mem-explain{
  border-radius: 12px;
  background-color: #E4E4F0;
  font-size: 1.6rem;
  padding:24px 16px;
  margin:16px 0;
  display:inline-block;
  width: 100%;
  color:#49494C;
}
.paid-mem-explain .explain__tit{
  font-weight: 600;
}
.paid-mem-explain .explain_cont{
  padding-bottom:16px;
}
.paid-mem-explain .explain_cont:last-child{
  padding:0;
}
.paid-mem-explain .explain__em{
  color:#F72929;
  text-decoration: underline;
}
.pay-inp-box{
  margin-bottom:16px;
  padding:24px 16px;
  background: #FFFFFF;
  /* elevatioin-big */
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}
.pay-inp-box p{
  font-size: 1.6rem;
  color:#49494C;
  padding-bottom: 8px;
}
.pay-inp-box input[type=text]{
  border: 1px solid #E6E6E6;
  box-sizing: border-box;
  border-radius: 4px;
  padding:12px 16px;
}
.pay-inp-box .btn-pay{
  border: 1px solid #3B3B3E;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #fff;
  padding:12px;
  font-weight: bold;
  font-size:1.6rem;
  color:#3B3B3E;
}
.btn-filled{
  /* primary */
  border:0;
  background: #3B3B3E;
  border-radius: 24px;
  height: 48px;
  color:#fff;
  font-weight: bold;
  font-size:1.6rem;
}

/*상품권 결제내역*/
#mypage .pay-list .ct-box .pay-info ul li.go-link{
    width: 100%;
    margin-top:8px;
    text-align: center;
}
.go-link button{
    color:#002D9C;
    font-weight: 500;
    font-size: 1.5rem;
    background-color: #F1F1FF;
    border-radius: 24px;
    padding:8px;
    width: 100%;
}
.go-link svg{
    vertical-align: middle;
    margin-top:-2px;
}



#virtual-account-modal.show{
    display: block;
}
#virtual-account-modal textarea{
    border:1px solid #ccc;
    height: 80px;
}
#virtual-account-modal .agree-tit{
    padding-top: 1.6rem;
    padding-bottom: .8rem;
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}
#virtual-account-modal .agree-tit2{
    padding-top: 1.6rem;
    padding-bottom: .4rem;
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
}

#virtual-account-modal .modal-ct{
    max-height: 80vh;
    overflow-y: scroll;
}

#virtual-account-modal .info-box{
    border:1px solid #ccc;
    margin-top:1.6rem;
}
#virtual-account-modal .info-box h2{
    font-size: 1.6rem;
    border-bottom: 1px solid #ccc;
    padding:.8rem;
}

#virtual-account-modal .info-box dl{
    padding:.8rem;
}
#virtual-account-modal .info-box dl div{
    display:flex;
    font-size: 1.4rem;
    padding:.3rem 0;
}
#virtual-account-modal .info-box dl dt{
    width: 30%;
}
#virtual-account-modal .info-box dl .price{
    font-weight: bold;
    color:red;
}
#virtual-account-modal .info-box dl .name{
    font-weight: bold;
}

#virtual-account-modal .info-box input[name=cash-receipt-rdo]{
    margin:.4rem;
}
#virtual-account-modal input[type=text],
#virtual-account-modal select{
    border:1px solid #ccc;
    padding:.4rem .8rem;
    display: block;
    width: 100%;
    margin:.4rem 0;
}
#virtual-account-modal .agr-box{
    text-align: center;
}
#virtual-account-modal .agree-chk{
    margin-top:2.4rem;
    vertical-align: bottom;
}
#virtual-account-modal .agree-chk+label{
    font-size: 1.4rem;
}


.layer_tooltip {display:block; opacity:0; background-color: rgba(0, 0, 0, 1); position:absolute;top: 5rem;left: 5.5rem;right: 0;padding: 1rem;border-radius:4px;z-index:-1;font-size:inherit; transition:all 0.5s;}
.layer_tooltip p { text-align:left; color:#fff; font-size:12px; word-break:break-all; word-wrap:break-word;} 
.on.layer_tooltip {opacity:1; background-color: rgba(0, 0, 0, 0.8); z-index:100;} 

/* open_help toggle */
.btn_tooltip[data-name=open_tooltip]::before {display:block; clear:both; content: ''; opacity:0; position:absolute; bottom:-13px; left:50%; width:0px; height:0px; margin-left:-5px; border-top:none; border-bottom:7px solid rgba(0, 0, 0, 1); border-left:5px solid transparent; border-right:5px solid transparent; transition:all 0.5s;} 
.btn_tooltip.on[data-name=open_tooltip]::before {opacity:0.8;} 

.fixed-btn{
    position: fixed;
    width: 100%;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 1.5rem;	
}

.fixed-btn input{
    width: 100%;
    border: none;
    color: #fff;
    padding: 16px;
    background: #2259A6;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}

.cm-box {
    background: #fff;
}
.cm-box .cm-tit {
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	color: #262934;
    margin-top: 24px;
	margin-bottom:14px;
}

.cm-box .cm-tit.sub-tit{
	font-size:16px;
}

.cm-box .order-item {
    border-bottom: 1px solid #ddd;
}

.cm-box .agree-box{
    margin-bottom: 14px;
}

.cm-box .agree-box li{
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 2.4rem;
	color: #262934;
    padding: 1rem 0 3rem 0;
}

.cm-box .agree-box li.all-checked{
	background: #F7F9FA;
	border-radius: 10px;
	padding: 2rem 1.6rem;
	margin-bottom:6px;
}

.cm-box .agree-box li.agree-checked{
	display: flex;
	justify-content: space-between;
}


.cm-box .agree-box input[type="checkbox"]{
	display:inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	appearance: none;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}
.cm-box .agree-box input[type="checkbox"]::before{
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url(/images/check_ico.png);
	background-repeat: no-repeat;
}

.cm-box .agree-box input[type="checkbox"]:checked::before{
	background-image: url(/images/check_ico_on.png);
}
.cm-box .agree-box input[type="checkbox"]+label{
	background-image:unset;
	margin-right:0px;
	margin-left:1.2rem;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 2.4rem;
	color: #262934;
}

.cm-box .agree-box li.all-checked input[type="checkbox"]+label{
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 2.6rem;
}



.cm-box .agree-box li.agree-checked .agree-view{
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 2rem;		
	color: #9FA5A9;
}


.cm-box .cm-item-box .input-text{
    border: 1px solid #DBE1E6;
    border-radius: 10px;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #262934;
    padding: 16px;
    margin-bottom: 8px;	
}
