@charset "utf-8";

/*************************************************************
				시설예약 신청관리 상세 페이지 _ 진행상태
*************************************************************/
#process_steps {
	padding: 0;
}

#steps {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

#steps li {
	display: inline-block;
}

.steps_space {
	padding: 0;
}

#steps li:FIRST-CHILD {
    margin-left: 33px;
}

#steps li p {
	background: #eee;
	padding: 4px 8px;
	color: #888;
	display: block;
	font-weight: bold;
	position: relative;
	text-indent: 12px;
	margin: 0;
}

#steps li:FIRST-CHILD p {
	padding: 4px 8px 4px 4px;
}

#steps li:FIRST-CHILD p:BEFORE {
	border-bottom: 15px solid transparent;
	border-left: 15px solid transparent;
	border-top: 15px solid transparent;
	content: "";
	height: 0;
	position: absolute;
	left: 0;
	top: 50%;
	width: 0;
	margin-top: -15px;
}

#steps li p:BEFORE {
	border-bottom: 12px solid transparent;
	border-left: 12px solid #fff;
	border-top: 12px solid transparent;
	content: "";
	height: 0;
	position: absolute;
	left: 0;
	top: 50%;
	width: 0;
	margin-top: -12px;
}
#steps li p:AFTER {
	border-bottom: 12px solid transparent;
	border-left: 12px solid #eee;
	border-top: 12px solid transparent;
	content: "";
	height: 0;
	position: absolute;
	left: 100%;
	top: 50%;
	width: 0;
	margin-top: -12px;
	z-index: 1;
}


/* 활성화 부분에 css 교체 */
#steps li.steps_act p {
	background: #53c4df;
	color: #fff;
}

#steps li.steps_act p:AFTER {
	border-bottom: 12px solid transparent;
	border-left: 12px solid #53c4df;
	border-top: 12px solid transparent;
	content: "";
	height: 0;
	position: absolute;
	left: 100%;
	top: 50%;
	width: 0;
	margin-top: -12px;
	z-index: 1;
}

