/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
	-webkit-font-smoothing: antialiased;
}

*, *:before, *:after { 
  -webkit-box-sizing: border-box; 
  box-sizing: border-box;
 }
 
:focus {
    outline: 0!important;
}

body {
	line-height: 1;
	margin: 0;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
    -webkit-transition-delay: 9999s;
}

@import url("https://fast.fonts.net/lt/1.css?apiType=css&c=9e649c17-8b1b-4040-8764-8926b9975ac3&fontids=1564433");
@font-face{
    font-family:"Optima";
    src:url("/css/fonts/1564433/faef1464-e833-43ac-a2ee-7a4f5f3ab909.eot?#iefix");
    src:url("/css/fonts/1564433/faef1464-e833-43ac-a2ee-7a4f5f3ab909.eot?#iefix") format("eot"),url("/css/fonts/1564433/776a385c-3d8b-4237-8d14-382015d9ff12.woff2") format("woff2"),url("/css/fonts/1564433/b72e728e-eac1-4261-ac86-579fa6ae4a0b.woff") format("woff"),url("/css/fonts/1564433/7d64c37c-83dc-4450-8781-17b619b16935.ttf") format("truetype");
    font-weight: 400;
	font-style: normal;
	font-stretch: normal;
}  

@font-face {
  font-family: 'America-Bold';
  src: url("/css/fonts/GT-America-Expanded-Bold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-FB02; }


/* General */

html,body {
    margin:0;
    padding:0;
    height: 100%;
}

body {
	overflow-x: hidden;
	font-family: "Optima";
	font-size: 12px;
	line-height: 15px;
}

#wrapper {
	min-height: 100vh;
}

h1 {
	font-family: "America-Bold";
	text-transform: uppercase;
	font-size: 14px;
}

h2 {
	font-family: "America-Bold";
	text-transform: uppercase;
	font-size: 9px;
}

h3 {
	font-family: "America-Bold";
	text-transform: uppercase;
	font-size: 11px;
}

img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

a:link, a:visited {
	text-decoration: none;
	color: black;
}

a:hover, a:active, a.active {
}

section {
	background: white;
	color: black;
}

section.dark {
	background: black;
	color: white;
}

section.alt-tone {
	background: #F59F76;
}

input, button, submit
{
  border:none;
  background: none;
  outline: none;
  border-radius: 0;
}

/* Menu */

header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 9998;
}

.overlay {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9997;
	background: rgba(29, 29, 30, 0.65);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .5s cubic-bezier(.645, .045, .355, 1);
	-o-transition: all .5s cubic-bezier(.645, .045, .355, 1);
	transition: all .5s cubic-bezier(.645, .045, .355, 1)
}

#logo {
	margin-top: 20px;
}

#logo a {
	width: 258px;
	height: 44px;
	display: block;
	background-image: url('/assets/logo_black.svg');
	background-size: contain;
	margin: 0 auto;
}

#logo.dark a { 
	background-image: url('/assets/logo_white.svg');
}

.menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 355px;
  padding: 33px 50px 50px 50px;
  z-index: 9998;
  
  background: black;
  color: white;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  -webkit-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transform: translate(-100%, 0);
      -ms-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
          
  -webkit-transition: transform .5s cubic-bezier(.645, .045, .355, 1);
  -o-transition: transform .5s cubic-bezier(.645, .045, .355, 1);
  transition: transform .5s cubic-bezier(.645, .045, .355, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

nav {
	margin-top: auto;
	margin-bottom: auto;
}

form {
	margin-top: auto;
}

#wrapper, header {
	-webkit-transition: all .5s cubic-bezier(.645, .045, .355, 1);
	-o-transition: all .5s cubic-bezier(.645, .045, .355, 1);
	transition: all .5s cubic-bezier(.645, .045, .355, 1);
	 -webkit-font-smoothing: antialiased;
}

/*
.open-menu #wrapper, .open-menu header {
	transform: translateX(355px);
}

.open-cart #wrapper, .open-cart header {
	transform: translateX(-355px);
}
*/

