/*
 * cmj
 * 2020.05.13 modify
 */

/* ----------------------------------------------------------------
	jquery mobile ui common style
---------------------------------------------------------------- */
.ui-disabled {
    filter: Alpha(Opacity=30);
    opacity: .3;
    zoom: 1;
}
.ui-disabled,
.ui-disabled a {
    cursor: default !important;
    pointer-events: none;
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}
@-moz-keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}
@-webkit-keyframes fadeout {
    from { opacity: 1; }
    to { opacity: 0; }
}
@-moz-keyframes fadeout {
    from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes fadeout {
    from { opacity: 1; }
    to { opacity: 0; }
}
.fade.out {
    opacity: 0;
    -webkit-animation-duration: 125ms;
    -webkit-animation-name: fadeout;
    -moz-animation-duration: 125ms;
    -moz-animation-name: fadeout;
    animation-duration: 125ms;
    animation-name: fadeout;
}
.fade.in {
    opacity: 1;
    -webkit-animation-duration: 225ms;
    -webkit-animation-name: fadein;
    -moz-animation-duration: 225ms;
    -moz-animation-name: fadein;
    animation-duration: 225ms;
    animation-name: fadein;
}
.pop {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
.pop.in {
    -webkit-transform: scale(1);
    -webkit-animation-name: popin;
    -webkit-animation-duration: 350ms;
    -moz-transform: scale(1);
    -moz-animation-name: popin;
    -moz-animation-duration: 350ms;
    transform: scale(1);
    animation-name: popin;
    animation-duration: 350ms;
    opacity: 1;
}
.pop.out {
    -webkit-animation-name: fadeout;
    -webkit-animation-duration: 100ms;
    -moz-animation-name: fadeout;
    -moz-animation-duration: 100ms;
    animation-name: fadeout;
    animation-duration: 100ms;
    opacity: 0;
}
.pop.in.reverse {
    -webkit-animation-name: fadein;
    -moz-animation-name: fadein;
    animation-name: fadein;
}
.pop.out.reverse {
    -webkit-transform: scale(.8);
    -webkit-animation-name: popout;
    -moz-transform: scale(.8);
    -moz-animation-name: popout;
    transform: scale(.8);
    animation-name: popout;
}
@-webkit-keyframes popin {
    from {
        -webkit-transform: scale(.8);
        opacity: 0;
    }
    to {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}
@-moz-keyframes popin {
    from {
        -moz-transform: scale(.8);
        opacity: 0;
    }
    to {
        -moz-transform: scale(1);
        opacity: 1;
    }
}
@keyframes popin {
    from {
        transform: scale(.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@-webkit-keyframes popout {
    from {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(.8);
        opacity: 0;
    }
}
@-moz-keyframes popout {
    from {
        -moz-transform: scale(1);
        opacity: 1;
    }
    to {
        -moz-transform: scale(.8);
        opacity: 0;
    }
}
@keyframes popout {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(.8);
        opacity: 0;
    }
}
/* keyframes for slidein from sides */
@-webkit-keyframes slideinfromright {
    from { -webkit-transform: translate3d(100%,0,0); }
    to { -webkit-transform: translate3d(0,0,0); }
}
@-moz-keyframes slideinfromright {
    from { -moz-transform: translateX(100%); }
    to { -moz-transform: translateX(0); }
}
@keyframes slideinfromright {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
@-webkit-keyframes slideinfromleft {
    from { -webkit-transform: translate3d(-100%,0,0); }
    to { -webkit-transform: translate3d(0,0,0); }
}
@-moz-keyframes slideinfromleft {
    from { -moz-transform: translateX(-100%); }
    to { -moz-transform: translateX(0); }
}
@keyframes slideinfromleft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}
/* keyframes for slideout to sides */
@-webkit-keyframes slideouttoleft {
    from { -webkit-transform: translate3d(0,0,0); }
    to { -webkit-transform: translate3d(-100%,0,0); }
}
@-moz-keyframes slideouttoleft {
    from { -moz-transform: translateX(0); }
    to { -moz-transform: translateX(-100%); }
}
@keyframes slideouttoleft {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
@-webkit-keyframes slideouttoright {
    from { -webkit-transform: translate3d(0,0,0); }
    to { -webkit-transform: translate3d(100%,0,0); }
}
@-moz-keyframes slideouttoright {
    from { -moz-transform: translateX(0); }
    to { -moz-transform: translateX(100%); }
}
@keyframes slideouttoright {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
}
.slide.out, .slide.in {
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-duration: 350ms;
    -moz-animation-timing-function: ease-out;
    -moz-animation-duration: 350ms;
    animation-timing-function: ease-out;
    animation-duration: 350ms;
}
.slide.out {
    -webkit-transform: translate3d(-100%,0,0);
    -webkit-animation-name: slideouttoleft;
    -moz-transform: translateX(-100%);
    -moz-animation-name: slideouttoleft;
    transform: translateX(-100%);
    animation-name: slideouttoleft;
}
.slide.in {
    -webkit-transform: translate3d(0,0,0);
    -webkit-animation-name: slideinfromright;
    -moz-transform: translateX(0);
    -moz-animation-name: slideinfromright;
    transform: translateX(0);
    animation-name: slideinfromright;
}
.slide.out.reverse {
    -webkit-transform: translate3d(100%,0,0);
    -webkit-animation-name: slideouttoright;
    -moz-transform: translateX(100%);
    -moz-animation-name: slideouttoright;
    transform: translateX(100%);
    animation-name: slideouttoright;
}
.slide.in.reverse {
    -webkit-transform: translate3d(0,0,0);
    -webkit-animation-name: slideinfromleft;
    -moz-transform: translateX(0);
    -moz-animation-name: slideinfromleft;
    transform: translateX(0);
    animation-name: slideinfromleft;
}
.slidefade.out {
    -webkit-transform: translateX(-100%);
    -webkit-animation-name: slideouttoleft;
    -webkit-animation-duration: 225ms;
    -moz-transform: translateX(-100%);
    -moz-animation-name: slideouttoleft;
    -moz-animation-duration: 225ms;
    transform: translateX(-100%);
    animation-name: slideouttoleft;
    animation-duration: 225ms;
}
.slidefade.in {
    -webkit-transform: translateX(0);
    -webkit-animation-name: fadein;
    -webkit-animation-duration: 200ms;
    -moz-transform: translateX(0);
    -moz-animation-name: fadein;
    -moz-animation-duration: 200ms;
    transform: translateX(0);
    animation-name: fadein;
    animation-duration: 200ms;
}
.slidefade.out.reverse {
    -webkit-transform: translateX(100%);
    -webkit-animation-name: slideouttoright;
    -webkit-animation-duration: 200ms;
    -moz-transform: translateX(100%);
    -moz-animation-name: slideouttoright;
    -moz-animation-duration: 200ms;
    transform: translateX(100%);
    animation-name: slideouttoright;
    animation-duration: 200ms;
}
.slidefade.in.reverse {
    -webkit-transform: translateX(0);
    -webkit-animation-name: fadein;
    -webkit-animation-duration: 200ms;
    -moz-transform: translateX(0);
    -moz-animation-name: fadein;
    -moz-animation-duration: 200ms;
    transform: translateX(0);
    animation-name: fadein;
    animation-duration: 200ms;
}
/* slide down */
.slidedown.out {
    -webkit-animation-name: fadeout;
    -webkit-animation-duration: 100ms;
    -moz-animation-name: fadeout;
    -moz-animation-duration: 100ms;
    animation-name: fadeout;
    animation-duration: 100ms;
}
.slidedown.in {
    -webkit-transform: translateY(0);
    -webkit-animation-name: slideinfromtop;
    -webkit-animation-duration: 250ms;
    -moz-transform: translateY(0);
    -moz-animation-name: slideinfromtop;
    -moz-animation-duration: 250ms;
    transform: translateY(0);
    animation-name: slideinfromtop;
    animation-duration: 250ms;
}
.slidedown.in.reverse {
    -webkit-animation-name: fadein;
    -webkit-animation-duration: 150ms;
    -moz-animation-name: fadein;
    -moz-animation-duration: 150ms;
    animation-name: fadein;
    animation-duration: 150ms;
}
.slidedown.out.reverse {
    -webkit-transform: translateY(-100%);
    -webkit-animation-name: slideouttotop;
    -webkit-animation-duration: 200ms;
    -moz-transform: translateY(-100%);
    -moz-animation-name: slideouttotop;
    -moz-animation-duration: 200ms;
    transform: translateY(-100%);
    animation-name: slideouttotop;
    animation-duration: 200ms;
}
@-webkit-keyframes slideinfromtop {
    from { -webkit-transform: translateY(-100%); }
    to { -webkit-transform: translateY(0); }
}
@-moz-keyframes slideinfromtop {
    from { -moz-transform: translateY(-100%); }
    to { -moz-transform: translateY(0); }
}
@keyframes slideinfromtop {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
@-webkit-keyframes slideouttotop {
    from { -webkit-transform: translateY(0); }
    to { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes slideouttotop {
    from { -moz-transform: translateY(0); }
    to { -moz-transform: translateY(-100%); }
}
@keyframes slideouttotop {
    from { transform: translateY(0); }
    to { transform: translateY(-100%); }
}
/* slide up */
.slideup.out {
    -webkit-animation-name: fadeout;
    -webkit-animation-duration: 100ms;
    -moz-animation-name: fadeout;
    -moz-animation-duration: 100ms;
    animation-name: fadeout;
    animation-duration: 100ms;
}
.slideup.in {
    -webkit-transform: translateY(0);
    -webkit-animation-name: slideinfrombottom;
    -webkit-animation-duration: 250ms;
    -moz-transform: translateY(0);
    -moz-animation-name: slideinfrombottom;
    -moz-animation-duration: 250ms;
    transform: translateY(0);
    animation-name: slideinfrombottom;
    animation-duration: 250ms;
}
.slideup.in.reverse {
    -webkit-animation-name: fadein;
    -webkit-animation-duration: 150ms;
    -moz-animation-name: fadein;
    -moz-animation-duration: 150ms;
    animation-name: fadein;
    animation-duration: 150ms;
}
.slideup.out.reverse {
    -webkit-transform: translateY(100%);
    -webkit-animation-name: slideouttobottom;
    -webkit-animation-duration: 200ms;
    -moz-transform: translateY(100%);
    -moz-animation-name: slideouttobottom;
    -moz-animation-duration: 200ms;
    transform: translateY(100%);
    animation-name: slideouttobottom;
    animation-duration: 200ms;
}
@-webkit-keyframes slideinfrombottom {
    from { -webkit-transform: translateY(100%); }
    to { -webkit-transform: translateY(0); }
}
@-moz-keyframes slideinfrombottom {
    from { -moz-transform: translateY(100%); }
    to { -moz-transform: translateY(0); }
}
@keyframes slideinfrombottom {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
@-webkit-keyframes slideouttobottom {
    from { -webkit-transform: translateY(0); }
    to { -webkit-transform: translateY(100%); }
}
@-moz-keyframes slideouttobottom {
    from { -moz-transform: translateY(0); }
    to { -moz-transform: translateY(100%); }
}
@keyframes slideouttobottom {
    from { transform: translateY(0); }
    to { transform: translateY(100%); }
}


input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

/* loading screen */
.ui-loading .ui-loader {
    display: block;
}
.ui-loader {
    display: none;
    z-index: 9999999;
    position: fixed;
    top: 50%;
    left: 50%;
    border:0;
}
.ui-loader-default {
    background: none;
    filter: Alpha(Opacity=18);
    opacity: .18;
    width: 46px;
    height: 46px;
    margin-left: -23px;
    margin-top: -23px;
}
.ui-loader-default h1 {
    font-size: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}
.ui-loader .ui-icon {
    background-color: #000;
    display: block;
    margin: 0;
    width: 44px;
    height: 44px;
    padding: 1px;
    -webkit-border-radius: 36px;
    border-radius: 36px;
}

/* ui mobile */
.ui-mobile {
    background: #f8f9fc;
}
.ui-mobile,
.ui-mobile body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 62.5%;
}
.ui-mobile fieldset,
.ui-page {
    padding: 0;
    margin: 0;
}
.ui-mobile a img,
.ui-mobile fieldset {
    border-width: 0;
}
.ui-mobile fieldset {
    min-width: 0;
}
.ui-mobile-viewport {
    margin: 0;
    overflow-x: visible;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust:none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body.ui-mobile-viewport,
div.ui-mobile-viewport {
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.42857143;
}
.ui-mobile [data-role=page],
.ui-mobile [data-role=dialog],
.ui-page {
    width: 100%;
    min-height: 100%;
    display: none;
    order: 0;
}
.ui-mobile .ui-page-active {
    display: block;
    overflow: visible;
}
.ui-page { outline: none; }

@media screen and (orientation: portrait){
    .ui-mobile .ui-page {
        min-height: 420px;
    }
}
@media screen and (orientation: landscape){
    .ui-mobile .ui-page {
        min-height: 300px;
        max-width: 480px;
        margin: 0 auto;
        border-left: 1px solid #e7eaf3;
        border-right: 1px solid #e7eaf3;
        -moz-box-shadow: 0 0 16px rgba(0,0,0,.1);
        -webkit-box-shadow: 0 0 16px rgba(0,0,0,.1);
        box-shadow: 0 0 16px rgba(0,0,0,.1);
    }
}

/* ----------------------------------------------------------------
	header
---------------------------------------------------------------- */
.ui-header {
    position: relative;
    height: 58px;
    padding: 1.3em 20px 1.3em;
    text-align: center;
    z-index: 2;
    border-bottom: 1px solid #e5e5e5;
}
.ui-header .ui-title,
.ui-footer .ui-title {
    display: block;
    margin: 0;
    padding: 0;
    font-weight: 400;
}
.ui-header .ui-title {
    font-size: 1.5rem;
}

/* logo */
.ui-header .logo {
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 80px;
    height: 16px;
    background: url(../img/sms/logo.png);
}

/* prev */
.ui-header .prev {
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url(../img/sms/btn_prev.png);
}
/* close */
.ui-header .close {
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url(../img/sms/btn_close.png);
}

/* ----------------------------------------------------------------
	new webpay common style
---------------------------------------------------------------- */
/* body commom */
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
ul,ol,li,dl,dt,dd,table,th,td,form,fieldset,legend,input,textarea,button,select {
    margin: 0;
    padding: 0;
}
img,fieldset, button {
    border: 0;
}
button {
    background: transparent;
}
ul,ol,li {
    list-style: none;
}
em,address {
    font-style: normal;
}
b,strong {
    font-weight: 600;
}
small {
    font-size: 1.1rem;
}
a,a:visited {
    text-decoration: none;
}
img {
    max-width: 100%;
    vertical-align: top;
}

/* form */
textarea, input, select {
    background: none;
    -webkit-border-radius: 0 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 0;
}

/* input common */
input:focus {
    outline: 0!important;
}
input[type="text"],
input[type="password"] {
    width: 100%;
    height: 42px;
    font-size: 1.4rem;
    border: 1px solid transparent;
}

input:-webkit-autofill {
    -webkit-text-fill-color: #000
}
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: inset inset 0 0 0 transparent;
    -moz-box-shadow: inset inset 0 0 0 transparent;
    box-shadow: inset inset 0 0 0 transparent;
    -webkit-transition: background 0.5s ease-in-out;
    -moz-transition: background 0.5s ease-in-out;
    -ms-transition: background 0.5s ease-in-out;
    -o-transition: background 0.5s ease-in-out;
    transition: background 0.5s ease-in-out
}

input::placeholder,
input::-moz-placeholder,
textarea::placeholder,
textarea::-moz-placeholder {
    color: #ddd!important;
}
input:-ms-input-placeholder {
    color: #ddd;
}
input::placeholder {
    color: #ddd;
}

input:-moz-read-only {
    color: #999;
    background-color: #fff;
}
input:read-only {
    color: #999;
    background-color: #fff;
}
input:read-only:focus {
    border-bottom-color: #e5e5e5 !important;
}
/* form-control */
input.form-control {
    border-bottom-color: #e5e5e5;
}
input.form-control:focus {
    border-bottom-color: #000;
}

/* checkbox */
.input-chk {
    position: relative;
    display: inline-block;
    font-weight: 400;
    line-height: 24px;
    color: #666;
}
.input-chk input + span {
    display: inline-block;
    margin-left: 34px;
}
.input-chk input[type="checkbox"] {
    display: none;
}
.input-chk input[type="checkbox"] + span:before {
    position: absolute;
    left: 0;
    top: 0;
    content: " ";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../img/sms/checkbox.png) 0 0 no-repeat;
    background-size: 100%;
}
.input-chk input[type="checkbox"]:checked + span:before {
    background: url(../img/sms/checkbox.png) 0 -24px no-repeat;
    background-size: 100%;
}

/* form group */
.form-group {
    width: 100%;
}
.form-group input,
.select-wrapper select {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    color: #999;
    font-size: 1.5rem;
}
.form-group input {
    background: #fff;
    border: 1px solid #e5e5e5;
}
.form-group label {
    display: block;
}
.form-group label small {
    margin-top: 2px;
}
.form-group .guide {
    margin-top: 5px;
}
.form-group small .ico-mark-qu {
    margin-right: 3px;
    vertical-align: -3px;
}
.form-group .guide small + small {
    margin-left: 20px;
}
.form-group .card-num {
    font-size: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
}
.form-group .card-num * {
    font-size: 1.5rem;
    vertical-align: middle;
}
.form-group .card-num span {
    display: inline-block;
    width: 4%;
    text-align: center;
}
.form-group .card-num input {
    display: inline-block;
    width: 22%;
    border-color: transparent;
}
.form-group .half-2 {
    float: left;
    width: 48%;
}
.form-group .half-2 + .half-2 {
    margin-left: 4%;
}

/* form inline */
.form-inline {
    position: relative;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    background: #fff;
}
.select-wrapper:after {
    position: absolute;
    top: 17px;
    right: 12px;
    width: 12px;
    height: 7px;
    content: '';
    background: url(../img/sms/arrow_down.png) 0 0 no-repeat;
    background-size: 100%;
}
.select-wrapper select {
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    background-color: transparent;
}

/* all checkbox */
.all-check {
    margin: 4em 0 1.2em;
}
.all-check label {
    position: relative;
    display: block;
    width: 100%;
    padding: 0.9em;
    font-size: 1.5rem;
    text-align: center;
    border: 1px solid #e5e5e5;
}
.all-check input + label span {
    position: relative;
    display: inline-block;
}
.all-check input[type="checkbox"] {
    display: none;
}
.all-check input[type="checkbox"] + label span i {
    display: inline-block;
    margin-right: 10px;
    vertical-align: -3px;
    width: 18px;
    height: 16px;
    background: url(../img/sms/checkbox_all.png) 0 0 no-repeat;
    background-size: 100%;
}
.all-check input[type="checkbox"]:checked + label span i {
    background: url(../img/sms/checkbox_all.png) 0 -16px no-repeat;
    background-size: 100%;
}
.all-check input[type="checkbox"]:checked + label {
    border: 1px solid #3651f6;
}

/* clearfix */
.ui-header:after,
.form-group:after {
    content: ' ';
    display: table;
    clear: both;
}

.clearfix:after {
    display: table;
    visibility: hidden;
    clear: both;
    height: 0;
    font-size: 0;
    content: ' ';
}
.clearfix {
    display: table;
}

.hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    text-indent: -9999px;
    clip: rect(0 0 0 0);
}
/** html .clearfix{height:1%}
.clearfix{ display:inherit;}*/

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-all;
}

.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.center-block {
    display: block!important;
    margin-left: auto;
    margin-right: auto;
}
.pull-right {
    float: right;
}
.pull-left {
    float: left;
}

.red {
    color: #e11522!important;
}
.gray {
    color: #998!important;
}
.blue {
    color: #3651f6!important;
}

.bg-gray {
    background: #f8f9fc!important;
}
.bg-white {
    background: #fff!important;
}
.bd-none {
    border-color: transparent;
}

/* height align */
.row-table {
    display: table;
    width: 100%;
    height: calc(100vh - 110px);
}
.row-table .row-cell {
    display: table-cell;
    vertical-align: middle;
}

/* title */
h3,
.form-group label {
    margin: 2.5em 0 5px;
    font-size: 1.4rem;
    font-weight: 600;
}
.panel-title {
    margin: 2em 20px;
}
.panel-title h1 {
    margin-bottom: 4px;
    font-size: 1.7rem;
    font-weight: 500;
}
.panel-title p {
    color: #999;

}

/* icon */
.ui-page .ico {
    display: inline-block;
    overflow: hidden;
    text-indent: -9999px;
    vertical-align: middle;
    background-size: 100%;
}
.ico-arrow-r {
    width: 8px;
    height: 14px;
    background: url(../img/sms/arrow_right.png);
}
.ico-mark-ex {
    width: 16px;
    height: 16px;
    background: url(../img/sms/mark_ex.png);
}
.ico-mark-qu {
    width: 14px;
    height: 14px;
    background: url(../img/sms/mark_qu.png);
}

/* button */
.ui-grid-btn {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    display: table;
    table-layout: fixed;
    background: #fff;
    z-index: 10;
}
.ui-grid-btn a {
    display: table-cell;
}
.btn {
    display: inline-block;
    padding: 0.9em;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
}
.btn-blue {
    color: #fff;
    background: #3651f6;
}
.btn-gray {
    color: #000;
    background: #d1d1d1;
}
.btn-navy {
    color: #fff;
    background: #8a8da2;
}
.btn-blue-line {
    margin: 4em 0 1.2em;
    border: 1px solid #3651f6;
}

.btn-round {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.btn-sm {
    font-size: 1.3rem;
    padding: 8px 15px;
}

/* contents */
.ui-content {
    position: relative;
    height: 100%;
    min-height: 100%;
    overflow: visible;
    overflow-x: hidden;
}
.content-wrap {
    margin-bottom: 3.55em;
}
.content-wrap:after {
    clear: both;
    content: ' ';
    display: table;
}

.inner {
    margin: 0 20px;
}

/* ----------------------------------------------------------------
	layout
---------------------------------------------------------------- */
/* goods style */
.panel-goods {
    padding: 4em 0 3em;
}

.good-name {
    font-size: 1.7rem;
}

.good-price {
    padding-top: 1.6em;
}
.good-price > span {
    display: block;
    margin-bottom: 0.3em;
    color: #999;
}
.good-price p {
    font-size: 3rem;
}
.good-price p em {
    margin-left: 5px;
    font-size: 1.8rem;
    vertical-align: 2px;
}
.good-price .ico-arrow-r {
    margin-left: 8px;
    vertical-align: -2px;
}
.good-price .select-wrapper,
.good-price .form-inline {
    margin-top: 5px;
}
.good-price .form-inline input {
    padding-right: 20px;
}
.good-price .form-inline .won {
    position: absolute;
    right: 0;
    top: 12px;
}

.sell-name {
    margin-top: 1em;
}
.sell-name dl {
    width: 100%;
    padding: 1em 0;
    border-bottom: 1px solid #f3f3f3;
}
.panel-goods.bg-white .sell-name dl {
    border-bottom-color: transparent;
}
.sell-name.bank-result dl {
    border-bottom: 1px solid #f3f3f3!important;
}
.sell-name * {
    display: inline-block;
}
.sell-name dt {
    color: #999;
}
.sell-name dd {
    float: right;
    text-align: right;
    color: #666;
}
.sell-name.bank-result {
    margin-top: 4em;
}

.memo-area {
    margin-top: 20px;
    color: #999;
    font-size: 1.3rem;
}

.prod-wrap:after {
    content: ' ';
    display: block;
    height: 8px;
    margin-top: 2.5em;
    background: #f0f2f4;
}

.item {
    padding-top: 10px;
}
.item:after {
    clear: both;
    content: ' ';
    display: table;
}
.item .prod-img {
    overflow: hidden;
    float: left;
    width: 56px;
    height: 56px;
    border-radius: 5px;

}
.item .prod-img .thumb {
    position: relative;
    height: 0;
    padding-top: 100%;
    width: 100%;
    background: #f9f9f9;
    text-align: center;
}
.item .prod-img .thumb img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
img.no-img {
    width: 24px;
}
.item .prod-info {
    margin-left: 75px;
}
.item .prod-info .tit span {
    display: block;
    margin-top: 2px;
    font-size: 1.3rem;
    color: #3651f6;
}
.item .prod-info .detail {
    color: #999;
    font-size: 1.3rem;
}

/* description */
.description {
    margin-top: 2.5em;
    text-align: left;
}
.description p {
    font-size: 1.3rem;
    color: #999;
}
.description .ico-mark-ex {
    margin-right: 5px;
    vertical-align: -3px;
}
.description .label {
    min-width: 25px;
    padding: 2px 6px;
    margin-left: 7px;
    color: #55609f;
    border-radius: 50px;
    border: 1px solid #55609f;
    vertical-align: 2px;
}

/* agreement */
.agreement-wrap ul li {
    padding: 0.6em 0;
    font-weight: 400;
}
.agreement-wrap ul li:after {
    clear: both;
    content: ' ';
    display: table;
}
.agreement-wrap ul li a {
    float: right;
    color: #999;
    text-decoration: underline;
    line-height: 24px;
}

/* give-check */
.give-check {
    margin-top: 2em;
    padding: 1em;
    border-radius: 10px;
    background: #f8f9fc;
}
.give-check h3 {
    margin-top: 2em;
}
.give-check label {
    display: block;
}
.give-dropdown {
    padding: 0.1em 2em 2em 2.4em;
    border-radius: 10px;
    background: #fff;
    margin-top: 1em;
}

/* terms */
.terms-wrap {
    margin-top: 2em;
    padding-bottom: 2em;
}
.terms-wrap h1 {
    margin: 1.5em 0 0.5em;
    font-size: 1.4rem;
    font-weight: 600;
}
.terms-wrap h1:nth-child(1) {
    margin-top: 0;
}
.terms-wrap p {
    margin: 10px 0 5px 0;
}
.terms-wrap p,
.terms-wrap ol li,
.terms-wrap ol li,
.terms-wrap ul li {
    color: #666;
    font-size: 1.3rem;
}
.terms-wrap textarea {
    width: 100%;
    color: #666;
    font: inherit;
    font-size: 1.3rem!important;
}
.terms-wrap ol li,
.terms-wrap ul li {
    margin: 5px 0;
}
.terms-wrap ol ol,
.terms-wrap ol ul,
.terms-wrap ul ol,
.terms-wrap ul ul {
    margin-left: 15px;
}
.table-terms {
    width: 100%;
    margin-top: 10px;
    border-collapse: collapse;
    border-spacing: 0;
}
.table-terms thead th {
    padding: 8px 10px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
    border: 1px solid #656770;
    background: #656770;
}
.table-terms tbody th {
    text-align: left;
    font-weight: 400;
    background: #f5f5f5;
}
.table-terms tbody th,
.table-terms tbody td  {
    padding: 8px 10px;
    color: #666;
    border: 1px solid #e3e3e3;
    word-break: break-all;
    font-size: 1.2rem;
}
.table-terms tbody th.line-none {
    background:none;
}

/* 결제방식 선택 */
.pay-select a {
    margin-top: 12px;
}
.pay-select a:nth-child(even) {
    margin-left: 12px;
}
.list-type {
    position: relative;
    float: left;
    width: calc(50% - 6px);
    min-height: 90px;
    display: block;
    color: #222;
    text-align: center;
    border: 1px solid #eeeef0;
    background: #fff;
}
.list-type p {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
}
.list-type p span {
    vertical-align: middle;
    margin-left: 10px;
}
.list-type p:before {
    display: inline-block;
    content: '';
    vertical-align: middle;
    background-size: 100% !important;
}
.naverpay p:before {
    width: 44px;
    height: 21px;
    background: url("../img/sms/icon_npay.png") 0 center no-repeat;
}
.kakao p:before {
    width: 43px;
    height: 21px;
    background: url("../img/sms/icon_kakao.png") 0 center no-repeat;
}
.payco p:before {
    width: 56px;
    height: 21px;
    background: url("../img/sms/icon_payco.png") 0 center no-repeat;
}
.card p:before {
    width: 24px;
    height: 22px;
    background: url("../img/sms/icon_card.png") 0 center no-repeat;
}
.mobile p:before {
    width: 23px;
    height: 22px;
    background: url("../img/sms/icon_mobile.png") 0 center no-repeat;
}
.bank p:before {
    width: 24px;
    height: 22px;
    background: url("../img/sms/icon_bank.png") 0 center no-repeat;
}

/* 결제 선택 */
.list-btn {
    position: relative;
    padding: 0 20px;
    min-height: 90px;
    display: block;
    color: #222;
    text-align: left;
    border: 1px solid #eeeef0;
    background: #fff;
}
.list-btn + .list-btn {
    margin-top: 12px;
}
.list-btn:before,
.list-btn:after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-size: 100%!important;
}
.list-btn:after {
    right: 20px;
    width: 8px;
    height: 13px;
    background: url("../img/sms/arrow_right.png") right center no-repeat;
}
.list-btn:before {
    left: 20px;
    width: 31px;
    height: 22px;
}
.list-btn p {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 65px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.5rem;
}
.list-btn small {
    display: block;
    margin-top: 3px;
    color: #aaa;
}
.list-btn small span {
    margin-left: 5px;
    color: #e11522;
}
.check:before {
    background: url("../img/sms/icon_check_card.png") left center no-repeat;
}
.corp:before {
    background: url("../img/sms/icon_corp_card.png") left center no-repeat;
}
.isp:before {
    background: url("../img/sms/icon_isp_card.png") left center no-repeat;
}
.account:before {
    background: url("../img/sms/icon_account.png") left center no-repeat;
    background-size: 100%;
}
.imagine:before  {
    background: url("../img/sms/icon_imagine.png") left center no-repeat;
    background-size: 100%;
}
.card:before {
    background: url("../img/sms/icon_card.png") left center no-repeat;
    background-size: 100%;
}

/* cont style */
.panel-cont {
    padding: 0.1em 0 3em;
}

/* 통신사 선택 */
.mobile-select:after {
    clear: both;
    content: ' ';
    display: table;
}
.mobile-select .list {
    margin-top: 12px;
}
.mobile-select .list:nth-child(even) {
    margin-left: 12px;
}
.mobile-select .list {
    float: left;
    width: calc(50% - 6px);
    text-align: center;

}
.mobile-select .list label {
    position: relative;
    width: 100%;
    min-height: 90px;
    display: block;
    border: 1px solid #eeeef0;
    background: #fff;
}
.mobile-select input[type="radio"] {
    display: none;
}
.mobile-select input[type="radio"]:checked + label {
    border: 1px solid #666;
}
.mobile-select .list img {
    width: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* alert message */
.alert-msg {
    padding: 0 20px;
    text-align: center;
    color: #999;
    font-size: 1.5rem;
}
.alert-msg:before {
    display: block;
    content: '';
    width: 70px;
    height: 70px;
    margin: 0 auto 2.5em;
    background: url("../img/sms/alert_msg.png") 0 0 no-repeat;
    background-size: 100%;
}

/* loading message */
.road-msg {
    margin-top: 3em;
    color: #999;
    text-align: center;
}
.road-msg p + p {
    margin-top: 5px;
}

/* escrow popup */
.btn-escrow {
    margin: 10px 0 0 34px;
}
.escrow-popup {
    padding: 4em 0;
    text-align: center;
}
.escrow-popup .escrow-img p {
    margin-top: 1.5em;
    color: #999;
}
.escrow-popup .escrow-img b {
    display: block;
    margin-top: 2px;
    color: #000;
    font-size: 1.6rem;
}
.escrow-popup .escrow-img img {
    width: 75px;
}
.escrow-popup .escrow-cont {
    padding: 16px 18px;
    margin-top: 3rem;
    font-size: 1.2rem;
    color: #666;
    text-align: justify;
    background: #f5f5f5;
}
.escrow-popup .escrow-cont p {
    color:#0072bc;
    font-weight: bold;
}
.escrow-popup table {
    margin: 1.5em 0 0.8em;
    text-align: left;
}
.escrow-popup .description {
    margin-top: 0;
}

/* isp 결제 카드사 선택 */
#cardlist:after {
    content: ' ';
    display: table;
    clear: both;
}
#cardlist img {
    display: block;
    height: 16px;
    margin: 0 auto 4px;
}
#cardlist li.btncard {
    position: relative;
    float: left;
    display: block;
    width: calc(33.3333% - 6px);
    margin-right: 9px;
    margin-top: 9px;
    padding: 10px;
    text-align: center;
    font-size: 1.2rem;
    color: #222;
    background: #fff;

}
#cardlist li.btncard:nth-of-type(3n) {
    margin-right: 0;
}
#cardlist li.btncard:before,
#cardlist li.btncard.on:before {
    display: block;
    content: ' ';
    position: absolute;
}
#cardlist li.btncard:before {
    left: -1px;
    right: -1px;
    top: -1px;
    bottom: -1px;
    border: 1px solid #eeeef0;
}
#cardlist li.btncard.on:before {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 1px solid #666;
    z-index: 1;
}

