/* ======================================== */
/* GLOBAL STYLES
/* ======================================== */

:root {
    --black: #080705;
    --green: #043f3f;
    --action: #005d11;
    --pink: #720026;
    --gold: #E39B31;
    --copper: #8a5c18;
    --white: #F2F4F3;
    --off-white: #EEE;
	--soc-yellow: #eee6bc;
    --grey: #CCC;
    --dark: #444;
    --title-font: 'Abril Fatface', cursive;
    --serif-font: 'EB Garamond', serif;
    --sans-serif-font: 'Open Sans', sans-serif;
	--title-font2: 'Amarante', sans-serif;
	--serif-font2: 'Bellefair', 'serif';
}

/* ======================================== */
/* RESET GLOBAL STYLES
/* ======================================== */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    color: var(--white);
    border: none;
    text-decoration: none;
    transition: all 0.5s;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--title-font2);
    font-weight: normal;
}

body {
    background-color: var(--off-white);
    padding: 0;
}
body[page="games"] {
	background-color: var(--white);
}


/* ======================================== */
/* useful stuff
/* ======================================== */

.hide, .hidden {
	display: none !important;
}

/* ======================================== */
/* Fancy border === */
/* ======================================== */

.fancy-border {
	/*border: 25px solid var(--black);*/
	/*border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='75' height='75'%3E%3Cg fill='none' stroke='%23080705' stroke-width='2'%3E%3Cpath d='M1 1h73v73H1z'/%3E%3Cpath d='M8 8h59v59H8z'/%3E%3Cpath d='M8 8h16v16H8zM51 8h16v16H51zM51 51h16v16H51zM8 51h16v16H8z'/%3E%3C/g%3E%3Cg fill='%23080705'%3E%3Ccircle cx='16' cy='16' r='2'/%3E%3Ccircle cx='59' cy='16' r='2'/%3E%3Ccircle cx='59' cy='59' r='2'/%3E%3Ccircle cx='16' cy='59' r='2'/%3E%3C/g%3E%3C/svg%3E") 25;*/
	padding: 35px 60px 100px;
	margin: 50px auto 50px;
	position: relative;
	width: 630px;
	background: var(--white);
	border: 2px solid var(--copper);

}
.fancy-border img.top-borders {
	position: absolute;
	top: 15px;
	left: 10px;
	width: 600px;
}
.fancy-border img.bottom-borders {
	position: absolute;
	bottom: 15px;
	left: 10px;
	width: 600px;
}

/* ======================================== */
/* 3D Button
/* ======================================== */

.button-3d {
    background: var(--pink);
    color: var(--white) !important;
    font-family: var(--sans-serif-font) !important;
    text-transform: uppercase;
    font-size: 16px !important;
    font-weight: bold;
    line-height: 16px;
    padding: 18px 50px 20px;
    display: inline-block;
    text-decoration: none !important;
    border-radius: 5px;
    cursor: pointer;
    text-shadow: 0px -1px var(--black);
    border-bottom: 2px solid var(--black);
    transition: all 0.2s;
    transition-property: background-color, border-color;
    margin-top: 2px;
    text-align: center;
}
.button-3d.button-light {
    background-color: var(--green);
}
.button-3d:hover {
    background: var(--action);
    border-bottom: 4px solid var(--green);
    margin-top: 0;
}
.button-3d:active {
    border-bottom-width: 0;
    margin-top: 3px;
    border-top: 1px solid var(--green);
}
.button-3d.button-3d-disabled {
	background: var(--grey);
	color: var(--dark);
	/* font-family: var(--sans-serif-font); */
	/* text-transform: uppercase; */
	/* font-size: 18px; */
	/* font-weight: bold; */
	/* line-height: 18px; */
	/* padding: 18px 50px 20px; */
	/* display: inline-block; */
	/* text-decoration: none; */
	/* border-radius: 5px; */
	cursor: auto;
	text-shadow: none;
	border: none;
	/* transition: all 0.2s; */
	/* transition-property: background-color, border-color; */
	margin-top: 0;
	/* text-align: center; */
}

/* ======================================== */
/* START: TOP NAV
/* ======================================== */

#top-nav {
	background: rgba(0,0,0,0);
    padding: 0 8px 0 10px;
    display: grid;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	height: 50px;
	/* border-bottom: 8px solid var(--pink); */
	opacity: 0.97;
	grid-template-columns: 250px 1fr;
}
#top-nav.scrolled {
	background: rgba(0,0,0,0.4);
}
/*@media screen and (min-width:950px) {*/
/*    #top-nav {*/
/*        grid-template-columns: 250px 1fr;*/
/*    }*/
/*}*/
@media screen and (max-width:550px) {
	#top-nav {
		grid-template-columns: 1fr;
		text-align: center;
	}
}
/*@media screen and (max-width:949px) {*/
/*    #top-nav {*/
/*        grid-template-columns: 250px 1fr;*/
/*    }*/
/*    #top-nav logo {*/
/*        display: none !important;*/
/*    }*/
/*    #top-nav > ul > li {*/
/*        float: left;*/
/*    }*/
/*    #top-nav > ul > li.cart, #top-nav > ul > li.language-switcher {*/
/*        float: right;*/
/*        top: 6px;*/
/*        margin-left: 4px;*/
/*    }*/
/*}*/
/*@media screen and (max-width:699px) {*/

/*    #top-nav ul li.gifts {*/
/*        display: none !important;*/
/*    }*/
/*    #top-nav ul li#more-menu ul#more-submenu li.more-gifts {*/
/*        display: block !important;*/
/*    }*/
/*}*/

/*@media screen and (max-width:620px) {*/

/*    #top-nav ul li#escape-room, #top-nav ul li#escape-hotel {*/
/*        display: none !important;*/
/*    }*/

/*}*/

/*@media screen and (max-width:399px) {*/

/*    #top-nav {*/
/*        padding: 0 6px;*/
/*    }*/
/*    #top-nav ul li#home-link a, #top-nav ul li#games-menu button, #top-nav ul li#more-menu button {*/
/*        font-size: 12px !important;*/
/*        padding: 0 6px !important;*/
/*    }*/
/*    #top-nav ul li.cart a {*/
/*        padding: 0 38px 0 8px !important;*/
/*        font-size: 14px !important;*/
/*    }*/
/*    #top-nav ul li.language-switcher, #top-nav ul li.cart {*/
/*        top: 4px !important;*/
/*    }*/
/*    #top-nav ul li.language-switcher a {*/
/*        font-size: 14px !important;*/
/*        padding: 0 8px 0px 8px !important;*/
/*    }*/


/*}*/

/* LOGO ================================ */

#top-nav logo {
    display: block;
    height: 50px;
}
#top-nav logo a {
    text-decoration: none;
    color: var(--white);
    font-size: 18px;
    line-height: 50px;
    font-family: var(--title-font);
    text-transform: uppercase;
    letter-spacing: 0.2px;
}
#top-nav logo a small {
    font-size: 13px;
}

/* TOP NAV LINKS ================================ */

#top-nav nav-color-accent-1 {
	display: block;
	height: 59px;
	border-bottom: 6px solid #2A9D8F;
}
#top-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
    text-align: right;
}
@media screen and (max-width:550px) {
	#top-nav ul {
		text-align: center;
		position: fixed;
		top: 58px;
		width: 100%;
		background: rgba(0,0,0,0.9);
	}
}
#top-nav ul li {
	display: inline-block;
	font-size: 16px;
	line-height: 40px;
	border-top: 3px solid transparent;
	position: relative;
    transition: all 0.3s;
}
#top-nav ul li:hover {
	border-top: 1px solid var(--off-white);
}
#top-nav ul li.cart, #top-nav ul li.cart:hover, #top-nav ul li.language-switcher, #top-nav ul li.language-switcher:hover {
    border-top: none;
}
/* #top-nav span.lang {
	font-size: 16px;
} */
#top-nav ul li#more-menu ul#more-submenu li.more-gifts {
    display: none;
}
#top-nav ul li.active {
	border-top:1px solid var(--soc-yellow);
}

#top-nav ul li a, #top-nav ul li button {
	font-family: var(--serif-font2), serif;
    /* letter-spacing: 0.5px; */
	font-size: 16px;
	color: var(--soc-yellow);
	text-decoration: none;
	padding: 0 8px 0 9px;
	display: block;
	text-transform: uppercase;
	/*font-weight: bold;*/
	background: none;
	border: none;
	height: 40px;
	cursor: pointer;
}

#top-nav ul li button span.caret {
	font-size: 10px;
	position: relative;
	bottom: 2px;
	color: var(--soc-yellow);
}

#top-nav ul li ul.submenu, #top-nav ul li div.submenu {
	display: none;
	position: absolute;
	top: 44px;
	left: -3px;
	text-align: left;
	z-index: 500;
	background: var(--off-white);
	border-radius: 5px;
	border: 5px solid var(--grey);
	box-shadow: 0 0 7px rgba(0,0,0,0.7);
	cursor: pointer;
}
#top-nav ul li ul.submenu#more-submenu {
	width: 160px;
}

@media screen and (max-width: 540px) {
	#top-nav ul li ul.submenu, #top-nav ul li div.submenu {
		position: fixed;
		width: calc(100% - 20px) !important;
		text-align: center;
		left: 10px;
		top: 75px;
	}
}
#top-nav ul li.expanded ul.submenu, #top-nav ul li.expanded div.submenu {
	display: block;
}

