/**
	@Author:	Paul Strandoo for Spi-des-ign
	@Date:		12 Oct 2021
	@Notes:		The Belgian Monk
		
	FONTS & COLORS
	-------------
	navy: #272441; rgba(40,35,67,1); #c85f49
	cherry red: #77d8d8;
	Font-family: 'Ovo', serif;
	Font-family: 'Quattrocento Sans', sans-serif;
	available weight: 300, 400, 400i, 700;
	inner max-width: 1070px;
*/
@import url('reset.css');
@import url('font-awesome.min.css');

:root {
	--accent: #c85f49;
	--page-margin: 0; /* 0 | 20px */
	--header-bg: transparent; /* #fff */
	--header-bg2: #222; /* #fff */
	--header-padding: 0 30px 0 0;
	--hero-border: none;
	--hero-border2: none;
	
	--grey1: #f4f4f4;
	--grey2: #c4c4c4;
	--grey3: #939393;
	--grey4: #242424;
	--black: #000000;
    --inner: 1200px;
    --inner-narrow: 900px;
    --inner-wide: 1400px;
    --inner-max: 100%;
    --medium-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
	}

* {
	box-sizing: border-box;
	}

html {
	font-size: 100%;
	}
body {
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	background: #ffffff;
	}

body, input, textarea, table {
	font-family: 'Quattrocento Sans', sans-serif;
	font-weight: 400;
	color: #000000;
	}
	
@media only screen and (max-width: 500px) { 
	body {
		font-size: 1.2em;
		}
}
	
/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: 'Quattrocento Sans', sans-serif;
	font-weight: 300;
	font-size: 1em;
	line-height: 1.6em;
	margin: 0 0 1em;
	color: #666;
	}
li {
	margin: 0;
	}

em {
	font-style: italic;
	}
b,
strong {
	font-weight: 600;
	}

a {
	color: #888;
	border-bottom: 1px solid var(--accent);
	border-bottom: 1px solid transparent;
	}
.cms-text a,
.sidebar-nav a {
	color: var(--accent);
	}
a:hover {
	color: var(--accent);
	border-bottom: 1px solid var(--accent);
	}

h1,h2,h3,h4 {
	font-family: 'Ovo', serif;
	font-weight: 400;
	margin: 0 0 0.5em;
	color: #222;
	}
h1, .h1 {
	font-weight: 300;
	font-size: 2.2em;
	line-height: 1;
	margin: 0 0 0.5em;
	}
h2, .h2 {
	color: #222;
	font-weight: 300;
	font-size: 1.7em;
	line-height: 1.3;
	margin: 0 0 0.6em;
	text-transform: none;
	}
h3 {
	font-weight: 300;
	font-size: 1.8em;
	line-height: 1.2;
	margin: 0 0 0.6em;
	}
	
p + h3 {
	margin: 1em 0 0.6em;
	}

h4 {
	font-size: 0.9em;
	line-height: 1.4em;
	font-weight: 300;
	color: #222;
	margin: 0 0 0.5em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	}
	
.menu-section-head::before { 
	display: block; 
	content: " "; 
	margin-top: -175px; 
	height: 175px; 
	visibility: hidden; 
	pointer-events: none;
	}
.menu-section-head span {
	color: #aaa;
	}

@media only screen and (min-width: 600px) { 
	h1, .h1 {
		font-size: 3em;
		line-height: 1;
		}
	h2, .h2 {
		font-size: 2em;
		}
	h3 {
		font-size: 1.5em;
		}		
}

img {
	display: block;
	vertical-align: middle;
	}

/* global section centering */
.centered,
.centered p,
.centered h2,
.centered h3 {
	text-align: center;
	}

/* ----- [ Structure ] --------------------------*/
.page-wrapper {
	position: relative;
	padding-top: 0;
	margin: var(--page-margin);
	background: #fff;
	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: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: rgba(0,0,0,0.4);
	z-index: 600;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
	
header,
section,
footer {
	background: #ffffff;
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
	padding: 30px 0;
	}
.inner {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 30px;
	}
.inner-full {
	max-width: 100%;
	padding: 0;
	overflow: hidden;
	}
.inner-narrow {
	max-width: 900px;
	}
.inner-wide {
	max-width: 1600px;
	}
	
@media only screen and (min-width: 600px) { 
	section {
		padding: 70px 0;
		}
}

/* ----- [ 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;
	position: relative;
	}

.col {
	flex: 1;
	}

.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%;
	}

.width-marker { color: grey; }


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

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

@media only screen and (min-width: 600px) { 
	.row {
		flex-direction: row;
		}
	
	/* 60/40 */
		
	/* NEW */
	.m-auto {
		width: auto;
		}
	.m-full,
	.m-1of1,
	.m-2of2 {
		width: 100%;
		flex: auto;
		}
	.m-1of2,
	.m-50 {
		width: 50%;
		flex: none;
		}
	.m-1of3,
	.m-33 {
		width: 33.3333%;
		flex: none;
		}
	.m-2of3,
	.m-66 {
		width: 66.6667%;
		flex: none;
		}
	.m-1of4,
	.m-25 {
		width: 25%;
		flex: none;
		}
	.m-3of4,
	.m-75 {
		width: 75%;
		flex: none;
		}
	.m-1of5,
	.m-20 {
		width: 20%;
		flex: none;
		}
		
	.m-hidden { display: none; }
	.width-marker { color: red; }
}

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

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