/* 링크결제 tab */
.currencySelect {
    padding: 0 20px;
    background: #f8f9fc;

}
.currencySelect a {
    position: relative;
    display: inline-block;
    padding: 1.6em 0 0.9em;
    text-align: center;
    color: #999;
    font-weight: 600;
}
.currencySelect a:not(:first-child) {
    margin-left: 2em;
}
.currencySelect a.select {
    color: #333;
}
.currencySelect a.select:after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #f6ab36;
}

/* 국가 번호 선택 */
.nation-select {
    border-bottom: 1px solid #e5e5e5;
}
.nation-select input {
    padding: 0;
    border-color: transparent;
}
.nation-select *[class*="col-"] {
    float: left;
}
.nation-select .col-5 {
    width: 40%;
}
.nation-select .col-7 {
    width: 60%;
}
.nation-area {
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: right;
    font-size: 0;
}
.nation-area:after {
    position: absolute;
    top: 17px;
    right: 0;
    width: 12px;
    height: 7px;
    content: '';
    background: url(../img/sms/arrow_down.png) 0 0 no-repeat;
    background-size: 100%;
}
.nation-area input {
    width: 20%;
    font-size: 1.2rem;
    text-align: right;
}
.nation-area span {
    width: auto;
    padding: 0 25px 0 10px;
    color: #666;
    font-size: 1.2rem;
    display: inline-table;
}
.nation-area img {
    height: 18px;
    margin-right: 8px;
    vertical-align: -5px;
}

