/**
	@Author:	Paul Strandoo for Spi-des-ign
	@Date:		14 March 2024
	@Notes:		Kanth UK (v2)
	
	CONTENTS
	-------------
	- Global resets
	- Global typography & layout rules
	- Page styles
	- Post styles 
	- General bits 
	
	FONTS & COLORS
	-------------
	dark blue: #070e38 / rgba(7,14,56,1);
	light blue: #1377bb / rgba(19,119,187,1);
	light blue2: #2069b3 / rgba(32,105,179,1);
	red: #de1a01;
	other red: #fe452d
	
	font-family: 'Lato', sans-serif; 400, 700
	
	To Do: update Font Awesome
*/

:root {
	--display-font: 'Lato', sans-serif;
	--display-light: 300;
	--display-med: 400;
	--display-bold: 500;
	
	--body-font: 'Lato', sans-serif;
	--body-light: 300;
	--body-med:   400;
	--body-bold:  700;
	--body-x-bold:900;
	
	--text-color: #333333;
	--head-color: #222222;
	--black: #222222;
	--hover-color: #666666;
	
	--top-margin: 150px;
	--header-height: 150px;
	
    --inner: 1070px;
    --inner-wide: 1070px;
    --inner-x-narrow: 620px;
    --inner-narrow: 840px;
    --inner-x-wide: 1640px;
    --inner-max:  1920px; /* inner-x-wide */
    --inner-full: 100%;

	
	--light-grey: #f1f1f1;
	--light-grey: #F5F5F5;
	--light-grey: #ececec;
	
	--grey0: #575656;
	--grey1: #ebebeb;
	--grey2: #9f9f9f;
	--grey3: #939393;
	--grey4: #f6f6f6;
	--white: #ffffff;
	
	--section-pad-large: 7em;
	--section-pad-med: 5em;
	--section-pad-small: 3em;
	
    /*--section-default-padding: 70px 0;
    --section-mobile-padding: 40px 0;*/
	}

@import url("font-awesome.min.css");
/**
 * Reset stylesheet to normalize styles across browsers
 */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,label,input,textarea,p,blockquote,th,td {  
	margin:0; 
	padding:0; 
	}
table { 
	border-collapse:collapse; 
	border-spacing:0; 
	}
fieldset,img {  
	border:0; 
	}
address,caption,cite,code,dfn,em,strong,th,var { 
	font-style:normal; 
	font-weight:normal; 
	}
ol,ul,li { 
	list-style:none; 
	margin: 0;
	padding: 0;
	}
caption,th { 
	text-align:left; 
	} 
h1,h2,h3,h4,h5,h6 { 
	font-size:100%; 
	font-weight:normal; 
	} 
q:before,q:after { 
	content:''; 
	} 
abbr,acronym { 
	border:0; 
	} 
a {
	text-decoration: none;
	}
img {
	display: block;
	vertical-align: middle;
	/*max-width: 100%;*/
	}

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

@-ms-viewport {
	width: device-width;
	}

html {
	font-size: 100%;
	height: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 156px;
	}

body {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	}
body, input, textarea, table {
	font-family: var(--body-font);
	font-weight: var(--body-med);
	color: var(--text-color);
	font-style: normal;
	font-size: 16px;
	line-height: 1.6;
	}

/* ----- [ Typography ] ----- */
p,
li,
td {
	font-family: var(--body-font);
	font-weight: var(--body-med);
	color: #666;
	margin: 0 0 1em;
	}

li,td {
	margin: 0;
	}

em {
	font-style: italic;
	}
b,
strong {
	font-family: var(--body-font);
	font-weight: var(--body-bold);
	color: #222;
	}

a {
	color: var(--black);
	font-weight: inherit
	/*border-bottom: 1px solid red;*/
	}
a:hover {
	color: var(--hover-color);
	}

/* Headings */
h1,h2,h3,h4,h5,h6 {
	color: var(--head-color);
	font-weight: normal;
	line-height: 1.3em;
	margin: 0 0 0.5em;
	}
	
h1,
.h1,
#LoginRegisterProfileForm > h2 {
	font-size: 1.5em;
	font-size: 1.3em;
	line-height: 1.1em;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 1.5em;
	}

/* new universal */
.product-head {
	font-size: 1.1em;
	font-size: 0.9rem;
	line-height: 1.2em;
	line-height: 1.3;
	font-weight: 700;
	margin: 0 0 2em;
	}
	
h2,
.h2 {
	font-size: 1.4em;
	font-size: 1.2rem;
	line-height: 1.3;
	font-weight: 500;
	}
h3,
.h3 {
	font-size: 1.2em;
	font-size: 1rem;
	font-weight: 500;
	}
h4 {
	font-size: 1em;
	font-weight: 700;
	}
h5 {
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	}

p + h2,
p + h3,
ul + h2,
ul + h3 {
	margin-top: 1.5em;
	}

img {
	display: block;
	}

.light-bg {
	background: #fff;
	background: transparent;
	}


/* ----- [ Structure ] -----------------*/
header,
section,
footer {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	}
section {
	padding: 30px 0;
	padding: 0;
	}
.inner {
	position: relative;
	max-width: var(--inner);
	margin: 0 auto;
	padding: 0 20px;
	}

.inner-ultra-narrow,
.inner-x-narrow {
	max-width: var(--inner-x-narrow);
	}
.inner-narrow {
	max-width: var(--inner-narrow);
	}
.inner-wide {
	max-width: var(--inner-wide); /* same as default */
	}
.inner-x-wide {
	max-width: var(--inner-x-wide);
	}
.inner-max {
	max-width: var(--inner-max);
	}
.inner-full {
	max-width: var(--inner-full);
	padding: 0;
	}

@media only screen and (max-width: 599px) {
	.inner-full {
		padding: 0 20px;
		}
}
	

/* ----- [ Strandoo Simple Grid System v2.8 ] --------------- */
.row,
.flex-row {
	display: block;
	margin: 0 -15px;
	overflow: hidden;
	position: relative;
	}

.stretch {
	align-items: stretch;
	}

.row > .col {
	/*width: 100%;*/
	vertical-align: top;
	padding: 0 15px;
	padding: 0;
	margin-bottom: 30px;
	}

/* ----- [ 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;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	}

.col {
	flex: 1;
	padding: 0;
	max-width: 100%;
	}


@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;
		}
	.row.padding-40 {
		margin-left: -40px;
		margin-right: -40px;
		}
	.row.padding-50 {
		margin-left: -50px;
		margin-right: -50px;
		}

	.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;
		}
	.padding-40 > .col {
		padding-left: 40px;
		padding-right: 40px;
		}
	.padding-50 > .col {
		padding-left: 50px;
		padding-right: 50px;
		}

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

@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: none;
		flex: initial;
		}
	.base-row .m-1of3,
	.base-row .m-33 {
		width: 33.3333%;
		flex: none;
		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-1of1,
	.d-2of2,
	.d-3of3,
	.d-4of4,
	.d-5of5,
	.d-6of6 {
		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-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-5of6,
	.d-8 {
		width: 83.3333%;
		flex: none;
		}
	.d-hidden { display: none; }
}

/* 600px / 37.5em equivalent breakpoint */
/*@media only screen and (min-width: 600px) { */
@media print, screen and (min-width: 600px) {
	.row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		}

	.row > .col {
		margin-bottom: 0;
		}
	
	.row-2 > .col { width: 50%; }
	.row-3 > .col { width: 33.333%; }
	.row-4 > .col { width: 25%;}
	.row-5 > .col { width: 20%;}
	.row-6 > .col { width: 16.666%;}

	.row-2 .span-2,
	.row-3 .span-3,
	.row-4 .span-4 { width: 100%; }
	.row-3 .span-2 { width: 66.666%; }
	.row-4 .span-2 { width: 50%; }
	.row-4 .span-3 { width: 75%; }
	.row-5 .span-2 { width: 40%; }
	.row-5 .span-3 { width: 60%; }
	.row-5 .span-4 { width: 80%; }
	
	/* Partner's Portal */
	.row > .partner-main {
		width:75%;
		width: calc(100% - 250px);
		width: calc(100% - 260px);
		margin-right: 30px;
		margin-right: 80px;
		}
	.row > .partner-sidebar {
		width: 25%;
		width: 220px;
		width: 180px;
		}
}

@media print, screen and (min-width: 640px) { /* 600 */
	.row-story > .col { width: 50%; }
}
@media print, screen and (min-width: 1170px) { 
	.row-story > .col { width: 33.333%; }
}
@media print, screen and (min-width: 1570px) { 
	.row-story > .col { width: 25%; }
}

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

/* ----- [ Page Wrapper / Overlay / Header ] -----------------*/
.page-wrapper {
	position: relative;
	flex: 1 0 auto;
	-webkit-transition: transform .3s ease;
	-moz-transition: transform .3s ease;
	-o-transition: transform .3s ease;
	transition: transform .3s ease;
	}
/*
.page-wrapper.is-open {
	-webkit-transform: translateX(calc(60px - 100vw));
	-moz-transform: translateX(calc(60px - 100vw));
	-ms-transform: translateX(calc(60px - 100vw));
	-o-transform: translateX(calc(60px - 100vw));
	transform: translateX(calc(60px - 100vw));
	}
	
@media only screen and (min-width: 660px) {
	.page-wrapper.is-open {
		-webkit-transform: translateX(-460px);
		-moz-transform: translateX(-460px);
		-ms-transform: translateX(-460px);
		-o-transform: translateX(-460px);
		transform: translateX(-460px);
		}
}
*/

.page-overlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: #666;
	background: rgba(0,0,0,0.6);
	z-index: 700;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.page-overlay.is-open {
	visibility: visible;
	opacity: 1;
	}

.page-header {
	position: fixed;
	padding: 0;
	width: 100%;
	background: #fff;
	background: rgba(255,255,255,0.95);
	background: transparent;
	/*box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);*/
	z-index: 100;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}

@media only screen and (max-width: 599px) {
	.page-header {
		position: absolute;
		}
}

.home-page div {
	/*border: 1px solid red;*/
	}

.page-header .inner {
	position: static;
	overflow: visible;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: space-between; 
	align-items: stretch;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}

.page-header.nav-is-visible {
	-webkit-transform: translateX(-260px);
	-moz-transform: translateX(-260px);
	-ms-transform: translateX(-260px);
	-o-transform: translateX(-260px);
	transform: translateX(-260px);
	}
	
.page-header.small {
	height: 38px;
	height: auto;
	padding: 5px 0;
	background: #3E3D3D;
	background: rgba(0,0,0,0.8);
	/*box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);*/
	}

.logo-wrapper {
	width: 90px;
	margin: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	}
.logo-wrapper img {
	width: 100%;
	}

.nav-wrapper {
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	justify-content: flex-start;
	align-items: stretch;
	height: 0;
	overflow: hidden;
	}

@media only screen and (min-width: 600px) {
	.logo-wrapper {;
		width: 96px;
		}
}

@media only screen and (min-width: 1024px) {
	.page-header {
		position: fixed;
		}
	.page-header .inner {
		flex-direction: row;
		height: 1px; /* for clickable page elements */
		}
	.logo-wrapper {
		width: 96px;
		}

	.nav-wrapper {
		height: auto;
		overflow: visible;
		}
}

/* ----- [ Menu and Search Triggers ] ----------- */
.menu-toggle {
	display: block;
	background: transparent;
	width: 50px;
	height: 50px;
	position: absolute;
	cursor: pointer;
	z-index: 100;
	/*top: 16px;*/
	right: 10px;
	}

