/**
	@Author:	Paul Strandoo
	@Date:		20 July 2020
	@Notes:		The Riverside
	
	CONTENTS
	-------------
	- Global resets
	- Global typography & layout rules
	- Page styles
	- Post styles 
	- General bits 
	
	FONTS & COLORS
	-------------	
	footer BG: #333331;
	crimson: #7d2a29;
	gold: #8e703d;
	Font-family: 'Montserrat', sans-serif; 400,400i,600,700 / reg, semibold, bold
*/

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

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

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

html {
	height: 100%;
	font-size: 100%; /* Set a 16px base size */
	}
body {
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	line-height: 1.6;
	color: #222;
	font-weight: 400;
	height: 100%;
	display: flex;
	flex-direction: column;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	}
	
p,
li,
td {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	margin: 0 0 1em;
	}

li,td {
	margin: 0;
	}

em {
	font-style: italic;
	}
b,
strong {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	}

a {
	font-weight: 700;
	/*border-bottom: 1px solid inherit;*/
	}
.hero-cta a[href^="tel"] {
	color: inherit;
	text-decoration: none;
	}
.top-strip a[href^="tel"] {
	color: inherit;
	text-decoration: none;
	}
a:hover {
	/*color: #222 !important;*/
	color: #222;
	text-decoration: underline;
	}

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
	line-height: 1.3em;
	margin: 0 0 0.8em;
	}
h1, .h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.1em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 1.5em;
	}

h2 {
	font-size: 1.3rem;
	line-height: 1.1em;
	font-weight: 700;
	}
h3 {
	font-size: 1.2em;
	font-size: 1.1rem;
	font-weight: 700;
	}
h4 {
	font-size: 1rem;
	font-weight: 700;
	}
h5 {
	font-size: 0.9rem;
	margin: 0;
	font-weight: 700;
	}

/* section variations */
.cinema-mode h1,
.cinema-mode h2,
.cinema-mode h3,
.cinema-mode a {
	color: #7d2a29;
	}
.restaurant-mode h1,
.restaurant-mode h2,
.restaurant-mode h3,
.restaurant-mode a {
	color: #8e703d;
	}


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

img {
	display: block;
	}


/* Dark and Light #utility */
.dark,
.dark p,
.dark li,
.dark h2,
.dark h3,
.dark h4 {
	color: #fff;
	}
.dark a {
	color: #fff;
	border-bottom: 1px solid #fff;
	}
.dark a:hover {
	color: #fff;
	}

.cinema-bold {
	color: #7d2a29;
	font-weight: 700;
	}
.restaurant-mode .cinema-bold {
	color: #8e703d;
	}

/* ----- [ Structure ] -----------------*/
header,
section,
footer {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	}
section {
	margin: 50px auto;
	padding: 0;
	}
.inner {
	position: relative;
	max-width: 1070px;
	margin: 0 auto;
	padding: 0 20px;
	}
.inner-narrow {
	max-width: 860px;
	}
.inner-full {
	max-width: 100%;
	padding: 0;
	}


/* ----- [ Strandoo Simple Grid System v3.1 ] --------------- */
.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-left: -15px;
	margin-right: -15px;
	/*overflow: hidden;*/
	position: relative;
	}

.row > .col {
	/*
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	*/
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	/*width: 100%;
	display: inherit;
	float: none;
	vertical-align: top;
	font-size: 18px;
	text-align: left;*/
	}

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

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

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

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

.col-auto,
.col-full,
.col-1of2,
.col-1of3,
.col-2of3,
.col-1of4,
.col-30f4,
.col-100,
.col-50,
.col-33,
.col-66,
.col-25,
.col-75,
.col-40,
.col-60 {
	width: 100%;
    -webkit-box-flex: 0 !important;
    -webkit-flex: none !important;
    -ms-flex: none !important;
    flex: none !important;
    }

/* 600px equivalent breakpoint */
@media only screen and (min-width: 37.5em) { 
	.row {
		/*
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		*/
		flex-direction: row;
		}
		
	.col-auto {
		width: auto;
		}
	.col-full,
	.col-100 {
		width: 100% !important;
		}
	.col-1of2,
	.col-50 {
		width: 50% !important;
		}
	.col-1of3,
	.col-33 {
		width: 33.3333% !important;
		}
	.col-2of3,
	.col-66 {
		width: 66.6667% !important;
		}
	.col-1of4,
	.col-25 {
		width: 25% !important;
		}
	.col-3of4,
	.col-75 {
		width: 75% !important;
		}
	
	/* 60/40 */
	.col-40 {
		width: 40% !important;
		}
	.col-60 {
		width: 60% !important;
		}
}

/* makes children flex containers (stretch inners) */
.flex-cols > .col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    }


/* Vertical alignment per row */
.row-top {
	align-items: flex-start;
	}
.row-bottom {
	align-items: flex-end;
	}
.row-middle {
	align-items: center;
	}
	
/* Horizontal alignment per row */
.row-left {
	justify-content: flex-start;
	}
.row-right {
	justify-content: flex-end;
	}
.row-center {
	justify-content: center;
	}

.row-around {
	justify-content: space-around;
	}
.row-between {
	justify-content: space-between;
	}
.row-evenly {
	justify-content: space-around;
	}


.push-right {
	margin-right: auto;
	}
.push-left {
	margin-left: auto;
	}


/* Direction */
.row-reverse {
	flex-direction: row-reverse !important;
	}
.row-column {
	flex-direction: column;
	}
.row-column-reverse {
	flex-direction: column-reverse;
	}


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

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


/*
@media print, screen and (min-width: 640px) { 
	.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%; }
}
*/

