#ce_lmf_quickbuttons {
	width: 100%;
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}
.ce_lmf_quickbuttons {
	margin: 0 2% 2% 0;
	position: relative;
	overflow: hidden;
}
.ce_lmf_quickbuttons_image {
	width: 100%;
	height: 230px;
	overflow: hidden;
}
.ce_lmf_quickbuttons_image img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}
.ce_lmf_quickbuttons_label {
	background-color: #FFFFFF;
	text-align: center;
}
.ce_lmf_quickbuttons_label, 
.ce_lmf_quickbuttons_label a {
	width: 100%;
	padding: 0.75em 0;
	display: block;
	font-size: 1em;
	color: #0F0F0F;
	text-decoration: none;
	text-transform: uppercase;
}
#main .ce_lmf_quickbuttons a {
	text-decoration: none;
}
.ce_lmf_quickbuttons a {
	cursor: pointer;
}


/*** RESPONSIVE ***/
@media screen and (max-width: 1280px) {
	#ce_lmf_quickbuttons {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 768px) {
	#ce_lmf_quickbuttons {
		grid-template-columns: repeat(1, 1fr);
	}
}


/*** BLACK ***/
.black .ce_lmf_quickbuttons_label {
	background-color: #000000;
}
.black .ce_lmf_quickbuttons_label,
.black .ce_lmf_quickbuttons_label a {
	color: #FFFFFF;
}


/*** WHITE ***/
.white .ce_lmf_quickbuttons_label {
	background-color: #FFFFFF;
}
.white .ce_lmf_quickbuttons_label,
.white .ce_lmf_quickbuttons_label a {
	color: #000000;
}