/**
 * ------------------------------------------------
 * FVD General Stylesheet
 * Provides global styles for theme
 * Should be called before module specific sheets.
 * ------------------------------------------------
 */

/**
 * Global Style
 * The default base on which all other styles adhere or deviate from
 * Font size / line height are by default 0 to prevent whitespace influence
 * All elements that have copy need to specify a font-size / line-height
 */

/* Box sizing */
* {
	box-sizing: border-box;
}


html, body {
	border: 0;
	padding: 0;
	margin: 0;
	line-height: 0;
	font-size: 0;
	font-family: sans-serif;
	font-style: normal;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	background-color: #ebebe8;
	color: #ff0000;
	overflow-x: hidden;
	background-color: #ebebe8;
}

a {
	text-decoration: none;
}

/* ===== Typography ===== */

.h-type h1,
.h-type .h1 {
	font-family: 'GoudyOldSty';
	font-size: 40px;
	font-weight: 300;
	color: #000000;
	letter-spacing: 0.14px;
	line-height: 42px;
	margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
	.h-type h1,
	.h-type .h1 {
		font-family: 'GoudyOldSty';
		font-size: 32px;
		font-weight: 300;
		color: #000000;
		letter-spacing: 0.14px;
		line-height: 36px;
	}
}

.h-type h2, 
.h-type .h2 {
	font-family: 'GoudyOldSty';
	font-size: 30px;
	font-weight: 300;
	color: #000000;
	letter-spacing: 0.12px;
	line-height: 36px;
}

.h-type h3, 
.h-type .h3 {
	font-family: 'GoudyOldSty';
	font-size: 20px;
	font-weight: 700;
	color: #000000;
	letter-spacing: 2px;
	line-height: 26px;
	text-transform: uppercase;
}

.h-type h4,
.h-type .h4 {
	font-family: 'Roboto Condensed';
	font-size: 18px;
	font-weight: 700;
	color: #000000;
	letter-spacing: 1.3px;
	line-height: 20px;
}

.h-type h5,
.h-type .h5 {
	font-family: 'GoudyOldSty';
	font-size: 22px;
	font-weight: 300;
	font-variant: small-caps;
	color: #000000;
	letter-spacing: 0.2px;
	line-height: 18px;
}

.h-type p {
	font-family: 'GoudyOldSty';
	font-size: 18px;
	font-weight: 300;
	color: #595350;
	letter-spacing: 0.17px;
	line-height: 28px;
}

@media screen and (max-width: 767px) {
	.h-type p {
		font-family: 'GoudyOldSty';
		font-size: 16px;
		font-weight: 300;
		color: #595350;
		letter-spacing: 0.17px;
		line-height: 20px;
	}
}

.h-type p a {
	color: #ce3c2c;
}

/* ===== Typography Helpers ===== */

/*
.h-type .motif:before {
    content: '';
    display: inline-block;
    height: 1px;
    width: 32px;
    margin-right: 12px;
    vertical-align: middle;
    background-color: var(--brand-color);
}

.h-type .motif:after {
    content: '';
    display: inline-block;
    height: 1px;
    width: 32px;
    margin-left: 12px;
    vertical-align: middle;
    background-color: var(--brand-color);
}
*/

.h-type .motif::before {
    background-color: var(--brand-color);
    content: "";
    display: inline-block;
    height: 1px;
    left: 0;
    margin-right: 12px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-37px);
            transform: translateX(-37px);
    width: 32px;
}

.h-type .motif::after {
    background-color: var(--brand-color);
    content: "";
    display: inline-block;
    height: 1px;
    margin-left: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateX(37px);
            transform: translateX(37px);
    vertical-align: middle;
    width: 32px;
}

.h-type .motif {
    display: inline-block;
    margin: 0 auto;
    position: relative;
    width: auto;
}

/* ===== Wrappers and Containers ===== */

main {
	margin-left: 64px;
}

@media screen and (max-width: 831px) {
	main {
		margin-left: 0;
		margin-top: 64px;
	}
}

main.zaponauta {
	margin-top: 0;
	margin-left: 0;
}

/* ===== Global Elements ===== */

