/* a5 위한 기본문서 스타일시트  */

body{
	font-size: 14px;	
	margin:0;
	padding:0;
	background-color: #f5f5f5;
}

a:link, a:visited, a:active{
	text-decoration:none;
}
a:hover{
	text-decoration: underline;
}

/* 컨텐츠 래퍼 */
.wrapper{
	max-width:610px;	
	margin:0 auto;
	background-color: #fff; /* 메인 박스 바탕색 */
	z-index: 8; 	
}

/* 리스트 기본형 */
ul.basic{
	list-style:none;
	padding:0;
	margin:0;
}
ul.basic li{
}

/*  UL LI 일반 아이템 리스트 */
ul.itm{
	border: 1px solid #E1E2E1;	
}
ul.itm li.header{
	/* 헤더 영역 */
	background:#fafafa;
	padding-top: 6px;
	padding-bottom: 6px;	
	font-weight:700
}
ul.itm li{
	/* 텍스트 영역 */			
	position: relative;
	padding-left: 1em;
	border-bottom: 1px solid #E1E2E1;
	background: #F5F5F6;
	padding-top: 10px;
	padding-bottom: 10px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
ul.itm li:last-child{
	border-bottom:0;
}
ul.itm li .li-del{
	/* 삭제버튼 */
	float: right; margin-right:0.5em;
	width:25px; height:25px; 
	background: url(images/X-bk.png) no-repeat center;
	background-size: 15px;				
}
ul.itm li .li-del:hover{
	outline:1px solid #74D7E0;
}

/* 섹션 */
section{
	position:relative;
	box-sizing:border-box;	
	min-height: 2em;
	word-break:break-all; white-space:normal;
}

.white{
	background-color:#FFF;
}
.grey {
	background-color:#eee;	
}

/* 섹션 타이틀 */
.section-ttl {
	padding: 12px 10px 12px;
	background-color:#fff;
	border-bottom:1px solid #eee;
}

.section-ttl .txt-round{
	display: inline-block;
	border: 1px solid #444;
	border-radius: 20px;	
	padding: 4px 10px;		
	font-size: 13px; 
	margin-left: 0px;
}

.section-ttl .txt-only{
	display: inline-block;
	font-size: 16px;
	font-weight:600;
	margin-left: 5px;
}

/* 마진 패딩 */
.p5{
	padding: 5px;
}
.p10{
	padding: 10px;
}
.p20{
	padding: 20px;
}

.m5{
	margin: 5px;	
}
.m10{
	margin: 10px;
}

.mt-5{
	margin-top:5px;
}
.mt-10{
	margin-top:10px;
}
.pt-5{
	padding-top:5px;
}
.pt-10{
	padding-top:10px;
}


/* 버튼 */
.btn{
	cursor:pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	box-sizing:border-box;
}

.btn-sm-line{
	/* 작은거 */	
	display:inline-block; 
	min-width:30px; height: 34px;		
	background-color:transparent; 
	text-align:center;
	font-size:14px;
	line-height:32px;
	font-weight:700;
	color:#666; 	
	padding-left:12px;
	padding-right:12px;
	border:1px solid #999;
	box-sizing:border-box;
	border-radius:3px;
}

.btn-sm-color{
	/* 작은거 */
	display:inline-block; 
	min-width:30px; height: 34px;	
	background-color:#999; 
	text-align:center;
	font-size:12px;
	line-height:34px;
	font-weight:700;
	color:#FFF; 	
	padding-left:12px;
	padding-right:12px;
	border:1px solid #999;
	box-sizing:border-box;
	border-radius:3px;
}

.btn-md-line{
	/* 중간 */
	display:inline-block; 
	min-width:70px; 
	height: 40px;
	line-height:40px;
	background-color: transparent; 
	text-align:center;
	font-size:14px;
	font-weight:700;
	color:#666; 
	padding-left:12px;
	padding-right:12px;
	border:1px solid #999;
	box-sizing:border-box;
	border-radius:3px;
}

.btn-md-color{
	/* 중간 */
	display:inline-block; 
	min-width:70px; 
	height: 40px;
	line-height:40px;
	background-color: #999; 
	text-align:center;
	font-size:14px;
	font-weight:700;
	color:#FFF; 
	padding-left:12px;
	padding-right:12px;
	border:1px solid #999;
	box-sizing:border-box;
	border-radius:3px;
}
.btn-md-color.round{
	border-radius:30px;
}

.btn-lg-color{
	/* 긴거 */
	display:block;
	background-color:#999; 
	font-size:16px;
	font-weight:700; 
	color:#fff; 
	padding: 12px 0px;
	border-radius: 4px;
	text-align:center;
}
.btn-lg-color:after{
	display:block;
	content: ' ';	
}

.btn-sm-line.primary,
.btn-md-line.primary{
	border-color:#27A6F3;
	background-color:transparent;
	color:#27A6F3;
}
.btn-sm-color.primary,
.btn-md-color.primary,
.btn-lg-color.primary{
	/* 주 클릭 버튼 */
	background-color:#27A6F3;	
	border-color:#27A6F3;
	color:#fff;
}

.btn-check.btn-sm-line.active,
.btn-radio.btn-sm-line.active{
	/* 체크박스 버튼효과 */
	background-color: #27A6F3;
	border-color:#27A6F3;
	color: #fff;
}


/* 버튼 컬러가 필요할때 */
.blueColor{
	background-color:#618bdf;
	color:#fff;
}
.orangeColor{
	background-color:#ff6a38;
	color:#fff;
}
.blueText{
	color:#618bdf;	
}
.orangeText{
	color:#ff6a38;;
}


/* UL button */
.ul-btn{
	list-style:none;	
	padding:0;
	margin:0;
	box-sizing:border-box;
}
.ul-btn *{
	box-sizing:border-box;
}
.ul-btn .li-btn{
	float: left;
	min-width: 30px; 
}
.ul-btn.col-3 .li-btn{	
	width: 33.3333%;	
}
.ul-btn.col-4 .li-btn{	
	width: 25%;	
}
.ul-btn .li-btn .btn-box{	
	/* 버튼 마진 지정 */
	position:relative;
	height:0;
	padding-bottom:50%;		
}

.ul-btn .li-btn .btn-box.mg{
	margin: 0 2.5px;
}

.ul-btn .li-btn .btn-box .innerBox{
	/* 선, 색 지정 */
	position:absolute;                   
	top:0; left:0;
	width:100%; height:100%;
	background-position:center;
	background-size:cover;	
	border:1px solid #ddd;		
	text-align:center;
}
.ul-btn .li-btn .btn-box .innerBox.grey{
	/* 회색 */
	background-color: #ededed;
}

.ul-btn .li-btn .btn-box .innerBox.round{
	/* 둥글게 */
	border-radius: 4px;
}


/* 딱붙는 버튼 */
.flex-btn-container{
    display:inline-flex;
    align-items:center;
    justify-content:center;	
	border: 1px solid #ddd;
}
.flex-btn-container *{
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
.flex-btn-container .flex-btn{	
    text-align:center;
    font-size: 1.2rem;	
	padding: 10px 0px;	
	border-right: 1px solid #ddd;	
}
.flex-btn-container .flex-btn:last-child{
	border-right: 0;
}

.flex-btn-container.col-3,
.flex-btn-container.col-4{
	display:flex;
}
.flex-btn-container.col-2 .flex-btn{
	width:50%;
}
.flex-btn-container.col-3 .flex-btn{
	width:33.3333%;
}
.flex-btn-container.col-4 .flex-btn{
	width:25%;
}


/* 안내, 경고 */
.alert{
	display:inline-block;
	background-color:#FFF5F1;
	padding: 5px 8px;
	font-weight: 400;
}

/* Info Box */
.info{
	font-size:13px;
	color: #757575;
	line-height:1.2;
	background-color:#FFFCE0;
	padding: 1em;	
}
.info p{
	padding: 2px 0;
	margin: 2px 0;
}
.info ul{
	padding: 0;
	padding-left:20px;
	margin:0;							
}
.info ul li{
	line-height:1.4;
	margin-bottom: 0.5em;
}

.text-center{
	text-align:center;
}
.text-left{
	text-align:left !important;
}
.text-primary{
	color: #27A6F3;
}
.text-grey{
	color: grey;	
}
.text-muted{
	color:#CCC;
}
.bold{
	font-weight:700;
	letter-spacing: -1px;
	word-spacing: -1px;	
}

footer{
	display:none;
}

.simple-bottom-copy{
 	padding:1.5em 0; 
	color:#ccc; 
	text-align:center; 
	font-size:12px;
	border-top:1px solid #ddd;
	background-color:#e5e5e5;
	box-sizing:border-box;
}

/* 슬라이드 버튼 
<label class="switch">
  <input type="checkbox">
  <span class="slider round"></span>
</label>
*/

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

.switch input {display:none;}

.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: 17px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #27A6F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #27A6F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 22px;
}

.slider.round:before {
  border-radius: 50%;
}


/*==== Form Control ===*/
.form-wrap > *{
	/* 입력폼과 버튼 사용시 필수 */
	vertical-align:top;
}

/* 입력폼 */
input[type=text], input[type=password] {
  min-width: 100px;
  height: 34px;
  padding-left: 10px;
  display: inline-block;  
  border:1px solid #e5e5e5;
  box-sizing:border-box;
}

/* 컨트롤 선택시 효과 */
input[type=text]:focus, input[type=password]:focus {
  background-color: #fffde7;
  outline: none;
}

/* 읽기 전용 */
input[type=text]:read-only, input[type=password]:read-only {
  background-color: #fafafa;
  color: #757575;
  outline: none;
}

textarea{
	border:1px solid #e5e5e5;
}

/* 셀렉트 */
select {
  min-width: 100px;
  padding: 10px 15px;
  margin: 5px 0 10px 0;
  display: inline-block;
  border: none;
  background: #fafafa;
  border:1px solid #e5e5e5;
  box-sizing:border-box;
}

/* 아이콘 커스텀 셀렉트 */
/* div.select_box {
  position: relative;
  width: 200px;
  height: 32px;  
  background: #fafafa;  
  border:1px solid #e5e5e5;
  box-sizing:border-box;
}
div.select_box .icon{
	position: absolute;
	width: 100%; height: 100%;
	background:url(images/select.png) no-repeat top right;
}
div.select_box label {
  position: absolute;
  font-size: 14px;
  color: #444;
  top: 7px;
  left: 12px;
  right:30px;
  overflow:hidden;
  letter-spacing: 1px;    
}
div.select_box .color-select {
  width: 100%;
  height: 32px;
  min-height: 32px;
  line-height: 32px;
  padding: 0 10px;
  opacity: 0;
  filter: alpha(opacity=0);
} */

/*==== Form Control ===*/


/* 탭 */
.lst_tab{
    overflow: hidden;
    zoom: 1;
    }
    
.lst_tab ul {    
    margin-left: -1px;
    height: 35px;
    border-bottom: 1px solid #e3e7ee;
    background: #f9fafc;
    zoom: 1;    
    }
    
.lst_tab ul li{
    float: left;
    position: relative;
    border-right: 1px solid #e3e7ee;
	padding:0;
    }

.lst_tab ul li a{
	display: block;
    float: left;
    width: 100px;
    padding: 11px 0 10px;
    color: #666;
    line-height: 14px;
    text-align: center;
    text-decoration: none;
    letter-spacing: -1px;
}

.lst_tab ul li.on a {
    position: relative;
    padding-bottom: 11px;
    background: #fff;
    font-weight: bold;
    color: #444;
    cursor: default;
	z-index: 100;
}


@media only screen and (max-width: 609px) {
	html{
		font-size: 12px;
	}
	
	.page{
		padding-bottom: 45px;
	}

	.wrapper{
		max-width:610px;	
		margin:0 auto;
		border:0;
		background-color: #e5e5e5;
		z-index: 8; 		
	}
	
	.font1{
		font-size:14px !important;
	}
	
	h5{
		padding: 7px 5px;
		margin: 5px 0px;
		font-size:14px;		
		font-weight: 700;
	}
}

@media only screen and (min-width: 610px) {
	html{
		font-size: 14px;		
	}
	
	.pc-wrapper{
		padding: 10px;
	}
	
	.font1{
		font-size:14px !important;
	}
	
	h5{
		padding: 7px 14px;
		margin: 5px 10px;
		font-size:14px;
		color: #666;
		font-weight: 700;
		background-color:#F5F5F6;
	}
}


/* 상단 이동 버튼 */
.posion_box {
	max-width:610px;
}
@media only screen and (max-width: 609px) {
	.fixed_topBtn {
		position: fixed;
		width: 20px;
		height: 20px;
		border: 1px solid #dedede;
		border-bottom: 1px solid #b3b3b3;
		background: rgba(250,250,250,0.80);
		bottom: 65px;
		right: 20px;
		border-radius: 3px;
		z-index: 1000;
		padding: 5px;
		display: block;
		cursor: pointer;
	}
}
@media only screen and (min-width: 610px) {
	.fixed_topBtn {
		position:fixed;
		width: 20px;
		height: 20px;
		border: 1px solid #dedede;
		border-bottom: 1px solid #b3b3b3;
		background: rgba(250,250,250,0.80);
		bottom: 65px;
		margin-left:550px;
		border-radius: 3px;
		z-index: 1000;
		padding: 5px;
		display: block;
		cursor: pointer;
	}
}
.fixed_topBtn img {
    vertical-align: top;
    border: 0px;
	height:20px;
}