/**
	@Author:	Paul Strandoo
	@Date:		21 March 2023
	@Notes:		iPower
		
	FONTS & COLORS
	-------------
	green: #9daf91; rgba(157,175,145,1);
	navy: #231e45;

	Font-family: 'Libre Franklin', sans-serif;
	available weight: 300, 400, 400i, 700;
	inner max-width: 1070px;
*/

@import url('reset.css');
@import url('font-awesome.min.css');

:root {		
	--display-font: 'Libre Franklin', serif;
	--body-font: 'Libre Franklin', serif;
	
	--display-light: 300;
	--display-med: 400;
	--display-bold:700;
	--body-light: 300;
	--body-reg: 400;
	--body-med:	600;
	--body-bold: 700;
	
	--accent: #88C500;
	
	--tint-50: rgba(157,175,145,0.5);
	--tint-30: rgba(157,175,145,0.3);
	--tint-20: rgba(157,175,145,0.2);
	--tint-10: rgba(157,175,145,0.1);
	--tint-1: #f6f0e7;
	
	--grey0: #575656;
	--grey1: #ebebeb;
	--grey2: #9f9f9f;
	--grey3: #939393;
	--grey4: #f6f6f6;
	--white: #ffffff;
	--black: #000000;

	--top-margin: 150px;
	--desktop-nav: 995px;
	
    --inner: 1320px;
    --inner-narrow: 900px;
    --inner-large: 1400px;
    --inner-wide: 1600px;
    --inner-full: 100%;
    
    --section-default-padding: 70px 0;
    --section-mobile-padding: 40px 0;
	}

* {
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
	box-sizing: border-box;
	}

html {
	font-size: 100%;
	scroll-behavior: smooth;
	}
body {
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	background: #ffffff;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	}

body {
	font-family: var(--body-font);
	font-weight: var(--body-light);
	color: var(--black);
	}
	
body.is-fixed {
	position: fixed;
	}
	
/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: var(--body-font);
	font-weight: var(--body-light);
	font-size: 1.05rem;
	line-height: 1.45;
	margin: 0 0 1em;
	}
li {
	margin: 0;
	}

em {
	font-family: var(--body-font);
	font-style: italic;
	}
b,
strong {
	font-weight: var(--body-med);
	}

a {
	color: #222;
	border-bottom: 2px solid var(--accent);
	}
a:hover {
	color: var(--accent); /* ginger */
	}

h1,h2,h3,h4 {
	font-family: var(--display-font);
	font-weight: var(--display-med);
	margin: 0 0 0.5em;
	color: #222;
	}
h1 {
	color: var(--black);
	font-family: var(--display-font);
	font-weight: var(--display-bold);
	font-size: 2rem;
	line-height: 1.2;
	margin: 0 0 1em;
	position: relative;
	max-width: 30em;
	}

h2,.h2 {
	font-family: var(--display-font);
	font-weight: var(--display-bold);
	color: var(--black);
	font-size: 1.8rem;
	line-height: 1.45;
	margin: 0 0 0.3em;
	}
h3,.h3 {
	font-family: var(--display-font);
	font-weight: var(--display-bold);
	font-size: 1.45rem;
	line-height: 1.3;
	margin: 0 0 0.2em;
	}
h4,.h4 {
	font-family: var(--body-font);
	font-weight: var(--body-bold);
	font-size: 0.9rem;
	line-height: 1.45;
	color: #222;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	}
h5 {
	font-family: var(--body-font);
	font-weight: var(--body-bold);
	font-size: 1rem;
	line-height: 1.3;
	margin: 0;
	}

@media only screen and (min-width: 600px) { 	
	h1 {
		font-size: 2.6rem;
		}
}

img {
	display: block;
	max-width: 100%;
	vertical-align: middle;
	}


/* ----- [ Structure ] --------------------------*/
.page-wrapper {
	position: relative;
	padding-top: 0;
	background: var(--white);
	min-height: 100%;
	z-index: 2;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}

.page-overlay {
	position: fixed;
	top: 0;
	left: 0;
	min-height: 100%;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: #fff;
	/*z-index: 1000;*/
	opacity: 0;
	overflow-y: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}

.page-overlay.is-open {
	position: fixed;
	opacity: 1;
	visibility: visible;
	overflow-y: auto;
	z-index: 2;
	}
.page-overlay.is-open + .page-header {
	position: fixed;
	}


@media only screen and (min-width: 750px) {
	.page-overlay {
		align-items: center;
		padding: 0;
		}
}
	
header,
section,
footer {
	background: #ffffff;
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
	padding: var(--section-mobile-padding);
	overflow: hidden;
	}
.inner {
	position: relative;
	max-width: var(--inner);
	margin: 0 auto;
	padding: 0 20px;
	}
.inner-narrow {
	max-width: var(--inner-narrow);
	}
.inner-wide {
	max-width: var(--inner-wide);
	}
.inner-full {
	max-width: var(--inner-full);
	padding: 0;
	}


@media only screen and (min-width: 600px) {
	section {
		padding: var(--section-default-padding);
		overflow: hidden;
		}
}

/* ----- [ Strandoo Flex Grid System v1 ] ------ */
.row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: column;
	/*justify-content: stretch;*/
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	overflow: visible;
	position: relative;
	}

.col {
	flex: 1;
	padding: 0;
	}