.button{
    padding: 16px 55px;
    text-transform: uppercase;
    background-repeat: repeat;
    background-position: center;
    display: inline-block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
	font-weight: 700;
    letter-spacing: 1.25px;
    line-height: 18px;
    text-transform: uppercase;
    text-shadow: 0 2px 1px #CB3929;
	text-align: center;
}

.button.red{
    background-color: #cb3929;
    background-image: url('/assets/ui/btn_red.jpg');
    color: #ffffff;
}

.zaponauta .button.red{
	background-color: #d84016;
	background-image: url('/assets/ui/btn_orange.jpg');
	color: #ffffff;
}

/* ===== Navigation ===== */

header {
}

header .main-logo {
	display: block;
	width: 156px;
	height: 24px;
	position: absolute;
	right: 24px;
	top: 24px;
	// background-image: url('/assets/ui/wahaka-logo.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 3;
}

.page--map header .main-logo {
	/* we have a separate logo on the map page, due to positioning */
	display: none;
}

.main-shop-btn {
	position: absolute;
	z-index: 100;
	top: 10px;
	left: 75px;
}

@media screen and (max-width: 831px) {
	.main-shop-btn {
		display: none;
	}
	header .main-logo {
		display: none;
	}
}

header .bar {
	height: 100vh;
	width: 64px;
	position: fixed;
	left: 0;
	top: 0;
	background-color: #000000;
	cursor: pointer;
	z-index: 5;
}

@media screen and (max-width: 831px) {
	header .bar {
		height: 64px;
		width: 100vw;
	}
}

header .bar .logo {
	width: 100%;
    height: 100%;
    position: absolute;
	left: 0;
	top: 0;
    -webkit-transition: opacity 500ms ease-out 0s;
    transition: opacity 500ms ease-out 0s;
}

header .bar .logo:before {
	content: '';
	display: block;
	width: 56px;
	height: 56px;
	position: absolute;
	left: 50%;
	top: -webkit-calc(50% - 50px);
	top: calc(50% - 50px);
	-webkit-transform: translate(-50%, -50%);
		    transform: translate(-50%, -50%);
	background-color: #000000;
	background-image: url('/assets/ui/icon-nav.svg');
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

@media screen and (max-width: 831px) {
	header .bar .logo {
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		-webkit-transform: none;
		        transform: none;
		background-image: none;
	}
	
	header .bar .logo:before {
		content: '';
		display: block;
		width: 42px;
		height: 42px;
		position: absolute;
		left: 16px;
		top: 50%;
		-webkit-transform: translate(0, -50%);
		        transform: translate(0, -50%);
		-webkit-transition: opacity 500ms ease-out;
		transition: opacity 500ms ease-out;
		opacity: 1;
	}
	
	header .bar .mark {
		content: '';
		display: block;
		width: 126px;
		height: 42px;
		position: absolute;
		left: 50%;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		        transform: translate(-50%, -50%);
		background-image: url('/assets/ui/wahaka-logo-nav-responsive.png');
		background-size: 100% 100%;
		background-position: center center;
		background-repeat: no-repeat;
	}
}



/* Hiding logo on desktop */
header.show .bar .logo {
	opacity: 0;	
}

@media screen and (max-width: 831px) {
	header.show .bar .logo{
		opacity: 1;
	}
	
	header.show .bar .logo:before {
		opacity: 0;	
	}
	
}



header .bar .close {
	width: 32px;
	height: 32px;
	position: absolute;
	left: 16px;
	top: -webkit-calc(50% - 50px);
	top: calc(50% - 50px);
	cursor: pointer;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
}

@media screen and (max-width: 831px) {
	header .bar .close {
		left: 21px;
		top: 16px;
		-webkit-transform: translate(0, 0);
		        transform: translate(0, 0);
	}
}

header .bar .close:before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform-origin: 50% 50%;
	        transform-origin: 50% 50%;
	-webkit-transform: translate(0, -50%) rotate(45deg);
	        transform: translate(0, -50%) rotate(45deg);
	background-color: #ffffff;
}

header .bar .close:after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform-origin: 50% 50%;
	        transform-origin: 50% 50%;
	-webkit-transform: translate(0, -50%) rotate(-45deg);
	        transform: translate(0, -50%) rotate(-45deg);
	background-color: #ffffff;
}

