/**
 * Resets
 */


* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

::-moz-selection {
	background-color: rgba(0,0,0,.6);
	color: #fff;
}

::selection {
	background-color: rgba(0,0,0,.6);
	color: #fff;
}

:focus {
	outline: 0;
}

customhtml > * {
	position: relative;
    z-index: 10;
}


/**
 * Type
 */

/* Thin */
@font-face {
  font-family: 'Post Grotesk';
  font-weight: 100;
  font-style: normal;
  src: url('https://files.persona.co/56019/PostGrotesk-Thin.woff2') format('woff2'),
       url('https://files.persona.co/56019/PostGrotesk-Thin.woff') format('woff');
}
@font-face {
  font-family: 'Post Grotesk';
  font-weight: 100;
  font-style: italic;
  src: url('https://files.persona.co/56019/PostGrotesk-ThinItalic.woff2') format('woff2'),
       url('https://files.persona.co/56019/PostGrotesk-ThinItalic.woff') format('woff');
}
/* Light */
@font-face {
  font-family: 'Post Grotesk';
  font-weight: 200;
  font-style: normal;
  src: url('https://files.persona.co/56019/PostGrotesk-Light.woff2') format('woff2'),
       url('https://files.persona.co/56019/PostGrotesk-Light.woff') format('woff');
}
@font-face {
  font-family: 'Post Grotesk';
  font-weight: 200;
  font-style: italic;
  src: url('https://files.persona.co/56019/PostGrotesk-LightItalic.woff2') format('woff2'),
       url('https://files.persona.co/56019/PostGrotesk-LightItalic.woff') format('woff');
}
/* Book */
@font-face {
  font-family: 'Post Grotesk';
  font-weight: 400;
  font-style: normal;
  src: url('https://files.persona.co/56019/PostGrotesk-Book.woff2') format('woff2'),
       url('https://files.persona.co/56019/PostGrotesk-Book.woff') format('woff');
}
@font-face {
  font-family: 'Post Grotesk';
  font-weight: 400;
  font-style: italic;
  src: url('https://files.persona.co/56019/PostGrotesk-BookItalic.woff2') format('woff2'),
       url('https://files.persona.co/56019/PostGrotesk-BookItalic.woff') format('woff');
}
/* Medium */
@font-face {
  font-family: 'Post Grotesk';
  font-weight: 600;
  font-style: normal;
  src: url('https://files.persona.co/56019/PostGrotesk-Medium.woff2') format('woff2'),
       url('https://files.persona.co/56019/PostGrotesk-Medium.woff') format('woff');
}
@font-face {
  font-family: 'Post Grotesk';
  font-weight: 600;
  font-style: italic;
  src: url('https://files.persona.co/56019/PostGrotesk-MediumItalic.woff2') format('woff2'),
       url('https://files.persona.co/56019/PostGrotesk-MediumItalic.woff') format('woff');
}
/* Bold */
@font-face {
  font-family: 'Post Grotesk';
  font-weight: 700;
  font-style: normal;
  src: url('https://files.persona.co/56019/PostGrotesk-Bold.woff2') format('woff2'),
       url('https://files.persona.co/56019/PostGrotesk-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Post Grotesk';
  font-weight: 700;
  font-style: italic;
  src: url('https://files.persona.co/56019/PostGrotesk-BoldItalic.woff2') format('woff2'),
       url('https://files.persona.co/56019/PostGrotesk-BoldItalic.woff') format('woff');
}
/* Black */
@font-face {
  font-family: 'Post Grotesk';
  font-weight: 900;
  font-style: normal;
  src: url('https://files.persona.co/56019/PostGrotesk-Black.woff2') format('woff2'),
       url('https://files.persona.co/56019/PostGrotesk-Black.woff') format('woff');
}
@font-face {
  font-family: 'Post Grotesk';
  font-weight: 900;
  font-style: italic;
  src: url('https://files.persona.co/56019/PostGrotesk-BlackItalic.woff2') format('woff2'),
       url('https://files.persona.co/56019/PostGrotesk-BlackItalic.woff') format('woff');
}
.font-100 {
	font-weight: 100;
}
.font-200 {
	font-weight: 200;
}
.font-400 {
	font-weight: 400;
}
.font-600 {
	font-weight: 600;
}
.font-700 {
	font-weight: 700;
}
.font-900 {
	font-weight: 900;
}

/**
 * Global
 */

body,
html {
	min-height: 100vh;
	margin: 0px;
	padding: 0px;
}

html {
	position: relative;
}

body {
    /* background: #000; */
	color: #fff;
}

a:active {
	opacity: 0.7;
}

/**
 * Backdrop
 */

#backdrop {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	max-width: 100%;
	z-index: 1;
}

