@charset "UTF-8";

/* ---------------------------------------------------------------------------------------------

	Theme Name: Försvarsutbildarna
	Text Domain: fu
	Version: 0.0.1
	Description: Theme for Försvarsutbildarna
	Author: 24HR
	Author URI: http://www.24hr.se


/* ---------------------------------------------------------------------------------------------


	Terms of Content

	0.	CSS Reset
	1.	Document Setup
	2.  Element Base
	3.	Structure
	4.	Site Header
	5.	Header Menus
	6.  Site Footer
	7.  Media Queries


/* --------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------- */
/*	0. CSS Reset
/* --------------------------------------------------------------------------------------------- */


html, body {
	border: none;
	height: 100%;
	margin: 0 0 0 0;
	min-height: 100%;
	padding: 0 0 0 0;
}

h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
	border: none;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-align: left;
}

blockquote:before,
blockquote:after {
	content: "";
}

iframe {
	border: none;
}

a {
	outline: none;
}


/* --------------------------------------------------------------------------------------------- */
/*	1. Document Setup
/* --------------------------------------------------------------------------------------------- */


html {
	font-size: 62.5%; /* 1rem = 10px */
}

body {
	background-color: #23344b;
	color: #65717f;
	font-family: Roboto, Helvetica, sans-serif;
	font-size: 1.5rem;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
}

*,
*:before,
*:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: rgba( 17, 17, 17, 1 );
	color: rgba( 255, 255, 255, 1 );
}

/* Clearing ---------------------------------- */

.group:after,
.entry-content:after {
	clear: both;
	content: "";
	display: block;
}

.container:before,
.container:after {
	content: none;
}


/* Helper Classes ---------------------------------- */


.container {
	padding: 0;
	position: relative;
	width: 92%;
	display: flex;
}

.page-template-front-page-template #site-content .container {
	display: block;
}


/* Transitions ------------------------------- */


a {
		-webkit-transition: all .1s ease-in-out;
	transition:             all .1s ease-in-out;
}


/* Screen Reader Text ------------------------ */


.screen-reader-text,
.screen-reader-response {
	clip: rect( .1rem, .1rem, .1rem, .1rem );
	height: .1rem;
	overflow: hidden;
	position: absolute !important;
	width: .1rem;
}

.screen-reader-text:focus,
.screen-reader-response:focus {
	background-color: rgba( 241, 241, 241, 1 );
	border-radius: .3rem .3rem .3rem .3rem;
	box-shadow: 0 0 .2rem .2rem rgba( 0, 0, 0, 0.6 );
	clip: auto !important;
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	height: auto;
	left: .5rem;
	line-height: normal;
	padding: 1.5rem 2.3rem 1.4rem 2.3rem;
	text-decoration: none;
	top: .5rem;
	width: auto;
	z-index: 100000;
}


/* Animations ------------------------ */


@keyframes pop {
	0% { 	transform: scale( 1 ); }
	50% { 	transform: scale( 1.1 ); }
	100% { 	transform: scale( 1 ); }
}

@keyframes popIn {
	0% { 	transform: scale( 0 ); }
	75% { 	transform: scale( 1.1 ); }
	100% { 	transform: scale( 1 ); }
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Element Base
/* --------------------------------------------------------------------------------------------- */


/* Typography ------------------------------------------- */


.heading {
	color: #242424;
	font-family: Oswald, sans-serif;
	letter-spacing: .04em;
	line-height: 1.2;
	text-transform: uppercase;
}

.heading--1 {
	font-size: 2.5rem;
	font-weight: 700;
	word-break: break-word;
}

.heading--2 {
	font-size: 2rem;
	font-weight: 700;
}

.heading--3 {
	color: #24354A;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .0375em;
}

.heading--inverted {
	color: #fff;
}

.intro-text {
	color: #242424;
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1.4;
	margin-top: 1.2rem;
}


/* Location ------------------------------------------- */


.location {
	display: block;
	position: relative;
}

.location.left { padding-left: 1.6rem; }
.location.right { 
	padding-right: 1.6rem; 
	text-align: right;
}

.location:after {
	background: url( ./images/icon_location_gray.svg ) no-repeat center;
	background-size: contain;
	content: "";
	height: 1.4rem;
	position: absolute;
		top: calc( 50% - .7rem );
	width: 1rem;
}

.location.left:after { left: 0; }
.location.right:after { right: 0; }


/* Statuses ------------------------------------------- */


.alert > p {
	font-size: 1.4rem;
	line-height: 1.25;
}


/* Arrow Link ------------------------------------------- */


.arrow-link {
	color: #242424;
	display: inline-block;
	font-family: Oswald, sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .0833em;
	padding-right: 2rem;
	position: relative;
	text-transform: uppercase;
}

.arrow-link:before {
	background: url( ./images/icon_arrow_right_black.svg ) no-repeat center;
	background-size: contain;
	content: "";
	display: block;
	height: 1.2rem;
	position: absolute;
		right: 0;
		top: calc( 50% - .6rem );
	width: 1.4rem;
}

.arrow-link:hover {
	color: #242424;
}

.arrow-link.white,
.arrow-link.white:hover {
	color: #fff;
}

.arrow-link.white:before {
	background-image: url( ./images/icon_arrow_right_white.svg );
}


/* Images ------------------------------------------- */


.faux-image {
	background: no-repeat center;
	background-size: cover;
	display: block;
	width: 100%;
}

.faux-image:before {
	content: "";
	display: block;
	padding-top: 56.25%;
	width: 100%;
}


/* Cover Modal ------------------------------- */


.cover-modal {
	background: rgba( 36, 53, 74, 0.95 );
	display: flex;
	overflow: auto;
	opacity: 0;
	position: fixed;
		bottom: 0;
		left: -9999rem;
		right: 9999rem;
		top: 0;
	transition: opacity .25s ease-in, left 0s .25s, right 0s .25s;
	z-index: 9999;
}

.cover-modal.active {
	left: 0;
	opacity: 1;
	right: 0;
	transition: opacity .25s ease-out;
}


/* Media Lightbox ------------------------------- */


#media-lightbox .modal-inner {
	align-items: center;
	display: flex;
	height: calc( 100vh - 12rem );
	justify-content: center;
	margin: 6rem auto;
	max-width: 100%;
	width: 104rem;
}

#media-lightbox .modal-inner iframe,
#media-lightbox .modal-inner video {
	max-width: 104rem;
}

.close-media-lightbox {
	display: block;
	opacity: 0;
	position: absolute;
		right: 2rem;
		top: 2rem;
	transition: opacity .25s ease-in;
}

.close-media-lightbox svg {
	display: block;
	height: 2.5rem;
	width: 2.5rem;
}

.active .close-media-lightbox {
	opacity: 1;
	transition-timing-function: ease-out;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Structure
/* --------------------------------------------------------------------------------------------- */


.main-bg-wrapper {
	background: rgba( 245, 245, 247, 1 );
}

#site-content {
	padding: 4rem 0;
	width: 100%;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Header
/* --------------------------------------------------------------------------------------------- */


#site-header {
	background: #fff;
	border-bottom: .1rem solid #e0e2e6;
}


/* Meta Nav ------------------------------------------- */


.meta-nav {
	border-bottom: .1rem solid #e0e2e6;
	background: #fff;
	height: 3.5rem;
	position: relative;
}

.meta-nav .container {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0;	
	position: static;
}

.meta-toggle, .log-out {
	color: #242424;
	display: block;
	font-size: 1.2rem;
	padding: .9rem 4vw;
	position: relative;
	transition: background-color .15s ease-in-out, color .15s ease-in-out;
}

.meta-toggle:not(.active):hover,
.log-out:hover {
	color: #242424;
	text-decoration: underline;
}

.meta-toggle.active,
.no-js .meta-toggle:hover {
	background: #65717f;
	color: #fff;
	text-decoration: none;
}

.meta-dropdown {
	position: absolute;
}

.meta-dropdown.left { left: 0; }
.meta-dropdown.right { right: 0; }

.meta-dropdown ul {
	background: #65717f;
	list-style: none;
	opacity: 0;
	position: absolute;
		left: -99999rem;
		top: 100%;
	transition: opacity .15s ease-in-out, left 0s .15s, right 0s .15s;
	width: 22rem;
	z-index: 10;
}

.meta-dropdown.right ul {
	left: auto;
	right: 99999rem;
}

.meta-toggle.active + ul,
.no-js .meta-toggle:hover + ul {
	left: 0;
	opacity: 1;
	transition: opacity .15s ease-in-out;
}

.meta-dropdown.right .meta-toggle.active + ul,
.no-js .meta-dropdown.right .meta-toggle:hover + ul {
	left: auto;
	right: 0;
}

.meta-dropdown li + li {
	border-top: .1rem solid rgba( 255, 255, 255, .1 );
	line-height: 1;
}

.meta-dropdown ul a {
	background: url( ./images/icon_arrow_link_internal_white.png ) no-repeat 18.8rem center;
	background-size: 1.8rem auto;
	color: #fff;
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 1.5rem 4rem 1.5rem 1.6rem;
}

.meta-dropdown ul .is-external a {
	background-image: url( ./images/icon_arrow_link_external_white.png );
}


/* Header Logo ------------------------------------------- */


.header-logo {
	display: block;
	width: 10rem;
}

.header-logo img {
	display: block;
	height: 4.2rem;
}


/* Main Nav ------------------------------------------- */


.main-nav {
	padding: 1.4rem 0;
	background: rgba(255, 255, 255, 0.9);
}

.main-nav .container {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.main-menu,
.mobile-menu {
	display: none;
}


/* Mobile Nav ------------------------------------------- */


.mobile-menu {
	background: #fff;
	border-top: .1rem solid #e0e2e6;
}

.mobile-menu li {
	border-bottom: .1rem solid #e0e2e6;
}

.mobile-menu li:last-child {
	border-bottom: none;
}

.mobile-menu ul div {
	padding-right: 8rem;
	position: relative;
}

.mobile-menu .current-menu-item > div > a {
	text-decoration: underline;
}

.mobile-menu ul a {
	color: #242424;
	display: block;
	font-family: Oswald, sans-serif;
	font-size: 1.6rem;
	letter-spacing: 0.0625em;
	line-height: 1.4;
	padding: 1.6rem 0 1.6rem 5%;
	text-transform: uppercase;
}

.toggle {
		-moz-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
	user-select: none;
}

.mobile-menu .toggle {
	cursor: pointer;
	position: absolute;
		bottom: 0;
		right: 0;
		top: 0;
	width: 6rem;
}

.mobile-menu .toggle:before {
	background: #e0e2e6;
	content: "";
	display: block;
	position: absolute;
		bottom: 1rem;
		left: 0;
		top: 1rem;
	width: .1rem;
}

.mobile-menu .toggle:after {
	background: url(./images/icon_chevron_down_black.png) no-repeat center;
	background-size: 1.2rem auto;
	content: "";
	display: block;
	height: 2rem;
	position: absolute;
		bottom: calc( 50% - 1rem );
		left: calc( 50% - 1rem );
	transition: transform .25s ease-in-out;
	width: 2rem;
}

.mobile-menu .toggle.active:after {
	transform: rotate( 180deg );
}

/* DEEP DOWN */

.mobile-menu ul ul {
	background: #65717f;
	display: none;
	position: relative;
}

.mobile-menu ul ul li {
	border-bottom-color: rgba( 255, 255, 255, .1 );
}

.mobile-menu ul ul a {
	color: #fff;
}

.mobile-menu ul ul .toggle:before {
	background: rgba( 255, 255, 255, .1 );
}

.mobile-menu ul ul .toggle:after {
	background-image: url(./images/icon_chevron_down_white.svg);
}

.mobile-menu ul ul ul {
	background: rgba( 0, 0, 0, .1 );
}

.mobile-menu ul ul a { padding-left: 10%; }
.mobile-menu ul ul ul a { padding-left: 15%; }
.mobile-menu ul ul ul ul a { padding-left: 20%; }
.mobile-menu ul ul ul ul ul a { padding-left: 25%; }
.mobile-menu ul ul ul ul ul ul a { padding-left: 30%; }


/* JOIN BUTTON MOBILE */

.join-wrapper {
	border-top: .1rem solid #e0e2e6;
	background: #fff;
	display: block;
	padding: 2.5rem 5%;
	text-align: center;
}

.join-wrapper .button {
	font-size: 1.6rem;
}


/* Join Button ------------------------------------------- */


.join-button,
.join-button:visited {
	background: #fff;
	border: .15rem solid #65717F;
	border-radius: 999rem;
	color: #65717F;
	display: none;
	font-family: Oswald, sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: .0375em;
	line-height: 1;
	margin-right: 4rem;
	padding: .6rem 1.6rem .8rem;
	text-decoration: none;
	text-transform: uppercase;
}

.join-button:active,
.join-button:focus {
	text-decoration: none;
}

.join-button.active,
.join-button:hover {
	background: #65717F;
	color: #fff;
	text-decoration: none;
}


/* Header Toggles ------------------------------------------- */


.header-toggles {
	display: flex;
	justify-content: space-between;
}

/* SEARCH TOGGLE */

.search-toggle {
	align-items: center;
	display: flex;
	position: relative;
}

.search-toggle.active:before {
	background: #65717F;
	border-radius: 50%;
	content: "";
	display: block;
	height: 5rem;
	position: absolute;
		left: calc( 50% - 2.4rem );
		top: calc( 50% - 2.4rem );
	transition: opacity .15s ease-in-out;
	width: 5rem;
}

.search-toggle svg {
	display: block;
	overflow: visible;
	position: relative;
}

.search-toggle path {
	fill: #242424;
	transition: fill .15s ease-in-out;
}

.search-toggle.active path {
	fill: #fff;
}

/* NAV TOGGLE */

.nav-toggle {
	cursor: pointer;
	height: 3.2rem;
	margin-left: 3rem;
	position: relative;
	width: 3.2rem;
}

.nav-toggle .bar {
	background-color: #242424;
	display: block;
	height: .3rem;
	position: absolute;
		right: 0;
		top: calc( 50% - .1rem );
	transition: transform 0.125s ease-in, opacity 0s ease-out 0.125s, margin 0.125s ease-out 0.125s;
	width: 3.2rem;
}

.nav-toggle .bar:nth-child(1) { margin-top: -1.1rem; }
.nav-toggle .bar:nth-child(2) { margin-top: -0.1rem; }
.nav-toggle .bar:nth-child(3) { margin-top: 0.9rem; }

.nav-toggle.active .bar {
	transition: margin 0.125s ease-in, opacity 0s ease-in 0.125s, transform 0.125s ease-out 0.125s;
}

.nav-toggle.active .bar:nth-child(1) {
	margin-top: -0.1rem;
		-webkit-transform: rotate( 45deg );
	transform:             rotate( 45deg );
}

.nav-toggle.active .bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
	margin-top: -0.1rem;
		-webkit-transform: rotate( -45deg );
	transform:             rotate( -45deg );
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Entry Content
/* --------------------------------------------------------------------------------------------- */


.entry-content {
	color: #65717f;
	margin-bottom: 3rem;
	position: relative;
}

.entry-content:last-child {
	margin-bottom: 0;
}

.entry-content a {
	color: #0060A0;
	text-decoration: underline;
}

.entry-content a:hover {
	color: #00568F;
}

hr {
	border: none;
	border-top: .2rem solid #E0E2E6;
	margin: 3rem 0;
}

.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }

.entry-content p {
	line-height: 1.5;
	margin-bottom: 2rem;
	width: 100%;
}

.entry-content .alert > p {
	margin-bottom: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	color: #242424;
	font-family: Oswald, sans-serif;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.2;
	margin: 3rem 0 2rem;
	text-transform: uppercase;
}

.entry-content h1 + h1, .entry-content h1 + h2, .entry-content h1 + h3, .entry-content h1 + h4, .entry-content h1 + h5, .entry-content h1 + h6, 
.entry-content h2 + h1, .entry-content h2 + h2, .entry-content h2 + h3, .entry-content h2 + h4, .entry-content h2 + h5, .entry-content h2 + h6, 
.entry-content h3 + h1, .entry-content h3 + h2, .entry-content h3 + h3, .entry-content h3 + h4, .entry-content h3 + h5, .entry-content h3 + h6, 
.entry-content h4 + h1, .entry-content h4 + h2, .entry-content h4 + h3, .entry-content h4 + h4, .entry-content h4 + h5, .entry-content h4 + h6, 
.entry-content h5 + h1, .entry-content h5 + h2, .entry-content h5 + h3, .entry-content h5 + h4, .entry-content h5 + h5, .entry-content h5 + h6, 
.entry-content h6 + h1, .entry-content h6 + h2, .entry-content h6 + h3, .entry-content h6 + h4, .entry-content h6 + h5, .entry-content h6 + h6 {
	margin-top: 2rem;
} 

.entry-content h1 { font-size: 3.2rem; }
.entry-content h2 { font-size: 2.8rem; }
.entry-content h3 { font-size: 2.6rem; }
.entry-content h4 { font-size: 2.4rem; }
.entry-content h5 { font-size: 2rem; }
.entry-content h6 { font-size: 1.6rem; }

.entry-content > ol,
.entry-content > ul {
	margin-bottom: 2rem;
}

.entry-content ol,
.entry-content ul {
	margin-left: 5%;
}

.entry-content ul { list-style: disc; }
.entry-content ul ul { list-style: circle; }
.entry-content ul ul ul { list-style: square; }

.entry-content ol { list-style: decimal; }
.entry-content ol ol { list-style: lower-alpha; }
.entry-content ol ol ol { list-style: lower-roman; }

.entry-content li {
	line-height: 1.5;
	margin-top: 1.5rem;
}

dd,
dt {
	line-height: 1.5;
}

dt {
	font-weight: 700;
}

dd + dt { 
	margin-top: 1.5rem; 
}

code {
	background: none;
	color: #65717f;
	font-size: 1.4rem;
	line-height: 1.5;
}

.entry-content address {
	line-height: 1.5;
	margin-bottom: 2rem;
	padding: 2rem;
	background: #e0e2e6;
}


/* Quotes ----------------------------- */


blockquote {
	color: #242424;
	font-weight: 700;
	margin: 0 0 2rem 0;
	padding: 0 0 0 3rem;
}

blockquote p { 
	color: #242424;
	font-weight: 700;
	hanging-punctuation: first;
}

blockquote cite {
	display: block;
	font-family: Oswald, sans-serif;
	font-weight: 700;
	letter-spacing: .039em;
	margin-top: 2rem;
	text-transform: uppercase;
}

blockquote cite:before { 
	content: "— "; 
}


/* Page Media ------------------------------ */


img {
	height: auto;
	max-width: 100%;
}

.entry-content img {
	display: block;
	width: 100%;
}

/* BROKEN IMAGE FALLBACK */


.broken-image {
	border: .1rem solid #e0e2e6;
	max-width: 100%;
	min-height: 15rem;
	position: relative;
}

.broken-image:before {
	content: "";
	display: block;
	padding-bottom: 62.5%;
	width: 100%;
}

.broken-image span {
	background: transparent url( ./images/icon_image_broken_gray.svg ) no-repeat top center;
	background-size: 2.3rem auto;
	color: #9AA5B2;
	display: block;
	font-size: 1.1rem;
	font-style: normal;
	font-weight: 400;
	padding-top: 3.4rem;
	position: absolute;
		left: 0;
		right: 0;
		top: 50%;
	transform: translateY( -50% );
	text-align: center;
}

/* WP CAPTION */

.wp-caption { 
	display: block;
	max-width: 100%;
}

.gallery-caption,
.wp-caption-text {
	font-size: 0.8em;
	font-weight: 700;
	margin: 1rem 0 0;
}

.wp-caption .image-meta .wp-caption-text {
	margin-top: 0;
}

.entry-content .gallery-caption,
.entry-content .wp-caption-text {
	margin-bottom: 0;
}

.wp-caption-text a {
	color: inherit;
}

.aligncenter,
.alignnone,
.alignleft,
.alignright { 
	margin: 3rem auto; 
}


/* Inputs ----------------------------- */


fieldset {
	border: .2rem solid #E0E2E6;
	padding: 2.5rem;
}

fieldset legend {
	font-family: Oswald, sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	padding: 0 1.5rem;
}

label {
	font-size: 0.9em;
	margin-bottom: 8px;
}

textarea,
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
select {
	background: #fff;
	border-radius: .4rem;
	border: .1rem solid #E0E2E6;
	box-shadow: none;
	color: #65717f;
	display: block;
	font-size: 1.6rem;
	line-height: 1.25;
	margin: 0 0 1.5rem 0;
	padding: 1.4rem 1.5rem 1.6rem 1.5rem;
	transition: border-color .2s ease-in-out;
	width: 100%;
}

textarea {
	line-height: 1.5;
	height: 18rem;
}

textarea:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"],
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus {
	outline: none;
}

::-moz-input-placeholder { line-height: normal; }
::-webkit-input-placeholder { line-height: normal; }


.contact-form-field {

}


/* SELECT ELEMENT */

select {
	background: #fff url( ./images/icon_chevron_select.svg ) no-repeat;
	background-position: calc( 100% - 1.6rem ) center;
	line-height: 1.3;
	margin: 0;
	padding: 1.3rem 3.7rem 1.3rem 1.6rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	transition: box-shadow .2s ease-in-out;
}

select:focus {
	box-shadow: 0 0 1rem rgba( 101, 113, 127, 0.15 );
	outline: none;
}

select::-ms-expand {
    display: none;
}


/* CHECKBOX ELEMENT */

input[type="checkbox"] {
	background: #fff url( ./images/icon_checkmark_white.svg ) no-repeat center;
	background-size: 75% auto;
	border-radius: .4rem;
	border: .2rem solid #E0E2E6;
	height: 2rem;
	margin: 0 1rem 0 0;
	-webkit-appearance: none;
	transition: background-color .1s ease-in-out, border-color .1s ease-in-out;
	width: 2rem;
}

input[type="checkbox"]:checked {
	animation: pop .25s ease-in-out 1;
	background-color: #58E34A;
	border-color: transparent;
}

@keyframes pop {
	50% { transform: scale( 1.15 ); }
	0% { transform: scale( 1 ); }
}

input[type="checkbox"] + label {
	margin: 0 0 0 0;
}


/* Buttons ----------------------------- */

.main-bg-wrapper button,
.main-bg-wrapper .button,
.main-bg-wrapper input[type="button"],
.main-bg-wrapper input[type="submit"] {
		-webkit-appearance: none;
	appearance: none;
	background: #242424;
	border: none;
	border-radius: 999rem;
	box-shadow: none;
	font-family: Oswald, sans-serif;
	color: #fff;
	display: inline-block;
	font-size: 1.5rem;
	letter-spacing: 0.0625em;
	min-width: 12.5rem;
	padding: 1.2rem 3rem 1.3rem;
	text-align: center;
	text-transform: uppercase;
	transition: background-color .1s ease-in-out;
}

.main-bg-wrapper button:hover,
.main-bg-wrapper a.button:hover,
.main-bg-wrapper a.button:visited,
.main-bg-wrapper input[type="button"]:hover,
.main-bg-wrapper input[type="submit"]:hover {
	color: #fff;
	cursor: pointer;
	text-decoration: none;
}

/* SIZES */

.main-bg-wrapper button.small,
.main-bg-wrapper .button.small,
.main-bg-wrapper input[type="button"].small,
.main-bg-wrapper input[type="submit"].small {
	font-size: 1.2rem;
	min-width: 7rem;
	padding: 1rem 2rem;
}


/* COLORS */

.main-bg-wrapper button.blue,
.main-bg-wrapper .button.blue,
.main-bg-wrapper input[type="button"].blue,
.main-bg-wrapper input[type="submit"].blue {
	background: #005E91;
	color: #fff;
}

.main-bg-wrapper button.blue:hover,
.main-bg-wrapper .button.blue:hover,
.main-bg-wrapper input[type="button"].blue:hover,
.main-bg-wrapper input[type="submit"].blue:hover {
	background: #07527B;
}


/* MODIFIERS */

.main-bg-wrapper button.is-external:after,
.main-bg-wrapper .button.is-external:after,
.main-bg-wrapper input[type="button"].is-external:after,
.main-bg-wrapper input[type="submit"].is-external:after {
	background: url( ./images/icon_arrow_link_external_white.png ) no-repeat center;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.2rem;
	margin-left: .8rem;
	position: relative;
		top: -.1rem;
	width: 1.2rem;
}


/* INFO BUTTON */


.info-button {
	background: transparent;
	border: .2rem solid #9AA5B2;
	border-radius: 999rem;
	height: 4rem;
	position: relative;
	transition: background-color .15s ease-in-out;
	width: 4rem;
}

.info-button svg {
	display: block;
	height: 1.6rem;
	position: absolute;
		left: calc( 50% - .4rem );
		top: calc( 50% - .9rem );
	width: .8rem;
}

.info-button path {
	transition: fill .15s ease-in-out;
}

.info-button:hover {
	background: #9AA5B2;
}

.info-button:hover svg path {
	fill: #fff;
}


/* Tables ----------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	font-size: 0.9em;
	margin-bottom: 3rem;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

th,
td {
	line-height: 1.4;
	margin: 0;
	overflow: visible;
	padding: 1rem;
}

caption {
	background: #fff;
	color: #65717f;
	font-size: 1.3rem;
	font-weight: 700;
	padding: 2.5%;
	text-transform: uppercase;
}

thead {
	vertical-align: bottom;
	white-space: nowrap;
}

th { 
	font-weight: 700; 
}

tbody > tr:nth-child(odd) { background: rgba( 0, 0, 0, 0.05 ); }


/* Ninja Forms ----------------------------- */


