@charset "utf-8";
/* -------------------------------------------
*
* Project : 웰빙클럽 
* File name : wellbing.css
* Version : 1.0.0
* Dependency : css/reset.css
*              css/bootstrap.min.css
* Summary : 
* 1) Input
* 2) Bootstrap Components
* 3) Button
* 4) Sitemap
* 5) color / paragraph
*
* -------------------------------------------*/


/* **************************************** *
 * Input, Select, Dropdown
 * **************************************** */

/* Select */
select{
    -webkit-appearance: none; /* 네이티브 외형 감추기 */ 
    -moz-appearance: none; 
    appearance: none; 

    padding: 7px 30px 7px 8px;
    /* padding:10px; */
    border: 1px solid #bbbbbb;
    border-radius: 3px;
    font-size: 15px;
    background: #fff url('../images/icon/icon_select.png')no-repeat;
    background-size: 10px 6px;
    background-position: 94%;
}

select::-ms-expand {
    display: none;
}

/* Button */
button{
   -webkit-appearance: none; /* 네이티브 외형 감추기 */ 
    -moz-appearance: none; 
    appearance: none;  
}

/* Input */
input{
    padding: 10px;
    margin-bottom: 0px;
    border: 1px solid #dedede;
    border-radius: 3px;
}

input.width13{
    width: 13%;
}

input.width33{
    width: 33%;
}

input.width50{
    width: 50%;
	margin: 0px 0px;
}

input.width100{
    width: 100%;
}


/* Input - Label */
label{
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
}

label.checkbox-label{
    width: auto;
    margin-right: 5px;
}


/* Input - Text */
input[type="text"]{
    -webkit-appearance: none; /* 네이티브 외형 감추기 */ 
    -moz-appearance: none; 
    appearance: none; 
}


/* Input - Checkbox */
input[type="checkbox"]{
    position: absolute; 
    width: 1px; 
    height: 1px; 
    padding: 0; 
    margin: -1px; 
    overflow: hidden; 
    clip:rect(0,0,0,0); 
    border: 0;
}

input[type="checkbox"] + label { 
    display: inline-block; 
    position: relative;
    cursor: pointer;
    width: auto;
    padding-left: 25px;
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none;
    color: #313131;
    font-size: 16px;
    letter-spacing: 0;
}

input[type="checkbox"] + label::before{
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    width: 25px;
    height: 25px;
    background: url('../images/icon/icon_checkbox_unchecked.png')no-repeat;
    background-size: 20px;
    line-height: 25px;
}

input[type="checkbox"]:checked + label::before{
    background: url('../images/icon/icon_checkbox_checked.png')no-repeat;
    background-size: 20px;
}


/* Input - Radio */
input[type="radio"]{
    position: absolute; 
    width: 1px; 
    height: 1px; 
    padding: 0; 
    margin: -1px; 
    overflow: hidden; 
    clip:rect(0,0,0,0); 
    border: 0;
}

input[type="radio"] + label { 
    display: inline-block; 
    position: relative; 
    cursor: pointer;
    padding-left: 25px;
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
}

input[type="radio"] + label::before{
    position: absolute;
    content: '';
    top: 1px;
    left: 0px;
    width: 25px;
    height: 25px;
    background: url('../images/icon/icon_radio.png')no-repeat;
    background-size: 20px;
    line-height: 25px;
}

input[type="radio"]:checked + label::before{
    background: url('../images/icon/icon_radio_checked.png')no-repeat;
    background-size: 20px;
}


/* Input - Date */
input[type="date"]{
    width: 50%;
    padding: 10px;
    font-size: 18px;
}

label.lable-btn{
    width: 50%;
}

#ui-datepicker-div{
    display: none;
}

table.ui-datepicker-calendar{
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.ui-datepicker-title{
    padding: 8px 8px;
    border-top: 2px solid #ddd;
    background: #fff;
}

.ui-datepicker-prev, .ui-datepicker-next{
    display: none;
} 

.ui-datepicker thead th {
    padding: 20px;
    font-size: 17px;
    background-color: #fff;
    border-bottom: 1px solid #bbb;
    text-align: center;
}

.ui-datepicker tbody td a{
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
    color: #333;
}

.ui-datepicker tbody td.ui-state-disabled span {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
    color: #afafaf;
}

.ui-datepicker tbody td{
    text-align: center;
}

.hasDatepicker{
	margin-right: 5px;
}

/* Datapicker type3 */
#ui-datepicker-div.datepicker3{
	overflow: hidden;
	margin-top: 4px;
	box-shadow: 0 0.5rem 3rem rgba(0,0,0,0.05);
	border-radius: 5px;
}

#ui-datepicker-div.datepicker3 .ui-datepicker-title{
	border: 1px solid #ddd;
	background: #d9dade;
	text-align: center;
}

#ui-datepicker-div.datepicker3 .ui-datepicker-title select{
	padding: 5px 25px 5px 8px;
}

#ui-datepicker-div.datepicker3 table.ui-datepicker-calendar{
	border-top: 0px;
}

#ui-datepicker-div.datepicker3.ui-datepicker thead th{
	padding: 15px;
}

#ui-datepicker-div.datepicker3 .ui-datepicker-month{
	margin-left: 10px;
}	

#ui-datepicker-div.datepicker3.ui-datepicker tbody td a.ui-state-highlight{
	color: #1f66f5;
}


/* Input - Place holder */
input::-webkit-input-placeholder, select::-webkit-input-placeholder{
    font-size: 17px;
    color: #c6c6c6;
}

input::-moz-placeholder, select::-moz-placeholder {
    font-size: 15px;
    color: #999;
}

input:-ms-input-placeholder, select:-ms-input-placeholder { 
    font-size: 15px;
    color: #999;
}

input:-moz-placeholder, select:-moz-placeholder {
    font-size: 15px;
    color: #999;
}


/* Input - Switch */
.switch {
    float: right;
    position: relative;
    display: inline-block;
    width: 65px;
    height: 29px;
    margin-bottom: 0px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #1f66f5;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(38px);
    -ms-transform: translateX(38px);
    transform: translateX(38px);
}

input:checked + .slider:after{
    position: absolute;
    content: "동의";
    width: auto;
    height: auto;
    left: 10px;
    bottom: 4px;
    background-color: transparent;
    font-weight: 500;
    color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
}

input#srchTotal{
	width: 80%;
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/* **************************************** *
 * Bootstrap Components
 * **************************************** */