@media only screen and (max-width: 599px) {
	.menu-toggle {
		position: fixed;
		top: 
		}
	.header-fixed .menu-toggle {
		top: 10px;
		}
}
	
.menu-toggle a {
	display: none;
	}

.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-icon::before, 
.menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
	}
.menu-icon::before {
	bottom: 8px;
	}
.menu-icon::after {
	top: 8px;
	}
.is-clicked .menu-icon {
	background-color: rgba(0, 0, 0, 0);
	}
.is-clicked .menu-icon::before, 
.is-clicked .menu-icon::after {
	background-color: #000;
	}
.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);
	}
.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);
	}

/* ----- [ Navigation ] ------------------- */
.nav-bar {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	}
.nav-bar.closed {
	height: 0;
	}
.nav-bar.is-open {
	height: 400px;
	}	

.main-nav {
	display: inline-block;
	display: block;
	text-align: left;
	}
.nav-level-1,
.nav-level-2 {
	display: block;
	margin: 0;
	}
.nav-level-1 a,
.nav-level-2 a {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: #222;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 10px 10%;
	}
.nav-level-1 a:hover,
.nav-level-1.nav-open > a,
.nav-level-2 a:hover {
	color: #666;
	text-decoration: none;
	}
	
/* new side menu 
.side-nav-link {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	}
*/

@media only screen and (min-width: 1024px) { /* 800 */
	.menu-toggle {
		display: none;
		}
	.main-nav {
		text-align: right;
		background: none;
		border: none;
		}
	.nav-level-1 {
		display: inline-block;
		vertical-align: middle;
		margin: 0 0 0 30px;
		padding: 0 0 20px;
		}
	.nav-level-1 a {
		position: relative;
		display: inline;
		font-size: 12px;
		padding: 0 0 5px;
		border: none;
		}
	.nav-level-1:hover a,
	.nav-level-1 a.on {
		border-left: none;
		}
		
	.nav-level-1.has-children:first-of-type:hover > a:after,
	.nav-level-1.has-children:first-of-type:hover > a.on:after {
		display: none;
		}	
}

/* ----- [ Universal CTA Banner ] ----------- */
.topbar {
	color: #fff;
	background: #000;
	text-align: center;
	padding: 4px 30px;
	/*background: #000 url('../images/union-jack.png') top right no-repeat;
	background-size: contain;*/
	/*border-bottom: 1px solid black;*/
	}
.topbar p,
.topbar h2,
.topbar a {
	color: #ffffff;
	font-size: 0.95rem;
	line-height: 1.4;
	margin: 0;
	font-weight: 700;
	/*text-transform: uppercase;*/
	letter-spacing: 0.05em;
	}
.topbar a {
	font-weight: bold;
	text-decoration: underline;
	}
	
.topbar img {
	display: inline;
	vertical-align: middle;
	}

.topbar-rev {
	background: #fff;
	border-bottom: 1px solid #000;
	}
.topbar-rev p,
.topbar-rev h2,
.topbar-rev a {
	color: #000000;
	}

/* ----- [ Cart and Search: TODO: move up? ] ----------- */
.top-meta {
	text-align: right;
	padding: 0;
	margin: 12px 0 0;
	}
.top-meta-item {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 30px;
	padding: 0 0 20px;
	}
.top-meta-item a {
	display: inline;
	font-size: 12px;
	padding: 0 0 5px;
	font-weight: 700;
	color: #222;
	text-transform: uppercase;
	letter-spacing: 2px;
	}

.bag-icon,
.search-icon {
	width: 20px;
	margin-bottom: -4px;
	}
.search-icon {
	width: 20px;
	margin-bottom: -10px;
	display: none;
	}
.van-icon {
	width: 22px;
	margin-bottom: -4px;
	}

.i-search-open,
.search-open .i-search-close {
	width: 20px;
	display: block;
	}
.i-search-close,
.search-open .i-search-open {
	width: 22px;
	display: none;
	}
	
a.search-trigger {
	display: block;
	}
.cart-link:hover,
.search-trigger:hover,
.close-cart:hover {
	opacity: 0.6;
	}

.menu-link {
	display: none;
	}

.menu-link img {
	width: 20px;
	height: 20px;
	margin-top: -3px;
	display: inline-block;
	vertical-align: middle;
	}

@media only screen and (min-width: 1024px) {
	.search-icon {
		display: inline-block;
		}
}

/* ----- [ Mobile Nav and Search ] ----------- */
.subnav {
	padding: 0 10px 20px 15px;
	display: none;
	}

/* style menu items which have a submenu  */ 
.side-nav li {
	margin: 10px 0;
	}
.side-nav a {
	display: block;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	}

.side-nav .subnav li {
	margin: 8px 0;
	}
.side-nav .subnav a {
	font-size: 18px;
	text-transform: none;
	letter-spacing: 0;
	}
	

/* this is the right arrow to show that the item has a submenu  */
.side-nav .has-children > a,
.offscreen-nav .has-children > a {
	position: relative;
	}
.side-nav .has-children > a::after,
.offscreen-nav .has-children > a::after {
	content: '';
	display: block;
	height: 11px;
	width: 8px;
	position: absolute;
	top: 50%;
	bottom: auto;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 1em;
	background: url("../images/cd-arrow.svg") no-repeat center center;
	background-size: 8px 11px;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	}
.side-nav .has-children > a.submenu-open::after,
.offscreen-nav .has-children > a.submenu-open::after {
	-webkit-transform: translateY(-50%) rotate(90deg);
	-moz-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	-o-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
	}


.dropnav {
	visibility: hidden;
	position: absolute;
	position: relative;
	top: 80%;
	left: 0;
	right: 0;
	height: 0;
	z-index: 90;
	opacity: 0;
	background: #fff;
	background: rgba(255, 255, 255, 0.95);
	}

.nav-open .dropnav {
	display: block;
	visibility: visible;
	top: 100%;
	white-space: nowrap;
	padding: 0;
	opacity: 1;
	height: auto;
	}

.side-shopping-cart,
.side-navigation {
	position: fixed;
	padding: 25px 20px 0;
	top: 0;
	bottom: 0;
	left: 100%;
	width: calc(100vw - 50px);
	background: #fff;
	z-index: 800;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.side-shopping-cart.is-open,
.side-navigation.is-open {
	-webkit-transform: translateX(calc(50px - 100vw));
	-moz-transform: translateX(calc(50px - 100vw));
	-ms-transform: translateX(calc(50px - 100vw));
	-o-transform: translateX(calc(50px - 100vw));
	transform: translateX(calc(50px - 100vw));
	}

@media only screen and (min-width: 660px) {
	.side-shopping-cart,
	.side-navigation {
		width: 460px;
		}
	.side-shopping-cart.is-open,
	.side-navigation.is-open {
		-webkit-transform: translateX(-460px);
		-moz-transform: translateX(-460px);
		-ms-transform: translateX(-460px);
		-o-transform: translateX(-460px);
		transform: translateX(-460px);
		}
}

@media only screen and (min-width: 1024px) {
	.dropnav {
		position: absolute;
		height: auto;
		}
		
	.dropnav > ul {
		margin: 0 auto;
		padding: 0 20px 10px;
		max-width: 1070px;
		width: auto;
		overflow: hidden;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		}
}


/* new menu */
.offscreen-nav {
	}
.os-menu-item {}
.os-menu-link {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: block;
	padding: 0.6em 0;
	}
.offscreen-nav .subnav {
	padding: 0 0 0.6em;
	}
.subnav .os-menu-link {
	font-weight: 500;
	}

/* ----- [ Search Form: Header ] -------------- */
.drop-search {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 0 15px;
	text-align: left;
	z-index: 110;
	height: auto;
	background: #fff;
	background: rgba(255,255,255,1);
	}
.search-open {
	display: block;
	}

.header-search,
.side-search {
	max-width: 1040px;
	margin: 30px auto;
	overflow: hidden;
	}
.header-search .button,
.side-search .button {
	float: right;
	height: auto;
	height: 60px;
	padding-right: 0;
	/*padding: 6px 10px;
	border-radius: 0 3px 3px 0;*/
	background: none !important;
	border: none !important;
	}
.header-search .button:hover,
.side-search .button:hover {
	background: none;
	}
.search-input,
.side-search .search-input {
	font-size: 40px;
	font-weight: 300;
	padding: 10px 0;
	/*border-radius: 3px 0 0 3px;*/
	border: none;
	border-bottom: 1px solid #d1d1d1;
	background: none;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
	}

.side-search {
	margin: 20px auto;
	}

.side-search .search-input {
	font-size: 18px;
	font-weight: 400;
	}
.side-search .button {
	height: auto;
	margin-right: 10px;
	}


@media only screen and (min-width: 1024px) {
	.header-search {
		display: block;
		}
}

.search-submit {
	border: none;
	display: block;
	opacity: 1;
	width: 30px;
	height: 40px;
	text-indent: -9999px; 
	cursor: pointer;
	outline: none;
	float: right;
	}
.search-query {
	width: 100%;
	border: none;
	border-bottom: 1px solid #ccc;
	padding: 0.5em 0;
	margin-top: 10px;
	outline: none;
	}

@media only screen and (min-width: 1024px) {
	.search-trigger,
	.search-submit {
		border: none;
		display: block;
		}
}

.pad-cart {
	border-bottom: 1px solid #ccc;
	width: 100%;
	}
.pad-cart td,
.pad-cart th {
	font-size: 1em;
	line-height: 1.2em;
	padding: 12px 0;
	vertical-align: middle;
	font-weight: 400;
	}
.pad-cart th {
	font-size: 0.9em;
	padding: 10px 0 12px;
	letter-spacing: 0.05em;
	}
.pad-cart th:first-of-type {
	text-align: left;
	}

.pad-cart td {
	border-top: 1px solid #ccc;
	}
	
.pad-cart .td-pad {
	padding: 12px 10px;
	}

.cart-image-large {
	max-width: 120px;
	margin: 0 20px 0 0;
	}

/* ----- [ Shopping Cart ] -----------------*/
.cart-wrapper {
	position: absolute;
	overflow: auto;
	top: 80px;
	bottom: 0;
	right: 20px;
	left: 20px;
	padding-bottom: 50px;
	}
.side-cart-head {
	font-size: 1.6em;
	}
.close-cart {
	position: absolute;
	top: 25px;
	right: 20px;
	cursor: pointer;
	font-size: 20px;
	}

.remove-check {
	position: relative;
	cursor: pointer;
	}
.remove-text {
	margin: 5px 0;
	border-bottom: 1px solid red;
	}

.col.checkout-cart {
	overflow: hidden;
	}

.close-disc-icon {
	opacity: 0.5;
	}

.close-disc-icon:hover {
	opacity: 1;
	}

.empty-cart {
	border: 2px solid #000;
	padding: 10px;
}

.cart-totals {
	margin-top: 4px;
	}

.pad-edit-checkout {
	margin-bottom: 15px;
	}
.checkout-cart .checkout-button {
	display: none;
	}

.checkout-instructions {
	margin-top: 20px;
	}

.customer {
	margin: 0 0 20px;
	}

.customer-info,
.invoice-meta {
	width: 100%;
	border-top: 1px solid #ccc;
	}
.customer-info td,
.invoice-meta td {
	vertical-align: top;
	padding: 5px;
	border-bottom: 1px solid #ccc;
	}

/* disable on Checkout */
.checkout .cart-link,
.shopping-cart .cart-link {
	pointer-events: none;
	cursor: default;
	opacity: 0.8;
	}
	
/* for Sticky */
.checkout-sidecart {
	position: sticky;
	top: 155px;
	}

/* ----- [ Checkout Stuff ] -----------------*/
.stripe-card-input {
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	border: 1px solid #ccc;
	padding: 6px 10px;
	margin: 10px 0;
	}
	
.partner-field {}

.highlight {
	color: #f00;
	}
	
.InputfieldTextareaMarkup,
.checkout-notes {
	padding: 20px 0;
	font-size: 1.1rem;
	}
.InputfieldTextareaMarkup label,
.InputfieldTextareaMarkup .textarea-markup-edit {
	display: none;
	}
	

/* ----- [ Page Content ] --------------- */
/* ----- [ Home Page ] --------------- */
.top {
	padding-top: calc(var(--header-height) + 50px);
	padding-bottom: 20px;
	
	}
.hero {
	padding: 0;
	margin-bottom: 0;
	}
.hero .inner {
	height: 80vh; /* was 90vh; hide text */
	padding: 0;
	/*margin-top: 105px; */
	}
	
.home-headline-section {
	padding-top: 50px;
	padding-bottom: 70px;
	}
.home-headline-section h1 {
	font-size: 1.4rem;
	}
.home-headline-section p {
	font-size: 1.2rem;
	}
	
	
.innovations-section {
	padding-bottom: 120px;
	}
	
.video-link {
	float: right;
	margin: 0;
	padding: 4px 0 0 0;
	color: unset;
	background: none;
	border: none;
	border-radius: 0;
	}
.video-link:hover {
	background: none;
	text-decoration: underline;
	}
	
/* hack to mask logo in video */
.goomba {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 83.5%;
	right: calc(50% - 230px);
	/*border: 1px solid red;*/
	background: #fff;
	}
	
.home-intro-text {
	padding-top: 0;
	padding-bottom: 50px;
	}

.story-text {
	padding-top: 40px;
	background: #f8f8f8
	}
.story-section,
.story-index-section,
.testimonials-section {
	padding-bottom: 60px;
	}


@media only screen and (max-width: 599px) {
	.hero .inner {
		max-height: 400px;
		/*max-height: 100vw;*/
		}
	.testimonials-section {
		display: none;
		}
}

.company-values-section {
	padding-top: 60px;
	padding-bottom: 60px;
	background: #f8f8f8;
	}
.company-values ul {
	text-align: left;
	}
.company-values li {
	display: inline-block;
	width: 45%;
	font-size: 1.2em;
	text-align: left;
	font-style: italic;
	}
.company-values li:before{
    content: "";
    display: list-item;
    position: absolute;
	}
	
.body-section {
	padding-top: 50px;
	padding-bottom: 50px;
	}
.body-section h2 {
	max-width: 28em;
	line-height: 1.5;
	}


@media only screen and (min-width: 600px) { 
	.top {
		/*
		padding-top: 190px;
		padding-top: 222px;
		*/
		}
	.hero {
		padding-top: 0;
		}
}

@media only screen and (min-width: 1024px) {
	.hero .inner {
		height: calc(100vh - var(--top-margin));
		height: 85vh;
		padding: 0;
		margin-top: var(--top-margin);
		/*margin-top: 0;*/
		background-position: 70% 50%;
		background-repeat: no-repeat;
		background-size: 100%;
	}
}
/*
.hero-overlay {				
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	background: rgba(0,0,0,0.3);
	}
*/

/* ----- [ Product Videos ] ------------------- */
/* Home */
.vimeo-wrapper {
	position: fixed;
	position: absolute;
	/*top: 110px;
	top: 145px;*/
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
	background: #fff url('../images/vimeo-loading.gif') 50% 50% no-repeat;
	}
.vimeo-wrapper iframe {
	width: 100vw;
	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
	min-height: 90vh;
	min-height: 100vh;
	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	}
	
.home-hero-view-video {
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	bottom: 60px;
	text-align: center;
	padding: 0 30px;
	}

/* Innovations Page */
.vimeo-wrapper2 {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50%;
	width: 100%;
	height: auto;
	z-index: 2;
	background: none;
	}
.vimeo-wrapper2 iframe {
	position: absolute;
	top: 15px;
	left: 0;
	width: 100%;
	height: 90%;
	}

.home-headline {
	padding-top: 40px;
	padding-bottom: 80px;
	}
	
/* ----- [ 2025 Home ] -------- */
.home-hero-text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px 30px 50px;
	text-align: center;
	color: #fff;
	}
