/* FB Category Filter Buttons v2.0.0
   Minimal by design - all layout and colour comes from Bridge/Qode.
   This only handles filter state, loading feedback and the hidden Load More. */

a.fb-cat-btn {
	cursor: pointer;
}

/* Description text under each button: dark copy on a white panel.
   WPBakery stops generating the vc_custom_* rules once the row is a
   shortcode, so the panel styling is set here. */
.fb-cat-buttons .fb-cat-btn-text {
	background-color: #ffffff !important;
	padding: 20px !important;
}

.fb-cat-buttons .fb-cat-btn-text,
.fb-cat-buttons .fb-cat-btn-text p,
.fb-cat-buttons .fb-cat-btn-text a {
	color: #101b2d !important;
}

/* Active category - beats the inline background-color on the qbutton */
a.fb-cat-btn.fb-cat-active,
a.qbutton.fb-cat-btn.fb-cat-active {
	background-color: #E61A53 !important;
	border-color: #E61A53 !important;
	color: #ffffff !important;
}

a.fb-cat-btn.fb-cat-active span.qode_button_icon_element {
	color: #ffffff !important;
}

.fb-cat-wrap {
	position: relative;
}

.fb-cat-wrap .qode-news-holder {
	transition: opacity 0.2s ease;
}

.fb-cat-wrap.fb-cat-loading .qode-news-holder {
	opacity: 0.25;
	pointer-events: none;
}

.fb-cat-wrap.fb-cat-loading:after {
	content: "";
	position: absolute;
	top: 60px;
	left: 50%;
	width: 28px;
	height: 28px;
	margin-left: -14px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-top-color: #E61A53;
	border-radius: 50%;
	animation: fbCatSpin 0.7s linear infinite;
	z-index: 5;
}

@keyframes fbCatSpin {
	to {
		transform: rotate(360deg);
	}
}

.fb-cat-hidden {
	display: none !important;
}

.fb-cat-empty {
	padding: 20px 0 40px;
}
