.multistep_indicator_01 .progressbar {
    counter-reset: step;
    padding: 0;
}
.multistep_indicator_01 .progressbar li {
    list-style-type: none;
    width: 16%;
    float: left;
    font-size: 18px;
    position: relative;
    text-align: center;	
    cursor: pointer;
    color: white;
}
.multistep_indicator_01 .progressbar.has_last_step .last_step,
.multistep_indicator_02 .progressbar.has_last_step .last_step {
	margin-right: -50%;
}
.multistep_indicator_01 .progressbar.has_last_step li:last-child,
.multistep_indicator_02 .progressbar.has_last_step li:last-child {
	display: none;
}
.multistep_indicator_01 .progressbar.has_last_step li,
.multistep_indicator_02 .progressbar.has_last_step li {
		width: 14%;
}
.multistep_indicator_01 .progressbar li:not(.disabled) span {
	cursor: pointer;
}
.multistep_indicator_01 .progressbar li:last-child,
.multistep_indicator_02 .progressbar li:last-child {
	width: 4%;
}
.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: 250%;
	left: -200%;
}
.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: 7px;
  height: 70px;
  display: table-cell;
  vertical-align: middle;
  min-width: 175px;
  max-width: 200px; 
  word-wrap: break-word;
  text-align: left;
  white-space: pre-line;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-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;
}
.multistep_indicator_01 .progressbar.has_last_step [data-tooltip]:before,
.multistep_indicator_02 .progressbar.has_last_step [data-tooltip]:before {
	min-width: 150px;
	font-size: 14px;
	margin-left: -70px;
}
.multistep_indicator_01 .lastStep [data-tooltip]:before,
.multistep_indicator_02 .lastStep [data-tooltip]:before {
	line-height: 30px;
}

