﻿ol.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: bold;
    counter-reset: li;
}
ol.steps li {
    list-style-image: none;
    list-style-type: none;
    margin-left: 0;
    text-align: center;
    color: #3a3a3a;
    background: #CBE6FD;
    position: relative;
    margin-left: 43px;
}
ol.steps li:after {
    position: absolute;
    top: 50%;
    left: 100%;
    content: " ";
    height: 0;
    width: 0;
    pointer-events: none;
    border: solid transparent;
    border-left-color: #CBE6FD;
    border-width: 19px;
    margin-top: -19px;
}
ol.steps li:first-child {
    margin-left: 0;
}
ol.steps li:first-child span {
    padding: 9px;
}
ol.steps li:first-child span:after {
    border: none;
}
ol.steps li:last-child:after {
    border-width: 0;
}
ol.steps li span {
    display: block;
    padding: 9px 9px 9px 9px;
}
ol.steps li span:after {
    position: absolute;
    top: 50%;
    right: 100%;
    content: " ";
    height: 0;
    width: 0;
    pointer-events: none;
    border: solid #CBE6FD;
    border-left-color: transparent;
    border-width: 19px;
    margin-top: -19px;
}
ol.steps li span:before {
    content: "";
    counter-increment: li;
}
ol.steps > li {
    float: left;
}
ol.steps li.current {
    color: #fff;
    background: #72B2E7;
}
ol.steps li.current:after {
    border-left-color: #72B2E7;
}
ol.steps li.current span:after {
    border-color: #72B2E7;
    border-left-color: transparent;
}
ol.steps li.step1 {
    z-index: 9;
}
ol.steps li.step2 {
    z-index: 8;
}
ol.steps li.step3 {
    z-index: 7;
}
ol.steps li.step4 {
    z-index: 6;
}
ol.steps li.step5 {
    z-index: 5;
}
ol.steps li.step6 {
    z-index: 4;
}
ol.steps li.step7 {
    z-index: 3;
}
ol.steps li.step8 {
    z-index: 2;
}
ol.steps li.step9 {
    z-index: 1;
}
ol.steps li.step10 {
    z-index: 0;
}


.cd-breadcrumb > a {
  color: #96c03d;
}
.cd-breadcrumb > li > a {
	text-decoration: none;
	cursor: default;
}
.cd-breadcrumb, .cd-multi-steps {
  padding-left: 0.5em;
  padding-right: 0.5em;
  background-color: white;
  border-radius: .25em;
}
.cd-breadcrumb:after, .cd-multi-steps:after {
  content: "";
  display: table;
  clear: both;
}
.cd-breadcrumb li, .cd-multi-steps li {
  display: inline-block;
  float: left;
  margin: 0.5em 0;
}
.cd-breadcrumb li::after, .cd-multi-steps li::after {
  /* this is the separator between items */
  display: inline-block;
  content: '\00bb';
  margin: 0 0.6em;
  color: #959fa5;
}
.cd-breadcrumb li:last-of-type::after, .cd-multi-steps li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}
.cd-breadcrumb li > *, .cd-multi-steps li > * {
  /* single step */
  display: inline-block;
  font-size: 0.9rem;		/* controls the font size */
  color: #2c3f4c;
}
.cd-breadcrumb li.current > *, .cd-multi-steps li.current > * {
  /* selected step */
  color: #96c03d;
}
.no-touch .cd-breadcrumb a:hover, .no-touch .cd-multi-steps a:hover {
  /* steps already visited */
  color: #96c03d;
}
.cd-breadcrumb.custom-separator li::after, .cd-multi-steps.custom-separator li::after {
  /* replace the default arrow separator with a custom icon */
  content: '';
  height: 16px;
  width: 16px;
  background: url(../img/cd-custom-separator.svg) no-repeat center center;
  vertical-align: middle;
}
.cd-breadcrumb.custom-icons li > *::before, .cd-multi-steps.custom-icons li > *::before {
  /* add a custom icon before each item */
  content: '';
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: .4em;
  margin-top: -2px;
  background: url(../img/cd-custom-icons-01.svg) no-repeat 0 0;
  vertical-align: middle;
}
.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(2) > *::before, .cd-multi-steps.custom-icons li:not(.current):nth-of-type(2) > *::before {
  /* change custom icon using image sprites */
  background-position: -20px 0;
}
.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(3) > *::before, .cd-multi-steps.custom-icons li:not(.current):nth-of-type(3) > *::before {
  background-position: -40px 0;
}
.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(4) > *::before, .cd-multi-steps.custom-icons li:not(.current):nth-of-type(4) > *::before {
  background-position: -60px 0;
}
.cd-breadcrumb.custom-icons li.current:first-of-type > *::before, .cd-multi-steps.custom-icons li.current:first-of-type > *::before {
  /* change custom icon for the current item */
  background-position: 0 -20px;
}
.cd-breadcrumb.custom-icons li.current:nth-of-type(2) > *::before, .cd-multi-steps.custom-icons li.current:nth-of-type(2) > *::before {
  background-position: -20px -20px;
}
.cd-breadcrumb.custom-icons li.current:nth-of-type(3) > *::before, .cd-multi-steps.custom-icons li.current:nth-of-type(3) > *::before {
  background-position: -40px -20px;
}
.cd-breadcrumb.custom-icons li.current:nth-of-type(4) > *::before, .cd-multi-steps.custom-icons li.current:nth-of-type(4) > *::before {
  background-position: -60px -20px;
}
