/* -------------------------------------------------------------------------- *
 * Atom - Cookie Consent Preferences Button
 * -------------------------------------------------------------------------- */
.a_btnCookiePreferences {
	display: block;
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	padding: 0.500rem;
	border: none;
	border-radius: 1.500rem;
	outline: none;
	background-color: var(--colorPrimary);
	transition: background 0.25s ease-in-out;
}

	.a_btnCookiePreferences:hover {
		cursor: pointer;
		background-color: var(--colorPrimary-dark);
	}

	.a_btnCookiePreferences ._btnText {
		display:none;
	}

	.a_btnCookiePreferences .material-symbols-rounded {
		display: block;
		color: var(--colorWhite);
		font-size: 1.750rem;
	}

/* -------------------------------------------------------------------------- *
 * Atom - Standard button element
 * -------------------------------------------------------------------------- */
.a_button {
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 0.500rem 1rem;
	border: 0.125rem solid transparent;
	border-radius: 0.250rem;
	outline: none;
	background: var(--colorPrimary);
	font-family: 'Bungee', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1em;
	color: var(--colorWhite);
	text-align: center;
	transition: all 0.25s ease-in-out;
	overflow: hidden;
	white-space: nowrap;
}

	.a_button:hover {
		background-color: var(--colorPrimary-dark);
		cursor: pointer;
	}

	.a_button .material-symbols-rounded {
		margin: -0.5rem 0.500rem -0.31250rem 0;
		vertical-align: middle;
	}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */

/* ----- Secondary colour variant ----- */
.a_button.-colorSecondary {
	border-color: var(--colorSecondary);
	background-color: var(--colorSecondary);
	color: var(--colorOffBlack);
}

/* ----- Danger / Red colour variant ----- */
.a_button.-colorDanger,
.a_button.-colorTertiary {
	border-color: var(--colorTertiary);
	background-color: var(--colorTertiary);
	color: var(--colorWhite);
}
	
/* ----- White variant ----- */
.a_button.-colorGrey {
	border-color:var(--colorGrey);
	background-color:var(--colorGrey);
	color: var(--colorWhite);
}

	.a_button.-colorGrey:hover {
		border-color:var(--colorGrey-dark);
		background-color:var(--colorGrey-dark);
		color: var(--colorWhite);
	}

/* ----- Small ----- */
.a_button.-small {
	padding: 0.750rem 1.500rem;
}


/* ----- Large ----- */
.a_button.-large {
	font-size: 1.250rem;
}

/* ----- Wider ----- */
.a_button.-wider {
	padding-right: 3.500rem;
	padding-left: 3.500rem;
}

/* ----- Widest ----- */
.a_button.-widest {
	box-sizing: border-box;
	width:100%;
}


/* ----- Waiting ----- */
.a_button:disabled {
	cursor: not-allowed;
	background-color: var(--colorOffBlack);
}

.a_button:disabled:hover {
	animation-name: none;
}


/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll-
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls-
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl-
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts-
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml-
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms-
	 * ---------------------------------------- */
	
}
/* -------------------------------------------------------------------------- *
 * Atom - Icon only buttons
 * -------------------------------------------------------------------------- */
.a_buttonIcon {
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0.250rem;
	outline: 0;
	background-color: transparent;
	transition: all 0.25s ease-in-out;
}

	.a_buttonIcon .material-symbols-rounded {
		margin: 0;
		font-size: 2.500rem;
		vertical-align: middle;
	}

	.a_buttonIcon:hover {
		cursor: pointer;
		background-color: var(--colorOffWhite);
	}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Small variant ----- */
.a_buttonIcon.-small .material-symbols-rounded {
	font-size: 1.500rem;
}


/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl- / 8 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts- / 6 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml- / 4 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms- / 2 columns
	 * ---------------------------------------- */
	
}

/* -------------------------------------------------------------------------- *
 * Atom - Link that looks like a button
 * -------------------------------------------------------------------------- */