.home-hero-text h1,
.home-hero-text .h1 {
	font-size: 1.8rem;
	color: #fff;
	margin: 0 auto 0.5em;
	letter-spacing: 1px;
	}
.home-hero-text h2,
.home-hero-text p {
	color: #fff;
	margin: 0 auto 1em;
	}
	
.home-hero .slick-dots {
	position: absolute;
	bottom: 20px;
	z-index: 2;
	}
.home-hero .slick-dots li button {
	background: #fff;
	}
	


/* ----- [ Content Heading: Story Pages] -----------------*/
.row-heading {
	font-family: 'Lato', sans-serif;
	font-size: 1.9em;
	line-height: 1.3em;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin: 0 0 1em;
	}
.row-heading:before,
.row-heading:after {
    content: " ";
    position: absolute;
    top: 55%;
    margin-left: -999em;
    height: 2px;
    width: 998.5em;
    border-top: 1px solid #999;
	}
.row-heading:after {
    left: auto;
    width: 999em;
    margin: 0 0 0 0.5em;
	}



/* ----- [ Product and Category Pages ] -----------------*/
.breadcrumbs {
	margin: 0 0 2em;
	}
.breadcrumbs a {
	font-size: 0.9em;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #949494;
	font-weight: 700;
	}
.breadcrumbs a:hover {
	color: #222;
	}

.category-head {
	/*float: left;
	margin-top: 10px;*/
	font-size: 1.1rem;
	font-size: 0.9rem;
	font-weight: 700;
	}
	
.category-subhead {
	font-size: 1rem;
	font-size: 0.9rem;
	text-transform: uppercase;
	margin-bottom: 2em;
	letter-spacing: 2px;
	font-weight: 700;
	}
	
.category-text {
	clear: both;
	margin-bottom: 40px;
	}
.category-text p {
	font-weight: 400;
	}

.tech-dload {
	float: right;
	margin-top: 10px;
	}

.category-hero {
	/*margin: 120px 0 -30px;*/
	max-width: 100%;
	}

.products-section,
.categories-section {
	margin: 0 0 80px;
	}

/* Product Grid */
.product-grid .col {
	margin-bottom: 30px;
	}

.product-grid-item {
	position: relative;
	margin-bottom: 10px;
	}
	
.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	padding-bottom: 30px;
	padding-bottom: 0;
	background: transparent;
	background: rgba(255,255,255,0);
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    overflow: hidden;
	}
.product-overlay:hover {
	background: rgba(255,255,255,0.8);
	}
	
/* exclude LS components */
.t-lifestyle-page-v2 .product-overlay:hover {
	background: rgba(255,255,255,0);
	}

.product-overlay h3 {
	margin: 0;
	}
.product-overlay h4 {
	font-weight: 400;
	}
.product-overlay .button {
	padding: 5px 10px;
	margin: 10px 0 0;
	display: inline-block;
	}

.product-overlay h4,
.product-overlay .button {
	/* max-height: 10px; */
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
    }

.product-overlay:hover h4,
.product-overlay:hover .button {
	opacity: 1;
	max-height: 100px;
	}

.product-overlay.ls-details .button {
	margin-bottom: 30px;
	opacity: 0.8;
	}

.product-overlay:hover .product-overlay-text {
	/*bottom: 20px;*/
	opacity: 1;
	}

.product-thumbnail {
	width: 100%;
	}
	
.option-overlay {
	text-align: center;
	position: absolute;
	bottom: 70px;
	left: 0;
	right: 0;
	margin: 0 10px;
	padding: 10px;
	background: rgba(255,255,255,0.5);
	opacity: 0;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
.image-radio:hover .option-overlay {
	opacity: 1;
	}
	



/* ----- [ Lifestyle Pages ] --------------- */
/* Lifestyle scrolling list 2024 */
.ls-product-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow-x: auto;
	white-space: nowrap;
	scroll-snap-type: x mandatory;
	scroll-padding: 0 50px 0 0;
	padding-bottom: 2em;
	margin-right: -20px !important;
	}

.ls-product-grid .col {
	flex: 0 0 auto;
	margin-right: 15px;
	max-width: 400px;
	scroll-snap-align: start;
	width: 72%;
	/* mobile */
	margin-bottom: 0;
	}
	
	
.scroll-hint {
	text-align: right;
	font-size: 1.1rem;
	font-weight: 700;
	margin-right: 1em;
	}
.scroll-hint.first-one {
	margin-bottom: 80px;
	}

@media only screen and (min-width: 580px) {	
	.scroll-hint {
		display: none;
		}
	.ls-product-grid.round-row {
		margin-bottom: 100px;
		}
}
	
	
@media only screen and (min-width: 420px) {
}
@media only screen and (min-width: 100px) and (max-width: 599px) {
}
@media only screen and (min-width: 600px) { 
	.ls-product-grid .m-1of2 {
		width: 44%;
		}
}
@media only screen and (min-width: 770px) { 
	.ls-product-grid .t-1of3 {
		width: 29%;
		}
}
@media only screen and (min-width: 1220px) { 
	.ls-product-grid .d-1of4 {
		width: 23.5%;
		}
}




.package-item {
	border-top: 1px solid #ddd;
	padding-top: 15px;
	}

.package-item-image {
	width: 100px;
	float: right;
	margin: 0 0 20px 20px;
	}

/* Handle Retractable and Rails differently */
.package-item.kru-100-wmr > a,
.package-item.ksr-019-wmr > a,
.package-item.ksr-019-wms > a {
	/* display: none; */
	}
	
.package-item.khs0-120-srr,
.package-item.khs-100-srs {
	/* border: none; */
	}
	

/* ----- [ NEW Lifestyle Pages and misc updates ] --------------- */
.t-lifestyle-page-v2 section.top,
.t-product-page-v2 section.top {
	padding-top: 182px;
	}



@media only screen and (min-width: 600px) {

	.t-lifestyle-page-v2 section.top,
	.t-product-page-v2 section.top {
		padding-top: 182px;
		padding-top: 0 !important;
		}

	.t-product-page-v2 .top {
		margin-top: 28px;
		}
	.t-product-page-v2 .product-image,
	.t-product-page-v2 .big-swatch-img {
		height: calc(100vh - 26px);
		object-fit: cover;
		}
	

	.t-lifestyle-page-v2 .nav-wrapper,
	.t-category-page-v2 .nav-wrapper,
	.t-product-page-v2 .nav-wrapper {
		justify-content: flex-start;
		}

	.t-lifestyle-page-v2 .drop-search,
	.t-category-page-v2 .drop-search,
	.t-product-page-v2 .drop-search {
		left: 52%;
		}
}
	
	
.menu-v2 span {
	font-size: 1.2rem;
	}
.off-screen-right.os-menu .close-cart {
	top: 95px;
	right: 95px;
	}
	
