.multistep_indicator_01, .multistep_indicator_02, .multistep_indicator_03 { width: 100%; display: none; margin-bottom: 15px; }
.multistep_indicator_01 { margin-top: 40px; }
.multistep_indicator_02 { margin-top: 10px; }
.multistep_indicator_01 .progressbar {
    counter-reset: step;
    padding: 0;
}
.multistep_indicator_01 .progressbar li {
    list-style-type: none;
    width: 33%;
    float: left;
    font-size: 18px;
    position: relative;
    text-align: center;	
    color: white;
}
.multistep_indicator_01 .progressbar li:last-child,
.multistep_indicator_02 .progressbar li:last-child {
	width: 1%;
}
.multistep_indicator_01 .progressbar li:before {
    width: 40px;
    height: 40px;
    content: counter(step);
    counter-increment: step;
    line-height: 40px;
    border: 2px solid rgb(51, 122, 183);
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    background: linear-gradient(to bottom left, rgb(51, 122, 183), rgb(81, 142, 194)); 
    background: -moz-linear-gradient(to bottom left, rgb(51, 122, 183), rgb(81, 142, 194)); 
    background: -webkit-linear-gradient(to bottom left, rgb(51, 122, 183), rgb(81, 142, 194)); 
    background: -ms-linear-gradient(to bottom left, rgb(51, 122, 183), rgb(81, 142, 194)); 
}
.multistep_indicator_01 .progressbar li:last-child:before,
.multistep_indicator_02 .progressbar li:last-child:before {
	content: none;
}
.multistep_indicator_01 .progressbar li:after {
    width: 100%;
    height: 10px;
    content: '';
    position: absolute;
    border: 2px solid lightgray;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    background: linear-gradient(to bottom left, white, lightgray);
    background: -moz-linear-gradient(to bottom left, white, lightgray);
    background: -webkit-linear-gradient(to bottom left, white, lightgray);
    background: -ms-linear-gradient(to bottom left, white, lightgray);
    top: 15px;
    left: -50%;
    z-index: -1;
}
.multistep_indicator_01 .progressbar li:last-child:after {
	width: 1500%;
	left: -1500%;
}
.multistep_indicator_01 .progressbar li:first-child:after {
    width: 50%;
    left: 0;
    border: 2px solid rgb(51, 122, 183);
    background: repeating-linear-gradient(45deg, rgb(51, 122, 183), rgb(51, 122, 183) 10px, rgb(81, 142, 194) 10px, rgb(81, 142, 194) 20px);
    background: -moz-repeating-linear-gradient(45deg, rgb(51, 122, 183), rgb(51, 122, 183) 10px, rgb(81, 142, 194) 10px, rgb(81, 142, 194) 20px);
    background: -webkit-repeating-linear-gradient(45deg, rgb(51, 122, 183), rgb(51, 122, 183) 10px, rgb(81, 142, 194) 10px, rgb(81, 142, 194) 20px);
    background: -ms-repeating-linear-gradient(45deg, rgb(51, 122, 183), rgb(51, 122, 183) 10px, rgb(81, 142, 194) 10px, rgb(81, 142, 194) 20px);
}
.multistep_indicator_01 .progressbar li.passed {
    color: white;
}
.multistep_indicator_01 .progressbar li.passed:before {
    border-color: rgb(51, 122, 183);
}
.multistep_indicator_01 .progressbar li.passed + li:after {
    border: 2px solid rgb(51, 122, 183);
    background: repeating-linear-gradient(45deg, rgb(51, 122, 183), rgb(51, 122, 183) 10px, rgb(81, 142, 194) 10px, rgb(81, 142, 194) 20px);
    background: -moz-repeating-linear-gradient(45deg, rgb(51, 122, 183), rgb(51, 122, 183) 10px, rgb(81, 142, 194) 10px, rgb(81, 142, 194) 20px);
    background: -webkit-repeating-linear-gradient(45deg, rgb(51, 122, 183), rgb(51, 122, 183) 10px, rgb(81, 142, 194) 10px, rgb(81, 142, 194) 20px);
    background: -ms-repeating-linear-gradient(45deg, rgb(51, 122, 183), rgb(51, 122, 183) 10px, rgb(81, 142, 194) 10px, rgb(81, 142, 194) 20px);
} 

/* Hide the tooltip content by default */
.multistep_indicator_01 [data-tooltip]:after,
.multistep_indicator_02 [data-tooltip]:after {
  pointer-events: none;
}