/* ----- [ Masthead / Page Header ] -------------*/
.page-header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	margin: var(--page-margin);
	padding: 0;
	z-index: 1000;
	background: var(--header-bg2);
	/* box-shadow: 2px 10px 15px rgba(41,44,61,.05); */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Force Hardware Acceleration */
	-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;
	}

.open .page-header {
	/*height: 100vh;*/
	position: fixed;
	}

.page-header .inner {
	max-width: 1500px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/*flex-wrap: wrap;*/
	justify-content: center;
	justify-content: space-between;
	align-items: center;
	align-itmes: flex-end;
	background: var(--header-bg);
	position: relative;
	max-width: 100%;
	height: 100%;
	margin: 0 auto 0;
	padding: 10px;
	}

.logo-wrap {
	width: auto;
	max-width: 140px;
	width: 100%;
	margin: 0 auto 0 0;
	padding: 0;
	background: var(--accent);
	background: #222;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.logo-wrap img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
	padding: 5px 10px;
	}
	
.menu-trigger,
.logo-wrap a,
.logo-wrap a:hover {
	border-bottom: none;
	}

.top-bar {
	color: #fff;
	background: #45435b;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	text-align: right;
	}
.top-bar .inner {
	justify-content: center !important;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	text-align: center;
	}
.top-bar a {
	color: #fff;
	white-space: nowrap;
	}
	
@media only screen and (min-width: 600px) {
	.page-header .inner {
		padding: 10px 30px;
		}
}

@media only screen and (min-width: 1020px) {
	.page-header {
		position: fixed;
		padding: 0 30px 0 0;
		background: -moz-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 21%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
		background: -webkit-linear-gradient(top, rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.7) 21%,rgba(0,0,0,0.4) 60%,rgba(0,0,0,0) 100%);
		background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.7) 21%,rgba(0,0,0,0.4) 60%,rgba(0,0,0,0) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#00000000',GradientType=0 );
		}
		
	.t-menu-item .page-header,
	.t-cart-page .page-header,
	.t-checkout-page .page-header {
		background: var(--header-bg2);
		}
	
		
	.page-header .inner {
		/*max-width: 1200px;*/
		margin: 0 auto 0;
		padding: 0;
		justify-content: space-between;
		overflow-x: visible;
		}
		
	.page-header.small {
		background: var(--header-bg2);
		}
	.page-header.small .inner {
		margin-top: 0;
		}

	.logo-wrap {
		display: block;
		max-width: 180px;
		width: auto;
		margin: 0 auto 0 0;
		padding: 5px;
		}
	.logo-wrap img {
		}
	.logo-wrap a,
	.logo-wrap a:hover {
		border: none;
		}
	.top-bar .inner {
		justify-content: flex-end !important;
		text-align: right;
		}
}

/* ----- [ Navigation ] ------------------------ */
.main-navigation {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background: #fff;
	background: rgba(255,255,255,0.95);
	background: var(--header-bg2);
	}
.open .main-navigation {
	display: block;
	padding-top: 40px;
	padding-bottom: 80px;
	height: calc(100vh - 76px);
	overflow-x: auto;
	}

.main-navigation ul {
	text-align: center;
	margin: 0;
	}
.nav-item {
	position: relative;
	font-size: 24px;
	font-size: 1em;
	text-transform: uppercase;
	margin: 10px 0;
	letter-spacing: 0.05em;
	}
.nav-item a,
.nav-item span {
	color: #333;
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 0 0 10px;
	border: none;
	}
.nav-item a:hover,
.nav-item a.on,
.nav-item span:hover,
.nav-item span.on {
	color: #000;
	color: #fff;
	}
.nav-item span {
	cursor: default;
	}

.nav-item.li-phone {
	text-transform: none;
	}

.has-children:after {
	content: " +";
	content: "\f107";
	font-family: fontawesome;
	font-weight: bold;
	margin-left: 0.3em;
	}
	
.dropnav .nav-item {
	text-transform: none;
	}
/*	
.small .nav-item a,
.small .nav-item span {
	color: #333;
	}
*/
	
.dropnav {
	/* display: none; */
	}