/* Bootstrap Components - Modal */
.modal {
    text-align: center;
    padding: 0!important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-dialog {
    overflow: hidden;
    display: inline-block;
    border-radius: 3px;
    text-align: left;
    vertical-align: middle;
}


.modal-header{
    border-bottom:0;
    background: #d7dcea;
}
.modal-dialog.modal-fullsize {
  width: 360px;
  height: auto;
  margin: 0;
  padding: 0;
}
.modal-content.modal-fullsize {
  height: auto;
  min-height: 360px;
  border-radius: 0; 
}
.modal-body .wrap{margin:auto;}

.modal-header .close {
    margin-top: 0px;
}

.modal-title {
    margin: 0;
    line-height: 1.42857143;
    color: #fff;
    text-align: center;
}
.modal-content.basic .modal-header .close{ color: #000000; }
.modal-header .close {
    margin-top: 0px;
    color: #ffffff;
    opacity: 1;
    line-height: 1.2;
}

.modal-body {
    position: relative;
    overflow-y: scroll;
    height: auto;
    padding: 0px;
    margin-top: -1px;
    color: #000;
    text-align: left;
}

.modal-content {
    border: 0px solid #fff;
}

.modal-open .modal {
    height: 100vh;
    overflow: auto;
}

/* Bootstrap Components - Modal - No Header */
.modal-content h3{
    margin-bottom: 17px;
    font-size: 18px;
	font-weight: 400;
    letter-spacing: -1px;
}

.modal-content.no-header .modal-header {
    display: none;
}

/* Bootstrap Components - Modal - Caution */
.modal-content.guide .modal-header {
    padding: 15px 20px;
    background: #525252;
    text-align: left;
}

.modal-content.guide .modal-header .modal-title{
    text-align: left;
}

/* Bootstrap Components - Modal - Caution */
.modal-content.guide.caution .modal-header {
    background: #ff5258;
}


/* Bootstrap Components - Modal - Caution */
.modal-content.guide.caution2 .modal-header {
    background: #5494fe;
}

/* Bootstrap Components - Modal - Caution */
.modal-content.guide.caution3 .modal-header {
    background: #01d26c;
}

/* Bootstrap Components - Modal - Caution */
.modal-content.guide.caution4 .modal-header {
    background: #ffbf00;
}


/* Bootstrap Components - Modal - box-info */
.modal-body .wrap{
    float: left;
}

.modal-body .box-info{
    padding: 20px;
}

.modal-body .box-info:last-child{
    padding: 10px;
    margin-bottom: 0px;
}

.modal-body .box-info.no-pd:last-child{
    padding: 0px;
    margin-bottom: 0px;
}

.modal-body .box-info .row-inner{
    padding: 20px 10px 20px;
}

.modal-body .box-info .row-inner.pd-small{
    padding: 10px 10px 10px;
}

.modal-body .box-info .row-inner .title{
    padding: 10px 0px 10px;
}

.modal-body .box-info .row-inner ul.list-table li > div.title{
	padding: 5px 10px 5px;
	width: 30%;
	font-size: 14px;
}

.modal-body .box-info .row-inner ul.list-table li > div.title.wd80{
	width: 80%;
}

.modal-body .box-info .row-inner ul.list-table li > div.desc{
	padding: 5px 10px 5px;
	width: 70%;
}

.modal-body .box-info .row-inner ul.list-table li > div.desc.wd20{
	width: 20%;
}

.modal-body .box-info .row-inner ul.list-table li > div.desc .nbr{
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 20px;
	background: #fff;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	color: #000;
}


.modal-body .box-info .row-inner ul.list-table li > div.detail{
	width: 100%;
	padding: 5px 10px 5px;
	border-top: 1px dotted #ddd;
	color: #888;
}

.modal-body  .box-info .row-inner .wrap.privacy .title{
	padding: 0px 0px;
	padding-left: 25px;
}

.modal-body .box-info-footer{
    overflow: hidden;
    padding: 12px 0px;
    margin-bottom: 0px;
    border-top: 0px solid #e8e8e8;
    background: #eef0f6;
}

.modal-body .box-info.no-round{
    border: 0px;
    border-radius: 0px;
}


/* Bootstrap Components - Modal - Confirm */
.modal-body .box-comfirm{
    padding: 50px;
    text-align: center;
}

.modal-body .box-comfirm p.title{
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -.5px;
}


/* Bootstrap Components - Accodion */
.panel-default>.panel-heading {
    color: #333;
    background-color: #fff;
    border-color: #ddd;
}

.panel-heading {
    padding: 0px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.panel-heading .panel-title a{
    display: block;
    padding: 30px 15px;
	font-weight: 400;
	color: #333;
	line-height: 1.6;
}


.panel-heading .panel-title a span.desc{
    padding-left: 6%;
	margin-bottom: 0px;
	font-size: 18px;
	font-weight: 200;
	color: #212529;
}

.panel-body {
    padding: 30px 15px;
    font-size: 15px;
	color: #666;
	background: #f7f7f7;
}

.panel-body p.desc{
    padding-left: 6%;
	margin-bottom: 0px;
    color: #6c6f73;
    font-size: 18px !important;
    font-weight: 200;
}

.panel-group{
    margin-bottom: 0px;
    border-top: 2px solid #6c6f73;
}

.panel-group h4.title-cat{
    padding: 10px 5px;
	margin-top: 25px;
	font-weight: 400;
}

.panel-default .panel-heading .panel-title a.collapsed i{
	float: right;
    color: #777;
	margin-top: 5px;
    transform: rotate(360deg);
}

.panel-default .panel-heading .panel-title a i{
	float: right;
    color: #777;
	margin-top: 5px;
    transform: rotate(180deg);
}

.icon.question{
	position: absolute;
	display: inline-block;
	width: 25px;
    height: 25px;
	margin-right: 4px;
    border-radius: 49px;
    font-size: 24px;
    font-weight: 200;
	line-height: 23px;
    color: #212529;
    text-align: center;
}
.icon.question:after{
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #212529;
    display: block;
    left: 24px;
    bottom: 0;
}

.icon.answer{
	position: absolute;
	display: inline-block;
	width: 25px;
    height: 25px;
	margin-right: 4px;
    border-radius: 49px;
    font-size: 24px;
    font-weight: 200;
	line-height: 23px;
    color: #1f66f5;
    text-align: center;
}
.icon.answer:after{
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #1f66f5;
    display: block;
    left: 24px;
    bottom: 4px;
}


/* Bootstrap Components - Tab */
.nav-tabs{
    background: #fff;
	border-radius: 3px 3px 0px 0px;
}

.nav-tabs.width50 li{
    width: 50%;
}


/* Bootstrap Components - Modeless */
.modeless_open.modal-open {
	overflow:auto;
}
.modeless_open .modal-backdrop {
	display:none;
}
.modeless {
	pointer-events: none;
}
.modal-dialog {
  pointer-events: auto;
}


/* Bootstrap Components - Alert */
.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: 0px;
    right: 0px;
    color: inherit;
	opacity: 0.7;
}

/* **************************************** *
 * basic
 * **************************************** */
 .basic .modal-header .modal-title{
     color:#000000;
 }

/* **************************************** *
 * Bx slider
 * **************************************** */
.bx-wrapper .bx-pager.bx-default-pager a {
    background: #ececec !important;
}

.bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus, .bx-wrapper .bx-pager.bx-default-pager a:hover{
	background: #ccc !important;
}


/* **************************************** *
 * Button
 * **************************************** */
/* Button - Wrap */
.modal-body .wrap-buttons{
    padding: 0px 20px;
    text-align: right;
}

.modal-body .wrap-buttons.txt-center{
    text-align: center;
}

.modal-body .wrap-buttons.no-pd{
    padding: 0px 0px;
    text-align: right;
}

.modal-body .wrap-buttons.no-pd .btn{
    float: left;
}

/* Button - primary */
.btn{
    padding: 10px 22px;
    border: 1px solid #4F7DFF;
    border-radius: 3px;
    text-align: center;
    background-color: #4F7DFF;
    font-size: 14px;
    color: #fff;
}
.btn_2{
    padding: 10px 22px;
    border: 1px solid #80A9FF;
    border-radius: 3px;
    text-align: center;
    background-color: #DEEFFF;
    color: #1E65F3;
}
.btn_text {
	color: #4F7DFF;
}
.btn_text:hover {
	color: #6C6F73;
}
.btn.active, .btn:active{
    box-shadow: none;
}

.btn:hover, .btn:active, .btn:focus{
    background-color: #2254b9;
    color: #fff;
}

.btn-primary{
    border-color: #007bff;
    background-color: #007bff;
}

/* Button - Size */
.btn.xlarge{
    font-size: 17px;
    padding: 14px 32px;
}

.btn.xlarge2{
    font-size: 16px;
    padding: 12px 24px;
}

.btn.large{
    font-size: 16px;
    padding: 10px 18px;
}

.btn.medium{
    font-size: 14px;
    padding: 8px 17px;   
}

.btn.normal{
    font-size: 14px;
    padding: 10px 27px;
    border-radius: 3px;
}

.btn.small{
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 3px;
}

.btn.full-width{
    width: 100%;
    padding: 12px 15px;
}

.btn.half{
    width: 50%;
    padding: 12px 15px;
}
.btn.halfMg{
    float: left;
    width: 48%;
    margin: 0px 1%;
}
.btn.join-type-cont, .btn_2.join-type-cont {
	width: 100%;
	padding: 14px 15px;
}

/* Button - Color */
.btn.white{
	border: 1px solid #fff;
    background: #fff;
    color: #6b6a6a;
}

.btn.inAcitve{
	border: 1px solid #b5b5b5;
    background: #b5b5b5;
    color: #fff;
}

.btn.gray{
	/*border: 1px solid #6c6f73;*/
    /* background: #6c6f73; */
    /* color: #fff; */
    padding: 10px 22px;
	/* padding: 8px 10px; */
    border: 1px solid #8db3ff;
    background: transparent;
    color: #4f7dff !important;
}

.btn.gray:hover{
	background: #DEEFFF;
}

.btn.nextGray{
	border: 1px solid #bebebe;
    background: #bebebe;
    color: #fff;
}

.btn.blue-gray{
	border: 1px solid #9ba2a9;
    background: #9ba2a9;
    color: #fff;
}

.btn.sky{
	border: 1px solid #A6C3FF;
    background: #DEEFFF;
    color:#4F7DFF;
}
.btn.sky:hover {
	background: #c7e3fe;
}

.btn.green{
	border: 1px solid #36cc63;
    background: #36cc63;
}

.btn.black{
	border: 1px solid #333;
    background: #333;
}

/* Button - Flat button */
.btn.flat{
    border-radius: 3px;
}

/* Button - Round Button */
.btn.round{
    border-radius: 30px;
}

.btn.round i{
    margin-right: 5px;
}

/* Button - Fillter Button */
.btn.fillter{
    background: #666;
    border: 1px solid #666;
    color: #fff;
}

.btn.fillter i{
    color: #fff;
}

/* Button - Line Button */
.btn.outline{
    border: 1px solid #808080;
    background: #fff;
    color: #333;
}

.btn.outline:hover{
    border: 1px solid #007bff;
    color: #007bff;
}

.btn.outline.blue{
    border: 1px solid #1f66f5;
    background: #fff;
    color: #1f66f5;
}
.btn.outline.blue_2{
    border: 1px solid #80A9FF;
    background: #fff;
    color: #1E65F3;
}

.btn.outline.black{
    border: 1px solid #888;
    background: #fff;
    color: #6C6F73;
}

/* Button - UnderLine Button */
.btn.underline{
	border: 0px;
    border-bottom: 1px solid #808080;
    border-radius: 0px;
    background: transparent;
    color: #666;
}

.btn.underline:hover{
	border: 0px;
    border-bottom: 1px solid #007bff;
    color: #007bff;
}

/* Button - Icon Button */
.btn.icon{
    border: 0px solid #808080;
    border-radius: 0px;
    background: transparent;
    color: #666;
}

/* Button - Icon Button */
.btn.box-icon{
    width: 130px;
    padding: 12px 0px;
    border: 1px solid #808080;
    border-radius: 3px;
    background: #fff;
    color: #666;
}

.btn.box-icon:hover{
    border: 1px solid #333;
    color: #333;
    box-shadow: none;
}

.btn.box-icon.active{
    border: 1px solid #1f66f5;
    color: #1f66f5;
    box-shadow: none;
}

.btn.box-icon i{
    display: block;
    font-size: 25px;
    margin-bottom: 10px;
}

.btn.box-icon span{
    display: block;
    font-size: 15px;
    font-weight: 500;
}

/* Button - More */
.btn.more{
    position: relative;
    padding: 0px;
    padding-right: 15px;
	border: none;
    background: transparent;
    color: #333;
}

.btn.more i{
    position: absolute;
    top: 0px;
    right: 0;
}

/* Button - File */
.btn.file_btn.small{
    color: #fff;
}
/* 버튼 파일 선택 수정 START */
.btn.file_btn.small.gray{color:#4F7DFF;border:1px solid #4F7DFF;background-color: #fff;margin-left:4px;}
.btn.file_btn.small.gray:hover{color:#4F7DFF;}
/* 버튼 파일 선택 수정 END */
.btn.file_btn.small:hover{
    color: #fff;
}

/* Button - Static */
.btn-width{
	display: inline-block;
	min-width: 160px;
    padding: 17px 22px;
    border: 0px solid #fff;
    border-radius: 3px;
    text-align: center;
    background-color: #1f66f5;
    font-size: 15px;
    color: #fff;
}

.btn-width.blue-gray{
    background-color: #9ba2a9;
}

.btn-width:hover, .btn-width:focus{
    color: #fff;
}

.btn:disabled {
    border:0;
}

/**/
.allMenu{
	display: none;
}
/* Button - join*/
.btn.join{
    padding: 10px 22px;
    border: 1px solid #8e8e8e;
    border-radius: 3px;
    text-align: center;
    background-color: #fff;
    font-size: 18px;
    color: #8e8e8e;
}

/* Button - New Type */
.btn.bLine{
    padding: 8px 10px;
    border: 1px solid #8db3ff;
    background: transparent;
    color: #4f7dff;
}

.btn.gLine{
    padding: 8px 10px;
    border: 1px solid #bebebe;
    background: transparent;
    color: #888;
}

a:not([href]).btn.gLine{
    color: #888;
}


/* **************************************** *
 * Alert
 * **************************************** */
.alert{
    position: relative;
    display: block;
    font-size: 14px;
    padding: 10px 20px 10px 37px;
    margin-bottom: 13px;
    border-radius: 5px;
    text-align: left;
}

.alert:last-child{
    margin-bottom: 0px;    
}

.alert ul li{
    margin-bottom: 5px;
    font-size: 15px;
    color: #ff2111;
}

.alert ul li:last-child{
    margin-bottom: 0px;
    font-size: 15px;
    color: #ff2111;
}

.alert > i{
    position: absolute;
    top: 14px;
    left: 15px;
}

.alert.no-mg{
    margin-bottom: 0px;
}


/* Alert - caution */
.alert.caution{
    position: relative;
    border: 1px solid #ff867d;
	margin-bottom: 10px;
    background: rgb(255, 239, 239);
    color: #ff1100;
}

.alert.caution.weak{
    width: 100%;
    padding: 10px 10px;
    border: 0px solid #666;
    background: #f4f4f4;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.alert.caution.weak i{
    top: 15px;
    left: 17px;
}

/* Alert - caution - whiteBG */
.alert.caution.wBG{
    background: #fff;
}


/* Alert - info */
.alert.info{
    border: 1px solid #459fff;
    background: #fff;
    color: #0b65c5;
    word-break: keep-all;
}

.alert.info p{
    color: #0b65c5;
}

.alert.info2{
    border: 1px solid #459fff;
    background: #fff;
    color: #0b65c5;
    word-break: keep-all;
    padding:10px 20px 10px 15px;
}

.alert.info2 p{
    color: #0b65c5;
}
.alert.info2 ul li{
	color:#0b65c5;
	
}

/* Alert - list */
.alert.list{
    padding: 15px;
    border: 1px solid #ddd;
    background: #fff;
}

.alert.list .title{
    padding: 0px 0px 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    font-size: 16px;
}

.alert.list ul li{
    font-size: 14px;
	font-weight: 300;
    color: #333;
}

.alert.list .wrap-buttons{
    margin-top: 10px;   
}

/* Alert - List - Info */
.alert.list.info .title{
	padding: 0px 0px 10px;
	font-size: 16px;
	font-weight: 500;
    letter-spacing: -.5px;
    color: #9c8672;
}

.alert.list.info .title i{
	margin-right: 3px;
}

.alert.regard{
    border: 1px solid #ffac30;
    background: #FFFAF3;
    color: #d2870e;
    word-break: keep-all;
}

.alert.regard p{
    color: #d2870e;
}

.alert.list.info.red .title{
    color: #ff2111;
}

.alert.list.info.gray .title{
    color: #333;    
}

/* Alert - List - Caution */
.alert.list.caution .title{
	padding: 0px 0px 10px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.5px;
    color: #9c8672;    
}

.alert.list.caution .title i{
	margin-right: 3px;
}

.alert.list.caution2 .title{
    color: #ff1100;   
}

/* Alert - list - Caution3 */
.alert.list.caution3 {
	border:1px red solid;
}
.alert.list.caution3 .title{
	padding: 0px 0px 10px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.5px;
    color: red;    
}
.alert.list.caution3 .normal li{
    color: #ff1100;   
}
.alert.list.caution3 ul.normal li::after{
	background: #ff1100; 
}

/* Alert - list - Caution3 */
.alert.list.caution4 {
	border: 1px solid #459fff;
}
.alert.list.caution4 .title {
	padding: 0px 0px 10px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.5px;
    color: #0b65c5;    
}
.alert.list.caution4 .normal li{
    color: #0b65c5;   
}
.alert.list.caution4 ul.normal li::after{
	background: #9a9a9a; 
}


/* Alert - line */
.notice-line.success{
	margin-bottom: 0px;
	font-size: 19px;
	font-weight: 400;
	letter-spacing: -.5px;
    text-align: center;
	color: #000;
}

.notice-line.check{
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -.5px;
    text-align: left;
	color: #000;
}

.notice-line.check i{
	color: #000;
	margin-right: 3px;
}

/* Alert - text */
.alert.text{
	padding: 10px 20px 10px 25px;
	font-size: 15px;
}

.alert.text > i{
	top: 14px;
	left: 3px;
}

.alert.text.info{
	border: none;		
	color: #1f66f5;
}

/* Alert - SweetAlert */
.swal2-title{
    margin-bottom: 20px;
    font-size: 25px;
}

/* **************************************** *
 * 탭
 * **************************************** */
/* 3depth menu */

.menu-boxTab{
	position: relative;
    margin-bottom: 35px;
    background: transparent;
    border-bottom: 0px solid rgba(221, 221, 221, 0.7);
    overflow-x: scroll;
    overflow-y: hidden;
}

.menu-boxTab::after{
	position: absolute;
    content: '';
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 1px;
	background: #333;
}

.menu-boxTab::-webkit-scrollbar{
    height: 0px;
}

.menu-boxTab .wrap-menu{
    width: 820px;
    border-bottom: 0px solid #d7dce4;
    padding: 0px 0px 0px;
    /*margin: 0px auto 0px;*/
}

.menu-boxTab .wrap-menu ul li{
    position: relative;
    float: left;
    width: auto;
    padding: 0px 0px;
	margin-right: -1px;
    border: 0px solid #d7dce4;
    text-align: center;
    background: transparent;
    z-index: 1
}

.menu-boxTab .wrap-menu.width14 ul li{
    width: 14.2%;
}

.menu-boxTab .wrap-menu.width20 ul li{
    position: relative;
    float: left;
    width: 20%;
    padding: 15px 0px;
    text-align: center;
    background: transparent;
}

.menu-boxTab .wrap-menu ul li::after{
    content: '';
    position: absolute;
    top: 22px;
    right: 0px;
    width: 0px;
    height: 16px;
    background: #d7dce4;
}

.menu-boxTab .wrap-menu ul li:last-child::after{
    content: '';
    position: absolute;
    right: 0px;
    width: 0px;
    height: 30px;
    background: #ddd;
}

.menu-boxTab .wrap-menu ul li a{
    position: relative;
    display: inline-block;
    padding: 10px 27px;
	border: 1px solid #ddd;
	border-radius: 3px 3px 0px 0px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: -1px;
    color: #333;
}

.menu-boxTab .wrap-menu ul li a:hover{
    color: #000;
}

.menu-boxTab .wrap-menu ul li a::after{
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 0%;
    height: 1px;
    background: #333;
    /*transition: all 300ms;*/
}

.menu-boxTab .wrap-menu ul li a:hover::after{
    content: '';
    width: 0%;
    height: 0px;
    background: transparent;
}

.menu-boxTab .wrap-menu ul li a.active{
	border: 1px solid #000;	
    font-weight: 500;
    color: #000;
	z-index: 99;
}

.menu-boxTab .wrap-menu ul li a.active::after{
    content: '';
    position: absolute;
    right: 0px;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: #fff;
}


/* **************************************** *
 * Board
 * **************************************** */
p.result-count {
    text-align: right;
}

p.result-count .nbr{
    color: #ff1110;
}

.bx-sbd .row-inner {
    overflow: hidden;
    padding: 25px 15px;
    word-break: keep-all;
}

.bx-sbd .row-inner.search{
	overflow: hidden;
    padding: 25px 50px;
    margin-bottom: 20px;
	border-radius: 0px;
    word-break: keep-all;
	background: #f7f7f7;
}

.bx-sbd .row-inner.search select{
	float: left;
    width: 10%;
    height: 38px;
    padding: 0px 5px;
	margin-right: -1px;
    border-radius: 3px 0px 0px 3px;
}

.bx-sbd .row-inner.search .find-bar{
	float: left;
    width: 82%;
    height: 38px;
    padding: 0px 5px;
	margin-right: -1px;
    border-radius: 0px;
}

.bx-sbd .row-inner.search button{
	float: left;
    width: 8%;
    height: 38px;
    padding: 0px 5px;
    border-radius: 0px 3px 3px 0px;
}

.list-board-header .total-count{
	float: right;
	width: 50%;
	font-size: 13px !important;
	text-align: right;
}

.list-board-header .total-count .nbr{
	color: #4a4a4a;
	background: #fff;
    border-radius: 30px;
    padding: 3px 9px;
}

.list-board-header .title{
	padding-left: 15px;
	font-size: 19px;
	margin-bottom: 10px;
	font-weight: 400;
}

.list-board-header .sort{
	float: left;
	width: 50%;
	font-size: 14px;
	text-align: left;
}

ul.list-board {
    display: inline-block;
    width: 100%;
    border-top: 1px solid #999;
    margin-bottom: 10px;
}

ul.list-board li{
    position: relative;
    float: left;
    width: 100%;
    padding: 12px 0px;
	background: #fff;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
    text-align: center;
}

ul.list-board li.row-item{
	padding: 6px 0px;
}

ul.list-board li > ul li{
    width: 33.3%;
    padding: 0px;
    border-bottom: 0px solid #ddd;
    text-align: center;
	font-size: 14px;
	line-height: 40px;
}

ul.list-board li.head{
    width: 100%;
    background: #fff;
    font-weight: 500;
    text-align: center;
}

ul.list-board li.head ul li{
	position: relative;
	font-size: 14px;
	font-weight: 500;
    color: #333;
	line-height: 1.2;
}

ul.list-board li.head ul li::after{
	content: '';
	position: absolute;
	top: 3px;
	right: 0px;
	width: 1px;
	height: 12px;
    background: #ddd;
}

ul.list-board li.head ul li:last-child::after{	
	width: 0px;
	height: 0pxx;    
}

ul.list-board li.row-item li.title{
	white-space: nowrap;
    overflow: hidden;
}

ul.list-board li.row-item li.title a{
	padding-left: 15px;
	color: #333;
}

ul.list-board li.row-item li.title a:hover{
	color: #333;
}

ul.list-board.wd14 li > ul li{
    width: 14.28%;
}

ul.list-board.wd20 li > ul li{
    width: 20%;
}

ul.list-board.wd20 li.head > ul li.title{
	width: 20%;
	text-align: center;
}

ul.list-board.wd20 li > ul li.number{
    width: 7%;
}

ul.list-board.wd20 li > ul li.category{
    width: 10%;
	
}

ul.list-board.wd20 li > ul li.view{
    width: 10%;
	
}

ul.list-board.wd20 li > ul li.subject{
	overflow: hidden;
    width: 61%;
	padding: 0px 15px;
	text-align: left;
	white-space: nowrap;    
    text-overflow: ellipsis;
}

ul.list-board.wd20 li.head > ul li.subject{
    width: 61%;
	text-align: center;
}

ul.list-board.wd20 li > ul li.day{
    width: 12%;
}

ul.list-board.wd20 li > ul li.state{
    width: 10%;
}

ul.list-board.wd25 li > ul li{
    width: 25%;
}

/* 가입가능 회사검색 */
ul.list-board li > ul li.col01{
    width: 15%;
}

ul.list-board li > ul li.col02{
    width: 35%;
}

ul.list-board li > ul li.col03{
    width: 50%;
}

ul.list-board li > ul li.col100{
    width: 100%;
}

/* 통합검색 - 시설리스트 */
ul.list-board.sctotal li > ul li{
    width: 100%;
	padding: 0px 5px;
	overflow: hidden;
	white-space: nowrap;
    text-overflow: ellipsis;
}

ul.list-board.sctotal li > ul li.number{
    width: 7%;
}

ul.list-board.sctotal li > ul li.placeTit{
    width: 27%;
}

ul.list-board.sctotal li > ul li.addr{
    width: 38%;
}

ul.list-board.sctotal li > ul li.kind{
    width: 27%;
}

ul.list-board.sctotal li > ul li.grade{
    width: 20%;
}

ul.list-board.sctotal li > ul li.grade ul li{
	font-size: 13px;
	line-height: 1.5em;
}

ul.list-board.sctotal li > ul li.grade ul li strong{
	font-weight: 500;
	color: #333;
}

ul.list-board li.row-item li.addr{
	text-align: left;
}

ul.list-board li.row-item li.placeTit{
	font-weight: 400;
}

/* Board - List table */
ul.list-board li ul.list-table li{
    position: relative;
    float: left;
	width: 100%;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
	text-align: left;
}

.box-state{
	padding: 4px 8px;
    border-radius: 3px;
    background: #9ba2a9;
    font-size: 13px;
	color: #fff;
}

.box-state.success{
    background: #1f66f5;
}

.board-nav{
	text-align: center;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 10px 0;
    border-radius: 4px;
}

.pagination>li>a, .pagination>li>span{
	color: #666;
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #666;
    border-color: #666;
}


/* **************************************** *
 * Board - View
 * **************************************** */
.list-board-view {
	
}

.list-board-view .wrap.head{
	padding: 12px 15px;
	border-top: 1px solid #333;
}

.list-board-view .wrap.head .row-attr{
	overflow: hidden;
}


.list-board-view .wrap.head .row-attr.row-title{
	width: 100%;
}

.list-board-view .wrap.head .row-attr p{
	display: inline-block;
    float: left;
    margin-right: 15px;
	margin-bottom: 0px;
	font-size: 16px;
	line-height: 30px;
}

.list-board-view .head .row-attr p.detail-name{
	min-width: 45px;
	font-weight: 400;
	color: #333;
}

.list-board-view .head .row-attr p.detail-value{
	width: auto;
	font-weight: 300;
}

.list-board-view .wrap.content-view{
	padding: 20px 15px;
	border-top: 1px solid #ddd;
}

.list-board-view .wrap.content-view .content {
	position: relative;
	padding-left: 30px;
	color: #666;
}

.list-board-view .wrap.content-view .content .icon.answer{
	position: absolute;
    display: inline-block;
    top: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
    font-size: 11px;
    color: #fff;
	background: #1f66f5;
}

.list-board-comment .wrap.comment{
	padding: 20px 15px;
	border-top: 1px solid #ddd;
}

.list-board-comment .wrap.comment .head{
	color: #000;
	text-align: right;
}

.list-board-comment .wrap.comment .head .create{
	color: #000;
	font-size: 13px;
	text-align: right;
}

.list-board-comment .wrap.comment .detail{
	position: relative;
	padding-left: 30px;
	color: #666;
}

.list-board-comment .wrap.comment .detail .icon.answer{
	position: absolute;
    display: inline-block;
    top: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
    font-size: 11px;
    color: #fff;
	background: #666;
}

.list-board-footer{
	padding: 20px 0px;
	border-top: 1px solid #ddd;
}


/* Board - Document */
#borad-document .list-board-view .wrap.head{
	padding: 0px 0px;
	border-bottom: 0px;
}

#borad-document .list-board-view .wrap.head .row-title {
    width: 100%;
	padding: 20px 10px;
}

#borad-document .list-board-view .wrap.head .row-title .detail-value{
	margin-bottom: 0px;
    font-size: 20px;
	font-weight: 400;
	color: #333;
}

#borad-document .list-board-view .wrap.head .row-detail{
	overflow: hidden;
	padding: 10px 10px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	background: #f7f7f7;
}

