/* -------------------------------------------------------------------------- *
 * Atom - A text banner
 * -------------------------------------------------------------------------- */
.a_banner {
	display: inline-block;
	padding: 0.500rem 1rem;
	border-radius: 1.500rem;
}

/* ----- Icon ----- */
.a_banner .material-symbols-rounded {
	position: relative;
	bottom: -0.375rem;
	margin: -0.500rem 0.250rem 0 0;
}



/* -------------------------------------------------------------------------- *
 * 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 - Blockquote
 * -------------------------------------------------------------------------- */
.a_blockquote {
	margin: 0;
	padding: 0;
	opacity: 0.75;
	filter: blur(1rem);
	transition: all 0.5s ease-in-out 0s;
}

	.a_blockquote blockquote {
		position: relative;
		margin: 0;
		padding: 0 2rem;
		border: none;
		line-height: 1em;
		font-style: normal;
	}
	
		.a_blockquote blockquote  p {
			font-size: 0;
			transition: all 0.25s ease-in-out 0.5s;
		}

		.a_blockquote figcaption.author {
			display: block;
			padding-top: 0;
			font-size: 0;
			font-style: normal;
			font-weight: 800;
			transition: all 0.25s ease-in-out 0.5s;
		}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Active variant ----- */
.a_blockquote.-active {
	opacity: 1;
	filter: blur(0rem);
	transition: all 0.5s ease-in-out 0.75s;
}
	.a_blockquote.-active blockquote  p {
		font-size: 1.500rem;
		transition: all 0.25s ease-in-out 0.5s;
	}
	.a_blockquote.-active  figcaption.author {
		padding-top: 1.500rem;
		font-size: 1.250rem;
		transition: all 0.25s ease-in-out 0.5s;
	}
/* -------------------------------------------------------------------------- *
 * Molecule - Blog Post Meta
 * -------------------------------------------------------------------------- */
.a_blogPostMeta {
	
}

	.a_blogPostMeta a {
		color: var(--colorWhite);
		text-decoration: none;
	}

/* -------------------------------------------------------------------------- *
 * Atom - Standard button element
 * -------------------------------------------------------------------------- */
.a_button, .a_button:visited {
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 1rem 3rem;
	outline: none;
	background-image: linear-gradient(var(--colorPrimary-light),var(--colorPrimary));
	font-size: 1rem;
	font-weight: 700;
	line-height: 1em;
	color: var(--colorWhite);
	text-align: center;
	vertical-align: middle;
	transition: all 0.25s ease-in-out;
	overflow: hidden;
}

	.a_button:hover {
		background-image: linear-gradient(var(--colorPrimary),var(--colorPrimary-light));
		cursor: pointer;
	}

	.a_button ._content {
		margin: 0 0.500rem;
	}

	.a_button .material-symbols-rounded {
		margin: -0.500rem 0 -0.31250rem 0;
		vertical-align: middle;
	}

	.a_button .material-symbols-rounded.-after {
		margin: -0.5rem 0 -0.31250rem 0;
		vertical-align: middle;
	}

	/* ----- Dark Mode Override ----- */
	.-themeDark .a_button {
		color: var(--colorBlack);
	}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Ghost variant ----- */
.a_button.-ghost {
	background-color: transparent;
	border: 0.125rem solid var(--colorPrimary);
	color: var(--colorOffBlack);
}

	.a_button.-ghost:hover {
		background-color: var(--colorPrimary-dark);
		border-color: var(--colorPrimary-dark);
		color: var(--colorWhite);
	}

/* ----- Secondary colour variant ----- */
.a_button.-colorSecondary {
	border-color: var(--colorSecondary);
	background-color: var(--colorSecondary);
	color: var(--colorOffBlack);
}

/* ----- Ghost + Secondary colour variant ----- */
.a_button.-ghost.-colorSecondary {
	background-color: transparent;
	border-color: var(--colorSecondary);
	color: var(--colorSecondary);
}
	
/* ----- White variant ----- */
.a_button.-colorWhite {
	border-color:none;
	background-color:var(--colorWhite);
	color: var(--colorPrimary);
	background-image:none;
}
	.a_button.-colorWhite:hover {
		background-color: var(--colorPrimary);
		color: var(--colorWhite);
	}
	/* ----- Ghost + White variant ----- */
	.a_button.-ghost.-colorWhite {
		background-color: transparent;
		border-color: var(--colorWhite);
		color: var(--colorWhite);
	}

/* ----- Tiny ----- */
.a_button.-tiny,
.a_button.-tiny:visited {
	padding: 0.3125rem 1.00rem 0.250rem 1rem;
	border-width: 0.0625rem;
	font-size: 0.750rem;
	text-transform: uppercase;
	color: var(--colorWhite);
}

/* ----- Small ----- */
.a_button.-small {
	padding: 0.3126rem 0.500rem;
	font-size: 0.750rem;
	font-weight: 600;
}

/* ----- 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;
}

/* ----- Context Menu Button ----- */
.-contextMenuBtn {
	height: 1.750rem;
	padding: 0 0.125rem;
	border: 0;
	border-radius: 0.250rem;
	outline: 0;
	background-color: transparent;
	transition: all 0.25s ease-in-out;
}
	
	/* ----- Hover ----- */
	.-contextMenuBtn:hover {
		cursor: pointer;
		background-color: var(--colorOffWhite);
	}

	.-contextMenuBtn .material-symbols-rounded {
		position: relative;
		bottom: -0.125rem;
		font-size: 1.500rem;
		color: var(--colorOffBlack);
	}


/* -------------------------------------------------------------------------- *
 * Pagiantion
 * -------------------------------------------------------------------------- */
.a_button.-pagination,
.a_button.-pagination:visited {
	padding: 0.750rem 0.500rem;
	min-width: 1rem;
	margin: 0 0.250rem;
	white-space: nowrap;
	color: var(--colorWhite);
}

	.a_button.-pagination.-prev .material-symbols-rounded {
		
	}

	.a_button.-pagination.-next .material-symbols-rounded {
		
	}

	.a_button.-pagination.-active {
		background-color: var(--colorSecondary-dark);
		border-color: var(--colorSecondary-dark);
		color: var(--colorOffBlack);
		animation-name: none;
		cursor: not-allowed;
	}

	.a_button.-pagination.-disabled {
		background-color: var(--colorGrey);
		border-color: var(--colorGrey);
		animation-name: none;
		cursor: not-allowed;
	}



/* -------------------------------------------------------------------------- *
 * 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 - Burger Button
 * -------------------------------------------------------------------------- */
.a_buttonBurger {
	position: relative;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: none;
	border-radius: 1.500rem;
	background: var(--colorSecondary);
	font-size:1rem;
	transition: all 0.25s ease-in-out;
}

	.a_buttonBurger ._line {
		position: absolute;
		top: calc(50% - 0.1875rem);
		left: calc(50% - 0.750rem);
		width: 1.500rem;
		height: 0.3125rem;
		border-radius: 0.1875rem;
		background-color: var(--colorWhite);
		transform-origin: center;
		transition: all 0.25s ease-in-out;
	}

	.a_buttonBurger ._lineOne {
		top: calc(50% - 0.8125rem);
	}

	.a_buttonBurger ._lineTwo {
		opacity: 1;
	}

	.a_buttonBurger ._lineThree {
		top: calc(50% + 0.4375rem);
	}

	.a_buttonBurger:hover {
		cursor: pointer;
	}

	.a_buttonBurger ._btnContent {
		font-size: 0;
		opacity: 0;
	}


