body {
/*
  background: #FFF;
  height: 100vh;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-family: "Source Sans Pro", sans-serif;
*/
}
/* ------------------------- Separate line ------------------------- */
:root {
  --breadcrumb-theme-1: #FFF;
  --breadcrumb-theme-2: #96c03d;
  --breadcrumb-theme-3: #d80d52;
  --breadcrumb-theme-4: #c70041;
  --breadcrumb-theme-5: #2c3f4c;
  --breadcrumb-theme-6: #EDEFF0;

}
.breadcrumb {
	text-align: center;
	display: inline-block;
	overflow: hidden;
	border-radius: 5px;
	counter-reset: flag;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-bottom:20px !important;
}
.breadcrumb *{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.breadcrumb__step {
  text-decoration: none;
  outline: none;
  display: block;
  float: left;
  font-size: 16px;
  line-height: 48px;
  padding: 0 10px 0 60px;
  position: relative;
  background: #96c03d;
  color: #FFF;
  transition: background 0.5s;
  padding-left:46px;
}
.breadcrumb__step_inattivo {
  padding-left:64px !important;
}
.breadcrumb_testo{
	text-align:left;
}
@media screen and (max-width:950px){
	.breadcrumb *{  
		border-radius:0 !important;
		padding:0 !important;
	}

	.breadcrumb__step {
		margin-top:2px;
		padding-left:46px !important;
		width:100% !important;
	}
	.breadcrumb__step_inattivo {
		color: #2c3f4c;
	}
	.breadcrumb__step::before{
		left:14px !important;
	}
	
	.breadcrumb__step{
		line-height:18px;
		padding-top:15px !important;
		padding-bottom:15px !important;
	}
	.breadcrumb__step_inattivo:last-child::before {
		left:14px !important;
	}
	.breadcrumb__step--active {
		padding-left:46px !important;
	}
}

/*@media screen and (min-width:429px) and (max-width:800px){
	.breadcrumb__step {
		margin-top:2px;
		padding-left:46px !important;
	}
	.breadcrumb__step:after{
		content:"";
		display:block;
		clear:both;
	}
	.breadcrumb__step_inattivo {
		color: #2c3f4c;
		padding-left:66px !important;
	}
	.breadcrumb__step {
	}
	.breadcrumb__step_inattivo:last-child{
		padding-left:46px !important;
	}
	.breadcrumb__step_inattivo:last-child::before {
		left:14px !important;
	}
}
@media screen and (max-width:428px){
	.breadcrumb__step {
		margin-top:2px;
		padding-left:46px !important;
		
	}
	.breadcrumb__step:after{
		content:"";
		display:block;
		clear:both;
	}
	.breadcrumb__step_inattivo, 
	.breadcrumb__step_inattivo:last-child {
		color: #2c3f4c;
		padding:0 !important;
		padding-left:46px !important;
		line-height:18px;
		padding-top:15px !important;
		padding-bottom:15px !important;
	}
	.breadcrumb__step::before {
		left:10px !important;
	}
}
*/
.breadcrumb__step_inattivo {
	background-color: #EDEFF0;
  	color: #2c3f4c;
	background: #EDEFF0;
}
.breadcrumb__step_inattivo:hover {
	background-color:#EDEFF0;
  	color: #2c3f4c;
}

.breadcrumb__step:first-child {
  border-radius: 5px 0 0 5px;
}
.breadcrumb__step:first-child::before {
  left: 14px;
}
.breadcrumb__step:last-child {
  border-radius: 0 5px 5px 0;
  padding-right: 20px;
}
.breadcrumb__step:last-child::after {
  content: none;
}
/* STILI PALLINO*/
.breadcrumb__step::before {
  content: counter(flag);
  counter-increment: flag;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  line-height: 19px;
  margin: 14px 0;
  position: absolute;
  top: 0;
  left: 33px;
  font-weight: bold;
  background: #FFF;
  color: #96c03d;
  box-shadow: 0 0 0 1px #FFF;
/*
  border:1px solid #81A534;
*/

}
.breadcrumb__step::after {
  content: '';
  position: absolute;
  top: 0;
  right: -24px;
  width: 48px;
  height: 48px;
  transform: scale(0.707) rotate(45deg);
  z-index: 1;
  /* PUNTA NETTA*/
  border-radius: 0 0px 0 50px;
/* PUNTA ARROTONDATA
 border-radius: 0 5px 0 50px;
*/
  background: #96c03d;
  transition: background 0.5s;
  box-shadow: 2px -2px 0 2px #FFF;
}
/* COLORE PUNTA NON ATTIVA = SFONDO */
.breadcrumb__step.breadcrumb__step_inattivo::after {
  background: #EDEFF0;
}
.breadcrumb__step--active:first-child {
/*  color: #96c03d;
  background: #FFF;
*/
  padding-left:44px !important;
}
.breadcrumb__step--active {
/*  color: #96c03d;
  background: #FFF;
*/
  padding-left:64px;
}
.breadcrumb__step--active::before {
  /*color: #FFF;*/
}
.breadcrumb__step--active::after {
/*  background: #FFF;*/
}
.breadcrumb__step:hover {
  
	color: #FFF;
/*  background: #d80d52;
*/}

.breadcrumb__step:hover.breadcrumb__step_inattivo{
	color: #2c3f4c;
}
.breadcrumb__step:hover::before {
 /* COLORE HOVER PALLINO NUMERATO
 color: #d80d52;
 */
}
.breadcrumb__step:hover::after {
/*  color: #FFF;
  background: #d80d52;*/
}