/* 국가 선택 팝업 */
.ui-collapsible-heading {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
}
.ui-collapsible-heading a.ui-btn {
    position: relative;
    display: block;
    color: #222;
    padding: 1.8em 0;
    border-bottom: 1px solid #f3f3f3;
}
.ui-collapsible-heading:after {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 12px;
    height: 7px;
    margin-top: -3px;
    content: '';
    background: url(../img/sms/arrow_down.png) 0 0 no-repeat;
    background-size: 100%;
}
.ui-collapsible-heading-status {
    position: absolute;
    top: -9999px;
    left: 0;
}
.ui-icon-arrow-r {
    display: none;
}
.ui-collapsible-content {
    display: block;
    margin: 10px 0;
}
.ui-collapsible-content-collapsed {
    display: none;
}
.ui-listview:after {
    content: ' ';
    display: table;
    clear: both;
}
.ui-collapsible-content .ui-btn-up-c {
    position: relative;
    float: left;
    display: block;
    width: calc(33.3333% - 6px);
    margin-right: 9px;
    margin-top: 9px;
    text-align: center;
    border: 1px solid #eeeef0;
    background: #f7f7f7;
}
.ui-btn-up-c .ui-btn-text a {
    display: block;
    padding: 10px 0;
}
.ui-collapsible-content .ui-btn-up-c:nth-of-type(3n) {
    margin-right: 0;
}
.ui-btn-up-c .ui-btn-text img {
    height: 20px;
    margin-bottom: 5px;
}
.ui-btn-up-c .ui-btn-text span {
    display: block;
    font-size: 1.2rem;
    color: #222;
}
.ui-btn-up-c .ui-btn-text span.nationcodeIN {
    position: absolute;
    right: 10px;
    top: 7px;
    color: #999;
}