/*
.t-lifestyle-page-v2 .nav-level-1,
.t-category-page-v2 .nav-level-1,
.t-product-page-v2 .nav-level-1 {
	position: relative;
	}
.t-lifestyle-page-v2 .dropnav,
.t-category-page-v2 .dropnav,
.t-product-page-v2 .dropnav {
	top: 100%;
	left: -20px;
	right: auto;
	bottom: auto;
	padding: 10px 20px;
	}
.t-lifestyle-page-v2 .dropnav > ul,
.t-category-page-v2 .dropnav > ul,
.t-product-page-v2 .dropnav > ul {
	display: unset;
	text-align: left;
	margin: 0;
	padding: 0;
	}
.t-lifestyle-page-v2 .nav-level-2 a,
.t-category-page-v2 .nav-level-2 a,
.t-product-page-v2 .nav-level-2 a {
	display: inline-block;
	padding: 0.4em 0;
	}
*/


	
.t-lifestyle-page-v2 .product-overlay {
	align-items: center;
	}
.t-lifestyle-page-v2 .product-overlay.ls-details {
	align-items: flex-end;
	}
	
/* --- Logo Variations --- */
/* reset for all lifestyle */
.t-lifestyle-page-v2 .logo-wrapper,
.t-product-page-v2 .logo-wrapper {
	width: 96px;
	}
.t-lifestyle-page-v2 .logo-wrapper.logowrap-fixed,
.t-product-page-v2 .logo-wrapper.logowrap-fixed {
	/*width: 80px;*/
	}

.off-screen-right {
	position: fixed;
	top: 0;
	left: 100vw;
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	visibility: hidden;
	opacity: 0;
	z-index: 700;
	-webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
	}
.off-screen-right.is-active {
	left: 0;
	visibility: visible;
	opacity: 1;
	}
.off-screen-right .close-cart {
	top: 25px;
	right: 30px;
	}

.details-v-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	/*max-width: 30em;*/
	text-align: left;
	}
.details-h-wrapper {
	width: 100%;
	max-width: 26em;
	margin: 0 auto;
	}
	
/* some specific targets */
/*.p-lifestyle-2-square #component-7 .product-price,
.p-lifestyle-2-square #component-7 .product-price + .button,
.p-lifestyle-2-round #component-6 .product-price,
.p-lifestyle-2-round #component-6 .product-price + .button {
	display: none;
	}
*/

/* down arrow prompt */
.hero-down-link {
	position: absolute;
	bottom: 60px;
	left: 0px;
	height: 0;
	width: 100%;
	text-align: center;
	display: block;
	}

.se-icon {
	width: 50px;
	margin: 0 auto;
	}
.se-icon a {
	fill: #000;
	text-decoration: none;
	border: none;
	}
	
.bounce {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);  
  }
}

	
@media only screen and (max-width: 599px) {
	.off-screen-right {
		padding: 4em 3%;
		overflow: auto;
		justify-content: flex-start;
		align-items: flex-start;
		}
	.details-h-wrapper {
		padding-left: 20px;
		padding-right: 20px;
		}
}
	
.p-lifestyle-1 .product-price {
	margin-top: 0;
	}

.overflow-visible {
	overflow: visible;
	}
.overflow-hidden {
	overflow: hidden;
	}
	
.finish-options-link {
	display: inline-block;
	padding: 8px;
	border: 1px solid #e1dfd8;
	border-radius: 4px;
	margin-bottom: 2em;
	}
.finish-options-link:hover,
.finish-options-link.on {
	border-color: #000;
	}
	
@media only screen and (min-width: 600px) {
	.details-v-wrapper {
		position: sticky;
		display: flex;
		justify-content: center;
		align-items: center;
		top: 0;
		height: 100vh;
		width: 100%;
		/*max-width: 30em;*/
		padding: 0 15%;
		}

	.off-screen-right {
		width: 50vw;
		}
	.off-screen-right.is-active {
		left: 50vw;
		}
}


/* tabs */
.ps-tabs-navigation {
	display: flex;
	justify-content: center;
	margin: 0 0 4em;
	}

.ps-tabs-navigation a {
	position: relative;
	display: block;
	color: #828282;
	text-align: center;
	font-size: 0.95rem;
	font-size: 12px;
	line-height: 1.3;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 3em 0 0;
	margin: 0 1.5em;
	letter-spacing: 2px;
	}
.ps-tabs-navigation a.selected,
.ps-tabs-navigation a:hover {
	color: #000;
	text-decoration: none;
	}

.ps-tabs-content {
	text-align: left;
	margin: 0;
	padding: 0;
	background: #fff;
	/*border: 1px solid #ccc;*/
	/*margin-top: -2px;*/
	}
.ps-tabs-content > li {
	text-align: left;
	padding: 0;
	display: none;
	}

.ps-tabs-content li.selected {
	display: block;
	-webkit-animation: ps-fade-in 0.5s;
	-moz-animation: ps-fade-in 0.5s;
	animation: ps-fade-in 0.5s;
	}

/* alternate */
.ps-tabs-navigation a.button {
	font-size:0.9rem;
	text-transform: none;
	letter-spacing: 0;
	margin: 0 0.5em;
	}
.ps-tabs-navigation a.button.selected,
.ps-tabs-navigation a.button:hover {
	color: #000;
	text-decoration: none;
	background: #fff;
	}



/* ----- [ Search Results ] --------------- */
.product-list-item {
	position: relative;
	padding: 0 15px;
	margin-bottom: 30px;
	}
.product-list-item .col {
	 padding: 0;
	 }
.product-list-img {;
	width: 100%;
	}

.product-grid h3,
.product-list h3 {
	margin: 0 0 0.3em;
	}
.product-grid h4,
.product-list h4 {
	font-weight: 400;
	margin: 0 0 2em;
	}

@media only screen and (min-width: 600px) { 
	.product-list-item {
		position: relative;
		margin-bottom: 0;
		}
	.product-list-item .col {
		 border-top: 1px solid #ccc;
		 padding: 15px 0;
		 }
	.product-list-img {
		padding-right: 20px;
		}
}

/* ----- [ Product Pages ] --------------- */
.product-image-wrapper {
	min-height: 300px;
	position: relative;
	}
.product-image {
	margin: 0 auto 12px;
	padding: 0;
	width: 100%;
	max-width: 100%;
	object-fit: cover;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
	}

.alt-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	visibility: hidden;
	opacity: 0;
	cursor: pointer;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
	}
.product-image-wrapper:hover .alt-image {
	opacity: 1;
	visibility: visible;
	}
.product-details {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	}

.product-info ul li,
.product-info ul li.selected {
	display: list-item;
	list-style-type: disc;
	margin: 0 0 0 2em;
	}

.product-category {
	font-size: 0.9em;
	font-weight: 600;
	text-transform: uppercase;
	}
.product-price,
.product-notice  {
	font-size: 1.2em;
	line-height: 1.3em;
	font-weight: 600;
	font-weight: normal;
	margin-top: auto;
	/*margin-top: 40px;*/
	color: var(--black);
	}

.ex-vat-text {
	font-size: 0.7em;
	color: #999;
	}
	
.selected-product-name {
	display: inline-block;
	float:  right;
	text-align: right;
	}

.product-specs-list {
	border-top: 1px solid #c6c6c6;
	}
.product-specs-list li {
	font-size: 0.85em;
	line-height: 1.3em;
	padding: .4em 0;
	color: #666;
	border-bottom: 1px solid #c6c6c6;
	}

.product-description {
	margin: 0 0 2em;
	max-height: 220px;
	overflow-y: scroll;
	}
	
.product-description h2 {
	font-size: 1em;
	}
	
	
.inno-summary .product-description {
	max-height: 350px;
	}
	
.inno-summary-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 0.5em;
	}

.product-description::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 7px;
	}
.product-description::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: #ccc;
	background-color: rgba(0, 0, 0, .5);
	-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
	}

.product-description p {
	padding-right: 1em;
	}
	
.product-description p:last-of-type {
	margin: 0;
	}


/* ----- [ Select Product Variations ] -----------------*/
.row.product-variations {
	padding-top: 0;
	margin-bottom: 10px;
	}

.image-radio {
	position: relative;
	display: block;
    cursor: pointer;
    margin-bottom: 0;
    outline: 0;
	}
.image-radio input[type="radio"] {
    display: none;
	}
	
.image-radio img {
	outline: 1px solid transparent;
	outline-offset: -1px;
	width: 100%;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    overflow: hidden;
	}
.image-radio .button {
	margin-top: 10px;
	}

.image-radio:active img {
	outline: 1px solid #000;
	/*opacity: 0.3;*/
	}
.image-radio:hover .button {
	background: #c6c6c6;
	color: #fff;
	}

.image-radio-checked img,
.image-radio-checked img:hover {
    /*border-color: #4783B0;*/
    outline: 1px solid #999;
	}
.image-radio-checked .button {
	background: #c6c6c6;
	color: #fff;
	}

				/* ----- [ Forms 1: MTO Options ] --------------- */
				.mto-title {
					font-size: 0.85rem;
					font-weight: 700;
					}
				.mto-option {
					margin: 15px 0 2em;
					}
					
				.product-variations + .mto-option {
					display: none;
					}
					
				/* The container */
				.option-list {
					overflow: hidden;
					}
				.option-list-item {
					position: relative;
					}
				.horizontal-list {
					float: left;
					width: 50%;
					}
	
				.option-label {
					display: block;
					position: relative;
					cursor: pointer;
					-webkit-user-select: none;
					-moz-user-select: none;
					-ms-user-select: none;
					user-select: none;
					}

				/* Hide the browser's default radio button/checkbox */
				.option-label input {
					position: absolute;
					opacity: 0;
					cursor: pointer;
					}


				/* Create a custom radio button */
				.checkmark,
				.radiobutton,
				.imagebutton {
					position: absolute;
					top: 3px;
					left: 0;
					height: 20px;
					width: 20px;
					/*background-color: #eee;*/
					border: 1px solid #ccc;
					}
				.radiobutton {
					border-radius: 50%;
					}
				.imagebutton {
					position: relative;
					display: inline-block;
					vertical-align: middle;
					top: 0;
					margin: 5px 10px 5px 0;
					height: 80px;
					width: 80px;
					}

				.check-label,
				.radio-label {
					padding: 0 0 5px 30px;
					}

				/* On mouse-over, add a grey background color */
				.option-label:hover input ~ .checkmark,
				.option-label:hover input ~ .radiobutton {
					background-color: #ccc;
					}

				/* When the radio button is checked, add a blue background */
				.option-label input:checked ~ .checkmark,
				.option-label input:checked ~ .radiobutton {
					background-color: #2196F3;
					}
				.option-label input:checked ~ .imagebutton {
					border: 1px solid #222;
					}

				/* Create the indicator (the dot/circle - hidden when not checked) */
				.checkmark:after,
				.radiobutton:after {
					content: '';
					position: absolute;
					display: none;
					}

				/* Show the indicator (dot/circle) when checked */
				.option-label input:checked ~ .checkmark:after,
				.option-label input:checked ~ .radiobutton:after {
					display: block;
					}

				/* Style the indicator (dot/circle) */
				.option-label .radiobutton:after {
					top: 5px;
					left: 5px;
					width: 8px;
					height: 8px;
					border-radius: 50%;
					background: white;
					}
				/* Style the indicator (checkmark) */
				.option-label .checkmark:after {
					left: 6px;
					top: 0px;
					width: 8px;
					height: 15px;
					border: solid white;
					border-width: 0 3px 3px 0;
					-webkit-transform: rotate(45deg);
					-ms-transform: rotate(45deg);
					transform: rotate(45deg);
					}

				.image-radio {
					position: relative;
					display: block;
					cursor: pointer;
					margin-bottom: 0;
					outline: 0;
					}
				.image-radio input[type="radio"] {
					display: none;
					}
	
				.image-radio img {
					/*outline: 1px solid #fff;
					outline-offset: -1px;
					padding: 5px;*/
					width: 100%;
					-webkit-transition: all .4s ease;
					-moz-transition: all .4s ease;
					-o-transition: all .4s ease;
					transition: all .4s ease;
					overflow: hidden;
					}

				.image-radio:hover img,
				.image-radio:active img {
					/*outline: 1px solid #666;*/
					/*opacity: 0.3;*/
					}
				.image-radio-checked img,
				.image-radio-checked img:hover {
					/*border-color: #4783B0;*/
					/*outline: 1px solid #000;*/
					}
	
				.image-radio .button {
					margin-top: 10px;
					}
				.image-radio:hover .button {
					background: #c6c6c6;
					color: #fff;
					}
				.image-radio-checked .button {
					background: #c6c6c6;
					color: #fff;
					}

				.option-select {
					position: absolute;
					top: 15px;
					left: 15px;
					top: 9px;
					left: 11px;
					color: #fff;
					font-size: 1.1rem;
					line-height: 1em;
					-webkit-transition: all .3s ease;
					-moz-transition: all .3s ease;
					-o-transition: all .3s ease;
					transition: all .3s ease;
					opacity: 0;
					}
				.option-select .icon {
					display: inline;
					font-size: 1.6rem;
					margin: 0 6px 0 0;
					}

				.image-radio:hover .option-select,
				.image-radio:active .option-select,
				.image-radio-checked .option-select,
				.image-radio:hover .option-grid-info,
				.image-radio:active .option-grid-info,
				.image-radio-checked .option-grid-info {
					opacity: 1;
					}
				.image-radio:hover .option-grid-info,
				.image-radio:active .option-grid-info,
				.image-radio-checked .option-grid-info {
					opacity: 1;
					bottom: 0;
					}

				.image-radio:active .option-select .text:after,
				.image-radio-checked .option-select .text:after {
					content: "Selected";
					display: inline;
					}

				.swatch-list {
					position: relative;
					}
				.swatch-item {
					display: inline-block;
					width: 36px; /* 44 */
					height: 36px;
					margin: 0 5px 0 0;
					}
	
				.big-swatch {
					position: absolute;
					bottom: 0;
					left:0;
					}
				.swatch-title {
					position: absolute;
					bottom: 0;
					left: 0;
					right: 0;
					padding: 10px;
					text-align: left;
					color: #fff;
					background: rgba(0,0,0,0.5);
					text-transform: capitalize;
					}
					