@media only screen and (min-width: 1020px) {
	.menu-toggle {
		display: none;
		}
		
	.main-navigation {
		display: block;
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		width: auto;
		margin: 0;
		margin-right: 40px;
		padding: 0;
		background: transparent;
		overflow: visible;
		}
	.main-navigation p {
		display: block;
		}
	.main-navigation ul {
		text-align: left;
		display: block;
		margin: 0;
		}
	.nav-item {
		position: relative;
		display: inline-block;
		margin: 0 0 0 1.5em;
		}

	.nav-item a,
	.nav-item span {
		text-decoration: none;
		font-size: 1em;
		font-weight: 700;
		padding: 0;
		color: #666;
		color: #fff;
		text-transform: uppercase;
		}
	.nav-item a:hover,
	.nav-item a.on,
	.nav-item span:hover,
	.nav-item span.on {
		color: #000;
		color: var(--accent);
		}
		
	.nav-item.li-phone {
		font-size: 16px;
		letter-spacing: 0;
		margin-right: 10px;
		}
	.phone-label {
		display: none;
		}
		
	.small .nav-item a,
	.small .nav-item span {
		/* color: #666;*/
		}
	.small .nav-item a:hover,
	.small .nav-item span:hover,
	.small .nav-item a:on,
	.small .nav-item span:on {
		color: var(--accent);
		}
	
	/* Drop Menus */	
	.dropnav {		
		display: block;
		position: absolute;
		min-width: 140px;
		width: auto;
		top: 120%;
		margin-left: -15px;
		/* left: -50%; */
		text-align: left;
		background: #fff;
		z-index: 9999;
		visibility: hidden;
		opacity: 0;
		padding: 10px 15px;
		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;
		}
	.nav-item:hover .dropnav {
		top: 120%;
		visibility: visible;
		opacity: 1;
		}

	.dropnav ul {
		margin: 0;
		}
	.dropnav .nav-item {
		display: block;
		font-size: 1em;
		text-align: left;
		text-transform: capitalize;
		font-weight: 600;
		letter-spacing: 0;
		margin: 0;
		}
	.dropnav .nav-item a {
		color: #222;
		padding: 5px 0;
		margin: 0;
		border: none;
		}
	.dropnav a:hover,
	.dropnav a.on {
		color: #d6121c;
		color: #428bca;
		color: var(--accent);
		text-decoration: none;
		}
	.dropnav .nav-item ul {
		display: inherit;
		}
}

/* ----- [ Menu Trigger (Hamburger) ] ---------- */
.menu-trigger {
	position: relative;
	height: 50px;
	width: 50px;
	}

.menu-trigger:hover {
	border: none;
	}
.menu-trigger .menu-text {
	height: 100%;
	text-transform: uppercase;
	color: #fff;
	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: 22px;
	height: 2px;
	background-color: #fff;
	/* 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: 7px;
	}
.menu-trigger .menu-icon::after {
	top: 7px;
	}
.menu-trigger.is-clicked .menu-icon {
    background-color: #fff;
	background-color: rgba(255, 255, 255, 0);
	}
.menu-trigger.is-clicked .menu-icon::before, 
.menu-trigger.is-clicked .menu-icon::after {
	background-color: #fff;
	}
.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);
	}
	
@media only screen and (min-width: 1020px) {
	.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);
		}
}

/* ----- [ Flex Container (Header) ] ----------- */
.flex-container {
	display: block;
	height: 100%;
	}
.flex-container > * {
	display: block;
	}
	
@media only screen and (min-width: 1020px) { /* 800  1110 */
	/* Make this a Utility Class */
	.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;
		}
		
	.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; }
}

.sticky {
	position: sticky;
	top: 5px;
	}

.module-full:nth-of-kind(1) {
	}

.module-full-text {
	color: #fff;
	padding: 20px 30px;
	}
.module-full-text p {
	color: #fff;
	margin-bottom: 2em;
	}
.module-full-text h3 {
	font-size: 2.8rem;
	line-height: 1;
	color: #fff;
	}

.background-image-1 .module-full-text {
	justify-self: flex-end;
	text-align: left !important;
	margin: 0 auto;
	}
.background-image-1 .module-full-text h3,
.background-image-1 .module-full-text p {
	text-align: left !important;
	}
	
.bg-image-fixed {
	background-attachment: fixed !important;
	background-size: cover;
	}

/* check if mobile */
@media (pointer: coarse) {
	.bg-image-fixed {
	 	background-attachment: initial !important;
		}
}

@media only screen and (min-width: 600px) {
	.background-image-1 .module-full-text {
		margin: 0 auto 0 5vw;
		padding-right: 30px;
		}
}	
@media only screen and (min-width: 1020px) {
	.sticky {
		position: sticky;
		top: 100px;
		}
}

/* ----- [ Sections ] -------------------------- */
.top {
	padding: 0;
	}

/* ----- [ Hero Images ] -----------------*/
.hero {
	height: 640px;
	max-height: 75vh;
	margin: 0;
	border-top: var(--hero-border);
	overflow: hidden;
	background-size: cover;
	}
.t-shop-page .hero {
	height: 250px;
	}

.hero-overlay {				
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	align-items: center;
	background: transparent;
	background: rgba(0,0,0,0);
	}
.hero-inner {
	max-width: 1140px;
	height: 100%;
	padding: 0;
	position: relative;
	}
	
.hero-text-wrapper {
	max-width: 1100px;
	}
.hero-text {
	/*padding: 20px;*/
	/*max-width: 860px;*/
	text-align: left;
	}
.home .hero-text {
	margin: 0;
	}
.home .hero-text p,
.home .hero-text h2 {
	color: #fff;
	font-size: 1.2em;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
	}

.home .hero-text h2	 {
	color: #45435b;
	color: #fff;
	font-size: 4rem;
	font-weight: 700;
	margin: 0 0 0.3em;
	line-height: 1;
	}


.hero-down-link {
	position: absolute;
	bottom: 20px;
	left: 0px;
	height: auto;
	width: 100%;
	text-align: center;
	}
.se-icon {
	width: 42px;
	margin: 0 auto;
	}
.se-icon a {
	fill: #fff;
	text-decoration: none;
	border: none;
	}

@media only screen and (min-width: 600px) {
	.home-hero {
		height: 100vh;
		}
	.home-intro-meta {
		padding: 8px 0 0 40px;
		padding: 8px 0 0 2.5vw;
		}
}