/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Active ----- */
.a_buttonBurger.-active {
	
}
	.a_buttonBurger.-active ._lineOne
	{
		top: calc(50% - 0.125em);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.a_buttonBurger.-active ._lineTwo
	{
		opacity: 0;
	}

	.a_buttonBurger.-active ._lineThree
	{
		top: calc(50% - 0.125em);
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	.a_buttonBurger.-active:hover {
		
	}


/* ----- Admin Sidebar Toggle ----- */
.a_buttonBurger._adminSidebarToggle {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 100;
}

/* -------------------------------------------------------------------------- *
 * 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 - Website Carbon Badge
 * -------------------------------------------------------------------------- */
.a_websiteCarbonBadge {
	position: relative;
	display: inline-block;
	padding: 0 0 1rem 1rem;
	overflow: hidden;
}

	/* ------ Icon ------ */
	.a_websiteCarbonBadge ._ecoIcon {
		position: absolute;
		top: 0;
		left: 0;
		width: 1.750rem;
		height: 1.750rem;
		padding: 0.500rem;
		border: 0.1875rem solid var(--colorPrimary-dark);
		border-radius: 50%;
		background-color: var(--colorOffBlack-dark);
	}

		.a_websiteCarbonBadge ._ecoIcon svg {
			width: 1.750rem;
			height: 1.750rem;
			fill: var(--colorWhite);
		}

	/* ------ Inner Content ------ */
	.a_websiteCarbonBadge ._innerContent {
		padding-left: 1.5rem;
		border: 0.1875rem solid var(--colorPrimary-dark);
		border-radius: 0.750rem 0.8750rem 0.8750rem 0;
		font-size: 0.875rem;
	}

		.a_websiteCarbonBadge ._innerContent sub {

		}

	.a_websiteCarbonBadge ._innerContent ._carbonPerView {
		display: inline-block;
		padding: 0.250rem 0.500rem 0 0.750rem;
	}

	.a_websiteCarbonBadge ._innerContent ._carbonLink {
		display: inline-block;
		padding: 0.250rem 0.500rem;
		border: none;
		border-radius: 0 0.50rem 0.50rem 0;
		color: var(--colorWhite);
		background-color: var(--colorPrimary-dark);
		font-weight: 700;
	}

	/* ------ Outter Content ------ */
	.a_websiteCarbonBadge ._outterContent {

	}

	.a_websiteCarbonBadge ._outterContent ._carbonComparison {
		display: inline-block;
		margin-top: 0.250rem;
		padding-left: 0.750rem;
		font-size: 0.875rem;
	}


/* -------------------------------------------------------------------------- *
 * Atom - Contact Detail Link
 * -------------------------------------------------------------------------- */
.a_contactDetail {
	display: flex;
	align-items: center;
	padding: 1rem 0;
	border: none;
	color: var(--colorWhite);
	font-size: 1.375rem;
	font-weight: 700;
	transition: all 0.25s ease-in-out;
	
}

	.a_contactDetail:visited {
		color: var(--colorWhite);
	}

	.a_contactDetail:hover {
		border: none;
		color: var(--colorSecondary);
	}

	.a_contactDetail .material-symbols-rounded {
		font-size: 2rem;
		margin-right: 0.750rem;
	}

	.a_contactDetail svg {
		width: 2rem;
		height: 2rem;
		margin-right: 0.750rem;
	}
/* -------------------------------------------------------------------------- *
 * 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(--colorPrimary-dark);
		cursor: pointer;
	}
﻿/* -------------------------------------------------------------------------- *
 * Atom - Image in a circle
 * -------------------------------------------------------------------------- */
.a_imageInCircle {
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
}
/* ----- 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 - Checkbox input
 * -------------------------------------------------------------------------- */
.a_inputCheckbox {
	user-select: none;
	padding: 0 0 0.250rem 0;
}

	.a_inputCheckbox ._checkbox {
		position: relative;
		top: 0.250rem;
		display: inline-block;
		width: 1.125rem;
		height: 1.125rem;
		border-radius: 0.250rem;
		border: 0.125rem solid var(--colorGrey);
		background-color: var(--colorWhite);
		text-align: center;
		user-select: none;
	}

		.a_inputCheckbox ._checkbox svg {
			position: relative;
			width: 1.125rem;
			height: 1.125rem;
			fill: var(--colorWhite);
		}

	.a_inputCheckbox ._input {
		width: 0;
		height: 0;
		margin: 0;
		padding: 0;
		opacity: 0;
	}

		.a_inputCheckbox ._input:checked + ._checkbox {
			border-color: var(--colorPrimary);
			background-color: var(--colorPrimary);
		}

		.a_inputCheckbox ._input:checked + ._checkbox svg {
		}

/* ----- Colour variants ----- */
.-bgPrimary .a_inputCheckbox ._checkbox {
	border-color: var(--colorWhite);
}

	.-bgPrimary .a_inputCheckbox ._input:checked + ._checkbox {
		border-color: var(--colorSecondary);
		background-color: var(--colorSecondary);
	}

		.-bgPrimary .a_inputCheckbox ._input:checked + ._checkbox svg {
			fill: var(--colorOffBlack);
		}



/* -------------------------------------------------------------------------- *
 * 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 - Radio Input + Label
 * -------------------------------------------------------------------------- */

.a_inputRadio {
	display: block;
	margin: 0 0 0.3125rem 0;
}

	.a_inputRadio label {
		padding:0;
	}

	.a_inputRadio:hover {
		cursor: pointer;
	}
	.a_inputRadio ._radioButton {
		display: inline-block;
		position: relative;
		top: 0.125em;
		box-sizing: border-box;
		width: 1rem;
		height: 1rem;
		margin-right: 0.250rem;
		border: 0.1875em solid var(--colorWhite);
		border-radius: 0.5em;
		background-color: var(--colorWhite);
		box-shadow: 0 0 0 0.0625em var(--colorGrey);
		-webkit-box-shadow: 0 0 0 0.0625em var(--colorGrey);
		-moz-box-shadow: 0 0 0 0.0625em var(--colorGrey);
	}

	.a_inputRadio input {
		display: none;
	}

	.a_inputRadio input:checked ~ ._radioButton {
		background-color: var(--colorPrimary);
	}

/* ----- Colour Variants ----- */
.-bgPrimary .a_inputRadio ._radioButton {
	box-shadow: 0 0 0 0.0625em var(--colorWhite);
	-webkit-box-shadow: 0 0 0 0.0625em var(--colorWhite);
	-moz-box-shadow: 0 0 0 0.0625em var(--colorWhite);
}

	.-bgPrimary .a_inputRadio input:checked ~ ._radioButton {
		background-color: var(--colorOffBlack);
	}
/* -------------------------------------------------------------------------- *
 * 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.500rem 2.500rem 0.500rem 1.500rem;
		border-radius: 0.500rem;
		border: 0.125rem solid var(--colorGrey);
		outline: none;
		background-color: transparent;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}

	.a_inputSelect select::-ms-expand {
		display: none;
	}

	.a_inputSelect ._select {
		position: relative;
		z-index: 1;
		border-radius: 0.500rem;
		background-color: var(--colorWhite);
	}

	.a_inputSelect .material-symbols-rounded {
		position: absolute;
		right: 0.125rem;
		top: -0.125rem;
		z-index: 1;
		font-size: 2.500rem;
		color: var(--colorOffBlack);
		transition: all 0.25s ease-in-out;
	}

		.a_inputSelect select:hover {
			cursor: pointer;
		}

/* ----- Colour Variants ----- */
.-bgPrimary .a_inputSelect select {
	border-color: var(--colorWhite);
}
/* -------------------------------------------------------------------------- *
 * Atom - Checkbox Toggle
 * -------------------------------------------------------------------------- */
.a_inputToggle {
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 0.500rem;
	padding: 0;
	user-select: none;
}

	.a_inputToggle ._label {
		display: inline-block;
		position: relative;
		bottom: -0.0625rem;
	}

	.a_inputToggle ._toggle {
		display: inline-block;
	}

	.a_inputToggle ._toggleRail {
		display: grid;
		grid-template-columns: 1fr 1fr;
		position: relative;
		align-self: flex-end;
		width: auto;
		height: 1.750rem;
		margin: 0;
		border-radius: 1rem;
		background-color: var(--colorGrey);
		color: var(--colorOffBlack);
	}

	.a_inputToggle ._toggleSlider {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		width: 50%;
		height: 1.750rem;
		border-radius: 0.875rem;
		background-color: var(--colorPrimary);
		transition: all 0.25s ease-in-out;
	}

		.a_inputToggle:hover ._toggleSlider {
			background-color: var(--colorPrimary-light)
		}

	.a_inputToggle input {
		display: block;
		position: absolute;
		z-index: 3;
		width: 3rem;
		height: 1.750rem;
		margin: 0;
		opacity: 0;
	}

		.a_inputToggle input:hover {
			cursor:pointer;
		}

		.a_inputToggle input:checked ~ ._toggleSlider {
			left: 50%;
		}

	.a_inputToggle ._toggleFalse {
		position: relative;
		z-index: 3;
		grid-column-start: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 0.750rem;
		font-size: 0.875rem;
		transition: all 0.25s ease-in-out;
	}

	.a_inputToggle ._toggleTrue {
		position: relative;
		z-index: 3;
		grid-column-start: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 0.750rem;
		font-size: 0.875rem;
		transition: all 0.25s ease-in-out;
	}

		.a_inputToggle input:not(:checked) ~ ._toggleFalse,
		.a_inputToggle input:checked ~ ._toggleTrue {
			color: var(--colorWhite);
		}


/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */
/* ----- Left align ----- */
	.a_inputToggle.-left label
	{
		flex-direction: row-reverse;
	}

	.a_inputToggle.-left ._toggleRail
	{
		margin: 0 0.5rem 0 0;
	}

/* ----- Secondary colour variant ----- */
.a_inputToggle.-colorSecondary ._toggleSlider {
	background-color:var(--colorSecondary);
}
	.a_inputToggle.-colorSecondary label:hover ._toggleSlider {
		background-color:var(--colorSecondary-light);
	}

/* ----- Grey colour variant ----- */
.a_inputToggle.-colorGrey .toggleSlider {
	background-color:var(--colorGrey);
}
	.a_inputToggle.-colorGrey label:hover ._toggleSlider {
		background-color:var(--colorGrey-light);
	}
/* -------------------------------------------------------------------------- *
 * Atom - Loading Animation
 * -------------------------------------------------------------------------- */
.a_loading {
	display: inline-block;
	width: 3.25em;
	transform-origin: center;
	animation: a_loadingRotate 2s linear infinite;
}

	.a_loading circle {
		fill: none;
		stroke: var(--colorPrimary);
		stroke-width: 2;
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
		stroke-linecap: round;
		animation: a_loadingDash 1.5s ease-in-out infinite;
	}

@keyframes a_loadingRotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes a_loadingDash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 90, 200;
		stroke-dashoffset: -35px;
	}

	100% {
		stroke-dashoffset: -125px;
	}
}

