.breadcrumb {
    margin-top: 5em;
		background:none;
		margin-bottom: 0px;
}

.page-nav {
    background: #7f7f7f;
}
.breadcrumb-item + .breadcrumb-item::before{
	color:#fff;
}
.breadcrumb-item.active {
    color: #fff;
}

.product-sidebar{
    width: 100%;
}

.product-sidebar h4 {
    background: #fc0;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    color: #7f7f7f;
}
.product-sidebar ul {
    padding-left: 0px;
}

.product-sidebar ul li {
    display: block;
    background: #7f7f7f;
    padding: 10px 15px;
    margin: 3px 0px;
		transition: all 0.5s ease;
		
}
.product-sidebar ul li.active {
    background: #fc0;
    border-left: 5px solid #7f7f7f;
    border-right: 5px solid #7f7f7f;
}
.product-sidebar ul li.active a{
	color: #7f7f7f;
}
.product-sidebar ul li:hover{
	background: #ffcc00;
	border-left: 5px solid #7f7f7f;
	border-right: 5px solid #7f7f7f;
}
.product-sidebar ul li:hover a{
	color: #7f7f7f;
}

.product-image-box img {
    box-shadow: 0px 0px 10px #ccc;
}

.product-image-box {
    position: relative;
		background: #fff;
}
.product-links {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
		justify-content: center;
		background: rgba(127, 127, 127, 0.5);
		opacity:0;
		transition:all 0.5s ease;
}

.venobox.vbox-item {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}
.venobox i {
    font-size: 40px;
}
.product-image-box:hover .product-links{
	opacity:1;
}
.product-description h4 {
    display: block;
    background: #fc0;
    padding: 10px;
    border-left: 5px solid #7f7f7f;
}
.product-detail-content.row {
    padding-left: 10px;
}
.product-detail-content div:nth-child(1) {
    padding-right: 5px;
}
.product-detail .item-details {
    flex-wrap:wrap; 
}

.product-description p {
    background: #fff;
    padding: 20px 16px;
    border: 1px solid #eee;
    box-shadow: 0px 0px 10px #ccc;
}
.product-tag ul{
	padding-left:5px;
}
.product-tag ul li {
    display: inline-block;
    width: 50px;
    height: 40px;
    background: #fc0;
    border-radius: 10px;
    transition: all 0.5s ease;
		text-align:center;
}
.product-tag ul li a{
	color:#7f7f7f;
	text-align: center;
	line-height: 40px;
	display:inline-block;
	font-size:18px;
}
.product-tag ul li:hover{
	background: #7f7f7f;
}
.product-tag ul li:hover a{
	color:#fff;
}

/* Product Slider css */

.slider {
		width: 50%;
		margin: 100px auto;
}

.slick-slide {
	margin: 0px 20px;
}

.slick-slide img {
	width: 100%;
}

.slick-prev:before,
.slick-next:before {
	color: black;
}


.slick-slide {
	transition: all ease-in-out .3s;
	opacity: .2;
}

.slick-active {
	opacity: .5;
}

.slick-current {
	opacity: 1;
}
.related-product {
    width: 100%;
    display: flex;
}

.owl-carousel {
    padding-left: 10px;
}

.owl-item.active {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0px 0px 10px #ccc;
}
.owl-nav .owl-prev {
    position: absolute;
    top: 36%;
    left: -20px;
    transform: translate(-50%, -50%);
}

.owl-nav .owl-prev span {
    font-size: 35px;
    border: 1px solid #eee;
    width: 35px;
    display: block;
    height: 35px;
    line-height: 27px;
    text-align: center;
    background: #fc0;
    color: #7f7f7f;
    box-shadow: 0px 0px 15px #ccc;
    border-radius: 5px;
		transition:all 0.5s ease;
}

.owl-nav .owl-next {
    position: absolute;
    top: 36%;
    right: -50px;
    transform: translate(-50%, -50%);
}
.owl-nav .owl-next span {
    font-size: 35px;
    border: 1px solid #eee;
    width: 35px;
    display: block;
    height: 35px;
    line-height: 27px;
    text-align: center;
    background: #fc0;
    color: #7f7f7f;
    box-shadow: 0px 0px 15px #ccc;
    border-radius: 5px;
		transition:all 0.5s ease;
}

.owl-nav .owl-next:hover span, .owl-nav .owl-prev:hover span {
	background: #7f7f7f;
	color:#fff;
}