.frequently-bought-products-wrapper.active {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 60px;
}
.frequently-bought-products-wrapper > p {
	width: 100%;
	padding-left: 0 !important;
}
.frequently-bought-products-left {
	width: calc(65% - 15px);
}
.frequently-bought-products-right {
	width: calc(35% - 15px);
}
.frequently-bought-products {
	display: flex;
	flex-wrap: wrap;
	padding: 20px 10px;
	background-color: #fff;
	margin-bottom: 20px;
}
.frequently-bought-products li {
	margin-left: 10px;
	margin-right: 10px;
	width: calc(33.33% - 20px);
	position: relative;
}

.frequently-bought-products li:before {
    content: '+';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -18px;
    font-weight: 700;
    font-size: 20px;
}
.frequently-bought-products li:first-child::before {
	display: none;
}
.frequently-bought-products li img {
	width: 100%;
}
.frequently-bought-products li a {
	text-align: center;
	text-decoration: none !important;
}
.fbp-add-to-cart.disabled {
	pointer-events: none;
}
div.frequently-bought-products-left > p {
	padding-left: 0;
	display: none;
}
.frequently-bought-products-right ul li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
}
.frequently-bought-products-right ul li input {
	margin-top: 0;
	border: 2px solid #95bf43;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	min-width: 20px;
    min-height: 20px;
}
.frequently-bought-products-right ul li input:focus {
	outline: none !important;
}
.frequently-bought-products-right ul li input[type="checkbox"]:after {
	display: none;
}
.frequently-bought-products-right ul li input[type="checkbox"]:checked:before {
	content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    display: inline-flex;
    width: 10px;
    height: 10px;
    border-top-width: 0;
    border-left-width: 0;
    transform: unset;
    background-color: #95bf43;
    border-radius: 50%;
    border: unset;
}
.frp-item-info p {
	margin-bottom: 0;
	font-size: 14px;
}
.frp-item-info p.product-price {
	font-weight: 700;
}
.frequently-bought-products-right .fbp-add-to-cart {
	width: 100%;
	display: flex;
	color: #fff;
	background-color: #000;
	height: 50px;
	justify-content: center;align-items: center;
	font-weight: 600;
	text-decoration: none !important;
	font-size: 16px;
    border-radius: 5px;
}
.frequently-bought-products li img {
	transition: all 0.3s;
}
.frequently-bought-products .bluredImg img {
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	filter: blur(5px);
}

.frequently-bought-products-wrapper .frequently-bought-products {
	list-style: none;
	margin-left: 0;
	margin-top: 0;
	border-radius: 5px;
	
}

@media screen and (max-width: 991px){
	.frequently-bought-products-wrapper.active {
		border-bottom: 2px solid #d9d9d9;
		padding-left: 0 !important;
		padding-right: 0!important;
		margin-right: 0.625rem;
    	margin-left: 0.625rem;
    	width: calc( 100% - 1.25rem ) !important;	}
	.frequently-bought-products-left,
	.frequently-bought-products-right {
		width: 100%;
	}
	.frequently-bought-products {
		border: 2px solid #d9d9d9;
		margin-bottom: 0;
		background-color: unset;
	}
	div.frequently-bought-products-left > p {
		width: 100%;
		padding-top: 15px;
		padding-bottom: 15px;
		margin-bottom: 0;
		border: 2px solid #d9d9d9;
		border-top: 0; 
		text-align: center;
		position: relative;
		height: 52px;
		border-bottom: 0;
		display: block;
	}
	.frequently-bought-products-left strong {
		font-weight: 400;
	}
	.frequently-bought-products-right {
		padding: 20px;
		border: 2px solid #d9d9d9;
		border-top: 0; 
		border-bottom: 0;
		display: none;
	}
	.frequently-bought-products-right .fbp-add-to-cart {
		max-width: 270px;
		margin-right: auto;
		margin-left: auto;
	}
	div.frequently-bought-products-left > p:after {
	    content: '‹';
	    font-weight: 700;
	    position: absolute;
	    right: 15px;
	    top: 8px;
	    font-size: 26px;
	    transform: rotate(270deg);
	}
	div.frequently-bought-products-left > p.fbp-hide {
		font-size: 0;
	}
	div.frequently-bought-products-left > p.fbp-hide:after {
		transform: rotate(90deg);
	}
	.fbp-mobile.fbp-show {
		display: block;
		margin-bottom: 30px;
		text-align: center;
	}
	.fbp-mobile.fbp-show strong {
		font-weight: 400;
	}
}