/* -------------------------------------------------------------------------- *
 * 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 - Nav Item
 * -------------------------------------------------------------------------- */
.a_navItem,
.a_navItem:visited {
	border: none;
	font-size: 1.125rem;
}

	.a_navItem:hover,
	.a_navItem:visited:hover {
		border-bottom: var(--colorWhite) solid 0.0250rem;
		color: var(--colorWhite);
	}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */

/* ----- Active ----- */
	.a_navItem.-active,
	.a_navItem.-active:visited {
		border-bottom: var(--colorWhite) solid 0.0250rem;
	}

		.a_navItem.-active:hover {
			border-bottom: none;
			color: var(--colorWhite);
			cursor: pointer;
		}

/* ----- Highlight ----- */
.a_navItem.-highlight {
	position: relative;
	display: block;
	padding: 0.500rem 2rem;
	border-radius: 1.500rem;
	border: 0.125rem solid var(--colorSecondary);
	color: var(--colorSecondary);
	transition: all 0.25s ease-in-out;
	overflow: hidden;
	animation-duration: 1s;
	animation-delay: 0;
	animation-iteration-count: 1;
	animation-timing-function: ease-in-out;
}

	.a_navItem:hover {
		color: var(--colorWhite);
	}


		#siteTopbar ul.m_navList li .a_navItem .material-symbols-rounded {
			display: none;
			float: right;
			font-weight: 700;
		}

/* -------------------------------------------------------------------------- *
 * Admin - Nav Item
 * -------------------------------------------------------------------------- */
.o_adminSideBar .a_navItem, .o_adminSideBar .a_navItem:visited {
	display: block;
	padding: 0.875rem 1.500rem 0.875rem 1.500rem;
	border: none;
	border-left: transparent solid 0.250rem;
	color: var(--colorBlack);
	transition: all 0.25s ease-in-out;
	text-decoration: none;
}

	.o_adminSideBar .a_navItem:hover {
		background-color: var(--colorOffWhite-dark);
	}

		.o_adminSideBar .a_navItem .material-symbols-rounded {
			vertical-align: middle;
			margin: -0.250rem 0.50rem 0 0;
		}

/* ----- Active ----- */
.o_adminSideBar .a_navItem.-active {
	border-bottom: var(--colorWhite) solid 0.250rem;
}



/* -------------------------------------------------------------------------- *
 * 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 - Price
 * -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- *
 * Atom - Quote
 * -------------------------------------------------------------------------- */


.a_quote blockquote
{
	border:none;
	color:var(--colorWhite);
	text-align:center;
	font-style:normal;
}

/* -------------------------------------------------------------------------- *
 * Molecule - Cart Item
 * -------------------------------------------------------------------------- */
.m_cartItem .cart-item {
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	padding: 1rem;
	border-radius: 8px;
}

.m_cartItem .product-image {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 8px;
	margin-right: 1rem;
}

.m_cartItem .product-details {
	flex: 1;
}

.m_cartItem .quantity-control {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.m_cartItem .quantity-button {
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

	.m_cartItem .quantity-button:hover {
		background-color: #0056b3;
	}

.m_cartItem .product-price {
	text-align: right;
}

/* -------------------------------------------------------------------------- *
 * Molecule - Contact Details
 * -------------------------------------------------------------------------- */
.m_contactDetails {
	margin: 0;
	padding: 0;
	list-style: none;
}



/* -------------------------------------------------------------------------- *
 * 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
	 * ---------------------------------------- */

	.m_contactDetails {

	}

		.m_contactDetails li {
			display: inline-block;
			width: 100%;
		}

			.m_contactDetails li .a_contactDetail {
				display: inline-block;
			}
}
@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 {
	position: relative;
	text-align: right;
}

	.m_contextMenu ._contextMenuFlyout {
		position: absolute;
		top: -0.250rem;
		right: 1.500rem;
		z-index: 501;
		display: block;
		width: 16rem;
		height: 0;
		filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.5));
		transition: all 0.25s ease-in-out;
	
		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(--colorPrimary);
			list-style: none;
		}

		.m_contextMenu ._contextMenuFlyout.-active {
			right: 2.250rem;
			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(--colorPrimary);
		}

	.m_contextMenu ._contextMenuOverlay {
		display: none;

		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 500;
		background-color: transparent;
		opacity: 0;
	}

		.m_contextMenu ._contextMenuFlyout.-active + ._contextMenuOverlay {
			display: block;
		}
/* -------------------------------------------------------------------------- *
 * Molecule - Danger Zone Panel
 * -------------------------------------------------------------------------- */
.m_dangerZone {
	box-sizing: border-box;
	padding: 1rem 1.250rem;
	border: 0.125rem solid var(--colorDanger);
	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
	 * ---------------------------------------- */
	
}
.m_formContact
{

}

.m_formContact label
{
	display:none;
}
body
{
}
/* -------------------------------------------------------------------------- *
 * Molecule - Gallery Modal
 * -------------------------------------------------------------------------- */
.m_galleryModal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 800;
	width: 100%;
	height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

	.m_galleryModal .overlayBg {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 801;
		height: 0;
		background-color: rgba(28, 30, 35,0.8);
		opacity: 0;
		transition: opacity 0.25s ease-in-out;
	}

	.m_galleryModal img {
		position: relative;
		z-index: 802;
		opacity: 0;
		max-width: 88vw;
		max-height: 100vh;
		transition: opacity 0.25s ease-in-out;
	}

	.m_galleryModal  ._galleryPrev {
		position: fixed;
		top: 50%;
		left: -4rem;
		z-index: 803;
		transform: scale(0.4, 2);
		margin-top: -2rem;
	}

	.m_galleryModal  ._galleryNext {
		position: fixed;
		top: 50%;
		right: -4rem;
		z-index: 803;
		transform: scale(0.4, 2);
		margin-top: -2rem;

	}

	.m_galleryModal.-active {
		height: 100vh;
	}

		.m_galleryModal.-active .overlayBg {
			height: 100vh;
			opacity: 1;
		}

		.m_galleryModal.-active img {
			opacity: 1;
		}

		.m_galleryModal.-active ._galleryPrev {
			left: 1rem;
			transform: none;
		}

		.m_galleryModal.-active ._galleryNext {
			right: 1rem;
			transform: none;
		}
/* -------------------------------------------------------------------------- *
 * Molecule - Tag List
 * -------------------------------------------------------------------------- */
.m_listTags {
	
}

	.m_listTags .a_button {
		position:relative;
		z-index: 4;
		margin: 0 0.500rem 0 0;
	}
/* -------------------------------------------------------------------------- *
 * Molecule - Nav List
 * -------------------------------------------------------------------------- */
ul.m_navList {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
	list-style: none;
}

	ul.m_navList li {
	}

#siteTopbar .m_navList {
	font-size: 1.250rem;
	font-weight: 700;
}

	#siteTopbar .m_navList li {
		display: inline-block;
		padding: 0 1.500rem;
		position: relative;
	}



/* -------------------------------------------------------------------------- *
 * Admin Sidebar Navigation
 * -------------------------------------------------------------------------- */
.o_adminSideBar .m_navList {
	width: 100%;
}

.o_adminSideBar ._navList {
	display: block;
	list-style: none;
	margin: 0;
	padding: 6.500rem 0 0 0;
}
#siteTopbar ._navList li a:hover {
	border: none;
}
	.o_adminSideBar ._navList li {
		display: block;
		width: 100%;
	}


/* --- Sub nav --- */
#siteTopbar .m_navList li:hover ul._flyoutnav {
	height: auto;
	margin-top: 0;
	padding: 0.500rem 0.750rem;
	opacity: 1;
	overflow: visible;
}

#siteTopbar .m_navList li ul._flyoutnav {
	position: absolute;
	right: 0;
	height: 0;
	margin-top: -1rem;
	padding: 0 0.750rem;
	border: none;
	font-size: 1rem;
	white-space: nowrap;
	background-color: var(--colorSecondary);
	opacity: 0;
	overflow: hidden;
	transition: opacity 0.25s ease-in-out, margin 0.25s ease-in-out;
	min-width: 10rem;
}

	#siteTopbar .m_navList li ul._flyoutnav li {
		display: block;
		box-sizing: border-box;
		width: 100%;
		padding: 0.3125rem 0;
		border-bottom: 0.0625rem solid var(--colorSecondary);
	}

		#siteTopbar .m_navList li ul._flyoutnav li:last-of-type {
			border-bottom: none;
		}

		#siteTopbar .m_navList li ul._flyoutnav li:before {
			content: '';
			display: none;
		}

		#siteTopbar .m_navList li ul._flyoutnav li a {
			display: inline-block;
			width: 100%;
			font-size: 1rem;
		}