.nf-form-cont {
	border-top: .1rem solid #e0e2e6;
	margin-top: 3rem;
	padding-top: 3rem;
}

.nf-after-form-content {
	display: none;
}

.nf-form-cont .nf-form-title h3 {
	margin: 0 0 1.2rem 0;
}

.nf-form-fields-required {
	font-size: .85em;
	margin-bottom: 3rem;
}

.nf-fields-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.nf-field {
	margin-bottom: 2rem;
	width: 100%;
}

.nf-field:last-child {
	margin-bottom: 0;
}

.nf-field .nf-field-element label {
	color: #65717f;
	font-weight: 400;
}
.nf-field .nf-field-element input[type=radio]:checked:before {
    background: currentColor;
    border-radius: 50%;
    content: "";
    height: calc(16px / 2);
    margin-left: 50%;
    margin-top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: calc(16px / 2);
}
.nf-field .nf-field-element input[type=checkbox] {
	height: 20px !important;
    width: 20px !important;
    padding: 0 !important;
    transform: translateY(-1px) !important;
}
.nf-field .nf-field-element input[type=radio] {
	appearance: none;
    box-sizing: border-box;
    height: 16px;
    margin-inline-end: 16px;
    outline-offset: 4px;
    padding: 0;
    position: relative;
    width: 16px;
    border-radius: 50%;
    transform: translateY(15%);
	border: .2rem solid #E0E2E6 !important;
    background-color: white !important;
    outline: 0 !important;
}
.nf-field .nf-field-element input,
.nf-field .nf-field-element textarea {
	margin-bottom: 0;
}
.nf-field .listradio-wrap ul {
	list-style-type: none;
	margin-left: 0;
}
.nf-field .listradio-wrap ul li {
	margin-top: 0 !important;
}

.nf-form-cont label {
	color: #242424;
	font-weight: 500;
	line-height: 1.2;
}

.listcheckbox-container .nf-field-element label {
	font-weight: 400;
}

.listcheckbox-container ul {
	list-style: none;
	margin-left: 0;
}

.listcheckbox-container li {
	align-items: center;
	display: flex;
}

.listcheckbox-container li input[type="checkbox"] {
	flex-shrink: 0;
}

.list-row ul {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.list-row li {
	margin-right: 3rem;
}

.hr-container label {
	display: none;
}

.hr-container {
	margin: -2rem 0;
}

.submit-wrap .nf-field-element {
	display: flex;
	justify-content: flex-end;
}

/* ERROR HANDLING */

.nf-error-msg {
	display: block;
	font-size: 1.2rem;
	margin-top: .5rem;
}

.nf-fail .nf-field-label label {
	color: #E34A4A;
}

.nf-fail input {
	border-color: #E34A4A;
}


/* Jetpack Forms ----------------------------- */


:root {
	--jetpack--contact-form--text-color: var(--jetpack--contact-form--border-color);
}

input[type=radio] {
	border: .2rem solid #E0E2E6 !important;
	background-color: white !important;
	outline: 0 !important;
}

input[type=checkbox] {
	height: 20px !important;
    width: 25px !important;
    padding: 0 !important;
    transform: translateY(3px) !important;
    outline: 0 !important;
}

.contact-form > div {
	margin-bottom: 20px;
}

.contact-form label.checkbox, 
.contact-form label.radio {
	padding-top: 5px;
}

.contact-form .grunion-field-label {
	margin-bottom: 8px;
}

.contact-form .grunion-radio-label, 
.contact-form .grunion-checkbox-label {
	font-weight: 400;
	margin: 0 0 10px 0;
	padding-left: 24px;
}

.contact-form .grunion-field-label + .grunion-radio-label {
	margin-top: 8px;
}

.contact-form .grunion-radio-label:last-child,
.contact-form .grunion-checkbox-label:last-child {
	margin-bottom: 0;
}

.contact-form .checkbox input[type=checkbox],
.contact-form .checkbox-inline input[type=checkbox],
.contact-form .radio input[type=radio],
.contact-form .radio-inline input[type=radio] {
	margin-left: -22px;
	top: 2px;
}

blockquote.contact-form-submission {
	background: #fff;
	border: .1rem solid #E0E2E6;
	border-radius: .5rem;
	margin: 0;
	padding: 1.5em;
}

blockquote.contact-form-submission p {
	font-weight: 400;
	margin-bottom: .8rem;
}

blockquote.contact-form-submission p:last-of-type {
	margin-bottom: 0;
}

blockquote.contact-form-submission br {
	display: none;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Front Page
/* --------------------------------------------------------------------------------------------- */


.page-template-front-page-template #site-content {
	padding: 0;
}

.page-template-front-page-template #site-content section {
	padding-top: 4rem;
}

.page-template-front-page-template #site-footer {
	margin-top: 4rem;
}

.page-template-front-page-template .section-header {
	margin-bottom: 2rem;
}

.page-template-front-page-template .section-footer {
	margin-top: 4rem;
	text-align: center;
}


/* Hero ------------------------------------------- */


.startpage-hero {
	background-position: left top;
	background-size: cover;
	padding: 7rem 0;
	position: relative;
}

.startpage-hero:before {
	background: rgba( 255, 255, 255, .5 );
	content: "";
	position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		top: 0;
}

.startpage-hero .container {
	display: block;
}

.startpage-hero p {
	font-size: 1.6rem;
	font-weight: 400;
	margin: 2rem 0 0;
}

.startpage-hero .button {
	margin: 2rem 0 0;
}

@media screen and (max-width: 750px) {
	.startpage-hero .button {
		width: 100%;
	}
}


.startpage-hero .buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0 2rem;
}


/* Message Banner ------------------------------------------- */


.message-banner {
	background-color: #005ca2;
	color: #fff;
	padding: 2.2rem 0;
}

.message-banner .container {
	display: block;
	position: relative;
}

.message-banner * {
	color: inherit;
}

.message-banner .heading {
	font-weight: 700;
	font-size: 1.6rem;
	margin-bottom: .6rem;
}

.message-banner p {
	font-size: 1.2rem;
	line-height: 1.5;
} 

.message-banner .arrow-link {
	margin-top: 1rem;
}


/* Social Feed ------------------------------------------- */


.no-js .social-area {
	display: none;
}

.juicer-feed * {
	font-family: Roboto, Helvetica, sans-serif;
}

.j-poster a {
	color: #242424;
}

.juicer-feed a:hover,
.juicer-feed .j-meta a:hover {
	color: #0060A0;
}

.j-filters,
.j-share,
.juicer-feed .referral {
	display: none !important;
}

.juicer-feed.modern li.feed-item {
	border: .1rem solid #e0e2e6;
	border-radius: .5rem;
}

.juicer-feed.modern li.feed-item.juicer {
	display: none !important;
}

.juicer-feed.modern .j-poster {
	height: auto;
	padding: 2rem 7rem 2rem 2.6rem;
}

.juicer-feed.modern .j-poster h3 {
	color: #242424;
	float: none;
	font-family: Oswald, sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: .0375em;
	margin: 0;
	text-transform: uppercase;
}

.juicer-feed.modern .j-poster img {
	border: 0.1rem solid #e0e2e6;
	margin: 0 1.1rem 0 0;
	height: 3.5rem;
	padding: 0.5rem;
	min-width: 3.5rem;
}

.juicer-feed.modern .j-poster .j-date {
	float: none;
	margin: 0.4rem 0 0 4.5rem;

}

.juicer-feed.modern .j-text {
	padding: 2.4rem 2.6rem 2.4rem 2.6rem;
}

.juicer-feed.modern .j-message,
.juicer-feed.modern li.feed-item.words .j-message {
	color: #242424;
	font-size: 1.5rem;
}

.juicer-feed .j-meta {
	margin: 0;
}

.juicer-feed .j-meta ul {
	display: none;
}

.juicer-feed .j-meta nav {
	position: absolute;
		right: 2.6rem;
		top: 2.4rem;
}

.j-message p {
	line-height: 1.5;
}

/* OVERLAY */

.j-overlay {
	padding-top: 0;
}

.j-overlay .j-overlay-content {
	top: 50%;
	transform: translateY( -50% );
}

.j-overlay .j-close {
	background-image: url(./images/icon_close.svg);
	background-position: center center;
	background-size: 1.4rem;
	padding: 2.4rem;
	top: 0;
	right: 0;
	transition: none;
		-webkit-transition: none;
	z-index: 110;
}

.j-overlay .j-close:hover {
	background-image: url(./images/icon_close_dark.svg);
	background-position: center center;

}

.j-poster .j-date {
	display: block;
	float: left;
	margin: 0.4rem 0 -10px 1rem;
}

.j-post-overlay.juicer-feed {
	display: flex;
	flex-direction: column;
}

.j-post-overlay.juicer-feed a.juicer-button {
	border-color: #0060A0;
	color: #0060A0;
	font-size: 1.4rem;
	letter-spacing: 0;
}

.j-post-overlay.juicer-feed a.juicer-button:before {
	font-size: 1.6rem;
}

.j-post-overlay.juicer-feed a.juicer-button:hover {
	background: #0060A0;
	color: #fff;
}

.j-post-overlay.juicer-feed .image, .j-post-overlay.juicer-feed .video-wrapper {
	background-color: #000;
	display: flex;
	align-items: center;
	flex-grow: 1;
}

.j-post-overlay.juicer-feed .image a {
	display: block;
	width: 100%
}

.j-post-overlay.juicer-feed .j-overlay-text {
	background-color: #fff;
	overflow: visible;
	padding: 5.5rem 2.5rem 8rem 2.5rem;
	position: relative;
}

.j-post-overlay.juicer-feed .j-overlay-text.image-post {
	overflow: visible;
	padding: 9rem 2.5rem 5.5rem 2.5rem;
	position: relative;
}

.j-post-overlay.juicer-feed .j-overlay-text.j-video {
	overflow: visible;
	padding: 9rem 2.5rem 5.5rem 2.5rem;
	position: relative;
}

.j-post-overlay.juicer-feed .j-navigate {
	position: absolute;
		bottom: 0;
		left: 0;	
	padding: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	overflow: hidden;
	background-color: #fff;
	border-top: solid 0.1rem #eee;
	margin: 0;
}

.j-post-overlay.juicer-feed .j-navigate a.j-previous {
	display: flex;
	align-items: center;
	color: #e0e2e6;
	margin: 0;
	padding: 2rem 2.5rem;
	position: relative;
	text-align: center;
	transition: padding .2s ease-in-out;
	z-index: 100;
}

.j-post-overlay.juicer-feed .j-navigate a.j-previous:before {
	width: 100%;
}

.j-post-overlay.juicer-feed .j-navigate a.j-previous:hover {
	padding: 2rem 3rem 2rem 2rem;
}


.j-post-overlay.juicer-feed .j-navigate a.j-next {
	display: flex;
	align-items: center;
	color: #e0e2e6;
	padding: 2rem 2.5rem;
	position: relative;
	text-align: center;
	transition: padding .2s ease-in-out;
	z-index: 100;
}

.j-post-overlay.juicer-feed .j-navigate a.j-next:before {
	width: 100%;
}

.j-post-overlay.juicer-feed .j-navigate a.j-next:hover {
	padding: 2rem 2rem 2rem 3rem;
}



.j-post-overlay.juicer-feed .image-post .j-navigate {
	position: absolute;
		bottom: auto;
		left: 0;
		right: 0;
		top: 0;
	border-bottom: solid 0.1rem #eee;
}