#top-nav ul li ul.submenu li {
	display: block;
	width: auto;
	border-top: 1px solid #ddd;
}
#top-nav ul li ul.submenu li:first-child {
	border-top: none;
}
#top-nav ul li ul.submenu li a {
	color: var(--black);
	text-transform: none;
	display: block;
	font-family: 'Open Sans', sans-serif;
}
#top-nav ul li ul.submenu li a:hover {
	background: var(--white);
}
#top-nav ul li ul.submenu li:first-child a:hover {
	border-top-left-radius: 5px !important;
	border-top-right-radius: 5px !important;
}
#top-nav ul li ul.submenu li:last-child a:hover {
	border-bottom-left-radius: 5px !important;
	border-bottom-right-radius: 5px !important;
}

#top-nav ul li ul.submenu#games-submenu {
	width: 450px;
}
#top-nav ul li ul.submenu#escape-rooms-submenu {
	width: 340px;
}
#top-nav ul li ul.submenu#more-submenu {
	width: 230px;
}

#top-nav ul li.cart a {
	background: var(--white);
    display: inline-block;
	border-radius: 3px;
	color: var(--black);
    position: relative;
    top: 0px;
    line-height: 35px;
	height: 37px;
    padding: 0 42px 0px 12px;
}
#top-nav ul li.cart a span{
    background-color: var(--green);
    color: var(--white);
    border-radius: 3px;
    position: absolute;
    top: 2px;
	left: auto;
    right: 2px;
     width: 30px;
    display: block;
    height: 33px;
    line-height: 31px;
    text-align: center;
    padding: 0 10px 0 11px;
}

#top-nav ul li.language-switcher a {
	background: var(--copper);
    display: inline-block;
	border-radius: 3px;
	color: var(--white);
    position: relative;
    top: 0px;
    line-height: 35px;
	height: 37px;
    padding: 0 12px 0px 12px;
}
@media screen and (max-width:550px) {
	#top-nav ul li.language-switcher a {
		line-height: 32px;
		height: 32px;

	}
}


/* ======================================== */
/* END: TOP NAV
/* ======================================== */




/* =================================================
/* START: HEADINGS
=================================================
*/

#headings {
	background-color: var(--black);
	background-image: url(/images/treasure-6.jpg);
	background-position: center center;
	background-size: cover;
	padding: 150px 30px 150px;
	text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}
#headings.small-hero {
    padding: 78px 20px 50px;
    min-height: 280px;
    background-size: cover;
    background-position: top center;
}
#headings.fullscreen {
    min-height: 100vh;
    padding: 190px 30px 200px;
}
#headings.manor {
    padding: 150px 30px 200px;
		min-height: 100vh;
}
#headings.escape-room {
    padding: 150px 30px 200px;
    min-height: 100vh;
}
.headings-logo {
	opacity: 0.3;
	position: absolute;
	top: 20px;
	left: calc(50% - 150px);
	width: 300px;
}
[page="home"] #headings {
	display: flex;
	align-items: center;
	justify-content: center;
	/*text-align: center;*/
	/* padding: 0px 0px 0; */
	/* min-height: 100vh; */
	/*padding: 280px 20px 150px; */
	background-image: url(/images/bg-6.jpg);
}
#headings-content {
	width: 715px;
	max-width: 100%;
	margin: 0 auto;
}

#headings h1 {
	font-size: 60px;
	line-height: 60px;
	margin: 0 0 25px 0;
	padding: 0;
	font-family: var(--title-font);
	color: var(--soc-yellow);
	text-shadow: 0 0 12px rgba(0,0,0,0.9);
     text-transform: uppercase;
}
#headings h1.reversed {
	font-family: 'Abril Fatface', serif;
	font-size: 24px;
	color: var(--soc-yellow);
	font-weight: normal;
	margin: 0 0 5px 0;
	line-height: 28px;
	text-shadow: 0 0 12px rgba(0,0,0,0.9);
}
#headings.small-hero h1 {
    font-size: 60px;
    line-height: 62px;
}
#headings h6{
	font-family: 'Abril Fatface', serif;
	font-size: 20px;
	color: var(--soc-yellow);
	font-weight: normal;
	margin: 0 0 5px 0;
	line-height: 28px;
	text-shadow: 0 0 30px rgba(0,0,0,0.9);
    text-transform: uppercase;
}
#headings h6 small {
    font-size: 14px;
    line-height: 14px;
}
#headings h6.reversed {
	font-size: 60px;
	line-height: 60px;
	margin: 0 0 18px 0;
	padding: 0;
	font-family: var(--title-font2);
	color: var(--white);
	text-shadow: 0 0 12px rgba(0,0,0,0.9);
}

#headings small {
	font-family: 'Abril Fatface', serif;
	font-size: 36px;
}

#headings h2 {
	font-family: var(--serif-font2);
	margin: 0 auto;
	padding: 0 0 30px 0;
	font-size: 28px;
	line-height: 42px;
	color: var(--off-white);
	font-weight: normal;
	text-shadow: 0 0 12px rgba(0,0,0,0.9);
	max-width: 500px;
}
#headings .secondary-heading {
	font-size: 28px;
	text-transform: uppercase;
	padding-top: 20px;
	padding-bottom: 10px;
}
#headings .secondary-copy {
	font-size: 24px;
	line-height: 34px;
}

#headings.mission-score h1 {
	margin-bottom: 70px;
}
#headings.mission-score h2 {
	font-size: 60px;
	line-height: 60px;
	margin-bottom: 80px;
	padding: 0;
	font-family: 'Abril Fatface', serif;
	color: var(--white);
}

#headings.mission-score h2.score {
	font-size: 100px;
	line-height: 100px;
	margin-bottom: 80px;
	padding: 0;
	font-family: 'Abril Fatface', serif;
	color: var(--white);
}

#headings.mission-score p a {
	padding: 20px 28px 16px;
	color: var(--white);
	border: 3px solid var(--white);
	border-radius: 3px;
	text-transform: uppercase;
	background: rgba(0,0,0,0.3);
}

#headings.mission-score p a:hover {
	text-decoration: none;
}

#headings button {
	border: 3px solid var(--black);
	border-radius: 5px;
	padding: 13px 20px;
	line-height: 20px;
	font-size: 20px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 5px;
}

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

	#headings {
		padding: 100px 30px;
	}

}

@media screen and (max-width: 400px) {

	#headings {
		padding: 50px 10px;
	}
	#headings h1 {
		font-size: 40px;
		line-height: 40px;
	}

}


/*
=================================================
TEAM
=================================================
*/
body[page="about"] {
	background: var(--white);
}
#team {
	background: var(--white);
	padding: 70px 30px 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 40px;
	width: 900px;
	max-width: 100%;
	margin: 0 auto;
}
#team p, #philosophy p, #philosophy a, #philosophy b, #philosophy strong, #philosophy i {
	color: var(--black);
	font-family: var(--serif-font);
	font-size: 20px;
	line-height: 26px;
}
#team h3, #philosophy h3 {
	color: var(--black);
	font-family: var(--title-font);
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 15px;
}
@media screen and (max-width: 900px) {
	#team {
		display: block;
		width: 600px;
		max-width: 100%;
	}
}

#team img {
	width: 100%;
	border-radius: 3px;
	margin-bottom: 20px;
}

#team p {
	margin-bottom: 15px;
}
#team p:last-child {
	margin-bottom: 0;
}
#story p {
	color: var(--white);
	font-family: var(--serif-font);
	font-size: 18px;
	line-height: 24px;
}


/*
=================================================
STORY
=================================================
*/

#story {
	padding: 60px 30px 85px;
	background: #EEE;
	background-size: cover;
}

#story h2, #story p {
	width: 540px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	color: #FFF;
}

#story h2 {
	font-family: 'Abril Fatface', serif;
	margin-bottom: 20px;
	font-size: 48px;
}

#story p {
	margin-bottom: 20px;
}
#story p:last-child {
	margin-bottom: 0;
}


/*
=================================================
PHILOSOPHY
=================================================
*/

#philosophy {
	padding: 70px 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 50px;
	width: 900px;
	max-width: 100%;
	margin: 0 auto;
}

@media screen and (max-width: 900px) {
	#philosophy {
		display: block;
		width: 600px;
	}
	.design {
		margin-bottom: 50px;
	}
}

#philosophy h3 {
	font-family: 'Abril Fatface', serif;
	margin-bottom: 20px;
	font-size: 36px;
	line-height: 42px;
}

#philosophy p {
	margin-bottom: 20px;
	text-align: justify;
}
#philosophy p:last-child {
	margin-bottom: 0;
}

/*
	TRACK RECORD
	*/
.track-record img{
	border: 3px solid #DDD;
	border-radius: 50%;
	height: 130px;
	width: 130px;
}

/*
=================================================
FAQ
=================================================
*/
.answer {
	height: 100px;
	padding: 40px 0;
	display: block;
}
#faq{
	/*padding: 50px 30px 50px;*/
	/*background: #eee;*/
	width: 630px;
	max-width: 100%;
	margin: 0 auto;
	background: var(--white);
}
#faq * {
	color: var(--black);
}
#faq a {
	text-decoration: underline;
}
#faq a.answer {
	text-decoration: none;
}
#faq h3 {
	font-family: 'Abril Fatface', serif;
	font-size: 26px;
	line-height: 30px;
	margin-top: 20px;
	margin-bottom: 15px;
}

