/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.brqadvcust_product_list{
	display: flex;
	gap: 10px 10px;
	flex-grow: 1;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.brqadvcust-filter-menu-link.active{
	font-weight: bold;
}
.brqadvcust_product_list .brqadvcust-single-product{
	width: calc(20% - 10px);
	max-width: calc(20%);
	background-color: white;
	border-radius: 10px;
	margin-bottom: 20px;
	/*flex-grow: 1;*/
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.brqadvcust-product-body {
	flex-grow: 1;
}
.brqadvcust-product-image {
    /*padding: 10px;*/
    background-color: white;
    height: 200px;
    overflow: hidden;
}
.brqadvcust-product-image img{
	max-width: 100%;
	width: 100%;
}
.brqadvcust-product-title {
    padding: 10px 10px 5px;
}
.brqadvcust-product-title-link, 
.brqadvcust-product-title-link:hover{
	text-decoration: none;
	color: #476930;
	font-size: 16px;
	font-family: Nunito;
	font-weight: 600;
}
.brqadvcust-product-price {
    padding: 5px 10px 10px;
	font-family: Nunito;
	font-weight: 600;
	font-size: 20px;
}
.brqadvcust-btn-container{
	display: flex;
	flex-direction: row;
}
.brqadvcust-btn-container button{
	flex: 1;
	font-size: 14px;
}
.brqadvcust-btn-container button:first-child{
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.brqadvcust-btn-container button:nth-child(n+1),.brqadvcust-btn-container a:nth-child(n+1){
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
@media only screen and (max-width: 768px) {
	.brqadvcust-filter-select{
		margin: 10px 0;
	}
	.brqadvcust_product_list .brqadvcust-single-product{
		width: calc(50% - 10px);
		max-width: calc(50%);
	}
	.brqadvcust-product-image {
		/*padding: 10px;*/
	    background-color: white;
	    height: 120px;
	    overflow: hidden;
	}
	.brqadvcust-product-price {
		font-size: 16px;
	}
}