#borad-document .list-board-view .wrap.head .row-detail .row-attr.wd25{
	overflow: hidden;
	float: left;
	width: 25%;
}

#borad-document .list-board-view .wrap.content-view{
	padding: 20px 10px;
	border-top: 0px solid #ddd;
}

#borad-document .list-board-view .wrap.content-view .content{
	padding-left: 0px;
}

#borad-document .list-board-view .wrap.content-navi{
	border-top: 1px solid #ddd;
}

#borad-document .list-board-view .wrap.content-navi ul li{
	padding: 0px;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
}

#borad-document .list-board-view .wrap.content-navi ul li a span{
	display: inline-block;
	padding: 10px 25px;
	color: #333;
}

#borad-document .list-board-view .wrap.content-navi ul li a span.tit{
	background: #f7f7f7;
}

#borad-document .list-board-view .wrap.content-buttons{
	padding: 10px 0px;
	text-align: right;
}


/* Board - Document */
#blog-document .list-board-view .wrap.head{
	position: relative;
	padding: 0px;
	border-top: none;
    border-bottom: 1px solid #333;
}

#blog-document .list-board-view .wrap.head .row-title {
    width: 100%;
	padding: 10px 15px;
}

#blog-document .list-board-view .wrap.head .row-title .detail-value{
	margin-bottom: 0px;
    font-size: 20px;
	font-weight: 400;
	color: #333;
}

