/*********************************************************************************
* New Scrolling BreadCrumb Navigation
*********************************************************************************/
#breadcrumbTabs {
	box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12) !important;
    border-radius: 10px 10px 0px 0px !important;
    height: 65px;
	margin: 0px 0px 10px 0px;
    overflow-y: hidden;
	overflow-x: auto;
	position: relative;
}
    
.breadcrumb ul {
	display: flex;	
	padding: 0 !important;
}

/* Iowa customization for color Story #169947 */
/* Iowa customization for rebranding Story #188175 */
.breadcrumb li {
	background-color: #B1E7D3 !important;
	font-color: #000000;
	list-style-type: none;
    height: 65px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Iowa customization for color Story #169947 */
/* Iowa customization for rebranding Story #188175 */
.breadcrumb li.current {
	background-color: #69C6B0 !important;
	border-bottom: 3px solid #FFFFFF;
}

/* Iowa customization for color Story #169947 */
/* Iowa customization for rebranding Story #188175 */
.breadcrumb li.next {
	background-color: #287E5F !important;
}

/* Iowa customization for defect #166302 */
.breadcrumb li.next span{
	color: #ffffff!important;
	font-weight: normal;
}

/* Iowa customization after product upgrade 7.4 -205461 */
.breadcrumb li.next p{
	color: #ffffff !important;
	font-weight: normal;
}

/* Iowa customization for defect #166302 */
.breadcrumb li.current span{
	color: #000000 !important;
}

/* Iowa customization after product upgrade 7.4 -205461 */
.breadcrumb li.current p{
	color: #000000 !important;
	font-weight: bold;
}

.breadcrumb li a {
	display: inline-flex;
	height: 62px;
	text-decoration: none;
}

.breadcrumb li a:link {
	text-decoration: none;
}

.breadcrumb span.single {
	padding-top: 25px;
	font-size: 14px;
}
.breadcrumb p.single {
	padding-top: 18px !important;
	font-size: 14px;
}

.breadcrumb .double {
	padding-top: 11px;
	font-size: 14px;
}

.breadcrumb .middle {
	display: none;
}

/* Iowa customization for defect #191903 */
.breadcrumb span {
	color: #000000;
	font-weight: bold;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 1em;
	padding-left: 13px;
	padding-right: 13px;
}

/* Iowa customization for defect #191903 */

/* Iowa customization for defect #207543 */
.breadcrumb p {
	color: #000000 !important;
	font-weight: bold;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 1em;
	padding: 5px 8px 0 8px !important;/* Bug 323555 - updated right padding and left padding from 10px to 8px */
	margin: 0 !important;
}


@media screen and (min-width: 1024px) { 
	.breadcrumb li {
		width: 100%;
	}
	
	#breadcrumbTabs .list-group-item {
		padding: .5rem .2rem !important;
	}
	
	#breadcrumbTabs .list-group-item:last-child {
		padding-right: .7em !important
	}
}

@media screen and (max-width: 1023px) { 
	.scroll_tab_inner {
		overflow-x: auto;
		width: 100%;
		position: absolute;
		left: 0px;
		right: 0px;
	}
	
	.breadcrumb .double {
		padding-top: 18px;
		white-space: nowrap;
	}
	
	.breadcrumb span {
		padding-left: 28px !important;
		padding-right: 28px !important;
	}

	div.scroll_tab_inner span.scroll_tab_left_finisher {
		padding: 0px;
  		width: 0px;
	}

	div.scroll_tab_inner span.scroll_tab_right_finisher {
  		padding: 0px;
  		width: 0px;
	}

/* Iowa customization for rebranding Story #188174 */
	div.scroll_tab_left_button {
  		height: 65px;
  		color: #fff;
  		z-index: 1;
  		position: absolute;
  		left: 0;
  		border-radius: 10px 0px 0px 0px;
  		background-color:  #B1E7D3;
	}

	div.scroll_tab_left_button::before {
  		content: "\25C0 \FE0E";
  		line-height: 65px;
  		padding-left: 2px;
  		padding-right: 2px;
	}

	div.scroll_tab_left_button_disabled {
 		color: #fff;
	}

/* Iowa customization for rebranding Story #188174 */
	div.scroll_tab_right_button {
  		height: 65px;
  		color: #fff;
  		z-index: 0;
  		position: absolute;
    	right: 0;
    	border-radius: 0px 10px 0px 0px;
    	background-color: #69C6B0;
	}

	div.scroll_tab_right_button::before {
  		content: "\25B6 \FE0E";
  		line-height: 65px;
  		padding-left: 2px;
  		padding-right: 2px;
 	}

	div.scroll_tab_right_button_disabled {
  		color: #fff;
	}
}

@media screen and (max-width: 767px) {
	.breadcrumb span {
		font-size: 13px !important;
	}
}
/* End of Scrolling Breadcrumb Navigation */