@media only screen and (min-width: 420px) {
	.col { flex: initial; }
	.row.no-padding,
	.row.padding-0 {
		margin-left: 0;
		margin-right: 0;
		}
	.row.padding-1 {
		margin-left: -1px;
		margin-right: -1px;
		}
	.row.padding-5 {
		margin-left: -5px;
		margin-right: -5px;
		}
	.row.padding-10 {
		margin-left: -10px;
		margin-right: -10px;
		}
	.row.padding-15 {
		margin-left: -15px;
		margin-right: -15px;
		}
	.row.padding-20 {
		margin-left: -20px;
		margin-right: -20px;
		}
	.row.padding-30 {
		margin-left: -30px;
		margin-right: -30px;
		}

	.no-padding > .col,
	.padding-0 > .col {
		padding: 0;
		}
	.padding-1 > .col {
		padding-left: 1px;
		padding-right: 1px;
		}
	
	.padding-5 > .col {
		padding-left: 5px;
		padding-right: 5px;
		}
	.padding-10 > .col {
		padding-left: 10px;
		padding-right: 10px;
		}
	.padding-15 > .col {
		padding-left: 15px;
		padding-right: 15px;
		}
	.padding-20 > .col {
		padding-left: 20px;
		padding-right: 20px;
		}
	.padding-30 > .col {
		padding-left: 30px;
		padding-right: 30px;
		}

	.row.text-center > .col {
		text-align: center;
		}
}

.col > img {
	max-width: 100%;
	}

@media only screen and (min-width: 100px) and (max-width: 599px) {
	.base-row.row {
		flex-direction: row;
		}

	.base-row .m-1of2,
	.base-row .m-2of4,
	.base-row .m-50 {
		width: 50%;
		flex: initial;
		}
	.base-row .m-1of3,
	.base-row .m-33 {
		width: 33.3333%;
		flex: initial;
		}
}

@media only screen and (min-width: 600px) { 
	.row {
		flex-direction: row;
		}

	.m-auto {
		width: auto;
		}
	.m-full,
	.m-1of1,
	.m-2of2 {
		width: 100%;
		flex: initial;
		}
	.m-1of2,
	.m-50 {
		width: 50%;
		flex: initial;
		}
	.m-1of3,
	.m-33 {
		width: 33.3333%;
		flex: initial;
		}
	.m-2of3,
	.m-66 {
		width: 66.6667%;
		flex: initial;
		}
	.m-1of4,
	.m-25 {
		width: 25%;
		flex: initial;
		}
	.m-3of4,
	.m-75 {
		width: 75%;
		flex: initial;
		}
	.m-1of5,
	.m-20 {
		width: 20%;
		flex: initial;
		}
		
	.m-hidden { display: none; }
}

@media only screen and (min-width: 770px) {
	.t-auto {
		width: auto;
		}
	.t-full,
	.t-1of1
	.t-2of2,
	.t-3of3,
	.t-4of4,
	.t-5of5 {
		width: 100%;
		flex: initial;
		}
	.t-1of2,
	.t-2of4,
	.t-3of6,
	.t-50 {
		width: 50%;
		flex: initial;
		}
	.t-1of3,
	.t-2of6,
	.t-33 {
		width: 33.3333%;
		flex: initial;
		}
	.t-2of3,
	.t-4of6,
	.t-66 {
		width: 66.6667%;
		flex: initial;
		}
	.t-1of4,
	.t-25 {
		width: 25%;
		flex: initial;
		}
	.t-3of4,
	.t-75 {
		width: 75%;
		flex: initial;
		}
	.t-1of5,
	.t-3of6,
	.t-20 {
		width: 20%;
		flex: initial;
		}
	.t-2of5,
	.t-40 {
		width: 40%;
		flex: initial;
		}
	.t-3of5,
	.t-60 {
		width: 60%;
		flex: initial;
		}
	.t-4of5,
	.t-80 {
		width: 80%;
		flex: initial;
		}
	.t-hidden { display: none; }
}
@media only screen and (min-width: 1200px) { 
	.d-auto {
		width: auto;
		}
	.d-full,
	.d-2of2,
	.d-3of3,
	.d-4of4,
	.d-5of5 {
		width: 100%;
		flex: initial;
		}
	.d-1of2,
	.d-2of4,
	.d-3of6,
	.d-50 {
		width: 50%;
		flex: initial;
		}
	.d-1of3,
	.d-2of6,
	.d-33 {
		width: 33.3333%;
		flex: initial;
		}
	.d-2of3,
	.d-4of6,
	.d-66 {
		width: 66.6667%;
		flex: initial;
		}
	.d-1of4,
	.d-25 {
		width: 25%;
		flex: initial;
		}
	.d-3of4,
	.d-75 {
		width: 75%;
		flex: initial;
		}
	.d-1of5,
	.d-3of6,
	.d-20 {
		width: 20%;
		flex: initial;
		}
	.d-2of5,
	.d-40 {
		width: 40%;
		flex: initial;
		}
	.d-3of5,
	.d-60 {
		width: 60%;
		flex: initial;
		}
	.d-4of5,
	.d-80 {
		width: 80%;
		flex: initial;
		}
	.d-1of6,
	.d-16 {
		width: 16.6666%;
		flex: initial;
		}
		
	.d-hidden { display: none; }
}

.row.text-center > .col {
	text-align: center;
	}

.col > img {
	max-width: 100%;
	}

img.full {
	width: 100%;
	}
img.half {
	width: 50%;
	float: left;
	}

/* ----- [ Flex Container ] ----------- */
.flex-container {
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	/*justify-content: space-between;
	align-items: center;*/
	padding: 0 20px;
	}
.flex-container > * {
	/*width: 100%;*/
	display: block;
	}

/* is this used? */
@media only screen and (min-width: 1110px) {
	.flex-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		position: relative;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		}
	.flex-container > * {
		/*border: 1px solid gold;*/
		}
	
	.f-top { align-items: flex-start; }
	.f-middle { align-items: center; }
	.f-bottom { align-items: flex-end; }
	.f-left { justify-content: flex-start; }
	.f-right { justify-content: flex-end; }
	.f-center { justify-content: center; }
}