header .menu {
	height: 100vh;
	width: 768px;
	position: fixed;
	left: 0;
	top: 0;
	-webkit-transform: translate(-100%, 0);
	        transform: translate(-100%, 0);
	background-color: #000000;
	-webkit-transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
	transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
	transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
	transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s, -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s; /* easeOutCubic */
	overflow: hidden;
	z-index: 4;
}

@media screen and (max-width: 831px) {
	header .menu {
		width: 100vw;
		height: 100vh;
		-webkit-transform: translate(0, -100%);
		        transform: translate(0, -100%);
	}
}

header.show .menu {
	-webkit-transform: translate(0, 0);
	        transform: translate(0, 0);
}


header .menu .logo {
	display: block;
	width: 156px;
	height: 52px;
	position: absolute;
	top: 64px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	background-image: url('/assets/ui/wahaka-logo-nav.png');
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no repeat;
}

@media screen and (max-width: 831px) {
	header .menu .logo {
		top: 16px;
		background-image: url('/assets/ui/wahaka-logo-nav-responsive.png');
		display: none;
	}
}

header .menu .items {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
	height: 100%;
	padding: 128px 64px;
}

@media screen and (max-width: 831px) {
	header .menu .items {
		padding: 64px 32px;
	}
}

header .menu .items .items-wrapper {
	position: relative;
}

@media screen and (max-width: 831px) {
	header .menu .items .items-wrapper {
		top: -20px;
	}
}

header .menu .items .item {
	text-align: center;
	padding: 4px 0;
}

@media screen and (max-width: 831px) {
	header .menu .items .item {
		padding: 6px 0;
	}
}

header .menu .items .item a {
	color: #ffffff;
}

header .menu .items .extra {
	width: 100%;
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	font-family: 'GoudyOldSty';
	font-size: 22px;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0.5px;
	line-height: 42px;
	text-align: center;
}

header .menu .items .extra a {
	color: #8B8B8B;
}

header .menu .lang {
	width: 100%;
	position: absolute;
	left: 50%;
	bottom: 92px;
	-webkit-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	font-family: 'GoudyOldSty';
	font-size: 22px;
	font-weight: 300;
	letter-spacing: 0.5px;
	line-height: 18px;
	text-align: center;
}

header .menu .lang a {
	color: #8B8B8B;
}

header .background {
	width: 100vw;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	-webkit-transform: translate(-100%, 0);
	        transform: translate(-100%, 0);
	-webkit-transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.0s;
	transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.0s;
	transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.0s;
	transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.0s, -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.0s; /* easeOutCubic */
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 4;
}

header.resized .background {
	-webkit-transform: translate(-100%, 0);
	        transform: translate(-100%, 0);
	-webkit-transition: -webkit-transform 0.0s linear 0.0s;
	transition: -webkit-transform 0.0s linear 0.0s;
	transition: transform 0.0s linear 0.0s;
	transition: transform 0.0s linear 0.0s, -webkit-transform 0.0s linear 0.0s;
}

header.show .background {
	-webkit-transform: translate(0, 0);
	        transform: translate(0, 0);
}

@media screen and (max-width: 831px) {
	header.show .background {
		display: none;
	}
}

header .data-background {
	display: none;
}

/* ===== Footer ===== */

footer {
	position: relative;
	margin-left: 64px;
	background-color: #202020;
	background-image: url('/assets/ui/wahaka-footer-mark.png');
	background-size: 245px 300px;
	background-position: 100% 100%;
	background-repeat: no-repeat;
	overflow: hidden;
	z-index: 2; /* Allows the footer to overlay the homepage's under-the-cover effect. */
}

footer.zaponauta {
	position: relative;
	margin-left: 64px;
	background-color: #2A1F19;
	background-image: url('/assets/ui/zaponauta-footer-mark.png');
	background-size: 332px 377px;
	background-position: calc(100% + 110px) calc(100% + 68px);
	background-repeat: no-repeat;
	overflow: hidden;
	z-index: 2; /* Allows the footer to overlay the homepage's under-the-cover effect. */
}

@media screen and (max-width: 831px) {
	footer {
		margin-left: 0;
		background-image: none;
	}
}

footer.zaponauta {
	margin-left: 0
}

