
 


html, body {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%; 
	-ms-text-size-adjust: 100%; 
    color: #4a4a4a;
    font-family: "Nanum Gothic", malgun gothic;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.471;
    margin:0;
    background-color:#f2f2f2;
    height:100%;
    min-width:300px;
}

a,
a:visited,
a:focus,
a:active,
a:hover,
a:focus{
	text-decoration:none;
	color:inherit;
}


html, div, span,  menu, nav{
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    color: inherit;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #aaa;
    opacity: 1; /* Firefox */
}

.nav-tabs{
	border:0px;
	margin-bottom:18px;
	width:200px;
	display:flex;
}

.nav-tabs li{
	flex:1;
}


.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    color: #fff;
    cursor: pointer;
    background-color: #333;
    border: 1px solid #333;
}

.nav-tabs>li>a {
    border: 1px solid #333;
    margin:0;
    border-radius: 0;
    font-size:13px;
    text-align:center;
    padding:8px;
    background-color: #fff;
}

.nav-tabs>li>a:hover, .nav-tabs>li>a:focus {
    border: 1px solid #333;
    margin:0;
    border-radius: 0;
    font-size:13px;
    text-align:center;
    padding:8px;
    background-color: #fff;
}

.cover {
    background: url("../img/cover_bg.png") no-repeat;
    background-position: top;
    background-size: 100% 275px;
}

.cover .cover-title img {
    display: block;
    width: 280px;
    margin: 0 auto 30px;
    padding-top: 30px;
}

.cover-login {
    width: 280px;
    margin: 0 auto;
}


.cover-login .field .icon {
    height: 100% !important;
    font-size: 14px;
    padding-left: 6px;
}

.cover-login button {
    padding: 8px 0;
    height: auto;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    justify-content: center;
    align-items: center;
}

.icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    height: 30px;
    width: 30px;
}

.control {
    font-size: 15px;
    position: relative;
    text-align: left;
    display:flex;
}

.control .checkbox+.checkbox, .control .radio+.radio {
    margin-top: 0px;
}
.control.has-icons-left .icon, .control.has-icons-right .icon {
    color: #dbdbdb;
    height: 30px;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 30px;
    z-index: 4;
}

.cover-login .field input[type="text"], .cover-login .field input[type="password"] {
    height: 35px;
    font-size: 16px;
}

.cover-login .extra-link {
    margin-top: 30px;
}
.cover-login .extra-link a {
    display: block;
    color: #333;
    margin-bottom: 7px;
    cursor:pointer;
}

.cover-login .extra-link a span {
    border-bottom: 1px solid;
}
.cover-login .extra-link a i {
    vertical-align: middle;
}

.control.has-icons-left .input, .control.has-icons-left .select select {
    padding-left: 40px;
}

.field label {
    font-size: 16px;
}
.cover-login label {
    /* margin-right: 20px; */
    flex:1;
}

.cover-login label input {
    vertical-align: middle;
}
.checkbox input, .radio input {
    cursor: pointer;
    margin:0px !important;
    position:relative !important;
    
}
.checkbox, .radio {
    cursor: pointer;
    display: inline-block;
    line-height: 1.25;
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
}

.checkbox span{
	font-weight: 500;
    font-size:15px;
}

footer {
    padding: 20px 0;
    text-align: center;
    color: #bbb;
    font-size: 11px;
}







.loader {
	display:none;
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
}