.a_buttonLink {
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 0.500rem 1rem;
	border: 0.125rem solid transparent;
	border-radius: 0.250rem;
	outline: none;
	background: var(--colorPrimary);
	font-family: 'Bungee', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1em;
	color: var(--colorWhite);
	text-align: center;
	transition: all 0.25s ease-in-out;
	overflow: hidden;
}

	.a_buttonLink:hover {
		background-color: var(--colorPrimary-dark);
		cursor: pointer;
	}

	.a_buttonLink .material-symbols-rounded {
		margin: -0.5rem 0.500rem -0.31250rem 0;
		vertical-align: middle;
	}




/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Ghost variant ----- */
.a_buttonLink.-ghost {
	background-color: transparent;
	border: 0.125rem solid var(--colorPrimary);
	color: var(--colorOffBlack);
}

	.a_buttonLink.-ghost:hover {
		background: transparent;
	}

/* ----- Primary Dark colour variant ----- */
.a_buttonLink.-colorPrimary-dark {
	border-color: var(--colorPrimary-dark);
	background-color: var(--colorPrimary-dark);
	color: var(--colorWhite);
}

/* ----- Ghost + Primary Dark colour variant ----- */
.a_buttonLink.-ghost.-colorPrimary-dark {
	background-color: transparent;
	border-color: var(--colorPrimary-dark);
	color: var(--colorPrimary-dark);
}

/* ----- Secondary colour variant ----- */
.a_buttonLink.-colorSecondary {
	border-color: var(--colorSecondary);
	background-color: var(--colorSecondary);
	color: var(--colorOffBlack);
}

/* ----- Ghost + Secondary colour variant ----- */
.a_buttonLink.-ghost.-colorSecondary {
	background-color: transparent;
	border-color: var(--colorSecondary);
	color: var(--colorSecondary);
}

/* ----- White variant ----- */
.a_buttonLink.-colorWhite {
	border-color:var(--colorWhite);
	background-color:var(--colorWhite);
	color: var(--colorWhite);
}

/* ----- Ghost + White variant ----- */
.a_buttonLink.-ghost.-colorWhite {
	background-color:transparent;
	border-color:var(--colorWhite);
	color:var(--colorWhite);
}

/* ----- Small ----- */
.a_buttonLink.-small {
	padding: 0.750rem 1.500rem;
}

/* ----- Large ----- */
.a_buttonLink.-large {
	font-size: 1.250rem;
}

/* ----- Wider ----- */
.a_buttonLink.-wider {
	padding-right: 3.500rem;
	padding-left: 3.500rem;
}

/* ----- Widest ----- */
.a_buttonLink.-widest {
	box-sizing: border-box;
	width:100%;
}

/* ----- Nav Link -----*/
.a_buttonLink._navLink {
		display: block;
		padding: 0.875rem 1.500rem 0.875rem 1.500rem;
		border: none;
		border-radius: 0;
		background: transparent;
		border-left: transparent solid 0.250rem;
		color: var(--colorWhite);
		font-family: 'Bungee', sans-serif;
		font-weight: 400;
		text-align: left;
	}
	
	.a_buttonLink._navLink:hover {
		background-color: var(--colorGrey-dark);
	}


/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll-
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls-
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl-
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts-
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml-
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms-
	 * ---------------------------------------- */
	
}
/* -------------------------------------------------------------------------- *
 * Atom - Context Menu Item
 * -------------------------------------------------------------------------- */
.a_contextMenuItem ._contextButton {
	width: 100%;
	margin: 0;
	padding: 0.750rem 1rem 0.750rem 0.500rem;
	border: 0;
	outline: none;
	color: var(--colorWhite);
	text-align: left;
	font-weight: 400;
	line-height: 1em;
	transition: all 0.25s ease-in-out;
	overflow: hidden;
	white-space: nowrap;
	background: transparent;
}

	.a_contextMenuItem ._contextButton .material-symbols-rounded {
		margin: -0.5rem 0.500rem -0.31250rem 0;
		vertical-align: middle;
		transition: all 0.25s ease-in-out;
	}

	.a_contextMenuItem ._contextButton:hover {
		background-color: var(--colorGrey-dark);
		cursor: pointer;
	}
