/* -------------------------------- 
Primary style
-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

/* -------------------------------- 
Basic Style
-------------------------------- */
.cd-breadcrumb {
  padding: 0.5em 0.2em;
  margin: 0.2em auto;
  background-color: #edeff0;
  border-radius: .25em;
  text-align: center;
}
.cd-breadcrumb:after {
  content: "";
  display: table;
  clear: both;
}
.cd-breadcrumb li {
  display: inline-block;
  float: left;
  margin: 0.5em 0;
}
.cd-breadcrumb li span {
  display: table-cell;
  vertical-align: middle;
}
.cd-breadcrumb.triangle span {
  height: 68px;
}
.cd-breadcrumb 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 {
  /* hide separator after the last item */
  display: none;
}
.cd-breadcrumb li > * {
  /* single step */
  display: inline-block;
  color: #2c3f4c;
}
.cd-breadcrumb li.current > * {
  /* selected step */
  color: #337ab7;
}
@media only screen and (min-width: 768px) {
  .cd-breadcrumb {
    padding: 0 1.2em;
  }
  .cd-breadcrumb li {
    margin: 1.2em 0;
  }
  .cd-breadcrumb li::after {
    margin: 0 1em;
  }
}

/* -------------------------------- 
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 .8em 1em 2em;
    color: #2c3f4c;
    background-color: #edeff0;
    /* the border color is used to style its ::after pseudo-element */
    border-color: #edeff0;
  }
  .cd-breadcrumb.triangle li.current > * {
    /* selected step */
    color: #ffffff;
    background-color: #337ab7;
    border-color: #337ab7;
  }
  .cd-breadcrumb.triangle li:first-of-type > * {
    padding-left: 0.6em;
    border-radius: .25em 0 0 .25em;
  }
  .cd-breadcrumb.triangle li:last-of-type > * {
    padding-right: 0.6em;
    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: 35px 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: #CECECE;
    /* 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;
  }
  .cd-breadcrumb.triangle.custom-separator li::after {
    /* reset style */
    background-image: 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;
    }
  }
}

/* -------------------------------- 
For LRA
-------------------------------- */
.mail-component {
	width: auto;
	height: 76px;
}

.mail {
	width: 25px;
	height: 30px;
	background-image: url(../img/dark.svg);
	background-size:100% 100%;
	display:inline-block;
	vertical-align: middle;
	margin-top: 5px;
}

.mail-component .arrow::before, .mail-component .arrow::after, .arrow-only::before{
	width: 10px;
	height: 30px;
	margin: 5px 2px 0 2px;
	content:" ";
	position: relative;
	vertical-align: middle;
	display:inline-block;
	background-image: url(../img/arrows.svg);
	background-size:100% 100%;
}

nav.multi-step-nav {
	overflow: hidden;
	white-space: nowrap;
	font-size: 12px;
}

.float-left {
	display: inline-block;
}

.multi-step-agent {
	background-color: #FFE9C0;
    padding: 0px 12px;
    border-radius: 6px;
    margin: 8px 0px;
}

.multi-step-principle {
	background-color: #FFE5D9;
    padding: 0 12px;
    border-radius: 6px;
    margin: 8px 0px;
}

.multi-step-after {
	margin-top: 38px;
}