/* 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.has_last_step {
	width: 92%;
}

.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: 16%;
    float: left;
    font-size: 18px;
    position: relative;
    text-align: center;	
    color: white;
}
.multistep_indicator_02 .progressbar li:not(.disabled) {
	cursor: pointer;
}

.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: 250%;
	left: -195%;
  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: -10px; }
.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: 16.3%; /* 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;
  cursor: pointer;
}
/* 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.7px; /* 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: 18.5%;
}
.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; 
}

.multistep_indicator_03 .steps li.custom_padding { padding-top: 5px; }
.multistep_indicator_03 .steps li.custom_padding .badge { margin-top: 5px; }

/* Setup colors (both the background and the arrow) */
/* Following */
.multistep_indicator_03 .steps li.active ~ li.disabled { background-color: #EBEBEB; cursor: default; }
.multistep_indicator_03 .steps li.active ~ li.disabled::after { border-left-color: #EBEBEB; }
/* Completed */
.multistep_indicator_03 .steps li a.active, .multistep_indicator_03 .steps li.passed a { color:white; cursor: pointer; }
.multistep_indicator_03 .steps li { background-color: #8bd277; }
.multistep_indicator_03 .steps li::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}*/
.multistep_indicator_03 .steps.has_last_step li { width:14.2%; font-size: 14px; } 
.multistep_indicator_03 .steps.has_last_step li:not(:nth-child(3)) { padding-top: 5px; }
.multistep_indicator_03 .steps.has_last_step li:not(:nth-child(3)) a .badge { margin-top: 5px; }

@media only screen and (min-width: 3000px){
  .multistep_indicator_03 .steps li a {
    font-size: 5px !important;
  }
  .multistep_indicator_03 .steps li {
    padding-top: 5px !important;
  }
}
@media only screen and (min-width: 2000px) and (max-width: 2980px){ .multistep_indicator_03 .steps li:not(.lastStep) { padding-top: 15px !important; } }

@media only screen and (min-width: 2000px){
  .multistep_indicator_03 .steps li .badge {
    margin-top: -5px !important;
    display: none;
  }
}

@media only screen and (max-width: 1199px){
	.multistep_indicator_01 [data-tooltip]:before,
	.multistep_indicator_02 [data-tooltip]:before {
		font-size: 12px;
		min-width: 140px;
  	margin-left: -70px;
	}

	.multistep_indicator_01 .progressbar.has_last_step [data-tooltip]:before,
	.multistep_indicator_02 .progressbar.has_last_step [data-tooltip]:before {
		font-size: 12px;
		min-width: 120px;
  	margin-left: -70px;
	}
	.multistep_indicator_02 .progressbar.has_last_step .last_step [data-tooltip]:before {
		margin-left: -60px;
	}
	.multistep_indicator_01 .progressbar.has_last_step .last_step [data-tooltip]:before {
		margin-left: -50px;
	}

	.multistep_indicator_03 .steps li:first-child,
	.multistep_indicator_03 .steps li:nth-child(5) { padding-top: 5px; }
	.multistep_indicator_03 .steps li:first-child .badge,
	.multistep_indicator_03 .steps li:nth-child(5) .badge { margin-top: 5px; }
	
	.multistep_indicator_03 .steps.has_last_step li { width: 24%; }
	.multistep_indicator_03 .steps.has_last_step li:nth-child(5) { margin-left: 35px; }
	.multistep_indicator_03 .steps.has_last_step li:nth-child(n+5) { width: 30%; }
	.multistep_indicator_03 .steps.has_last_step li:not(.lastStep) { padding-top: 15px !important; }
	.multistep_indicator_03 .steps.has_last_step li.lastStep { padding-top: 15px; }
	.multistep_indicator_03 .steps.has_last_step li a .badge { margin-top: -5px !important; }
}
@media only screen and (max-width: 992px){
	.multistep_indicator_01 .progressbar,
	.multistep_indicator_02 .progressbar {
			margin-left: 3%;
	}
	.multistep_indicator_01 [data-tooltip]:before, .multistep_indicator_01 [data-tooltip]:after,
	.multistep_indicator_02 [data-tooltip]:before, .multistep_indicator_02 [data-tooltip]:after {
			display: none;
	}
	.multistep_indicator_01 {
		margin-top: 0px !important;
	}
	.multistep_indicator_02 {
		margin-top: -30px !important;
	}

	.multistep_indicator_03 .steps li { width: 31.5%; }
	.multistep_indicator_03 .steps:not(.has_last_step) li:nth-child(4) { margin-left: 25px; }
	.multistep_indicator_03 .steps li:last-child { width: 31.5%; }
	.multistep_indicator_03 .steps li:not(:last-child) { padding-top: 15px; }
	.multistep_indicator_03 .steps li:not(:last-child) .badge { margin-top: -5px !important; }
	.multistep_indicator_03 .steps.has_last_step li:nth-child(5) { margin-left: 20px; }
	.multistep_indicator_03 .steps.has_last_step li:nth-child(n+5) { width: 32%; }
	.multistep_indicator_03 .steps.has_last_step li.lastStep { padding-top: 15px; }
	.multistep_indicator_03 .steps.has_last_step li .badge { display:none; }
}
@media only screen and (max-width: 720px){
	.multistep_indicator_03 .steps.has_last_step li { height: 70px; }
	.multistep_indicator_03 .steps.has_last_step li:nth-child(n+2)::before {
	  border-top: 35px solid transparent; /* width: half height */
  	border-bottom: 35px solid transparent; /* width: half height */
	}
	.multistep_indicator_03 .steps.has_last_step li::after {
	  border-top: 35px solid transparent; /* width: arrow width, color: background of document */
	  border-bottom: 35px solid transparent; /* width: half height */
	}
}

@media only screen and (max-width: 700px){
	.multistep_indicator_03 .steps li .badge { display:none; }
	.multistep_indicator_03 .steps li.lastStep { padding-top: 15px !important; }
	.multistep_indicator_03 .steps li { height: 70px; }
	.multistep_indicator_03 .steps li:nth-child(n+2)::before {
	  border-top: 35px solid transparent; /* width: half height */
  	border-bottom: 35px solid transparent; /* width: half height */
	}
	.multistep_indicator_03 .steps li::after {
	  border-top: 35px solid transparent; /* width: arrow width, color: background of document */
	  border-bottom: 35px solid transparent; /* width: half height */
	}
	.multistep_indicator_03 .steps.has_last_step li:nth-child(5) { margin-left: 13px; }
}
@media only screen and (max-width: 553px){
	.multistep_indicator_03 .steps li { height: 70px; width: 29%; padding-right: 25px; }
	.multistep_indicator_03 .steps li.lastStep { padding-top: 10px!important; }
	.multistep_indicator_03 .steps li:last-child { width: 35%; }
	.multistep_indicator_03 .steps li:nth-child(4) { margin-left: 0px !important; }
	.multistep_indicator_03 .steps li:nth-child(n+2)::before {
	  border-left: 25px solid white; /* width: arrow width, color: background of document */
	  border-top: 35px solid transparent; /* width: half height */
  	border-bottom: 35px solid transparent; /* width: half height */
	}
	.multistep_indicator_03 .steps li::after {
	  border-left: 25px solid white; /* width: arrow width, color: background of document */
	  border-top: 35px solid transparent; /* width: arrow width, color: background of document */
	  border-bottom: 35px solid transparent; /* width: half height */
	}
	.multistep_indicator_03 .steps li a { font-size: 12px; }

	.multistep_indicator_03 .steps.has_last_step li { height: 80px; width: 23%; }
	.multistep_indicator_03 .steps.has_last_step li:nth-child(n+2)::before {
	  border-top: 40px solid transparent; /* width: half height */
  	border-bottom: 40px solid transparent; /* width: half height */
	}
	.multistep_indicator_03 .steps.has_last_step li::after {
	  border-top: 40px solid transparent; /* width: arrow width, color: background of document */
	  border-bottom: 40px solid transparent; /* width: half height */
	}
	.multistep_indicator_03 .steps.has_last_step li:nth-child(5) { margin-left: 20px; }
	.multistep_indicator_03 .steps.has_last_step li:nth-child(n+5) { width: 30%; }
}

@media only screen and (max-width: 400px){
	.multistep_indicator_03 .steps.has_last_step li.lastStep { padding-top: 10px !important; font-size: 10px; }
	.multistep_indicator_03 .steps li a { font-size: 10px; }
}