#siteTopbar .m_navList li ._flyoutIcon {
	display: inline-block;
	width: 1.2500rem;
	height: 1.2500rem;
	border-radius: 50%;
	margin-left: 0.500rem;
	vertical-align: middle;
	background-color: var(--colorSecondary);
	color: var(--colorPrimary);
}

	#siteTopbar .m_navList li ._flyoutIcon:hover {
		cursor: pointer;
	}

	#siteTopbar .m_navList li ._flyoutIcon .material-symbols-rounded {
		font-size: 1.500rem;
		margin: -0.0625rem 0 0 -0.125rem;
	}


/* -------------------------------------------------------------------------- *
 * 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 nav.m_navList {
		position: fixed;
		top: 5.625rem;
		right: -100%;
		box-sizing: border-box;
		width: 100%;
		height: calc(100vh - 5.625rem);
		padding: 2rem 0;
		background-color: var(--colorOffBlack);
		transition: all 0.5s ease-in-out;
		overflow: auto;
	}

		#siteTopbar nav.m_navList.-active {
			right: 0;
		}

	#siteTopbar ul.m_navList {
		flex-wrap: wrap;
	}

		#siteTopbar ul.m_navList li {
			width: 100%;
			padding: 0.750rem 1.500rem;
			text-align: left;
		}

	#siteTopbar .m_navList li {
		display: block;
	}

		#siteTopbar .m_navList li ul._flyoutnav {
			height: auto;
			position: relative;
			opacity: 1;
			background: none;
		}
		#siteTopbar .m_navList li ul._flyoutnav {
			height: auto;
			margin-top: 0;
			padding: 0;
			opacity: 1;
			overflow: visible;
		}
			#siteTopbar .m_navList li ul._flyoutnav li a
			{
				display:inline;
			}
}

@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 - Breadcrumb list
 * -------------------------------------------------------------------------- */
nav.m_navListBreadcrumb {
	
}

	ul.m_navListBreadcrumb {
		display: flex;
		list-style: none;
		margin: 0;
		padding: 0;
		font-weight: 500;
	}

		ul.m_navListBreadcrumb li {
			display: flex;
			align-items: center;
		}

		ul.m_navListBreadcrumb li  .a_navItem {
			color: var(--colorText);
		}

			ul.m_navListBreadcrumb li  .a_navItem:hover {
				color: var(--colorOffBlack);
			}

		ul.m_navListBreadcrumb li .material-symbols-rounded {
			margin: 0 0.250rem;
			color: var(--colorOffBlack-dark);
			font-size: 1.750rem;
		}

		ul.m_navListBreadcrumb li  .a_navItem.-disabled {
			color: var(--colorText);
			opacity: 0.5;
		}

			ul.m_navListBreadcrumb li  .a_navItem.-disabled:hover {
				cursor: default;
			}


/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */

/* ----- Primary coloured chevrons ----- */
nav.m_navListBreadcrumb.-chevronPrimary li .material-symbols-rounded {
	color: var(--colorPrimary);
}



/* -------------------------------------------------------------------------- *
 * 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 - In page contents list
 * -------------------------------------------------------------------------- */
.m_navListPageContents {
	
}

	.m_navListPageContents ul {
		margin: 0;
		padding: 0;
		border-left: 0.0625rem solid var(--colorGrey);
		list-style: none;
		font-weight: 400;
	}

		.m_navListPageContents ul li {
			margin: 0 0 0.750rem 0;
			padding: 0 0 0 1rem;
		}
/* -------------------------------------------------------------------------- *
 * Molecule - Pagination List
 * -------------------------------------------------------------------------- */
.m_navListPagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

	.m_navListPagination ._ellipsis {
		display: inline-block;
		padding: 0 0.500rem;
	}


/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .-ml- / 4 columns
	 * ---------------------------------------- */
	.m_navListPagination ._ellipsis {
		padding: 0 0.250rem;
	}
}

/* -------------------------------------------------------------------------- *
 * Molecule - Sitemap Nav List
 * -------------------------------------------------------------------------- */
.m_navListSitemap {
	margin: 0;
	padding: 0 0 0 1.500rem;
	border-left: 0.0625rem solid var(--colorGrey);
	list-style: none;
}

	.m_navListSitemap li {
		margin: 0.500rem 0 0 0;
		font-size: 1.250rem;
		font-weight: 400;
	}
/* -------------------------------------------------------------------------- *
 * Atom / Molecule / Organism / View - Name
 * -------------------------------------------------------------------------- */
.m_carouselPagination {
	padding-top: 3rem;
}

	.m_carouselPagination ul {
		margin: 0;
		padding: 0;
		list-style: none;
		text-align: center;
	}

		.m_carouselPagination ul li {
			display: inline-block;
		}

		.m_carouselPagination ul li button {
			display: inline-block;
			width: 0.750rem;
			height: 0.750rem;
			margin: 0 0.500rem;
			padding: 0;
			border: none;
			outline:	none;
			border-radius: 0.500rem;
			background-color: var(--colorOffBlack);
			transition: all 0.25s ease-in-out;
		}
		.m_carouselPagination ul li button:hover {
			width: 2rem;
			cursor: pointer;
		}

			.m_carouselPagination ul li button.-active {
				display: inline-block;
				width: 3rem;
				background-color: var(--colorPrimary);
			}
/* -------------------------------------------------------------------------- *
 * 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 - Descriptive Name
 * -------------------------------------------------------------------------- */
.m_devTemplate {
	
}

/* ----- 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 - Descriptive Name
 * -------------------------------------------------------------------------- */
.m_teamMember {
	
}
	.m_teamMember .border {
		border: 1px solid var(--colorPrimary-light);
		margin: 1rem;
		padding: 1rem;
		height: calc(100% - 2rem);
	}

	.m_teamMember .a_imageInCircle {
		display: inline-block;
		border-radius: 50%;
		overflow: hidden;
	}
	.m_teamMember .teamMemberName {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		justify-content: flex-end;
	}

/* ----- 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 - Accordion Tile
 * -------------------------------------------------------------------------- */
.m_tileAccordion {
	padding-top: 2rem;
}

	.m_tileAccordion ._accordionHeading {
		display: inline-block;
		position: relative;
		box-sizing: border-box;
		width: 100%;
		padding: 0 4rem 0 0;
		border: none;
		outline: none;
		text-align: left;
		background-color: transparent;
		user-select: none;
			color: inherit;
	}
		.m_tileAccordion ._accordionHeading:hover {
			cursor: pointer;	
		}

		.m_tileAccordion ._accordionHeading .material-symbols-rounded {
			position:absolute;
			top: -0.500rem;
			right: 0;
			margin: 0 0.500rem;
			font-size: 2.500rem;
			transition: all 0.25s ease-in-out;
			color: inherit;
		}

			.m_tileAccordion ._accordionHeading.-active .material-symbols-rounded._accordionExpand {
				opacity: 0;
			}

		.m_tileAccordion ._accordionContent {
			max-height: 0;
			overflow: hidden;
			transition: all 0.25s ease-in-out;
		}
/* -------------------------------------------------------------------------- *
 * Molecule - Blog Post Tile
 * -------------------------------------------------------------------------- */
.m_tileBlogPost {
	position: relative;
	top: 0;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	width: calc(50% - 2rem);
	margin: 1rem;
	overflow: hidden;
	color: var(--colorBlack);
	background-color: var(--colorTertiary);
	transition: all 0.25s ease-in-out;
}

	.m_tileBlogPost:hover {
		transform: scale(1.0125);
	}
	.m_tileBlogPost img
	{
		width:100%;
	}
	.m_tileBlogPost ._tileBg {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 100%;
		opacity: 0.5;
		background-position: center center;
		background-size: cover;
		background-repeat: no-repeat;
	}

	.m_tileBlogPost ._tileLink {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 3;
		display: block;
		width: 100%;
		height: 100%;
		border: 0;
	}

	.m_tileBlogPost ._tileBody {
		/*position: relative;
		z-index: 2;*/
		box-sizing: border-box;
		width: 100%;
		padding: 2.000rem 2.500rem 0 2.500rem;
		
	}
		.m_tileBlogPost ._tileBody p {
			color: var(--colorText);
		}
			.m_tileBlogPost ._tileBody p strong
			{
				color:var(--colorBlack);
			}
			.m_tileBlogPost ._tileFooter {
				width: 100%;
				padding: 6rem 2.500rem 2.000rem 2.500rem;
				align-self: flex-end;
			}

	.m_tileBlogPost .a_blogPostMeta {
		font-size: 1rem;
		margin-top: 1rem;
	}

	.m_tileBlogPost ._tileBody h3 {
		position: relative;
		z-index: 2;
	}

	.m_tileBlogPost .a_blogPostMeta span {
		position: relative;
		z-index: 2;
	}

	.m_tileBlogPost .a_blogPostMeta a {
		position: relative;
		z-index: 4;
		color: var(--colorWhite);
	}