/* ----- [ 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(-360px);
	-moz-transform: translateX(-360px);
	-ms-transform: translateX(-360px);
	-o-transform: translateX(-360px);
	transform: translateX(-360px);
	}

.page-overlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: #666;
	background: rgba(0,0,0,0.4);
	z-index: 100;
	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: absolute;
	/*position: relative;*/
	width: 100%;
	top: 0;
	left: 0;
	height: auto;
	margin: 0;
	padding: 0;
	z-index: 110;
	background: #ffffff;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: space-between; 
	align-items: center;
	/*background: rgba(255,255,255,0.95);*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	}

.page-header.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);*/
	}
.page-header.is-fixed {
	position: fixed;
	top: 0;
	height: auto;
	-webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 2px 3px rgba(0,0,0,0.2);
	box-shadow: 0 2px 3px rgba(0,0,0,0.2);
	}
	
/* no hero */
.shopping-cart-page .page-header,
.checkout-page .page-header {
	border-bottom: 1px solid #d7d7d6;
	}

.logo-wrap {
	position: relative;
	width: 85%;
	width: 100%;
	text-align: left;
	margin: 10px 0;
	padding: 0 15px 6px;
	overflow: hidden;
	/*border-bottom: 1px solid #d7d7d6;*/
	}
.restaurant-mode .logo-wrap {
	margin-left: 44px;
	}
.home-page .logo-wrap {
	width: 100%;
	margin-left: 0;
	}
	
.header-logo {
	display: block;
	max-width: 400px;
	margin: 15px auto;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.header-logo img {
	width: 100%;
	}

@media only screen and (min-width: 660px) {
	.page-header {
		position: absolute;
		display: -webkit-flex;
		display: flex;
		flex-direction: column;
		justify-content: flex-start; 
		align-items: stretch;
		}

	.logo-wrap {
		position: relative;
		width: 100%;
		text-align: center;
		margin: 10px auto 0;
		padding: 0 30px 6px;
		overflow: hidden;
		border-bottom: 1px solid #d7d7d6;
		}
	.restaurant-mode .logo-wrap {
		margin-left: 0;
		}
}

@media only screen and (min-width: 1024px) {
	.page-header {
		position: fixed;
		}

	.page-header .inner {
		flex-direction: row;
		}
}


/* ----- [ Menu and Search Triggers ] ----------- */
.nav-toggle {
	display: block;
	background: transparent;
	width: 44px;
	height: 44px;
	margin-right: 10px;
	position: relative;
	cursor: pointer;
	z-index: 100;
	}
.nav-toggle a {
	display: none;
	}
.home-page .nav-toggle {
	display: none;
	}

.nav-icon {
	/* this span is the central line in the 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 */
	}
.nav-icon::before, 
.nav-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
	}
.nav-icon::before {
	bottom: 8px;
	}
.nav-icon::after {
	top: 8px;
	}
.is-clicked .nav-icon {
	background-color: rgba(0, 0, 0, 0);
	}
.is-clicked .nav-icon::before, 
.is-clicked .nav-icon::after {
	background-color: #000;
	}
.is-clicked .nav-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 .nav-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-item {
	display: block;
	margin: 0;
	border-top: 1px solid #7d2a29;
	}
.nav-item a {
	display: block;
	font-size: 20px;
	font-weight: 700;
	padding: 10px 0;
	}
.nav-item a:hover,
.nav-item.nav-open > a {
	color: #666;
	text-decoration: none;
	}

.nav-item.mobile {
	display: block;
	border-top: none;
	}
.nav-item.mobile a {
	width: 100%;
	font-size: 1.1em;
	}
.nav-item.full {
	display: none;
	}

@media only screen and (min-width: 660px) {
	.nav-toggle {
		position: absolute;
		right: 20px;
		bottom: 18px;
		}
}
@media only screen and (min-width: 1024px) {
	.nav-item.mobile {
		display: none;
		}
	.nav-item.full {
		display: block;
		}

	.nav-toggle {
		display: none;
		}
	.nav-item {
		display: inline-block;
		/*position: relative;*/
		line-height: 1.2;
		margin: 0 1.2em;
		padding: 0;
		overflow: visible;
		border-bottom: none;
		border: none;
		min-height: 0;
		vertical-align: middle;
		text-align: center;
		}
	.nav-item a {
		position: relative;
		display: inline;
		color: #222;
		font-size: 12px;
		font-size: 0.9rem;
		padding: 0 0 5px;
		padding: 0;
		border: none;
		border-bottom: 1px solid transparent;
		}
	.nav-item:hover a {
		border-left: none;
		color: #000;
		border-bottom: 1px solid transparent;
		}
	
	/* mode changes */
	.cinema-mode .nav-item:hover a,
	.cinema-mode .nav-item a.on {
		color: #7d2a29 !important;
		border-color: #7d2a29;
		}
	.restaurant-mode .nav-item:hover a,
	.restaurant-mode .nav-item a.on {
		color: #8e703d !important;
		border-color: #8e703d;
		}
	.cinema-mode .nav-item a.restaurant-link {
		color: #8e703d !important;
		border-color: transparent;
		}
	.restaurant-mode .nav-item a.cinema-link {
		color: #7d2a29 !important;
		border-color: transparent;
		}
	.cinema-mode .nav-item a.restaurant-link:hover {
		border-color: #7d2a29;
		}
	.restaurant-mode .nav-item a.cinema-link:hover {
		border-color: #8e703d;
		}
}

/* ----- [ Side Shopping Cart ] --------------- */
.cart-toggle {
	margin: 4px 0 0 8px;
	}
.i-bag-icon {
	width: 20px;
	display: block;
	}