@media only screen and (min-width: 1020px) {
	.hero {
		border-top: var(--hero-border2); /* header height */
		}
}


.home-intro {
	background: url('../images/background-monk.png') 95% -130% no-repeat;
	background: url('../images/grain-drawing-10.png') 110% 180% no-repeat;
	background: url('../images/hops-10.png') 110% 50px no-repeat;
	background-size: 260px;
	background-size: 500px;
	}
.home-intro-meta {
	padding: 8px 0;
	}
.home-intro-meta h3,
.contact-page-meta h3 {
	margin: 0 0 0.2em;
	}

/* ----- [ OpenTable Widget ] -----------------*/
.section-booking {
	background: #f9f9f9;
	background: url('../images/background-monk.png') 95% -130% no-repeat;
	background: url('../images/hops-barley-10.png') -50px 50px no-repeat;
	background: #f9f9f9 url('../images/grain-drawing-10.png') -50px 50px no-repeat;
	background-size: 260px;
	background-size: 500px;
	}

/* for the iframe (needs embedding) */
.ot-title {
	text-align: center !important;display:none;
	}
.ot-powered-by {
	background-position: center !important;
	}
.ot-dtp-picker.wide {
	width: 100% !important;
	}
.ot-dtp-picker.tall {
	width: 288px !important;
	margin: 0 auto;
	}
.ot-dtp-picker-form a,
.ot-dtp-picker-form a:hover {
	border-bottom: none;
	}
.ot-dtp-picker .ot-dtp-picker-button {
	-webkit-box-shadow: none;
	box-shadow: none;
	margin: -1px 0 0 0 !important;
	}

.ot-dtp-picker .ot-dtp-picker-selector select {
	left: 0;
	}

.ot-dtp-picker.wide .ot-dtp-picker-form {
	min-height: 48px;
	display: flex;
	justify-content: space-evenly;
	}
.ot-dtp-picker.wide .ot-dtp-picker-form .ot-dtp-picker-selector,
.ot-dtp-picker.wide .ot-dtp-picker-form .ot-dtp-picker-button {
	float: none;
	width: 100%;
	}

@media only screen and (max-width: 600px) {  /* note: MAX */
	.ot-dtp-picker .ot-dtp-picker-form {
		display: flex;
		flex-wrap: wrap;
		}
	.ot-dtp-picker.wide .ot-dtp-picker-form {
		height: auto;
		}
	.ot-dtp-picker-form a,
	.ot-dtp-picker-form a:hover {
		border-bottom: 1px solid #ccc;
		}
	.ot-dtp-picker.wide .ot-dtp-picker-form .ot-dtp-picker-selector,
	.ot-dtp-picker.wide .ot-dtp-picker-form .ot-dtp-picker-button {
		float: none;
		width: 100%;
		}

	.ot-dtp-picker .ot-dtp-picker-selector select {
		left: 0;
		}
}

/* ----- [ Optional Pandemic Notice ] -----------------*/
.section-notice {
	/*text-align: left;*/
	padding: 20px 0 30px;
	color: #fff;
	background: var(--accent);
	}
.section-notice h2,
.section-notice p {
	color: #fff;
	}
.section-notice p {
	line-height: 1.3em;
	}

.section-notice a {
	color: #fff;
	text-decoration: underline;
	}
	
.section-notice .cms-text .align_left {
	margin: 0 30px 0 0;
	}
.section-notice .cms-text .align_right {
	margin: 0 0 0 30px;
	}
	
/* Open Table award */

.open-table-badge {
	position: absolute;
	top: 25px;
	left: 87%;
	margin: -50px 0;
	border: 2px solid #fff;
	border-radius: 50%;
	}
.open-table-badge:hover {
	text-decoration: none;
	}
.open-table-badge img {
	max-width: 100px;
	}


@media only screen and (min-width: 1040px) {
	.section-notice {
		/*text-align: center;*/
		padding: 40px 0 30px;
		}
	.section-notice p {
		line-height: 1.8em;
		}
	
	.open-table-badge {
		position: absolute;
		top: 10px;
		left: 92%;
		margin: -50px 0;
		}
	.open-table-badge img {
		max-width: 150px; 
		}
}


/* Attention! */
.home-block-1 {}
.home-block-2 {
	margin-top: -30%;
	margin-bottom: 50px;
	}

.section-links {
	padding-top: 90px;
	padding-bottom: 90px;
	}
.section-links .inner > p {
	font-size: 1.2rem;
	}

.image-fit {
	object-fit: cover;
	height: 100%;
	width: 100%;
	}

/*
.image-fit2 {
	object-fit: cover;
	}
*/

.feature-img {
	/*height: 15vw;
	height: 240px;*/
	object-fit: cover;
	max-height: 270px;
	}

.flex2 {
	flex: 2;
	}

/* ----- [ Slick Slider ] -----------------*/
.slick-slider .slick-list,
.slick-slide > div {
	height: 100%;
	}
	
.home-slide {
	background-size: cover;
	background-position: 50% 50%;
	height: 100%;
	/*background-position: 50% 0;*/
	}

.hero-slider,
.hero-slider .slick-track,
.hero-slider .slick-wrapper,
.hero-slider .slick-slide {
	margin: 0;
	height: 100%;
	width: 100%;
	}

/* ----- [ Slick Gallery ] -----------------*/
/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    text-align: center;
    left: auto;
    right: 50px;
    top: -40px;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0 0 0 4px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: 2px solid #222;
	}