#blog-document .list-board-view .wrap.head .share{
	position: absolute;
	top: 15px;
	right: 0px;
}

#blog-document .list-board-view .wrap.head .share img{
	margin-right: 0px;
}

#blog-document .list-board-view .wrap.head .share i{
	margin-right: 5px;
	font-size: 17px;
	color: #333;
}

#blog-document .list-board-view .wrap.head .share ul li{
	float: left;
	margin-left: 5px;
}

#blog-document .list-board-view .wrap.head .share ul li a{
	font-size: 14px;
	color: #000;
}

#blog-document .list-board-view .wrap.head .share ul li span{
	margin-right: 10px;
	font-size: 14px;
	line-height: 26px;
	color: #000;
}

#blog-document .list-board-view .wrap.head .share ul li a:hover{
	color: #000;
}

#blog-document .list-board-view .wrap.head .row-detail{
	overflow: hidden;
	padding: 10px 10px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	background: #f7f7f7;
}

#blog-document .list-board-view .wrap.head .row-detail .row-attr.wd25{
	overflow: hidden;
	float: left;
	width: 25%;
}

#blog-document .list-board-view .wrap.content-view{
	padding: 20px 10px;
	border-top: 0px solid #ddd;
}

#blog-document .list-board-view .wrap.content-view .content{
	padding-left: 0px;
}