.side-shopping-cart {
	position: fixed;
	padding: 25px 20px 0;
	padding: 40px 30px 0;
	top: 0;
	bottom: 0;
	left: 100%;
	right: 0;
	width: 360px;
	width: 40vw;
	min-width: 680px;
	min-width: 0;
	width: 100%;
	background: #fff;
	z-index: 800;
	-webkit-transform: translateX(101%);
	-moz-transform: translateX(101%);
	-ms-transform: translateX(101%);
	-o-transform: translateX(101%);
	transform: translateX(101%);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	/*visibility: hidden;*/
	overflow-y: auto;
	}
.side-shopping-cart.is-open {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	left: auto;
	/*transform: translateX(-40vw);*/
	}

@media only screen and (min-width: 600px) {
	.side-shopping-cart {
		width: 40vw;
		min-width: 600px;
		}
}

@media only screen and (min-width: 768px) {
	.side-shopping-cart {
		width: 40vw;
		min-width: 680px;
		}
}


/* ----- [ Page Content ] --------------- */
/* ----- [ Home Page ] ------------------ */
.top {
	padding-top: 120px;
	padding-bottom: 20px;
	}
.hero {
	padding: 0;
	margin: 50px auto;
	min-height: 400px;
	margin-top: 70px;
	background: #eee;
	}
.hero .inner {
	/*height: 90vh;*/
	padding: 0;
	}

.home-hero {
	padding: 0;
	margin: 0 auto;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	}

.hero-text {
	color: #fff;
	padding: 60px 20px;
	}
.hero-headline {
	color: #fff !important;
	font-size: 1.8rem;
	margin: 0 0 0.3em;
	text-transform: uppercase;
	}
.hero-headline small {
	font-size: 1.2rem;
	}
.hero-dates {
	color: #fff !important;
	}

/* Temporary Hero */
.restaurant-home .hero {
	background-color: #222;
	background-size: 80%;
	}

@media only screen and (min-width: 660px) { /* 1024 */
	.top {
		padding-top: 170px;
		}
	.hero {
		min-height: 500px;
		margin-top: 138px;
		}
		
	/* Temporary Hero */
	.restaurant-home .hero {
		background-color: #222;
		background-size: 60%;
		}
}

@media only screen and (min-width: 1024px) {
	.hero {
		padding-top: 0;
		min-height: 500px;
		margin-top: 190px;
		}
	.hero .inner {
		/*height: 90vh;*/
		padding: 0;
	}
}

.hero-overlay {				
	/* z-index: 1; */
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	}
	
	
/* ----- [ Slick Dots ] ----------- */
.slick-dots {
    position: absolute;
    bottom: -40px;
    bottom: 20px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.grid-slider .slick-dots {
	bottom: -30px;
	}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 6px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 40px;
    height: 6px;
    padding: 0;
    cursor: pointer;
    color: #fff;
    /*border: 3px solid #222;*/
    outline: none;
    background: none;
    background: #fff;
    opacity: 0.3;
    border: none;
}
.slick-dots li button:hover {
    opacity: 1;
}
.slick-dots li.slick-active button {
	/*background: #222;*/
	opacity: 0.8;
}
	

/* ----- [ Home Split Screen ] --------------- */
.home-splitscreen {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center; 
	justify-content: stretch;
	align-content: stretch;
	align-items: stretch;
	text-align: center;
	margin: 132px 0 0;
	margin: 90px 0 0;
	min-height: calc(100vh - 90px);
	}

.home-split {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	flex: 1 1 auto;
	padding: 0;
	text-align: center;
	}

.home-split-summary {
	padding: 30px 40px;
	padding: 20px;
	text-align: center;
	width: 300px;
	background: #7d2a29;
	background: rgba(125, 42, 41, 0.7);
	/*box-shadow: -300px 0 #09132d;*/
	}
.home-split-summary.restaurant {
	text-align: center;
	background: #8e703d;
	background: rgba(142, 112, 61, 0.8);
	/*box-shadow: 300px 0 #740e0c;*/
	}

@media screen and (min-width: 900px) {
	.home-splitscreen {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-content: stretch;
		align-items: stretch;
		text-align: center;
		}

	.home-split {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-end;
		flex: 1 1 auto;
		padding: 0;
		}
	.split-title {
		font-size: 2rem;
		margin: 0 0 0.4em;
		}
}


/* ----- [ Menu Pages ] --------------- */
.menu-page-intro {
	margin: 0 0 3em;
	}

.section-heading p+ul {
	margin-top: -1em;
	}
.section-heading ul+p {
	margin-top: 1em;
	}
.section-heading ul {
	/*margin-bottom: 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;
	padding-right: 4em;
	}

.item-name span {
	text-transform: uppercase;
	background: #fff;
	padding: 0;
	}

/*
.item-name:after {
	content: "";
	position: absolute;
	top: 0.5em;
	right: 0;
	width: 100%;
	font-size: 2em;
	border-bottom: 1px dashed #222;
	}
*/
.item-description {
	color: #666;
	}
.item-price {
	white-space: nowrap;
	background: #fff;
	padding: 0 0 0 0.5em;
	}
/*
.item-price span {
	display: inline-block;
	}
.item-price span:first-letter {
	font-size: 0.8em;
	letter-spacing: 0.1em;
	}
*/

/* ----- [ News Pages ] --------------- */
.news-post {
	margin-bottom: 60px;
	}
.post-date {
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	}
.post-thumb {
	margin: 0 0 30px;
	}
.post-thumbnail {
	width: 100%;
	}
	
h1+p.post-date {
	margin-top: -2em;
	margin-bottom: 2em;
	}

figure {
	margin: 0;
	padding: 0;
	}
figcaption {
	font-size: 0.85em;
	line-height: 1.3em;
	margin: 0.4em 0;
	}

.sibling-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-top: 40px;
	}