#faq ul {
	padding-left: 22px;
	margin-bottom: 30px;
	font-family: var(--serif-font);
	line-height: 30px;
}

#faq p {
	margin-bottom: 15px;
	font-family: var(--serif-font);
	font-size: 18px;
	line-height: 26px;
}

/*
=================================================
AFFILIATE
=================================================
*/
#affiliate {
	margin: 80px auto;
}
body[page="affiliate"] p {
	color: var(--black);
	font-family: var(--serif-font) !important;
	font-size: 20px;
	line-height: 26px;
}
body[page="affiliate"] p.login-link {
	color: var(--white);
	font-weight: bold;
	padding-top: 5px;
	font-family: var(--serif-font) !important;

}
body[page="affiliate"] p.login-link a {
	text-decoration: underline;
}

/*
=================================================
AS SEEN IN
=================================================
*/

#as-seen-in-home {
	background: rgba(255,255,255,1);
	border-radius: 4px;
	padding: 15px 20px;
	/*margin-top: 35px;*/
	text-align: center;
	width: 450px;
	max-width: 100%;
	margin: 35px auto 0;
}
#as-seen-in-home h3 {
	font-family: 'Abril Fatface', serif;
	font-size: 18px;
	line-height: 18px;
	margin: 0 auto 15px;
	width: 200px;
	color: #333;
	padding: 0 0 15px;
	border-bottom: 1px solid var(--white);
    font-weight: normal;
}
#as-seen-in-home img {
	width: 180px;
	padding: 0px 10px;
	display: inline-block;
}
#as-seen-in-home img.nyt {
	position: relative;
	bottom: 9px;
	width: 205px;
}
#as-seen-in-home img.arstech {
	/*position: relative;*/
	/*bottom: 13px;*/
	width: 160px;
}

#as-seen-in {
	background: var(--off-white);
	padding: 40px 20px;
	text-align: center;
}
#as-seen-in img {
	width: 250px;
	/*-webkit-filter: grayscale(100%);*/
	/*filter: grayscale(100%);*/
	/*opacity: 0.8;*/
	padding: 0px 10px;
	display: inline-block;
}
#as-seen-in img.nyt {
	position: relative;
	bottom: 20px;
	/*opacity: 0.7;*/
}
#as-seen-in h3 {
	font-family: 'Abril Fatface', serif;
	font-size: 22px;
	line-height: 22px;
	margin-bottom: 20px;
	color: var(--black);
	/*opacity: 0.7;*/
}
#as-seen-in .mini-sep div {
	border-bottom: 2px solid #DDD;
	opacity: 0.5;
}
@media screen and (max-width: 600px) {
	#as-seen-in img {
		display: block;
		margin: 0 auto;
		padding: 0;
	}
	#as-seen-in .mini-sep div {
		margin-bottom: 36px;
	}
}

/* ======================================== */
/* END: HEADINGS
/* ======================================== */


/*
=================================================
START: XP INFO NAV (info + check avail)
=================================================
MATH:
large screen:   headings-content height = 210px
                nav ul = bottom: calc((100vh / 2) - 108px); padding is 150top 200 bottom + 58px for topnav
                info nav top = same as nav ul bottom, but - 58px for topnav and an extra 20 for padding
*/

#experience-info-nav {
    width: 100%;
    text-align: center;
    padding: 0px 0;
    position: sticky;
    top: calc((100vh / 2) - 30px);
    z-index: 2;
    height: 0;
    /* background-color: red; */
    overflow: visible;
}
#experience-info-nav ul {
    list-style: none;
    display: block;
    position: relative;
    bottom: calc((100vh / 2) - 87px);
    padding: 20px 20px;
     background-color: var(--black);
}
#experience-info-nav ul li {
    display: inline-block;
}
#experience-info-nav ul li button {
    border: 3px solid var(--grey);
    padding: 12px 15px 14px;
    border-radius: 10px;
    width: 220px;
    font-family: var(--sans-serif-font);
    color: var(--black);
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}
#experience-info-nav ul li:first-child button {
    border-right-width: 1px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#experience-info-nav ul li:nth-child(2) button, #experience-info-nav ul li:nth-child(3) button {
    border-right-width: 1px;
    border-left-width: 1px;
    border-radius: 0;
}
#experience-info-nav ul li:last-child button {
    border-left-width: 1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
#experience-info-nav ul li.active button {
    background-color: var(--black);
    color: var(--gold);
}
#experience-info-nav ul li:not(.active) button:hover {
    background-color: var(--dark);
    color: var(--gold);
}
/*
=================================================
END: XP INFO NAV (info + check avail)
=================================================
*/





/* ======================================== */
/* START: HERO SECTION W 3 TYPES OF GAMES
/* ======================================== */
#categories-hero {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    padding: 60px 80px;
    background-color: var(--white);
}
#categories-hero category {
    background: var(--black);
    margin-right: 1px;
    display: block;
    height: 400px;
    display: flex;
	align-items: center;
	justify-content: center;
    transform: skew(-3deg);
    border-radius: 3px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
#categories-hero category category-content {
    max-width: 420px;
    text-align: center;
    transform: skew(4deg);
}
#categories-hero category category-content h2 {
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 12px;
	text-shadow: 0 0 12px rgba(0,0,0,0.9);
	text-wrap: balance;
}
@media screen and (min-width: 1250px) and (max-width: 1600px) {
	#categories-hero {
		/* grid-template-columns: 1fr; */
	}
	#categories-hero category {

	}
	#categories-hero category category-content {
		max-width: 280px;
	}
}
@media screen and (max-width: 1249px) {
	#categories-hero {
		grid-template-columns: 1fr;
		padding: 60px 80px 30px 80px;
	}
	#categories-hero category {
		transform: none;
		margin-bottom: 30px;
		height: 340px;
	}
	#categories-hero category category-content {
		transform: none;
	}
}
#categories-hero category category-content p {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 18px;
    text-shadow: 0 0 12px rgba(0,0,0,0.9);
}




/*
=================================================
QUOTES
=================================================
*/
#buzz {
	max-width: 600px;
	margin: 0 auto;
	padding: 0px 0px 20px;
}

#buzz .quote-container {

	background: var(--white);
	border-radius: 3px;
	padding: 25px 30px 28px;
	margin-bottom: 15px;

}
#buzz .quote-container:last-child {
	margin-bottom: 0px;
}

#buzz .quote {

	font-family: 'EB Garamond', serif;
	font-size: 28px;
	line-height: 32px;
	font-style: italic;
	font-weight: bold;
	color: #333;
	margin-bottom: 5px;
}

#buzz .citation, #buzz .citation a {

	font-size: 14px;
	color: #AAA;
	text-decoration: underline;

}

.underlined-heading {
    font-family: 'Abril Fatface', serif;
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 8px;
    color: var(--black);
    text-decoration: none;
    font-weight: normal;
    margin-bottom: 15px;
    color: var(--black);
    text-align: center;
}

/*
=================================================
VISUAL EXPLAINER
=================================================
*/
#preview .visual-explainer {
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 20px;
}

#preview .visual-explainer img {
	margin-bottom: 7px;
}
#preview .visual-explainer h3 {
	padding: 0 15px 0 0;
	font-size: 22px;
	line-height: 26px;
	font-weight: normal;
	margin-bottom: 10px;
}
#preview .visual-explainer p {
	padding: 0 15px 0 0;
	font-size: 18px;
	font-weight: normal;
}
@media screen and (max-width: 750px) {
	#preview .visual-explainer h3 {
		padding: 0 30px;
		font-size: 24px;
		line-height: 28px;
		text-align: center;
		margin: 0 auto 8px;
		max-width: 500px;
	}
	#preview .visual-explainer p {
		padding: 0 30px;
		text-align: center;
		margin: 0 auto 40px;
		max-width: 500px;
	}
}

/*
=================================================
PRODUCT BOXES
=================================================
*/
.row-product-boxes {
	max-width: 960px;
	margin: 0 auto 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 20px;
}
.product-box {
	width: 100% !important;
	position: relative;
	max-width: 100%;
	height: auto;
	padding: 80px 10px;
	margin: 0 auto 20px;
	background: #000 no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 3px;
	display: block;
	text-align: center;
}

.product-box-link, .product-box-link:hover {
	display: block !important;
	text-decoration: none !important;
	width: 100% !important;
}

.product-box-price {
	position: absolute;
	top: 10px;
	right: -10px;
	background: #dae4e7;
	padding: 7px 15px 6px;
	font-family: "Courier New", monospace;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    border-radius: 3px;
    border: 3px solid #000;
/*     box-shadow: 0 0 5px rgba(255,255,255,0.5); */
}
.product-box-new {
	text-align: right;
	top: 48px;
	background: #cc0000;
	color: #FFF;
	border-color: #660000;
}
.product-box-struck {
	text-decoration: line-through;
	text-decoration-thickness: 2px;
	color: #888
}
.product-box h5 {
	font-family: 'Abril Fatface', serif;
	color: #FFF;
	font-weight: bold;
	font-size: 26px;
	text-shadow: 0 0 10px rgba(0,0,0,0.9);
}

.product-box h5.mini-heading {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 16px;
	font-weight: normal;
	text-shadow: 0 0 10px rgba(0,0,0,0.9);
}

.product-box h5.game-title {
	font-size: 38px;
	line-height: 38px;
	margin-bottom: 20px;
	font-weight: normal;
}