.slick-prev {
	right: 100px;
	padding: 0 4px 0 0;
	}

.slick-prev:before,
.slick-next:before {
    font-family: 'FontAwesome';
    font-size: 24px;
    line-height: 36px;
    opacity: .75;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	}
.slick-prev:before {
	}

/* ----- [ Map / Contact Form ] -----------------*/
.contact-content {
	padding: 0;
	}
	
.contact-text {
	padding: 30px 30px 50px;
	}

.contact-content .row {
	align-items: center;
	align-items: stretch;
	}

.map-canvas {
	min-height: 80vh;
	min-height: 400px;
	width: 100%;
	height: 100%;
	background: #eee;
	padding: 30px;
	padding-top: 130px;
	}
@media only screen and (min-width: 600px) {
	.contact-text {
		max-width: 30em;
		margin-top: 140px;
		padding: 30px 30px 50px;
		}
}


/* ----- [ Shop Page: Isotope Grid ] ----------- */
.grid-sizer,
.grid-item { 
	/*width: calc(33.333% - 20px);*/
	width: 50%;
	margin: 0 0 20px;
	}
.grid-item--width2 {
	width: 100%;
	}

.gutter-sizer {
	width: 2%;
	}

.grid-item img {
	width: auto;
	max-width: 100%;
	}

@media only screen and (min-width: 900px) {
	.grid-sizer,
	.grid-item { 
		/*width: calc(33.333% - 20px);*/
		width: 25%;
		}
	.grid-item--width2 {
		width: 50%;
		}
}
@media only screen and (min-width: 1600px) {
	.grid-sizer,
	.grid-item { 
		/*width: calc(33.333% - 20px);*/
		width: 20%;
		}
	.grid-item--width2 {
		width: 40%;
		}
	.related-work:last-of-type {
		display: block;
		}
}

/* ----- [ Shop Pages ]----------------------- */
.product-thumbnail {
	max-width: 100%;
	max-height: 530px;
	height: 100%;
	max-height: 100%;
	margin: 0 auto;
	object-fit: cover;
	}
	
.product-thumbnail.alt-thumbnail {
	}
	
.product-image {
	max-width: 100%;
	max-height: 530px;
	margin: 0 auto;
	}

.product-grid-item {
	position: relative;
	padding-bottom: 100%;
	margin-bottom: 15px;
	}
.product-grid-text {
	margin: 0 0 30px;
	}
.product-grid-title {
	margin: 0 0 0.2em;
	line-height: 1.1;
	}
.product-grid-title a {
	color: #000;
	border: none;
	}
.product-grid-title a:hover,
.product-grid-item:hover + .product-grid-text .product-grid-title a {
	color: var(--accent);
	border: none;
	}
	
.thumbnail-link,
.product-image-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-decoration: none;
	border: none;
	background: #fff;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.thumbnail-link:hover {
	text-decoration: none;
	border: none;
	}
	
.product-grid-item:hover .main-thumbnail {
	opacity: 0;
	}

	
.product-image-wrapper {
	position: relative;
	}

.price {
	font-size: 1.4rem;
	color: #222;
	}
	
.related-products {
	background: #f9f9f9;
	/*background: #f9f9f9 url('../images/background-monk.png') 95% -130% no-repeat;
	background: #f9f9f9 url('../images/hops-barley-10.png') -50px 50px no-repeat;
	background: #f9f9f9 url('../images/grain-drawing-10.png') 95% 170% no-repeat;
	background-size: 600px;*/
	}

/* ----- [ Side Cart ] -------------- */
.pad-cart {
	border-bottom: 1px solid #ccc;
	border-collapse: unset;
	width: 100%;
	}
.pad-cart td,
.pad-cart th {
	font-size: 0.9em;
	line-height: 1.2em;
	padding: 12px 0;
	vertical-align: middle;
	font-weight: 400;
	}
.pad-cart th {
	font-size: 0.9em;
	padding: 10px 0 12px;
	}
.pad-cart th:first-of-type {
	text-align: left;
	}

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

.pad-cart-product a {
	display: block;
	min-width: 100px;
	margin-right: 10px;
	border: none;
	}
.pad-cart-product a:hover  {
	border: none;
	}

.cart-image-large {
	max-width: 120px;
	max-height: 100px;
	margin: 0 auto;
	}

.pad-cart-product-title {
	color: #222;
	}
.pad-cart-product-title span {
	color: #666;
	font-size: 0.9em;
	}
	
input.pad-qty {
	width: 3em;
	text-align: center;
	margin: 0;
	}

.pad-cart-price,
.pad-cart-qty {
	width: 90px;
	position: relative;
	text-align: right;
	}
.padloper-cart-remove {
	padding-right: 7px !important;
	}
	
/* ----- [ Shopping Cart ] -----------------*/
.shopping-cart-section {
	 margin-top: 120px;
	 }

.cart-wrapper {
	padding-bottom: 50px;
	margin-bottom: 30px;
	}
.side-cart-head {
	font-size: 1.6em;
	}
.close-cart {
	position: absolute;
	top: 25px;
	right: 20px;
	cursor: pointer;
	font-size: 20px;
	}

.remove-check {
	cursor: pointer;
	}