.open-menu .menu {
	-webkit-transform: translate(0, 0);
	    -ms-transform: translate(0, 0);
	        transform: translate(0, 0);
}

.open-menu .overlay, .open-cart .overlay{
	visibility: visible;
	opacity: 1;
}

.menu-open {
	position: absolute;
	top: 22px;
	left: 100%;
	padding: 20px;
	width: 70px;
}

.menu-open span, .menu-open span:before, .menu-open span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 1px;
  width: 24px;
  background: black;
  position: absolute;
  display: block;
  content: '';
}

.dark.menu-open span, .dark.menu-open span:before, .dark.menu-open span:after {
	background: white;
}

.menu-open span:before {
  top: -5px;
}
.menu-open span:after {
  bottom: -5px; 
}

nav {
	text-align: center;
}

nav a:link {
	font-family: "America-Bold";
	font-size: 25px;
	line-height: 60px;
	color: white;
	display: block;
	text-transform: uppercase;
	-webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
	-o-transition: all .3s cubic-bezier(.645, .045, .355, 1);
	transition: all .3s cubic-bezier(.645, .045, .355, 1)
}

.menu a:hover {
	color: #F59F76!important;
}

.menu a:visited, .menu a:active {
	color: white;
}

.shield {
	height: 28px;
	width: 18px;
	margin: 0 auto;
}

.left-side-link,
.right-side-link {
	color: black;
    position: fixed;
    top: 0;
    bottom: 0;
    height: 1.5em;
    margin: auto;
    z-index: 9998;
    font-family: "America-Bold";
	font-size: 9px;
	text-transform: uppercase;
}

.dark.left-side-link, .dark.right-side-link {
	color: white;
}

.left-side-link {
    left: 26px;
    -webkit-transform-origin: 0 50%;
        -ms-transform-origin: 0 50%;
            transform-origin: 0 50%;
    -webkit-transform: rotate(-90deg) translate(-50%, 50%);
        -ms-transform: rotate(-90deg) translate(-50%, 50%);
            transform: rotate(-90deg) translate(-50%, 50%);
}

.right-side-link {
    right: 26px;
    -webkit-transform-origin: 100% 50%;
        -ms-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    -webkit-transform: rotate(90deg) translate(50%, 50%);
        -ms-transform: rotate(90deg) translate(50%, 50%);
            transform: rotate(90deg) translate(50%, 50%);
}

span.input {
    display: block;
    margin: 0 auto;
    position: relative;
    border-bottom: 1px solid #979797;
    margin-bottom: 20px;
}

input#mce-EMAIL {
	text-align: left;
	color: white;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    outline: none;
    border-top: 10px solid transparent;
    margin-bottom: 6px;
    border-right: 15px solid transparent;
    width: 100%;
    padding-bottom: 0;
    background-repeat: no-repeat;
    background-position: -25px center;
    background-size: 10px;
    font-family: "America-Bold";
	font-size: 9px;
	height: 26px;
}

input#mce-EMAIL::-webkit-input-placeholder {
  color: white;
  text-align: left;
}

[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.2s 0.2s ease;
  -o-transition: opacity 0.2s 0.2s ease;
  transition: opacity 0.2s 0.2s ease; 
  opacity: 0;
}

#mc-embedded-subscribe {
    width: 3px;
    border-radius: 0;
    -webkit-appearance: none;
    border: none;
    background: none;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    background-image: url('/assets/arrow.svg');
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    right: -10px;
    z-index: 9;
    padding: 10px 16px;
    cursor: pointer;
}

#mc_embed_signup {
	position: relative;	
}

#message { 
	position: absolute;
	top: -20px;
}

.small_link:link {
	font-family: "America-Bold";
	font-size: 9px;
	text-align: center;
	color: white;
	margin-top: 10px;
}

