/*======================= DE breadcrumb ===================*/
/*========================================================*/

span.divienhancer-crumb-delimiter.et-pb-icon {
    font-size: inherit;
    position: relative;
    top: 0.15em;
    padding: 0 0.5em;
}



/*================== Style One ======================*/
.de-crumb-styleone {
	/*centering*/
	display: inline-block;
	overflow: hidden;
	border-radius: 5px;
	counter-reset: flag;
  text-align: left;
}

.de-crumb-styleone .de-crumb-item {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	line-height: 36px;
	padding: 0 10px 0 60px;
  background: white;
	position: relative;
  transition: all 0.5s;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.de-crumb-styleone .de-crumb-item:first-child {
	padding-left: 46px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.de-crumb-styleone .de-crumb-item:first-child:before {
	left: 14px;
}
.de-crumb-styleone .de-crumb-item:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}


.de-crumb-styleone span.de-crumb-item, .de-crumb-styleone .de-crumb-item:hover{
	background: #9EEB62;
}


/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.de-crumb-styleone .de-crumb-item:after {
	content: '';
	position: absolute;
	top: 0;
	right: -18px; /*half of square's length*/
	width: 36px;
	height: 36px;
	transform: scale(0.707) rotate(45deg);
	z-index: 1;
	box-shadow:
		2px -2px 0 2px rgba(0, 0, 0, 0.4),
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	border-radius: 0 5px 0 50px;
  transition: all 0.5s;
}
/*we dont need an arrow after the last link*/
.de-crumb-styleone .de-crumb-item:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.de-crumb-styleone .de-crumb-item:before {
	content: counter(flag);
	counter-increment: flag;
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 8px 0;
	position: absolute;
	top: 0;
	left: 30px;
  text-align: center;
  background: white;
  box-shadow: 0 0 0 1px #ccc;
	font-weight: bold;
}