/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */

@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .-tl- / 8 columns
	 * ---------------------------------------- */
	.m_tileBlogPost {
		width: calc(50% - 2rem);
	}
	
}

@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .-ml- / 4 columns
	 * ---------------------------------------- */
	.m_tileBlogPost {
		width: calc(100% - 2rem);
	}
}
/* -------------------------------------------------------------------------- *
 * Molecule - Feature Item Tile
 * -------------------------------------------------------------------------- */
.m_tileFeature {
	
}

	.m_tileFeature svg {
		width: 11.250rem;
		height: auto;
	}

	.m_tileFeature img {
		display: inline-block;
		max-width:6rem;
	}
	.m_tileFeature .inner
	{
		height:100%;
	}
	.m_tileFeature .location{
		margin:0;
	}


/* -------------------------------------------------------------------------- *
 * 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 - Descriptive Name
 * -------------------------------------------------------------------------- */
.m_tileGridContent {
	height: 100%;
	padding:0 0 1rem;
	
}
.Feature-Style .m_tileGridContent {
	padding:0;
}

.m_tileGridContent img {
	width: 100%;
}
.m_tileGridContent p:last-child {
	min-height: 10rem;
	
}
.m_tileGridContent p {
	padding: 0 1rem;
}
.Infographic-Style .m_tileGridContent h3 {
	padding:0 1rem 1rem;
	color: var(--colorBlack);
}

.Infographic-Style .m_tileGridContent h4 {
	color: var(--colorBlack);
	padding: 1rem;
}
.m_tileGridContent .location-duration
{
	color:var(--colorBlack);
}

.m_tileGridContent .centered {
	display: flex;
	justify-content: center;
}
/* ----- 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 - Logo cloud tile
 * -------------------------------------------------------------------------- */
.m_tileLogo {
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	box-sizing: border-box;
	padding: 0.750rem;
	border-radius: 1rem;
 }

	.m_tileLogo a {
		border-bottom: none;
		color: var(--colorOffBlack);
	}

	.m_tileLogo img {
		width: 100%;
		height: auto;
	}

	.m_tileLogo ._caption {
		margin: 1rem 0 0 0;
		font-size: 0.875rem;
		font-weight: 700;
	}

/* -------------------------------------------------------------------------- *
 * 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 - Price Tile
 * -------------------------------------------------------------------------- */
.m_tilePrice {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	height: 30rem;
	padding: 1rem;
	box-shadow: 2px -1px 10px -4px rgba(0,0,0,0.5);
}


	.m_tilePrice ._tileContent {
		padding: 2rem 0.500rem 0.500rem 0.500rem;
	}

		.m_tilePrice ._tileContent h3._priceHeading {
			margin-bottom: 0.250rem;
			
		}

		.m_tilePrice ._tileContent ._price {
			font-size: 3rem;
		}

		.m_tilePrice ._tileContent ul._priceFeatures {
			margin: 0;
			padding: 0 0 0 1.750rem;
			list-style: none;
		}

			.m_tilePrice ._tileContent ul._priceFeatures li {
				position: relative;
				padding-bottom: 0.500rem;
			}

				.m_tilePrice ._tileContent ul._priceFeatures li .material-symbols-rounded {
					position: absolute;
					top: 0.0625rem;
					left: -1.750rem;
					color: var(--colorPrimary);
				}


	.m_tilePrice ._monthlyPrice
	{
		display:block;
		width:100%;
	}
	/* ----- Header ----- */
	.m_tilePrice ._tileHeader {
		position: absolute;
		top: -1.250rem;
		left: 0;
		width: 100%;
		text-align: center;
	}

	/* ----- Footer ----- */
	.m_tilePrice ._tileFooter {
		padding-bottom: 1rem;
		text-align: center;
	}


/* -------------------------------------------------------------------------- *
 * 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 - Statistic Tile
 * -------------------------------------------------------------------------- */
.m_tileStatistic {
	margin-top: 2rem;
	padding: 2rem 1rem;
	text-align: center;
	border-right: 0.125rem solid var(--colorGrey);
}

	.m_tileStatistic:nth-child(4n+4) {
		border-right: none;
	}

	.m_tileStatistic ._statistic {
		display: inline-block;
		width: 100%;
		font-size: 2rem;
		font-weight: 700;
	}

	.m_tileStatistic ._description {

	}

/* ----- 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
	 * ---------------------------------------- */
	.m_tileStatistic:nth-child(2n+2) {
		border-right: none;
	}
}
@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
	 * ---------------------------------------- */
	.m_tileStatistic {
		border-right: none;
		border-bottom: 0.125rem solid var(--colorGrey);
	}
	.m_tileStatistic:last-of-type {
		border-bottom: none;
	}
}
/* -------------------------------------------------------------------------- *
 * Molecule - Timeline List Item
 * -------------------------------------------------------------------------- */
.m_tileTimeline {
	position: relative;
	padding: 0;
}

	.m_tileTimeline::before {
		content: '';
		position: absolute;
		top: 0.750rem;
		left: 0;
		width: 100%;
		height: 0.06125rem;
		background-color: var(--colorGrey);
	}

	.m_tileTimeline ._date {
		position: relative;
		display: inline-block;
		margin-bottom: 0.750rem;
		padding: 0 0.500rem 0 1.250rem;
		font-size: 0.875rem;
		font-weight: 700;
	}

		.m_tileTimeline ._date::before {
			content: '';
			position: absolute;
			top: 0.500rem;
			left: 0.250rem;
			width: 0.500rem;
			height: 0.500rem;
			border-radius: 0.250rem;
			background-color: var(--colorPrimary);
		}

	.m_tileTimeline ._heading {
		font-size: 1.500rem;
		font-weight: 700;
	}

	.m_tileTimeline ._description {

	}


/* -------------------------------------------------------------------------- *
 * 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 - Alert Modal
 * -------------------------------------------------------------------------- */
.o_adminAlert {
	position: fixed;
	top: 0;
	right: -100vw;
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	transition: all 0.25s ease-in-out;
}

	.o_adminAlert.-active {
		right: 0;
	}

	.o_adminAlert ._overlayBg {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 300;
		width: 0;
		height: 100vh;
		opacity: 0;
		transition: all 0.25s ease-in-out;
	}

	.o_adminAlert.-active ._overlayBg {
		width: 100vw;
		background-color: var(--colorWhite);
		opacity: 0.7;
	}
	
	.o_adminAlert ._alertPanel {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		position: relative;
		z-index: 301;
		box-sizing:border-box;
		width: 34rem;
		height: auto;
		padding: 2rem 2rem 1rem 2rem;
		border: 0.125rem solid var(--colorOffWhite-dark);
		border-radius: 0.500rem;
		background-color: var(--colorOffWhite);
		transition: all 0.25s ease-in-out;
		overflow: auto;
	}

		.o_adminAlert.-active ._alertPanel {
			right: 0;
		}

	.o_adminAlert ._alertPanel ._contentInner {
		flex-grow: 1;
		text-align: center;
	}

	.o_adminAlert ._alertHdr {
		position: relative;
		text-align: center;
	}

		.o_adminAlert ._alertHdr h2 {
			margin: 0.250rem 0;
		}

	.o_adminAlert ._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 - Descriptive Name
 * -------------------------------------------------------------------------- */
.o_adminBottomBar {
	
}

/* -------------------------------------------------------------------------- *
 * 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_adminDrawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 200;
}

	.o_adminDrawer ._overlayBg {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 200;
		width: 0;
		height: 100vh;
		opacity: 0;
		transition: all 0.25s ease-in-out;
	}

	.o_adminDrawer.-active ._overlayBg {
		width: 100vw;
		background-color: var(--colorWhite);
		opacity: 0.7;
	}
	 /* ----- Drawer Content ----- */
	.o_adminDrawer ._drawerPanel {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		position: fixed;
		top: 0;
		right: -52rem;
		z-index: 201;
		box-sizing:border-box;
		width: 52rem;
		height: 100vh;
		padding: 2rem;
		border-left: 0.125rem solid var(--colorOffWhite-dark);
		background-color: var(--colorOffWhite);
		transition: all 0.25s ease-in-out;
		overflow: auto;
	}

		.o_adminDrawer.-active ._drawerPanel {
			right: 0;
		}

	.o_adminDrawer ._drawerPanel ._contentInner {
		flex-grow: 1;
	}

	/* ----- Drawer Header ----- */
	.o_adminDrawer ._drawerHdr {
		position: relative;
		padding-right: 3rem;
		padding-bottom: 3rem;
	}

		.o_adminDrawer ._drawerHdr .a_buttonIcon._closeDrawer {
			position:absolute;
			top: 0;
			right: 0;
		}

		.o_adminDrawer ._drawerHdr h2 {
			margin: 0.250rem 0;
		}

	/* ----- Drawer Footer ----- */
	.o_adminDrawer ._drawerFtr {
		padding-top: 1rem;
		border-top: 0.0625rem solid var(--colorGrey-light);
	}