/* ----- [ Feature Boxes ] --------------- */
.service-head {
	color: #fff !important;
	text-align: center;
	padding: 10px 20px;
	background: rgba(142,112,61,0.9);
	overflow: hidden;
	}
.service-head h3 {
	color: #fff;
	font-size: 1rem;
	margin: 0;
	text-transform: uppercase;
	}
.service-head small {
	display: block;
	line-height: 1.4em;
	margin-top: 3px;
	}
.service-thumb {
	width: 100%;
	-webkit-transition: .4s all ease;
	-o-transition: .4s all ease;
	transition: .4s all ease;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	}
.service-link {
	display: block;
	overflow: hidden;
	border: none;
	-webkit-transition: .4s all ease;
	-o-transition: .4s all ease;
	transition: .4s all ease;
	}
.service-link:hover {
	text-decoration: none;
	}

.service-link:hover .service-thumb {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
	}

@media screen and (min-width: 600px) {
	.service-head {
		position: absolute;
		left: 10px;
		right: 10px;
		bottom: 10px;
		padding: 10px 20px;
		background: rgba(142,112,61,0.9);
		overflow: hidden;
		}
	.restaurant-ads .service-head {
		min-height: 80px;
		}
	.service-head h3 {
		/*font-size: 1.8em;*/
		}
}

/* ----- [ Media Cards ] --------------- */
.media-card {
	width: 100%;
	margin: 0;
	display: block;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	}

.media {
	position: relative;
	overflow: hidden;
	}
.media img,
.news-image-link img {
	width: 100%;
	transition: all 0.3s ease-in-out;
	}
.media-card:hover .media img,
.news-image-link:hover img {
	transform: scale(1.1, 1.1);
	}

.news-image-link {
	display: block;
	overflow: hidden;
	}

.ratio-container {
	position: relative;
	}
.ratio-container:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    /* 16:9 = 56.25% = calc(9 / 16 * 100%) */ /*68.75*/
    padding-bottom: 68.75%;
}
.ratio-container > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.inner-link {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px;
	color: #fff;
	text-align: center;
	}
.inner-link .button {
	color: #fff;
	background: transparent;
	border: 1px solid #fff;
	padding: 5px 10px;
	display: inline-block;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
	}
.media:hover .inner-link .button {
	opacity: 1;
	}

.card-body {
	padding: 10px 0;
	font-size: 0.9em;
	}
.card-title {
	margin: 0 0 0.2em;
	text-transform: uppercase;
	}
.card-title small {
	font-size: 0.6em;
	}
.card-text {
	margin: 0 0 0.2em;
	font-weight: 600;
	}
	
.card-text .button {
	margin-bottom: 3px;
	}


/* ----- [ Club Badges ] ------------------- */
.badge-kc,
.badge-cc,
.badge-ff,
.badge-mm {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #eda116;
	color: #fff;
	font-weight: 700;
	text-align: center;
	border-radius: 100%;
	}