/* ----- [ Page Header / Masthead ] -----------------*/
.page-header {
	/* fixed or not */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding: 0 20px;
	z-index: 500;
	background: var(--white);
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	}
	
.page-header .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	position: relative;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto 20px;
	padding: 12px 0 0;
	border-bottom: 5px solid #222;
	}

.logo-wrap {
	display: block;
	max-width: 160px;
	max-width: 100px;
	margin: 0 0 16px;
	padding: 0;
	text-decoration: none;
	border: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
.logo-wrap img {
	width: 100%;
	}

.small .logo-wrap {
	max-width: 100px;
	}
	
.head-nav-wrapper {
	position: absolute;
	top: 100%;
	left: -20px;
	right: -20px;
	overflow: visible;
	height: 0;
	padding: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
.head-nav-wrapper.is-open {
	height: calc(100vh - 120px);
	overflow: scroll;
	background: #fff;
	padding: 1em 0 2em;
	}
	
.head-meta {
	font-weight: var(--body-bold);
	display: none;
	}
.head-meta a {
	text-decoration: none;
	border: none;
	}
.head-email, .head-phone {
	margin-left: 2em;
	}
	
.menu-item.head-email,
.menu-item.head-phone {
	margin-left: 0;
	}
.menu-item.head-email {
	margin-top: 1em;
	}
	
@media only screen and (min-width: 995px) { 
	.logo-wrap {
		max-width: 160px;
		}
	.head-meta {
		display: block;
		}
	.menu-item.head-email,
	.menu-item.head-phone {
		display: none;
		}
}


/* ----- [ Navigation / Search ] ------ */
.main-navigation {
	/*display: none;*/
	background: #fff;
	background: transparent;
	margin: 0;
	padding: 120px 30px 30px;
	padding: 0 30px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	height: 0;
	}

.main-navigation.is-open {
	/*max-height: 1000px;*/
	opacity: 1;
	visibility: visible;
	height: 100%;
	}

.mega-box .button,
.mega-box p {
	display: none;
	}

.menu-link {
	color: var(--black);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.5;
	}
.menu-link:hover,
.menu-link.on {
	color: var(--black);
	text-decoration: none;
	border-bottom: 2px solid var(--black);
	}
	
.nav-products {
	padding-left: 2em;
	}
.menu-link.mobile-link {
	font-weight: 600;
	}
	
.dropnav .product-box-logo {
	display: none;
	}

@media only screen and (min-width: 995px) { 
	.head-nav-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-end;
		height: auto;
		}

	.main-navigation {
		display: flex;
		/*position: relative;*/
		justify-content: flex-end;
		justify-content: space-between;
		align-items: flex-end;
		width: auto;
		height: auto;
		margin: 0;
		padding: 0;
		background-color: transparent;
		overflow: visible;
		flex: 1 0 auto;
		opacity: 1;
		visibility: visible;
		}
		
	.main-navigation:last-of-type {
		/*justify-content: flex-start;*/
		}

	.menu-item {
		/*position: relative;*/
		display: inline-block;
		margin: 0 0 14px 2em;
		}
	.menu-link {
		font-size: 1.2rem;
		line-height: 1.3;
		font-weight: 700;
		white-space: nowrap;
		padding: 0 0 10px;
		border-bottom: 5px solid transparent;
		}
	.menu-link:hover,
	.menu-link.on {
		color: var(--black);
		border-bottom: 5px solid var(--accent);
		}

	/* Dropdown Nav */
	.dropnav {		
		display: block;
		position: absolute;
		width: auto;
		top: 150%;
		text-align: left;
		background: #fff;
		z-index: 9999;
		visibility: hidden;
		opacity: 0;
		padding: 0.5em 1em;
		box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
		white-space: nowrap;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: translateX(0px);
		-o-transform: none;
		transform: none;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		}
	.menu-item:hover .dropnav {
		top: 160%;
		visibility: visible;
		opacity: 1;
		}
	.dropnav .menu-item {
		display: block;
		text-align: left;
		margin: 0.2em 0;
		padding: 0;
		}
	.dropnav .menu-link {
		font-size: 1rem;
		font-weight: 400;
		padding: 0;
		border-bottom: 2px solid transparent;
		}
	.dropnav li > a:hover,
	.dropnav li > a.on {
		color: #000;
		text-decoration: none;
		border-bottom: 3px solid var(--accent);
		}
	
	.dropnav .product-box-logo {
		display: block;
		}
	.menu-link.mobile-link {
		display: none;
		}
		
	.submenu-toggle {
		position: relative;
		top: -1px;
		z-index: 2;
		display: inline-block;
		height: 12px;
		line-height: 12px;
		font-size: 12px;
		color: #fff;
		}
	.is-solid .submenu-toggle {
		color: #222;
		}
	.submenu-toggle:before {
		content: '\f107';
		font-family: 'FontAwesome', sans-serif;
		}
		
	/* --- Mega Menu Overrides --- */
	.head-nav-wrapper,
	.main-navigation,
	.menu-item {
		position: unset;
		}
	.dropnav {
		left: 0;
		right: 0;
		top: 120%;
		white-space: normal;
		/*padding: 2em;*/
		/*padding: 1em;
		border-radius: 20px;*/
		padding: 0;
		background: transparent;
		box-shadow: none;
		}
	.menu-item:hover .dropnav {
		top: 100%;
		}
	.nav-products {
		display: flex;
		flex-direction: row;
		padding: 1em;
		margin-top: 30px;
		border-radius: 20px;
		background: #fff;
		box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.12);
		}
	/*
	.nav-products::before {
		content: "";
		position: absolute;
		top: 0;
		right: 29.7em;
		height: 0;
		width: 0;
		border: 40px solid transparent;
		border-top: none;
		border-bottom: 40px solid #fff;
		}
	*/
	.nav-products::before,
	.nav-products::after {
		content: "";
		position: absolute;
		top: 0;
		right: 29em;
		height: 50px;
		width: 50px;
		background: #fff;
		transform: rotate(45deg);
		transform-origin: top left;
		box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.12);
		z-index: -1;
		}
	.nav-products::after {
		box-shadow:none;
		z-index: 1;}
		
	.dropnav .menu-item {
		padding: 1.5em;
		position: relative;
		}
	.dropnav .menu-item:not(:first-child) {
		/*border-left: 1px solid #ccc;*/
		}
		
	.mega-box,
	.dropnav .menu-item {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		}
	.mega-box:not(:first-child):before {
		content: "";
		position: absolute;
		top: 40%;
		left: 0;
		bottom: 10%;
		width: 1px;
		background: #ccc;
		}
	.mega-box .button {
		margin: auto 0 0 0;
		display: block;
		}
	.mega-box p {
		display: block;
		}
}