/* Products v2 */
.t-product-page-v2 .swatch-item {
	display: inline-block;
	width: 60px;
	height: 60px;
	margin: 0 9px 0 0;
	/*border: 1px solid transparent;*/

	}
.t-product-page-v2 .swatch-item .icon {
	display: none;
	}
.t-product-page-v2 .swatch-item:hover,
.t-product-page-v2 .swatch-item.active {
	/*border-color: #000;*/
	}
	
.t-product-page-v2 .image-radio img {
	outline: 1px solid transparent;
	outline-offset: 4px;
	}
.t-product-page-v2 .image-radio:active img,
.t-product-page-v2 .image-radio:hover img {
	outline: 1px solid #000;
	}
.t-product-page-v2 .image-radio-checked img,
.t-product-page-v2 .image-radio-checked img:hover {
    /*border-color: #4783B0;*/
    outline: 1px solid #000;
	}
	
.t-lifestyle-page-v2 .button,
.t-product-page-v2 .button {
	font-size: 14px;
	color: #fff;
	background: #000;
	border-radius: 30px;
	padding: 12px 20px;
	padding: 8px 20px;
	border: 1px solid #000;
	}
.t-lifestyle-page-v2 .button-outline, 
.t-product-page-v2 .button-outline {
	color: #333;
	background: #fff;
	padding: 7px 20px;
	border: 1px solid #000;
	}
	
.t-lifestyle-page-v2 .button:hover,
.t-product-page-v2 .button:hover {
	color: #000;
	background: #fff;
	border: 1px solid #000;
	}
.t-lifestyle-page-v2 .button-outline:hover, 
.t-product-page-v2 .button-outline:hover {
	color: #fff;
	background: #000;
	border: 1px solid #000;
	}
	
.t-product-page-v2 button {
	color: inherit;
	background: none;
	padding: 0;
	border: none;
	text-align: left;
	margin-bottom: 20px;
	}
.t-product-page-v2 button:hover {	
	background: none;
	}
	
.t-lifestyle-page-v2 .button-small {
	font-size: 0.85em;
	padding: 4px 15px; 
	}
	
	
.t-product-page-v2 .big-swatch {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	}

.t-lifestyle-page-v2 .h1,
.t-lifestyle-page-v2 .product-head,
.t-product-page-v2 .h1,
.t-product-page-v2 .product-head {
	font-size: 1rem;
	font-size: 14px;
	font-size: 0.9rem;
	line-height: 1.3;
	font-weight: 700;
	}

.t-lifestyle-page-v2 .product-price,
.t-product-page-v2 .product-price {
	font-size: 1rem;
	font-size: 14px;
	font-size: 0.85rem;
	margin: 0 0 2em;
	}
/*
.t-lifestyle-page-v2 .breadcrumbs a,
.t-product-page-v2 .breadcrumbs a {
	font-size: 0.8rem;
	}
	
.t-lifestyle-page-v2 .grid-item-wrapper h3,
.t-product-page-v2 .grid-item-wrapper h3 {
	font-size: 1rem;
	font-size: 14px;
	}
*/
.t-lifestyle-page-v2 .grid-item-wrapper h4,
.t-product-page-v2 .grid-item-wrapper h4 {
	font-size: 0.95rem;
	font-size: 14px;
	}
.t-lifestyle-page-v2 p,
.t-product-page-v2 p  {
	font-size: 0.95rem;
	font-size: 14px;
	}

.t-lifestyle-page-v2 .about-menu,
.t-product-page-v2 .about-menu,
.t-category-page-v2 .about-menu {
	display: none;
	}
	
/* utility */
.mb-1x {
	margin-bottom: 1em;
	}
.mb-2x {
	margin-bottom: 2em;
	}
	
.tech-specs {
	margin-bottom: 2em;
	}

/* ----- [ Sibling Nav ] ----------- */
.portfolio-nav {
	position: relative;
	padding-top: 0;
	padding-right: 4%;
	padding-bottom: 0;
	padding-left: 4%;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	max-width: 900px;
	height: 0;
	}
.prev,
.next {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 6%;
	background: url('../images/thin-previous.png') 50% 50% no-repeat;
	background-size: 50%;
	margin-top: -2em;
	opacity: 0.2;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
	}

.next {
	left: auto;
	right: 0;
	text-align: right;
	background: url('../images/thin-next.png') 50% 50% no-repeat;
	background-size: 50%;
	}
.prev:hover,
.next:hover {
	opacity: 0.6;
	}


/* ----- [ Misc. ] -----------------*/
.hidden {
	display: none;
	}

	
/* ----- [ Content ] -----------------*/
.cms-content {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	}
	
.cms-content a {
	border-bottom: 1px solid #222;
	}
	
.cms-content.hidden {
	opacity: 0;
	}
.cms-content::first-of-type,
.cms-content.hidden::first-of-type {
	display: block;
	}

.cms-content ul,
.cms-content ol {
	margin: 0 0 1em;
	}
.cms-content li {
	list-style-type: square;
	list-style-position: outside;
	margin: 0 0 0.5em 1.2em;
	}
.cms-content ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.2em;
	}

.cms-text p > img,
.cms-content p > img {
	max-width: 100%;
	margin: 40px auto;
	}

.cms-content h3 {
	/* font-weight: 900; */
	text-transform: uppercase;
	font-size: 0.95em;
	letter-spacing: 1px;
	}
	
.cms-content p + h3 {
	margin-top: 2em;
	}
.cms-content h4 {
	margin-top: 1.5em;
	}
.cms-content h3 + h4 {
	margin-top: 0.5em;
	}


/* CMS styles */
/*
p.image-row-2,
p.image-row-3,
p.image-row-4 {
	display:flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	
	}
*/
p.image-row-2:after,
p.image-row-3:after,
p.image-row-4:after {
	content: " ";
	display: block;
	clear: both;
	}

p.image-row-2 > img {
	float: left;
	width: 48.75%;
	margin: 0 2.4% 2.4% 0;
	}
p.image-row-2 > img:nth-of-type(even) {
	float: right;
	margin-right: 0;
	}

p.image-row-3 > img {
	float: left;
	width: 31.7%;
	margin: 0 2.4% 2.4% 0;
	}
p.image-row-3 > img:nth-of-type(3) {
	float: right;
	margin-right: 0;
	}

p.image-row-4 > img {
	float: left;
	width: 23.2%;
	margin: 0 2.4% 2.4% 0;
	}
p.image-row-4 > img:nth-of-type(4) {
	float: right;
	margin-right: 0;
	}
	
	

.principles li {
	list-style-type: none;
	margin: 0;
	}
	
.principles li strong {
	font-family: 'EB Garamond', serif;
	font-style: italic;
	font-size: 24px;
	color: #666;

	}


/* ----- [ Our Story Pages ] -----------------*/
.story-index-section .inner {
	padding: 0;
	overflow: hidden;
	}

.story-hero-image {
	max-width: 100%;
	}
	
.story-thumb {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
	}

.story-name {
	font-weight: 400;
	padding-left: 1em;
	margin: 5px 0 15px;
	}
.story-head {
	margin: 0 0 0.5em;
	}	

.biotitle,
.bionote {
	font-size: 16px;
	line-height: 1.4em;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 0;
	margin-bottom: 0.3em;
	}
.biotitle {
	margin-bottom: 3em;
	color: #666;
	}

.story-thumb img {
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	}
.thumb-text {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	color: #fff;
	background: #000;
	background: rgba(0,0,0,0.7);
	z-index: 10;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	}
.thumb-text:hover {
	opacity: 1;
	}
.thumb-text h3,
.thumb-text h4,
.thumb-text p {
	color: #fff;
	}
.thumb-name {
	font-size: 1.6em;
	}
.thumb-biotitle,
.thumb-bionote {
	font-size: 13px;
	line-height: 1.4em;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 0 2em;
	margin-bottom: 1em;
	}
.thumb-bionote::after {
	content: "";
	display: block;
	width: 50px;
	height: 1px;
	background: #fff;
	margin: 15px auto 10px;
	}

.related-items {
	padding: 60px 0;
	}
.slide-story-thumb {
	position: relative;
	width: 100%;
	overflow: hidden;
	}
.slide-story-thumb .thumb-name {
	font-size: 1.3em;
	}
.slide-story-thumb .thumb-biotitle,
.slide-story-thumb .thumb-bionote {
	font-size: 12px;
	}
.slide-story-thumb img {
	position: relative;
	}

@media only screen and (min-width: 660px) {
	.width-120 {
		margin-left: -20px;
		margin-right: -20px;
		}
	.width-130 {
		margin-left: -30px;
		margin-right: -30px;
		}
	.width-140 {
		margin-left: -40px;
		margin-right: -40px;
		}
}


/* ----- [ Pull Quotes ] --------------- */
blockquote,
blockquote > p {
	font-family: 'EB Garamond', serif;
	font-size: 36px;
	line-height: 1.3em;
	font-style: italic;
	text-align: center;
	/*max-width:500px;*/
	margin: 40px;
	}

