.custom-post-filter h3 {
	margin-bottom: 1em;
}

.custom-post-filter ul {
	list-style-type: none;
	padding-left: 0;
}

.custom-post-filter li {
	line-height: 1.5em;
	margin-bottom: 0.75em;
}

/* Fake CheckBox */
.custom-post-filter li label {
	display: block !important;
	margin-bottom: 1em;
	font-size: 16px;
}

.custom-post-filter li label > input[type="radio"] {
	padding: 0 !important;
	appearance: none !important;
	border: 2px solid grey;
	border-radius: 1px;
	height: 18px;
	width: 18px;
	display: inline-grid;
	place-content: center;
}


.custom-post-filter li label > input[type="radio"]::before {
	content: "";
	width: 18px;
	height: 18px;
	transform: scale(0);
	transform-origin: bottom left;
	background-color: #fff;
	clip-path: polygon(13% 50%, 34% 66%, 81% 2%, 100% 18%, 39% 100%, 0 71%);
}

  
.custom-post-filter li label > input[type="radio"]:checked::before {
	transform: scale(1);
}

.custom-post-filter li label > input[type="radio"]:checked {
	background-color: #F24B9F;
}

/* fake it till you make it baybee */
/* END Fake CheckBox */

.custom-post-filter .apply-filter,
.custom-post-filter .clear-filter:hover {
	background-color: #0073aa;
	color: white;
	border: none;
	cursor: pointer;
}

.custom-post-filter .apply-filter:hover,
.custom-post-filter .clear-filter:hover {
	background-color: #005177;
}

/* js helper class */
.ast-article-post.filtered-out {
	display: none;
}

.filters_list_item {
	padding: 2px 0 2px 0;
}

.loading-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	border-top-color: #0073aa;
	animation: spin 1s ease-in-out infinite;
	-webkit-animation: spin 1s ease-in-out infinite;
	margin-left: 10px;
	vertical-align: middle;
}

@keyframes spin {
	to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
	to { -webkit-transform: rotate(360deg); }
}