/* ----- [ Menu Trigger (Hamburger) ] ---- */
.menu-trigger {
	position: absolute;
	right: 2%;
	display: block;
	background: transparent;
	width: 44px;
	height: 44px;
	cursor: pointer;
	}
.menu-trigger a {
	display: none;
	}

.menu-trigger .menu-icon {
	/* this span is the central line in the menu menu */
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 26px;
	height: 2px;
	background-color: #000;
	/* these are the upper and lower lines in the menu menu */
	}
.menu-trigger .menu-icon::before, 
.menu-trigger .menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
	}
.menu-trigger .menu-icon::before {
	bottom: 8px;
	}
.menu-trigger .menu-icon::after {
	top: 8px;
	}
.menu-trigger.is-clicked .menu-icon {
	background-color: rgba(0, 0, 0, 0);
	}
.menu-trigger.is-clicked .menu-icon::before, 
.menu-trigger.is-clicked .menu-icon::after {
	background-color: #000;
	}
.menu-trigger.is-clicked .menu-icon::before {
	bottom: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	}
.menu-trigger.is-clicked .menu-icon::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
	
.is-solid .menu-trigger .menu-icon {
	background-color: #222;
	}
.is-solid .menu-trigger.is-clicked .menu-icon {
	background-color: rgba(0, 0, 0, 0);
	}
.is-solid .menu-trigger.is-clicked .menu-icon::before, 
.is-solid .menu-trigger.is-clicked .menu-icon::after {
	background-color: #222;
	}
	
@media only screen and (min-width: 995px) {
	.menu-trigger {
		display: none;
		}
	.menu-trigger .menu-text {
		display: inline-block;
		line-height: 70px;
		}
	.menu-trigger .menu-icon {
		left: auto;
		right: 1.25em;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		}
}


@media only screen and (min-width: 920px) {
	/* doesn't play well with my pop-up content
	 * use break function instead.
	.col-2-text,
	.two-column {
		columns: 2;
		column-gap: 2em;
		}
	.col-2-text > p,
	.two-column > li {
		break-inside: avoid;
		}
	*/
}

/* ----- [ split gallery ] ---------- */
.gallery-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	width: 100%;
	height: auto;
	overflow: hidden;
	}

.item {
	position:relative;
	flex: 1;
	height: 100%;
	overflow: hidden;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	background-position: center;
	background-repeat: none;
	background-size: 1000px;
	border-top: 4px solid #fff;
	/*
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
	*/
	}
.item:first-of-type {
	border-left: none;
	}
.item:last-of-type {
	border-right: none;
	}

/*
.item-1 {
	background-image: url("https://images.unsplash.com/photo-1499198116522-4a6235013d63?auto=format&fit=crop&w=1233&q=80");
	}
.item-2 {
	background-image: url("https://images.unsplash.com/photo-1492760864391-753aaae87234?auto=format&fit=crop&w=1336&q=80");
	}
.item-3 {
	background-image: url("https://images.unsplash.com/photo-1503631285924-e1544dce8b28?auto=format&fit=crop&w=1234&q=80");
	}
.item-4 {
	background-image: url("https://images.unsplash.com/photo-1510425463958-dcced28da480?auto=format&fit=crop&w=1352&q=80");
	}
.item-5 {
	background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?auto=format&fit=crop&w=1234&q=80");
	}
*/

.item:after {
	content:"";
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background: rgb(0,0,0);
	background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%);
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	}

.gallery-wrap .item-content {
	opacity: 1;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	}

.item-content {
	position: relative;
	top: 10%;
	left: 0;
	width: auto;
	margin: 20px;
	margin: 40px 20px;
	z-index: 1;
	}
.item-text,
.item-content p {
	font-family: 'Roboto Condensed', sans-serif;
	opacity: 0;
	opacity: 1;
	max-width: 300px;
	font-size: 17px;
	color: #fff;
	margin: 1em 0 0;
	}
/*
.item-logo {
	 height: 60px;
	 }
	 
.item-content p > br {
	display: none;
	}
*/
	 