/* ----- [ Rich Plugins: Reviews ] ------------ */
.rplg-grid {
	display: none;
	}
.rplg .rplg-review-name {
	color: #222222!important;
	filter: brightness(0%);
	}
.rplgsw-pagination-bullet-active {
	background: #222222!important;
	}
.rplg-slider .rplg-slider-prev, 
.rplg-slider .rplg-slider-next {
	background: none!important;
	border: none!important;
	}
.rplg-slider .rplg-slider-prev span, 
.rplg-slider .rplg-slider-next span {
	font: normal 100 48px / 0 "Muli",Helvetica,Arial,Verdana,sans-serif!important;
	transform: scale(2);
	color: #666666!important;
	font-weight: 100!important;
	opacity: 0.6!important;
	}
.rplg .rplg-box {
	margin: 2px!important;
	color: #777!important;
	border: none!important;
	background-color: #ffffff!important;
	border-radius: 4px!important;
	}



/* ----- [ Slick Slider (Our Story navigation) ] --------------- */
.slick-slider,
.story-slider,
.testimonials-slider,
.hero-slider {
	/*overflow: visible;*/
	}
.story-slider {
	overflow: visible;
}

.story-slider .slick-prev,
.story-slider .slick-next,
.testimonials-slider .slick-prev,
.testimonials-slider .slick-next,
.hero-slider .slick-prev,
.hero-slider .slick-next {
	position: absolute;
	display: block;
	top: 45%;
	width: 25px;
	height: 50px;
	padding: 0;
	left: -50px;
	color: transparent;
	font-size: 0;
	line-height: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	border: none;
	outline: none;
	background: transparent url('/site/templates/images/slick-arrows.svg') top left no-repeat;
	z-index: 666;
	opacity: 0.5;
	}
.story-slider .slick-next,
.testimonials-slider .slick-next,
.hero-slider .slick-next {
	position: absolute;
	right: -50px;
	left: auto;
	background: transparent url('/site/templates/images/slick-arrows.svg') bottom left no-repeat;
	}
.hero-slider .slick-prev,
.hero-slider .slick-next {
	left: 20px;
	}
.hero-slider .slick-next {
	right: 20px;
	left: auto;
	}
	
.story-slider .slick-prev:hover,
.story-slider .slick-next:hover,
.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover,
.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
	opacity: 1;
	}
	

	
.slide-wrapper {
	overflow: hidden;
	position: relative;
	margin: 0 1px;
	}

.slide-wrapper blockquote,
.slide-wrapper blockquote p {
	max-width: 100%;
	}

.slick-dots {
	text-align: center;
	width: 100%;
	}
.slick-dots li {
	display: inline-block;
	margin: 0 5px;
	}
.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 10px;
	height: 10px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	border-radius: 50%;
	outline: none;
	background: #ccc;
	}
.slick-dots li.slick-active button,
.slick-dots li button:hover {
	background: #000;
	}
	
/* Lifestyle v2 */
.related-products {
	text-align: center;
	margin-bottom: 150px;
	}

.related-products .h1 {
	text-align: center;
	margin-bottom: 1em;
	}

.group-wrapper {
	display: flex;
	flex-wrap: nowrap;
	/*white-space: nowrap;*/
	overflow-x: auto;
	padding: 0 20px;
	text-align: left;
	}
.grid-item-wrapper {
	max-width: 250px;
	min-width: 250px;
	margin: 0 20px 0 0;
	}

.grid-item-wrapper:first-child {
	margin-left: 20px;
	margin-left: auto;
	}
.grid-item-wrapper:last-child {
	margin-right: auto;
	}

/*
.pager__item {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: #222;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 0 1em;
	position: relative;
	border: none;
	cursor: pointer;
	}
*/
@media only screen and (min-width: 1441px) {
	.grid-item-wrapper {
		max-width: 320px;
		min-width: 320px;
		margin: 0 20px 0 0;
		}
}

/* ----- [ Innovations Page ] --------------- */
.intro-images {
	padding: 0;
	background: #f8f8f8;
	}
.service-photo {
	min-height: 320px;
	position: relative;
	}
.inno-pic-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	}
	
.inno-section:first-of-type .service-photo {
	min-height: 0;
	}
@media only screen and (min-width: 600px) {
	.inno-section:nth-of-type(even) {
		flex-direction: row-reverse;
		}
}

.inno-text-column {
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: flex-start; 
	align-items: center;
	padding: 0;
	}
.inno-section:nth-of-type(even) .inno-text-column {
	justify-content: flex-end; 
	}

.inno-summary {
	width: 100%;
	max-width: 500px;
	}
	
.vimeo-wrapper2 {
	display: none;
	}

@media only screen and (min-width: 600px) {
	.inno-text-column {
		padding: 30px !important
		}

}
/* see product-description for scroller */
@media only screen and (min-width: 780px) {
	.intro-images {
		margin-bottom: 40px;
		padding: 30px 0;
		background: #f8f8f8;
		}
	.inno-text-column {
		padding: 70px 70px 80px !important;
		}
	.inno-section:nth-of-type(even) .inno-text-column {
		justify-content: flex-end; 
		}
	.vimeo-wrapper2 {
		display: block;
		}
}


/* general inputs */
input, textarea, select {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 16px;
	/*line-height: 1.75em;*/
	color: #333;
	/*-webkit-text-stroke: 0.1px;*/
	/*-webkit-appearance: none;*/
	}


/* ----- [ Forms ] --------------- */
/* input, textarea, select */
.form-field,
.InputfieldContent input,
.InputfieldContent select,
.FieldtypeTextarea,
.InputfieldMaxWidth {
	width: 100%;
	padding: 6px 10px;
	margin: 0 0 6px;
	background: #fff;
	font-size: 18px;
	color: #333;
	border: 1px solid #ccc;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    resize: none;
    -webkit-appearance: none;
	}

/* normalise iOS */
input[type="checkbox"], input[type="radio"] {
    margin-left: 0
	}
input[type="checkbox"] {
    -webkit-appearance: checkbox
	}
input[type="radio"] {
    -webkit-appearance: radio
	}
	
.InputfieldSubmit {
	overflow: hidden;
	}
.InputfieldSubmit button {
	float: right;
	}
	
input:focus,
textarea:focus {
	background: #fff;
	}
	
#wrap_InputfieldSubmit span {
	display: none; /* ?? */
	}

select.form-field,
.InputfieldContent select {
	height: 36px;
	}

.toggle-icon {
	display: none;
	}

.form-input,
.Inputfield,
/*.InputfieldForm .Inputfield,*/
.form__item {
	display: block;
	list-style: none;
	margin: 0 0 6px;
	padding-right: 0;
	}
.InputfieldForm .Inputfield {
	margin: 0 0 6px;
	}

.form-input label,
.InputfieldHeader,
.form__item--label {
	float: none;
	font-size: 0.9em;
	width: 100%;
	margin: 0;
	padding: 6px 0;
	}

/* radios & checkboxes */
.InputfieldRadiosStacked,
.InputfieldRadiosStacked label,
.InputfieldCheckbox,
.InputfieldCheckbox label,
.portal-variations label {
	position: relative;
	}
.pw-no-select {
	line-height: 1.3em;
	margin-left: 1.8em;
	cursor: pointer;
	}
.FieldtypeCheckbox  + .pw-no-select,
.FormBuilder_contact .pw-no-select,
.Inputfield_agree_to_terms .pw-no-select,
.Inputfield_contact_consent .pw-no-select,
.FormBuilder-after_sales_support_form .pw-no-select {
	line-height: 1.3em;
	/*margin-left: 2em;*/
	}
	
.FieldtypeCheckbox + .pw-no-select {
	/*margin-left: 1.5em;*/
	}

.checkbox label,
.form__item label {
	position: relative;
	}
/*input[type="checkbox"],
input[type="radio"],*/
.FieldtypeCheckbox,
.InputfieldRadiosStacked input[type="radio"],
.InputfieldCheckbox input[type="checkbox"],
.portal-variations input {
	position: absolute;
	top:0;
	left:0;
	height:0;
	width:0;
	opacity: 0;
	}
.checkbox label::before,
.pw-no-select::before,
.InputfieldRadios .pw-no-select::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 1px;
	left: 0;
	height: 20px;
	width: 20px;
	border: 1px solid #ccc;
	margin: 0;
	}
.checkbox label::before,  
.pw-no-select::before {
	top: 0;
	height: 18px;
	width: 18px;
	}
	
.InputfieldRadios .pw-no-select::before {
	border-radius: 50%;
	}
.checkbox label::after,
.pw-no-select::after {
	content: "" !important;
	display: inline-block;
	position: absolute;
	top: 7px;
	left: 4px;
	height: 7px;
	width: 12px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid  #fff;
	transform: rotate(-45deg);
	margin: 0 !important;
	}
.FormBuilder-after_sales_support_form .pw-no-select::after {
	/*left: 0;*/
	}

.InputfieldRadios .pw-no-select::after {
	content: "";
	display: block;
	position: absolute;
	top: 7px;
	left: 6px;
	height: 8px;
	width: 8px;
	background: #fff;
	border: none;
	border-radius: 50%;
	transform: rotate(0);
	}
.pw-no-select::after {
	top: 4px;
	}
/*Outer-box*/
.checkbox label::before {
	top: 0;
	}
/*Checkmark*/
.checkbox label::after {
	/*left: 4px;
	top: 7px;*/
	}

input:hover + .pw-no-select::before {
	background-color: #ccc;
	}

input[type="checkbox"] + .pw-no-select::after,
input[type="radio"] + .pw-no-select::after {
	content: none;
	}
input[type="checkbox"]:checked + .pw-no-select::after,
input[type="radio"]:checked + .pw-no-select::after {
	content: "";
	}
input[type="checkbox"]:checked + .pw-no-select::before,
input[type="radio"]:checked + .pw-no-select::before {
	background: #2196F3;
	background: #222;
	}
	
/* portal-variations radios */
.checkmark,
.radiobutton {
	position: absolute;
	top: 2px;
	left: 0;
	height: 18px;
	width: 18px;
	/*background-color: #eee;*/
	border: 1px solid #ccc;
	}
.radiobutton {
	border-radius: 50%;
	}
.check-label,
.radio-label {
	padding: 0 0 3px 22px;
	position: relative;
	display: inline-block;
	}
/* On mouse-over, add a grey background color */
.form-label:hover input ~ .checkmark,
.form-label:hover input ~ .radiobutton {
	background-color: #ccc;
	}
/* When the radio button is checked, add a black background */
.form-label input:checked ~ .checkmark,
.form-label input:checked ~ .radiobutton {
	background-color: #222;
	}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after,
.radiobutton:after {
	content: "";
	position: absolute;
	display: none;
	}
/* Show the indicator (dot/circle) when checked */
.form-label input:checked ~ .checkmark:after,
.form-label input:checked ~ .radiobutton:after {
	display: block;
	}
/* Style the indicator (dot/circle) */
.form-label .radiobutton:after {
	top: 5px;
	left: 5px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: white;
	}
/* Style the indicator (checkmark) */
.form-label .checkmark:after {
	left: 6px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	}


.radio-wrapper {
	/*float: right;
	width: 74%;*/
	padding: 4px 0;
	margin: 3px 0;
	background: #fff;
	font-size: 16px;
	color: #333;
	overflow: hidden;
	}

.form-input .radio-item {
	float: left;
	width: 50%;
	clear: none;
	}
