/*----------------------------------------------------*/ 
/* Step 
-----------------------------------------------------*/ 
.step{
  list-style-type: none;
  display:table;
  padding:0;
  margin:0;
  overflow:hidden;
  float: right;
  border: 1px solid #dddddd;
}
.step li{
  display:table-cell;
  position:relative;
  background: #FFFFFF;
  padding: 0.8em 0.5em 0.8em 1.3em;
  color: #333333;
  width: 20%;
}
@media only screen and (max-width: 767px) {
	.step li{
		padding: 0.5em 0.5em 0.5em 1.3em;
	}
}
.step.step4 li {
	width: 25%;
}
.step li:last-child{
  padding-right: 1em;
}
.step li:last-child:before,
.step li:last-child:after{
  display:none;
}
.step li:before,
.step li:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.step li:before{
  top:-15px;
  right:-1em;
  border-style: solid;
  border-color: transparent transparent transparent #DDDDDD;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.step li:after{
  top:-15px;
  right:-.9em;
  border-style: solid;
  border-color: transparent transparent transparent #FFFFFF;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.step li.is-current{
  background: #F6F6F6;
  font-weight: bold;
}
.step .step_on{
  background-image: url(/form/lib/img/icon_flow_on.png);
  background-repeat: no-repeat;
  padding: 0px 10px 0 0;
  display: inline-block;
  vertical-align: middle;
  line-height: 13px;
}
.step .step_off{
  background-image: url(/form/lib/img/icon_flow_off.png);
  background-repeat: no-repeat;
  padding: 0px 10px 0 0;
  display: inline-block;
  vertical-align: middle;
  line-height: 13px;
}
.step li.is-current:after{
  border-color: transparent transparent transparent #F6F6F6;
}

@media only screen and (max-width: 767px) {
	.step li:before{
		border-width: 50px 0 40px 1em;
	}
	.step li:after{
		border-width: 50px 0 40px 1em;
	}
}