/* -------------------------------------------------------------------------- *
 * Organism - Side bar
 * -------------------------------------------------------------------------- */

.o_adminSideBar {
	display: flex;
	flex-wrap: wrap;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	box-sizing: border-box;
	height: 100%;
	width: 16.250rem;
	

	border-right: 0.125rem solid var(--colorOffWhite-dark);
	background-color: var(--colorOffWhite);


	overflow: auto;
	transition: left 0.25s ease-in-out;
}

	.o_adminSideBar ._footer {
		align-self: flex-end;
		width: 100%;
	}

.o_adminSideBar.-closed {
	left: -16.250rem;
}

/* -------------------------------------------------------------------------- *
 * 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
	 * ---------------------------------------- */
	
}
body
{
}
/* -------------------------------------------------------------------------- *
 * Organism - Call to action
 * -------------------------------------------------------------------------- */
.o_blockCallToAction {
	padding: 5rem 0;
	color: var(--colorWhite);
	background-color: var(--colorPrimary);
}

/* -------------------------------------------------------------------------- *
 * Organism - Contact Form Block
 * -------------------------------------------------------------------------- */
.o_blockContactForm {
	background-size: cover;
}

/* ----- Colour variations ----- */
.o_blockContactForm.-bgPrimary {

}

	.o_blockContactForm.-bgPrimary .a_button {
		background-color: var(--colorSecondary);
		border-color: var(--colorSecondary);
		color: var(--colorOffBlack);
	}

		.o_blockContactForm.-bgPrimary .a_button:hover {
			background-color: var(--colorSecondary-dark);
			border-color: var(--colorSecondary-dark);
			color: var(--colorOffBlack);
		}
	.o_blockContactForm .BackgroundOverlay {
		position: absolute;
		height: 100%;
		width: 100%;
		opacity: 0.8;
	}

/* -------------------------------------------------------------------------- *
 * 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 - Content section
 * -------------------------------------------------------------------------- */
.o_blockContent {

}

/* ------ Colour Variatsion ------ */
.o_blockContent.-bgPrimary {
	color: var(--colorWhite);
}

.o_blockContent.-bgOffBlack {
	color: var(--colorWhite);
}

	.o_blockContent h2.Left, .o_blockContent h4.Left {
		text-align: left;
	}
	.o_blockContent h2.Center, .o_blockContent h4.Center {
		text-align: center;
	}
	.o_blockContent h2.Right, .o_blockContent h4.Right {
		text-align: right;
	}
/* -------------------------------------------------------------------------- *
 * Organism - o_blockContentAndImage
 * -------------------------------------------------------------------------- */
.o_blockContentAndImage {
}


	.o_blockContentAndImage .Image-Left .image
	{
		order:1;
	}
	.o_blockContentAndImage .Image-Left .text {
		order: 2;
	}
	/* ----- 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 - Descriptive Name
 * -------------------------------------------------------------------------- */
.o_devTemplate {
	
}

/* ----- 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 - Mailing list sign up block
 * -------------------------------------------------------------------------- */
.o_blockEmailSignup {
	
}

/* ----- Colour variations ----- */
.o_blockEmailSignup.-bgPrimary {

}

	.o_blockEmailSignup.-bgPrimary .a_button {
		background-color: var(--colorSecondary);
		border-color: var(--colorSecondary);
		color: var(--colorOffBlack);
	}

		.o_blockEmailSignup.-bgPrimary .a_button:hover {
			background-color: var(--colorSecondary-dark);
			border-color: var(--colorSecondary-dark);
			color: var(--colorOffBlack);
		}

/* -------------------------------------------------------------------------- *
 * 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 - Features List
 * -------------------------------------------------------------------------- */
.o_blockFeatures {
	
}

/* ----- Colour variants ----- */
.o_blockFeatures.-bgPrimary {
	color: var(--colorWhite);
}

.o_blockFeatures.-bgOffBlack {
	color: var(--colorWhite);
}

	.o_blockFeatures .Image .m_tileFeature img
	{
		max-width:100%;
		width:100%;
	}
.o_blockFeatures .Left
{
	text-align:left;
}
	.o_blockFeatures .Right {
		text-align: right;
	}
/* -------------------------------------------------------------------------- *
 * Organism - Gallery Block
 * -------------------------------------------------------------------------- */
.o_blockGallery {

}

	ul._galleryThumbs {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		margin: 0;
		padding: 0;
		list-style: none;
	}

		._galleryThumbs li {
			display: block;
			box-sizing: border-box;
			width: 33.33%;
			padding: 0.500rem;
		}

			._galleryThumbs li img {
				display: block;
			}

			._galleryThumbs li ._galleryThumb {
				display: block;
				margin: 0;
				padding: 0;
				border: none;
				border-radius: 0.5rem;
				overflow: hidden;
				transition: transform 0.25s ease-in-out;
			}

			._galleryThumbs li ._galleryThumb:hover {
				transform: scale(1.025);
				cursor: pointer;
			}
/* -------------------------------------------------------------------------- *
 * Organism - Descriptive Name
 * -------------------------------------------------------------------------- */
.o_devTemplate {
	
}

/* ----- 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 - Image Block
 * -------------------------------------------------------------------------- */
.o_blockImage {
}

	.o_blockImage img {
		margin: 0 auto;
	}

		.o_blockImage img.-fullWidth {
			margin: 0 auto;
			border-radius: 0;
		}

		.o_blockImage img.-containerWidth {
			margin: 0 auto;
			border-radius: 1rem;
		}

		.o_blockImage img.-contentWidth {
			margin: 0 auto;
			border-radius: 1rem;
		}

	/* --- Caption --- */
	.o_blockImage ._imgWithCaption {
		position: relative;
		margin: 0;
		padding: 0;
	}

		.o_blockImage ._imgWithCaption figcaption {
			padding: 0.750rem 0 0 0;
			font-size: 1.125rem;
			font-weight: 400;
			text-align: center;
			color: var(--colorBlack);
		}
/* -------------------------------------------------------------------------- *
 * Organism - Logo Cloud
 * -------------------------------------------------------------------------- */
.o_blockLogoCloud {
	position: relative;
	background-size: cover;
}

	/* ----- Logo Cloud List ----- */
	.o_blockLogoCloud ._logoCloud {
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
	}

		/* --- Alignment --- */
		.o_blockLogoCloud ._logoCloud.-hCenter {
			text-align: center;
		}

		.o_blockLogoCloud ._logoCloud.-hEnd {
			text-align: right;
		}

	/* --- Column widths --- */
	.o_blockLogoCloud ._logoCloud {
		--columns: 6; /* Fallback */
	}

		.o_blockLogoCloud ._logoCloud .m_tileLogo {
			flex: 0 1 calc((100% / var(--columns)) - 1rem);
			max-width: calc((100% / var(--columns)) - 1rem);
		}

	.o_blockLogoCloud .BackgroundOverlay {
		position: absolute;
		height: 100%;
		width: 100%;
		opacity: 0.8;
	}

	.o_blockLogoCloud .splide__pagination__page {
		border: none;
		background: var(--colorWhite);
		border-radius: 0.125rem;
		height: 0.25rem;
		width: 0.25rem;
		margin: 0 0.5rem;
		padding: 0;
	}

		.o_blockLogoCloud .splide__pagination__page.is-active {
			border-radius: 0.25rem;
			height: 0.5rem;
			width: 0.5rem;
			margin-top: 0.7rem;
		}
/* -------------------------------------------------------------------------- *
 * 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_blockLogoCloud ._logoCloud .m_tileLogo {
		flex: 0 1 calc((100% / ((var(--columns) / 3) * 2)) - 1rem);
		max-width: calc((100% / ((var(--columns) / 3) * 2)) - 1rem);
	}
}

@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .-ts- / 6 columns
	 * ---------------------------------------- */
	.o_blockLogoCloud ._logoCloud .m_tileLogo {
		flex: 0 1 calc((100% / (var(--columns) / 2)) - 1rem);
		max-width: calc((100% / (var(--columns) / 2)) - 1rem);
	}
}

@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .-ml- / 4 columns
	 * ---------------------------------------- */
	.o_blockLogoCloud ._logoCloud .m_tileLogo {
		flex: 0 1 calc((100% / (var(--columns) / 3)) - 1rem);
		max-width: calc((100% / (var(--columns) / 3)) - 1rem);
	}
}

@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .-ms- / 2 columns
	 * ---------------------------------------- */
	.o_blockLogoCloud ._logoCloud .m_tileLogo {
		flex: 0 1 calc((100% / (var(--columns) / 4)) - 1rem);
		max-width: calc((100% / (var(--columns) / 4)) - 1rem);
	}
}

/* -------------------------------------------------------------------------- *
 * Organism - Pricing Table
 * -------------------------------------------------------------------------- */
.o_blockPricing {
	
}

	.o_blockPricing .pricing .col:nth-child(odd)
	{
		margin-top:2rem;
	}
	/* ----- 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 - Blockquote carousel
 * -------------------------------------------------------------------------- */