.form-input .radio-item label {
	float: none;
	display: inline;
	}

.InputfieldContent input[type=radio],
.InputfieldContent input[type=checkbox] {
	width: auto;
	margin: 10px 10px 0px 5px;
	overflow: hidden;
	}


.antispam {
	display: none;
	}

.ui-widget-content p.InputfieldError {
	margin: 5px 0 3px;
	margin-top: -25px;
	color: red;
	}

.Inputfield_pad_vatid .ui-widget-content p.InputfieldError,
.Inputfield_pad_discount_code .ui-widget-content p.InputfieldError {
	margin-top: 0;
	}

.Inputfield_shipping_address_toggle {
	margin: 5px 0 15px;
	}
.Inputfield_shipping_address_toggle .InputfieldHeader {
	display: none;
	}

.Inputfield_pad_paymentmodule,
.Inputfield_pad_shippingmodule {
	border-bottom: 1px solid #333;
	border: 1px solid #ccc;
	padding: 5px 10px 10px;
	margin: 0 0 10px;
	}
.InputfieldRadiosStacked {
	overflow: hidden;
	}


@media only screen and (min-width: 1024px) {
	.Inputfield_pad_firstname,
	.Inputfield_pad_lastname {
		width: 50%;
		display: inline-block;
		}
	.Inputfield_pad_firstname {
		padding-right: 2%;
		}
}

/* ----- [ Inputfield PW ] ---------- */
.InputfieldPasswordRow > label {
	position:absolute;
	left:-10000px;
	top:auto;
	width:1px;
	height:1px;
	overflow:hidden;
}

.InputfieldPassword input[disabled=disabled] {
	opacity: 0.6;
}

.InputfieldPassword .pass-confirm > span, 
.InputfieldPassword .pass-scores > span {
	display: none;
}
.InputfieldPassword .pass-confirm > span.on, 
.InputfieldPassword .pass-scores > span.on {
	display: inline;
}

.InputfieldPassword .pass-require-good {
	text-decoration: line-through;
}

.pass-invalid,
.pass-short,
.pass-same, 
.pass-common {
	color: red; 
}

.confirm-no,
.pass-fail {
	color: orangered;
}

.pass-weak {
	color: orangered;
}
.pass-medium {
	color: orangered;
}

.pass-good {
	color: seagreen;
}

.pass-matches .pass-weak,
.pass-matches .pass-medium,
.pass-matches .pass-good,
.pass-matches .pass-excellent {
	color: green;
}

.confirm-yes, 
.pass-excellent {
	color: green;
}




/* ----- [ Buttons ]-------- */
button,
.button,
a.button {
	font-family: 'Lato', sans-serif;
	display: inline-block;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
	width: auto;
	padding: 8px 20px;
	color: #fff;
	background: #000;
	border: 1px solid #000;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 30px;
    resize: none;
	}

.button-outline,
a.button-outline {
	color: #333;
	background: none;
	padding: 7px 20px;
	border: 1px solid #ccc;
	}

.button-full-width,
a.button-full-width {
	width: 100%;
	margin: 0 0 10px;
	}

.button-small,
a.button-small {
	font-size: 0.75em;
	padding: 3px 12px;
	}
/*
.product-overlay .button {
	padding: 5px 10px;
	margin: 10px 0 0;
	display: inline-block;
	}
*/

.button-gray,
a.button-gray {
	color: #333;
	background: #e2e2e2;
	border: 2px solid #e2e2e2;
	}

button:hover,
.button:hover,
.button.on {
	background: #e3e3e3;
	color: #222;
	border-color: #e3e3e3;
	text-decoration: none;
	-webkit-appearance: none;
	}

.button-gray:hover {
	color: #333;
	background: #ccc;
	border-color: #ccc;
	text-decoration: none;
	}

.button-half {
	display: inline-block;
	width: 49% !important;
	float: left;
	}
.button-half:nth-of-type(even) {
	float: right;
	}

button.full,
a.full,
.button-full {
	width: 100%;
	display: block;
	}

.button-half {
	width: 49%;
	margin: 0 2% 10px 0;
	}
.button-half:nth-of-type(even) {
	margin: 0 0 10px 0;
	}
	
.button-right {
	float: right;
	}

.button-phone > span,
.button-arrow > span {
	display: inline-block;
	}
.button-phone:hover > span {
	font-size: 130%;
	margin-top: -10px;
	margin-bottom: -10px;
	}
	
.button-arrow span {
	font-size: 2rem;
	}

input.pad-qty,
.pad-qty input  {
	text-align: center;
	width: 30px;
	-moz-border-radius: 0;
    -khtml-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    resize: none;
    -webkit-appearance: none;
    border: 1px solid #ccc;
	}

.form-input li label.error {
	clear: both;
	width: 100%;
	text-align: right;
	color: red;
	}
.error p {
	color: #f00;
	border: 2px solid #f00;
	padding: 5px 10px;
	text-align: center;
	margin: 0;
	}
.button.disabled {
	cursor: default;
	}
.button.disabled:hover {
	cursor: default;
	background: inherit;
	color: inherit;
	}

.form-button {
	float: right;
	margin-left: 5px;
	}

.bogus-button {
	opacity: 0.8;
	}
.cancel-button {
	float: left;
	}
.stripe-button-el {
	float: right;
	}

.side-shopping-cart .button,
.side-shopping-cart button {
	display: block;
	width: 100%;
	margin: 10px 0;
	}

.added-to-cart {
	opacity: 0;
	}

.add-to-cart {
	margin-right: 15px;
	margin-bottom: 2em;
	}


/* button-see above */
.error,
.success {
	/*padding: 5px;
	color: #fff;
	border: 4px solid orange;
	background: orange;
	margin: 0 0 20px;
	width: auto;
	border-radius: 4px;*/
	color: #f00;
	float: right;
	text-align: right;
	font-size: 0.9rem;
	}
.success {
	color: #222;
	float: none;
	text-align: left;
	font-size: 1rem;
	border: 1px solid #ccc;
	padding: 20px;
	}
.FormBuilderErrors {
	display: none;
	}
.InputfieldCheckbox .error {
	margin-top: 0.6em;
	}

.ui-widget-content p {
	text-align: right;
	margin: -1.6em 0 0;
	}
span.ui-state-error {
	color: red;
	}

p.input-block {
    position: relative;
    margin-bottom: 12px;
    }

.error-msg p {
	border: 1px solid #ccc;
	font-size: 1em;
	line-height: 1.4em;
	padding: 10px 15px;
	}

/* ----- [ Contact Page ] --------------- */
input[type="checkbox"] {
	width: auto !important;
	}

.form__item--c_contact_consent,
.form__item--c_terms_consent,
.Inputfield_i_agree_to_the_terms_and_conditions_and_privacy_policy,
.Inputfield_you_may_contact_me_with_news_and_special_offers_i_may_be_interested_in {
	line-height: 0.9em !important;
	margin-bottom: 0.5em !important;
	}
.Inputfield_i_agree_to_the_terms_and_conditions_and_privacy_policy label,
.Inputfield_you_may_contact_me_with_news_and_special_offers_i_may_be_interested_in label {
	font-size: 0.9em !important;
	}

.field__header--hidden,
.form__item--scf-website {
	display: none;
	}
.field--error--message {
	float: right;
	color: #f00;
	font-size: 0.95em;
	margin: 0;
	}
	
.form--error--message {
	text-align: center;
	padding: 5px;
	font-size: 1em;
	border: 1px solid red;
	color: red;
	margin-top: 5px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	}

.FieldtypeCheckbox {
	margin-right: 0.5em;
	}

#wrap_InputfieldSubmit span {
	display: none;
	}

.appointments-widget {
	margin: 0 0 2em;
	padding: 1.5em 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	}

/* ------ [ After Care Pages & Product USP ] -----------------*/
.after-sales-button {
	display: none !important;
	}
	
.LoginRegisterLinks {
	margin: 0 0 1em;
	}

.support-page-grid {}

.support-grid-item {
	position: relative;
	margin-bottom: 20px;
 	padding: 20px 15px 15px;
	border: 1px solid #ccc;
 	}
 .support-icon {
	width: 40px;
	margin: 0 0 45px;
	}
.support-grid-item p {
 	font-size: 0.9rem;
 	line-height: 1.4em
 	}

.support-grid-item a:hover {
	background: rgba(210,210,210,0.7);
 	}
 	
.product-usp {
 	text-align: center;
 	height: 100%;
 	margin-bottom: 0;
 	padding: 30px 15px 15px;
 	}	
 .product-usp .support-icon {
	width: 50px;
 	margin: 0 auto 25px;
 	opacity: 0.7;
 	}
 .product-usp h3 {
 	font-size: 1.05em;
 	}


/* ------ [ Portal Pages ] -----------------*/
.portal-row {
	overflow: visible;
	}
.downloads-wrapper,
.products-wrapper {
	margin: 3em 0 3em;
	}

.download {
	border-top: 1px solid #ccc;
	padding: 20px 0;
	}
.download:last-of-type {
	border-bottom: 1px solid #ccc;
	}
.download-link,
.download-link:hover {
	display: block;
	float: left;
	margin: 0 30px 10px 0;
	text-decoration: none;
	border: none;
	}
.doc-thumb {
	text-align: right;
	width: auto;
	/*height: 80px;*/
	width: 50px;
	margin: 0;
	background: transparent;
	-webkit-box-shadow: 0 2px 7px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 2px 7px rgba(0,0,0,0.3);
	box-shadow: 0 2px 7px rgba(0,0,0,0.3);
	}

download h5 {
	margin: 0;
	}

.file-meta {
	font-size: 0.9em;
	}


.sticky-nav {
	 position: sticky;
	 top: 150px;
	 }
	 
/* hacky shit */
.sticky-nav-not {
	margin-top: -55px;
	}
.side-fix .sticky-nav-not {
	margin-top: 0;
	}

.sibling-navigation {
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
	padding-bottom: 12px;
	}
.sibling-navigation a {
	font-size: 12px;
	font-weight: 700;
	color: #222;
	text-transform: uppercase;
	letter-spacing: 2px;
	}
.sibling-navigation a:hover,
.sibling-navigation a.on {
	color: #666;
	}

.list-nav {
	margin: 20px 0 0 0;
	}
	
.list-nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	justify-content: space-between;
	align-content: center;
	margin: 0 -5px;
	}

.list-nav li {
	display: inline-block;
	margin: 0;
	padding: 0 5px;
	/*margin: 0 2em 0.5em 0;
	margin: 0 2vw 5px;*/
	}

.list-nav a {
	font-size: 9.6px;
	font-weight: 700;
	color: #949494;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding-bottom: 2px;
	white-space: nowrap;
	/*border-bottom: 1px solid #ccc;*/
	}
.list-nav a:hover {
	color: #222;
	border-bottom: none;
	}

.sibling-navigation  li {
	margin: 0 0 4px;
	/* shit */
	margin: 0 0 1.1em;
	line-height: 1.3em;
	}
.log-out-links {
	line-height: 1.8em;
	}


/* Order History */
.info-block {
	border-bottom: 1px solid #d1d1d1;
	margin: 0;
	}
.info-block-head {
	font-size: 0.8rem;
	text-transform: uppercase;
	padding: 15px 0;
	margin: 0;
	letter-spacing: 1px;
	cursor: pointer;
	}
.info-block-head:after {
	content: "+";
	font-size: 1rem;
	float: right;
	/*margin-right: 1em;*/
	}
