/************************************************
KEY-VALUE LISTS
************************************************/
.kv-key:after {
	content: ": ";
}
.compact-kv .kv-key > span {
	display: none;
}



/************************************************
KEY-VALUE LISTS
************************************************/
.mt-0 {
	margin-top: 0 !important;
}



/************************************************
LOADING SPINNER OVERLAY
Credit: jlong  @github
Source: https://github.com/jlong/css-spinners
************************************************/
@-moz-keyframes spinner-loader {
	0% {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-webkit-keyframes spinner-loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spinner-loader {
	0% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/* :not(:required) hides this rule from IE9 and below */
.show-loading-overlay {
	position: relative;
}
.show-loading-overlay:not(:required):before {
	-moz-animation: spinner-loader 1500ms infinite linear;
	-webkit-animation: spinner-loader 1500ms infinite linear;
	animation: spinner-loader 1500ms infinite linear;
	-moz-border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	border-radius: 0.5em;
	-moz-box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
	-webkit-box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
	box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
	display: inline-block;
	font-size: 10px;
	width: 1em;
	height: 1em;
	margin: 1.5em;
	overflow: hidden;
	text-indent: 100%;
	content: ".";
	left: 50%;
	position: absolute;
	top: 50%;
}
.show-loading-overlay:not(:required):after {
	background: rgba(255, 255, 255, 0.5);
	overflow: hidden;
	text-indent: 100%;
	content: ".";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}


/************************************************
WP GUTENBERG COLUMNS
************************************************/

@media (min-width:575px) {
	/* Two across */
	OLD.wp-block-columns.has-6-columns {
		margin-bottom: 0 !important;
		margin-left: -30px;
	}
	OLD.wp-block-columns.has-6-columns .wp-block-column {
		flex-basis: unset;
		margin-bottom: 30px;
		margin-left: 30px;
		width: 40%;
	}
}
@media (min-width:769px) {
	/* Three across */
	OLD.wp-block-columns.has-6-columns .wp-block-column {
		width: 25%;
	}
}
@media (min-width:993px) {
	OLD.wp-block-columns.has-6-columns .wp-block-column {
		flex-basis: 0;
		width: unset;
	}
}

.entry-content .cols-30-70 > .wp-block-column,
.entry-content .cols-70-30 > .wp-block-column,
.entry-content .cols-50-50 > .wp-block-column,
.entry-content .cols-33-33-33 > .wp-block-column,
.entry-content .cols-50-25-25 > .wp-block-column {
	flex-basis: 100%;
}
@media (min-width:575px) {
	/* Let the second two columns of 50:25:25 display side-by-side on medium screens */
	.entry-content .cols-50-25-25 {
		margin-left: 0;
	}
	.entry-content .cols-50-25-25 > .wp-block-column {
		margin: 0;
	}
	.entry-content .cols-50-25-25 .wp-block-column + .wp-block-column {
		width: 48.5%;
		flex: 0 0 48.5%;
		flex-basis: unset;
		margin: 0;
	}
	.entry-content .cols-50-25-25 > .wp-block-column + .wp-block-column + .wp-block-column {
		margin-left: 3%;
	}
}
@media (min-width:1024px) {
	.entry-content .cols-30-70,
	.entry-content .cols-70-30,
	.entry-content .cols-50-50,
	.entry-content .cols-33-33-33,
	.entry-content .cols-50-25-25 {
		margin-left: 0;
	}
	/* 30:70 */
	.entry-content .cols-30-70 > .wp-block-column {
		width: 28%;
		flex: 0 0 28%;
		flex-basis: unset;
		margin: 0;
	}
	.entry-content .cols-30-70 > .wp-block-column + .wp-block-column {
		width: 68%;
		flex: 0 0 68%;
		margin-left: 4%;
	}
	/* 70:30 */
	.entry-content .cols-70-30 > .wp-block-column {
		width: 68%;
		flex: 0 0 68%;
		flex-basis: unset;
		margin: 0;
	}
	.entry-content .cols-70-30 > .wp-block-column + .wp-block-column {
		width: 28%;
		flex: 0 0 28%;
		margin-left: 4%;
	}
	/* 50:50 */
	.entry-content .cols-50-50 > .wp-block-column {
		width: 48.5%;
		flex: 0 0 48.5%;
		flex-basis: unset;
		margin: 0;
	}
	.entry-content .cols-50-50 > .wp-block-column + .wp-block-column {
		margin-left: 3%;
	}
	/* 33:33:33 */
	.entry-content .cols-33-33-33 > .wp-block-column {
		width: 31%;
		flex: 0 0 31%;
		flex-basis: unset;
		margin: 0;
	}
	.entry-content .cols-33-33-33 > .wp-block-column + .wp-block-column {
		margin-left: 3%;
	}
	/* 50:25:25 */
	.entry-content .cols-50-25-25 > .wp-block-column {
		width: 48%;
		flex: 0 0 48%;
		flex-basis: unset;
		margin: 0;
	}
	.entry-content .cols-50-25-25 > .wp-block-column + .wp-block-column {
		margin-left: 3%;
		width: 23%;
		flex: 0 0 23%;
	}
}



/************************************************
BASIC COLUMNS (can probably be removed)
************************************************/
.cols-30-70,
.cols-70-30,
.cols-50-50,
.cols-33-33-33,
.cols-50-25-25 {
	display: flex;
	flex-wrap: wrap;
}
.cols-30-70 > .wp-block-column,
.cols-70-30 > .wp-block-column,
.cols-50-50 > .wp-block-column,
.cols-33-33-33 > .wp-block-column,
.cols-50-25-25 > .wp-block-column {
	flex-basis: 100%;
}
@media (min-width:575px) {
	/* Let the second two columns of 50:25:25 display side-by-side on medium screens */
	.cols-50-25-25 {
		margin-left: 0;
	}
	.cols-50-25-25 > .wp-block-column {
		margin: 0;
	}
	.cols-50-25-25 .wp-block-column + .wp-block-column {
		width: 48.5%;
		flex: 0 0 48.5%;
		flex-basis: unset;
		margin: 0;
	}
	.cols-50-25-25 > .wp-block-column + .wp-block-column + .wp-block-column {
		margin-left: 3%;
	}
}
@media (min-width:1024px) {
	.cols-30-70,
	.cols-70-30,
	.cols-50-50,
	.cols-33-33-33,
	.cols-50-25-25 {
		margin-left: 0;
	}
	/* 30:70 */
	.cols-30-70 > .wp-block-column {
		width: 28%;
		flex: 0 0 28%;
		flex-basis: unset;
		margin: 0;
	}
	.cols-30-70 > .wp-block-column + .wp-block-column {
		width: 68%;
		flex: 0 0 68%;
		margin-left: 4%;
	}
	/* 70:30 */
	.cols-70-30 > .wp-block-column {
		width: 68%;
		flex: 0 0 68%;
		flex-basis: unset;
		margin: 0;
	}
	.cols-70-30 > .wp-block-column + .wp-block-column {
		width: 28%;
		flex: 0 0 28%;
		margin-left: 4%;
	}
	/* 50:50 */
	.cols-50-50 > .wp-block-column {
		width: 48.5%;
		flex: 0 0 48.5%;
		flex-basis: unset;
		margin: 0;
	}
	.cols-50-50 > .wp-block-column + .wp-block-column {
		margin-left: 3%;
	}
	/* 33:33:33 */
	.cols-33-33-33 > .wp-block-column {
		width: 31%;
		flex: 0 0 31%;
		flex-basis: unset;
		margin: 0;
	}
	.cols-33-33-33 > .wp-block-column + .wp-block-column {
		margin-left: 3%;
	}
	/* 50:25:25 */
	.cols-50-25-25 > .wp-block-column {
		width: 48%;
		flex: 0 0 48%;
		flex-basis: unset;
		margin: 0;
	}
	.cols-50-25-25 > .wp-block-column + .wp-block-column {
		margin-left: 3%;
		width: 23%;
		flex: 0 0 23%;
	}
}



/************************************************
SIDEBAR NAVIGATION WIDGET
************************************************/
.pivot_widget_sidenav .widget-title a {
	color: inherit;
}
.sidebar-navigation li {
	line-height: 1.2;
	padding: 0.75rem 0 0 0;
}
.sidebar-navigation > li:first-child {
	padding-top: 0;
}
.sidebar-navigation ul {
	padding-left: 1.5rem;
}