.remove-text {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	display: inline-block;
	font-size: 13px;
	font-weight: 400;
	line-height: 16px;
	color: #d83e49 !important;
	text-transform: lowercase;
	position: absolute;
	top: calc(50% + 18px);
	right: 0;
	position: absolute;
	border-bottom: 1px solid red;
	}

.cart-sale-notice {
	font-size: 13px;
	color: red;
	}

.pad-cart-row:hover .remove-text {
	opacity: 1;
	visibility: visible;
	}

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

.empty-cart {
	min-height: 300px;
	}

.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;
	overflow: hidden;
	}

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

.customer-info.with-shipping {
	width: 50%;
	float: left;
	}

.cart-link {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	padding: 0 10px;
	margin: -2px 20px 0 -20px;
	border-bottom: none;
	}
.cart-link:hover {
	border-bottom: none;

	}
.cart-link img {
	width: 22px;
	height: 22px;
	}
	
.cart-badge {
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	padding: 0;
	width: 15px;
	height: 15px;
	font-size: 12px;
	line-height: 15px;
	font-weight: 700;
	text-align: center;
	background:#f00;
	border-radius:50%;
	}

.padloper-cart-add-product {
	display: flex;
	}
.padloper-cart-add-product input[type="number"]{
	width: 5em;
	margin-right: 10px;
	text-align: center;
	}
	
/* ----- [ Checkout Stuff ] -----------------*/
/* ----- [ Form Elements: Generic ]----------------------- */
input,
select,
textarea {
    font-size: 1em;
    width: 100%;
    padding: 6px 8px;
    margin: 0 0 10px;
	color: #333;
	background: #fff;
    -webkit-appearance: none;
    border: 1px solid #ccc;
    border-radius: 0;
    }
    
select {
	height: 42px;
	font-size: 1.1;
	}

input[type="text"],
input[type="submit"],
button,
textarea,
input.button,
.ui-button {
    -webkit-appearance: none;
	}

input[type="checkbox"] {
	width: auto !important;
	margin: 0 0 0 10px;
	}

fieldset {
	border: 2px solid #eee;
	padding: 15px 15px 6px;
	margin: 15px 0;
	border-radius: 4px;
	}
	
input:focus, 
textarea:focus {
	background: #fff;
	}
button:focus,
input.button:focus {
	border: 2px solid #000;
	}
	
label {
	position: relative;
	}

/* ----- [ Form Elements: Padloper ]----------------------- */
.form-group,
.Inputfield {
	margin: 0 0 10px;
	clear: both;
	}
.form-group label,
.Inputfield label {
	font-weight: 400;
	font-size: 1em;
	line-height: 1.6em;
	margin: 0 0 10px;
	}
	
.Inputfield .toggle-icon {
	display: none;
	}
.form-control,
.InputfieldContent input {
	display: block;
	width: 100%;
	padding: .5rem .75rem;
	line-height: 1.25;
	background-color: #fff;
	background-image: none;
	background-clip: padding-box;
	-webkit-appearance: none;
	transition: border-color ease-in-out .15s,
		box-shadow ease-in-out .15s;
	border: none;
	border: 1px solid #000;
	border: 1px solid rgba(0, 0, 0, 0.2);
	/*height: 55px;*/
	background: none !important;
	color: #000 !important;
	font-size: 18px;
}
.form-control:focus,
.form-control:active,
.InputfieldContent input:focus,
.InputfieldContent input:active {
	border: 1px solid #000;
	outline: none;
	box-shadow: none;
	}

.Inputfield_pad_firstname,
.Inputfield_email,
.Inputfield_pad_city,
.Inputfield_pad_state,
.Inputfield_shipping_city,
.Inputfield_shipping_state {
	float: left;
	width: 50%;
	}

.Inputfield_pad_lastname,
.Inputfield_pad_phone,
.Inputfield_pad_postcode,
.Inputfield_display_country,
.Inputfield_shipping_postcode {
	float: right;
	width: 49%;
	clear: none;
	}
	
.Inputfield_pad_countrycode {
	display: none;
	}
/*
.Inputfield_pad_countrycode,
.Inputfield_pad_paymentmodule {
	display: none;
	}

.Inputfield_pad_shippingmodule {
	display: none;
	}
*/

.Inputfield_shipping_address_toggle,
.Inputfield_c_terms_consent {
	margin: 5px 0 15px;
	}
.Inputfield_c_terms_consent .ui-widget-content p.InputfieldError {
	margin-bottom: -30px;
	}
.InputfieldCheckbox {
	margin: 5px 0 10px;
	}
.InputfieldHeaderHidden,
.InputfieldCheckbox .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;
	}
	
.InputfieldSubmit {
	text-align: right;
	}


/* new form stuff */
.pw-no-select {
	line-height: 1.3em;
	margin-left: 1.5em;
	cursor: pointer;
	}
.FieldtypeCheckbox  + .pw-no-select,
.FormBuilder_contact .pw-no-select,
.Inputfield_agree_to_terms .pw-no-select,
.Inputfield_contact_consent .pw-no-select {
	line-height: 1.3em;
	margin-left: 1.8em;
	}

.checkbox label,
.form__item label {
    position: relative;
	}
/*input[type="checkbox"],
input[type="radio"],*/
.FieldtypeCheckbox,
.InputfieldRadiosStacked input[type="radio"],
.InputfieldCheckbox input[type="checkbox"] {
	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: 0;
    left: 0;
    height: 1em;
    width: 1em;
    border: 1px solid #ccc;
    margin: 0;
	}