/* -------------------------------------------------------------------------- *
 * Atom - Checkbox input
 * -------------------------------------------------------------------------- */
.a_inputCheckbox {
	display:block;
	margin: 0 0 1rem 0;
	padding:0;
	user-select: none;
	font-weight: 400;
	text-transform: none;
}

	.a_inputCheckbox ._checkbox {
		display: inline-block;
		width: 1.125rem;
		height: 1.125rem;
		border-radius:0.250rem;
		background-color: var(--colorGrey-light);
		text-align: center;
	}

		.a_inputCheckbox ._checkbox svg {
			position: relative;
			top: -0.0625rem;
			fill: var(--colorGrey-light);
		}

	.a_inputCheckbox ._input {
		width: 0;
		height: 0;
		opacity: 0;
	}

		.a_inputCheckbox ._input:checked + ._checkbox {
			background-color: var(--colorPrimary);
		}

		.a_inputCheckbox ._input:checked + ._checkbox svg {
			fill: var(--colorWhite);
		}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */

.a_inputCheckbox.-bordered {
	padding: 0.625rem 0.750rem;
	border: 0.0625rem solid var(--colorGrey-light);
	border-radius: 0.250rem;
}
/* -------------------------------------------------------------------------- *
 * Atom - Search Input
 * -------------------------------------------------------------------------- */
.a_inputSearch {
	position:relative;
}

	.a_inputSearch input[type=search] {
		padding: 0.500rem 3.500rem 0.500rem 0.750rem;
	}

	.a_inputSearch ._searchSubmit {
		position: absolute;
		bottom: 0;
		right: 0;
		opacity:0.5;
		padding: 0.250rem 0.500rem 0.125rem 0.500rem;
		border: none;
		outline: none;
		background-color: transparent;
	}

		.a_inputSearch ._searchSubmit:hover {
			cursor: pointer;
		}

	.a_inputSearch ._searchSubmit .material-symbols-rounded {
		font-size: 1.750rem;
		color: var(--colorOffBlack);
	}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Inline variant ----- */
.a_inputSearch.-inline {
	display: inline-block;
}

	.a_inputSearch.-inline label {
		margin-right: 0.500rem;
	}

	.a_inputSearch.-inline input[type=search] {
		width: auto;
	}
/* -------------------------------------------------------------------------- *
 * Atom - Select dropdown input
 * -------------------------------------------------------------------------- */
.a_inputSelect {
	position: relative;	
}

	.a_inputSelect select {
		position: relative;
		z-index: 2;
		display: inline-block;
		box-sizing: border-box;
		width: 100%;
		padding: 0.625rem 2.500rem 0.625rem 0.750rem;
		border-radius: 0.250rem;
		border: 0.0625rem solid var(--colorGrey-light);
		outline: none;
		background: transparent;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		line-height: 1.250rem;
	}

	.a_inputSelect select::-ms-expand {
		display: none;
	}

	.a_inputSelect .material-symbols-rounded {
		position: absolute;
		right: 0;
		bottom: 0;
		z-index: 1;
		font-size: 2.500rem;
		color: var(--colorOffBlack);
		transition: all 0.25s ease-in-out;
	}

		.a_inputSelect select:hover {
			cursor: pointer;
		}
		
/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Filter ----- */
.a_inputSelect.-filter {

}

.a_inputSelect.-filter label {
	display: inline-block;
	padding: 0 0.500rem;
}