#blog-document .list-board-view .wrap.content-view  .swiper-container{
	width: 70%;
}

#blog-document .list-board-view .wrap.content-navi{
	border-top: 1px solid #ddd;
}

#blog-document .list-board-view .wrap.content-navi ul li{
	padding: 0px;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
}

#blog-document .list-board-view .wrap.content-navi ul li a span{
	display: inline-block;
	padding: 10px 25px;
	color: #848484;
}

#blog-document .list-board-view .wrap.content-navi ul li a span.tit{
	background: #f7f7f7;
}

#blog-document .list-board-view .wrap.content-buttons{
	padding: 10px 0px;
	text-align: right;
}



/* **************************************** *
 * Board - Editer
 * **************************************** */
.list-board-editer .head{
	padding: 15px 15px 10px;
	border-top: 1px solid #333;
}

.list-board-editer .head .row-attr{
	overflow: hidden;
	margin-bottom: 10px;
}

.list-board-editer .head .row-attr .attr-value{
	display: inline-block;
	width: 85%;
}

.list-board-editer .head .row-attr label, .list-board-editer .bcontents .row-attr label{
	float: left;
	width: 15%;
    padding: 7px 25px;
	padding-left: 0px;
	margin-bottom: 0px;
	line-height: 22px;
}

.list-board-editer .head .attr-value label{
	float: left;
	width: auto;
    padding: 7px 0px;
	padding-left: 25px;
	margin-right: 25px;
	margin-bottom: 0px;
	line-height: 22px;
}