/* Position tooltip above the element */
.multistep_indicator_01 [data-tooltip]:before,
.multistep_indicator_02 [data-tooltip]:before {
  position: absolute;
  bottom: 110%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -90px;
  padding: 0px 7px;
  height: 50px;
  display: table-cell;
  vertical-align: middle;
  min-width: 175px;
  max-width: 200px; 
  word-wrap: break-word;
  text-align: left;
  white-space: pre-line;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 15px;
  line-height: 50px;
  vertical-align: middle;
}

/* Triangle hack to make tooltip look like a speech bubble */
.multistep_indicator_01 [data-tooltip]:after,
.multistep_indicator_02 [data-tooltip]:after {
  position: absolute;
  bottom: 110%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
}

/* Show tooltip content on hover */
.multistep_indicator_01 [data-tooltip]:hover:before,
.multistep_indicator_01 [data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.multistep_indicator_02 .breadcrumbs {
  margin-top: 50px;
  margin-left: 50px;
  overflow: hidden;
  background: linear-gradient(to bottom right, #19b8dd, #0d98cb);
    background: -moz-linear-gradient(to bottom right, #19b8dd, #0d98cb);
    background: -webkit-linear-gradient(to bottom right, #19b8dd, #0d98cb);
    background: -ms-linear-gradient(to bottom right, #19b8dd, #0d98cb);
  border: 2px solid #0d98cb;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  padding: 5px 0px;
  overflow: hidden;
  height: 15px;
  margin-left: 0px;
  width: 98%;
  z-index: -2;
  position: relative;
}

.multistep_indicator_02 .breadcrumbs ul {
  list-style: none;
  padding: 0px 20px;
  padding-right: 0px;
	margin-top: -21px;
}

.multistep_indicator_02 .breadcrumbs li {
  float: left;
  margin-right: 30px;
  margin-bottom: 10px;
}
.multistep_indicator_02 .breadcrumbs i {
  border: solid #0d98cb;
  border-width: 0 3px 3px 0;
  display: inline-block;
  margin-top: 16px;
  padding: 5px;
}

.multistep_indicator_02 .breadcrumbs .right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.multistep_indicator_02 .progressbar ul {
		margin-top: -37px;
		width: 100%;
    counter-reset: step;
    padding: 0;
    z-index: 1;
}
.multistep_indicator_02 .progressbar li {
    list-style-type: none;
    width: 33%;
    float: left;
    font-size: 18px;
    position: relative;
    text-align: center;	
    color: white;
}

.multistep_indicator_02 .progressbar li:before {
    width: 40px;
    height: 40px;
    content: counter(step);
    counter-increment: step;
    line-height: 40px;
    border: 2px solid #0d98cb;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    z-index: 2;
    background: linear-gradient(to bottom left, #19b8dd, #0d98cb); 
    background: -moz-linear-gradient(to bottom left, #19b8dd, #0d98cb); 
    background: -webkit-linear-gradient(to bottom left, #19b8dd, #0d98cb); 
    background: -ms-linear-gradient(to bottom left, #19b8dd, #0d98cb);  
}
.multistep_indicator_02 .progressbar li:after {
    width: 100%;
    height: 18px;
    content: '';
    position: absolute;
    top: 10px;
    border: none;
    background: transparent;
    z-index: -5;
    left: -50%;
}
.multistep_indicator_02 .progressbar li:not(.passed):after {
	  border-top: 1px solid #d4d4d4;
	  border-bottom: 1px solid #d4d4d4;
	  background: #eaeaea;
		z-index: -1;
}
.multistep_indicator_02 .progressbar li:last-child:after {
	width: 1600%;
	left: -1600%;
  border-right: 2px solid #d4d4d4;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
}
.multistep_indicator_02 .progressbar li.passed:last-child:after {
	border: none;
}
.multistep_indicator_02 .progressbar li:first-child:after {
    width: 50%;
    left: 0;
    border: 2px solid transparent;
    background: transparent;
}

.multistep_indicator_03 { margin-top: -30px; }
.multistep_indicator_03 .steps {
  margin: 5px 20px;
  padding: 0;
  overflow: hidden;
}
.multistep_indicator_03 .steps a {
  color: gray;
  cursor: default;
  text-decoration: none;
}
.multistep_indicator_03 .steps em {
  display: block;
  font-size: 1.1em;
  font-weight: bold;
}
.multistep_indicator_03 .steps li {
  float: left;
  margin-top: 10px;
  margin-left: 0;
  width: 33%; /* 100 / number of steps */
  height: 50px; /* total height */
  list-style-type: none;
  padding: 15px 0px 5px 30px; /* padding around text, last should include arrow width */
  border-right: 3px solid white; /* width: gap between arrows, color: background of document */
  position: relative;
}
/* remove extra padding on the first object since it doesn't have an arrow to the left */
.multistep_indicator_03 .steps li:first-child {
  padding-left: 5px;
}
/* white arrow to the left to "erase" background (starting from the 2nd object) */
.multistep_indicator_03 .steps li:nth-child(n+2)::before {
  position: absolute;
  top:0;
  left:0;
  display: block;
  border-left: 25px solid white; /* width: arrow width, color: background of document */
  border-top: 25px solid transparent; /* width: half height */
  border-bottom: 25px solid transparent; /* width: half height */
  width: 0;
  height: 0;
  content: " ";
}
/* colored arrow to the right */
.multistep_indicator_03 .steps li::after {
  z-index: 1; /* need to bring this above the next item */
  position: absolute;
  top: 0;
  right: -24.5px; /* arrow width (negated) */
  display: block;
  border-left: 25px solid #7c8437; /* width: arrow width */
  border-top: 25px solid transparent; /* width: half height */
  border-bottom: 25px solid transparent; /* width: half height */
  width:0;
  height:0;
  content: " ";
}
.multistep_indicator_03 .steps li:last-child {
	width: 34%;
}
.multistep_indicator_03 .steps li:last-child:after {
	border:none;
}
.multistep_indicator_03 .steps li .badge { 
	float:left; 
	margin-right: 7px; 
	height: 30px; 
	width: 30px; 
	border-radius: 50%; 
  -webkit-border-radius: 50%; 
  -moz-border-radius: 50%; 
  -o-border-radius: 50%; 
  -ms-border-radius: 50%; 
	line-height: 25px; 
	vertical-align: middle; 
	margin-top: -5px; 
	border: 1px solid #e4e4e4;
	background: lightgray; 
}

/* Setup colors (both the background and the arrow) */
/* Following */
.multistep_indicator_03 .steps li.disabled { background-color: #EBEBEB; }
.multistep_indicator_03 .steps li.disabled::after { border-left-color: #EBEBEB; }
/* Completed */
.multistep_indicator_03 .steps li a.active, .multistep_indicator_03 .steps li.passed a { color:white; }
.multistep_indicator_03 .steps li.passed { background-color: #8bd277; }
.multistep_indicator_03 .steps li.passed::after { border-left-color: #8bd277; }

/* Current */
.multistep_indicator_03 .steps li.active, .multistep_indicator_03 .steps li.active .badge { background-color: #52ca30; }
.multistep_indicator_03 .steps li.active::after { border-left-color: #52ca30; }
.multistep_indicator_03 .steps li.passed:not(.active) { background-color: #85d170; }
.multistep_indicator_03 .steps li.passed:not(.active)::after { border-left-color: #85d170; }
.multistep_indicator_03 .steps li.active a, .multistep_indicator_03 .steps li.passed a { color: white; }
.multistep_indicator_03 .steps li.passed:not(.active) .badge { background: #85d170; }

/* Hover for completed and current */
/*.multistep_indicator_03 .steps li:hover {background-color: #696}
.multistep_indicator_03 .steps li:hover::after {border-left-color: #696}*/

@media only screen and (min-width: 3000px){ .multistep_indicator_03 .steps li::after { right:-24px; } }

@media only screen and (max-width: 730px){
  .multistep_indicator_03 .badge { display: none; }
}

@media only screen and (max-width: 630px){
  .multistep_indicator_01 [data-tooltip], .multistep_indicator_02 [data-tooltip] { display: none; }
  .multistep_indicator_01 { margin-top: 0px; }
  .multistep_indicator_02 { margin-top: -40px; }
}

@media only screen and (max-width: 600px){
  .multistep_indicator_03 .steps li { height: 80px; }
  .multistep_indicator_03 .steps li:last-child() { display: none; }

  .multistep_indicator_03 .steps li:nth-child(n+2)::before {
    border-top: 40px solid transparent; /* width: half height */
    border-bottom: 40px solid transparent; /* width: half height */
  }
  /* colored arrow to the right */
  .multistep_indicator_03 .steps li::after {
    border-top: 40px solid transparent; /* width: half height */
    border-bottom: 40px solid transparent; /* width: half height */
  }
}

@media only screen and (max-width: 500px){
  .multistep_indicator_03 .steps li a { font-size: 12px; }
}