.badge-cc { background: #295371; }
.badge-ff { background: #d15e38; }
.badge-mm { background: #4d884d; }

.club-legend {
	margin: 20px 0 40px;
	display: none;
	}
.club-legend li {
	display: inline-block;
	vertical-align: middle;
	font-weight: 700;
	font-size: 0.95rem;
	margin: 0 20px 0 0;
	padding-right: 20px;
	border-right: 1px solid #7d2a29;
	}
.club-legend li:last-of-type {
	border: none;
	}
.club-legend .badge-kc,
.club-legend .badge-cc,
.club-legend .badge-ff,
.club-legend .badge-mm {
	position: relative;
	display: inline-block;
	width: 25px;
	height: 25px;
	font-size: 0.7rem;
	line-height: 25px;
	top: 0;
	right: 0;
	margin-right: 5px;
	vertical-align: middle;
	}

@media screen and (min-width: 600px) {
	.club-legend {
		display: block;
		}
}

/* try this */
.sticky-nav {
	position: sticky;
	position: -webkit-sticky;
	top: 200px;
	}
	
.sticky-nav .h1 {
	margin: 30px 0 10px;
	padding: 0 0 10px;
	border-bottom: 1px solid #ccc;
	}
.sticky-nav .h1:first-of-type {
	margin: 0;
	}

/* ----- [ Content ] -----------------*/	
.col.cms-content {
	padding-right: 3em;
	}
	
.cms-content a {
	/*border-bottom: 1px solid red;*/
	}
.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-content p > img {
	max-width: 100%;
	/*margin: 40px auto;*/
	}

.cms-content h3 {
	font-weight: 900;
	text-transform: uppercase;
	font-size: 1em;
	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-content table {
	float: none;
	width: 100%;
	margin: 0 0 2em;
	border: 1px solid #ccc;
	}
.cms-content td,
.cms-content th {
	padding: 5px;
	line-height: 1.3em;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	}
.cms-content th,
.cms-content th p {
	font-weight: bold;
	background: #eee;
	}

.TextformatterVideoEmbed {
	margin-bottom: 1em;
	}

/* on the About Us page */
.inline-icon {
	overflow: hidden;
	}
.inline-icon a {
	display: inline-block;
	/*border-right: 1px solid #ccc;*/
	margin-right: 10px;
	}
.inline-icon img {
	margin: 0!important;
	opacity: 0.7;
	}
.inline-icon img:hover {
	opacity: 1;
	}
	
/* ----- [ Programme Page ] --------------- */
.booking-dates {
	color: #7d2a29;
	text-transform: uppercase;
	margin-top: 20px;
	}
.booking-button {
	margin: 0 10px 10px 0;
	}

/* ----- [ Forms ] --------------- */
input, textarea, select {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	/*line-height: 1.75em;*/
	color: #333;
	/*-webkit-text-stroke: 0.1px;*/
	/*-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;
	}
	
input:focus {
	background: #fff;
	}

.padloper-cart-add-product {
	margin: 0 0 20px;
	}

.pad-qty {
	text-align: center;
	}

.qty-input {
	width: 50px;
	font-size: 1em;
	font-weight: 700;
	text-align: center;
	padding: 5px 0;
	height: 35px;
	vertical-align: middle;
	margin: 0 10px 0 0;
	border: 1px solid #7d2a29;
	}
	
.restaurant-mode .qty-input {
	border: 1px solid #8e703d;
	}

.side-shopping-cart,
.side-shopping-cart2 {
	margin-top: -5px;
	padding: 15px 0;
	border-top: 1px solid #7d2a29;
	border-bottom: 1px solid #7d2a29;
	}
.side-shopping-cart p,
.side-shopping-cart2 p {
	margin: 0;
	}

.pad-cart-row {
	border-bottom: 1px solid #7d2a29;
	}
.pad-cart-row small {
	font-size: 14px;
	}


/* ----- [ Side Cart ] -------------- */
.pad-cart {
	border-bottom: 1px solid #ccc;
	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;
	}

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

.pad-cart-product-title {
	color: #222;
	}
.pad-cart-product-title span {
	color: #666;
	font-size: 0.9em;
	}
.pad-cart-price,
.pad-cart-qty {
	width: 90px;
	position: relative;
	text-align: right;
	}

/* ----- [ Shopping Cart ] -----------------*/
.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;
	bottom: 16px;
	right: 0;
	border-bottom: 1px solid #d83e49;
	text-decoration: none;
	}

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

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

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

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

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

.pad-edit-checkout,
.pad-editcart {
	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;
	}

.shopping-cart {
	overflow: hidden;
	}

/* disable on Checkout */
.checkout .cart-link,
.shopping-cart .cart-link {
	pointer-events: none;
	cursor: default;
	opacity: 0.8;
	}

/* ----- [ Checkout Stuff ] -----------------*/
.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;
	}

.InputfieldContent input:focus,
.InputfieldContent input:active {
	border: 1px solid #000;
	outline: none;
	box-shadow: none;
	}
	
.form-control:focus,
.form-control:active {
	border: 1px solid #fff;
	color: #222;
	outline: #fff;
	box-shadow: none;
	background: #fff;
	}

.Inputfield_pad_firstname,
.Inputfield_email,
.Inputfield_pad_city,
.Inputfield_pad_postcode {
	float: left;
	width: 50%;
	}

.Inputfield_pad_lastname,
.Inputfield_pad_phone,
.Inputfield_pad_state,
.Inputfield_display_country {
	float: right;
	width: 49%;
	clear: none;
	}
.Inputfield_pad_countrycode,
.Inputfield_pad_paymentmodule,
.Inputfield_pad_shippingmodule {
	display: none;
	}

.Inputfield_pad_shippingmodule li {
	display: inline !important;
	}

.InputfieldRadiosStacked input {
	display: inline-block;
	width: auto;
	margin: 0 10px 0 0;
	}
	
.InputfieldError {
	text-align: right;
	margin: -1.6em 0 0 0;
	font-size: 0.9em;
	color: #f00;
	}
.InputfieldError .fa-flash {
	display: none;
	}
.InputfieldError + input {
	border-color: #f00;
	}

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

#stripe-intents-form label {
	color: #222 !important;
	font-weight: 600;
	}


/* ----- [ Wizard; from Savoy ] -----------------*/
.wizard-steps {
	width: 100%;
	max-width: 1140px;
	min-width: 755px;
	margin: 0 auto;
	/*margin-top: 40px;*/
	/*overflow: hidden;*/
	}
.wizard-steps > ul{
	width: 100%;
	/*float: left;*/
	display: flex;
	list-style: outside none none;
	flex-flow: row wrap;
	justify-content: center;
	text-transform: uppercase;
	padding:5px 0;
	clear: both;
	border-top: 1px solid #7D2A29;
	border-bottom: 1px solid #7D2A29;
	margin-bottom: 30px;
	}

.wizard-steps li{
	position: relative;
	z-index: 1;
	display: inline-block;
	text-align: center;
	flex: 1 1 0%;
	margin: 0px 2px;
	color: #7D2A29;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 2.5;
	font-size: 0.8em;
	}
.wizard-steps li.CurrentWizardStep,
.wizard-steps li.CurrentWizardStep a {
	color: #fff;
	background: #888886;
	}
.wizard-steps li.UnrequiredWizardStep {display: none;}
.wizard-steps li.CurrentWizardStep > span.Number:before {color: #FFF;}
.wizard-steps li > span.Order {display: none;}
.wizard-steps li > span.Number {
	display: inline-block;
	color: #7d2a29;
	margin: 0px 0.4em 0px 0px;
	vertical-align: middle;
	font-size: 1.3em;
	line-height: 1;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	z-index: 10;
	}

.wizard-steps li > span.Number:before {
	font-family: 'icomoon';
	margin-right: 5px;
	color: #7d2a29;
	}
#TSelectItems > span.Number:before {content: "\e939";}
#TDeliveryOptions > span.Number:before {content: "\e945";}
#TGiftAid > span.Number:before {content: "\e971";}
#TNameAndAddress > span.Number:before {content: "\e905";}
#TFurtherDetails > span.Number:before {content: "\e905";}
#TDiscounts > span.Number:before {content: "\e99f";}
#TPayment > span.Number:before {content: "\e93a"; }

@media (max-width: 767px) {
	.wizard-steps > ul {
		padding: 10px 0;
		margin: 0;
		margin-bottom:20px;
		}
	.wizard-steps li {
		float: left;
		padding: 0 10px;
		margin: 0;
		}
	.wizard-steps li {
		display: none;
		}
	.wizard-steps li.CurrentWizardStep {
		display: block;
		width: 100%;
		}
}


/* ----- [ Buttons ] -------- */
button,
.button,
a.button {
	display: inline-block;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	white-space: nowrap;
	width: auto;
	padding: 7px 20px;
    color: #7d2a29;
    background: #fff;
    border: 1px solid #7d2a29;
	outline: none;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	-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: 0;
    resize: none;
	}

button:hover,
.button:hover,
a.button:hover,
.button.on {
	background: #7d2a29;
	color: #fff;
	border-color: #7d2a29;
	text-decoration: none;
	-webkit-appearance: none;
	}

.restaurant-mode button,
.restaurant-mode .button,
.restaurant-mode a.button {
    color: #8e703d;
    border: 1px solid #8e703d;
	}

.restaurant-mode button:hover,
.restaurant-mode .button:hover,
.restaurant-mode a.button:hover,
.restaurant-mode .button.on {
	background: #8e703d;
	color: #fff;
	border-color: #8e703d;
	}


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

.button-reversed,
a.button-reversed,
.restaurant-mode .button-reversed,
.restaurant-mode a.button-reversed {
	color: #fff;
	background: none;
	padding: 7px 20px;
	border: 1px solid #fff;
	}

.button-reversed:hover,
a.button-reversed:hover {
	color: #7d2a29;
	background: #fff;
	}
.restaurant-mode .button-reversed:hover,
.restaurant-mode a.button-reversed:hover {
	color: #8e703d;
	background: #fff;
	}
	
.page-footer .button,
.page-footer a.button {
	color: #000;
	background: #fff;
	font-weight: 600;
	font-size: 12px;
	padding: 5px 20px;
	border: none;
	text-transform: uppercase;
	margin: 0 0 10px;
	}

.button-full-width {
	width: 100%;
	margin: 0 0 10px;
	}
	
.button-small,
a.button-small {
	font-size: 0.8rem;
	}
.button-large,
a.button-large {
	font-size: 0.95rem;
	}

.button-right,
a.button-right {
	float: right;
	}

.filter-button-group {
	justify-content: space-between;
	margin-left: 0;
	margin-right: 0;
	}

.filter-button-group .button {
	font-size: 0.9rem;
	margin: 0 0 10px;
	flex: 1;
	}

@media screen and (min-width: 600px) {
	.filter-button-group {
		justify-content: space-between;
		margin-left: -5px;
		margin-right: -5px;
		}
	.filter-button-group .button {
		margin: 0 5px 10px;
		}
}

/* ----- [ Mode Buttons ] ---------------- */
.mode-buttons a:first-of-type {
	margin-right: 10px;
	}
.mode-buttons a.button-cinema {
	background: #fff;
	color: #7d2a29;
	border: 1px solid #7d2a29;
	}
.mode-buttons a.button-restaurant {
	background: #fff;
	color: #8e703d;
	border: 1px solid #8e703d;
	}

.mode-buttons a.button-cinema.is-active,
.mode-buttons a.button-cinema:hover {
	color: #fff !important;
	background: #7d2a29;
	border: 1px solid #7d2a29;
	}
.mode-buttons a.button-restaurant.is-active,
.mode-buttons a.button-restaurant:hover {
	color: #fff !important;
	background: #8e703d;
	border: 1px solid #8e703d;
	}

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


/* ----- [ Calendar Filter Buttons ] --------------- */
.day-buttons {
	margin: 0 0 50px;
	display: none;
	}
.day-buttons button,
.day-buttons a {
	color: #7d2a29;
	padding: 15px 5px;
	background: #fff;
	border: none;
	border-left: 1px solid #7d2a29;
	width: 100%;
	}
.day-buttons div:last-of-type button,
.day-buttons div:last-of-type a {
	border-right: 1px solid #7d2a29;
	}

.day-buttons button:hover,
.day-buttons button.is-active,
.day-buttons a:hover,
.day-buttons a.is-active {
	color: #fff;
	background: #7d2a29;
	border: none;
	border-left: 1px solid #7d2a29;
	width: 100%;
	}

.day-list {
    position: relative;
    cursor: pointer;
    outline: none;
    overflow: visible;
	}

.day-list:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 15px;
    top: 25%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #fff transparent;
    display: none;
	}

.day-list .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    transition: all 0.3s ease-in;
    list-style: none;
    /* Hiding */
    opacity: 0;
    pointer-events: none;
	}

.day-list .dropdown li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #8aa8bd;
    border-bottom: 1px solid #e6e8ea;
    box-shadow: inset 0 1px 0 rgba(255,255,255,1);
	}