.list-board-editer .head .row-attr input[type="checkbox"] + label::before{
	top: 8px;
}

.list-board-editer .head .row-attr input[type="radio"] + label::before{
	top: 8px;
}

.list-board-editer .bcontents .row-attr{
	overflow: hidden;
	margin-bottom: 10px;
}

.list-board-editer .bcontents .row-attr textarea{
	width: 100%;
	height: 180px;
	padding: 10px;
	resize: none;
}

.list-board-editer .bcontents .row-attr span.file_name {
    width: 75%;
    display: inline-block;
    float: left;
    border-bottom: 1px solid #999;
    padding: 0 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    height: 30px;
    line-height: 22px;
}

.list-board-editer .bcontents .row-attr .input_wrap label{
	width: 70%;
}

.list-board-editer .bcontents .row-attr input[type="file"]{
	display: none;
}

.list-faq {
	display: inline-block;
	width: 100%;
}

.list-faq li{
	overflow: hidden;
	padding: 10px 10px;
	border-bottom: 1px solid #ddd;
	text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 질문 */
.in-step.wrap-qna{
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    border: 1px solid #dcdcdc;
}

.in-step.wrap-qna dl{
    padding: 25px 25px 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dcdcdc;
}

.in-step.wrap-qna dl:last-child{
    border-bottom: 0px solid #dcdcdc;
}

.in-step.wrap-qna dl dt{
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 20px;
    color: #434548;
}

.in-step.wrap-qna dl dt .icon{
    position: absolute;
    display: inline-block;
    top: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
    font-size: 11px;
    color: #fff;
}

.in-step.wrap-qna dl dd .icon{
    position: absolute;
    display: inline-block;
    top: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
    font-size: 11px;
    color: #fff;
}

.in-step.wrap-qna dl dt .question{    
    background: #007bff;
}

.in-step.wrap-qna dl dd{
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    line-height: 1.5;
	color: #333;
}

.in-step.wrap-qna dl dd .answer{
    background: #9aa1a9;
}

/* **************************************** *
 * List
 * **************************************** */
/* 리스트 */
ul.basic{
    display: inline-block;
}

ul.basic li{
    float: left;
    margin-right: 5px;
}

/* 리스트 - 결과 */
.list-result li{
	float: left;
	width: 50%;
	color: #1f66f5;
}

.list-result li.right{
	float: right;
	width: 50%;
	text-align: right;
	font-weight: 500;
}

/* 리스트 */
ul.normal li{
    position: relative;
    padding-left: 13px;
    margin-bottom: 3px;
    font-size: 14px;
}

ul.normal li::after{
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #9a9a9a;
}

ul.normal.notice li{
    position: relative;
    padding-left: 10px;
    margin-bottom: 3px;
    font-size: 14px;
}

ul.info li{
    position: relative;
    padding-left: 13px;
    margin-bottom: 3px;
    font-size: 14px;
}

ul.info li::after{
    position: absolute;
    content: '';
    top: 9px;
    left: 0px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #8a8a8a;
}

/* 리스트 - 테이블 */
ul.list-table {
    display: inline-block;
    width: 100%;
    border-top: 1px solid #999;
}

ul.list-table li{
    position: relative;
    float: left;
    width: 50%;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

ul.list-table li .col{
    width: 33.3%;
    padding: 10px 0px;
    text-align: center;
}

ul.list-table li.list-thead{
    background: #f7f7f7;
}

ul.list-table li.list-thead > div{
    width: 33.3%;
    text-align: center;
}

ul.list-table li > div{
    float: left;
    display: inline-block;
    width: 50%;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 300;
    line-height: 37px;
}

ul.list-table li .title{
    float: left;
    display: inline-block;
    width: 50%;
    background: #f7f7f7;
    font-weight: 400;
    line-height: 38px;
    color: #000;
}

ul.list-table li .desc input, ul.list-table li .desc select{
    /* line-height: 22px; */
    line-height: 16px;
}

ul.list-table li .desc input[type="radio"] + label{
	width: auto;
    line-height: 16px;
}

ul.list-table li .desc input[type="checkbox"] + label::before{
    top: 9px;
}

ul.list-table li .desc input.width15, ul.list-table li .desc select.width15{
    width: 15%;
}

ul.list-table li .desc input.width30, ul.list-table li .desc select.width30{
    width: 30%;
}

ul.list-table li .desc label{
    margin-bottom: 0px;
    line-height: 38px;
}

ul.list-table li .desc input.email{ 
    width: 25%;
}

ul.list-table li .desc select.email{
    width: 27%
}

ul.list-table li .desc input.email + p{
    display: inline-block;
    margin-bottom: 0px;
}

ul.list-table li .btn.small{
    padding: 5px 10px;
    margin-top: -3px;
    border-radius: 4px;
}
ul.list-table li .btn.small.floatR{
    padding: 5px 10px;
    margin-top: 5px;
    border-radius: 4px;
}
ul.list-table li.list-tfoot{
    border-top: 1px solid #333;
}

ul.list-table li.list-tfoot .title{
    font-weight: 500;
    color: #333;
}

ul.list-table li.list-tfoot .desc{
    font-weight: 500;
    color: #333;
}

ul.list-table.width100 li{
    width: 100%;
}

ul.list-table.width100 li > div{
    width: 25%;
}

ul.list-table.width100 li > div.desc{
    width: 75%;
}

ul.list-table.width100 li > div.desc ul.col50 li{
	position: relative;
    width: 50%;
	border-bottom: 0px;
	text-align: center;
}

ul.list-table.width100 li > div.desc ul.col50 li:after{
    content: '';
	position: absolute;
	top: -5px;
	right: 0px;
	width: 1px;
	height: 130%;
	background: #ddd;
}

ul.list-table.width100 li > div.desc ul.col50 li:last-child:after{
	width: 0px;
}

ul.list-table.width100 li > div.wd75{
    width: 75%;
}

ul.list-table.width100 li.list-thead > div{
    width: 33.3%;
    text-align: center;
}

ul.list-table.width100 li div.input_wrap{
    width: 100%;
    padding: 0px;
}




/* **************************************** *
 * table
 * **************************************** */
.wrap_table{
    margin-bottom: 25px;
}

.table{
    margin-bottom: 0px;
}

.table thead {
    border-top: 1px solid #1f66f5;
}

.table thead tr th {
    padding: 17px 20px;
    border-bottom: 0px solid #333;
    background: #fff;
    font-size: 14px;
    text-align: center;
}

.table tbody tr {
    border-bottom: 1px solid #ddd;
}

.table tbody tr td {
    padding: 14px 20px;
    background: #fff;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
    color: #666;
}

.table tbody tr td p{
    margin-bottom: 0px;
}

.table tbody tr td.ft17 {
    font-size: 17px;
}

/* No thead */
.table.no-head tbody tr:first-child td{
    border-top: 1px solid #666;
}

.table.no-head tbody tr td.name{
    color: #333;
}

/* Left Align */
.table tbody tr.txt-left td {
    text-align: left;
    vertical-align: top;
}

.table.line2 tbody tr.txt-left td:first-child {
    width: 25%;
    background: #f7f7f7;
    color: #333;
}

.table.line2 tbody tr.txt-left td:last-child {
    width: auto;
}

.table.line4 tbody tr.txt-left td {
    width: 25%;
}

.table.line4 tbody tr.txt-left td:first-child {
    width: 12%;
    background: #f2f6fd;
}

.table.line4 tbody tr.txt-left td:nth-child(3) {
    width: 12%;
    background: #f2f6fd;
}


/* **************************************** *
 * Sitemap
 * **************************************** */
.visual-slider{
    width: 100%;
    height: 650px;
    background: #cecece;
}


/* **************************************** *
 * Sign
 * **************************************** */
.box-info .row-inner .sign{
    float: right;
    display: inline-block;
}

.box-info .row-inner .sign p.title-sign{
    padding: 0px 0px 10px;
    margin-bottom: 0px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 8px;
    text-align: center;
}

.box-info .row-inner .sign a.btn{
    display: block;        
    margin-top: -3px;
    border-radius: 0px;
    border: 1px solid #666;
    font-size: 14px;
}


/* **************************************** *
 * Swal2
 * **************************************** */
.swal2-popup.swal2-modal.swal2-show{
	overflow: hidden;
	padding: 0px 0px;
	border-radius: 10px;
}

.swal2-popup.swal2-modal.swal2-show .swal2-header {	
	padding: 15px 20px;	
    background: #fff;
}

.swal2-popup.swal2-modal.infomation.swal2-show .swal2-header {	
    background: #fff;
	border-top: 0px solid #1f66f5;
    border-bottom: 1px solid #ddd;
}
.swal2-popup.swal2-modal.infomation.swal2-show .swal2-header .swal2-title {
	color:#1f66f5;
}

.swal2-popup.swal2-modal.caution.swal2-show .swal2-header{
	background: #fff;
	border-top: 0px solid #e84c3d;
    border-bottom: 1px solid #ddd;
}
.swal2-popup.swal2-modal.caution.swal2-show .swal2-header .swal2-title {
	color:#e84c3d;
}


.swal2-popup.swal2-modal.success.swal2-show .swal2-header {
	background: #fff;
	border-top: 0px solid #18bb9c;
    border-bottom: 1px solid #ddd;
}
.swal2-popup.swal2-modal.success.swal2-show .swal2-header .swal2-title {
	color:#18bb9c;
}

.swal2-popup.swal2-modal.weak.swal2-show .swal2-header{
	background: #fff;
	border-top: 0px solid #f39c11;
    border-bottom: 1px solid #ddd;
}
.swal2-popup.swal2-modal.weak.swal2-show .swal2-header .swal2-title {
	color:#f39c11;
}

.swal2-popup.swal2-modal.etc.swal2-show .swal2-header{
	background: #fff;
	border-top: 0px solid #777;
    border-bottom: 1px solid #ddd;
}
.swal2-popup.swal2-modal.etc.swal2-show .swal2-header .swal2-title {
	color:#777;
}

.swal2-popup.swal2-modal.swal2-show .swal2-header .swal2-close{
	top: 0px;
	width: 2em;
	height: 2em;
	font-family: inherit;
	font-weight: 400;
	color: #666;
}

.swal2-popup.swal2-modal.swal2-show .swal2-header .swal2-close:focus{
	outline: 0px;
}

.swal2-popup.swal2-modal.swal2-show .swal2-header .swal2-title{
	margin-bottom: 0px;
	font-size: 19px;
	font-weight: 500;
	color: #333;
}

.swal2-popup.swal2-modal.swal2-show .swal2-header .swal2-title i{
    line-height: 24px;
    margin-right: 5px;
}

.swal2-popup.swal2-modal.swal2-show .swal2-content{
	padding: 15px 20px;
}

.swal2-popup.swal2-modal.swal2-show .swal2-content p{
	font-size: 16px;
	font-weight: 300;
	color: #333;
	word-break: keep-all;
}

.swal2-popup.swal2-modal.swal2-show .swal2-content p.title{
	font-size: 17px;
	font-weight: 300;
	letter-spacing: 0px;
}

.swal2-popup.swal2-modal.swal2-show .swal2-content ul li{
	font-size: 17px;
	font-weight: 300;
	color: #333;
}


.swal2-popup.swal2-modal.swal2-show .swal2-actions{
	padding: 20px 0px; 
}


.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
	background-image: none;
}


/* **************************************** *
 * MFP
 * **************************************** */
.mfp-close-btn-in .mfp-close{
	display: none;
}

/* 배경이미지 - 스타트 */
.mfp-fade.mfp-bg {
	opacity: 0;

	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}


/* 배경이미지 - 애니메이션 인 */
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.85;
}