.o_blockquote {
	position: relative;
	background-size: cover;
}


	/* ----- Colour variants ----- */
	/* - Background Primary - */
	.o_blockquote.-bgPrimary {
		color: var(--colorWhite);
	}

		.o_blockquote.-bgPrimary .m_carouselPagination ul li button {
			background-color: var(--colorGrey-light);
		}

			.o_blockquote.-bgPrimary .m_carouselPagination ul li button.-active {
				background-color: var(--colorWhite);
			}



	/* - Background Off Black - */
	.o_blockquote.-bgOffBlack {
		color: var(--colorWhite);
	}

		.o_blockquote.-bgOffBlack .m_carouselPagination ul li button {
			background-color: var(--colorGrey-light);
		}

			.o_blockquote.-bgOffBlack .m_carouselPagination ul li button.-active {
				background-color: var(--colorPrimary);
			}


	.o_blockquote .BackgroundOverlay {
		position: absolute;
		height: 100%;
		width: 100%;
		opacity: 0.8;
	}

	.o_blockquote .splide__pagination__page {
		border: none;
		background: var(--colorWhite);
		border-radius: 0.125rem;
		height: 0.25rem;
		width: 0.25rem;
		margin: 0 0.5rem;
		padding: 0;
	}

		.o_blockquote .splide__pagination__page.is-active {
			border-radius: 0.25rem;
			height: 0.5rem;
			width: 0.5rem;
			margin-top: 0.7rem;
		}

	.o_blockquote .caption {
		display: flex;
		flex-direction: row;
		justify-content: center;
	}

		.o_blockquote .caption .logo {
			margin-right:2rem;
		}

		.o_blockquote .caption .author {
			text-align:left;
		}

/* -------------------------------------------------------------------------- *
 * Organism - Descriptive Name
 * -------------------------------------------------------------------------- */
.o_devTemplate {
	
}

/* ----- 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 - Descriptive Name
 * -------------------------------------------------------------------------- */
.o_blockSingleVideo {
}

/* ----- 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 - Statistics Content Block
 * -------------------------------------------------------------------------- */
.o_blockStatistics {
}

	.o_blockStatistics ul._statisticsList {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		margin: 0;
		padding: 0 2rem 2rem 2rem;
		border-radius: 2rem;
		background-color: rgba(0, 0, 0, 0.1);
		list-style: none;
	}

/* ----- 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
	 * ---------------------------------------- */
	.o_blockStatistics ul._statisticsList {
		grid-template-columns: 1fr 1fr;
	}
}
@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_blockStatistics ul._statisticsList {
		grid-template-columns: 1fr;
	}
}
/* -------------------------------------------------------------------------- *
 * Organism - Descriptive Name
 * -------------------------------------------------------------------------- */
.o_blockTeamList {
}

/* ----- 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 - Descriptive Name
 * -------------------------------------------------------------------------- */
.o_blockTextAndImage {
}

.o_blockTextAndImage .leftContent {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

/* ----- 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 - Timeline Content Block
 * -------------------------------------------------------------------------- */
.o_blockTimeline {
	overflow: hidden;
}

	.o_blockTimeline ._timelineList {
		margin: 0;
		padding: 0;
		list-style: none;
		overflow: visible;
	}

	/* ----- Swiper Overrides ----- */
	.o_blockTimeline .swiper-button-next,
	.o_blockTimeline .swiper-button-prev {
		top: auto;
		bottom: 0.750rem;
		user-select: none;
	}

		.o_blockTimeline .swiper-button-next:after,
		.o_blockTimeline .swiper-button-prev:after {
			display: none;
		}

		.o_blockTimeline .swiper-button-next .material-symbols-rounded,
		.o_blockTimeline .swiper-button-prev .material-symbols-rounded {
			font-size:4rem;
		}

	.o_blockTimeline .swiper-pagination {
		position: relative;
		padding: 1.500rem 0 0.500rem 0;
	}

		.o_blockTimeline .swiper-pagination .swiper-pagination-bullet {
			width: 0.750rem;
			height: 0.750rem;
			border-radius: 0.500rem;
			background-color: var(--colorOffBlack);
			opacity: 1;
			transition: all 0.25s ease-in-out;
		}

		.o_blockTimeline .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
			width: 3rem;
			background-color: var(--colorPrimary);
		}


/* -------------------------------------------------------------------------- *
 * 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 - Descriptive Name
 * -------------------------------------------------------------------------- */
.o_blockVideoFeature {
}

	.o_blockVideoFeature .textColumn {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
	}
/* ----- 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 - Cart
 * -------------------------------------------------------------------------- */
.o_cart {
	/* Add your styles here */
}

.o_cart .container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

	.o_cart .highlight {
		background-color: yellow;
		padding: 0 0.5rem;
	}

	.o_cart .cart-items {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.o_cart .order-summary {
		border: 1px solid #ccc;
		padding: 1rem;
		border-radius: 8px;
	}

	.o_cart .discount-code {
		margin-bottom: 1rem;
	}

	.o_cart .totals {
		margin-bottom: 1rem;
	}

	.o_cart .order-total {
		font-weight: bold;
	}

	.o_cart .note {
		background-color: #f9f9f9;
		padding: 1rem;
		border-radius: 8px;
	}

	.o_cart #checkout-button {
		background-color: #007bff;
		color: white;
		padding: 0.5rem 1rem;
		border: none;
		border-radius: 4px;
		cursor: pointer;
	}

		.o_cart #checkout-button:hover {
			background-color: #0056b3;
		}

/* -------------------------------------------------------------------------- *
 * 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 - Blog Post hero space
 * -------------------------------------------------------------------------- */
.o_heroBlogPost {
	position: relative;
	color: var(--colorWhite);
	background-color: var(--colorBlack);
}

	.o_heroBlogPost main.row {
		padding: 4rem 0;
	}

	.o_heroBlogPost ._heroBlogPostBg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
	}

/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */

.o_heroBlogPost .m_navListBreadcrumb li .a_navItem,
.o_heroBlogPost .m_navListBreadcrumb li .a_navItem.-disabled,
.o_heroBlogPost .m_navListBreadcrumb.-chevronPrimary li .material-symbols-rounded {
	color: var(--colorWhite);
}
/* -------------------------------------------------------------------------- *
 * Organism - Site Hero
 * -------------------------------------------------------------------------- */
.o_heroMinimal {
	height: calc(75vh - 7.5rem);
	position: relative;
	background-size: cover;
}

	.o_heroMinimal .fullHeight
	{
		height:100%;
	}

	.o_heroMinimal .centerItems {
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		color:var(--colorWhite);
	}
.o_heroMinimal h1
{
	color:var(--colorWhite);
	width:100%;
}
	.o_heroMinimal .backgroundOverlay {
		position: absolute;
		height: 100%;
		width: 100%;
		opacity: 0.3;
		background-color: var(--colorBlack);
		background-image: url(../images/dronecloud-logo-light-image.png);
		background-repeat:no-repeat;
	}
		
/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */ 
/* -------------------------------------------------------------------------- *
 * Organism - Site Hero
 * -------------------------------------------------------------------------- */
.o_heroProject {
	height: calc(75vh - 7.5rem);
	position: relative;
	background-size:cover;
}

	.o_heroProject .fullHeight {
		height: 100%;
	}

	.o_heroProject .centerItems {
		display: flex;
		align-items: center;
	}
	.o_heroProject h1 {
		color: var(--colorWhite);
	}
	.o_heroProject .backgroundOverlay {
		position: absolute;
		height: 100%;
		width: 100%;
		opacity: 0.3;
		background-color: var(--colorBlack);
		background-image: url(../images/dronecloud-logo-light-image.png);
		background-repeat: no-repeat;
	}
		
/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */ 
/* -------------------------------------------------------------------------- *
 * Organism - Site Hero
 * -------------------------------------------------------------------------- */
.o_heroSimple {
	color: var(--colorWhite);
	background-color: var(--colorPrimary);
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
	height:calc(100vh - 7.5rem);
	position:relative;
}
	.o_heroSimple .container {
		display: flex;
		align-content: center;
		justify-content: center;
		height: 100%;
		flex-wrap: wrap;
	}
	.o_heroSimple .backgroundOverlay {
		position: absolute;
		height: 100%;
		width: 100%;
		opacity: 0.3;
		background-color: var(--colorBlack);
		background-image: url(../images/dronecloud-logo-light-image.png);
		background-repeat:no-repeat;
	}
	.o_heroSimple main
	{
		max-width:60rem;
	}
	.o_heroSimple main.row {
		padding: 4rem 0;
	}

		
/* -------------------------------------------------------------------------- *
 * Variant and option styles
 * -------------------------------------------------------------------------- */

.o_heroSimple.-txtWhite .m_navListBreadcrumb li .a_navItem, 
.o_heroSimple.-txtWhite .m_navListBreadcrumb li .a_navItem.-disabled, 
.o_heroSimple.-txtWhite .m_navListBreadcrumb.-chevronPrimary li .material-symbols-rounded{
	color: var(--colorWhite);
} 