.day-list .dropdown li i {
    float: right;
    color: inherit;
	}

.day-list.dropdown li:first-of-type a {
    border-radius: 7px 7px 0 0;
	}

.day-list .dropdown li:last-of-type a {
    border-radius: 0 0 7px 7px;
    border: none;
	}

.day-list.active .dropdown {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
}

/* Hover state */
.day-list .dropdown li:hover a {
    background: #f3f8f8;
	}


@media only screen and (min-width: 600px) {
	.day-buttons {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		}
	.day-list {
		display: none;
		}
}



/* ----- [ Menu Buttons ] --------------- */
.menu-buttons {
	margin: 0 0 50px;
	flex-wrap: wrap;
	align-items: stretch;
	border-right: 1px solid #8e703d;
	border-top: 1px solid #8e703d;
	border-bottom: 1px solid #8e703d;
	}
.menu-buttons a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #8e703d;
	line-height: 1.3em;
	padding: 7px 20px;
	padding: 7px 10px!important;
	background: #fff;
	border: none;
	vertical-align: middle;
	border-left: 1px solid #8e703d;
	width: 100%;
	white-space: normal;
	-webkit-appearance: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.menu-buttons span {
	display: block;
	}

.menu-buttons a:hover,
.menu-buttons a.is-active,
.menu-buttons a.on {
	color: #fff;
	background: #8e703d;
	border: none;
	border-left: 1px solid #8e703d;
	width: 100%;
	}

