/* breadcrumb - start
==================================================================================================== */

/* default breadcrumb - start */
.breadcrumb_section {
	z-index: 1;
	min-height: 575px;
	position: relative;
	padding: 100px 0px;
	padding-bottom: 180px;
	.overlay {
		top: 0px;
		left: 0px;
		right: 0px;
		bottom: 0px;
		z-index: -1;
		content: '';
		opacity: .41;
		position: absolute;
	}
}

.page_title {
	line-height: 1;
	font-size: 80px;
	font-weight: 800;
	margin-bottom: 25px;
}

.breadcrumb_nav {
	li {
		color: #cccccc;
		font-size: 14px;
		font-weight: 600;
		position: relative;
		&:not(:last-child) {
			margin-right: 35px;
			padding-right: 35px;
		}
		&:after {
			top: 50%;
			width: 2px;
			right: -1px;
			height: 14px;
			content: '';
			position: absolute;
			background-color: #cccccc;
			transform: translateY(-50%);
		}
		&:last-child {
			&:after {
				display: none;
			}
		}
	}

	a {
		color: #ffffff;
		&:hover {
			color: $default_red;
		}
	}
}
/* default breadcrumb - end */


/* breadcrumb - start */
.breadcrumb {
	min-height: 490px;
	padding-bottom: 120px;

	.breadcrumb_nav {
		li {
			font-size: 18px;
		}

		a {
			&:hover {
				color: $products_red;
			}
		}
	}
}
/* breadcrumb - end */


/* classic ecommerce breadcrumb - start */
.classic_ecommerce_breadcrumb {
	min-height: 750px;
	padding: 170px 0px;
	p {
		color: #262626;
		font-size: 25px;
	}
}

.ce_page_title {
	color: #262626;
	line-height: 1;
	font-size: 70px;
}

.ce_breadcrumb_nav_wrap {
	color: #888888;
	font-size: 15px;
	font-weight: 700;
	padding: 19px 0px;
	border-bottom: 2px solid #eaeaea;
	a {
		color: #888888;
		&:hover {
			color: $ecommerce_black;
		}
	}
}

.ce_breadcrumb_nav {
	li {
		position: relative;
		&:after {
			top: 50%;
			width: 2px;
			content: '';
			right: -1px;
			height: 15px;
			position: absolute;
			background-color: #ededed;
			transform: translateY(-50%);
		}
		&:not(:last-child) {
			margin-right: 20px;
			padding-right: 20px;
		}
		&:last-child {
			color: $ecommerce_black;
			&:after {
				display: none;
			}
		}
	}
}
/* classic ecommerce breadcrumb - end */


/* breadcrumb - end
==================================================================================================== */