.a_inputSelect.-filter select {
	display: inline-block;
	width: auto;
}
/* -------------------------------------------------------------------------- *
 * Atom - Nav Item
 * -------------------------------------------------------------------------- */
	.a_navItem {
		display: block;
		padding: 0.875rem 1.500rem 0.875rem 1.500rem;
		border: none;
		border-left: transparent solid 0.250rem;
		color: var(--colorWhite);
		font-family: 'Bungee', sans-serif;
		transition: all 0.25s ease-in-out;
	}

		.a_navItem:hover {
			background-color: var(--colorGrey-dark);
		}

			.a_navItem .material-symbols-rounded {
				vertical-align: middle;
				margin: -0.250rem 0.50rem 0 0;
			}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */

/* ----- Active ----- */
.a_navItem.-active {
	border: none;
	border-left: var(--colorPrimary) solid 0.250rem;
	background-color: var(--colorGrey-dark);
}



/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl- / 8 columns
	 * ---------------------------------------- */

	#siteTopbar ul.m_navList li .a_navItem {
		font-size: 1.750rem;
	}

	#siteTopbar ul.m_navList li .a_navItem.-highlight {
		color: var(--colorWhite);
		padding: 0;
		border: none;
	}

	#siteTopbar ul.m_navList li .a_navItem .material-symbols-rounded {
		display: inline-block;
		float: right;

	}
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts- / 6 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml- / 4 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms- / 2 columns
	 * ---------------------------------------- */
	
}
/* -------------------------------------------------------------------------- *
 * Molecule - Context Menu
 * -------------------------------------------------------------------------- */
.m_contextMenu {

}

	.m_contextMenu ._contextMenuFlyout {
		position: absolute;
		top: 0.250rem;
		display: block;
		width: 16rem;
		filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.5));
		transition: all 0.25s ease-in-out;
	
		right: 1.500rem;
		height: 0;
		opacity: 0;
		overflow: hidden;
	}

		.m_contextMenu ._contextMenuFlyout ._contextMenuList {
			position: relative;
			z-index: 2;
			display: block;
			width: 100%;
			margin: 0;
			padding: 0.125rem 0;
			background-color: var(--colorGrey);
			list-style: none;
		}

		.m_contextMenu ._contextMenuFlyout.-active {
			right: 2.500rem;
			height: auto;
			opacity: 1;
			overflow: visible;
		}

		.m_contextMenu ._contextMenuFlyout ._contextMenuPointer {
			position: absolute;
			top: 0.750rem;
			right: -0.375rem;
			z-index: 1;
			width: 0.8750rem;
			height: 0.8750rem;
			transform: rotate(45deg);
			background-color: var(--colorGrey);
		}
/* -------------------------------------------------------------------------- *
 * Molecule - Danger Zone Panel
 * -------------------------------------------------------------------------- */
.m_dangerZone {
	box-sizing: border-box;
	padding: 1.750rem 1.250rem;
	border: 0.125rem solid var(--colorTertiary);
	border-radius: 0.250rem;
}

	.m_dangerZone h3 {
		margin-bottom: 1.500rem;
	}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Example variant ----- */



/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl- / 8 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts- / 6 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml- / 4 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms- / 2 columns
	 * ---------------------------------------- */
	
}

/* -------------------------------------------------------------------------- *
 * Atom - Form Select dropdown
 * -------------------------------------------------------------------------- */
.a_inputSelect {
	position: relative;	
}

	.a_inputSelect select {
		position: relative;
		z-index: 2;
		display: inline-block;
		box-sizing: border-box;
		width: 100%;
		padding: 0.750rem 2.500rem 0.750rem 1.500rem;
		border-radius: 1.500rem;
		border: 0.125rem solid var(--colorGrey);
		outline: none;
		background: transparent;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}

	.a_inputSelect select::-ms-expand {
		display: none;
	}

	.a_inputSelect .material-symbols-rounded {
		position: absolute;
		right: 0.1875rem;
		bottom: 0.1875rem;
		z-index: 1;
		font-size: 2.500rem;
		color: var(--colorOffBlack);
		transition: all 0.25s ease-in-out;
	}

		.a_inputSelect select:hover {
			cursor: pointer;
		}