@media only screen and (max-width : 767px) {
	
	#logo a  {
		width: 175px;
		height: 30px;
	}
	
	#logo {
		margin-top: 10px;
	}
	
	.menu  {
		width: calc(100vw - 49px);
		max-width: 355px;
		padding: 23px 20px 30px 20px;
	}
	
	.menu-open  {
		margin-left: 0;
		padding: 20px 12px;
		top: 5px;
		-webkit-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
		-o-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
		transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
		width: 50px;
	}
	
	.open-menu .menu-open {
		opacity: 0;
	}
	
	.left-side-link {
		display :none;
		visibility:hidden;
	}
	
	.right-side-link {
   	 	right: 0;
   	 	-webkit-transform: none;
	    position: fixed;
	    top: auto;
	    bottom: 20px;
	    height: auto;
	    width: 100%;
	    margin: auto;
	    z-index: 9998;
		text-align: center;
		-webkit-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
		-o-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
		transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
		opacity: 1;
		visibility: visible;
   	} 	
   	
   	.right-side-link.hidden {
	   	opacity: 0;
		visibility: hidden;
   	}
   	
   	nav a:link {
		font-size: 18px;
		line-height: 50px;
	}
	
	span.input {
		margin-bottom: 10px;
	}
}

@media only screen and (min-width : 768px) and (max-width : 900px) {
	.left-side-link {
		display :none;
		visibility:hidden;
	}
	.right-side-link {
    	right: 15px;
    }
}	

/* Product */

.collection {
	position: relative;
	background: white;
	z-index: 9;
}

.shop-landing {
	margin-top: 120px;
}

.product__info {
	text-align: center;
	max-width: 385px;
	padding-top: 20px;
}

.product h2, .product span {
	display: block;
}

.shop-single h1 {
	margin-bottom: 15px;
}

.product-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;	
}

.product-item a{
	margin-top: auto;
	width: 100%;
}

.product__container {
	min-height: 100vh;
}

.product__description, .product__price {
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 50px;
}

.product__description a:link, .product__description a:visited {
	color: white;
	display: inline;
}

.product__price {
	display: block;
	margin-bottom: 20px;
}

.product-item__content {
	margin-top: 20px;
	text-align: center;
}

h2.product-item__title {
	margin-bottom: 5px;
	font-size: 9px;
}

.product-item__subheader {
	margin-bottom: 10px;
}

.price_ft::before {
	content:"\2014";
}

.separator {
	margin-left: 8%;
	margin-right: 8%;
	text-align: center;
	border-bottom: 1px solid black;
	margin-bottom: 125px;
	display: block;
}

.separator-title {
	display: block;
	margin-bottom: 10px;
}

.separator-text {
	display: block;
	margin-bottom: 15px;
}

.product-item__content .btn.solid {
	display: block;
	margin: 0 auto;
	margin-top: 30px;
}

.product-item__content .btn:hover {
	background-color: #F59F76!important;
}

@media only screen and (min-width: 768px) {
    .grid .unit {
        margin-bottom: 120px!important;
    }
    
    .product-item a {
	    position: relative;
	}
	
	.product-item__content {
	    text-align: center;
	    width: 100%;
	}
}

@media only screen and (max-width : 767px) {
	.shop-landing {
		margin-top: 73px;
	}	
	
	.shop-single .product__content {
		padding-top: 73px;
	}	
	
	.product__cover {
		padding-left: 49px;
		padding-right: 49px;
	}
	
	.product__info {
		padding-top: 20px;
	}
	
	.product__container {
		min-height: 0;
	}
	
	.separator {
		margin-left: 49px;
		margin-right: 49px;
		margin-bottom: 60px;
	}
}


/* Films */

.videos-container {
	text-align: center;
	max-width: 1080px;
	margin: 0 auto;
}

.films {
	padding-top: 0;
}

.films section {
	padding-bottom: 120px;
}

 .video.grid {
 	padding-top: 120px;
 	grid-row-gap: 0!important;
 }
 
 .video_info {
 	text-align: left;
 	display: flex;
 	padding-top: 20px;
 }
 
 .meta p {
 	padding-right: 60px;
 }
 
 .meta {
 	width: 70%;
 }
 
 .credits_block {
 	width: 40%;
 }
 
 .meta h2 {
  	margin-bottom: 10px;
  	font-size: 11px;
 }
 
 .toggle_credits {
 	float: right;
 	margin-bottom: 10px;
 	font-family: "America-Bold";
 	text-transform: uppercase;
 	font-size: 9px;
 	cursor: pointer;
 }
 
 p.credits {
 	clear: right;
 	display: none;
 }
  