/**
 * Container
 */

main {
	background: #fff;
	clear: both;
	overflow: hidden;
	position: absolute;
	max-width: 100%;
	width: 100%;
	z-index: 2;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

main > div {
	-moz-flex: 1 0 auto;
	-webkit-flex: 1 0 auto;
	flex: 1 0 auto;
	width: 100%;
}


.subpage_overlay {
	display: block;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

body.homepage .subpage_overlay {
	display: none;
}
/**
 * Content
 */

i, em {
	font-style: italic;
}

b, strong {
	font-weight: bold;
}

ul, ol {
	margin: 0;
	padding: 0 0 0 1em;
}

sup {
	top: -0.4em;
	vertical-align: baseline;
	position: relative;
}

sub {
	top: 0.3em;
	vertical-align: baseline;
	position: relative;
}

s {

}

.slideshow-nav {
    font-size: 1.2rem;
	line-height: 1.3;
	margin-bottom: 0.5em;
	text-align: right;
}
img {
	border: 0;
	padding: 0;
}
img.svg {
    width: 100%;
}

blockquote {
    font-size: 3.2rem;
    font-weight: 600;
	margin: 0;
	padding: 1.6em 0;
}
blockquote::before {
    content: "“";
    font-size: 12rem;
    font-weight: 200;
    line-height: 11.6rem;
    text-indent: -6.4rem;
    display: block;
    float: left;
}

hr {
	background: rgba(127, 127, 127, 0.2);
	border: 0;
	height: 0.08em;
	display: block;
}

.bodycopy {
	display: none;
}

.container {
	min-height: 100%;
}

.content img {
	float: none;
	margin-bottom: 0.4em; /* was 1em */
}

.clear:after {
	content: "";
	display: table;
	clear: both;
}

.loading[data-loading] {
	display: none;
	position: fixed;
	top: 8px; left: 8px;
	z-index: 100;
}

[grid-row] {
	margin: 0 0 2em 0;
}

.subnav {
    padding: 0.3em 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
	margin: -4rem 0 7.2rem 0;
}
.subnav:nth-of-type(2) {
	border-top: 1px solid rgba(255,255,255,.2);
    border-bottom: none;
    margin: 8rem 0 0 0;

}
.subnav b {
	color: rgba(255,255,255,.6);
}
.subnav li {
	display: inline;
    margin: 0 0 0 2em;
}
.subnav a {
	opacity: .6;
    border-bottom: none !important;
}
.subnav a:hover {
	opacity: 1;
}
.subnav div {
	margin: 0;
}
.comingsoon {
	opacity: 0.6;
}
.comingsoon img {
	opacity: 0.8;
}
.comingsoon i {
	opacity: 0.5;
}

/**
* Individual Pages
*/

.homepage,
.homepage #background_splash,
[data-id="191642"],
[data-id="191642"] .theme-bg {
	background-color: #3668FF;
}
.homepage [grid-row],
[data-id="191642"] [grid-row] {
	margin-bottom: 1.2rem;
}
.homepage h1,
[data-id="191642"] h1 {
	font-size: 1.6rem !important;
	line-height: 1.4 !important;
}
.homepage h2,
[data-id="191642"] h2 {
	font-size: 1.6rem !important;
	line-height: 1.4 !important;
    margin: 2em 0 -1em 0 !important;
}
.homepage a,
[data-id="191642"] a {
  	border-bottom: none !important;
}
/* Systems */
[data-id="186917"],
[data-id="186917"] .theme-bg {
  	background: #3668FF;
  	color: #fff;
}
/* Rhythm */
[data-id="190658"],
[data-id="190658"] .theme-bg {
  	background: #3668FF;
  	color: #fff;
}
/* Tools */
[data-id="191599"],
[data-id="191599"] .theme-bg {
  	background: #3668FF;
  	color: #fff;
}
/* Details */

[data-id="187368"],
[data-id="187368"] .theme-bg {
	background: #FDE5E5;
  	color: #F35752;
}
[data-id="187368"] a {
  	color: #F35752 !important;
}
/* Web */
[data-id="187365"],
[data-id="187365"] .theme-bg {
  	background: #F4F7FF;
  	color: #224099;
}
[data-id="187365"] a {
  	color: #224099 !important;
}
/* Wear */
[data-id="187366"],
[data-id="187366"] .theme-bg {
	background: #101010;
	color: #fff;
}
/* Apple TV */
[data-id="187369"],
[data-id="187369"] .theme-bg {
  	background: #111;
  	color: #fff;
}
/* Chromecast */
[data-id="190724"],
[data-id="190724"] .theme-bg {
  	background: #fff;
  	color: orange;
}
[data-id="190724"] a {
  	color: orange !important;
}
/* Xbox */
[data-id="190723"],
[data-id="190723"] .theme-bg {
  	background: #fff;
  	color: green;
}
[data-id="190723"] a {
  	color: green !important;
}
/* Alarm */
[data-id="190713"],
[data-id="190713"] .theme-bg {
  	background: #000;
  	color: #00A0EE;
}
/* Lonely Planet */
[data-id="190716"],
[data-id="190716"] .theme-bg {
  	background: #fff;
  	color: navy;
}
[data-id="190716"] a {
  	color: navy !important;
}
/* Museum Victoria */
[data-id="190694"],
[data-id="190694"] .theme-bg {
  	background: #fff;
  	color: green;
}
[data-id="190694"] a {
  	color: green !important;
}
/* Top Gear */
[data-id="190709"],
[data-id="190709"] .theme-bg {
  	background: #111;
  	color: #fff;
}
/* Madman */
[data-id="190703"],
[data-id="190703"] .theme-bg {
  	background: #fff;
  	color: red;
}
[data-id="190703"] a {
  	color: red !important;
}

.theme-bg {
	position: fixed;
    left:0;
    top: 0;
	width: 100%;
	height: 100%;
    z-index: -1;
}

/**
 * Android Wear additional styles
 */

#set-height {
	display: block;
	height: 3200px;
}
#wear-intro, #wear-scroll {
    position: fixed;
    top: 50%;
    left: 118px;
    margin: -245px 0 0 0;
    width: 360px;
}
#wear-intro {
	z-index: 1;
}
#wear-scroll {
	z-index: 0;
}
.parallax [class*="bg-"] {
	position: relative;
	height: 100vh;
	background-attachment: fixed;
	background-position: 160px center;
	background-size: 272px 272px;
	background-repeat: no-repeat;
	background-color: #101010;
}
.parallax [class*="bg-"]:nth-child(2n) {
	background-color: #000;
}
.parallax .bg-intro {
	height: 250vh !important;
}
.parallax .bg-intro,
.parallax [grid-row] {
	margin: 0 auto;
	padding: 10rem;
	max-width: 100rem;
}
.parallax .bg-intro h1,
.parallax .bg-intro [grid-row] {
	position: relative;
	z-index: 2;
}
.parallax .bg-one {
	background-image: url(https://files.persona.co/56019/wear-stations-np.gif);
	z-index: 2;
}
.parallax .bg-two {
	background-image: url(https://files.persona.co/56019/wear-np-thumbs.gif);
	z-index: 2;
}
.parallax .bg-three {
	background-image: url(https://files.persona.co/56019/wear-np-metadata.gif);
	z-index: 2;
}
.parallax .bg-four {
	background-image: url(https://files.persona.co/56019/wear-np-volume.gif);
	z-index: 2;
}


/**
 * Editor styles
 */

[data-css-presets="true"] main {
	background-color: transparent /*!content_center*/;
	text-align: left /*!text_left*/;
	min-height: 100vh /*!content_stretch*/;
	-webkit-align-items: flex-start /*!vertical_top*/;
	align-items: flex-start /*!vertical_top*/;
	left: 0 /*!content_center*/;
	margin-left: auto /*!content_center*/;
	margin-right: auto /*!content_center*/;
	right: 0 /*!content_center*/;
}

[data-css-presets="true"] .content_padded {
	padding: 10rem/*!main_margin*/;
}

[data-css-presets="true"] .content_width {
	width: 100rem /*!content_center*/;
}

[data-css-presets="true"] #backdrop {
	width: 100% /*!background_cover*/;
}

[data-predefined-style="true"] main {
	font-size: 1.6rem;
	font-weight: 400;
	color: rgb(255, 255, 255);
	font-family: "Post Grotesk", Social /*!Google*/;
	font-style: normal;
	line-height: 1.4;
}

[data-predefined-style="true"] main a {
	color: rgba(255, 255, 255, 1);
    padding-bottom: 0em;
    border-bottom: 0.08em solid rgba(255, 255, 255, 0.5);
    text-decoration: none;

}

[data-predefined-style="true"] main a:hover {
	text-decoration: none;
}

main a.image-link,
main a.icon-link,
main a.image-link:hover,
main a.icon-link:hover {
	border-bottom: 0;
	padding-bottom: 0;
}

[data-predefined-style="true"] h1 {
	font-family: "Post Grotesk", Social /*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 6.4rem;
	line-height: 1;
	/* color: rgba(255, 255, 255, 1); */
	text-rendering: optimizeLegibility;
}

[data-predefined-style="true"] h1 a {
	/* color: rgba(255, 255, 255, 1); */
}

[data-predefined-style="true"] h2 {
	font-family: "Post Grotesk", Social /*!Persona*/;
	font-style: normal;
	font-weight: 700;
	padding: 0;
	margin: 0.8rem 0;
	/* color: rgba(255, 255, 255, 1); */
	font-size: 2rem;
	line-height: 1.4;
	text-rendering: optimizeLegibility;
}

[data-predefined-style="true"] h2 a {
	/* color: rgba(255, 255, 255, 1); */
}

[data-predefined-style="true"] small {
    display: inline-block;
	font-size: 1.2rem;
	line-height: 1.3;
	font-family: "Post Grotesk", Social /*!Google*/;
	font-style: normal;
	font-weight: 400;
	/* color: rgba(255, 255, 255, 0.9); */
}

[data-predefined-style="true"] small a {
	/* color: rgba(255, 255, 255, 0.9); */
	border-bottom-width: 0.1em;
}


[data-css-presets="true"] .subpage_overlay {
	background-color: transparent/*!subpage_overlay*/;
}
/**
 * Backstage Icon
 */

#backstage_icon {
	display: block;
}

/**
 * Breakpoints
 */

[data-css-presets="true"].mobile #plugin,
[data-css-presets="true"].mobile #backdrop,
.mobile #backdrop,
.mobile #plugin {
	position: relative;
	height: 50vh;
	min-width: 100%;
	width: calc(100% - 80rem) /*!right_fit*/;
	top: 0;
	bottom: auto;
	left: 0 /*!right_fit*/;
}

.mobile main,
[data-css-presets="true"].mobile main {
	position: relative;
	min-height: 10px;
	max-width: 100%;
	width: 100%;
}

.mobile main.content_width,
[data-css-presets="true"].mobile main.content_width {
	max-width: 100%;
	width: 100%;
}