@media only screen and (min-width: 850px) { 
	.gallery-wrap {
		flex-direction: row;
		height: 70vh;
		height: calc(100vh - 110px);
		}
		
	.item-content {
		position: absolute;
		top: 50%;
		left: 0;
		bottom: auto;
		width: auto;
		margin: 20px;
		z-index: 10;
		}
	
	.gallery-wrap:hover .item-content {
		opacity: 0;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-webkit-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
		}
	.gallery-wrap:hover .item:hover .item-content {
		display:block;
		opacity: 1;
		top: auto;
		bottom: 20px;
		}
	.gallery-wrap:hover .item:hover .item-text,
	.gallery-wrap:hover .item:hover .item-content p {
		display:block;
		opacity: 1;
		}
	
	.item {
		border-top: none;
		}

	.item:after {
		content:"";
		position: absolute;
		top:0;
		bottom:0;
		left:0;
		right:0;
		background: rgba(0,0,0,0.6);
		background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
		/*background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 120%, rgba(255,255,255,0) 100%);*/
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-webkit-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
		}
		
	.item:hover {
		flex: 7;
		}

	.item:hover:after {
		background: rgb(0,0,0);
		background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 44%, rgba(255,255,255,0) 100%);
		background: rgb(0,0,0);
		background: linear-gradient(90deg, rgba(0,0,0,0.7959558823529411) 0%, rgba(0,0,0,0.04525560224089631) 44%, rgba(255,255,255,0) 100%);
		background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
		background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%);
		}
	
	.item:hover .item-content {
		left: 30px;
		/*top: auto;
		bottom: 8%;*/
		}
	.item:hover > :focus:not(:hover) {
		transform: scale(1.05);
		}
	.item-text,
	.item-content p {
		opacity: 0;
		max-width: 38em;
		width: auto;
		min-width: 28.5em;
		}
	
	.item-content p > br {
		display: inline;
		}
	
	.item-1 { background-position: 10% 50%; }
	.item-2 { background-position: 35% 50%; }
	.item-3 { background-position: 12% 50%; }
	.item-4 { background-position: 55% 50%; }
	.item-5 { background-position: 15% 50%; }
	
}

@media only screen and (min-width: 980px) {
	.item-logo {
		 height: 70px;
		 }
}
@media only screen and (min-width: 1200px) {
	.gallery-wrap:hover .item:hover .item-content {
		top: 40%;
		top: 30%;
		bottom: auto;
		}
}

.top-bar {
	color: var(--accent);
	color: #fff;
	background: var(--black);
	text-align: center;
	margin: 0 -20px;
	padding: 3px 5px;
	}
.top-bar p {
	font-size: 1rem;
	margin: 0 auto;
	}

/* ----- [ Home Page Hero Images ] ----------------------- */	
.hero {
	color: #fff;
	margin: 0 auto;
	padding: 0;
	background: #fff;
	height: 400px;
	height: 600px;
	}

/* home */
/*
.hero-full {
	min-height: 430px;
	max-height: 900px;
	height: 100vh;
	height: 96vh;
	}
*/
/* All heros */	
.hero .inner {
	position: relative;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	}

.hero-overlay {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	background: rgba(0, 0, 0, 0.3);
	}

.hero-text {
	width: 100%;
	max-width: 48em;
	text-align: center;
	color: #fff;
	}
.hero-text h2 {
	color: #fff;
	font-size: 2.5rem;
	}
	
.home-intro p:first-child:first-letter {
	/*font-size: 3rem;
	margin-top: 0;*/
	}

/* fade-out other ACU hero images */
.hero-image-wrapper {
	position: relative;
	}
.hero-image-wrapper img {
	width: 100%;
	}
.hero-image-wrapper.ip-1:after,
.hero-image-wrapper.ip-2:after,
.hero-image-wrapper.ip-3:after,
.hero-image-wrapper.ip-4:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	background: rgba(255,255,255,0.5);
	z-index: 2;
}
.hero-image-wrapper.ip-1:after {
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 22%, rgba(255,255,255,0.6) 22%, rgba(255,255,255,0.6) 100%);
}
.hero-image-wrapper.ip-2:after {
	background: linear-gradient(90deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.6) 22%, rgba(255,255,255,0) 22%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.6) 100%);
}
.hero-image-wrapper.ip-3:after {
	background: linear-gradient(90deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 78%, rgba(255,255,255,0.6) 78%, rgba(255,255,255,0.6) 100%);
}
.hero-image-wrapper.ip-4:after {
	background: linear-gradient(90deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.6) 78%, rgba(255,255,255,0) 78%, rgba(255,255,255,0) 100%);
}

.top-section,
.small-hero {
	border-top: 100px solid #fff;
	}
.small-hero {
	padding: 40px 0 0;
	}
	
.main-section {
	overflow: visible;
	}

@media only screen and (min-width: 995px) {
	.top-section,
	.small-hero {
		border-top: var(--top-margin) solid #fff;
		}
}


/* check if mobile */
@media (pointer: coarse) {
	.hero-section {
	 	background-attachment: initial !important;
		}
}
@media only screen and (min-width: 350px) {
	.hero-full {
		height: 82vh;
		}
}


/* ----- [ Popup Sections ] ------------------*/
.cms-text a,
.cms-text strong {
	position: relative;
	/*display: inline-block;*/
	}
	
.cms-text h3:not(.popup-content h3) {
	margin-top: 1.5em;
	}
.popups-wrapper {
	display: none;
	overflow: visible;
	}
.popup-content {
	position: absolute;
	top: 30px;
	left: 30px;
	right: 30px;
	width: auto;
	background: #fff;
	padding: 1em;
	border: 1em solid #fff;
	border-radius: 1.5em;
	box-shadow: 0px 6px 15px rgba(0,0,0,0.5);
	z-index: 800;
	}
	
.keywords-page .popup-content {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	margin: 0 0 2em;
	width: auto;
	box-shadow: 0px 6px 15px rgba(0,0,0,0.2);
	z-index: 1;
	}

