.product-title{
	text-align: center;
	background: rgba(0,0,0,0.9);
	border: 1px solid transparent;
	opacity: 0.9;
	transition: 0.3s;
}
.product-item .product-title p{
	color: #fff;
	height: 15px;
	transition: 0.3s;
	font-weight: 900;
}
.product-item:hover .product-title{
	background: #fff;
	border: 1px solid #542791;
}
.product-item:hover .product-title p{
	color: #542791;
}


/* Product Tab Host */
#tabs{
	background: #007b5e;
    color: #eee;
}
#tabs h6.section-title{
    color: #eee;
}

#product-tab a{
	color: #000;
}
#product-tab a.active{
	color: #542791;
}

#tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #f3f3f3;
    background-color: transparent;
    border-color: transparent transparent #f3f3f3;
    border-bottom: 4px solid !important;
    font-size: 20px;
    font-weight: bold;
}
#tabs .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #eee;
    font-size: 20px;
}



/*  */
.white-shadow{
	position: relative;
}
.white-shadow::before{
	position: absolute;
	height: 100%;
	width: 100%;
	content: '';
	top: 0;
	left: 0;
	background-color: #fff;
	opacity: 0.9;
	/* z-index: 1; */

}