.InputfieldRadios .pw-no-select::before {
	border-radius: 50%;
	}
.checkbox label::after,
.pw-no-select::after {
    content: "";
    display: inline-block;
    position: absolute;
	top: 4px;
	left: 3px;
	height: 4px;
	width: 9px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid  #fff;
    transform: rotate(-45deg);
	}
.InputfieldRadios .pw-no-select::after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    height: 8px;
    width: 8px;
    background: #fff;
    border: none;
    border-radius: 50%;
    transform: rotate(0);
	}


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;
}

/* quickfix for generic checkboxes */
.checkbox {
	-webkit-appearance: checkbox;
	font-size: 1.2em;
	}

.stripe-card-input {
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	border: 1px solid #ccc;
	padding: 6px 10px;
	margin: 10px 0;
	}


/* ----- [ Form Errors ]----------------------- */

.InputfieldStateRequired .InputfieldHeader:after,
.CommentForm label:after {
	content:"*";
	}
.InputfieldStateRequired.InputfieldStateError .InputfieldHeader:after {
	content:"*";
	color: #f00;
	}
.InputfieldStateRequired.InputfieldStateError input,
.InputfieldStateRequired.InputfieldStateError select,
.InputfieldStateRequired.InputfieldStateError textarea,
.InputfieldStateRequired.InputfieldStateError .pw-no-select::before {
	border-color: #f00;
	}	

.input-error,
.InputfieldError {
	position: absolute;
	right: 0;
	top: 4px;
	font-size: 0.85em;
	color: #f00;
	display: none;
	}
/* hide bolt icon */
.InputfieldError .fa {
	display: none;
	}
	
.Inputfield_pad_paymentmodule .InputfieldError {
	margin-right: 10px;
	}
	
.Inputfield_pad_discount_code .InputfieldError {
	margin-right: 15px;
	margin-top: 5px;
	display: block;
	}
	
.InputfieldContent input:focus + .input-error,
.InputfieldContent textarea:focus + .input-error {
	/* display: none;*/
	}







/* ----- [ Buttons ] --------------------------- */
button,
.button {
	display: inline-block;
	padding: 10px 15px;
	padding: 10px 20px;
	color: #fff;
	background: var(--accent); 
	width: 100%;
	opacity: 1;
	font-size: 16px;
	font-size: 1em;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	margin-bottom: 10px;
	border: none;
	cursor: pointer;
	}
button:hover,
.button:hover {
	color: #fff;
	background: var(--accent);
	filter: brightness(110%);
	text-decoration: none;
	border: none;
	}
	
.button.full {
	width: 100%;
	}
.button.centered {
	margin: 0 auto;
	text-align: center;
	}
.button-right {
	display: inline-block;
	float: right;
	}
	
.cms-text .button {
	color: #fff;
	}

.button.button-full {
	width: 100%;
	}
	
@media only screen and (min-width: 600px) { 
	button,
	.button {
		width: auto;
		}
}

.booking-button {
	color: #fff;
	background: var(--accent);
	border: none;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	display: none;
	margin:0 30px 0 0;
	}
.booking-button:hover {
	border: none;
	text-decoration: none;
	background: var(--accent);
	filter: brightness(110%);
	}
	
@media only screen and (min-width: 600px) { 
	.booking-button {
		display: inline-block;
		}
}
	
/* ----- [ Menu Pages ] --------------- */
.main-col {
	order: 1;
	}
.sidebar-col {
	order: 2;
	}
.sidebar-nav {
	display: none;
	margin: 0 0 2em;
	}

.menu-page-intro {
	margin: 0 0 3em;
	}

.section-heading p+ul {
	margin-top: -1em;
	}

.event-menu:not(:last-of-type) {
	border-bottom: 1px solid #d7d7d6;
	margin-bottom: 40px;
	padding-bottom: 30px;
	}

.price-header {
	 text-align: right;
	 font-size: 0.95em;
	 color: #999;
	 margin: 0 0 1em;
	 }

.menu-items {
	margin: 0 0 3em;
	}
.menu-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: nowrap;
	justify-content: stretch;
	align-items: flex-start;
	background: transparent url("../images/dotted-25.png") 0 1em repeat-x;
	background-size: 10px;
	}
.menu-item.no-dots {
	background: none;
	}

.item-name {
	position: relative;
	margin: 0 auto 1em 0;
	}

.item-name span {
	text-transform: uppercase;
	background: #fff;
	padding: 0;
	}
	
.menu-item + .price-header {
	margin: -1em 0 0;
	}

.item-description {
	color: #666;
	}
.item-description p {
	margin: 0;
	}
.item-price {
	white-space: wrap;
	background: #fff;
	padding: 0 0 0 0.5em;
	text-align: right;
	}

.item-price i {
	font-style: normal;
	display: none;
	}
	
/* temporary price removal */
.beer-menu .item-price {
	display: none;
	}

@media only screen and (min-width: 500px) { 
	.item-price {
		white-space: nowrap;
		}
	.item-price i {
		font-style: normal;
		display: inline;
		}
}

@media only screen and (min-width: 600px) { 
	.sidebar-col {
		order: 1;
		}
	.sidebar-nav {
		display: block;
		}
	.item-name {
		padding-right: 4em;
		}
}