footer .cta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
	height: 192px;
	padding: 0 32px;
	position: relative;
	font-family: 'GoudyOldSty';
	font-size: 36px;
	font-weight: 300;
	color: #000000;
	letter-spacing: 0.14px;
	line-height: 42px;
	text-align: center;
	background-image: url('/assets/ui/wahaka-icon-locate.png'), url('/assets/ui/wahaka-ftr_orange.jpg');
	background-position: -webkit-calc(50% - 300px) 50%, center;
	background-position: calc(50% - 300px) 50%, center;
	background-size: 225px 192px, auto;
	background-repeat: no-repeat, repeat;
}

@media screen and (max-width: 767px) {
	footer .cta {
		background-position: -16px 50%, center;
	}
}

footer.zaponauta .cta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 192px;
	padding: 0 32px;
	position: relative;
	font-family: 'GoudyOldSty';
	font-size: 36px;
	font-weight: 300;
	color: #000000;
	letter-spacing: 0.14px;
	line-height: 42px;
	text-align: center;
	background-image: url('/assets/ui/zaponauta-icon-locate.png'), url('/assets/ui/zaponauta-ftr_orange.png');
	background-position: -webkit-calc(50% - 300px) calc(50% + 15px), center;
	background-position: calc(50% - 300px) calc(50% + 15px), center;
	background-size: 225px 192px, auto;
	background-repeat: no-repeat, repeat;
}

@media screen and (max-width: 767px) {
	footer.zaponauta .cta {
		background-position: -16px calc(50% + 15px), center;
	}
}

footer .logo {
	position: relative;
	margin: 32px 0;
}

footer .logo:before {
	content: '';
	height: 1px;
	position: absolute;
	left: 64px;
	right: 140px;
	bottom: 9px;
	background-color: #595350;
}

footer.zaponauta .logo:before {
	background-color: #cf9a2b;
}

@media screen and (max-width: 767px) {
	footer .logo:before {
		right: 64px;
	}
}