.loading-overlay.show-loading .loader{
	display:block;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-overlay{
    position: fixed;
    display:flex;
	top:0;
	left:0;
	width:100%;
	height:100%;
	
	align-items: center;
	justify-content: center;
	z-index: 9999;
	visibility: hidden;
	background-color: rgba(0, 0, 0, 0);
	
	-webkit-transition: visibility 0.3s, background-color 0.3s ease-in;
    -moz-transition: visibility 0.3s, background-color 0.3s ease-in;
    transition: visibility 0.3s, background-color 0.3s ease-in;
  }
  
.loading-overlay.show-loading{
	background-color: rgba(0, 0, 0, 0.4);
	visibility: visible;
	-webkit-transition: background-color 1.3s ease-out;
	-moz-transition: background-color 1.3s ease-out;
	transition: background-color 1.3s ease-out;
  }
  
  
.main-container{
	position:relative;
	background:#ffffff;
	overflow:hidden;
}
.main-container .content{
	float:left;
	
}

.page{
	/* background:#f0f1f0; */
	height:100%;
}


.page-content{
	
	/* width:100%; */
	/* height:100%; */
	/* flex:1;
	display:flex;
	flex-direction: column;  */
	padding:20px; 
}



.x-panel {
    position: relative;
    width: 100%;
    display: block;
    margin: auto;
    margin-bottom: 10px;
    /* padding: 10px 17px; */
    background: #fff;
    border: 1px solid #E6E9ED;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    column-break-inside: avoid;
    opacity: 1;
    transition: all .2s ease;
    box-shadow: 2px 2px 10px rgba(0,0,0,.05);
}

.x-panel .panel-header{
	display:flex;
	flex-direction: row;
	border-bottom : 1px solid #E6E9ED;
	padding:10px 20px;
}
.x-panel .panel-body{
	padding:10px 20px;
}

.panel-header .header-title{
	flex:1;
	font-weight: 500;
}
.panel-header .header-sub-title{
	text-align:right;
	font-weight: 700;
}

.panel-body .item-row{
	display:flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.panel-body .divider-bottom{
	border-bottom: 1px solid #E6E9ED;
	/* padding:10px 0px; */
	padding-bottom:10px;
}

.panel-body .body-group{
	padding-bottom:10px;
}

.panel-body .body-bottom{
	padding-top:10px;
	text-align:right;
}

.align-right{
	text-align: right;
	
}
.margin-left-10{
	margin-left:10px;
}

.padding-20{
	padding:20px;
}

.padding-top-10{
	padding-top:10px;
}


.table .td-center {
    text-align: center;
    vertical-align:middle;
}
.table .td-left{
	vertical-align:middle;
}
.table p{
	vertical-align:middle;
	margin:0 0;
}



.notice-field{
	
}

.notice-field .title{
	width:100%;
	margin-bottom:5px;
	font-size:17px;
	font-weight:500;
}

.notice-field .sub-title{
	width:100%;
	margin-bottom:10px;
	font-size:12px;
}

.notice-field .divider{
	height:1px;
	width:100%;
	border-bottom:1px solid #dbdbdb;
	margin-bottom:10px;
}

.notice-field .description{
	font-size:16px;
}


<!-- -->

i {
    margin-right: 5px;
}

.body-content .button, .input, .textarea, .select select, .file-cta, .file-name, .pagination-previous, .pagination-next, .pagination-link, .pagination-ellipsis {
    -moz-appearance: none;
    -webkit-appearance: none;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: none;
    display: inline-flex;
    height: 20px;
    justify-content: flex-start;
    line-height: 1.5;
    padding:5px;
    position: relative;
    vertical-align: top;
}


.label:not(:last-child) {
    margin-bottom: 10px;
}

.field.is-horizontal {
    display: flex;
}
.field:not(:last-child) {
    margin-bottom: 9px;
}

.field-label {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: normal;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 0;
    margin: 0;
    margin-right: 0px;
}

.field-label .label {
    font-size: inherit;
}

.label {
    color: #363636;
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding:0px;
    margin:0px;
    text-align:left;
}

.field-body {
    display: flex;
    flex-basis: 0;
    flex-grow: 2;
    flex-shrink: 1;
}

.field-body .field {
    width: 100%;
}

.field-body .field input {
    text-align: right;
}

.field .input {
    font-size: 15px;
    height: 39px;
    font-weight:500;
    padding-left:10px;
    padding-right:10px;
}

.input, .textarea {
    background-color: white;
    border-color: #dbdbdb;
    color: #363636;
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
    max-width: 100%;
    width: 100%;
}

.input[disabled], .textarea[disabled] {
    color: #000;
    opacity: 1;
    background-color:#dddddd;
    box-shadow: none;
    border: 1px solid rgba(10, 10, 10, 0.1);
}

/* .content .buttons.main-first {
    margin-bottom: .5rem !important;
}
 */
.body-content .buttons {
    margin-top: 30px;
}
.buttons.no-margin{
	margin-top: 0px;
}

.body-content .message-box{
	/* margin-top:20px; */
}

.header-4{
	font-size:20px;
	font-weight:700;
	text-align:center;
	padding-bottom:20px;
}

.header-5{
	font-size:15px;
	font-weight:500;
	text-align:justify;
}

.header-6{
	font-size:12px;
	font-weight:500;
	text-align:justify;
}

.body-content .notice{
	/* color:#ff0000; */
}

.body-content .checkbox label{
	padding-left:0px;
	display:flex;
	align-items: center;
}
.body-content .icheckbox_flat-green{
	margin-right:5px;
}

.buttons:not(:last-child) {
    margin-bottom: 1rem;
}

.buttons {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.body-content .buttons.main-tel a {
    margin-bottom: 0 !important;
}

.body-content .buttons.main-first {
    margin-top: 10px;
    margin-bottom: 8px !important;
    
}

.body-content .buttons.main-first .button {
    margin-bottom: 0;
}

.body-content .buttons.main-second {
    margin-top: 0;
    font-size: 0;
}

.body-content .buttons.main-second .button {
    display: flex;
    flex-basis: 0;
    flex-grow: 1;
    height: 80px;
    padding: 10px 0;
    align-items: flex-end;
    font-size: 11px;
}

.body-content .buttons.main-second .button i {
    position: absolute;
    top: 15px;
    font-size: 30px;
    white-space: nowrap;
}

.button.is-fullwidth {
    display: flex;
    width: 100%;
}

.body-content .button.is-large {
    height: 65px;
}

.body-content .button.is-large i {
    font-size: 35px;
    margin-right: 10px;
}

.body-content .button.is-large span {
    font-size: 21px;
    font-weight: 600;
}



.body-content .button {
    background-color: white;
    border-color: #dbdbdb;
    border-width: 1px;
    color: #363636;
    cursor: pointer;
    justify-content: center;
    padding:10px;
    text-align: center;
    white-space: nowrap;
}

.button.is-warning {
    background-color: #ffdd57;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}



.body-content .buttons.main-second .button {
    display: flex;
    flex-basis: 0;
    flex-grow: 1;
    height: 80px;
    padding: 10px 0;
    align-items: flex-end;
    font-size: 11px;
}

.body-content .buttons.main-second-small .button{
    flex-grow: 1;
    height: 40px;
    padding: 10px 0;
    font-size: 16px;
}

.body-content .buttons.main-second-small .button i {
    font-size: 16px;
    white-space: nowrap;
}

.body-content .buttons.main-second .button i {
    position: absolute;
    top: 15px;
    font-size: 30px;
    white-space: nowrap;
}

.buttons .button:not(:last-child) {
    margin-right: 8px;
}

.buttons:last-child {
    margin-bottom: 0px;
}

.button.is-dark {
    background-color: #363636;
    border-color: transparent;
    color: whitesmoke;
}
.button.is-Grey {
    background-color: gray;
    border-color: transparent;
    color: whitesmoke;
}
.body-content .button.is-medium {
    height: 50px;
    font-weight: 600;
    font-size:16px;
    margin:2px;
}

.body-content .image-box {
    margin-top: 20px;
}

.image-box img {
    height: auto;
    max-width: 100%;
    width:100%;
    border:1px solid #dbdbdb;
    border-radius:4px;
}

.bootstrap-select.select{
	width:100% !important;
}
.bootstrap-select .btn{
	height:39px;
	font-size:15px;
	border-color: #dbdbdb;
	box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
}

.box {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
    color: #4a4a4a;
    display: block;
    padding: 20px;
    margin-bottom:10px;
}
.box-coupon2 {
    box-shadow: 0 1px 3px rgba(10, 10, 10, 0.1);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    padding: 5px;
    margin-bottom:5px;    
}

.box-coupon2 .coupon-info2 {
    font-size: 16px;
    padding: 5px 0;
}

.box-coupon2 h1 {
    font-size: 14px;
    /* font-weight: normal; */
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    margin-top:0px;
}

.box-coupon2 i {
    color: #ffda2b;
    font-size: 20px;
    vertical-align: -3px;
}


.box-coupon3 {
	border: 1px #800080;
    box-shadow: 0 1px 3px rgba(10, 10, 10, 0.1);
/*    box-shadow: 1px 1px 1px rgba(10, 10, 10, 0.1);
*/
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    padding: 5px;
    margin-bottom:5px;    
    background:#ffdd57      /* #ffd7c4   */
}
.box-coupon3 .coupon-info3 {
    font-size: 14px;
    padding: 5px 0;
}
.box-coupon3 h1 {
    font-size: 16px;
    /* font-weight: normal; */
    padding-bottom: 10px;
    border-bottom: 1px solid #804000;
    margin-top:0px;
}
.box-coupon3 i {
    color: #ff5b5b;
    font-size: 14px;
    vertical-align: -3px;
}

.box-coupon3 .top-info {
    display: flex;
    justify-content: space-between;
}


.box-coupon {
    box-shadow: 0 1px 3px rgba(10, 10, 10, 0.1);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.box-coupon .coupon-info {
    text-align: center;
    font-size: 25px;
    padding: 10px 0;
}

.box-coupon .coupon-info .num {
    font-weight: 600;
}

.box-coupon .coupon-info .price {
    color: #999;
}

.box-coupon .coupon-info .price::before {
    display: inline-block;
    content: '(';
}

.box-coupon .coupon-info .price::after {
    display: inline-block;
    content: ')';
}

.box-coupon h1 {
    font-size: 15px;
    /* font-weight: normal; */
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    margin-top:0px;
}

.box-coupon h1 i {
    color: #ffda2b;
    font-size: 20px;
    vertical-align: -3px;
}


.dropdown-menu{
	font-size:15px;
}

.dropdown-menu>li>a {
	padding:5px 20px;
}


.control-btn{
	display:flex;
	align-items:center;
}
.control-btn .button{
	height:100%;
	margin-left:10px;
	padding:8px 14px;
}

.btn-primary {
    background-color: #363636;
    border-color: transparent;
    color: whitesmoke;
}

.btn-primary:hover {
    background-color: #363636;
    border-color: transparent;
    color: whitesmoke;
}

.btn-normal {
    background-color: transparent;
    border-color: #363636;
    color: #363636;
}

.btn-normal:hover {
    background-color: transparent;
    border-color: #363636;
    color: #363636;
}

span.error-msg{
	color:#ff0000;
	font-size:14px;
}

.content {
    margin-bottom: 0 !important;
}

.content-main-wrap {
    padding: 0 0;
}

.buttons.main-tel {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.box.no-padding {
    padding: 0;
}

.board-list {
	width: 100% 
}

.board-list td {
    padding: 10px !important;
    border: 1px solid #dbdbdb;
    border-width: 0 0 1px;
    /* padding: 0.5em 0.75em; */
    vertical-align: top;    
}

.board-list table td, .board-list table th {
    border: 1px solid #dbdbdb;
    border-width: 0 0 1px;
    padding: 0.5em 0.75em;
    vertical-align: top;
}

.board-list .top-info {
    display: flex;
    color: #999;
    justify-content: space-between;
}

.board-list .bottom-info {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.board-list .bottom-info .item {
    /* font-weight: 600; */
}

.board-list .bottom-info .value {
    font-weight: 600;
}

.content table td, .content table th {
    border: 1px solid #dbdbdb;
    border-width: 0 0 1px;
    padding: 0.5em 0.75em;
    vertical-align: top;
}

.span_cycle {
    font-size: .8em;
    background-color :red;
    width: 1em;
    border-radius: 3em;
    padding: .1em  .2em;
    line-height: 1.25em;
    border: 1px solid red;
    color: white;
    text-align: center;
  }
.coupon-info2 .top-info {
    display: flex;
    color: #999;
    justify-content: space-between;
}

.coupon-info2 .bottom-info {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.prepayment {
    position: relative;
    margin: 5px; 
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.prepayment::after {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    content: "";
    background: url(../images/logo.png) no-repeat;
    background-size: 100%;
    width: 40px;
    height: 35px;
}

.prepayment-top .name {
    position: absolute;
    left: 20px;
    background-color: #34bd8f;
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.prepayment-top {
    padding-left: 55px;
    line-height: 40px;
}

.prepayment-top .price {
    font-size: 22px;
    color: #000;
}

.prepayment-org dl {
    margin-top: 15px;
    background-color: #eee;
    overflow: hidden;
    padding: 7px 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.prepayment-org dt {
    position: absolute;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    border-bottom: 1px solid;
}

.prepayment-org dd.org-name {
    font-weight: 600;
}

.prepayment-org dd {
    padding: 0;
    margin: 0;
    padding-left: 46px;
    font-size: 11px;
    line-height: 1.3;
}

.prepayment-bottom {
    font-size: 10px;
    margin-top: 10px;
    letter-spacing: 1px;
    color: #999;
}


/* margin */
.mt20 {
    margin-top: 20px;
}

/* font */
.font-small {
    font-size: 12px !important;
}

/* front */
.front-bg{background: #f4f8ff url('../img2/front.png') no-repeat 50%;background-size: 45%;height:100%;}