.info-block-head.open {
	border-top: 3px solid #000;
	margin-top: -1px;
	}
.info-block-head.open:after {
	content: "–";
	}
	

.info-block-text {
	padding: 0;
	margin: 0;
	display: none;
	border-bottom: 3px solid #000;
	margin-bottom: -1px;
	}

.anchor-row::before {
	display: block;
	content: " "; 
	margin-top: -285px; 
	height: 285px; 
	visibility: hidden; 
	pointer-events: none;
	}
	
.downloads-wrapper.anchor-row::before,
.product-row.anchor-row::before {
	margin-top: -205px; 
	height: 205px; 
	}

.float-top {
	float: right;
	font-size: 1rem;
	}



/* ----- [ Site Map: Unused? ] --------------- */
.sitemap li {
	list-style: none;
	margin:  0;
	font-size: 16px;
	line-height: 1.2em;
	padding: 0 0 0 1em;
	}
.sitemap li li {
	list-style: disc;
	}
.sitemap li li li {
	list-style: circle;
	}
.sitemap li li li li {
	list-style: square;
	}


/* ----- [ Utility Styles ] --------------- */
.mobile {
	display: block;
	}
.desktop {
	display: none;
	}


.highlight-link {
	border-bottom: 1px solid red;
	border-bottom: 1px solid #222;
	}

.quickedit {
	display: none;
	position: absolute;
	top: 0;
	right: 20px;
	}

.clear {
	clear: both;
	}

@media only screen and (min-width: 600px) {
	.mobile {
		display: none;
		}
	.desktop {
		display: block;
		}
}


img.right {
	float: right;
	}
.fright {
	float: right;
	}
.fleft {
	float: left;
	}
	
.centered,
.text-centered,
.text-center,
.centered p,
.centered h2,
.centered h3 {
	text-align: center;
	}
	
.text-left,
.text-left p,
.text-left h2,
.text-left h3 {
	text-align: left;
	}
.text-right,
.text-right p,
.text-right h2,
.text-right h3 {
	text-align: right;
	}
	
.text-small {
	font-size: 1em;
	}
	
.footnote {
	font-size: 16px;
	}

.margin-b {
	margin-bottom: 1em;
	}

.clearfix:before,
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
	}
.clearfix:after {
	clear: both;
	}
.clearfix { 
	zoom: 1;
	}



/* ----- [ PW Pager Nav: Search Results ] --------  */
.MarkupPagerNav {
	text-align: right;
	padding: 0 15px;
	}
.MarkupPagerNav li {
	display: inline-block;
	font-size: 15px;
	line-height: 1em;
	margin: 0 0 10px;
	}
.MarkupPagerNav a {
	display: block;
	border: 1px solid #e2e2e2;
	padding: 6px 8px;
	/*font-weight: bold;*/
	}

.MarkupPagerNav a:hover {
	border: 2px solid #e2e2e2;
	padding: 5px 7px;
	}

.MarkupPagerNavOn a {
	font-weight: bold;
	border: 1px solid #e2e2e2;
	background: #e2e2e2;
	color: #222;
	}


/* ----- [ Bottom Navigation ] -------------- */
.about-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid #222;
	z-index: 100;
	display: none;
	}
.bottom-nav {
	text-align: center;
	}
.bottom-nav li {
	display: inline-block;
	margin: 10px 2px;
	}
.bottom-nav a {
	padding: 10px;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
	}
.bottom-nav a:hover {
	color: #000;
	background: #dedede;
	}

@media only screen and (min-width: 600px) { /* 1024 */
	.about-menu {
		display: block;
		}
}


/* ----- [ Footer ] --------------- */
.page-footer {
	clear: both; 
	background: #e9e9e9;
	background: #fff;
	border-top: 1px solid #bbbbbb;
	padding: 50px 0;
	color: #333;
	text-align: left;
	flex-shrink: 0;
	}
.top-footer {
	margin-top: 80px;
	}
.bottom-footer {
	padding: 0;
	}
.footer-row {
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: space-between; 
	align-items: baseline;
	}
.footer-row .col {
	flex-grow: 0;
	margin-bottom: 30px;
	}

.footer-logo {
	max-width: 125px;
	max-width: 80px;
	line-height: 1.3em;
	margin-bottom: 10px;
	}
.footer-logo img {
	display: inline;
	width: 100%;
	}

.page-footer p,
.page-footer li {
	font-size: 1em;
	line-height: 1.6em;
	font-weight: 400;
	color: #333; 
	margin: 0;
	}

.page-footer li {
	margin: 0;
	}

p.smith-text {
	text-align: center;
	font-size: 10px;
	}

p.site-copyright {
	/*float: left;*/
	margin: 0 0 1em 1.5em;
	}

.bottom-footer .footer-row {
	padding-bottom: 40px;
	}
.bottom-footer .footer-row:after {
	content: '';
	width: 5px;
	height: 80px;
	background: #000;
	position: absolute;
	bottom: 0;
	left: 18px;
	}


@media only screen and (min-width: 600px) { /* 1024 */
	.footer-row {
		flex-direction: row;
		}
	.bottom-footer {
		padding-bottom: 35px;
		padding-bottom: 0;
		}
	.page-footer p,
	.page-footer li {
		font-size: 13px;
		}
}

/* ----- [ Social Media Icons ] --------------- */
.social-icons-wrapper .social-icon {
    color: #fff;
    display: inline-block;
    height: 22px;
	width: 22px;
    margin-right: 10px;
	}

.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: #222;
	}

.social-icons-wrapper .social-icon-dribbble:hover { color: #ea4c89 }
.social-icons-wrapper .social-icon-facebook:hover { color: #3b5998 }
.social-icons-wrapper .social-icon-instagram:hover { color: #231f20 }
.social-icons-wrapper .social-icon-linkedin:hover { color: #0077b5 }
.social-icons-wrapper .social-icon-twitter:hover { color: #1da1f2 }
.social-icons-wrapper .social-icon-vimeo:hover { color: #1ab7ea }
.social-icons-wrapper .social-icon-youtube:hover { color: red }
.social-icons-wrapper .social-icon-pinterest:hover { color: #bd081c }


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

.social-networks a:hover {
	opacity: 1;
	}

.top-link {
    position: fixed;
    bottom: 60px;
    right: 16px;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    z-index: 100;
    display: none;
	}
.top-link a {
    color: #e1e1e1;
    font-size: 2.5em;
    line-height: 1;
    display: block;
    height: 50px;
	width: 50px;
    outline: medium none;
    position: relative;
    /*text-indent: -9999px;*/
    z-index: 0;
    text-align: center;
    }
.top-link.show {
	opacity: 1;
	}


/* ----- [ Utility ] ------------------ */
#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; 
	}

.align_left,
img.align_left {
	float: left;
	margin: 0.3em 1.2em 1.5em 0 !important;
	}

.align_right,
img.align_right {
	float: right;
	margin: 0.3em 0 1.5em 1.2em !important;
	}

.align_center {
	display: block;
	margin-left: auto !important;
	margin-right: auto !important;
	}


/* for debugging; remove after production */
.debug {
	display: none;
	}

.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
	}


/* ----- [ Notify.js ] ------------------ */
.notify{
	position: fixed;
	width: 400px;
	padding: 15px;
	z-index: 9999;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.notify > button.close{
	position: absolute;
	top: 8px;
	right: 12px;
	-webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
	float: right;
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
	outline: none;
}
.notify > button.close:hover{
	filter: alpha(opacity=50);
    opacity: .5;
}
.notify-dismissible .message{
	padding-right: 25px;
}

/** animation type **/
.notify.scale{
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
}
.notify.left.drop{
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 0;
}
.notify.center.drop{
	-webkit-transform: translateY(-120%);
	-moz-transform: translateY(-120%);
	-o-transform: translateY(-120%);
	transform: translateY(-120%);
	opacity: 0;
}
.notify.right.drop{
	-webkit-transform: translateX(50%);
	-moz-transform: translateX(50%);
	-o-transform: translateX(50%);
	transform: translateX(50%);
	opacity: 0;
}
.notify.middle.center.drop{
	-webkit-transform: translateY(-20%);
	-moz-transform: translateY(-20%);
	-o-transform: translateY(-20%);
	transform: translateY(-20%);
	opacity: 0;
}
.notify.bottom.center.drop{
	-webkit-transform: translateY(120%);
	-moz-transform: translateY(120%);
	-o-transform: translateY(120%);
	transform: translateY(120%);
	opacity: 0;
}
.notify.fade{
	opacity: 0;
}
.notify.out{
	opacity: 0;
}

/** notify type **/
.notify-default{
	background-color: #fff;
	color: #333;
	box-shadow: 0 3px 10px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 3px 10px rgba(0,0,0,.2);
}
.notify-info{
	color: #31708f;
	background-color: #d9edf7;
}
.notify-toast{
	color: #fff;
	background-color: #888;
	background-color: rgba(0,0,0,0.75);
}
.notify-danger{
	color: #a94442;
	background-color: #f2dede;
}
.notify-warning{
	color: #8a6d3b;
	background-color: #fcf8e3;
}
.notify-success{
	color: #3c763d;
	color: #fff;
	background-color: #dff0d8;
	background-color: #222;
}

/** position **/
.notify.top{
	top: 15px;
}
.notify.middle{
	top: 50%;
}
.notify.bottom{
	bottom: 15px;
}
.notify.left{
	left: 15px;
}
.notify.center{
	left: 50%;
	margin-left: -200px;
}
.notify.right{
	right: 15px;
}

/** buttons **/
.notify-buttons{
	width: 100%;
	margin-top: 10px;
}
.notify-buttons.left{
	text-align: left;
}
.notify-buttons.center{
	text-align: center;
}
.notify-buttons.right{
	text-align: right;
}
.notify-buttons > button{
	border: 1px solid #ddd;
	padding: 4px 10px;
	background: #fff;
	color: #333;
	cursor: pointer;
	outline: none;
}
.notify-buttons > button:hover{
	background: #eee;
}
.notify-buttons > button:first-child{
	margin-right: 5px;
}

/** util **/
.notify-backdrop {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 9998;
	background-color: #000;
	opacity: 0;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition: opacity .4s ease-in-out;
	-o-transition: opacity .4s ease-in-out;
	transition: opacity .4s ease-in-out;
}
body.notify-open{
	overflow: hidden;
}
body.notify-open-drop{
	overflow-x: hidden;
}

@media all and (max-width:768px){
	.notify{
		width: 100%;
		left: 0!important;
		margin: 0!important;
		border-radius: 0;
		-webkit-border-radius: 0;
	}
	.notify.top{
		top: 0!important;
	}
	.notify.bottom{
		bottom: 0!important;
	}
	.notify.middle{
		width: 80%!important;
		margin-left: 10%!important;
		border-radius: 4px;
		-webkit-border-radius: 4px;
	}
	.notify.left.drop, .notify.right.drop{
		-webkit-transform: translateY(-120%);
		-moz-transform: translateY(-120%);
		-o-transform: translateY(-120%);
		transform: translateY(-120%);
	}
	.notify.bottom.drop{
		-webkit-transform: translateY(120%);
		-moz-transform: translateY(120%);
		-o-transform: translateY(120%);
		transform: translateY(120%);
		opacity: 0;
	}
}


/* ----- [ PRINT STYLES ] ------------------ */
@media print {
	html, body {
		font-size: 10pt;
	}
	.page-header {
		position: absolute;
		}
	.page-footer {
		display: none;
		}

}

