html {
  font-size: 62.5%;
}

.cd-breadcrumb,
.cd-multi-steps {
  width: 830px;
  ;
  max-width: 830px;
  padding: 0.5em 1em;
  margin: 1em auto;
  background-color: #edeff0;
  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 .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: 1.4rem;
}


@media only screen and (min-width: 768px) {

  .cd-breadcrumb,
  .cd-multi-steps {
    padding: 0 1.2em;
  }

  .cd-breadcrumb li,
  .cd-multi-steps li {
    margin: 1.2em 0;
  }

  .cd-breadcrumb li::after,
  .cd-multi-steps li::after {
    margin: 0 1em;
  }

  .cd-breadcrumb li>*,
  .cd-multi-steps li>* {
    font-size: 1.6rem;
  }
}

/* --------------------------------

  Triangle breadcrumb

  -------------------------------- */
@media only screen and (min-width: 768px) {
  .cd-breadcrumb.triangle {
    /* reset basic style */
    background-color: transparent;
    padding: 0;
  }

  .cd-breadcrumb.triangle li {
    position: relative;
    padding: 0;
    margin: 4px 4px 4px 0;
  }

  .cd-breadcrumb.triangle li:last-of-type {
    margin-right: 0;
  }

  .cd-breadcrumb.triangle li>* {
    position: relative;
    padding: 1em 2.1em 1em 3.9em;
    /* the border color is used to style its ::after pseudo-element */
    /*  border-color: #edeff0;*/
  }

  .cd-breadcrumb.triangle li:first-of-type>* {
    padding-left: 3.5em;
    border-radius: .25em 0 0 .25em;
  }

  .cd-breadcrumb.triangle li:last-of-type>* {
    padding-right: 2.5em;
    border-radius: 0 .25em .25em 0;
  }

  .cd-breadcrumb.triangle li::after,
  .cd-breadcrumb.triangle li>*::after {
    /*
          li > *::after is the colored triangle after each item
          li::after is the white separator between two items
      */
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    content: '';
    height: 0;
    width: 0;
    /* 48px is the height of the <a> element */
    border: 28px solid transparent;
    border-right-width: 0;
    border-left-width: 20px;
  }

  .cd-breadcrumb.triangle li::after {
    /* this is the white separator between two items */
    z-index: 1;
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
    border-left-color: #ffffff;
    /* reset style */
    margin: 0;
  }

  .cd-breadcrumb.triangle li>*::after {
    /* this is the colored triangle after each element */
    z-index: 2;
    border-left-color: inherit;
  }

  .cd-breadcrumb.triangle li:last-of-type::after,
  .cd-breadcrumb.triangle li:last-of-type>*::after {
    /* hide the triangle after the last step */
    display: none;
  }

  @-moz-document url-prefix() {

    .cd-breadcrumb.triangle li::after,
    .cd-breadcrumb.triangle li>*::after {
      /* fix a bug on Firefix - tooth edge on css triangle */
      border-left-style: dashed;
    }
  }
}

/* -------------------------------- */

.steplink_forward>* {
  color: #2c3f4c;
  background-color: #EBEBEB;
  /* the border color is used to style its ::after pseudo-element #edeff0*/
  border-color: #EBEBEB;
}

.steplink_forward a {
  color: black !important;
  background-color: #EBEBEB !important;
  text-decoration: none !important;
  cursor: default !important;
}


.steplink_now>* {
  color: #2c3f4c;
  background-color: #93A1DF;
  /* the border color is used to style its ::after pseudo-element #edeff0*/
  border-color: #93A1DF;
}

.steplink_now a {
  color: white !important;
  background-color: #93A1DF !important;
  text-decoration: none !important;
  cursor: default !important;
}

.steplink_backward>* {
  color: #2c3f4c;
  background-color: #94B0D3;
  /* the border color is used to style its ::after pseudo-element #edeff0*/
  border-color: #94B0D3;
}

.steplink_backward a {
  color: white !important;
  background-color: #94B0D3 !important;
  transition: color 0.2s !important;
  text-decoration: none !important;
  -moz-transition: color 0.2 !important;
  -webkit-transition: color 0.2s !important;
  -o-transition: color 0.2s !important;
}

.steplink_backward a:hover {
  color: white !important;
  background-color: #AAC6E9 !important;
  border-color: #AAC6E9 !important;
}

.container {
  color: red;
}
