.wbe-gallery-filter-container {
	width: 100%;
}

.wbe-gallery {
	width: 100%;
	margin: 0 auto;
}

.wbe-gallery__image {
	width: calc(33.3333% - 13.3333px);
	margin-bottom: 1.5em;
}

@media (max-width: 1120px) {
	.wbe-gallery__image {
		width: calc(50% - 10px);
	}
}

@media (max-width: 768px) {
	.wbe-gallery__image {
		width: 100%;
	}
}

.wbe-gallery__fadeIn {
	animation-name: wbe-gallery__fadeIn;
	animation-duration: 0.8s;
	animation-timing-function: ease;
}

.wbe-gallery__fadeOut {
	animation-name: wbe-gallery__fadeOut;
	animation-duration: 0.4s;
	animation-timing-function: ease;
	opacity: 0;
}

.wbe-gallery__loading {
	opacity: 0;
}

@keyframes wbe-gallery__fadeOut {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
	}

	1% {
		opacity: 0.5;
		transform: scale(0.9);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(0.8);
	}
}

@keyframes wbe-gallery__fadeIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(1);
	}

	1% {
		opacity: 0.2;
		transform: scale(0.2);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
	}
}

.wbe-gallery__radio-toolbar {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1.8em;
	column-gap: 0.5em;
}

.wbe-gallery__radio-toolbar input[type='radio'] {
	display: none;
}

.wbe-gallery__radio-toolbar label {
	border-color: #ccc;
	border-radius: 0.25em;
	border-style: solid;
	border-width: 0.15em;
	padding: 0.25em 0.8em 0.25em 0.8em;
	font-size: 1.6rem;
	cursor: pointer;
}

.wbe-gallery__radio-toolbar input[type='radio']:checked + label {
	background-color: #0069ff;
	border-color: #0069ff;
	color: white;
}
