.clear:after {
	content: ' ';
	display: table;
	clear: both;
}

.clearer {
	clear: both;
	display: block;
}

.nowrap {
	white-space: nowrap;
}

.hide,
.element-hidden {
	display: none !important;
	visibility: hidden;
}

.element-invisible,
.screen-reader-text {
	border: 0;
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}

.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus,
.screen-reader-text:focus {
	clip: auto;
	height: auto;
	overflow: visible;
	position: static !important;
	width: auto;
}

.offscreen {
	position: absolute;
	top: -99999em;
	width: 1px;
	height: 1px;
	overflow: hidden;
	outline: 0;
}

.text-overflow {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.full-width {
	max-width: none !important;
}

.container > * {
	max-width: var(--max-width);
	padding-left: var(--gutter);
	padding-right: var(--gutter);
	margin-left: auto;
	margin-right: auto;
}

.max-width {
	max-width: var(--max-width);
	padding-left: var(--gutter);
	padding-right: var(--gutter);
	margin-left: auto;
	margin-right: auto;
}

.bg-image {
	display: block;
	background: transparent no-repeat center center;
	background-size: cover;
	width: 100% !important;
	height: 0 !important;
	padding-top: 56.25%;
}

figure.bg-image > img {
	border: 0;
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}

.responsive-container {
	display: block;
	background: transparent no-repeat center center;
	background-size: cover;
	width: 100% !important;
	height: 0 !important;
	padding-top: 56.25%;
	position: relative;
}
	.responsive-container > * {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
		width: 100% !important;
		height: 100% !important;
	}

.cover {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent no-repeat center center;
	background-size: cover;
}

.scrollable {
	overflow: auto;
}

@media (max-width: 575.98px) {
	.hide-xs {
		display: none !important;
	}
}

@media (max-width: 767.98px) {
	.hide-s,
	.hide-xs,
	.hide-so {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.hide-m {
		display: none !important;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.hide-l,
	.hide-lo {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.hide-l,
	.hide-xl {
		display: none !important;
	}	
}