/* -------------------------------------------------------------------------- *
 * Atom / Molecule / Organism / View - Name
 * -------------------------------------------------------------------------- */
.m_navPrimary {
	width: 100%;
}

	.m_navPrimary ._navList {
		list-style: none;
		margin: 0;
		padding: 6.500rem 0 0 0;
	}

		.m_navPrimary ._navList li {
			display: block;
			width: 100%;
		}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Example variant ----- */



/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl- / 8 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts- / 6 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml- / 4 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms- / 2 columns
	 * ---------------------------------------- */
	
}
/* -------------------------------------------------------------------------- *
 * Molecule - Password Validation
 * -------------------------------------------------------------------------- */
.m_passwordValidation {
	margin: 0;
	padding: 0;
	list-style: none;
}
	
	.m_passwordValidation li {
		margin: 0.250rem 0;
	}

	.m_passwordValidation .material-symbols-rounded {
		vertical-align: middle;
	}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
.m_passwordValidation li ._iconValid {
		display: none;
	}

.m_passwordValidation li.-invalid ._iconInvalid {
		display: inline-block;
	}
.m_passwordValidation li.-invalid ._iconValid {
		display: none;
	}

.m_passwordValidation li.-valid ._iconInvalid {
		display: none;
	}

.m_passwordValidation li.-valid ._iconValid {
		display: inline-block;
	}
/* -------------------------------------------------------------------------- *
 * Molecule - Tile Footer
 * -------------------------------------------------------------------------- */
.m_tileFooter {
	padding-top: 1rem;
}
	.m_tileFooter ._footerNote {
		margin-bottom: 0;
		color: var(--colorGrey);
		font-style: italic;
		text-align: center;
	}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Example variant ----- */



/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl- / 8 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts- / 6 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml- / 4 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms- / 2 columns
	 * ---------------------------------------- */
	
}
/* -------------------------------------------------------------------------- *
 * Molecule - Tile Header
 * -------------------------------------------------------------------------- */
.m_tileHeader {
	padding-bottom: 1rem;
}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Example variant ----- */



/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl- / 8 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts- / 6 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml- / 4 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms- / 2 columns
	 * ---------------------------------------- */
	
}
/* -------------------------------------------------------------------------- *
 * Molecule - Timeline
 * -------------------------------------------------------------------------- */
.m_timeline {
	width: 100%;
	padding: 1rem 0 2rem 0;
	border-top: 0.0625rem solid var(--colorGrey-light);
}

	.m_timeline ._timeline {
		display: flex;
		justify-content: space-between;
		margin: 2rem 0 0 0;
		padding: 0 0 3rem 0;
		border-top: 0.125rem solid var(--colorGrey);
		list-style:none;
	}

		.m_timeline ._timeline ::deep li {
			position:relative;
		}

		.m_timeline ._timeline ::deep ._point {
			position:relative;
			top: -1rem;
			display:block;
			width: 1rem;
			height: 1rem;
			border: 0.500rem solid var(--colorWhite);
			border-radius: 50%;
			background-color: var(--colorGrey-light);
		}

		.m_timeline ._timeline ::deep ._pointLabel {
			display: none;
			position: absolute;
			top: 1.500rem;
			white-space: nowrap;
		}

			.m_timeline ._timeline ::deep li:first-of-type ._point {
				background-color: var(--colorGrey);
			}

			.m_timeline ._timeline ::deep li:first-of-type ._pointLabel {
				display: block;
				padding-left: 0.500rem;
				text-align: left;	
			}

			.m_timeline ._timeline ::deep li:last-of-type ._point {
				background-color: var(--colorGrey);
			}

			.m_timeline ._timeline ::deep li:last-of-type ._pointLabel {
				display: block;
				right: 0;
				padding-right: 0.500rem;
				text-align: right;	
			}

			.m_timeline ._timeline ::deep li.-active ._pointLabel {
				display: block;
				text-align: center;	
			}

			.m_timeline ._timeline ::deep li.-active ._point {
				background-color: var(--colorPrimary);
			}