.popup-content h3 {
	margin-bottom: 0.5em;
	}

.popup-text {
	overflow: auto;
	max-height: 26em;
	}
	
.popup-name {
	font-style: italic;
	margin: 0;
	color: #999999;
	}
.popup-name .quickedit2 {
	opacity: 0.5;
	}
figure + .popup-name,
figure + p {
	margin-top: 1em;
	width: 100%;
	}
	
/*
.popup-text p:last-child {
	margin-bottom: 0;
	}
*/	
.popup-link {
	font-weight: 700;
	white-space: nowrap;
	}
.popup-link.on {
	color: var(--accent);
	}
	
.popup-link + span {
	position: relative;
	}


a.close-x {
	position: absolute;
	top: -10px;
	right: 0;
	font-size: 2.8rem;
	text-decoration: none;
	border: none;
	}
	
.popup-figures {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 0 1em;
	}
.popup-content figure,
.popup-congent2 figure {
	max-width: 220px;
	margin: 0 -1px -1px 0;
	padding: 10px;
	border: 1px solid #ccc;
	}
.popup-content figcaption,
.popup-content2 figcaption {
	font-size: 0.8rem;
	padding: 10px;
	/*white-space: nowrap;*/
	}
	
@media only screen and (max-width: 760px) { /*600*/
	.popup-content {
		position: fixed;
		left: 20px !important;
		right: 20px !important;
		width: auto;
		top: 30vh !important;
		}
}


@media only screen and (min-width: 860px) {
	.popup-link + span {
		position: relative;
		}
	.popup-content {
		width: 55vw;
		/*
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
		*/
		}
}

@media only screen and (min-width: 1400px) {
	.popup-content {
		width: 44em;
		}
}

.tech-index ul {
	list-style-type: none;
	}
.tech-index li {
	list-style-type: none !important;
	list-style-position: outside !important;
	margin: 0 !important;
	padding: 0.8em 0 0.8em 2em;
	border-bottom: 1px solid #ccc;
	position: relative;
	}
	
.tech-index li:before {
	content: "";
	position: absolute;
	top: 11px;
	left: 0;
	height: 26px;
	width: 20px;
	background: url('../images/pdf-icon.png') 0 0 no-repeat;
	background-size: 100%;
	opacity: 1;
	}

/* ----- [ ACU Products ] ------------------*/
.ip-acu-color {
	height: 30px;
	width: 100%;
	background: gold;
	}
