#div_arrow_steps {
    background: white;
    padding: 5px;
    height: 47px;
}

.arrow_steps {
	margin:0;
	padding:0;
}

.arrow_steps:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
}

.arrow_steps .step {
	font-size: 14px;
	text-align: center;
	color: #333;
	cursor: default;
	margin: 0 3px;
	padding: 6px 10px 10px 30px;
	min-width: 180px;
	float: left;
	position: relative;
	background-color: #e8e8e8;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none; 
  transition: background-color 0.2s ease;
}

.arrow_steps .step:after,
.arrow_steps .step:before {
	content: " ";
	position: absolute;
	top: 0;
	right: -17px;
	width: 0;
	height: 0;
	border-top: 19px solid transparent;
	border-bottom: 17px solid transparent;
	border-left: 17px solid #e8e8e8;
	z-index: 2;
  transition: border-color 0.2s ease;
}

.arrow_steps .step:before {
	right: auto;
	left: 0;
	border-left: 17px solid #fff;	
	z-index: 0;
}

.arrow_steps .step:first-child:before {
	border: none;
}

.arrow_steps .step:first-child {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.arrow_steps .step span {
	position: relative;
}

.arrow_steps .step span:before {
	opacity: 0;
	content: "✔";
	position: absolute;
	top: -2px;
	left: -20px;
}

.arrow_steps .step.done span:before {
	opacity: 1;
	-webkit-transition: opacity 0.3s ease 0.5s;
	-moz-transition: opacity 0.3s ease 0.5s;
	-ms-transition: opacity 0.3s ease 0.5s;
	transition: opacity 0.3s ease 0.5s;
}

.arrow_steps .step.current {
	color: #fff;
	background-color: #797979;
}

.arrow_steps .step.current:after {
	border-left: 17px solid #797979;	
}