/* -------------------------------------------------------------------------- *
 * Atom / Molecule / Organism / o_testimonial
 * -------------------------------------------------------------------------- */

.o_testimonial blockquote
{
	border-left:none;
}
/* -------------------------------------------------------------------------- *
 * Organism - Site Bottom Bar
 * -------------------------------------------------------------------------- */
.o_siteBottomBar {
	width:100%;
	color: var(--colorGrey)
}

	.o_siteBottomBar ._smallPrint a {
		color: var(--colorGrey);
		border-bottom-color: var(--colorGrey);
	}

	

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
.o_siteBottomBar.txt-white {
	color: var(--colorWhite);
}

	.o_siteBottomBar.txt-white ._smallPrint a {
		color: var(--colorGrey-light);
		border-bottom-color: var(--colorGrey-light);
	}

	
/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl- / 8 columns
	 * ---------------------------------------- */
	.o_siteBottomBar .siteBottomNav ul li {
		width: 50%;
	}
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts- / 6 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml- / 4 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms- / 2 columns
	 * ---------------------------------------- */
	.o_siteBottomBar .siteBottomNav ul li {
		width: 100%;
		text-align: center;
	}
}
/* -------------------------------------------------------------------------- *
 * Atom / Molecule / Organism / View - Name
 * -------------------------------------------------------------------------- */
.o_siteSideBar {
	display: flex;
	flex-wrap: wrap;
	position: fixed;
	top: 0;
	left: 0;
	box-sizing: border-box;
	height: 100%;
	width: 16.250rem;
	background-color: var(--colorGrey);
	overflow: auto;
}

	.o_siteSideBar footer {
		align-self: flex-end;
		width: 100%;
	}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Example variant ----- */



/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl- / 8 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts- / 6 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml- / 4 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms- / 2 columns
	 * ---------------------------------------- */
	
}
/* -------------------------------------------------------------------------- *
 * Atom / Molecule / Organism / o_testimonial
 * -------------------------------------------------------------------------- */

.o_testimonial blockquote
{
	border-left:none;
}
/* -------------------------------------------------------------------------- *
 * Organism - Text and Image
 * -------------------------------------------------------------------------- */
.o_textAndImage {
	
}

	.o_textAndImage ._image {
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
		border-radius: 1rem;
	}

/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl- / 8 columns
	 * ---------------------------------------- */
	.o_textAndImage ._image {
		height: 0;
		padding-top: 50%;
	}
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts- / 6 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml- / 4 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms- / 2 columns
	 * ---------------------------------------- */
	
}
/* -------------------------------------------------------------------------- *
 * Atom / Molecule / Organism / View - Name
 * -------------------------------------------------------------------------- */
.o_tileDashboard {

}

	.o_tileDashboard ._contentInner {
		padding: 1rem 2rem;
		border-radius: 0.500rem;
		background-color: var(--colorWhite);
	}

	.o_tileDashboard ._contentOuter {
		padding-top: 1rem;
		text-align: center;
	}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Example variant ----- */



/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl- / 8 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts- / 6 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml- / 4 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms- / 2 columns
	 * ---------------------------------------- */
	
}
/* -------------------------------------------------------------------------- *
 * Atom / Molecule / Organism / View - Name
 * -------------------------------------------------------------------------- */
.o_tileIdp {
	padding: 2rem;
	border-radius: 0.250rem;
	background-color: var(--colorWhite);
}
/* -------------------------------------------------------------------------- *
 * Organism - Alert Modal
 * -------------------------------------------------------------------------- */
