/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  /*font-size: 62.5%;*/
}

body {
  font-family: "Roboto", sans-serif;
}

a {
  color: #000;
  text-decoration: none;
}


/* -------------------------------- 

Basic Style

-------------------------------- */
.cd-breadcrumb, .cd-multi-steps {
  width: 100%;
  font-size: 18px;
  padding: 0.5em 1em;
  margin: 1em auto;
  background-color: #fff;
  border-radius: 0pxm;
  border-color: #eeeeee;
  border-style:solid;
  border-width: 1px;
}
.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;
*/  color: #2c3f4c;
}
.cd-breadcrumb li.current > *, .cd-multi-steps li.current > * {
  /* selected step */
  color: #96c03d;
  border-bottom-color:#000;
  border-bottom-style:solid;
  border-bottom-width:1px;
}
.steps { color: #7ac1f9;}
.stage:link,.stage:hover { color: #9c9c9c !important; text-decoration:none;}
.no-touch .cd-breadcrumb a:hover, .no-touch .cd-multi-steps a:hover {
  /* steps already visited */
  color: #a6a6a6;
}

@media only screen and (min-width: 320px) {
  .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: 320px) {
  .cd-breadcrumb.triangle {
    /* reset basic style */
    padding: 0;
  }
  .cd-breadcrumb.triangle li {
    position: relative;
    padding: 0;
    margin: 0px 0px 0px 0;
  }
  .cd-breadcrumb.triangle li:last-of-type {
    margin-right: 0;
  }
  .cd-breadcrumb.triangle li > * {
    position: relative;
    padding: 1em 1em 1em 1em;
    color: #b1b1b1;
    background-color: #fff;
    /* the border color is used to style its ::after pseudo-element */
    border-color: #fff;
  }
  .cd-breadcrumb.triangle li.current > * {
    /* selected step */
    color: #000;
    background-color: #f6f6f6;
    border-left-color: #f6f6f6;
	border-right-color: #f6f6f6;
	border-top-color: #f6f6f6;
	border-bottom-color: #000;
  }
  .cd-breadcrumb.triangle li:first-of-type > * {
    padding-left: 1.6em;
    border-radius: 0 0 0 0;
  }
  .cd-breadcrumb.triangle li:last-of-type > * {
    padding-right: 1.6em;
    border-radius: 0 .0 0 0;
  }
  .no-touch .cd-breadcrumb.triangle a:hover {
    /* steps already visited */
    color: #a6a6a6;
    background-color: #fff;
    border-color: #fff;
	cursor:default;
  }
  .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: 8px;
  }
  .cd-breadcrumb.triangle li::after {
    /* this is the white separator between two items */
    z-index: 1;
    -webkit-transform: translateX(1px);
    -moz-transform: translateX(1px);
    -ms-transform: translateX(1px);
    -o-transform: translateX(1px);
    transform: translateX(1px);
    border-left-color: #e1e1e1;
    /* reset style */
    margin: 0;
  }
  .cd-breadcrumb.triangle li.current::after {
    border-left-color: #dae1f1;
  }
  .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: 28px;
    border-bottom-width: 28px;
  }

  @-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;
    }
  }
}



@media only screen and (max-width: 992px) {
		.cd-breadcrumb,  {
		  width: 100%;
		  font-size: 16px;
		  padding: 0.5em 1em;
		  margin: 1em auto;
		  background-color: #fff;
		  border-radius: 0pxm;
		  border-color: #dae1f1;
		  border-style:solid;
		  border-width: 1px;
		}	
		.cd-breadcrumb li.current > *, .cd-multi-steps li.current > * {
		  /* selected step */
		  color: #000;
		  border-bottom-color:#f3a61c;
		  border-bottom-style:solid;
		  border-bottom-width:1px;
		}
	  .cd-breadcrumb.triangle li.current > * {
		/* selected step */
		color: #000;
		background-color: #fff;
		border-left-color: #fff;
		border-right-color: #dae1f1;
		border-top-color: #dae1f1;
		border-bottom-color: #f3a61c;
		width: 100% !important;
	  }
}