@media only screen and (min-width: 600px) {
	.menu-buttons {
		border-top: none;
		border-bottom: none;
		}
}
/* button-see above */

/* ----- [ Contact Page ] --------------- */
.footnote {
	font-size: 16px;
	}

/* ----- [ Restaurant Pages ] --------------- */
.flex-hero {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	flex: 1 1 auto;
	padding: 0;
	text-align: center;
	}
.hero-cta {
	padding: 30px 40px;
	padding: 20px;
	text-align: center;
	width: 300px;
	background: #7d2a29;
	background: rgba(125, 42, 41, 0.7);
	z-index: 10;
	}
.hero-cta h2 {
	color: #fff;
	font-size: 1.7rem;
	line-height: 0.9em;
	margin: 0 auto 5px;
	}
.hero-cta small {
	font-size: 0.9rem;
	text-transform: uppercase;
	}
.hero-cta.restaurant {
	text-align: center;
	background: #8e703d;
	background: rgba(142, 112, 61, 0.8);
	/*box-shadow: 300px 0 #740e0c;*/
	}

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

.quickedit2 {
	position: absolute;
	top: 0;
	left: -25px;
	}


/* ----- [ Footer ] --------------- */
.page-footer {
	background: #333331;
	padding: 50px 15px 15px;
	color: #fff;
	text-align: left;
	flex-shrink: 0;
	}

.footer-links {
	flex-grow: 0;
	margin-bottom: 30px;
	}

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

.page-footer a {
	color: #fff;
	}

p.site-copyright {
	/*float: left;*/
	text-align: center;
	margin: 3em 1em 0;
	}

.ml-field-email {
	margin: 10px 0;
	}
.ml-field-email input {
	font-size: 12px;
	padding: 6px;
	color: #fff;
	background: transparent;
	border: 1px solid #666;
	width: 100%;
	}
.ml-error input {
	color: #222;
	background-color: transparent;
	}
.ml-form-embedSubmit .loading {
	display: inline-block;
	}
.ml-form-embedSubmitLoad {
	height:auto;
	width:auto;
	}

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

/* ----- [ Social Media Icons ] --------------- */
.social-icons-wrapper {
	white-space: nowrap;
	margin: 0;
	}
.social-icons-wrapper .social-icon {
    color: #fff;
    display: inline-block;
    height: 18px;
	width: 50px;
    border-right: 1px solid #ccc;
    vertical-align: middle;
	}
/*
.social-icons-wrapper .social-icon:after {
	content: "";
	border-left: 1px solid #ccc;
	margin: 0 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;
    /*line-height: 22px;*/
	}
.social-icons-wrapper .social-icon-facebook:hover { color: #3b5998 }
.social-icons-wrapper .social-icon-instagram:hover { color: #f00 } /*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%;
	}

.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 ] ------------------ */
.centered,
.centered p,
.centered h2,
.centered h3,
.text-centered,
.text-center {
	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;
	}




.all-caps {
	text-transform: uppercase !important;
	}

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

.hidden {
	display: none;
	}

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

/* ----- [ mobile/desktop ] --------------- */
.mobile {
	display: block;
	}
.desktop {
	display: none;
	}
@media only screen and (min-width: 660px) {
	.mobile {
		display: none;
		}
	.desktop {
		display: block;
		}
	/* for certain 2/3 pages */
	.pad-right {
		padding-right: 30px;
		}
}

/* ----- [ PW styles ] ---------------- */
#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 {
	float: left;
	margin: 0 1em 0.25em 0;
	}
.align_right {
	float: right;
	margin: 0 0 0.25em 1em;
	}
.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}

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

.time-machine {
	position: fixed;
	top: 5px;
	right: -310px;
	z-index: 200;
	padding: 10px;
	background: #7d2a29;
	border-radius: 10px 0 0 10px;
	display: none;
	}
.time-machine.is-open {
	right: 0;
	}
.time-machine form {
	display: flex;
	}
.time-machine input {
	height: 35px;
	margin: 0;
	vertical-align: middle;
	}
.pull-out {
	color: #fff;
	font-size: 1.3em;
	margin-right: 10px;
	cursor: pointer;
	}

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

}

/* top-strip: optional */
.top-strip {
	display: none;
	border-bottom: 1px solid #d7d7d6;
	}
.top-strip-inner {
	max-width: 1070px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 auto;
	padding: 15px 15px 0;
	z-index: 10;
	}
.strip-text {
	margin: 0;
	text-align: center;
	font-size: 0.8rem;
	font-weight: 700;
	}
.mode-buttons {
	height: 35px;
	margin: 0 auto -1px 0;
	}
	
.mode-buttons img {
	display:inline-block;
	width: 130px;
	vertical-align: middle;
	margin: 0 0 2px 6px;
	}
.home .mode-buttons a,
.home .mode-buttons img {
	display: none;
	}

/*
.small .logowrap,
.page-header.is-fixed .logowrap {
	width: 100px;
	margin: 5px auto 2px;
	}
.small .logowrap img,
.page-header.small .logowrap img {
	margin-bottom: -20px;
	}
*/
.is-fixed .top-strip {
	/*display: none;*/
	}

.is-fixed .nav-item {
	padding-bottom: 8px;
	}

.is-fixed .header-logo {
	max-width: 250px;
	margin: 5px auto;
	}

.main-navigation {
	/*flex: 0 1 50%;*/
	display: none;
	padding: 0 10%;
	}
	
.main-navigation.is-open {
	display: block;
	}