/* 배경이미지 - 애니메이션 아웃 */
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

/* 컨텐츠 - 시작 */
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	top: -100px;

	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

/* 컨텐츠 - 애니메이션 인 */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
	top: 10px;
}

/* 컨텐츠 - 애니메이션 아웃 */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
	top: -100px;
	
	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}

.popup-main {
  position: relative;
  background: #FFF;
  padding: 0px;
  width: auto;
  max-width: 360px;
  margin: 20px auto;
}

.popup-footer ul{
	display: inline-block;
	width: 100%;
	margin-bottom: -4px;
	border-top: 1px solid #ddd;
}

.popup-footer ul li{
	float: left;
	width: 50%;
	text-align: center;
}

.popup-footer ul li:first-child{
	border-right: 1px solid #ddd;
}

.popup-footer ul li a{
	display: block;
	padding: 15px 0px;
	color: #333;
}

.popup-footer ul li a:hover{
	color: #333;
}


/* **************************************** *
 * Back to Top Button
 * **************************************** */
#btn-bak{
    position: fixed;
    left: 15px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #666;
    line-height: 50px;
    text-align: center;
    color: #fff !important;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    z-index: 9;
	cursor: pointer;
}
#btn-top{
    position: fixed;
    right: 100px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #666;
    line-height: 50px;
    text-align: center;
    color: #fff;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    z-index: 99;
	cursor: pointer;
}