footer .logo:after {
	content: '';
	display: block;
	width: 156px;
	height: 50px;
	position: relative;
	margin: auto;
	background-image: url('/assets/ui/wahaka-logo-ftr.png');
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

footer.zaponauta .logo:after {
	width: 250px;
	height: 80px;
	top: 25px;
	background-image: url('/assets/ui/zaponauta-logo-ftr.png');
	background-color: #2A1F19;
	border-right: 30px solid transparent;
	border-left: 30px solid transparent;
}

footer .links {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-bottom: 64px;
}

@media screen and (max-width: 767px) {
	footer .links {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

footer .links .link-column {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 0px;
	    -ms-flex: 1 0 0px;
	        flex: 1 0 0px;
}

@media screen and (max-width: 767px) {
	footer .links .link-column {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 0px;
		    -ms-flex: 0 0 0px;
		        flex: 0 0 0px;
	}
}

footer .links .link-column .link {
	text-align: center;
}

footer .links .link-column .link a {
	font-family: 'Roboto Condensed';
	font-size: 15px;
	font-weight: 700;
	color: #FFFFFF;
	letter-spacing: 0.2px;
	line-height: 36px;
	text-transform: uppercase;
	text-align: center;
}

footer .copyright {
	width: 100%;
	margin-bottom: 16px;
	line-height: 24px;
	font-size: 16px;
	font-family: 'GoudyOldSty';
	font-weight: 400;
	letter-spacing: 0.15px;
	text-align: center;
	color: #737373;
}

footer .copyright a {
	color: inherit;
}




/* ===== Featured Stories Section ===== */

.featured-stories .header {
	text-align: center;
	padding: 160px 0 80px 0;
}

.featured-stories .row,
.featured-stories .col {
	padding: 16px;
}

.featured-stories .story-preview {
	display: block;
	width: 100%;
	position: relative;
	margin-bottom: 70px;
}

.featured-stories .story-preview .background {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.featured-stories .story-preview .story-title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.featured-stories .story-preview .story-title .title-wrapper {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.featured-stories .story-preview .story-title .title {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 0px;
	    -ms-flex: 1 0 0px;
	        flex: 1 0 0px;
	padding-right: 16px;
}

.featured-stories .story-preview .story-title .cta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	-webkit-align-self: stretch;
	    -ms-flex-item-align: stretch;
	        align-self: stretch;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	position: relative;
	padding-left: 32px;
	line-height: 18px;
	font-size: 16px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	letter-spacing: 1.25px;
	text-transform: uppercase;
	-webkit-transition: color 0.2s 0.0s linear;
	transition: color 0.2s 0.0s linear;
}

.featured-stories .story-preview.small:hover .story-title .cta,
.featured-stories .story-preview.large:hover .story-title .cta {
	color: #ce3c2c;
}

.featured-stories .story-preview .story-title .cta:before {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
}

.featured-stories .story-preview.small .background {
	padding-top: 56.25%;
}

.featured-stories .story-preview.small .story-title .title-wrapper {
	padding: 16px 8px;
}

.featured-stories .story-preview.small .story-title .title {
	color: #000000;
}

.featured-stories .story-preview.small .story-title .cta {
	color: #000000;
}

.featured-stories .story-preview.small .story-title .cta:before {
	background-color: var(--brand-color);
}

@media screen and (max-width: 599px) {
	.featured-stories .story-preview .story-title .cta {
		display: none;
	}
}

.featured-stories .story-preview.large {
	width: 100%;
	padding-top: 56.25%;
}

.featured-stories .story-preview.large .background {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.featured-stories .story-preview.large .story-title {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	            -ms-grid-row-align: flex-end;
	        align-items: flex-end;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.2) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.2) 100%);
}

.featured-stories .story-preview.large .story-title .title-wrapper {
	padding: 24px 32px 24px 24px;
}

.featured-stories .story-preview.large .story-title .title {
	color: #ffffff;
}

.featured-stories .story-preview.large .story-title .cta {
	color: #ffffff;
}

.featured-stories .story-preview.large .story-title .cta:before {
	background-color: #ffffff;
}

@media screen and (max-width: 1439px) {
	.featured-stories .story-preview.large {
		padding-top: 0;
	}
	
	.featured-stories .story-preview.large .background {
		width: 100%;
		height: auto;
		padding-top: 56.25%;
		position: relative;
	}
	
	.featured-stories .story-preview.large .story-title {
		position: relative;
		width: auto;
		height: auto;
		-webkit-box-align: unset;
		-webkit-align-items: unset;
		    -ms-flex-align: unset;
		            -ms-grid-row-align: unset;
		        align-items: unset;
		background: none;
	}
	
	.featured-stories .story-preview.large .story-title .title-wrapper {
		padding: 16px 8px;
	}
	
	.featured-stories .story-preview.large .story-title .title {
		color: #000000;
	}
	
	.featured-stories .story-preview.large .story-title .cta {
		color: #000000;
	}
	
	.featured-stories .story-preview.large .story-title .cta:before {
		background-color: var(--brand-color);
	}
}



/* ===== Featured Cocktails Section ===== */

.featured-cocktails {
	padding-bottom: 128px;
}

.featured-cocktails .header {
	text-align: center;
	padding: 70px 0 40px 0;
}

.featured-cocktails .cocktail {
	display: block;
	margin-bottom: 32px;
	overflow: hidden;
}

.featured-cocktails .cocktail .thumbnail {
	padding-top: 100%;
	position: relative;
	overflow: hidden;
}

.featured-cocktails .cocktail .thumbnail .image {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.featured-cocktails .cocktail .title {
	width: 100%;
	height: 120px;
	padding: 20px;
	border: 1px solid var(--brand-color);
	border-top-width: 0px;
	line-height: 20px;
	font-size: 18px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	letter-spacing: 1.25px;
	text-transform: uppercase;
	text-align: center;
	color: #000000;
	background-color: #ffffff;
}



/* ===== Age Verification Element ===== */

.age-verification-data {
	display: none;
}

.age-gate {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100vw;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 6;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.age-gate .logo {
	width: 156px;
	height: 52px;
	position: absolute;
	right: 16px;
	top: 16px;
	background-image: url('/assets/ui/wahaka-logo-nav-responsive.png');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}

.zaponauta .age-gate .logo {
	background-image: url('/assets/ui/zaponauta-logo-white.png')
}

.age-gate .h1,
.age-gate p {
	padding: 0 16px;
	text-align: center;
	color: #ffffff;
}

.age-gate .ctas .cta {
	margin: 0 8px;
	cursor: pointer;
}

.age-gate .denied {
	display: none;
}

.age-gate.denied .denied {
	display: block;
}

.age-gate.denied .header,
.age-gate.denied .copy,
.age-gate.denied .ctas {
	display: none;
}