.j-post-overlay.juicer-feed .j-video .j-navigate {
	position: absolute;
		bottom: auto;
		left: 0;
		right: 0;
		top: 0;
	border-bottom: solid 0.1rem #eee;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. News
/* --------------------------------------------------------------------------------------------- */


/* News Archive ------------------------------------------- */


.posts {
	margin-bottom: -2rem;
}

.blog .primary,
.archive .primary {
	max-width: 100%;
}

.blog .primary header,
.archive .primary header {
	max-width: 100%;
}

/* POST PREVIEW */

.post-preview {
	padding-bottom: 2rem;
	width: 100%;
}

.post-preview a {
	background-color: #fff;
	border: .1rem solid #e0e2e6;
	border-radius: .5rem;
	color: #242424;
	display: block;
	text-decoration: none;
}

.post-preview a:hover {
	text-decoration: none;
}

.post-preview img {
	border-radius: .5rem .5rem 0 0;
	display: block;
	width: 100%;
}

.post-preview .preview-content {
	padding: 2.4rem 2.6rem;
}

.post-preview time {
	color: #65717f;
	font-size: 1.2rem;
	font-weight: 500;
	text-transform: uppercase;
}

.post-preview .heading {
	margin: .6rem 0 0;
	word-break: break-word;
}

.post-preview a:hover .heading {
	text-decoration: underline;
}

.post-preview p {
	color: #65717f;
	font-size: 1.5rem;
	line-height: 1.5;
	margin-top: 1.6rem;
}


/* News Single ------------------------------------------- */


.post-header time {
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: -0.015em;
	margin: 1.2rem 0 0;
}

.post-tags,
.post-edit {
	color: #65717f;
	font-size: 1.4rem;
	font-weight: 500;
	padding-left: 3.4rem;
	position: relative;
}

.post-tags + .post-edit {
	margin-top: 1rem;
}

.post-tags:before,
.post-edit:before {
	background: no-repeat center;
	background-size: contain;
	content: "";
	display: block;
	height: 2rem;
	position: absolute;
		left: 0;
		top: calc( 50% - 1rem );
	width: 2rem;
}

.post-tags:before { background-image: url( ./images/icon_tag_gray.svg ); }
.post-edit:before { background-image: url( ./images/icon_wrench_gray.svg ); }

.post-tags a,
.post-edit a {
	color: #65717f;
	text-decoration: underline;
}

.post-tags a:hover,
.post-edit a:hover {
	opacity: 0.75;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Sub Page
/* --------------------------------------------------------------------------------------------- */


.primary {
	margin: 0 auto;
	max-width: 65.5rem;
	width: 100%;
}

.primary header {
	margin-bottom: 3rem;
	max-width: 65.5rem;
	width: 100%;
}

.primary header .meta {
	font-size: 1.5rem;
	font-weight: 500;
	margin-top: 1.5rem;
}


/* Featured Image ------------------------------------ */


.featured-media {
	margin: 3rem 0 0 0;
}

.featured-media img {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.image-meta {
	margin-top: 1.2rem;
}

.image-meta figcaption p {
	color: #65717F;
	font-size: 0.9em;
	font-weight: 700;
	line-height: 1.35;
}

.image-meta figcaption a {
	color: #65717F;
	text-decoration: underline;
}

.image-meta figcaption a:hover {
	opacity: .75;
}

.image-meta figcaption p + p {
	margin-top: .8rem;
}

.image-photographer {
	color: #9aa5b2;
	font-size: 1rem;
	font-weight: 500;
	margin: 0;
	text-transform: uppercase;
}

.entry-content .image-photographer {
	line-height: 1;
	margin: 0;
}

.image-meta figcaption + .image-photographer {
	margin-top: .9rem;
}

.image-photographer a {
	color: #9aa5b2;
	text-decoration: underline;
}

.image-photographer a:hover {
	opacity: .75;
}


/* Puffar ------------------------------------ */


.puff {
	background: #24354A;
	border-radius: .5rem;
	color: #fff;
	display: block;
	padding: 1.9rem 2.4rem;
}

.puff + .puff {
	margin-top: 1rem;
}

.puff:hover {
	text-decoration: none;
}

.few-puffar .puff:nth-child(1) { background: #9AA5B2; }
.few-puffar .puff:nth-child(2) { background: #717F8F; }
.few-puffar .puff:nth-child(3) { background: #4C5A6C; }

.many-puffar .puff:nth-child(1) { background: #9AA5B2; }
.many-puffar .puff:nth-child(2) { background: #8E99A7; }
.many-puffar .puff:nth-child(3) { background: #828E9D; }
.many-puffar .puff:nth-child(4) { background: #768392; }
.many-puffar .puff:nth-child(5) { background: #697888; }
.many-puffar .puff:nth-child(6) { background: #5F6D7E; }
.many-puffar .puff:nth-child(7) { background: #526173; }
.many-puffar .puff:nth-child(8) { background: #475669; }
.many-puffar .puff:nth-child(9) { background: #3B4B5E; }
.many-puffar .puff:nth-child(10) { background: #2F4054; }

.puff .heading {
	color: #fff;
	font-size: 2rem;
}

.puff p {
	color: #fff;
	font-size: 1.5rem;
	line-height: 1.5;
	margin-top: 1rem;
}

.puff .arrow-link {
	margin-top: 1.2rem;
}


/* Kategori-puffar ------------------------------------ */


.cat-puffs {
	margin-bottom: -1.5rem;
}

.cat-puff:hover {
	color: #24354a;
	text-decoration: none;
}

.cat-puff {
	background: #fff;
	border: .1rem solid #e0e2e6;
	border-radius: .5rem;
	color: #242424;
	display: block;
	margin-bottom: 1.5rem;
	padding: 3rem;
	width: 100%;
}

.cat-puff-label {
	color: #9aa5b2;
	font-size: 1.2rem;
	line-height: 1.25;
	margin-bottom: 1rem;
}

.cat-puff .heading {
	color: #24354A;
}

.cat-puff p {
	font-size: 1.5rem;
	line-height: 1.5;
	margin-top: 2rem;
}

.cat-puff .arrow-link {
	font-size: 1.5rem;
	margin-top: 1.8rem;
	transition: transform .2s ease-in-out;
}

.cat-puff:hover .arrow-link {
	transform: translateX(.5rem);
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Page Templates
/* --------------------------------------------------------------------------------------------- */


/* Preview ----------------------------- */


.previews {
	position: relative;
		left: calc( 50% - 50vw );
	width: 100vw;
}

.previews .no-hits {
	line-height: 1.5;
	margin: 0 auto;
	width: 90%;
}

.puffar,
.previews {
	transition: opacity .3s ease-in-out;
}

.previews.loading,
.puffar.loading {
	opacity: 0.25;
}

.puffar.loading:after,
.previews.loading:after {
	content: "";
	display: block;
	position: absolute;
		left: 0;
		bottom: 0;
		right: 0;
		top: 0;
}

.previews .no-hits {
	color: #65717f;
	font-size: 1.4rem;
}

.previews .alert {
	margin: 0 1.6rem;
}

.preview {
	background: #fff;
	border-top: .1rem solid #e0e2e6;
	padding: 2.4rem 1.6rem;
	position: relative;
}

.preview:last-child {
	border-bottom: .1rem solid #e0e2e6;
}

.preview-meta {
	color: #65717f;
	display: block;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: .7rem;
	text-transform: uppercase;
}

.preview-meta time + span:before { content: " — "; }
.preview-meta time + span:after { content: none; }

.preview-meta time + span {
	display: inline;
	padding: 0 0 0 0;
}

.preview h3 {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.25;
}

.preview h3 a {
	color: #24354A;
}

.search-results .preview h3 a,
.search-page-intranat .preview h3 a,
.search-page-gu-f .preview h3 a {
	color: #337ab7 !important;
	text-decoration: underline;
}
.search-results .preview h3 a .searchwp-highlight,
.search-page-gu-f .preview h3 a .searchwp-highlight,
.search-page-intranat .preview h3 a .searchwp-highlight {
	color: #337ab7 !important;
	text-decoration: underline;
}

.preview h3 a.is-external {
	position: relative;
}

.preview h3 a.is-external:after {
	background: url( ./images/icon_arrow_link_external_gray.png ) no-repeat center;
	background-size: contain;
	content: "";
	display: block;
	height: 1.2rem;
	position: absolute;
		left: calc( 100% + .8rem );
		top: calc( 50% - .5rem );
	width: 1.2rem;
}

.preview .location {
	color: #9AA5B2;
	font-size: 1.2rem;
	font-weight: 700;
	margin-top: .6rem;
	padding-left: 2rem;
}

.preview .location:after {
	background-image: url( ./images/icon_location_light_gray.svg );
	height: 1.7rem;
	top: calc( 50% - .8rem );
	width: 1.2rem;
}

.preview p {
	font-size: 1.5rem;
	line-height: 1.5;
	margin-top: 1.3rem;
	word-break: break-word;
}

.course-apply {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
}

.preview.closed .course-apply {
	margin-top: 2.5rem;
}

.course-apply span {
	font-size: 1.5rem;
}

.registration-closed {
	color: #E34A4A;
	font-family: Oswald, sans-serif;
	font-size: 1.5rem;
	letter-spacing: .0666em;
	text-transform: uppercase;
}

.course-apply .registration-closed {
	margin-left: 1rem;
}


/* Page Calendar ----------------------------- */

.javascript-required {
	display: none;
}

.no-js .javascript-required {
	display: block;
}

/* FILTERS */

.filters {
	margin-bottom: 3rem;
}

.no-js .filters,
.no-js .aside-calendar-menu {
	display: none;
}

.filters-header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.2rem;
	min-height: 3rem;
	position: relative;
}

.filters h4 {
	color: #65717f;
	font-size: 1.5rem;
	position: relative;
}

.filters .loading-title,
.filters.loading .form-title { display: none; }
.filters.loading .loading-title { display: inline-block; }

.filters .reset-filters {
	border: .1rem solid #e0e2e6;
	border-radius: .3rem;
	color: #65717f;
	font-size: 1.2rem;
	opacity: 0;
	padding: .5rem 1rem .6rem;
	position: absolute;
		right: 9999rem;
		top: 0;
	transition: opacity .1s ease-in-out, right 0s .1s, background-color .1s ease-in-out;
}

.filters .reset-filters:hover {
	background: #e0e2e6;
	text-decoration: none;
}

.filters.active-filters .reset-filters {
	opacity: 1;
	right: 0;
	transition: opacity .1s ease-in-out, background-color .1s ease-in-out;
}

.filter-selects > div {
	display: flex;
}

.filter-selects > div + div {
	margin-top: 1rem;
}

.filters select {
	width: 100%;
}

.filters select + select {
	display: none;
	margin-left: .6rem;
}

.filters select.visible {
	display: block;
}


/* Page Course Type ------------------------------- */


.previews > h3 {
	font-size: 2rem;
	padding: 1rem 1.6rem 1.6rem 1.6rem;
}

.compact-preview,
.compact-preview .course-apply {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.compact-preview .heading {
	font-size: 1.6rem;
}

.compact-preview .heading .preview-time {
	color: #9AA5B2;
}

.compact-preview .course-apply {
	margin: 0 0 0 1rem;
}

.compact-preview .button.is-external {
	margin-left: 1rem;
}

@media ( max-width: 599px ) { /* Save us an overwrite at 600px */

	.compact-preview .heading .preview-time {
		display: block;
		margin-top: .5rem;
	}

	.compact-preview .button.is-external.small-mobile {
		height: 4rem;
		min-width: 0;
		padding-left: 0;
		padding-right: 0;
		position: relative;
		text-indent: -9999rem;
		width: 4rem;
	}

	.compact-preview .button.is-external.small-mobile:after {
		display: block;
		height: 1.4rem;
		margin: 0 0 0 0;
		position: absolute;
			left: calc( 50% - .6rem );
			top: calc( 50% - .7rem );
		width: 1.4rem;
	}

}


/* Page Course Moment ----------------------------- */


.course-moment-page header .meta > *,
.page-crm-course header .meta > * {
	display: block;
}

.course-moment-page .course-apply,
.page-crm-course .course-apply {
	border-bottom: .1rem solid #e0e2e6;
	border-top: .1rem solid #e0e2e6;
	padding: 1rem 0;
}

.page-crm-course .compact-preview .course-apply {
	border-bottom: none !important;
	border-top: none !important;
	padding: 0 !important;
}


/* Federation Page ----------------------------- */


.federations-list {
	margin-bottom: -3rem;
}

.federations-list .region-group {
	margin-bottom: 3rem;
}

.federations-list .heading {
	margin-bottom: 1.5rem;
}

.federations-list ul {
	font-size: 1.5rem;
	list-style: none;
}

.federations-list li {
	line-height: 1.35;
}

.federations-list li + li {
	margin-top: .8rem;
}

.federations-list a {
	color: #24354A;
	position: relative;
	text-decoration: underline;
}

.federations-list a.is-external:after {
	background: url( ./images/icon_arrow_link_external_gray.png ) no-repeat center;
	background-size: contain;
	content: "";
	display: block;
	height: 1.4rem;
	position: absolute;
		left: calc( 100% + 1rem );
		top: calc( 50% - .7rem );
	width: 1.2rem;
}


/* Landing Page with Filters ----------------------------- */


.landingpage-w-filter .ajax-previews-wrapper {
	display: none;
}

.landingpage-w-filter .has-posts .ajax-previews-wrapper {
	display: block;
}

.landingpage-w-filter .has-posts .puffar {
	display: none;
}


/* PAGINATION */

.ajax-previews-wrapper #pagination {
	display: none;
}

.ajax-previews-wrapper.paginate #pagination {
	display: block;
}


/* Frida Events Page ----------------------------- */

.events-county + .events-county {
	margin-top: 3rem;
}

.events-county > .heading {
	color: #65717f;
	font-size: 1.6rem;
	padding: 0 1.6rem 1.6rem 1.6rem;
}


/* Course Locations Page ----------------------------- */


@media ( max-width: 599px ) {

	.course-locations-page.has-locations #site-content {
		padding-bottom: 0;
	}

}

.course-locations {
	background: #fff;
	border: 0 solid #e0e2e6;
	border-top-width: .1rem;
	overflow: hidden;
	position: relative;
		left: calc( 50% - 50vw );
	width: 100vw;
}

.course-locations .view-toggle {
	background: #e0e2e6;
	border-radius: 0 0 .4rem .4rem;
	cursor: pointer;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.0175em;
	padding: 1.2rem 2rem 1.2rem;
	position: absolute;
		left: 4%;
		top: -.2rem;
	transition: transform .15s ease-in-out;
	text-transform: uppercase;
	z-index: 1;
}

.course-locations .view-toggle:hover {
	transform: translateY( .2rem );
}

.course-locations.showing-map .list { display: none !important; }
.course-locations.showing-list .map { display: none !important; }

.course-locations.showing-map .view-toggle .show-map { display: none; }
.course-locations.showing-list .view-toggle .show-list { display: none; }


/* LIST VIEW */

.course-locations .list {
	padding: 8rem 4% 4rem 4%;
	margin-bottom: -3.5rem;
}

.list .course-location {
	border-top: .1rem solid #e0e2e6;
	font-size: 1.4rem;
	margin-bottom: 3.5rem;
	padding-top: 1.4rem;
}

.list .course-location .heading {
	color: #24354A;
	font-size: 2rem;
	font-weight: 700;
}

.list .course-location .location-link {
	color: #65717F;
	display: inline-block;
	font-weight: 500;
	margin-top: .5rem;
	text-decoration: underline;
}

.list .course-location .location-link:hover {
	color: #9AA5B2;
}

.list .course-location address {
	display: block;
	line-height: 1.4;
	margin-top: 1.2rem;
}


/* MAP VIEW */

.course-locations .map {
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 0 0 3.6rem 2rem;
	width: 100%;
}

.course-locations .map-inner {
	min-width: 42rem;
	position: relative;
}

.course-locations .map-inner img {
	display: block;
	width: 42rem;
}

.map-pin {
	background-image: linear-gradient(-135deg, #0099CE 0%, #0060A0 100%);
	border: .2rem solid #FFFFFF;
	border-radius: 50%;
	height: 2.4rem;
	margin: -1.2rem 0 0 -1.2rem;
	position: absolute;
	width: 2.4rem;
}

.pin-content {
	background: #24354A;
	border-radius: .6rem;
	padding: 1.3rem 1.6rem;
	position: absolute;
	transition: transform .25s ease-in-out;
}

.pin-content.top { 	  bottom: calc( 100% - 0rem ); }
.pin-content.right {  left: calc( 100% - 3.4rem ); }
.pin-content.bottom { top: calc( 100% - 0rem ); }
.pin-content.left {   right: calc( 100% - 3.4rem ); text-align: right; }

.pin-content:hover {
	text-decoration: none;
}

.pin-content.bottom:hover { transform: translateY( -.3rem ); }
.pin-content.top:hover { transform: translateY( .3rem ); }

.pin-content:before {
	border: 1rem solid transparent;
	content: "";
	display: block;
	position: absolute;
}

.pin-content.top:before { 
	border-top-color: #24354A; 
	top: calc( 100% - .1rem );
}

.pin-content.bottom:before { 
	bottom: calc( 100% - .1rem );
	border-bottom-color: #24354A; 
}

.pin-content.right:before { left: 1.4rem; }
.pin-content.left:before { right: 1.4rem; }

.pin-content .heading {
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: inherit;
	white-space: nowrap;
}

.pin-content .location-link {
	color: #919AA4;
	display: block;
	margin-top: .2rem;
	font-size: 1.2rem;
	font-weight: 500;
	text-align: inherit;
}

.pin-content:hover .location-link {
	text-decoration: underline;
}


/* Media Table Template ------------------------------- */


.media-table {
	margin-top: 4rem;
}

.media-table .media-group {
	margin-bottom: 3rem;	
}

.media-table .media-group:last-child {
	margin-bottom: 0;
}

.media-table .heading--4 {
	font-size: 2.1rem;
	font-weight: 700;
	margin: 0 0 2rem 0;
}

.media-table .media-item {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.media-table .media-group:last-child .media-item:last-child {
	margin-bottom: 0;
}

.media-table .media-item .faux-image-wrapper {
	background: #fff url( ./images/icon_image_broken_gray.svg ) no-repeat center;
	background-size: 2.4rem auto;
	display: block;
	position: relative;
	width: 15rem;
}

.media-table .media-item .faux-image:before {
	padding-top: 100%;
}

.media-table .media-icon {
	align-items: center;
	background: #005E91;
	border-radius: 50%;
	display: flex;
	height: 3.2rem;
	justify-content: center;
	position: absolute;
		left: .5rem;
		top: .5rem;
	transition: transform .1s linear;
	width: 3.2rem;
}

.media-table .media-item .faux-image-wrapper:hover .media-icon {
	transform: scale( 1.1 );
}

.media-table .media-item.type-image .media-icon svg {
	height: 1.18rem;
	width: 1.44rem;
}

.media-table .media-item.type-video .media-icon svg {
	height: 1.28rem;
	transform: translateX( .12rem );
	width: 1.0624rem;
}

.media-item-header {
	margin-left: 1.5rem;
	width: 100%;
}

.media-item-title {
	color: #24354A;
	font-size: 1.6rem;
	font-weight: 700;
}

.media-item-title a {
	color: inherit;
}

.media-item-description {
	color: #65717F;
	font-size: 1.4rem;
	line-height: 1.28;
	margin: .6rem 0 0;
}

.media-item-meta {
	margin-top: .8rem;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Search Results
/* --------------------------------------------------------------------------------------------- */


.search-results header p {
	line-height: 1.25;
	margin: 1.6rem 0 0 0;
}

.search-results form {
	margin-top: 2rem;
	position: relative;
}

.search-results input[type="search"] {
	margin: 0 0 0 0;
	padding-right: 10.5rem;
}

.search-results .search-submit {
	min-width: 0;
	padding: 1.2rem 3rem;
	position: absolute;
		right: .6rem;
		top: .7rem;
}

.search-results:not(.search-no-results) .mobile-page-nav {
	border-bottom-width: 0;
}

.multisite-search {
	align-items: center;
	display: flex;
	margin-top: .8rem;
	width: 100%;
}

.multisite-search label {
	font-size: 1.3rem;
	font-weight: 500;
}


/* With results ------------------------------ */


/* Without results ------------------------------ */


/* Empty search ------------------------------ */


.search-intro #site-content {
	align-items: center;
	display: flex;
	min-height: calc( 100vh - 10.7rem );
}

.search-intro.admin-bar #site-content {
	min-height: calc( 100vh - 10.7rem - 3.2rem );
}

.search-intro .primary .heading {
	margin-bottom: 2rem;
}

.search-intro form {
	position: relative;
}

.search-intro input[type="search"] {
	background: transparent;
	border: none;
	border-bottom: .2rem solid #24354A;
	border-radius: 0;
	font-size: 2.4rem;
	font-weight: 300;
	margin: 0 0 0 0;
	padding: 2.5rem 10rem 2.5rem 0;
}

.search-intro input[type="search"]::-moz-input-placeholder { color: #65717F; }
.search-intro input[type="search"]::-webkit-input-placeholder { color: #65717F; }

.search-intro .search-submit {
	position: absolute;
		right: 0;
		top: 2.5rem;
}

.search-intro .multisite-search {
	margin-top: 1.5rem;
}


/* Intranet Page ----------------------------- */

/* LOGIN VIEW */

.page-template-intranet-page input#user-restrict-username {
	margin-bottom: 2rem;
}

/* FILES */

.files {
	margin-top: 4rem;
}

.files + .previews {
	margin-top: 3rem;
}

.files .heading {
	color: #65717F;
	margin-bottom: 2rem;
}

.file-list {
	background: #fff;
	border: 0 solid #e0e2e6;
	border-bottom-width: .1rem;
	border-top-width: .1rem;
	position: relative;
		left: calc( 50% - 50vw );
	width: 100vw;
}

.file {
	align-items: center;
	display: flex;
	padding: 2.2rem 4%;
}

.file:hover {
	text-decoration: none;
}

.file + .file {
	border-top: .1rem solid #e0e2e6;
}

.file-image {
	background: #E0E2E6 no-repeat center;
	background-size: cover;
	flex-shrink: 0;
	height: 6rem;
	margin-right: 1.5rem;
	position: relative;
	width: 6rem;
}

.file-content {
	width: 100%;
}

.file h4 {
	color: #24354A;
	font-size: 1.5rem;
	font-weight: 700;
}

.file:hover h4 {
	text-decoration: underline;
}

.file-description {
	color: #65717f;
	font-size: 1.3rem;
	margin-top: .6rem;
}

.file-description p {
	line-height: 1.38;
}

.file-description p + p {
	margin-top: 1rem;
}

.file-meta {
	align-items: center;
	color: #65717F;
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	justify-content: flex-start;
	margin-top: 1rem;
}

.file-suffix {
	background: #005E91;
	border-radius: .2rem;
	color: #fff;
	margin-right: 1rem;
	padding: .2rem .5rem .2rem;
	text-transform: uppercase;
}

.file-meta span:not(.file-suffix) + span:before {
	color: #9AA5B2;
	content: "•";
	margin: 0 .3rem 0 .5rem;
}

.file-meta a {
	color: inherit;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Pagination
/* --------------------------------------------------------------------------------------------- */


#pagination {
	margin: 4rem 0 0 0;
	padding: 0;
	text-align: center;
	width: 100%;
}

.nothing-to-load {
	display: none;
}

#pagination .button {
	height: 4.3rem;
	min-width: 0;
	padding: 0;
	position: relative;
	width: 15rem;
}

#pagination.loading .button {
	animation: adjustWidth .3s ease-in-out .05s;
	animation-fill-mode: forwards;
}

@keyframes adjustWidth {
	0% {   width: 15rem; }
	100% { width: 4.3rem; }
}

#pagination.loading .button {
	overflow: hidden;
	position: relative;
}

#pagination .button span {
	display: block;
	position: absolute;
		left: calc( 50% - 7.5rem );
		top: calc( 50% - 1.1rem );
	text-align: center;
	width: 15rem;
}

#pagination.loading .button span {
	animation: fadeOut .3s ease-in-out .05s;
	animation-fill-mode: forwards;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(0);
	}
}

#pagination .button .loading-icon {
	display: block;
	position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		top: 0;
}

#pagination.loading .button .loading-icon {
	animation: fadeIn .3s ease-in-out .05s;
	animation-fill-mode: backwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

#pagination.loading .button .loading-icon:before {
	animation: spin 5s linear infinite;
	background: url( ./images/icon_loading_white.svg ) no-repeat center;
	background-size: contain;
	content: "";
	display: block;
	position: absolute;
		bottom: 12.5%;
		left: 12.5%;
		right: 12.5%;
		top: 12.5%;
}

@keyframes spin {
	0% {   transform: rotate( 0deg ); }
	100% { transform: rotate( -360deg ); }
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Page Navigation
/* --------------------------------------------------------------------------------------------- */


/* Mobile Page Nav ------------------------------ */


.mobile-page-nav {
	background: #fff;
	border-bottom: .1rem solid #e0e2e6;
	border-top: .1rem solid #e0e2e6;
	margin-top: 2rem;
	position: relative;
		left: calc( 50% - 50vw );
	width: 100vw;
}

.mobile-page-nav + .mobile-page-nav {
	margin-top: .5rem;
}

.mobile-page-nav ul {
	list-style: none;
}

.mobile-page-nav li > div {
	display: flex;
	position: relative;
}

.mobile-page-nav li {
	border-bottom: .1rem solid rgba( 255, 255, 255, .1 );
}

.mobile-page-nav ul ul li:first-child {
	border-top: .1rem solid rgba( 255, 255, 255, .1 );
}

.mobile-page-nav li:last-child {
	border-bottom: none;
}

.mobile-page-nav a,
.mobile-page-nav span {
	color: #65717f;
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 1.5rem 1.5rem 1.7rem;
	width: 100%;
}

.mobile-page-nav a.is-external {
	position: relative;
}

.mobile-page-nav a.is-external:after {
	background-image: url( ./images/icon_arrow_link_external_white.png );
	background-size: 1.6rem auto;
	content: "";
	height: 1.6rem;
	position: absolute;
		right: 1.7rem;
		top: calc( 50% - .8rem );
	width: 1.6rem;
}

.mobile-page-nav li.active > div > a {
	text-decoration: underline;
}

.mobile-page-nav .count {
	color: #AAB5C2;
}

.mobile-page-nav .desktop-text {
	display: none;
}

.mobile-page-nav .toggle {
	cursor: pointer;
	position: relative;
	flex: 0 0 0;
	min-width: 5.5rem;
	width: auto;
}

.mobile-page-nav .toggle.has-label {
	align-items: center;
	display: flex;
	padding-right: 6.5rem;
}

.mobile-page-nav .toggle:before,
.mobile-page-nav .toggle:after {
	content: "";
	display: block;
	position: absolute;
}

.mobile-page-nav .toggle:before {
	bottom: .8rem;
	border-left: .1rem solid #e0e2e6;
	left: 0;
	top: .8rem;
}

.mobile-page-nav .toggle:after {
	background: url( ./images/icon_chevron_down_gray.svg ) no-repeat center;
	background-size: 100% auto;
	height: .8rem;
	position: absolute;
		right: 2rem;
		top: calc( 50% - .4rem );
	transition: transform .25s ease-in-out;
	width: 1.2rem;
}

.mobile-page-nav .toggle.active:after {
	transform: rotate(180deg);
}

.mobile-page-nav .toggle-label {
	font-size: 1.1rem;
	text-transform: uppercase;
	text-align: right;
	font-weight: 700;
}

.mobile-page-nav .toggle .hide-label,
.mobile-page-nav .toggle.active .show-label { display: none; }
.mobile-page-nav .toggle.active .hide-label { display: block; }

/* DEEP DOWN */

.mobile-page-nav ul ul {
	background: #65717f;
	color: #fff;
	display: none;
}

.mobile-page-nav ul ul a,
.mobile-page-nav ul ul span {
	color: #fff;
}

.mobile-page-nav ul ul .toggle:before {
	border-left-color: rgba( 255, 255, 255, .1 );
}

.mobile-page-nav ul ul .toggle:after {
	background-image: url( ./images/icon_chevron_down_white.svg );
}

.mobile-page-nav ul ul ul { 
	background: rgba( 24, 24, 28, .125 ); 
}

.mobile-page-nav ul ul ul a {
	font-weight: 400;
	padding-left: 3rem;
}

.mobile-page-nav ul ul ul ul a { padding-left: 4.5rem; }
.mobile-page-nav ul ul ul ul ul a { padding-left: 6rem; }


/* Desktop Page Nav ------------------------------ */


.desktop-page-nav {
	display: none;
	width: 18%;
}

.desktop-page-nav div {
	color: #9AA5B2;
	display: inline-block;
	line-height: 1.25;
	max-width: 100%;
	position: relative;
	word-break: break-word;
}

.desktop-page-nav a {
	color: #65717f;
}

.desktop-page-nav ul {
	list-style: none;
	margin: 0;
	width: 100%;
}

.desktop-page-nav > ul + ul {
	border-top: .1rem solid #e0e2e6;
	margin-top: 3rem;
	padding-top: 3rem;
}

.desktop-page-nav a.is-external {
	display: inline-block;
	padding-right: 2.2rem;
}

.desktop-page-nav a.is-external:after {
	background: url( ./images/icon_arrow_link_external_gray.png ) no-repeat center;
	background-size: contain;
	content: "";
	display: block;
	height: 1.4rem;
	position: absolute;
		right: 0;
		top: calc( 50% - .7rem );
	width: 1.2rem;
}

.desktop-page-nav li {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.desktop-page-nav li.active > div > span,
.desktop-page-nav li.active > div > a {
	text-decoration: underline;
}

.desktop-page-nav li + li,
ul.connected-associations li:first-child {
	margin-top: 1.5rem;
}

.desktop-page-nav > ul > li > div,
.desktop-page-nav > ul > li > ul > li > div {
	font-family: Oswald, sans-serif;
	font-size: 1.5rem;
	letter-spacing: .039em;
	text-transform: uppercase;
}

.desktop-page-nav > ul > li > div {
	margin-bottom: 3.5rem;
}

.desktop-page-nav > ul > li > div > span,
.desktop-page-nav > ul > li > div > a {
	color: #24354A;
}

.desktop-page-nav .toggle-sibling {
	color: #65717f;
	cursor: pointer;
}

.desktop-page-nav .toggle {
	cursor: pointer;
	display: none;
	background: url( ./images/icon_chevron_down_gray.svg ) no-repeat center;
	background-size: 1.2rem auto;
	height: 2.5rem;
	position: absolute;
		left: calc( 100% + .1rem );
		top: calc( 50% - 1.2rem );
	transition: transform .25s ease-in-out;
	width: 2.5rem;
}

.desktop-page-nav .toggle-label {
	display: none;
}

.desktop-page-nav > ul > li > ul > li > div .toggle {
	display: block;
}

.desktop-page-nav .toggle.active {
	transform: rotate(180deg);
}

/* DEEP DOWN */

.desktop-page-nav ul ul ul {
	font-size: 1.4rem;
	margin: 1.4rem 0 0 2rem;
}

.desktop-page-nav > ul > li > ul > li > ul {
	display: none;
	margin: 1.4rem 0 2.5rem 2rem;
}

.no-js .desktop-page-nav > ul > li > ul > li > ul {
	display: block;
}

.desktop-page-nav ul ul ul li + li {
	margin-top: 1.2rem;
}


/* ASSOCIATIONS SPECIFIC */

.desktop-page-nav .associations-list > li > div > .toggle {
	display: block;
}

.desktop-page-nav .associations-list > li > ul {
	display: none;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Error 404
/* --------------------------------------------------------------------------------------------- */


.error404 .search-form {
	align-items: center;
	display: flex;
}

.error404 .search-form input {
	margin: 0 1rem 0 0;
	max-width: 32.7rem;
}

.error404 .search-form .search-submit {
	font-size: 1.5rem;
	padding: 1.2rem 2.4rem;
	width: 11rem;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Site Footer
/* --------------------------------------------------------------------------------------------- */


#site-footer {
	background-color: #23344b;
	color: #fff;
	position: relative;
}


/* Footer Nav ------------------------------ */


.footer-nav {
	background: #65717f;
}

.footer-nav .drawer {
	margin-left: -4vw;
	margin-right: -4vw;
	overflow: hidden;
	position: relative;
}

.footer-nav .drawer:after {
	background-image: linear-gradient(-90deg, #65717f 0%, rgba(101,113,127,0.00) 100%);
	content: "";
	display: block;
	position: absolute;
		bottom: 0;
		right: 0;
		top: 0;
	width: 4.4rem;
}

.footer-nav .drawer-inner {
	-ms-overflow-style: none;
	overflow: auto;
	padding-left: 1.5rem;
	width: 100%;
}

.footer-nav .drawer-inner::-webkit-scrollbar {
	display: none;
}

.footer-nav ul.breadcrumbs {
	display: flex;
	list-style: none;
}

.footer-nav li {
	position: relative;
}

.footer-nav li + li {
	margin-left: 3.7rem;
}

.footer-nav li + li:before {
	background: url( ./images/icon_chevron_right_gray.svg ) no-repeat center;
	background-size: contain;
	content: "";
	display: block;
	height: 1.064rem;
	position: absolute;
		left: -2.1rem;
		top: calc( 50% - .532rem );
	width: .715rem;
}

.footer-nav li:last-child {
	padding-right: 4.4rem;
}

.footer-nav a,
.footer-nav span {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 1.3rem;
	font-weight: 500;
	height: 4.4rem;
	justify-content: center;
	text-decoration: none;
	white-space: nowrap;
}

.footer-nav a:hover {
	text-decoration: underline;
}

.footer-nav a.home {
	background: url( ./images/fu-logo-shield-white.svg ) no-repeat center;
	background-size: contain;
	text-indent: -99999rem;
	width: 1.8rem;
}

.footer-nav a.home:hover {
	opacity: 0.5;
}

/* TO THE TOP */

.footer-nav .to-the-top {
	background: url( ./images/icon_arrow_up_white.svg ) no-repeat right center;
	background-size: 1.1rem auto;
	display: none;
	padding-right: 2.1rem;
}

/* Footer Inner ------------------------ */

.footer-inner {
	display: block;
	padding: 4rem calc( 4rem - 5vw );
}

.footer-logo,
.footer-logo img {
	display: block;
}

.footer-logo {
	width: 10rem;
}

.widgets {
	margin-top: 4rem;
}

.widget {
	font-size: 1.5rem;
	margin-bottom: 4rem;
}

.widget:last-child {
	margin-bottom: 0;
}

.widget-title {
	font-family: Oswald, sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: .0833em;
	line-height: 1.3;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.widget p {
	line-height: 1.5;
}

.widget p + p {
	margin-top: 1.3rem;
}

.widget a {
	color: #fff;
	text-decoration: underline;
}

.widget a:hover {
	opacity: 0.8;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Media Queries
/* --------------------------------------------------------------------------------------------- */


@media ( min-width: 375px ) {


	/* Page Templates ------------------------ */
	
	/* COURSE LOCATIONS PAGE */

	.course-locations .map {
		padding: 0 0 3.6rem 4rem;
	}


	/* Site Footer ------------------------ */
	
	.footer-nav .container {
		width: 90%;
	}
	
	.footer-inner {
		padding: 5rem 0 6rem 0;
		width: 90%;
	}
	
	.footer-logo {
		margin-bottom: 5rem;
		width: 11.5rem;
	}
	
	.widgets {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.widget {
		flex: 0 0 47.5%;
	}
	
	.widget:nth-child(even) {
		margin-left: 5%;
	}


}


@media ( min-width: 480px ) {

	
	/* Document Setup ------------------------ */
	
	body {
		font-size: 1.8rem;
	}


	/* Structure ------------------------ */
	
	#site-content {
		padding: 6rem 0 8rem;
	}
	
	
	/* Base Elements ------------------------ */
	
	/* TYPOGRAPHY */
	
	.heading--1 {
		font-size: 4rem;
	}

	body.home .section-header .heading--1 {
		font-size: 3rem;
	}
	
	.heading--3 {
		font-size: 5.6rem;
		line-height: 1.25;
	}

	body.home .startpage-hero .heading--3 {
		font-size: 5rem;
	}
	
	.intro-text {
		font-size: 2.5rem;
		margin-top: 2rem;
	}
	
	
	/* Site Header ------------------------------ */
	
	.meta-nav {
		height: auto;
	}
	
	.meta-dropdown {
		position: relative;
	}
	
	.meta-dropdown.left { 
		left: auto;
		margin-left: -1.6rem; 
	}
	
	.meta-dropdown.right { 
		margin-right: -1.6rem; 
		right: auto;
	}
	
	.meta-toggle, .logout {
		padding: .9rem 1.6rem;
	}
	
	
	/* Sub Page ------------------------------ */
	
	.primary header {
		margin-bottom: 4rem;
	}
	
	.primary header .meta {
		font-size: 1.6rem;
		margin-top: 2rem;
	}
	
	.featured-media {
		margin-top: 4rem;
	}
	
	
	/* Front Page ------------------------------ */
	
	.page-template-front-page-template .section-header {
		margin-bottom: 4rem;
	}
	
	.page-template-front-page-template .section-footer {
		margin-top: 8rem;
	}
	
	/* HERO */
	
	.startpage-hero {
		padding: 10rem 0;
	}
	
	.startpage-hero .heading {
		margin-right: auto;
		max-width: 100%;
		width: 57rem;
	}

	.startpage-hero p {
		font-size: 2.5rem;
		margin: 3rem 0 0;
		max-width: 100%;
		width: 80rem;
	}
	
	.startpage-hero .button {
		margin-top: 3rem;
	}
	
	
	/* Page Templates ----------------------------- */
	
	/* FILTERS */
	
	.filters {
		margin-bottom: 4rem;
	}
	
	.filters select + select {
		margin-left: 1rem;
	}
	
	.filter-options input[type="checkbox"] {
		margin-right: 1rem;
	}
	
	.filter-options .mobile { display: none; }
	.filter-options .desktop { display: inline; }
	
	/* PREVIEWS */
	
	.previews {
		left: auto;
		width: 100%;
	}

	.previews .no-hits {
		line-height: 1.5;
		margin: 0 auto;
		width: 100%;
	}

	.previews .alert {
		margin: 0;
	}
	
	.preview {
		border: .1rem solid #e0e2e6;
		border-radius: .5rem;
		padding: 3rem;
	}
	
	.preview + .preview {
		margin-top: 1rem;
	}
	
	.preview-meta {
		margin-bottom: 1rem;
	}
	
	/* PAGE COURSE TYPE */
	
	.course-type-page header .meta {
		border-top: .1rem solid #e0e2e6;
		display: flex;
		font-size: 1.4rem;
		justify-content: space-between;
		padding: 1rem 0 0;
		text-transform: uppercase;
	}
	
	.course-type-page header .meta time + span {
		padding: 0 1.6rem 0 0;
		text-align: right;
	}
	
	.course-type-page header .meta time + span:after {
		left: auto;
		right: 0;
	}

	.page-crm-course header .meta {
        border-top: .1rem solid #e0e2e6;
        display: flex;
        font-size: 1.4rem;
        justify-content: space-between;
        padding: 1rem 0 0;
        text-transform: uppercase;
    }

    .page-crm-course header .meta time + span {
        padding: 0 1.6rem 0 0;
        text-align: right;
    }

    .page-crm-course header .meta time + span:after {
        left: auto;
        right: 0;
    }
	
	.previews > h3 {
		font-size: 3rem;
		margin: 5rem 0 3rem 0;
		padding: 0 0 0 0;
	}
	
	.compact-preview {
		border-radius: 0;
		border-bottom: none;
	}
	
	.compact-preview:first-of-type {
		border-radius: .5rem .5rem 0 0;
	}
	
	.compact-preview:last-of-type {
		border-radius: 0 0 .5rem .5rem;
	}
	
	.compact-preview + .compact-preview {
		margin-top: 0;
	}
	
	/* PAGE COURSE MOMENT */
	
	.course-moment-page .course-apply,
	.page-crm-course .course-apply {
		padding: 2rem 0;
	}
	
	/* COURSE LOCATIONS PAGE */
	
	.course-locations .list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.list .course-location {
		width: calc( 50% - 1rem );
	}

	.course-locations .map {
		padding: 0 0 3.6rem 8rem;
	}
	
	/* BECOME A MEMBER */
	
	.nf-form-cont {
		margin-top: 4rem;
		padding-top: 4rem;
	}
	
	nf-field {
		margin-bottom: 3rem;
	}
	
	nf-field.halfed {
		width: calc( 50% - 1rem );
	}
	
	.hr-container {
		margin: -3rem 0;
	}


	/* PAGE FRIDA EVENTS */

	.events-county > .heading {
		font-size: 2.2rem;
		padding: 0 0 2rem 0;
	}


	/* MEDIA TABLE PAGE */

	.media-table {
		margin-top: 5rem;
	}

	.media-table .media-group {
		margin-bottom: 2rem;
	}

	.media-table .heading--4 {
		font-size: 3rem;
		margin: 0 0 3rem;
	}

	.media-table .media-items {
		align-items: flex-start;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.media-table .media-item {
		display: block;
		margin-bottom: 3rem;
		width: calc( 50% - 1rem );
	}
	
	.media-table .media-item .faux-image-wrapper,
	.media-table .media-item-header {
		width: 100%;
	}

	.media-table .media-item .faux-image:before {
		padding-top: 56.25%;
	}

	.media-table .media-icon {
		height: 4rem;
		left: 1rem;
		top: 1rem;
		width: 4rem;
	}
	
	.media-table .media-item.type-image .media-icon svg {
		height: 1.476rem;
		width: 1.8rem;
	}
	
	.media-table .media-item.type-video .media-icon svg {
		height: 1.6rem;
		transform: translateX( .15rem );
		width: 1.328rem;
	}

	.media-table .media-item-header {
		margin: 1.2rem 0 0;
	}

	
	/* News Archive ------------------------ */
	
	.post-header time {
		font-size: 1.6rem;
		margin-top: 1.8rem;
	}
	
	
	/* Entry Content ------------------------ */
	
	.entry-content {
		margin-bottom: 4rem;
	}
	
	.entry-content p,
	blockquote,
	.entry-content > ul,
	.entry-content > ol {
		margin-bottom: 3rem;
	}
	
	.entry-content h1,
	.entry-content h2,
	.entry-content h3,
	.entry-content h4,
	.entry-content h5,
	.entry-content h6 {
		margin: 5rem 0 2.5rem;
	}
	
	.entry-content h1 { font-size: 4rem; }
	.entry-content h2 { font-size: 3.2rem; }
	.entry-content h3 { font-size: 2.8rem; }
	
	hr {
		margin: 4rem 0;
	}
	
	/* BUTTONS */
	
	button.big,
	.button.big,
	input[type="button"].big,
	input[type="submit"].big {
		font-size: 2rem;
		min-width: 20rem;
		padding: 1.5rem 4rem 1.7rem;
	}
	
	
	/* TABLE */
	
	th,
	td {
		padding: 1.5rem 1.8rem;
	}
	
	
	/* Search Results ------------------------------ */
	
	.search-results form {
		align-items: center;
		border-bottom: .2rem solid #E0E2E6;
		border-top: .2rem solid #E0E2E6;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		margin-top: 2.5rem;
		padding: 2.5rem 0;
	}
	
	.search-results input[type="search"] {
		min-width: 32rem;
		padding-right: 1.5rem;
		width: 50%;
	}
	
	.search-results .search-submit {
		margin-left: 2rem;
		min-width: 10.5rem;
		position: static;
	}
	
	.search-results .mobile-page-nav {
		margin-bottom: 4rem;
	}

	.search-results:not(.search-no-results) .mobile-page-nav {
		border-bottom-width: .1rem;
	}
	
	
	/* Pagination ------------------------ */
	
	#pagination {
		margin-top: 8rem;
	}
	
	#pagination .button {
		height: 6rem;
		width: 20rem;
	}
	
	@keyframes adjustWidth {
		0% {   width: 20rem; }
		100% { width: 6rem; }
	}
	
	#pagination .button span {
		top: calc( 50% - 1.5rem );
	}
	
	#pagination.loading .button .loading-icon:before {
		bottom: 15%;
		left: 15%;
		right: 15%;
		top: 15%;
	}


	/* Error 404 ------------------------------ */

	.error404 .search-form input {
		margin: 0 1.5rem 0 0;
	}
	
	.error404 .search-form .search-submit {
		font-size: 1.6rem;
	}
	
	
	/* Page Nav ------------------------------ */

	.mobile-page-nav {
		margin-top: 4rem;
	}
	
	
	/* Site footer ------------------------------ */
	
	.footer-nav .drawer {
		margin-left: -1.5rem;
		margin-right: -1.5rem;
	}
	
	
}


@media ( min-width: 600px ) {


	/* Front Page ------------------------ */
	
	.page-template-front-page-template #site-content section {
		padding: 8rem 0;
	}
	
	.page-template-front-page-template #site-content section + section {
		border-top: .1rem solid #e0e2e6;
	}

	.page-template-front-page-template #site-footer {
		margin-top: 0;
	}
	
	/* MESSAGE BANNER */

	.message-banner {
		padding: 2.6rem 0;
	}

	.message-banner .heading {
		font-size: 2rem;
		margin-bottom: 1rem;
	}

	.message-banner p {
		font-size: 1.5rem;
	} 

	.message-banner .arrow-link {
		margin-top: 1.5rem;
	}


	/* Sub Page ------------------------------------ */

	/* FEATURED IMAGE */

	.image-meta {
		margin-top: 1.5rem;
	}

	.featured-media .image-meta {
		margin-top: 1.6rem;
	}

	.wp-caption.justify-image-meta.aligncenter .image-meta,
	.wp-caption.justify-image-meta.alignnone .image-meta,
	.featured-media .image-meta {
		display: flex;
		justify-content: space-between;
	}

	.wp-caption.justify-image-meta.alignnone .image-meta figcaption + .image-photographer,
	.wp-caption.justify-image-meta.aligncenter .image-meta figcaption + .image-photographer,
	.featured-media .image-meta figcaption + .image-photographer {
		flex-shrink: 0;
		margin: 0 0 0 1rem;
		width: auto;
	}

	.featured-media figcaption p {
		font-size: 0.8em;
	}


	/* Page Templates ------------------------ */
	
	/* PREVIEWS */
	
	.preview-meta {
		display: flex;
		justify-content: space-between;
	}
	
	.preview-meta time + span:before { content: none; }
	.preview-meta time + span:after { content: ""; }

	.preview-meta time + span {
		display: block;
		padding: 0 2rem 0 0;
	}

	.preview:not(.compact-preview) .location {
		margin: 0;
		padding: 0 2rem 0 0;
		position: absolute;
			right: 3rem;
			top: 3rem;
	}
	
	.preview:not(.compact-preview) .location:after {
		left: auto;
		right: 0;
	}

	/* PAGE COURSE TYPE */
	
	.compact-preview .heading {
		font-size: 2rem;
	}
	
	.preview .location {
		font-size: 1.4rem;
		margin-top: .8rem;
	}
	
	
	/* COURSE LOCATIONS PAGE */
	
	.course-locations {
		border-radius: .8rem;
		border-width: .1rem;
		left: auto;
		width: 100%;
	}
	
	.course-locations .view-toggle {
		left: 2.5rem;
	}
	
	.course-locations .list {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
	
	.list .course-location {
		padding-top: 1.3rem;
		width: calc( 50% - 1.25rem );
	}
	
	.list .course-location .location-link {
		margin-top: .6rem;
	}
	
	
	/* INTRANET PAGE */

	.page-template-intranet-page input#user-restrict-username {
		margin-bottom: 2.5rem;
	}
	
	.files {
		margin-top: 5rem;
	}
	
	.file-list {
		border-radius: .4rem;
		border-width: .1rem;
		left: auto;
		width: 100%;
	}
	
	.file {
		padding: 2.8rem 3rem;
	}
	
	.file-image {
		height: 8rem;
		margin-right: 1.8rem;
		width: 8rem;
	}

	.file-image:before {
		background: #65717F url( ./images/icon_arrow_download_white.svg ) no-repeat center;
		background-size: auto 50%;
		border: .2rem solid #fff;
		border-radius: 50%;
		content: "";
		display: block;
		height: 4rem;
		opacity: 0;
		position: absolute;
			left: -2rem;
			top: calc( 50% - 2rem );
		transform: translateX( -.3rem );
		transition: .15s all ease-in;
		width: 4rem;
	}
	
	.file:hover .file-image:before {
		opacity: 1;
		transform: translateX( 0 );
	}
	
	.file h4 {
		font-size: 1.6rem;
	}
	
	.file-description {
		font-size: 1.4rem;
	}
	
	.file-meta {
		font-size: 1.1rem;
	}
	
	.file-suffix {
		padding: .1rem .5rem .2rem;
	}
	
	
	/* News ------------------------ */
	
	/* NEWS ARCHIVE */
	
	.posts {
		margin: 0 -1rem -2rem -1rem;
	}
	
	.post-preview {
		padding: 0 1rem 2rem 1rem;
		width: 50%;
	}
	
	.no-js .post-preview {
		width: 100%;
	}


	/* Entry Content ------------------------ */

	.aligncenter,
	.alignnone { 
		margin: 5rem auto; 
	}

	.alignleft,
	.alignright {
		max-width: 40%;
	}
	
	.alignleft {
		float: left;
		margin: .5rem 3rem 3rem 0;
	}
	
	.alignright {
		float: right;
		margin: .5rem 0 3rem 3rem;
	}


	/* Site Footer ------------------------ */
	
	/* FOOTER NAV */
	
	.footer-nav .container {
		display: flex;
		justify-content: space-between;
	}
	
	.footer-nav .drawer {
		margin-left: 0;
		margin-right: 4rem;
	}
	
	.footer-nav .drawer-inner {
		padding-left: 0;
	}
	
	.footer-nav .to-the-top {
		display: flex;
		flex: 0 0 6.7rem;
	}
	
	/* WIDGETS */
	
	.widget {
		flex: 0 0 30%;
	}
	
	.widget + .widget {
		margin-left: 5%;
	}
	
	.widget-title {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

}


@media ( min-width: 655px ) {


	/* Page Nav ------------------------ */
	
	/* MOBILE PAGE NAV */
	
	.mobile-page-nav {
		border-left: .1rem solid #e0e2e6;
		border-right: .1rem solid #e0e2e6;
		left: auto;
		position: static;
		width: 100%;
	}


}


@media ( min-width: 700px ) {


	/* Element Base ------------------------ */
	
	/* ARROW LINK */
	
	.arrow-link {
		font-size: 1.5rem;
		padding-right: 2.4rem;
	}
	
	.arrow-link:before {
		height: 1.4rem;
		top: calc( 50% - .7rem );
		width: 1.6rem;
	}


	/* Site Header ------------------------ */
	
	.header-logo {
		margin-right: 4rem;
		width: 13rem;
	}

	.header-logo img {
		height: 5.5rem;
	}
	
	/* MAIN MENU */
	
	.main-nav {
		padding: 2.5rem 0;
	}
	
	/* META NAV */
	
	.meta-toggle, .log-out {
		font-size: 1.5rem;
		padding: 1.4rem 1.6rem;
	}
	
	.meta-dropdown ul a {
		padding: 1.6rem 4rem 1.6rem 1.6rem;
	}
	
	/* HEADER TOGGLES */
	
	.header-toggles {
		margin-left: 4rem;
	}
	
	.nav-toggle {
		margin-left: 5rem;
	}
	
	
	/* Sub Page ------------------------ */
	
	/* PUFFAR */
	
	.puff {
		padding: 3rem 15.3rem 3rem 3rem;
		position: relative;
	}
	
	.puff .heading {
		font-size: 3rem;
	}
	
	.puff p {
		font-size: 1.7rem;
		margin-top: 1.5rem;
	}
	
	.puff .arrow-link {
		position: absolute;
			bottom: 3rem;
			right: 3rem;
		transition: transform .2s ease-in-out;
	}
	
	.puff:hover .arrow-link {
		transform: translateX(.5rem);
	}

	/* KATEGORI-PUFFAR */

	.cat-puffs {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.cat-puff {
		padding: 3rem 3rem 7.5rem 3rem;
		position: relative;
		width: calc( 50% - .75rem );
	}

	.cat-puff .arrow-link {
		position: absolute;
			bottom: 3rem;
	}
	
	
	/* Page Calendar ------------------------ */
	
	.filter-selects {
		border-bottom: .1rem solid #e0e2e6;
		border-top: .1rem solid #e0e2e6;
		display: flex;
		padding: 2.2rem 0;
	}
	
	.filter-selects > div {
		width: 100%;
	}
	
	.filter-selects > div + div {
		margin: 0 0 0 1rem;
	}
	
	
	/* Search Results ------------------------ */
	
	.search-intro #site-content {
		min-height: calc( 100vh - 15.6rem );
	}

	.search-intro.admin-bar #site-content {
		min-height: calc( 100vh - 15.6rem - 3.2rem );
	}
	
	@media ( max-width: 782px ) {
	
		.search-intro.admin-bar #site-content {
			min-height: calc( 100vh - 15.6rem - 4.6rem );
		}
	
	}
	
	
	/* Site Footer ------------------------ */
	
	.footer-logo {
		width: 13rem;
	}

	.footer-logo img {
		height: 5.6rem;
	}


}


@media ( width: 768px ) {


	/* Sub Page ------------------------ */

	.primary {
		max-width: 69.1rem;
	}
	
	
}

@media ( min-width: 800px ) {

	/* Element Base ------------------------ */

	/* COVER MODAL */

	#media-lightbox .modal-inner {
		height: calc( 100vh - 20rem );
		margin: 10rem auto;
	}

	/* Social Feed ------------------------ */

	/* OVERLAY */

	.j-post-overlay.juicer-feed {
		flex-direction: row;
	}

	.j-post-overlay.juicer-feed .j-overlay-text.image-post {
		padding: 5.5rem 2.5rem;
		width: 50%;
	}

	.j-post-overlay.juicer-feed .j-overlay-text.j-video {
		padding: 5.5rem 2.5rem 8rem 2.5rem;
		width: 50%;
	}

	.j-post-overlay.juicer-feed .image-post .j-navigate {
		right: 100%;
		bottom: 0;
		top: auto;
		left: auto;
		background-color: transparent;
		border: 0;
		height: 100%;
		margin: 0;
		text-shadow: 2px 1px 2px #000000;
	}

	.j-post-overlay.juicer-feed .image-post .j-navigate a.j-previous:before {
		padding: 0;
		color: #fff;
	}

	.j-post-overlay.juicer-feed .image-post .j-navigate a.j-previous:after {
		border-radius: inherit;
		background: -moz-linear-gradient(left, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(left, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to right, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 */
		content: '';    
		display: block;
		height: 100%;
		position: absolute;
		top: 0; 
		left: 0;
		opacity: 0;
		width: 100%;
		z-index: -100;
		-webkit-transition: opacity 0.45s; /* Safari */
		transition: opacity 0.45s;
	}

	.j-post-overlay.juicer-feed .image-post .j-navigate a.j-previous:hover:after {
		opacity: 1;
	}

	.j-post-overlay.juicer-feed .image-post .j-navigate a.j-next:before {
		padding: 0;
		color: #fff;
	}

	.j-post-overlay.juicer-feed .image-post .j-navigate a.j-next:after {
		border-radius: inherit;
		background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* FF3.6-15  */
		background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6  */
		background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+  */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=1 ); /* IE6-9  */
		content: '';    
		display: block;
		height: 100%;
		position: absolute;
		top: 0; 
		left: 0;
		opacity: 0;
		width: 100%;
		z-index: -100;
		-webkit-transition: opacity 0.45s; /* Safari */
		transition: opacity 0.45s;
	}

	.j-post-overlay.juicer-feed .image-post .j-navigate a.j-next:hover:after {
		opacity: 1;
	}

	.j-post-overlay.juicer-feed .j-video .j-navigate {
		position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			top: auto;
		border-bottom: solid 0.1rem #eee;
	}

}


@media ( min-width: 992px ) {


	/* Element Base ------------------------ */
	
	/* TYPOGRAPHY */
	
	.heading--3 {
		font-size: 8rem;
	}

	body.home .startpage-hero .heading--3 {
		font-size: 5rem;
	}
	
	/* Site Header ------------------------ */
	
	/* MAIN MENU */
	
	.main-menu {
		align-items: center;
		display: flex;
		list-style: none;
		margin: 0;
	}

	.main-menu .current-menu-item > a {
		text-decoration: underline;
	}

	.main-menu a {
		display: block;
		padding: 1.4rem 1.8rem;
	}
	
	.main-menu > li > a {
		color: #242424;
		font-family: Oswald, sans-serif;
		font-size: 1.5rem;
		letter-spacing: .0625em;
		text-transform: uppercase;
	}

	.main-menu li.menu-item-has-children {
		position: relative;
	}

	.main-menu li.menu-item-has-children > a {
		background-color: rgba( 101, 113, 127, 0 );
		padding-right: 3.3rem;
		transition: background-color .2s ease-in-out, color .2s ease-in-out;
	}

	.main-menu li.menu-item-has-children > a:after {
		background: url( ./images/icon_chevron_down_black.png ) no-repeat center;
		background-size: .9rem .6rem;
		content: "";
		display: block;
		height: .6rem;
		position: absolute;
			right: 1.6rem;
			top: calc( 50% - .3rem );
		width: .9rem;
		transition: transform .2s ease-in-out;
	}

	.main-menu > li.menu-item-has-children:hover > a {
		background-color: rgba( 101, 113, 127, 1 );
		color: #fff;
	}

	.main-menu > li.menu-item-has-children:hover > a:after {
		background-image: url( ./images/icon_chevron_down_white.svg );
		transform: rotate(180deg);
	}

	.main-menu ul {
		background: #65717F;
		list-style: none;
		opacity: 0;
		position: absolute;
			left: -9999rem;
			top: 100%;
		transition: opacity .2s ease-in-out, left 0s .2s, top 0s .2s;
		width: 24.4rem;
		z-index: 99;
	}

	.main-menu ul a {
		color: #fff;
		font-size: 1.4rem;
		padding: 1.6rem 1.8rem;
	}

	.main-menu ul li + li {
		border-top: .1rem solid rgba( 255, 255, 255, .1 );
	}

	.main-menu li:hover > ul {
		left: 0;
		opacity: 1;
		transition: opacity .2s ease-in-out;
	}

	/* DEEP DOWN */

	.main-menu ul li.menu-item-has-children > a:after {
		background-image: url( ./images/icon_chevron_down_white.svg );
		transform: rotate(270deg);
		transition: transform .2s ease-in-out;
	}

	.main-menu ul li.menu-item-has-children:hover > a:after {
		transform: translateX( .5rem ) rotate( 270deg );
	}

	.main-menu ul li:hover > ul {
		left: 100%;
		top: 0;
	}

	.main-menu ul ul { background: #747F8C; }
	.main-menu ul ul ul { background: #838D98; }
	.main-menu ul ul ul ul { background: #939BA5; }
	.main-menu ul ul ul ul ul { background: #A2A9B2; }
	.main-menu ul ul ul ul ul ul { background: #B2B8BF; }
	
	/* JOIN BUTTON */
	
	.join-button {
		display: block;
	}
	
	/* SEARCH TOGGLE */
	
	.search-toggle svg {
		width: 2.4rem;
	}
	
	/* MOBILE NAV */
	
	.mobile-menu,
	.nav-toggle {
		display: none !important;
	}
	
	
	/* Front Page ------------------------------ */
	
	/* FRONT PAGE HERO */
	
	.startpage-hero .heading {
		width: 85rem;
	}
	
	.startpage-hero .button {
		margin-top: 4rem;
	}
	
	/* AREAS OF ACTIVITY */
	
	.areas-of-activity .puffar {
		display: flex;
	}
	
	.areas-of-activity .puff {
		align-items: flex-end;
		border-radius: 0;
		display: flex;
		flex-direction: column;
		margin: 0 0 0 0;
		padding: 4rem;
		width: 100%;
	}
	
	.areas-of-activity .puff .heading,
	.areas-of-activity .puff p {
		width: 100%;
	}
	
	.areas-of-activity .puff:first-child { border-radius: .5rem 0 0 .5rem; }
	.areas-of-activity .puff:last-child { border-radius: 0 .5rem .5rem 0; }
	
	.areas-of-activity .puff .arrow-link {
		margin: 3rem 0 0;
		position: relative;
			bottom: auto;
			right: auto;
	}
	
	/* BANNER MESSAGE */
	
	.message-banner .container {
		align-items: flex-start;
		display: flex;
		justify-content: flex-start;
	}

	.message-banner .heading {
		margin: .3rem 4rem 0 0;
		flex: 0 0 17.2rem;
	}

	.message-banner p {
		max-width: 61.4rem;
		width: 100%;
	} 
	
	.message-banner.has-link p {
		margin-right: 20.6rem;
	}

	.message-banner .arrow-link {
		margin: 0 0 0 2rem;
		position: absolute;
			right: 0;
			top: 0;
		white-space: nowrap;
	}
	
	
	/* News ---------------------------------- */
	
	/* NEWS ARCHIVE */
	
	.post-preview .preview-content {
		padding: 4rem;
	}

	.post-preview .heading {
		font-size: 3rem;
		margin: 1rem 0 0;
	}

	.post-preview a:hover .heading {
		text-decoration: underline;
	}

	.post-preview p {
		margin-top: 1.8rem;
	}
	
	
	/* Search Results ------------------------ */
	
	.search-intro input[type="search"] {
		font-size: 3.2rem;
		padding: 3.5rem 12rem 3.5rem 0;
	}
	
	.search-intro .search-submit {
		font-size: 1.5rem;
		min-width: 10.5rem;
		top: 4rem;
	}

}


@media ( min-width: 1100px ) {


	/* Sub Page ------------------------ */

	.page-nav + .primary {
		margin: 0 auto 0 5%;
		width: 56%;
	}

	
	/* News ------------------------ */
	
	/* NEWS ARCHIVE */
	
	.blog .primary,
	.archive .primary {
		width: 78%;
	}
	
	
	/* Page Templates ------------------------ */
	
	/* FEDERATIONS PAGE */
	
	.federations-page .primary {
		max-width: none;
		width: 100%;
	}
	
	.federations-list {
		border-top: .1rem solid #E0E2E6;
		padding-top: 4rem;
	}
	
	.federations-list {
		margin-bottom: -4rem;
	}
	
	.federations-list .heading {
		font-size: 2.4rem;
	}


	/* Page Nav ------------------------ */
	
	.mobile-page-nav {
		display: none;
	}
	
	.desktop-page-nav {
		display: block;
	}


}


@media ( min-width: 1200px ) {
	
	
	/* Site Header ------------------------ */
	
	/* MAIN MENU */
	
	.main-menu > li + li {
		margin-left: 1rem;
	}
	
	
	/* Site Footer ------------------------ */
	
	.footer-inner {
		align-items: flex-start;
		display: flex;
		justify-content: space-between;
		padding: 8rem 0;
	}

	.footer-logo {
		margin: 0;
	}
	
	.widgets {
		margin-top: 0;
		width: 75%;
	}
	
	.widget {
		margin-bottom: 0;
	}
	
	
}



.cky-consent-bar .cky-notice-des p,
.cky-preference-body-wrapper .cky-preference-content-wrapper p {
	line-height: 1.4;
    margin-bottom: 15px;
}


.searchwp-form {}
.searchwp-form .searchwp-form-filters {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
}
.searchwp-form .searchwp-form-filters .searchwp-form-filters-filter {
	margin-left: 15px;
	display: flex;
	align-items: center;
	justify-content: center;

	background-color: white;
	/* border: 1px solid black; */
	padding: 10px;
	border-radius: 12px;
}

.searchwp-form .searchwp-form-filters .searchwp-form-filters-filter:has(input:checked) {
	background-color: black !important;
	color: white;
}
.searchwp-form .searchwp-form-filters .searchwp-form-filters-filter input {
	outline: 0 !important;
	margin-top: -5px;
}

.searchwp-form .searchwp-form-filters .searchwp-form-filters-filter:has(input:checked) input {
	animation: pop .25s ease-in-out 1;
    background-color: black !important;
    border-color: transparent;
}