.main-nav-wrapper {
	/*display: none;*/
	position: relative; /* for dropnav */
	position: absolute;
	width: 100%;
	top: 100%;
	background: #fff;
	background: rgba(255,255,255,1);
	height: 100vh;
	height: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
	
.main-nav-wrapper.is-open {
	height: 100vh;
	}

@media only screen and (min-width: 660px) { 
	.top-strip {
		display: block;
		}
}
@media only screen and (min-width: 820px) { 
	.strip-text {
		margin: 0;
		padding-top: 4px;
		text-align: left;
		font-size: 0.9rem;
		font-weight: 700;
		/*text-transform: uppercase;*/
		}
	.strip-meta {
		}
}

/* @media only screen and (min-width: 800px) { */
@media only screen and (min-width: 1024px) {
	.main-nav-wrapper {
		position: relative;  /* for dropnav */
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: flex-end;
		width: 100%;
		top: 0;
		height: auto;
		padding: 15px 0;
		}
		
	.is-fixed .main-nav-wrapper {
		padding: 4px 0 0;
		}
	
	.main-navigation {
		/*flex: 0 1 50%;*/
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-evenly;
		align-items: center;
		padding: 0;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		}

	.nav-toggle {
		display: none;
		}
}
		

/* ----- [ 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%;
	}

.related-work:last-of-type {
	display: none;
	}
@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;
		}
}

/* ----- [ Donations Page ] ----------- */
.wrapper h1 {
	font-family: 'Raleway', sans-serif;
	font-size: 40px;
	font-weight: 300;
	margin: 20px 0;
}

.wrapper p {
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	line-height: 1.5em;
	margin-bottom: 30px;
	text-align: left;
}

.donation-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	/*display: none;*/
}

.donation-form fieldset {
	/*border-radius: 10px;
	border: 1px solid #eee;
	display: inline-block;
	min-height: 360px;
	padding: 5px 20px 20px;
	text-align: left;
	vertical-align: top;
	width: 320px;
	width: 48%;*/
}

.donation-form fieldset legend {
	font-size: 18px;
	margin-left: -13px;
	padding: 0 15px;
	display: none;
}

.donation-form label {
	/*font-family: 'Raleway', sans-serif;*/
	display: block;
	font-size: 13px;
	padding-left: 2px;
	vertical-align: top;
	/*display: none;*/
}

.donation-form .text {
	border: 2px solid #e8e8e8;
	box-sizing: border-box;
	font-size: 17px;
	margin-bottom: 8px;
	outline: none;
	padding: 4px;
	resize: none;
	width: 100%;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}

.donation-form select.text {
	margin-top: 4px;
	height: 30px;
}

.donation-form .text:focus {
	border: 2px solid #d0d0d0;
}

/*.donation-form .form-first-name,
.donation-form .form-last-name,*/
.donation-form .form-city,
.donation-form .form-state,
.donation-form .form-zip {
	display: inline-block;
}

.donation-form .form-first-name,
.donation-form .form-last-name {
	/*width: 153px;*/
}

.donation-form .form-last-name {
	margin-left: 10px;
}

.donation-form .form-city {
	width: 160px;
	width: 60%;
}

.donation-form .form-state {
	margin: 0 10px;
	width: 60px;
}

.donation-form .form-zip {
	width: 70px;
	width: 38%;
	float: right;
}

.donation-form .form-amount {
	margin-bottom: 20px;
	overflow: hidden;
}

.donation-form .form-amount label,
.amount.text {
	color: #7d2a29;
	background-color: #fff;
	border:   1px solid #7d2a29;
	cursor: pointer;
	display: block;
	float: left;
	font-size: 32px;
	font-weight: 400;
	line-height: 2;
	text-align: center;
	width: 92px;
	width: 24%;
	width: calc(25% - 10px) !important;
	padding: 1px 4px;
	margin: 0 10px 10px 0;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
	}
	
.donation-form .form-amount label:last-of-type {
	font-size: 28px;
	line-height: 2.3;
	}
	
.donation-form .form-amount label.amount.text:before {
	content:"£";
	}
	
.donation-form .form-amount label:hover {
	color: #fff;
	background-color: #7d2a29;
	}
.form-amount input[type=radio] {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	}

.donation-form .form-amount label.active {
	color: #fff;
	background-color: #7d2a29;
	font-weight: 400;
}

.donation-form .form-amount .amount {
	margin: 0;
	width: 90px;
}

.donation-form .form-amount input {
	}

.donation-form .form-cvc,
.donation-form .form-expiry {
	display: inline-block;
	vertical-align: top;
	width: 75px;
}

.donation-form .form-expiry {
	margin-left: 10px;
	width: 225px;
}

.donation-form .form-expiry select {
	width: 120px;
}

.donation-form .form-expiry select:last-child {
	margin-left: 10px;
	width: 90px;
}

.donation-form .form-submit {
	margin: 15px 0;
	text-align: center;
}
/*
.donation-form .submit-button {
	background-color: #008939;
	border-radius: 4px;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: block;
	font-size: 18px;
	font-weight: 700;
	padding: 15px 30px;
	text-align: center;
	width: 100%;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}
.donation-form .submit-button:hover {
	background-color: #119347;
}
*/

.messages {
	margin: 0;
	background-color: #efe1e1;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
	opacity: 0;
}

.messages.active {
	opacity: 1;
}

.messages p {
	color: #570707;
	padding: 10px 20px;
	font-weight: 600;
}

	/* ----- [ Forms 1: MTO Options ] --------------- */
	/* 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;
		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: 44px;
		height: 44px;
		margin: 0 5px 0 0;
		}
	
	.big-swatch {
		position: absolute;
		top: 0;
		left:0;
		}
	.swatch-title {
		text-align: right;
		}