/* .product-box .button {
	background: #03a303;
	border-color: #027602;
	margin-bottom: 5px;
	display: inline-block;
}

.product-box .button:hover {
	background: #20c320;
	border-color: #089a08;
} */

.product-box .badge-play {
	padding: 8px 14px 7px;
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
	display: inline-block;
	margin-top: 10px;
	background: rgba(255,255,255,0.8);
	color: #444;
	border-radius: 3px;
}

@media screen and (max-width: 870px) {
	.row-product-boxes{
		display: block;
		width: 100%;
	}
	.col-product-pox {
		width: 100% !important;
		display: block !important;
		margin-bottom: 20px;
	}
	/* .product-box .button {
		display: inline-block;
	} */
}

/*
=================================================
AUTHORITY
=================================================
*/

#authority {
	padding: 70px 30px 70px 30px;
	text-align: center;
	background: var(--grey);
    background-size: cover;
}

#authority h3 {
	font-family: 'Abril Fatface', serif;
	font-size: 26px;
	line-height: 30px;
	max-width: 520px;
	margin: 0 auto 20px;
    color: var(--black);
    font-weight: normal;
    /* font-smooth: always; */
}

#authority p, #authority strong{
	margin: 0 0 15px;
    color: var(--black);
    font-family: var(--serif-font);
    font-size: 22px;
}

#authority p > a {
	color: var(--green) !important;
    font-family: var(--serif-font);
    font-weight: bold;
    /* border-bottom: 3px solid var(--green); */
    text-decoration: underline;
}

/* #authority img{
	border: 5px solid #FFF;
	border-radius: 50%;
	height: 150px;
	width: 150px;
} */

#authority img{
	/* border: 5px solid #FFF; */
	/* border-radius: 50%; */
	height: 80px;
	/* width: 150px; */
}

#authority.reversed p, #authority.reversed h3 {
	color: #FFF;
}

#authority.reversed a {
	color: var(--green) !important;
}



/*
=================================================
FEATURES
=================================================
*/

#features {
	text-align: center;
	padding: 60px 30px 85px;
    background: var(--white);
}

#features h4, #features p, #features small {
    color: var(--black);
    font-weight: normal;
}

#features h3, #features h3 a, #features h3 a:hover {
	font-family: 'Abril Fatface', serif;
	font-size: 32px;
	line-height: 32px;
	margin-bottom: 15px;
	color: var(--black);
	text-decoration: none;
    font-weight: normal;
}
#features h3 small {
    font-size: 20px;
    color: var(--dark);
    font-family: 'Abril Fatface', serif;
}
#features h4 {
	font-family: 'Abril Fatface', serif;
	font-size: 40px;
	line-height: 30px;
	margin-bottom: 8px;
}
#features h4 small{
	font-size: 12px;
	text-transform: uppercase
}

#features .details {
	clear: both;
	padding-top: 30px;
	padding-bottom: 10px;
}
#features .details .container {
	max-width: 500px;
	border: 3px solid #000;
	padding: 10px 20px 30px;
	border-radius: 5px;
}

@media screen and (max-width: 575px) {
	#features .details .container {
		max-width: 200px;
	}
}

#features .images {
	padding: 20px 0px;
}

#features .images img {
	margin-bottom: 5px;
	border-radius: 3px;
	height: 400px;
	/*width: 400px;*/
	max-width: 100%;
	max-height: 400px;
}

@media screen and (max-width: 1330px) {

	#features .images img {
		/*width: 600px;*/
		height: auto;
	}

}
.open-photo-gallery {
	display: none;
}
@media screen and (max-width: 1000px) {
	.open-photo-gallery {
		display: inline-block;
		padding: 10px 20px;
		font-size: 14px;
		line-height: 14px;
		border-radius: 3px;
		font-family: var(--sans-serif-font);
		font-weight: bold;
	}
	#features .images {
		width: 500px;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	#features .images img {
		width: 100%;
		height: auto;
		max-height: none;
	}
	room {
		grid-template-columns: 1fr !important;
	}
	room-images {
		display: none !important;
	}

}

#features p, #features b, #features a {
	margin: 0 auto 10px;
	max-width: 520px;
	font-family: 'EB Garamond', serif;
	font-size: 22px;
    color: var(--black);
}
#features a {
	text-decoration: underline;
}

#features .mini-label {
    color: var(--dark);
    font-size: 14px;
    font-family: var(--sans-serif-font);
    text-transform: uppercase;
    font-weight: bold;
    padding: 7px 12px 6px;
    display: inline-block;
    background: var(--grey);
    font-size: 14px;
    line-height: 18px;
    border-radius: 3px;
}

/*
=================================================
GAME FACTS
=================================================
*/
.game-facts {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 700px) {
	.game-facts {
		display: block;
	}
}

#final-call-to-action {
    background: var(--black);
    background-size: cover;
    padding: 100px 20px 110px;
    text-align: center;
}
#final-call-to-action h3 {
    font-size: 32px;
    font-family: var(--title-font);
    font-weight: normal;
    margin-bottom: 20px;
    text-shadow: 0 0 12px rgba(0,0,0,0.9);

}


/*
=================================================
FOOTER
=================================================
*/

footer {
	background: var(--black);
	padding: 20px 20px 20px;
	text-align: center;
	position: relative;
}

footer a.ester-egg {
	position: absolute;
	bottom: 5px;
	right: 10px;
	opacity: 0.2;
	text-decoration: none;
}

footer a.ester-egg:hover {
	opacity: 1.0;
}

footer ul {
	max-width: 600px;
	list-style: none;
	margin: 0 auto;
}

footer ul.links {
/* 	border-top: 2px solid #CCC; */
	padding: 5px 20px 5px;
}



footer ul li {
	display: inline-block;
	padding: 2px 5px;
	font-size: 12px;
}

footer ul li a, footer p {
	color: #AAA;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
}

footer ul.social-media {
	padding: 2px 20px 5px;
}

footer ul.social-media li {
	font-size: 12px;
	line-height: 16px;
}

footer ul.social-media li a.instagram:hover {
	color: #c32aa3;
}


/*
=================================================
START: MANOR CONTENT
=================================================
*/


.manor-content {
    display: none;
    padding: 140px 20px;
    background-color: var(--black);
    position: relative;
    /*bottom: 126px;*/
	margin: 0 auto;
	background-size: cover;
	border-top: 5px solid var(--black);
}
.manor-content.invisible {
    display: block;
    opacity: 0;
}
.manor-content.active {
    display: block;
    opacity: 1;
}
.manor-content main {
	width: 800px;
	max-width: 100%;
	margin: 0 auto;
	padding: 40px 50px;
	background: var(--white);
}
.manor-content section {
	width: 100%;
    max-width: 100%;
    margin: 0 auto 40px;
    display: block;

}
.manor-content h2 {
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 10px;
    font-family: var(--title-font);
    font-weight: normal;
    color: var(--black);
}
.manor-content h3 {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 15px;
	margin-top: 18px;
    font-family: var(--title-font);
    font-weight: normal;
    color: var(--black);
}
.manor-content hr {
    width: 60px;
    height: 3px;
    display: block;
    background:var(--black);
    margin-bottom: 20px;
}
.manor-content p {
    font-size: 24px;
    line-height: 30px;
    font-family: var(--serif-font);
    font-weight: normal;
    color: var(--black);
    margin-bottom: 13px
}

gallery {
    display: block;
    width: 100%;
    /* padding: 20px; */
}
gallery row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 20px;
}
@media screen and (max-width: 1650px) {
    gallery row {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 900px) {
    gallery row {
        grid-template-columns: 1fr;
    }
}

rooms-mini-gallery {
	display: grid;
	width: 100%;
	grid-template-columns: 1fr;
	column-gap: 10px;
	margin-bottom: 13px;
}
rooms-mini-gallery img {
	width: 100%;
	margin-bottom: 10px;
	border-radius: 3px;
}

gallery-item {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 20px;

}
gallery-item description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.2);
    color: var(--white);
    font-family: var(--serif-font);
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
}
gallery img {
    display: block;
    width: 100%;
    border-radius: 3px;
    /*aspect-ratio: 3 / 2; !* 600x400 *!*/
}

.air-datepicker-cell.-current- {
    color: var(--pink);
}

details {
	border: 2px solid var(--grey);
	background:  var(--off-white);
	border-radius: 3px;
	padding: 10px;
	margin: 10px 0px 0px;
}
details summary {
	font-weight: bolder;
}
details summary, details p {
	color: var(--black);
	font-size: 18px !important;
	line-height: 26px;
	margin-bottom: 0 !important;
	padding: 0 10px;
}


/*
=================================================
END: MANOR CONTENT
=================================================
*/

/*
=================================================
START: ESCAPE ROOM CONTENT
=================================================
*/

.escape-room-content {
    display: none;
    padding: 80px 20px 20px;
    background-color: var(--white);
    position: relative;
    bottom: 126px;
	min-height: 900px;
}
.escape-room-content.invisible {
    display: block;
    opacity: 0;
}
.escape-room-content.active {
    display: block;
    opacity: 1;
}
.escape-room-content section {
    max-width: 800px;
    margin: 0 auto 60px;
    display: block;
}
.escape-room-content h2 {
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 10px;
    font-family: var(--title-font);
    font-weight: normal;
    color: var(--black);
}
.escape-room-content h3 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 10px;
    font-family: var(--title-font);
    font-weight: normal;
    color: var(--black);
}
.escape-room-content hr {
    width: 60px;
    height: 3px;
    display: block;
    background:var(--black);
    margin-bottom: 20px;
}
.escape-room-content p {
    font-size: 24px;
    line-height: 30px;
    font-family: var(--serif-font);
    font-weight: normal;
    color: var(--black);
    margin-bottom: 13px
}