.color-ip-1 { background: #A5A6A6; }
.color-ip-2 { background: #FFC100; }
.color-ip-3 { background: #00B0EF; }
.color-ip-4 { background: #FF0000; }

/* ----- [ Testimonials Section ] ------------------*/
/* ----- [ Hero Sections ] ------------------*/
/* ----- [ Badges Section (Not used) ] --------------- */

/* ----- [ Call to Action Section ] --------------- */
.call-to-action {
	color: #fff;
	text-align: center;
	margin-top: auto;
	padding: 1em;
	background: var(--accent);
	}
.call-to-action h3,
.call-to-action a {
	color: #fff;
	font-weight: var(--display-bold);
	}


/* ----- [ About Pages ] --------------------------- */
.form-wrapper {
	font-size: 1.2rem;
	box-shadow: none;
	padding: 20px 4%;
	margin: 0;
	/*max-width: 690px;*/
	width: 100%;
	border: 6px solid #eeeeee;
	border-radius: 15px;
	}

/* ----- [ Product Boxes ] --------------------------- */
.product-box {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	border: 6px solid var(--accent);
	border-radius: 1.5em;
	margin-bottom: 1em;
	overflow: hidden;
	height: 95%;
	}
.product-box-text {
	padding: 1.3em 1.3em 0;
	}
.product-box-logo {
	max-height: 75px;
	height: auto;
	max-width: 100%;
	width: auto;
	margin: 0 0 1em;
	}
.product-box-text p,
.mega-box p {
	font-size: 0.95rem;
	}
.mega-box p {
	/*max-height: 320px;
	overflow: scroll;*/
	}
.product-box-text p {
	margin-bottom: 0;
	}
.product-box .button {
	margin: 0 1.3em 1.3em;
	margin-top: auto;
	width: auto;
	}


/* ----- [ Product Pages ] --------------------------- */
.product-header {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column-reverse;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 1em 0 1em;
	}
.product-header h1 {
	margin: 0;
	}
.product-logo {
	max-width: 120px;
	margin-bottom: 1em;
	}
.sidebar {
	padding: 6%;
	border: 6px solid var(--accent);
	border-radius: 30px;
	position: sticky;
	top: 170px;
	}
	
.sidebar-buttons {
	margin: 1em 0 -1em;
	margin-right: 0.5em;
	z-index: 9999;
	}
.sidebar-buttons .button {
	margin-right: 0.5em;
	}
/*
.sidebar-buttons .button:first-of-type,
.sidebar-buttons .button:nth-of-type(odd) {
	margin-right: 0.5em;
	}
*/

@media only screen and (min-width: 680px) {
	.product-header {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		margin: 1em 0 1em;
		}
	.product-logo {
		max-width: 160px;
		margin-bottom: 0;
		}
}

/* ----- [ Accessories/Tech Info: Docs ] ------------ */
/* ----- [ Product Sidebar/Accordion ] ------------ */
.spot-row {
	overflow: visible;
	}
dl.accordion {
	margin: 0;
	padding: 0;
	position: relative;
	overflow: visible;
	/*border-top: 1px solid #ccc;*/
	}
dl.accordion > dt {
	font-size: 1.3rem;
	line-height: 1.3em;
	font-weight: 700;
	list-style: none;
	}

dl.accordion > dt > a {
	color: #000;
	display: block;
	vertical-align: middle;
	position: relative;
	padding-right: 1.5em;
	padding-bottom: 0.5em;
	text-decoration: none;
	transition: all .2s ease; 
	border-bottom: 1px solid #ccc;
	}
dl.accordion > dt span {
	display: block;
	margin: 0;
	text-transform: none;
	font-weight: 400;
	}
dl.accordion > dt > a:before {
	content: '+';
	color: var(--black);
	position: absolute;
	right: 0;
	top: 0;
	font-size: 2rem;
	font-weight: 700;
	}
dl.accordion > dt > a.open {
	border-bottom: none;
	}
dl.accordion > dt > a.open:before {
	content: '−'; /* true minus sign */
	}
dl.accordion dd {
	padding: 0;
	margin: 0 0 0.6em;
	max-height: 0;
	opacity: 0;
    transition: all .4s ease;
    overflow: hidden;
	}
dl.accordion dd.is-open {
	padding: 0 0 15px;
	max-height: 1000px;
	opacity: 1;
	overflow: visible;
	border-bottom: 1px solid #ccc;
	}
dl.accordion > dt > a:hover:before {
	}
dl.accordion p {
	line-height: 1.8;
	padding-right: 2em;
	}

/* ----- [ Drawings ] --------------------------- */
.drawings {
	list-style: none !important;
	/*columns: 2;*/
	display: flex;
	flex-wrap: wrap;
	}
.drawings li {
	list-style-type: none !important;
	margin: 0 0 1em !important;
	break-inside: avoid;
	flex: 1;
	min-width: 150px;
	max-width: 175px;
	font-size: 0.8rem;
	line-height: 1.2;
	font-weight: var(--body-med);
	}
.drawings span {
	display: block;
	margin: 0.2em 0.5em;
	}
.drawings a {
	display: block;
	border: 4px solid transparent;
	}
.drawings a:hover {
	border: 4px solid var(--accent);
	}

/* ----- [ Accessories & Tech Info Pages ] --------------------------- */
.doc-section {
	padding-top: 10px;
	border-top: 1px solid #ccc;
	}

.doc-section h2 {
	margin: 1.5em 0 0.5em;
	}
.doc-section h2:first-child {
	margin-top: 0;
	}
	
.doc-section h2,
.doc-section h3 {
	position: relative;
	cursor: pointer;
	}
	
.doc-list {
	list-style: none;
	margin-bottom: 2em;
	padding: 0 0.5em ;
	}
.doc-list li {
	list-style-type: none;
	padding: 0 0 1em;
	padding-left: 5px;
	margin: 0 0 0.5em;
	padding: 0;
	}

.doc-title {
	font-size: 1.2rem;
	margin: 0;
	}
.doc-list a:hover,
.doc-list a:hover h3 {
	color: var(--accent);
	}

.doc-thumb {
	width: 80px;
	float: left;
	margin: 0 1em 1em 0;
	box-shadow: 0 3px 5px rgba(0,0,0,0.1);
	}
.doc-icon {
	width: 20px;
	float: left;
	margin: 0 0.7em 0 0;
	box-shadow: 0 3px 5px rgba(0,0,0,0.1);
	}	
.doc-section p {
	margin-bottom: 0.5em;
	}

.clearfix::after,
.doc-list li::after {
	content: "";
	clear: both;
	display: table;
	}
	
iframe + .no-script {
	display: none;
	}

/* ----- [ Buttons ] --------------------------- */
button,
.button,
.submit-button {
	font-family: var(--body-font);
	display: inline-block;
	padding: 0.6em 1em;
	color: var(--black);
	background: var(--accent);
	background: var(--white);
	cursor: pointer;
	width: 100%;
	opacity: 1;
	font-size: 1.1rem;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 0;
	margin-bottom: 1em;
	border: 3px solid var(--accent);
	border-radius: 10px;
	text-align: center;
	vertical-align: middle;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
button:hover,
.button:hover,
.submit-button:hover {
	color: #fff !important;
	background: var(--accent);
	text-decoration: none;
	}
	
.button.outline {
	background: none;
	color: #d64236;
	}
.button-small {
	font-size: 0.95rem;
	padding: 0.5em 0.8em;
	}
	
p > .button {
	margin-bottom: -1em;
	}
	
.cms-text .button {
	font-size: 1rem;
	padding: 0.5em 0.8em;
	margin-bottom: 0.6em;
	}
	
@media only screen and (min-width: 600px) { 
	button,
	.button,
	.submit-button {
		width: auto;
		}
}

.button-icon {
	max-height: 24px;
	width: auto;
	margin: -4px 0.5em -2px 0;
	display: inline;
	vertical-align: middle;
	}

/* ----- [ Footer ] ---------------------------- */
.page-footer {
	color: #fff;
	padding: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	background: var(--black) url('../images/ipower-logo-10p.png') 22% 50% no-repeat;
	background-size: 550px;
	}
	
.page-footer .inner {
	padding: 60px 20px 1px;
	max-width: 1280px;
	}
.page-footer p,
.page-footer li {
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.3;
	font-weight: var(--body-light);
	margin: 0 0 0.5em;
	text-align: left;
	}
.page-footer li {
	margin: 0;
	}

.page-footer a {
	color: #fff;
	font-weight: var(--body-light);
	border-bottom: none;
	}
.page-footer a:hover {
	color: #fff;
	border-bottom: 1px solid #fff;
	}
	
.footer-logo {
	max-width: 120px !important;
	margin: 0 auto 1.5em 0;
	}

.made-in-britain {
	margin-top: 3em;
	margin-bottom: 2em;
	}
.made-in-britain img {
	max-width: 60px;
	float: left;
	margin-right: 10px;
	}
.made-in-britain span {
	}
	
.copyright-credits {
	font-size: 0.9rem !important;
	color: #999999 !important;
	}
.copyright-credits a {
	color: #999999 !important;
	text-decoration: none;
	border-bottom: 1px dotted #999999;
	}
.copyright-credits a:hover {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid #fff;
	}
	
@media only screen and (min-width: 600px) { 
	.footer-branding {
		/*max-width: 170px;*/
		margin-right: auto;
		}
		
	.footer-logo {
		display: block;
		width: 100%;
		}
	.page-footer p,
	.page-footer li {
		color: #fff;
		font-size: 1rem;
		line-height: 1.6;
		font-weight: var(--body-light);
		margin: 0 0 0.5em;
		text-align: left;
		}
}

/* ----- [ Social Media Icons ] ---------------- */
/* ----- [ SVG Social Media Icons ] --------------- */
.social-icons-wrapper {
    text-align: left;
	margin: 0.2em auto 30px;
	}
.social-icons-wrapper .social-icon {
    color: #fff;
    display: inline-block;
    height: 24px;
	width: 24px;
	margin: 0 1em 0 0;
	}
/*
.social-icons-wrapper .social-icon:last-of-type {
	margin-right: 0;
	}
*/
.social-icons-wrapper .social-icon a,
.social-icons-wrapper .social-icon a:visited {
    color: #fff;
    opacity: 1;
    border: none;
	}
.social-icons-wrapper .social-icon a:hover,
.social-icons-wrapper .social-icon a:active {
    color: var(--accent);
    opacity: 1;
    border: none;
	}

.social-icons-wrapper .social-icon svg {
    fill: currentColor;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
	}

.page-footer .col {
	margin-bottom: 1em;
	}

@media only screen and (min-width: 600px) { 
	.social-icons-wrapper {
		text-align: left;
		}
	.social-icons-wrapper .social-icon {
		color: #fff;
		display: inline-block;
		height: 20px;
		width: 20px;
		margin: 0 12px 0 0;
		}
}

.top-link {
    position: fixed;
    bottom: 50px;
    right: 4%;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    z-index: 9;
	}
.top-link a {
	color: var(--white);
	font-size: 32px;
	line-height: 36px;
    display: block;
    height: 40px;
    width: 40px;
    outline: medium none;
    position: relative;
    z-index: 0;
    text-align: center;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	border: 2px solid var(--white);
	border-radius: 50%;
    }
.top-link a:hover {
	border: 2px solid var(--accent);
	}
.top-link.show {
	opacity: 1;
	}

/* ----- [ CMS Content ] ------------------------*/
/* About Page images */
.about-page .cms-text p > img {
	max-width: 100%;
	display: block;
	border-radius: 25px;
	}

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	}
.cms-text li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
.cms-text ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
	
.cms-text h2 {
	margin-bottom: 0.6em;
	}
.cms-text p + h2,
.cms-text ul + h2 {
	margin-top: 1em;
	}
	
.cms-text hr {
	border: none;
	border-top: 2px solid #222;
	margin: 1.2em 0 1.4em;
	}
	
.cms-text table {
	width: 100%;
	}
.cms-text td {
	font-size: 0.95em;
	padding: 8px;
	border-top: 1px solid #ccc;
	}
.cms-text td p {
	font-size: 1em;
	margin: 0;
	line-height: 1.2 !important;
	padding-right: 0 !important;
	}
.cms-text td:first-child {
	background: #ebf3da;
	}
	
.bordered {
	width: 100%;
	margin: 0 0 20px;
	padding: 16px 0;
	border: 6px solid var(--accent);
	border-radius: 30px;
	overflow: hidden;
	}
.bordered p {
	padding: 1.5em;
	}
.bordered .align_left {
	margin-left: 20px;
	}
	
/* ----- [ Misc. / Utility Styles ] ------------ */
.nobreak {
	white-space: nowrap;
	}
	
.rule-above {
	margin-top: 1em;
	padding-top: 0.5em;
	border-top: 1px solid #ccc;
	}

.overflow-visible {
	overflow: visible;
	}
.cover-image {
	object-fit: cover;
	height: 100%;
	width: 100%;
	}
.fit-image {
	max-width: 100%;
	}
	
img.right {
	float: right;
	}
img.inline {
	display: inline !important;
	}
.fright {
	float: right;
	}
.fleft {
	float: left;
	}
	
/* Utility */
/* global section centering */
.center,
.center p,
.center h1,
.center h2,
.center h3,
.center h4 {
	text-align: center;
	}
	
.text-left,
.text-left p,
.text-left li,
.text-left h2,
.text-left h3 {
	text-align: left;
	}
.text-right,
.text-right p,
.text-right li {
	text-align: right;
	}
.text-center {
	text-align: center;
	}

.align_left {
	float: left;
	margin: 0 1em 1em 0;
	}
.align_right {
	float: right;
	margin: 0 0 1em 1em;
	}
.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	}

#editpage {
	position: fixed;
	bottom: 0;
	left: 0; 
	padding: 5px 6px; 
	background: #db1174; 
	color: #fff; 
	display: block;
	font-weight: bold; 
	z-index: 1000;
	}
#editpage:hover {
	background: #ffffcc;
	color: #000; 
	}
.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
	}
#termly-code-snippet-support p,
#termly-code-snippet-support li,
#termly-code-snippet-support td {
	font-size: 1em;
	line-height: 1.3;
	}
#termly-code-snippet-support img {
	display: inline;
	}

/* PRINT STYLES */
@media print {
	/* If you're going to have a print stylesheet, now's the time */
}