.films .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

.films .embed-container iframe,
.films .embed-container object,
.films .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width : 767px) {
	.video_info {
	display: block;
	}
	
	.meta {
		width: 100%;
	}
	
	.meta p {
		padding-right: 0;
	}
	
	.credits_block {
		width: 100%;
		margin-right: 20px;
	}
	
	.toggle_credits {
		float: none;
		display: inline-block;
		padding: 20px 10px 10px 0;
		margin-bottom: 0;
		margin-left: 0;
	}	
	#wrapper.films{
		padding-top: 0;
	}	
	
	.films section {
		padding-bottom: 73px;
	}
	
	 .video.grid {
	 	padding-top: 73px;
	 	grid-row-gap: 0!important;
	 }
 
}

/* Accordion */

#stocklist, #credits {
	text-align: center;
}

#stocklist {
	padding-top: 80px;
}

#faq {
	text-align: center;
	padding-top: 40px;
	padding-bottom: 80px;
}

.accordion {
	padding-top: 40px;
	padding-bottom: 20px;
	display: none;
}

.hideContent {
	padding-bottom: 0;
}

.hideContent h3 {
	cursor: pointer;
}

.accordion li {
  position: relative;
}
.accordion .accordion-content {
  display: none;
}
.accordion a {
  width: 100%;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.accordion p a {
	display: inline;
}

.accordion > li {
	padding-bottom: 40px;
}

.accordion-content {
	margin-top: 80px;
}

.accordion-content > li{
	padding-bottom: 40px;
}

.store-list {
	 display: -webkit-box;
	 display: -ms-flexbox;
	 display: flex;
	 -webkit-box-pack: center;
	     -ms-flex-pack: center;
	         justify-content: center;
	 -ms-flex-wrap: wrap;
	     flex-wrap: wrap;
}

.store-list li {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33%;
	        flex: 0 0 33%;
	margin-bottom: 40px;
}

.country-name, .region-name {
	font-family: "America-Bold";
	font-size: 30px;
	line-height: 30px;
	letter-spacing: 0.27px;
}

.country-name {
	text-transform: uppercase;
}

.region-name {
	margin-bottom: 40px;
	display: block;
}


.store-name, .question {
	font-family: "America-Bold";
	font-size: 9px;
	text-transform: uppercase;
	display: block;
}

.store-name {
	margin-bottom: 4px;
}

.question { 
	margin-bottom: 10px;
}

.answer {
	max-width: 400px;
	margin: 0 auto;
}

@media only screen and (max-width : 767px) {
	
	.country-name, .region-name {
		font-family: "America-Bold";
		font-size: 20px;
		line-height: 20px;
		letter-spacing: 0.17px;
	}
	
	.store-list li {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		margin-bottom: 20px;
	}
	
	.accordion-content {
		margin-top: 60px;
	}
	
	.accordion {
		padding-left: 49px;
		padding-right: 49px;
	}

}

/* Footer */

footer {
	text-align: center;
	font-family: "America-Bold";
	font-size: 9px;
	text-transform: uppercase;
	padding-bottom: 30px;
}

footer a {
	display: block;
	line-height: 20px;
}

.label {
	display: block;
	font-family: "Optima";
	font-size: 12px;
	line-height: 15px;
	text-transform: none;
}

.smallText {
	font-size: 10px;
	font-family: "Optima";
	text-transform: none;
}

.credit-line {
	margin-top: 40px;
	margin-bottom: 40px;
}

footer .shield {
	margin-bottom: 40px;
}

@media only screen and (max-width : 767px) {
	.issue-single footer {
		padding-bottom: 50px;
	}
}	

/* Issues */

div#wrapper.issue-single {
	height: 100%;
}