gallery {
    display: block;
    width: 100%;
    /* padding: 20px; */
}
gallery row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 20px;
}
@media screen and (max-width: 1650px) {
    gallery row {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 900px) {
    gallery row {
        grid-template-columns: 1fr;
    }
}
gallery-item {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 20px;

}
gallery-item description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.2);
    color: var(--white);
    font-family: var(--serif-font);
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
}
gallery img {
    display: block;
    width: 100%;
    border-radius: 3px;
    /*aspect-ratio: 3 / 2; !* 600x400 *!*/
}

.escape-room-content section {
    display: grid;
    grid-template-columns: 4fr 3fr;
    column-gap: 20px;
}
.escape-room-content section #game-slots-empty {
    min-height: 200px;
    background-color: var(--grey);
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
	font-weight: bold;
	color: var(--dark);
	font-family: var(--sans-serif-font);

}
.escape-room-content section #game-slots {
	min-height: 199px;
	/*background-color: red;*/
	border-left: 1px solid var(--grey);
	padding-left: 20px;
	margin-left: 1px;
}
.booking-engine h6 {
	font-family: var(--sans-serif-font);
	font-size: 14px;
	text-transform: uppercase;
	line-height: 24px;
	font-weight: bold;
	color: var(--dark);
	margin-bottom: 7px;

}
/*.booking-engine small {*/
/*	font-family: var(--sans-serif-font);*/
/*	text-transform: uppercase;*/
/*	color: var(--dark);*/
/*	font-size: 14px;*/
/*	line-height: 12px;*/
/*	font-weight: bold;*/
/*	display: block;*/
/*	margin-bottom: 10px;*/
/*}*/
.escape-room-content section #game-slots game-slot {
	display: block;
	background: var(--green);
	color: var(--white);
	padding: 10px;
	margin-bottom: 5px;
	border-radius: 3px;
	cursor: pointer;
}
.escape-room-content section #game-slots game-slot.status-booked {
	background-color: #660000;
	cursor: default;
}
.escape-room-content section #game-slots game-slot.status-booked button{
	background-color: #660000;
	text-align: right;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--grey);
}
.escape-room-content section #game-slots game-slot button {
	float: right;
	background-color: var(--white);
	color: var(--dark);
	padding: 0px 5px;
	border: none;
	border-radius: 3px;
	height: 39px;
	font-size: 16px;
	line-height: 39px;
	font-weight: bold;
	width: 140px;
	text-align: center;
	cursor: pointer;
}
.escape-room-content section #game-slots game-slot game {
	display: block;
	width: 100%;
	margin: 0 0 5px;
	font-family: var(--sans-serif-font);
	font-size: 16px;
	line-height: 16px;
	font-weight: bold;
}
.escape-room-content section #game-slots game-slot gametime {
	display: inline-block;
	font-family: var(--sans-serif-font);
	font-size: 16px;
	line-height: 16px;
	font-weight: bold;
}
#datepicker, .air-datepicker {
    width: 100%;
}
var
.air-datepicker.custom air-datepicker-body--cells {
	grid-auto-rows: 100px;
}

.air-datepicker.custom .air-datepicker-cell {
	height: 100px !important;

}
.air-datepicker-nav--title, .air-datepicker-nav--title * {
    color: var(--black) !important;
}
.air-datepicker-body--day-name {
    color: var(--copper)
}
.air-datepicker-cell.-day- {
    color: var(--black);
    font-weight: bold;
}
.air-datepicker-cell.-day-:hover {
    color: var(--white);
    background-color: var(--green);
}
.air-datepicker-cell.-current- {
    color: var(--black);
}
.air-datepicker-cell.-selected- {
    color: var(--white);
    background-color: var(--pink);
}
.air-datepicker-cell.-day-.-other-month- {
    color: var(--black);
    font-weight: normal;
}
.air-datepicker-cell.-day-.-disabled- {
    color: var(--grey);
    font-weight: normal;
}
.air-datepicker-cell.-disabled-:hover {
    background: none;
}
/*
=================================================
END: ESCAPE ROOM CONTENT
=================================================
*/


/*
=================================================
SHOP
=================================================
*/

/*
=================================================
GAMES
=================================================
*/
.games {
	display: block;
	padding: 0 40px;
	max-width: 1000px;
	margin: 0 auto;

}

.game {
	margin-bottom: 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 40px;
}
.game-description {
	margin-bottom: 40px;
	/* padding-top: 9px; */
	text-align: left;
}

@media screen and (max-width: 860px) {
	.game {
		display: block;
	}
}
@media screen and (max-width: 420px) {
	.games {
		padding: 0 20px;
	}
}
.game-description h3 {
	font-family: var(--title-font);
	font-size: 32px;
	line-height: 34px;
	margin-bottom: 10px;
	color: #212529;
    font-weight: normal;
}
.game-description h3 a {
	font-family: 'Abril Fatface', serif;
	font-size: 32px;
	line-height: 34px;
	/* margin-bottom: 15px; */
	color: #212529;
	text-decoration: none;
}
.game-description h5 {
	font-family: 'Abril Fatface', serif;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 5px;
	color: #333;
	font-weight: normal;
}
.game-description p {
	margin-bottom: 10px;
    font-size: 18px;
    line-height: 22px;
	color: var(--black);
    font-family: var(--serif-font);
}
.game-description ul {
    margin-left: 0px;
    margin-bottom: 10px;
    list-style: none;
}
.game-description ul li {
    font-size: 18px;
    line-height: 22px;
	color: var(--black);
    font-family: var(--serif-font);
}
.game-description .actions {
	padding-top: 10px;
}
.game-description a, .game-description button {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
	width: 100%;
}
.game-description .sub-game-details {
	/*background: #f6f6f6;*/
	border-radius: 3px;
	/*padding: 10px 13px;*/
	padding-top: 8px;

}
.game-description .sub-game-details p {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	color: #666;
	margin-bottom: 5px;
	/*padding-left: 3px;*/
}
.game-description .sub-game-details p:last-child {
	margin-bottom: 0;
}


.shop-container {
	width: 100%;
	display: block;
	background: var(--grey);
    padding-top: 50px;
}
.shop {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 50px;
	padding: 50px 50px;
	width: 1400px;
	margin: 0 auto 0px;
	max-width: 100%;
}
.shop-ftf {
	width: 1100px;
	grid-template-columns: 1fr 1fr
}
.shop .game-card {
	display: block;
}
.shop .game-card .product-box {
	padding: 100px 10px !important;
	margin-bottom: 0px !important;
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}
.shop .game-card .product-box h5.game-title {
	margin-bottom: 0 !important;
}
.shop .game-card .product-box h5.mini-heading {
	display: none !important;
}
.shop .game-card .product-box .badge {
	display: none !important;
}
.shop .game-card .game-description {
	background: #FFF;
	padding: 20px 25px 23px;
	margin-bottom: 0 !important;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;

}
.shop .game-card .game-description h3 a{
	font-size: 22px !important;
	line-height: 24px !important;
}
game-tags {
	display: block;
	margin-bottom: 0px;
}
game-tag {
	display: inline-block;
	/*background: #EEE;*/
	color: #999;
	font-size: 11px;
	line-height: 11px;
	/*font-weight: bold;*/
	border-radius: 3px;
	font-family: 'Open Sans', sans-serif;
	padding: 4px 0px 4px;
	text-transform: uppercase;
}

.game-description p.sold-out-explainer {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 16px;
	color: var(--green) !important;
	font-family: var(--sans-serif-font);
	text-align: center;
	padding: 8px 20px 0;

}
.game-description p.sold-out-explainer a {
	font-family: "Open Sans", sans-serif !important;
	display: inline-block !important;
	margin: 0 !important;
	width: auto !important;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 20px;
	color: var(--action) !important;
	text-decoration: underline;

}

.sold-out-explainer-in-box {
	font-size: 14px !important;
	line-height: 20px !important;
	color: #EEE !important;
	font-family: "Open Sans", sans-serif !important;
	text-align: center !important;
	padding: 10px 20px 0 !important;
	max-width: 320px !important;
	font-weight: bold;

}
.sold-out-explainer-in-box a {
	color: #FFF !important;
	font-size: 14px !important;
	line-height: 20px !important;
	font-family: "Open Sans", sans-serif !important;
	display: inline-block !important;
	margin: 0 !important;
	width: auto !important;
}

@media screen and (max-width: 1220px) {
	.shop, .shop-ftf {
		grid-template-columns: 1fr 1fr;
		width: 1000px;
	}
}
@media screen and (max-width: 890px) {
	.shop, .shop-ftf {
		grid-template-columns: 1fr;
		width: 640px;
	}

}

@media screen and (max-width: 540px) {
	.shop {
		padding-right: 30px;
		padding-left: 30px;
	}
}
@media screen and (max-width: 440px) {
	.shop {
		padding-right: 20px;
		padding-left: 20px;
	}
}