.o_viewAlert {
	position: fixed;
	top: 0;
	right: -100vw;
	z-index: 199;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	transition: all 0.25s ease-in-out;
}

	.o_viewAlert.-active {
		right: 0;
	}

	.o_viewAlert ._overlayBg {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 100;
		width: 0;
		height: 100vh;
		opacity: 0;
		transition: all 0.25s ease-in-out;
	}

	.o_viewAlert.-active ._overlayBg {
		width: 100vw;
		background-color: var(--colorBlack);
		opacity: 0.7;
	}
	
	.o_viewAlert ._alertPanel {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		position: relative;
		z-index: 201;
		box-sizing:border-box;
		width: 34rem;
		height: auto;
		padding: 2rem 2rem 1rem 2rem;
		border-radius: 0.500rem;
		background-color: var(--colorWhite);
		transition: all 0.25s ease-in-out;
		overflow: auto;
	}

		.o_viewAlert.-active ._alertPanel {
			right: 0;
		}

	.o_viewAlert ._alertPanel ._contentInner {
		flex-grow: 1;
		text-align: center;
	}

	.o_viewAlert ._alertHdr {
		position: relative;
		text-align: center;
	}

		.o_viewAlert ._alertHdr h2 {
			margin: 0.250rem 0;
		}

	.o_viewAlert ._alertFtr {
		padding-top: 1rem;
		border-top: 0.0625rem solid var(--colorGrey-light);
	}



/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Example variant ----- */



/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl- / 8 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts- / 6 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml- / 4 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms- / 2 columns
	 * ---------------------------------------- */
	
}
/* -------------------------------------------------------------------------- *
 * Organism - Side Drawer
 * -------------------------------------------------------------------------- */
.o_viewDrawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 99;
}

	.o_viewDrawer ._overlayBg {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 100;
		width: 0;
		height: 100vh;
		opacity: 0;
		transition: all 0.25s ease-in-out;
	}

	.o_viewDrawer.-active ._overlayBg {
		width: 100vw;
		background-color: var(--colorBlack);
		opacity: 0.7;
	}

	.o_viewDrawer ._drawerPanel {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		position: fixed;
		top: 0;
		right: -52rem;
		z-index: 101;
		box-sizing:border-box;
		width: 52rem;
		height: 100vh;
		padding: 2rem;
		background-color: var(--colorWhite);
		transition: all 0.25s ease-in-out;
		overflow: auto;
	}

		.o_viewDrawer.-active ._drawerPanel {
			right: 0;
		}

	.o_viewDrawer ._drawerPanel ._contentInner {
		flex-grow: 1;
	}

	.o_viewDrawer ._drawerHdr {
		position: relative;
		padding-right: 3rem;
		padding-bottom: 3rem;
	}

		.o_viewDrawer ._drawerHdr ::deep .a_buttonIcon {
			position:absolute;
			top: 0;
			right: 0;
		}

		.o_viewDrawer ._drawerHdr h2 {
			margin: 0.250rem 0;
		}

	.o_viewDrawer ._drawerFtr {
		padding-top: 1rem;
		border-top: 0.0625rem solid var(--colorGrey-light);
	}

/* -------------------------------------------------------------------------- *
 * Default styles
 * -------------------------------------------------------------------------- */
.o_viewTopBar {
	
}

	.o_viewTopBar h1 {
		display: inline-block;
	}

	.o_viewTopBar ::deep #viewBackButton {
		display: inline-block;
		margin-right:0.500rem;
	}

		.o_viewTopBar ::deep #viewBackButton .material-symbols-rounded {
			position: relative;
			top: 0.375rem;
			vertical-align: baseline;
			font-size: 3rem;
		}

/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls- / 12 columns
	 * ---------------------------------------- */
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl- / 8 columns
	 * ---------------------------------------- */

	.o_siteTopBar.tl-navOpen {
		background-color: var(--colorOffBlack);
	}		
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts- / 6 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml- / 4 columns
	 * ---------------------------------------- */

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms- / 2 columns
	 * ---------------------------------------- */
	
}