.quickedit2 {
	position: absolute;
	top: 0;
	left: -25px;
	text-decoration: none;
	border-bottom: none !important;
	opacity: 0.3;
	}
.quickedit2:hover {
	opacity: 0.8;
	}

/* ----- [ Insta ] ---------------------------- */
.instalink {
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 30px;
	text-align: center;
	background: #fff;
	transform: translate(-50%, -50%);
	}
.instalink h3 {
	font-size: 1.2rem;
	margin: 0;
	}
.insta-icon {
	height: 30px;
	width: 30px;
	display: inline-block;
	vertical-align: -10%;
	}
.insta-post {
	height: 0;
	width: 100%;
	padding-bottom: 100%;
	position:relative;
	overflow: hidden;
	}
.insta-image {
	position:absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width:100%;
	height:100%;
	object-fit: cover;
	padding: 5px;
	}
	
.vid-icon {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	}
.vid-icon img {
	width: 60px;
	height: 60px;
	opacity: 0.5;
	}
.vid-icon:hover img {
	opacity: 1;
	}


/* ----- [ Footer ] ---------------------------- */
.page-footer {
	color: #aaa;
	background: #fff;
	background: #222;
	border-top: 1px solid #ececec;
	padding: 0;
	}
	
.page-footer .inner {
	padding: 50px 30px 10px;
	}
	
.page-footer .col {
	margin-bottom: 20px;
	}

.page-footer p,
.page-footer li {
	color: #aaa;
	/*font-size: 0.9em;*/
	line-height: 1.6em;
	font-weight: 300;
	margin: 0 0 1em;
	}
.page-footer li {
	margin: 0;
	}
	
.page-footer strong {
	font-weight: 700;
	color: #fff;
	}

.page-footer a {
	color: #aaa;
	border: 1px solid transparent;
	}
.page-footer a:hover,
.page-footer a.on {
	color: #000;
	color: #fff;
	}

.footer-logo {
	max-width: 180px;
	margin: 0 0 16px;
	padding: 0;
	border: 5px solid #222;
	}
.footer-logo img {
	max-width: 100%;
	}

.footer-links {
	display: none;
	}

p.copyright-credits {
	margin: 3em 0 0;
	font-size: 0.8rem;
	color: #aaa;
	}
.copyright-credits a {
	color: #aaa;
	text-decoration: underline;
	}
	
.button.mailchimp {
	color: #fff;
	border: none !important;
	white-space: nowrap;
	margin: 15px 0;
	}
	
/* ----- [ SVG Social Media Icons ] --------------- */
.social-icons {
	text-align: left;
	margin: 10px 0;
	}
.social-icons .social-icon {
    color: #333;
    display: inline-block;
    margin: 0 10px 0 0;
	}

.social-icons .social-icon a {
    color: #fff;
    color: #333;
    color: #aaa;
    opacity: 1;
    border: none;
	}

.social-icons .social-icon a:hover,
.social-icons .social-icon a:active {
    color: #77d8d8;
    color: #fff;
    opacity: 1;
    border: none;
	}

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

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

@media only screen and (min-width: 1200px) { /* 600 */
	.footer-links {
		display: block;
		}
	.social-icons-wrapper {
		text-align: right;
		}
	.footer-mobile-only {
		display: none;
		}
}

@media only screen and (min-width: 1020px) {
	.main-navigation .social-icon {
		margin: 0 0 0 10px;
		}
}

.top-link {
    position: fixed;
    bottom: 30px;
    right: 4%;
    opacity: 0;
    -webkit-transition:  .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 9;
    /*display: none;*/
	}
.top-link a {
	color: #fff;
	font-size: 60px;
	line-height: 28px;
    display: block;
    height: 40px;
    width: 40px;
    outline: medium none;
    position: relative;
    z-index: 0;
    text-align: center;
	text-decoration: none;
	border: none;
	border-radius: 50%;
	background-color: var(--accent);
    }
.top-link svg {
	width: 100%;
	height: 100%;
	margin-top: -1px;
	}
.top-link a:hover {
	color: #272441;
	background-color: var(--accent);
	filter: brightness(110%);
	border: none;
	}
.top-link.show {
	opacity: 1;
	}

/* ----- [ CMS Content ] ------------------------*/
.cms-text p > img {
	max-width: 100%;
	display: block;
	}

.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;
	}
	
.boxed-text {
	border: 2px solid #ccc;
	padding: 15px;
	}
	
/* ----- [ Misc. / Utility Styles ] ------------ */
img.right {
	float: right;
	}
img.inline {
	display: inline !important;
	}

.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;
	}

.uppercase {
	text-transform: uppercase !important;
	}
.lowercase {
	text-transform: none !important;
	}
	
.overflow-visible {
	overflow: visible !important;
	}

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

@media only screen and (min-width: 920px) {
	.cms-text .align_left {
		margin-left: -100px;
		}
	.cms-text .align_right {
		margin-right: -100px;
		}
}

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

#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;
	}

.bounce,
.se-icon {
  -moz-animation: bounce 6s infinite;
  -webkit-animation: bounce 6s infinite;
  animation: bounce 6s infinite;
}
@keyframes bounce {
  0%, 10%, 20%, 30%, 100% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-30px);
  }
  25% {
    transform: translateY(-15px);
  }
}