/*
=================================================
GENERIC LAYOUT FOR CORPORATE PAGES
=================================================
*/
.boring-page {
	background: #FFF;
	width: 800px;
	margin: 0 auto;

}
.boring-page * {
	color: #333;
}
.boring-page a {
	text-decoration: underline;
}
.boring-page h2 {
	margin-bottom: 12px;
	margin-top: 20px;
	font-size: 24px;
	line-height: 30px;
}
.boring-page h2:first-child {
	margin-top: 0;
}
.boring-page p, .boring-page ul {
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 22px;
}
.boring-page ul {
	margin-left: 20px;
}


/*
=================================================
ALERTS
=================================================
*/

#notification-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding: 20px;
	z-index: 99999;
	background: rgba(0,0,0,0.5);
}

#notification {
	background: #FFF;
	padding: 32px 40px 40px;
	width: 800px;
	max-width: 100%;
	margin: 0 auto;
	border-radius: 3px;
	border: 3px solid #000;
}
#notification.info {
	background: #FFF;
}

#notification-text {
	color: #000;
	padding: 0 0 25px;
	font-size: 20px;
	line-height: 26px;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	font-weight: bold;
}

#notification-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 20px;
	width: 800px;
	max-width: 100%;
	margin: 0 auto;

}
@media screen and (max-width: 699px) {
	#notification-actions {
		display: block;
	}
	#notification-actions .button:first-child {
		margin-bottom: 5px;
	}
}



#sub-cancel-anytime-container, #sub-satisfaction-guaranteed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding: 20px;
	z-index: 99999;
	background: rgba(0,0,0,0.5);
}

#info {
	background: #FFF;
	padding: 25px 35px 35px;
	width: 500px;
	max-width: 100%;
	margin: 0 auto;
	border-radius: 3px;
	border: 3px solid #000;
}

#info button {
	background: var(--green);
	color: var(--white);
	padding: 16px 20px;
	display: block;
	width: 100%;
	border-radius: 3px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
}

#info-text {
	padding: 0 0 25px;
	font-size: 20px;
	line-height: 26px;
	font-family: 'Open Sans', sans-serif;
	/*text-align: center;*/
	/*font-weight: bold;*/
}
#info-text p {
	margin-bottom: 15px;
}
#info-text p, #info-text strong, #info-text a {
	color: var(--black) !important;
}
#info-text a {
	text-decoration: underline;
}





.alert-container {
	position: fixed;
	top: 50px;
	left: 0px;
	width: 100%;
	text-align: center;
	padding: 0px;
	z-index: 2;
}

.alert {
	width: 700px;
	max-width: 100%;
	display: inline-block;
	padding: 15px 15px 12px;
	margin: 10px;
}

.alert button span{
	font-size: 60px;
	line-height: 30px;
	position: relative;
	left: 10px;
	bottom: 2px;
}
.alert button:active, .alert button:focus {
	outline: none;
}


/*
=================================================
CHECKOUT
=================================================
*/

#headings.checkout-headings {
	padding: 10px 20px 5px;
	background: #EEE;
}
mini {
	color: var(--black);
}
@media screen and (max-width: 400px) {
	#headings.checkout-headings {
		padding: 60px 20px 15px !important;
	}
}

section.checkout {
	padding: 0 20px 10px;
}

ul.checkout-steps {
	list-style: none;
	text-align: center;
	margin-bottom: 10px;
}
ul.checkout-steps li {
	display: inline-block;
	padding: 5px;
	font-family: 'Abril Fatface', serif;
	color: #AAA;
}
ul.checkout-steps li.active {
	color: #000;
}
@media screen and (max-width: 460px) {
	ul.checkout-steps li {
		display: block;
		font-size: 16px;
		padding: 0;
	}
	ul.checkout-steps li.separator {
		display: none;
	}
}

ul.checkout-steps li a{
	padding: 5px 20px;
}
#country-notification {
	width: 700px;
	max-width: 100%;
	background: #CC0000;
	margin: 0 auto;
	color: #FFF;
	border: 3px solid #660000;
	border-radius: 3px;
	padding: 12px 15px;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	margin-bottom: 10px;
}
.cart-details-arrow {
	position: relative;
	font-size: 12px;
	top: 1px;
	left: 5px;
	color: #999;
}
.cart-table{
	position: relative;
	width: 700px;
	max-width: 100%;
	background: #FFF;
	margin: 0 auto;
	border: 3px solid #DDD;
	border-radius: 5px;

}
.cart-table select#country {
	float: right;
	font-family: inherit;
	font-size: 14px;
	padding: 2px;
	color: var(--black);
}
.cart-table select#country.invalid {
	border: 3px solid #CC0000;
	border-radius: 3px;
}
.cart-table select * {
	font-family: "Courier New", monospace;
	font-size: 14px;
}
.cart-table table {
	margin: 0;
	width: 100%;
	border-collapse: collapse;
}

.cart-table table td {
	padding: 10px 12px 7px;
	font-size: 16px;
	line-height: 22px;
	font-family: "Courier New", monospace;
	/* 	font-family: 'Open Sans', sans-serif; */
	color: var(--black);
	border-bottom: 1px solid #eee;
	vertical-align: bottom;
	position: relative;
	z-index: 9999;
}

.shipping-details {
	font-family: "Courier New", monospace;
	color: #999;
	font-size: 12px;
	line-height: 16px;
}
.shipping-details span.shipping-promo {
	font-family: "Courier New", monospace;
	color: darkgreen;
	font-size: 12px;
	line-height: 16px;
}
.cart-table table td.cart-item-name {
	text-align: left;
}
.cart-table table td.cart-item-name span {
	padding: 0;
	font-size: 14px;
	line-height: 16px;
	/*font-family: "Courier New", monospace;*/
	 	font-family: 'Open Sans', sans-serif;
	border-bottom: none;
	vertical-align: bottom;
	position: relative;
	color: #990000;
	z-index: 9999;
	display: block;
}
.cart-table table td.currency {
	text-align: right;
	font-family: "Courier New", monospace;
}
.cart-table table td.cart-total {
	text-align: left;
	text-transform: uppercase;
	font-family: "Courier New", monospace;
}
.cart-table table td.empty-cart {
	font-family: "Courier New", monospace;
	padding: 18px 15px 20px;
	font-weight: bold;
	color: #444;
	text-align: center;
}
.cart-table table td.total {
	font-weight: bold;
}
.discount {
	color: green;
}

.usd {
	/* 	font-family: 'Open Sans', sans-serif; */
	font-family: "Courier New", monospace;
	font-size: 13px;
	color: #888;
	position: relative;
	bottom: 1px;
	right: 2px;
}
a.checkout-button, button.checkout-button {
	display: block;
	width: 100%;
	background: var(--green);
	border-color: var(--dark);
}
button.continue-shopping {
	display: block;
	width: 100%;
	background: #03a303;
	border-color: #027602;
}
.cart-table .button {
	display: block;
	margin-bottom: 0px;
}
.cart-table .button:last-child {
	margin-bottom: 0;
}



.cart-badge {
	font-family: 'Open Sans', sans-serif !important;
	position: relative;
	bottom: 3px;
	left: 1px;
	font-size: 12px;
	background: #056c05;
	color: #FFF;
	border-radius: 5px;
	padding: 2px 5px 3px;
	min-width: 20px;
}

.cart-remove-x {
	padding: 0;
	background: transparent;
	font-weight: bold;
	display: inline;
	font-family: "Courier New", monospace;
	font-size: 12px;
	text-decoration: none;
	position: relative;
	bottom: 0px;
	text-transform: uppercase;
	color: #BBB;
}

.cart-remove-x:hover {
	color: #CC0000;
}

.shipping-breakdown {
	background: 0;
	border: none;
	padding: 0;
	position: absolute;
	bottom: 4px;
	right: 14px;
	font-size: 10px;
}

/*
=================================================
PREVIEW
=================================================
*/

#preview {
	margin: 0 auto;
	padding: 140px 30px 120px;
	background: #eee;
}

#preview * {
	color: var(--black);
}

#preview p.intro {
	text-align: center;
	margin: 0 auto;
	max-width: 520px;
	font-family: 'EB Garamond', serif;
	font-size: 24px;
}

#preview p a {
	font-family: 'EB Garamond', serif;
	text-decoration: none;
	border-bottom: 2px solid #a1e0de;
	box-shadow: inset 0 -5px 0 #a1e0de;
	font-size: 24px;
	color: #000
}
#preview p a:hover {
	text-decoration: none;
	border-bottom: 2px solid #2A9D8F;
	box-shadow: inset 0 -5px 0 #2A9D8F;
}
#preview p a:visitied {
	border-bottom: 2px solid #50009f;
}

#preview h3 {
	font-family: 'Abril Fatface', serif;
	font-size: 26px;
	line-height: 30px;
	margin-bottom: 15px;
}

#preview h3.intro {
	font-family: 'Abril Fatface', serif;
	font-size: 32px;
	line-height: 32px;
	margin-bottom: 8px;
	text-align: center;
}

#preview img {
	border-radius: 3px;
	width: 100%;
	margin-bottom: 15px;
}



/*
=================================================
CREDIT / GREEN BOX
=================================================
*/


.credit, #features p.credit, #preview p.credit {
	border: 3px solid #1c653a;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 50px;
	background: #d9f0dc;
	border-radius: 5px;
	padding: 17px 25px 19px;
	max-width: 700px;
	color: var(--black)
}
#preview p.credit {
	max-width: 500px;
	margin: 0 auto 40px;
	text-align: center;
	padding-bottom: 25px;
}
.credit strong, .credit b {
	font-size: 16px;
	color: var(--black);
}
.credit span {
	color: var(--black);
}

