/* Fonts :::::::::::::::::::::::::::::::::::::::: */

@font-face {
	font-family: 'Harrington-Regular';
	src: url('fonts/Harrington-Regular.ttf.woff') format('woff'),
		url('fonts/Harrington-Regular.ttf.svg#Harrington-Regular') format('svg'),
		url('fonts/Harrington-Regular.ttf.eot'),
		url('fonts/Harrington-Regular.ttf.eot?#iefix') format('embedded-opentype'); 
	font-weight: normal;
	font-style: normal;
}

/* CSS Reset :::::::::::::::::::::::::::::::::::::::: */

html, body, div, span, object, iframe, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, 
em, font, img, ins, kbd, q, s, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	background-color: #000000;
	font-family: 'Lora', Georgia, Times, serif;
	font-size: 16px;
	line-height: 1.4;
}
h1 {
	font-family: 'Harrington-Regular', 'Lora', Georgia, Times, serif;
	font-size: 55px;
	font-size: 3.4em;
	color: #250933;
	line-height: 1;
	margin: 0 0 8px 0;
}
h2 {
	font-family: 'Lora', Georgia, Times, serif;
	font-size: 24px;
	font-size: 1.5em;
	line-height: 1;
	margin: 0 0 10px 0;
}
h3 {
	font-family: 'Lora', Georgia, Times, serif;
	font-size: 18px;
	font-size: 1.125em;
	line-height: 1;
	margin: 0 0 10px 0;
	padding: 0;
}
a, img {
	border: none;
}
p {
	margin: 0 0 10px 0;
}
a {
	color: #991566;
	text-decoration: underline;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
a:hover,
a:visited {
	color: #000;
}
strong,
.strong {
	font-weight: 600;
}
em,
.em {
	font-style: italic;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.clear-both {
	clear: both;
	height: 0;
	width: 100%;
	font-size: 0;
	line-height: 0;
}

/* Navigation :::::::::::::::::::::::::::::::::::::::: */

.nav-container {
	position: absolute;
	top: 0;
	left: -374px;
	background: transparent url('../images/img-side-panel.png') left top repeat-y;
	background-size: 457px 276px;
	width: 457px;
	height: 100%;
	margin: 0;
	z-index: 100;
}
body.dl-bar .nav-container {
	background-image: url('../images/img-side-panel-wood-leather.png');
}
body.dl-music .nav-container,
body.dl-contact .nav-container {
	background-image: url('../images/img-side-panel-marble.png');
}
.nav-container:before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: -15px;
	background: -moz-linear-gradient(left,  rgba(66,51,12,1) 0%, rgba(66,51,12,0) 90%);
	background: -webkit-linear-gradient(left,  rgba(66,51,12,1) 0%,rgba(66,51,12,0) 90%);
	background: linear-gradient(to right,  rgba(66,51,12,1) 0%,rgba(66,51,12,0) 90%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#42330c', endColorstr='#0042330c',GradientType=1 );
	width: 0;
	height: 100%;
	pointer-events: none;
}
.nav-container.toggled-on {
	left: -10px;
}
.nav-container.toggled-on:before {
	width: 30px;
}
.nav-container .nav {
	position: relative;
	background-color: rgba(90,70,40,0.05);
	width: 277px;
	width: -webkit-calc(100% - 180px);
	width: -moz-calc(100% - 180px);
	width: calc(100% - 180px);
	margin: 30px 0 0 25px;
	padding: 15px 0 15px 20px;
	border-radius: 10px;
	box-sizing: border-box;
	box-shadow: inset 3px 2px 12px rgba(0,0,0,0.2);
}
.nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.nav li {
	display: block;
	font-family: 'Milonga', 'Lora', Georgia, Times, serif;
	font-size: 24px;
	margin: 0;
	padding: 2px 0 8px 10px;
}
.nav li.subnav {
	font-size: 20px;
	padding: 1px 0 4px 25px;
}
.nav li a {
	color: #333;
	text-decoration: none;
	text-shadow: 1px 1px 2px rgba(220,220,220,0.5);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.nav li a:hover {
	color: #663399;
}
.nav li.current a {
	color: #663399;
}
.nav-container,
.nav-container .logo,
.nav ul,
.nav li {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.menu-gargoyle {
	display: block;
	background: transparent url('../images/img-gargoyle-sconce.png') left top no-repeat;
	background-size: 100% 100%;
	width: 200px;
	height: 384px;
	margin: 20px 0 20px 65px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Navigation Toggle / Bell Cord :::::::::::::::::::::::::::::::::::::::: */

.nav-menu-toggle-container {
	position: absolute;
	top: -20px;
	left: 23px;
	background: transparent url('../images/img-menu-rope.png') 35px top repeat-y;
	background-size: 56px 59px;
	width: 124px;
	height: 120px;
	z-index: 110;
	pointer-events: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.nav-menu-toggle-container:after {
	content: "";
	display: block;
	position: absolute;
	top: 120px;
	left: 0;
	background: transparent url('../images/img-menu-rope-end.png') center top no-repeat;
	background-size: 124px 275px;
	width: 124px;
	height: 275px;
	pointer-events: none;
}
.nav-menu-toggle {
	position: absolute;
	top: 120px;
	left: 0;
	background: transparent url('../images/img-menu-plaque.png') center top no-repeat;
	background-size: 124px 103px;
	width: 124px;
	height: 103px;
	font-size: 0;
	line-height: 0;
	border-radius: 40px;
	z-index: 112;
	cursor: pointer;
	pointer-events: all;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.nav-menu-toggle-container.toggle-over {
	-webkit-animation: menuToggleBounce 0.6s 1;
	-moz-animation: menuToggleBounce 0.6s 1;
	-o-animation: menuToggleBounce 0.6s 1;
	animation: menuToggleBounce 0.6s 1;
}
.nav-menu-toggle-container.toggled-on {
	left: 292px;
}
body.scrolled .nav-container {
}
body.scrolled .nav-container:after {
}
body.scrolled .nav-container .logo {
}
body.scrolled .nav ul {
}
body.scrolled .nav li {
}
body.scrolled .nav li a {
}
@-webkit-keyframes menuToggleBounce {
	0% {
		top: -20px;
	}
	60% {
		top: -15px;
	}
	100% {
		top: -20px;
	}
}
@-moz-keyframes menuToggleBounce {
	0% {
		top: -20px;
	}
	60% {
		top: -15px;
	}
	100% {
		top: -20px;
	}
}
@-o-keyframes menuToggleBounce {
	0% {
		top: -20px;
	}
	60% {
		top: -15px;
	}
	100% {
		top: -20px;
	}
}
@keyframes menuToggleBounce {
	0% {
		top: -20px;
	}
	60% {
		top: -15px;
	}
	100% {
		top: -20px;
	}
}

/* Logo :::::::::::::::::::::::::::::::::::::::: */

.logo-container,
.logo-container:after,
.logo-inner,
.logo-bg,
.logo,
.logo-overlay {
	position: absolute;
	pointer-events: none;
}
.logo-container,
.logo-container:after {
	-webkit-transition: width 1s ease, height 1s ease, background-size 1s ease;
	-moz-transition: width 1s ease, height 1s ease, background-size 1s ease;
	-o-transition: width 1s ease, height 1s ease, background-size 1s ease;
	transition: width 1s ease, height 1s ease, background-size 1s ease;
}
.logo-container {
	top: 6px;
	right: 0;
	width: 593px;
	height: 328px;
	z-index: 200;
}
.logo-container:after {
	content: "";
	display: block;
	top: 0;
	right: 0;
	background: transparent url('../images/img-deadlounge-logo-lamp.png') left top no-repeat;
	background-size: 593px 328px;
	width: 593px;
	height: 328px;
}
.logo-inner {
	top: 48px;
	right: 219px;
	width: 216px;
	height: 218px;
	border-radius: 50%;
	overflow: hidden;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.logo-bg,
.logo,
.logo-overlay {
	top: 0;
	right: 0;
	background-color: transparent;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 216px 218px;
	background-size: 100% 100%;
	width: 216px;
	width: 100%;
	height: 218px;
	height: 100%;
	border-radius: 50%;
}
.logo-bg {
	background-image: url('../images/img-deadlounge-logo-porcelain.png');
}

/* Logos: DL, Retro, Victorian, Polarbeast */

.logo {
	font-size: 0;
	line-height: 0;
	border: none;
	opacity: 0.75;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.logo a {
	display: block;
	width: 100%;
	height: 100%;
}
.logo-container:hover .logo {
	opacity: 1;
}
.logo-dl {
	background-image: url('../images/img-deadlounge-logo-dl.png');
}
.logo-retro {
	background-image: url('../images/img-deadlounge-logo-retro.png');
}
.logo-victorian {
	background-image: url('../images/img-deadlounge-logo-victorian.png');
}
.logo-polarbeast {
	background-image: url('../images/img-deadlounge-logo-polarbeast.png');
}
.logo-container.dl-out .logo-dl {
	top: -50%;
	height: 25%;
	opacity: 0;
}
.logo-container.dl-off .logo-dl {
	top: 100%;
	height: 25%;
	opacity: 0;
}
.logo-container.retro-out .logo-retro {
	top: -50%;
	height: 25%;
	opacity: 0;
}
.logo-container.retro-off .logo-retro {
	top: 100%;
	height: 25%;
	opacity: 0;
}
.logo-container.victorian-out .logo-victorian {
	top: -50%;
	height: 25%;
	opacity: 0;
}
.logo-container.victorian-off .logo-victorian {
	top: 100%;
	height: 25%;
	opacity: 0;
}
.logo-container.polarbeast-out .logo-polarbeast {
	top: -50%;
	height: 20%;
	opacity: 0;
}
.logo-container.polarbeast-off .logo-polarbeast {
	top: 100%;
	height: 20%;
	opacity: 0;
}

/* Logo Overlay/Dome Effect */

.logo-overlay {
	background-image: url('../images/img-deadlounge-logo-dome.png');
	font-size: 0;
	line-height: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	pointer-events: all;
	cursor: pointer;
}
.logo-container:hover .logo-overlay {
	background-color: rgba(250,250,250,0.3);
}
.logo-overlay a {
	display: block;
	width: 100%;
	height: 100%;
}

/* Page Elements :::::::::::::::::::::::::::::::::::::::: */

.page {
	position: relative;
	float: left;
	background: #0f1011 url('../images/bg-wallpaper.png') left top repeat;
	background-color: #000;
	background-size: 520px 500px;
	width: 100%;
	height: auto;
	min-height: 100%;
	margin: 0 auto;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.page.dl-foyer-active {
	background-color: #4c4f55;
}
.page.dl-bar-active {
	background-color: #795f3d;
}
.page.dl-music-active {
	background-color: #694881;
}
.page.dl-your-host-active {
	background-color: #567c3a;
}
.page.dl-diversions-active,
.page.dl-free-things-active {
	background-color: #9d2b5b;
}
.page.dl-contact-active {
	background-color: #333d6f;
}

/* Content Elements :::::::::::::::::::::::::::::::::::::::: */

.content-container {
	position: relative;
	background-color: rgba(255,255,255,0.6);
	background: -moz-linear-gradient(left,  rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.8) 100%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0.75) 0%,rgba(255,255,255,0.55) 50%,rgba(255,255,255,0.8) 100%);
	background: linear-gradient(to right,  rgba(255,255,255,0.75) 0%,rgba(255,255,255,0.55) 50%,rgba(255,255,255,0.8) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#94ffffff', endColorstr='#80ffffff',GradientType=1 );
	width: auto;
	font-size: 18px;
	font-size: 1.125em;
	color: #180018;
	margin: 160px 0 0 90px;
	padding: 2vw 4vw 4vw 2.6vw;
	border: 4px solid rgba(0,0,0,0.7);
	border-right: none;
	border-radius: 30px 0 0 30px;
	box-sizing: border-box;
	box-shadow: inset 1px 1px 20px rgba(24,24,24,0.7);
}
.content-container:before {
	content: "";
	display: inline;
	float: right;
	width: 560px;
	width: -moz-calc(560px - 6vw);
	width: -webkit-calc(560px - 6vw);
	width: calc(560px - 6vw);
	height: 155px;
	height: -moz-calc(155px - 2vw);
	height: -webkit-calc(155px - 2vw);
	height: calc(155px - 2vw);
	-webkit-transition: width 1s ease, height 1s ease;
	-moz-transition: width 1s ease, height 1s ease;
	-o-transition: width 1s ease, height 1s ease;
	transition: width 1s ease, height 1s ease;
}
.content {
}
.content-title {
}
.content-subtitle {
}
.content ol li,
.content ul li {
	margin: 0 0 0 2vw;
}
.disclaimer {
	font-size: 0.875em;
}
.signature {
	font-family: 'Milonga', 'Lora', Georgia, Times, serif;
	font-weight: 600;
	font-size: 36px;
	color: #330045;
	line-height: 1;
	text-shadow: 1px 1px 3px rgba(66,66,66,0.3);
}
.contact-email {
	text-align: center;
	padding: 1vw 4vw 3vw 4vw;
}
.wall-candle {
	float: left;
	width: 173px;
	height: 500px;
	-webkit-transition: width 0.6s ease, height 0.6s ease;
	-moz-transition: width 0.6s ease, height 0.6s ease;
	-o-transition: width 0.6s ease, height 0.6s ease;
	transition: width 0.6s ease, height 0.6s ease;
}
.wall-candle.desktop {
	display: inline-block;
}
.wall-candle.phone {
	display: none;
}
.wall-candle img {
	width: 100%;
	height: 100%;
}
.polarbeast {
	display: inline-block;
	float: right;
	width: 518px;
	height: 658px;
	width: 450px;
	height: 572px;
	-webkit-transition: width 0.6s ease, height 0.6s ease;
	-moz-transition: width 0.6s ease, height 0.6s ease;
	-o-transition: width 0.6s ease, height 0.6s ease;
	transition: width 0.6s ease, height 0.6s ease;
}
.map-frame-roses {
	display: block;
	margin: 20px auto 0 auto;
}
.painting-library {
	display: inline-block;
	float: right;
	width: 35%;
	height: auto;
	max-width: 444px;
	max-height: 770px;
	margin: 20px 0 10px 4px;
	clear: right;
	-webkit-transition: width 0.6s ease, height 0.6s ease;
	-moz-transition: width 0.6s ease, height 0.6s ease;
	-o-transition: width 0.6s ease, height 0.6s ease;
	transition: width 0.6s ease, height 0.6s ease;
}
.gothcode {
	color: #454551;
	font-style: italic;
}
.dl-contact .lamp {
	float: right;
	width: 300px;
	height: 452px;
	margin: 20px 0 20px 0;
	clear: right;
	-webkit-transition: width 0.6s ease, height 0.6s ease;
	-moz-transition: width 0.6s ease, height 0.6s ease;
	-o-transition: width 0.6s ease, height 0.6s ease;
	transition: width 0.6s ease, height 0.6s ease;
}
.dl-contact .lamp.desktop {
	display: inline-block;
}
.dl-contact .lamp.phone {
	display: none;
}

/* Specific Pages :::::::::::::::::::::::::::::::::::::::: */

.page-dl-diversions {
}
.diversions-links {
	display: inline-block;
	float: left;
	width: 60%;
	margin: 20px 0 20px 0;
}
.diversions-links ul {
	list-style-type: none;
}
.content .diversions-links li {
	background: #89878b url('../images/bg-diversions-shelf.jpg') left top no-repeat;
	background-size: cover;
	margin: 0 0 2vw 0;
	padding: 8px 10px 10px 12px;
	border-radius: 10px;
	box-shadow: inset 1px 1px 4px rgba(0,0,0,0.4);
	box-sizing: border-box;
}
.diversions-links h4 {
	font-family: 'Milonga', 'Lora', Georgia, Times, serif;
	font-size: 28px;
	font-size: 1.75em;
	font-weight: 300;
	letter-spacing: -0.5px;
	text-shadow: 1px 1px 3px rgba(255,255,255,0.8);
	margin: 0 0 4px 0;
}
.diversions-links h4 a {
	color: #331566;
	text-decoration: none;
}
.diversions-links h4 a:hover {
	color: #663399;
	border-bottom: 1px dotted #663399;
}
.diversions-links p {
	font-size: 1em;
	text-shadow: 1px 1px 3px rgba(255,255,255,0.8);
	margin: 0;
}
.wallpaper-links {
	background-color: rgba(255,255,255,0.3);
	width: 100%;
	padding: 15px 10px 18px 10px;
	border-radius: 30px;
	border: 3px solid #333333;
	box-sizing: border-box;
}
.wallpaper-link {
	display: inline-block;
	width: 28.5%;
	margin: 0 2% 0 2%;
	padding: 15px 15px 10px 15px;
	border-radius: 6px;
	box-shadow: inset 1px 1px 5px rgba(0,0,0,0.4);
	box-sizing: border-box;
	vertical-align: top;
}
.wallpaper-link .thumb {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto 2px auto;
	clear: both;
}
.wallpaper-link .thumb:hover img {
	box-shadow: 3px 3px 8px rgba(255,255,180,0.8), -3px -3px 8px rgba(255,255,180,0.8);
}
.wallpaper-link .thumb img {
	width: 100%;
	height: auto;
}
.wallpaper-link .description p {
	font-size: 0.875em;
}
.wallpaper-link .select {
	text-align: right;
}
.wallpaper-link select {
	display: inline-block;
	background-color: #f0f0e6;
	height: 32px;
	font-family: 'Lora', Georgia, Times, serif;
	font-size: 16px;
	margin: 0 4px 10px 0;
	border-radius: 6px;
	border: 1px solid #424233;
	box-shadow: inset 0 -10px 20px rgba(0,0,0,0.2), 1px 1px 3px rgba(0,0,0,0.3);
}
.wallpaper-link select:focus {
	outline: none;
}
.wallpaper-link button {
	display: inline-block;
	background-color: #e8e0a8;
	height: 32px;
	font-family: 'Lora', Georgia, Times, serif;
	font-size: 16px;
	margin: 0 0 10px 0;
	padding: 4px 10px 4px 10px;
	border-radius: 6px;
	border: 1px solid #424233;
	box-shadow: inset 0 -10px 20px rgba(0,0,0,0.2), 1px 1px 3px rgba(0,0,0,0.3);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
.wallpaper-link button.disabled {
	background-color: #e6e6e6;
	opacity: 0.6;
	pointer-events: none;
}
.wallpaper-link button:focus {
	outline: none;
}
.wallpaper-link button span {
	display: inline-block;
	min-width: 75px;
}
.page-dl-the-old-lounge .gallery {
	text-align: center;
}
.page-dl-the-old-lounge .gallery .thumb {
	display: inline-block;
	position: relative;
	width: 200px;
	height: 260px;
	margin: 4px;
	box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
	border: 8px solid rgba(255,255,255,0.2);
	border-radius: 20px;
	overflow: hidden;
}
.page-dl-the-old-lounge .gallery .thumb:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: inset 0 0 30px rgba(153,66,153,0.8);
}

/* Footer :::::::::::::::::::::::::::::::::::::::: */

.footer-container {
	position: relative;
	background: #242424 url('../images/img-gargoyle-sitting.png') right 10px no-repeat;
	background-size: 100px 100px;
	width: 100%;
	height: 100px;
	color: #ffffff;
	text-align: center;
	margin: 30px 0 0 0;
	padding: 20px 0 20px 0;
	box-shadow: 0 -5px 20px rgba(0,0,0,0.6);
	clear: both;
	box-sizing: border-box;
}
.footer-container .copyright {
}
.footer-container ul {
	list-style-type: none;
}
.footer-container a {
	color: #ffffff;
	text-decoration: none;
	border-bottom: 1px dotted rgba(255,255,255,0.6);
}

/* Modal :::::::::::::::::::::::::::::::::::::::: */

.modal-overlay,
.modal-content {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	z-index: 200;
	overflow: hidden;
}
.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.7);
	width: 100%;
	height: 100%;
	opacity: 0;
}
.modal-content {
	position: relative;
	width: 0;
	height: 0;
	margin: 0 0 0 50%;
	padding: 0;
	box-sizing: border-box;
	overflow: hidden;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.modal .close {
	position: absolute;
	top: 10px;
	right: 14px;
	background-color: #331533;
	width: 30px;
	height: 30px;
	font-family: 'Harrington-Regular', 'Lora', Georgia, Times, serif;
	font-size: 24px;
	color: #ffffff;
	text-align: center;
	line-height: 1;
	padding: 6px 0 0 2px;
	border-radius: 50%;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
	cursor: pointer;
}
.modal.toggled-on {
	height: 100%;
	overflow: auto;
}
.modal.toggled-on .modal-overlay {
	position: fixed;
	opacity: 1;
}
.modal.toggled-on .modal-content.active {
	width: 80%;
	height: auto;
	min-height: 100px;
	margin: 8% 0 20px 50%;
	padding: 30px 20px 30px 20px;
	opacity: 1;
}
body.dl-bar .modal-content {
	background: #e6e6e6;
}

/* Media Queries :::::::::::::::::::::::::::::::::::::::: */

@media only screen and (max-width: 1600px) {
	.page {
		background-size: 312px 300px;
	}
	.polarbeast {
		width: 518px;
		height: 658px;
	}
}

@media only screen and (max-width: 1360px) {
	.polarbeast {
		width: 450px;
		height: 572px;
	}
}

@media only screen and (max-width: 1240px) {
	.logo-container,
	.logo-container:after {
		width: 445px;
		height: 246px;
	}
	.logo-container:after {
		background-size: 445px 246px;
	}
	.logo-inner {
		top: 36px;
		right: 165px;
		width: 163px;
		height: 164px;
	}
	.nav-container.toggled-on {
		left: -40px;
	}
	.nav-container .nav {
		width: 252px;
		width: -webkit-calc(100% - 205px);
		width: -moz-calc(100% - 205px);
		width: calc(100% - 205px);
		margin: 30px 0 0 55px;
		padding: 15px 0 15px 20px;
	}
	.nav li {
		font-size: 20px;
		padding: 2px 0 6px 8px;
	}
	.nav li.subnav {
		font-size: 17px;
		padding: 1px 0 3px 20px;
	}
	.nav-menu-toggle-container.toggled-on {
		left: 262px;
	}
	.menu-gargoyle {
		width: 180px;
		height: 346px;
		margin: 20px 0 20px 90px;
	}
	.content-container {
		margin: 120px 0 0 100px;
		padding: 2.4vw 4vw 4vw 3vw;
	}
	.content-container:before {
		width: 380px;
		width: -moz-calc(380px - 6vw);
		width: -webkit-calc(380px - 6vw);
		width: calc(380px - 6vw);
		height: 90px;
	}
}

@media only screen and (max-width: 1110px) {
	.content-container {
		background-color: rgba(255,255,255,0.6);
		font-size: 16px;
		font-size: 1em;
	}
	.wall-candle {
		width: 139px;
		height: 400px;
	}
}

@media only screen and (max-width: 1024px) {
	.nav-menu-toggle-container {
		height: 70px;
	}
	.nav-menu-toggle-container:after {
		top: 70px;
	}
	.nav-menu-toggle {
		top: 70px;
	}
	.polarbeast {
		width: 350px;
		height: 445px;
	}
	.wallpaper-link {
		display: inline-block;
		width: 45%;
	}
}

@media only screen and (max-width: 840px) {
	.logo-container,
	.logo-container:after {
		width: 297px;
		height: 164px;
	}
	.logo-container:after {
		background-size: 297px 164px;
	}
	.logo-inner {
		top: 24px;
		right: 110px;
		width: 109px;
		height: 109px;
	}
	.content-container:before {
		display: none;
		width: 0;
		height: 0;
	}
	.diversions-links h4 {
		font-size: 24px;
		font-size: 1.5em;
	}
}

@media only screen and (max-width: 768px) {
	.content-container {
		margin: 100px 0 0 100px;
		padding: 2.6vw 4vw 4vw 3vw;
	}
	.wall-candle {
		float: right;
	}
	.polarbeast {
		width: 280px;
		height: 356px;
	}
	.dl-contact .lamp {
		width: 200px;
		height: 301px;
	}
	.diversions-links {
		display: block;
		float: none;
		width: auto;
	}
	.painting-library {
	    display: block;
	    float: none;
	    width: auto;
	    height: auto;
	    max-width: 100%;
	    max-height: 700px;
	    margin: 20px auto 10px auto;
	    clear: both;
	}
	.modal-content {
		margin: 20px auto 20px auto;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
	}
	.modal.toggled-on .modal-content.active {
		width: -moz-calc(100% - 20px);
		width: -webkit-calc(100% - 20px);
		width: calc(100% - 20px);
	}
	.footer-container {
		background-position: right bottom;
		height: auto;
		padding: 20px 80px 20px 60px;
	}
}

@media only screen and (max-width: 660px) {
	.page {
		background-size: 260px 250px;
	}
	.nav-container {
		left: -388px;
	}
	.nav-container.toggled-on {
		left: -60px;
	}
	.nav-container .nav {
		width: 237px;
		width: -webkit-calc(100% - 220px);
		width: -moz-calc(100% - 220px);
		width: calc(100% - 220px);
		margin: 108px 0 0 70px;
		padding: 15px 0 15px 20px;
	}
	.nav-menu-toggle-container,
	.nav-menu-toggle-container.toggled-on {
		top: 0;
		left: 0;
		height: 113px;
		background: none;
	}
	.nav-menu-toggle-container:after {
		display: none;
		background: none;
	}
	.nav-menu-toggle {
		top: 5px;
		left: 5px;
	}
	.nav-menu-toggle-container.toggle-over {
		-webkit-animation: none;
		-moz-animation: none;
		-o-animation: none;
		animation: none;
	}
	.menu-gargoyle {
		margin: 20px 0 20px 102px;
	}
	.content-container {
		margin: 80px 0 0 40px;
		padding: 10vw 4vw 4vw 3vw;
	}
	.dl-contact .lamp.desktop {
		display: none;
	}
	.dl-contact .lamp.phone {
		display: block;
		float: none;
		width: 280px;
		height: 422px;
		margin: 20px auto 20px auto;
	}
	.polarbeast {
		display: block;
		float: none;
		width: 280px;
		height: 356px;
		margin: 0 auto;
		padding: 0;
	}
	.wallpaper-link {
		display: block;
		width: auto;
	}
}

@media only screen and (max-width: 480px) {
	.nav-container {
		left: -438px;
	}
	.nav-menu-toggle {
		background-size: 100px 83px;
		width: 100px;
		height: 83px;
	}
	.content-container {
		margin: 120px 0 0 0;
		padding: 9vw 3vw 4vw 3vw;
		border-left: none;
		border-radius: 0;
	}
	.wall-candle.desktop {
		display: none;
	}
	.wall-candle.phone {
		display: block;
		float: none;
		margin: 20px auto 20px auto;
	}
	.map-frame-roses {
		max-width: 100%;
		height: auto;
	}
	.footer-container {
		background-image: none;
	}
}