

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

Basic Style

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

.cd-breadcrumb li .fa-check {
	top: 2px;
	position: relative;
}
.cd-breadcrumb-wrapper{
	padding: 0 0rem 0 0rem;
	position: relative;
}
.cd-breadcrumb, .cd-multi-steps {
  width: 100%;
  max-width: 100%;
  padding: 0.5em 1em;
  margin: 1em auto;
  background-color: #edeff0;
  border-radius: 5px;
  
}

.cd-breadcrumb:after, .cd-multi-steps:after {
  content: "";
  display: table;
  clear: both;
}
.cd-breadcrumb li, .cd-multi-steps li {
  display: inline-block;
  flex-grow: 1;
  margin: 0em 0;

}
	
  
.cd-breadcrumb li::after, .cd-multi-steps li::after {
  /* this is the separator between items */

}
.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.86rem;
  color: #565e6c;
  width: 100%;
  position: relative;
  font-weight: 700;
  
}
.cd-breadcrumb li i , .cd-multi-steps li i {
  margin-right: 5px;
  
}

.cd-breadcrumb li.current > *, .cd-multi-steps li.current > * {
  /* selected step */
  color: #192061;
}
.no-touch .cd-breadcrumb a:hover, .no-touch .cd-multi-steps a:hover {
  /* steps already visited */
  color: #192061;
}


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

Triangle breadcrumb

-------------------------------- */
@media only screen and (min-width: 320px) {
  .cd-breadcrumb.triangle {
    /* reset basic style */
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between

  }
  .cd-breadcrumb.triangle li {
    position: relative;
    padding: 0 0 0 0;
    margin: 0px 4px 0px 0;
    display: inline-block;
  
  }
  .cd-breadcrumb.triangle li:last-of-type {
    margin-right:0;
  }
  .cd-breadcrumb.triangle li > * {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 50px;
    padding: 0em .8em 0em 2em;
    color: #7c8595;
    background-color: #edeff0;
    /* the border color is used to style its ::after pseudo-element */
    border-color: #edeff0;
    font-style: normal !important;
  }
  .cd-breadcrumb.triangle li.current > * {
    /* selected step */
    color: #fff;
    background-color: #000;
    border-color: #000;
  }
  .cd-breadcrumb.triangle li:first-of-type > * {
    padding-left: 1.6em;
    border-radius: 5px 0 0 5px;
  }
  .cd-breadcrumb.triangle li:last-of-type > * {
    padding-right: 1.6em;
    border-radius: 0 5px 5px 0;
  }
  .no-touch .cd-breadcrumb.triangle a:hover {
    /* steps already visited */
    color: #ffffff;
    background-color: #192061;
    border-color: #192061;
  }
  .cd-breadcrumb.triangle li::after, .cd-breadcrumb.triangle li > *::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    content: '';
    height: 0;
    width: 0;
    /* 48px is the height of the <a> element */
    border: 25px solid transparent;
    border-right-width: 0;
    border-left-width: 12px;
  }
  .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;
  }
  .cd-breadcrumb.triangle.custom-separator li::after {
    /* reset style */
    background-image: none;
  }
  .cd-breadcrumb.triangle.custom-icons li::after, .cd-breadcrumb.triangle.custom-icons li > *::after {
    /* 50px is the height of the <a> element */
    border-top-width: 25px;
    border-bottom-width: 25px;
  }
  
  @media only screen and (min-width: 769px) {
	 .cd-breadcrumb.triangle li { 

    }

  	.cd-breadcrumb.triangle li > * {
      position: relative;
      font-size: 0.96rem;
	    padding: 0.96em .8em 0.96em 2.5em;
	    color: #7c8595;
	    background-color: #edeff0;
	    /* the border color is used to style its ::after pseudo-element */
	    border-color: #edeff0;
	    font-style: normal !important;
    }
    

  }

  @-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;
    }
  }
  .cd-breadcrumb.triangle li b.cd-text{
    display: inline-block !important;
    flex-grow: 1;
  }

@media (max-width: 440px) {  
  .cd-breadcrumb.triangle li b.cd-text{
	  display: none !important;

  }
  .cd-breadcrumb li .fa-check {
    top:0;
    margin-left:10px;
  }
}