/* ----- Centered ----- */
.o_heroSimple.-smallHero main.row {
	padding: 1rem 0;
}

.o_heroSimple.-smallHero  h1 {
	margin-bottom: 0;
}
/* -------------------------------------------------------------------------- *
 * Organism - Human Sitemap
 * -------------------------------------------------------------------------- */
.o_humanSitemap {
	
}

	.o_humanSitemap nav {
	
	}

		.o_humanSitemap nav ul {
			margin: 0;
			padding: 0;
			list-style:none;
		}

			.o_humanSitemap nav ul li {
				padding: 0.125rem 0;
				font-size: 1.250rem;
				font-weight: 400;
			}

				.o_humanSitemap nav ul li ul {
					margin: 0 0 0 0.500rem;
					padding: 0 0 0 1rem;
				}
/* -------------------------------------------------------------------------- *
 * Organism - Blog Posts List
 * -------------------------------------------------------------------------- */
.o_listBlogPosts {
	
}

	.o_listBlogPosts ._orderedList {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: 0 -1rem;
		padding: 0;
		list-style: none;
	}

	.o_listBlogPosts ._showingFilter .a_buttonLink.-tiny {
		vertical-align: middle;
	}

/* -------------------------------------------------------------------------- *
 * 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 - Newsletter Subscribe
 * -------------------------------------------------------------------------- */
.o_newsletterSubscribe {
    
}

/* ----- 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 - Descriptive Name
 * -------------------------------------------------------------------------- */
.o_devTemplate {
	
}

/* ----- 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 - Cart
 * -------------------------------------------------------------------------- */
.o_product {
	
}
	.o_product .v_productOverlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 1000;
		display:none;
	}

		.o_product .v_productOverlay .modal {
			text-align: center;
			width: 80%;
			left: 10%;
			height: 80%;
			background-color: var(--colorWhite);
			position: fixed;
			top: 10%;
		}

/* -------------------------------------------------------------------------- *
 * 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 - Site Bottom Bar
 * -------------------------------------------------------------------------- */
.o_siteBottomBar {
	width: 100%;
}

	.o_siteBottomBar .svg_mohLogo_icon_blue {
		max-width: 4rem;
	}

	.o_siteBottomBar ._siteBottomNav {
	}

		.o_siteBottomBar ._siteBottomNav ul {
			display: block;
			margin: 0;
			padding: 0;
			list-style: none;
		}

			.o_siteBottomBar ._siteBottomNav ul li {
				display: inline-block;
				min-width: 40%;
				padding: 0 0 1rem 0;
			}

				.o_siteBottomBar ._siteBottomNav ul li a {
					color: var(--colorWhite);
					border-bottom-color: var(--colorWhite);
				}

	.o_siteBottomBar .siteBottomSmallPrint .-txtGrey-dark a {
		color: var(--colorGrey-dark);
		border-bottom-color: var(--colorGrey-dark);
	}

	.o_siteBottomBar h3 {
		margin-bottom: 2.5rem;
		padding-bottom: 3rem;
		margin-right: 4rem;
		border-bottom: var(--colorTertiary) 2px dashed;
		color: var(--colorPrimary);
		font-size: 1.25rem;
	}

	.o_siteBottomBar ul {
		list-style: none;
		padding: 0;
	}

		.o_siteBottomBar ul li {
			margin-bottom: 1rem;
		}

			.o_siteBottomBar ul li a {
				color: var(--colorText);
				border: none;
			}

		.o_siteBottomBar ul.smallPrint {
			float: left;
		}

			.o_siteBottomBar ul.smallPrint li {
				float: left;
				margin-right: 1rem;
			}

	.o_siteBottomBar .social {
		padding: 2rem 0;
		list-style: none;
		display: flex;
		justify-content: center;
		flex-direction: row;
	}

		.o_siteBottomBar .social svg {
			fill: var(--colorPrimary);
		}

		.o_siteBottomBar .social li {
			background-size: contain;
			background-repeat: no-repeat;
		}

			.o_siteBottomBar .social li a {
				width: 1.5rem;
				height: 1.5rem;
				display: block;
				border: none;
				margin-right: 1rem;
			}

	.o_siteBottomBar iframe {
		filter: grayscale(100%);
	}
/* -------------------------------------------------------------------------- *
 * Responsive variants
 * -------------------------------------------------------------------------- */
@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: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .-ms- / 2 columns
	 * ---------------------------------------- */
	.o_siteBottomBar ._siteBottomNav ul li {
		width: 100%;
		text-align: center;
	}
}

/* -------------------------------------------------------------------------- *
 * Organism - Site Top Bar
 * -------------------------------------------------------------------------- */
.o_siteTopBar {
	top: 0;
	left: 0;
	z-index: 500;
	width: 100%;
	min-width: 320px;
	height:7.5rem;
	background-color: var(--colorSecondary);
	transition: background-color 0.5s ease-in-out;
}

	.o_siteTopBar .container {
		height: 100%; 
	}

		.o_siteTopBar .container .row {
			height: 100%;
		}

		.o_siteTopBar ._topBarLogo {
			display: block;
			position: relative;
			border-bottom: none;
		}
	.o_siteTopBar #cartCount {

		background-color: var(--colorOffBlack);
		color: var(--colorPrimary);
		border-radius: 50%;
		padding: 0.25rem 0.5rem;
		font-size: 0.75rem;
		font-size: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_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
	 * ---------------------------------------- */
	
}
/* -------------------------------------------------------------------------- *
 * Organism - Small Print Code Section
 * -------------------------------------------------------------------------- */
.o_smallPrintCode {
	padding-bottom: 2rem;
}
/* -------------------------------------------------------------------------- *
 * Organism - Small Print Content Section
 * -------------------------------------------------------------------------- */
.o_smallPrintContent {
	padding-bottom: 2rem;
}
/* -------------------------------------------------------------------------- *
 * Atom / Molecule / Organism / View - Name
 * -------------------------------------------------------------------------- */
.o_tileAdmin {

}

	.o_tileAdmin ._tile {
		border-radius: 0.500rem;
		border: 0.125rem solid var(--colorOffWhite-dark);
		background-color: var(--colorOffWhite);
	}

	.o_tileAdmin ._tileHeader {
		padding: 0.500rem 1rem;
		border-bottom: 0.125rem solid var(--colorOffWhite-dark);
	}

	.o_tileAdmin ._tileContent {
		padding: 1rem;
	}

	.o_tileAdmin ._tileFooter {
		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
	 * ---------------------------------------- */
	
}
﻿/* -------------------------------------------------------------------------- *
 * View - Home
 * -------------------------------------------------------------------------- */
.v_blockContent {
	
}


.v_blockContent.backgroundImage {
	background-image: url(../images/dronecloud-logo-light-image-1.png);
	background-repeat:no-repeat;
	background-position:left center;
}
﻿/* -------------------------------------------------------------------------- *
 * View - Blog List
 * -------------------------------------------------------------------------- */
.v_blogList {
	
}

/* -------------------------------------------------------------------------- *
 * View - Blog Post
 * -------------------------------------------------------------------------- */
.v_blogPost {
	
}
﻿/* -------------------------------------------------------------------------- *
 * View - Cart
 * -------------------------------------------------------------------------- */
.v_cart {
	
}
/* -------------------------------------------------------------------------- *
 * 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
	 * ---------------------------------------- */

}
/* -------------------------------------------------------------------------- *
 * View - Error view
 * -------------------------------------------------------------------------- */
.v_errorPage {
	display: flex;
	flex-grow: 2;
	align-items: center;
	height: 100%;
}
/* -------------------------------------------------------------------------- *
 * View - Form complete / success
 * -------------------------------------------------------------------------- */
.v_formComplete {
	display: flex;
	align-items: center;
	height: 100%;
}
/* -------------------------------------------------------------------------- *
 * View - Human Sitemap
 * -------------------------------------------------------------------------- */
.v_humanSitemap {
	height: 100%;
}
﻿ /* -------------------------------------------------------------------------- *
 * View - Category List
 * -------------------------------------------------------------------------- */
.v_listCategories {
}
/* -------------------------------------------------------------------------- *
 * 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
	 * ---------------------------------------- */

}
﻿ /* -------------------------------------------------------------------------- *
 * View - Product List
 * -------------------------------------------------------------------------- */
.v_listProducts {
}
/* -------------------------------------------------------------------------- *
 * 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
	 * ---------------------------------------- */

}
﻿/* -------------------------------------------------------------------------- *
 * View - Product
 * -------------------------------------------------------------------------- */
.v_product {
	
}
/* -------------------------------------------------------------------------- *
 * 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
	 * ---------------------------------------- */

}
/* -------------------------------------------------------------------------- *
 * View - Descriptive Name
 * -------------------------------------------------------------------------- */
.v_devTemplate {
	
}

/* ----- 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
	 * ---------------------------------------- */
	
}