.credit a, #features p.credit a, #preview p.credit a {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 24px;
	text-decoration: underline;
	color: #000;
}
#preview p.credit a{
	text-decoration: none;
}
#preview p.credit strong {
	font-family: 'Limelight', sans-serif;
	font-size: 20px;
}



/*
=================================================
PRICING TABLE
=================================================
*/

#pricing-table {
	padding: 0px 30px 0px;
	text-align: center;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap:5px;
	max-width: 1000px;
	margin: 0 auto;
}


#pricing-table h1 {
	font-size: 60px;
	line-height: 60px;
	margin: 0 0 40px 0;
	padding: 0;
	font-family: 'Abril Fatface', serif;
}



#pricing-table h2 {
	margin: 0 0 25px;
	padding: 0 0 20px 0;
	font-size: 22px;
	line-height: 26px;
	font-weight: bold;
}

#pricing-table p#questions{
	padding: 50px 0;
}

.info-square {
	font-size: 12px;
	padding: 1px 7px 1px;
	background: #56aad6;
	color: #FFF;
	border-radius: 3px;
	font-family: 'Open Sans', sans-serif;
}

.columns-container {
	max-width: 800px;
	margin: 0 auto;
}
.columns-container * {
	color: var(--black)
}

.columns-container #monthly-option {
	display: none;
}

.columns-container.show-monthly-column {
	max-width: 1200px;
}

.columns-container.show-monthly-column #monthly-option {
	display: block;
}

.columns-container .savings-with-monthly {
	display: none;
}
.columns-container .savings-without-monthly {
	display: block;
}
.columns-container.show-monthly-column .savings-with-monthly {
	display: block;
}
.columns-container.show-monthly-column .savings-without-monthly {
	display: none;
}

@media screen and (max-width: 500px) {
	#pricing-table h1 {
		font-size: 40px;
		line-height: 40px;
	}

	#pricing-table h2 {
		font-size: 20px;
		line-height: 26px;
	}
}

/* Create three columns of equal width */
.columns {
	/*float: left;*/
	width: 100%;
	padding: 8px;
}

.columns-container.show-monthly-column .columns {
	width: 33.3%;
}

.price-column-savings {
	background: #dae4e7;
	padding: 7px 15px 6px;
	font-family: "Courier New", monospace;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	border-radius: 3px;
	border: 3px solid #000;
	display: inline-block;
	margin-top: 10px;
	/*     box-shadow: 0 0 5px rgba(255,255,255,0.5); */
}
.price small {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	color: #444;
}

/* Style the list */
.price {
	list-style-type: none;
	border: 1px solid #eee;
	margin: 0;
	padding: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	background: #FFF;
	border: 3px solid #FFF;
	border-radius: 3px;
}

/* Add shadows on hover */
.price:hover {
	box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

/* Pricing header */
.price .header {
	background-color: #111;
	color: white;
	font-size: 25px;
	font-family: 'Abril Fatface', serif;
}

/* List items */
.price li {
	border-bottom: 1px solid #eee;
	padding: 20px;
	text-align: center;
}

/* Grey list item */
.price .grey {
	background-color: #eee;
	font-size: 20px;
}

.price .amount {
	line-height: 20px;
	margin-top: 2px;
	padding: 30px;
	position: relative;
}
.price .amount b{
	font-size: 30px;
	font-family: 'Abril Fatface', sans-serif;
	font-weight: normal;
}


/*
=================================================
GAMES CONTENT LIST
=================================================
*/

.game-contents-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 10px;
	width: 800px;
	max-width: 100%;
	margin: 0 auto 35px;
	padding: 20px 25px 20px 30px;
	border-radius: 3px;
	background: #f6f6f6;
}
.game-contents-list ul {
	margin-left: 20px;
}
.game-contents-list ul li {
	color: var(--black);
	font-size: 22px;
	line-height: 24px;
	margin-bottom: 7px;
}

@media screen and (max-width: 600px){
	.game-contents-list {
		display: block;
	}
}




/*
    =================================================
    START: B&B Availability Search FORM
    =================================================
    */

#bnb-availability-search {
	width: 100%;
	height: auto;
	text-align: center;
	padding: 0px 0;
	position: relative;
	/*top: 58px;*/
	/*top: calc((100vh / 2) - 30px);*/

	left: 0;
	z-index: 2;
	/*background-color: rgba(0,0,0,0.6);*/
	overflow: visible;

}
#bnb-availability-search ul {
	list-style: none;
	display: block;
	position: relative;
	padding: 0 20px 0;
	/*background-color: var(--black);*/
	letter-spacing: -1em; /* Effectively collapses white-space */
}

#bnb-availability-search ul li {
	position: relative;
	vertical-align: top;
	letter-spacing: normal; /* resets white-space */
	display: inline-block;
	/*color: var(--black);*/
	text-align: left;
	margin: 0;
	border: 3px solid var(--grey);
	padding: 12px 0px 0px 18px;
	border-radius: 10px;
	font-family: var(--sans-serif-font);
	color: var(--black);
	font-weight: bold;
	font-size: 16px;
	line-height: 16px;
	background-color: var(--white);
	cursor: pointer;
	transition: all 0.3s;
	height: 63px;
}
#bnb-availability-search ul li span {
	color: var(--black);
}
#bnb-availability-search ul li span.day-of-week,
#bnb-availability-search ul li span.nb-rooms {
	color: var(--dark);
	font-size: 12px;
	font-weight: normal;
	font-style: italic;
	text-transform: uppercase;
}


#bnb-availability-search ul li.search-button {
	/*width: 300px;*/
	line-height: 56px;
	text-align: center;
	padding: 0;
}


#bnb-availability-search ul li.date {
	width: 160px;
}
#bnb-availability-search ul li.guests {
	width: 140px;
}
#bnb-availability-search ul li.search-button {
	width: 250px;
}
#bnb-availability-search ul li:first-child {
	border-right-width: 1px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
#bnb-availability-search ul li:nth-child(2), #bnb-availability-search ul li:nth-child(3) {
	border-right-width: 1px;
	border-left-width: 1px;
	border-radius: 0;
}
#bnb-availability-search ul li:last-child {
	border-left-width: 1px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
body[page="photos"] #headings {
	min-height: 0 !important;
	padding: 50px 0 !important;
	/*height: auto;*/
}
body[page="search"] #headings {
	min-height: 0 !important;
	padding: 50px 0 !important;
	/*height: auto;*/
}
@media screen and (max-width: 810px) {
	#headings.manor {
		/*min-height: 220px !important;*/
		/*padding-top: 20px !important;*/
	}
	body[page="home"] #headings.manor {
		min-height: calc(100vh - 58px) !important;

	}
	body[page="search"] #headings {
		min-height: 220px !important;
		height: auto;
	}

	#bnb-availability-search ul {
		display: inline-grid;
		grid-template-columns: 1fr 1fr 1fr;
		width: 360px;
		padding-left: 0;
		padding-right: 0;
		padding-top: 0;
	}
	#bnb-availability-search ul li.date {
		width: 130px;
		padding-left: 13px;
		padding-right: 5px;
	}
	#bnb-availability-search ul li.guests {
		width: 100px;
		padding-left: 13px;
		padding-right: 5px;

	}
	#bnb-availability-search ul li.search-button {
		width: 360px;
		grid-column: 1 / 4;
	}
	#bnb-availability-search ul li:nth-child(1) {
		border-bottom-left-radius: 0;
	}
	#bnb-availability-search ul li:nth-child(2) {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
		border-right: 1px solid var(--grey);
	}
	#bnb-availability-search ul li:nth-child(3) {
		border-left: 1px solid var(--grey);
		border-top: 3px solid var(--grey);
		border-right: 3px solid var(--grey);
		/*border-bottom-left-radius: 10px;*/
		border-top-right-radius: 10px;
	}
	#bnb-availability-search ul li:nth-child(4) {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-bottom-left-radius: 10px;
		border-left: 3px solid var(--grey);
		border-top: 0;

	}
}
#bnb-availability-search ul li.active button {
	background-color: var(--black);
	color: var(--gold);
}
#bnb-availability-search ul li:not(.active) button:hover {
	background-color: var(--dark);
	color: var(--gold);
}
.datepicker-container {
	position: absolute;
	top: 64px;
	left: -3px;
	width: 300px;
	height: 243px;
	z-index: 500;
}
.air-datepicker {
	border: 3px solid var(--grey);
	border-radius: 10px;

}
.guests-picker-container {
	position: absolute;
	z-index: 500;
	top: 64px;
	left: -1px;
	width: 210px;
	height: 172px;
	padding: 5px 10px 0 10px;
	background: var(--white);
	border: 3px solid var(--grey);
	border-radius: 4px;
}
@media screen and (max-width: 810px) {
	.datepicker-container {
		top: 130px;
	}
	#check-in-datepicker-container {
		left: 0px;
	}
	#check-out-datepicker-container {
		left: -77px;
	}
	.guests-picker-container {
		left: auto;
		right: -3px;
		top: 130px;
	}
}
.guests-picker-container * {
	color: var(--black);
	cursor: default;
}
.guests-picker-container table {
	width: 100%;
}
.guests-picker-container td {
	padding: 2px 5px;
}
.guests-picker-container button {
	padding: 0 !important;
	width: 28px;
	height: 28px;
	text-align: center;
	cursor: pointer;
}
.ok-button {
	border: none !important;
	font-size: 13px !important;
	padding: 5px 10px !important;
	background: var(--pink);
	color: var(--white);
	/*width: 100%;*/
	display: inline-block;
	float: right;
	margin-top: 2px;
}
/*
=================================================
END: B&B Availability Search FORM
=================================================
*/