#btn-top.show {
    opacity: .8;
    visibility: visible;
}

/* **************************************** *
 * type / color / paragraph
 * **************************************** */

.point-blue{
    color:#1F66F5;
}
.point-green{
    color:#3f9c47;
}
.img-paragraph{
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}
.img-paragraph .paragraph{
    margin: 0 0;
}
.paragraph{
    margin: 20px auto;
    line-height: 1.5;
    color:#6C6F73;
    font-weight: 100;
 }
 .paragraph > strong{
    font-weight: 300;
 }
 .paragraph.xsmall{
    font-size: 14px;
 }
 .paragraph.small{
    font-size: 16px;
 }
 .paragraph.normal{
    font-size: 18px;
 }
 .paragraph.medium{
    font-size: 20px;
 }

 .caption-bar{
     position: relative;
     margin: 15px 0;
     padding-left: 30px;
     font-size: 18px;
     font-weight: 200;
     color:#888888;
 }
 .caption-bar-2{
     padding-left: 0px;
     padding-top: 4px;
     font-size: 15px;
 }
 .caption-bar-2 i{
     color: #BEBEBE;
     
 }
 .caption-bar::before{
    content: '';
    display: block;
    position: absolute;
    left: 2px;
    top: 4px;
    width: 20px;
    height: 20px;
    background-size: 20px;
}
.caption-bar.exclamation::before{
    background-image: url(../images/icon/icon_exclamation.gif);
}
.caption-bar strong{
    color:#4f7dff;
    font-weight: 300;
}

 /* **************************************** *
 * max-width : 768px
 * **************************************** */
@media (max-width: 768px) {
	.btn.xlarge,.btn.xlarge2,.btn.large,.btn.medium,.btn.normal{
        font-size: 15px;
        padding: 8px 16px;
    }
    .img-paragraph{
        padding: 15px 0;
    }
    .img-paragraph li{
        margin-top: 15px;
    }
    .paragraph.small{
        font-size: 15px;
    }
    .paragraph.normal{
        font-size: 16px;
    }
    .paragraph.medium{
        font-size: 18px;
    }
   #login .btn.xlarge {
   		padding: 14px 15px;
   }
}