.swipes {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swipe {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.contain-bg {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

dl {
	padding-top: 40px;
}

dd {
	font-family: "America-Bold";
	font-size: 9px;
	text-transform: uppercase;
	margin-bottom: 30px;
}

dt {
	margin-bottom: 4px;
}

.specialText {
	width: 300px;
	margin: 0 auto;
}

@media only screen and (max-width : 767px) {
	.specialText {
		width: 100%;
		padding-left: 8%;
		padding-right: 8%;
	}
}
/* About */

.aboutText {
	max-width: 900px;
	text-align: center;
	font: 36px/45px "Optima";
	margin-bottom: -60px;
	letter-spacing: -0.7px;
}	

.about-page section:first-child {
	min-height: calc(100vh - 269px);
	position: relative;
	top: 0;
	width: 100%;
}

@media only screen and (max-width : 767px) {
	.aboutText {
		padding: 49px 40px 60px 40px;
		text-align: center;
		font: 18px/25px "Optima";
	}	
}	

/* Grids */

@media only screen and (min-width : 768px) {

	section.pTop {
		padding-top: 120px;
	}
	
	section.pBottom {
		padding-bottom: 120px;
	}
	
	.grid {
		 display: -webkit-box;
		 display: -ms-flexbox;
		 display: flex;
		 -webkit-box-orient: horizontal;
		 -webkit-box-direction: normal;
		     -ms-flex-flow: row wrap;
		         flex-flow: row wrap;
		 -webkit-box-pack: center;
		     -ms-flex-pack: center;
		         justify-content: center;	
		 -webkit-box-align: bottom;	
		     -ms-flex-align: bottom;	
		         align-items: bottom;
	}
	
	.grid.padded {
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		margin-left: calc(8% - 30px);
		margin-right: calc(8% - 30px);
	}
	
	.grid .unit {
		margin-bottom: 125px;
		margin-left: 30px;
		margin-right: 30px;
	}
	
	.grid.half .unit{
		-ms-flex-preferred-size: calc(50% - 60px);
		    flex-basis: calc(50% - 60px);
	}
	
	.grid.third .unit{
		-ms-flex-preferred-size: calc(33% - 60px);
		    flex-basis: calc(33% - 60px);
	}

	.product__content > div {
		width: 50%;
	}	
	
	.product__images, .product__cover {
		margin-left: 50%;
	}
	
	.product__cover {
		margin-top: -100vh;
	}
	
	.product-info__grid {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		height: 100vh;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		padding-left: 120px;
		padding-right: 40px;
	}

}

@media only screen and (min-width : 768px) and (max-width : 900px) {
	.product-info__grid {
		padding-left: 40px;
	}
}	

@media only screen and (max-width : 767px) {
	
	section.pTop {
		padding-top: 80px;
	}
	
	section.pBottom {
		padding-bottom: 80px;
	}
	
	section.mBottom, .product-item-container {
		padding-bottom: 80px!important;
	} 
	
	.grid {
		display: grid;
		grid-row-gap: 80px;
	}
	
	.grid.padded {
		margin-left: 49px;
		margin-right: 49px;
	}
	
	.product__content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.product-info__grid {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		padding: 20px 49px 40px 49px;
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
	
	.product__images {
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
	}
}	

/* Classes */

.centerCt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.visuallyhidden {
	display: none;
}

.touchonly {
	display: none;
}
html.touch .touchonly {
	display: block;
}
.noselect * {
	-ms-user-select: none;
	    user-select: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
}
.doselect * {
	-ms-user-select: auto;
	    user-select: auto;
	-webkit-user-select: auto;
	-khtml-user-select: auto;
	-moz-user-select: auto;
	-o-user-select: auto;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

.responsively-lazy:not(img){
    position:relative;
    height:0;
}

.responsively-lazy:not(img) > img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

img.responsively-lazy{
    width:100%;
}

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

.contain {
	-o-object-fit: contain;
	   object-fit: contain;
	height: 80%;
	width: auto!important;
	margin: 0 auto;
}

.align-end {
	-ms-flex-item-align: end;
	    align-self: end;
}

.align-top {
	-ms-flex-item-align: top;
	    align-self: top;
}

.align-center {
	-ms-flex-item-align: center;
	    align-self: center;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and ( min-device-pixel-ratio: 1.25), only screen and ( -webkit-min-device-pixel-ratio: 2.0833333333333335), only screen and ( -o-min-device-pixel-ratio: 25/12), only screen and ( min-resolution: 200dpi), only screen and ( -webkit-min-device-pixel-ratio: 1.25), only screen and ( -o-min-device-pixel-ratio: 5/4), only screen and ( min-resolution: 1.25dppx) {     -webkit-font-smoothing: subpixel-antialiased; } 


/* Gucci Takeover */

.cross-link {
	position: absolute;
	z-index: 2;
	right: 10px;
	top: 10px;
	padding: 20px;
}

#gucci-ad {
	background-color: #613531;	
	height: 100vh;
	position: relative;
	overflow: hidden;
	padding-top: 20px;
	padding-bottom: 50px;
	text-align: center;
	display: flex;
	flex-direction: column;
}

.sub {
	font-family: "America-Bold";
	text-transform: uppercase;
	font-size: 9px;
}

.sub--gucci img {
	height: 19px;
	width: auto;
	display: block;
	margin: 10px auto;
}

a.sub  {
	color: #FAF3EA;
}

.sub--godesses {
	margin: 0 0 30px 0;
	flex: 3;
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: relative;
}

.sub--godesses a:link {
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.sub--godesses .embeds {
	position: relative;
	height: 100%;
	width: 100%;
}

.sub--godesses .embed-container {
	position: relative;
	overflow: hidden;
	height: 100%;	
}

@media only screen and (min-width: 768px) {

.sub--godesses .embeds {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.sub--godesses .embed-container {
	width: 23%;
	margin-left: 1%;
	margin-right: 1%;
}

.sub--godesses .embed-container iframe { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}

}

@media only screen and (max-width : 767px) { 
	
	#gucci-ad {
		padding-bottom: 100px
	}
	
	.sub--gucci img {
		height: 13px;	
	}
	
	.sub--godesses .embeds {
		padding-top: 15px;
	}	
	
	.sub--godesses .embed-container {
		width: 60%;
		max-height: 65vh;
	}
	
	.sub--godesses .embed-container iframe { 
		pointer-events: none;
		width: 100%; 
		height: 100%; 
	}
	
	.sub--godesses a:link {
		display: none;
	}
}

/* BLM Splash */
/* 
body.splashed {
	overflow: hidden;
}

@font-face {
	font-family: 'Tiempos';
	src: url('/tpl/issue-3/fonts/TiemposHeadlineWeb-Regular.eot');
	src: url('/tpl/issue-3/fonts/TiemposHeadlineWeb-Regular.eot?#iefix') format('embedded-opentype'),
		 url('/tpl/issue-3/fonts/TiemposHeadlineWeb-Regular.woff') format('woff'),
		 url('/tpl/issue-3/fonts/TiemposHeadlineWeb-Regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}

#blm-splash.fade-out {
	opacity: 0;
}	

#blm-splash {
	color: white;
	background: black;
	position: fixed;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 9999;
	opacity: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#blm-splash p {
	font-family: 'Tiempos';
	font-size: 28px;
	line-height: 34px;
	text-align: center;
	width: 85%;
	max-width: 1000px;
	margin-bottom: 60px;
}

.splash-header {
	position: absolute;
	width: 100%;
	top: 20px;
}

.splash-logo {
	width: 258px;
	height: 44px;
	display: block;
	background-image: url('/assets/logo_white.svg');
	background-size: contain;
	margin: 0 auto;
}

.js-close-splash {
	display: block;
	height: 20px;
	width: 20px;
	position: absolute;
	top: 10px;
	right: 20px;
	background-image: url('/assets/cross.svg');
	background-size: cover;
}


@media only screen and (max-width : 767px) { 
	
	.splash-header {
		top: 10px;
	}
	
	.js-close-splash {
		top: 0;
		right: 12px;
	}
	
	#blm-splash p {
		font-size: 14px;
		line-height: 20px;
	}
	
	.splash-logo {
		width: 175px;
		height: 30px;
	}
} */