/*
    =================================================
    START: B&B Photo Grid
    =================================================
    */
photo-grid {
	display: grid;
	width: 1400px;
	max-width: 100%;
	padding: 20px;
	margin: 0 auto;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	column-gap: 4px;
}
@media screen and (max-width: 800px) {
	photo-grid {
		grid-template-columns: 1fr	;
	}
}
photo-grid img {
	width: 100%;
	margin-bottom: 1x;
	border-radius: 3px;
}

/*
    =================================================
    START: B&B Availability Search RESULTS
    =================================================
    */
#search-meta {
	text-align: left;
	padding: 18px 23px 20px;
	margin-bottom: 20px;
	/*border-bottom: 3px solid #CCC;*/
	background: #DDD;
	border-radius: 3px;
	color: var(--black) !important;
	font-family: var(--sans-serif-font);
	font-weight: bold;
	/*font-style: italic;*/
	font-size: 16px;
}
#search-meta small {
	color: var(--dark) !important;
	font-family: var(--sans-serif-font);
	font-weight: bold;
	font-style: italic;
	font-size: 13px;
}


#search-results {
	width: 1500px;
	max-width: 100%;
	padding: 20px;
	margin: 40px auto;
	display: grid;
	grid-template-columns: auto 340px;
	grid-gap: 30px;
}

reservation-cart {
	opacity: 0.9;
	display: inline-block;
	width: 100%;
	height: min-content;
	background: #fff;
	border-radius: 3px;
	position: sticky;
	top: 85px;
	padding: 0;
	border: 3px solid var(--black);
}
@media screen and (max-width: 1000px) {
	#search-results {
		grid-template-columns: 1fr;
		/*padding-top: 100px;*/
		padding-top: 0;
	}
	reservation-cart {
		position: fixed;
		z-index: 50;
		top: auto;
		bottom: 0px;
		left: 0px;
		width: 100%;
		opacity: 1;
	}
	.start-totals, .subtotals, .total {
		display: none !important;
	}
}
reservation-cart:hover {
	opacity: 1;
}
reservation-cart * {
	color: var(--black);
	font-family: var(--sans-serif-font);
	font-size: 14px;
	border: none;
}
reservation-cart .currency {
	font-family: "Courier New", monospace;
}
reservation-cart table {
	width: 100%;

}
reservation-cart .empty-cart {
	padding: 10px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;

}
reservation-cart .empty-cart .empty-message {
	background: var(--off-white);
	color: var(--grey);
	padding: 30px 0;
	border-radius: 3px;
}
reservation-cart .cart-title {
	font-weight: bold;
	text-transform: uppercase;
	/*border-bottom: 2px solid var(--black);*/
	background: var(--off-white);
	padding: 10px 10px 12px;
	/*font-size: 16px;*/
	text-align: center;
}
reservation-cart .start-totals td {
	/*background: black;*/
}
reservation-cart .total td span {
	font-size: 14px; font-family: 'Courier New', monospace
}
reservation-cart td {
	padding: 5px 10px;
}
reservation-cart td.multiply {
	padding: 5px 0px;
}
reservation-cart tr.subtotals td {
	padding: 2px 10px;
	text-align: right;
	font-family: "Courier New", monospace;
}
reservation-cart tr.total td {
	padding: 5px 10px 7px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 18px;
	text-align: right;
	font-family: "Courier New", monospace;
}
reservation-cart tr.cart-item td {
	padding-bottom: 0;
	/*font-family: "Courier New", monospace;*/
	text-transform: uppercase;
	font-weight: bold;
	font-size: 16px;
}
reservation-cart tr.cart-item:first-child td {
	padding-top: 13px;
}
reservation-cart tr.cart-item-info td {
	padding: 0 0 2px 11px;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 12px;
	font-weight: bold;
	color: var(--dark);
}
reservation-cart tr.cart-item-info td b{
	color: var(--black);
	font-size: 12px;
	line-height: 12px;

}
reservation-cart tr.cart-item-info:last-child td:last-child {
	padding-right: 10px;
	text-align: right;
 }
#reservation-cart-body tr:first-child td {
	padding-top: 12px;
 }
room {
	display: grid;
	grid-template-columns: 2fr 3fr;
	column-gap: 10px;
	/*background: var(--white);*/
	width: 100%;
	/*height: 490px;*/
	margin-bottom: 40px;
}
room * {
	color: #000;
}
room main-image {
	display: block;
	height: 302px;
	background-size: cover;
	background-position: center;
	/*margin-bottom: 10px;*/
	border-radius: 3px;
	opacity: 1
}
room small-images {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 10px;
	width: 100%;
	opacity: 0.5;
	margin-top: 10px;
}
room small-images div {
	background-position: center;
	background-size: cover;
	border-radius: 3px;
	height: 80px;

}
room small-images div.counter {
	background: rgba(0,0,0,0.3);
	background-position: center;
	background-size: cover;
	font-size: 40px;
	line-height: 80px;
	text-align: center;
	color: var(--off-white);
}
room h3 {
	font-size: 24px;
	line-height: 24px;
	margin-bottom: 14px;
	text-transform: uppercase;
}
room p {
	font-family: var(--serif-font);
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 10px;
}
rate {
	/*float: right;*/
	background: #fff;
	/*border: 1px solid #ddd;*/
	font-family: var(--sans-serif-font);
	padding: 18px 18px 18px 35px;
	border-radius: 3px;
	display: grid;
	grid-template-columns: 3fr 1fr;
	column-gap: 0;
	width: 100%;
	height: auto;
	margin-top: 3px;
}
rate h6{
	font-size: 14px;
	font-family: var(--sans-serif-font);
	color: var(--dark);
	font-weight: bold;
	margin-bottom: 10px;
	padding-top: 2px;
	text-transform: uppercase;
}
rate p, rate li {
	font-size: 14px;
	line-height: 18px;
	font-family: var(--sans-serif-font);
	margin-bottom: 5px;
	margin-left: 18px;
	color: var(--dark);
	padding-right: 30px;
}

room img {
	width: 100%;
	border-radius: 3px;
}
room-info {
	display: block;
	width: 100%;
	/*height: 200px;*/
	padding: 25px 35px;
	background: #FFF !important;
	border-radius: 3px;
}
.nightly-rate {
	display: inline-block;
	background: #DDD;
	color: #222;
	padding: 6px 12px;
	border-radius: 3px;
	font-family: var(--sans-serif-font);
	font-size: 12px;
	font-weight: bold;
	margin: 0 0 3px 0;
	/*float: right;*/

}
.select-rate {
	display: block;
	font-size: 12px !important;
	height: 70px;
	padding-right: 8px;
	padding-left: 8px;
	width: 100%;
}
.reservation-cart-remove-x-position {
	position: relative;
	bottom: 3px;
	left: 10px;
}
rates {
	display: block;
	width: 100%;
}
rate-added {
	display: block;
	width: 100%;
	background: #DDD;
	color: var(--dark);
	font-size: 18px;
	/*font-style: italic;*/
	font-weight: bold;
	text-transform: none;
	font-family: var(--serif-font);
	padding: 50px 20px;
	text-align: center;
	text-wrap: balance;
	margin-top: 3px;
	border-radius: 3px;
}
/*
    =================================================
    END: B&B Availability Search RESULTS
    =================================================
    */

/*
    =================================================
    START: GALLERY
    =================================================
    */
gallery {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: grid;
	grid-template-columns: 38px auto 38px;
	column-gap: 0px;
	text-align: center;
	background: rgba(0,0,0,0.95);
	z-index: 9999999;
}
gallery .showcase-image{
	display: flex;
	align-items: center;
	justify-content: center;
}
.exit-button {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;

}
gallery .gallery-nav{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
	font-weight: bold;
	color: var(--off-white);
	cursor: pointer;
}
gallery img {
	margin: 0 auto;
	/*width: 1000px;*/
	width: auto !important;
	height: auto !important;
	max-width: 90%;
	padding-bottom: 50px;
	max-height: calc(100vh - 150px);
}

/* ==================== */
/* BORING CONTENT */

.text-content {
	display: block;
	padding: 0 20px 50px;
	background-color: var(--grey	);
	position: relative;
	/*bottom: 126px;*/
	margin: 0 auto;
	background-size: cover;
	border-top: 5px solid var(--black);
	text-align: center;
}

.manor-content.active {
	display: block;
	opacity: 1;
}
.text-content h1 {
	padding: 30px 20px 35px;
	color: var(--black);
	text-transform: uppercase;
}
.text-content main * {
	color: var(--black);
}
.text-content main {
	width: 650px;
	max-width: 100%;
	margin: 0 auto;
	padding: 12px 50px 45px;
	background: var(--white);
	text-align: left;
}
.text-content main h3 {
	font-size: 24px;
	line-height: 32px;
	margin: 25px 0 10px;
}
.text-content main p {
	font-family: var(--serif-font);
	font-size: 18px;
	line-height: 26px;
	margin: 0 0 10px;
}
