@charset "UTF-8";
/* Easy Breakpoints

	@include breakpoint(md) {
		...
	}

*/
/**
 * @section Normalize.css
 * Normalize.css base with custom code.
 * Additional normalize styles incorporated throughout components.
 * @link http://necolas.github.io/normalize.css/
 */
/**
 * Mobile screen resizing
 * @link http://dev.w3.org/csswg/css-device-adapt/
 */
@-webkit-viewport {
  width: device-width;
  zoom: 1;
}
@-moz-viewport {
  width: device-width;
  zoom: 1;
}
@-ms-viewport {
  width: device-width;
  zoom: 1;
}
@-o-viewport {
  width: device-width;
  zoom: 1;
}
@viewport {
  width: device-width;
  zoom: 1;
}
/**
 * Remove the tap delay in webkit
 * @link https://medium.com/@adactio/delay-a9df9edceef3#.7dmbl3xow
 */
a,
button,
input,
select,
textarea,
label,
summary {
  touch-action: manipulation;
}

/**
 * Add box sizing to everything
 * @link http://www.paulirish.com/2012/box-sizing-border-box-ftw/
 */
*,
*:before,
*:after {
  box-sizing: border-box;
}

/**
 * 1. Set default font family to default.
 * 2. Force scrollbar display to prevent jumping on pages.
 * 3. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: "acumin-pro", "Helvetica Neue", sans-serif;
  /* 1 */
  overflow-y: scroll;
  /* 2 */
  text-size-adjust: 100%;
  /* 3 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
cite,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
}

/**
 * Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Prevent img and video elements from spilling outside of the page on smaller screens.
 */
img,
video {
  max-width: 100%;
  height: auto;
}

/**
 * Prevent iframe, object, and embed elements from spilling outside of the page on smaller screens.
 * height: auto causes iframes to smush, so it's omitted here.
 */
iframe,
object,
embed {
  max-width: 100%;
}

/**
 * Hide the template element in IE, Safari, and Firefox < 22.
 */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Prevents IE from making scaled images look like crap
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/**
 * Address inconsistent margin.
 */
figure {
  margin: 0;
}

/**
 * @workaround Remove focus from <main> element when using tabindex="-1" hack for skipnav link
 * @link https://code.google.com/p/chromium/issues/detail?id=37721
 */
.tabindex:focus {
  outline: none;
}

/**
 * @section Grid
 * Structure and layout
 */
/**
 * Base grid styles: single column
 */
section, footer {
  width: auto;
  padding: 1.5625em 0 0 0;
}
@media (min-width: 50em) {
  section, footer {
    padding: 3.125em 0 1.5625em 0;
  }
}

section:first-of-type {
  padding-top: 4.5625em;
}
@media (min-width: 50em) {
  section:first-of-type {
    padding-top: 8.9375em;
  }
}

.container {
  margin: 0 auto;
  max-width: 68em;
  width: 92%;
}

.row {
  margin-left: -2%;
  margin-right: -2%;
}

.grid-dynamic, .grid-full, .grid-three-fourths, .grid-two-thirds, .grid-half, .grid-third, .grid-fourth {
  float: left;
  padding-left: 2%;
  padding-right: 2%;
  width: 100%;
}

/**
 * Reverses order of grid for content choreography
 */
.grid-flip {
  float: right;
}

/**
 * Add columns to grid on bigger screens
 */
@media (min-width: 20em) {
  .row-start-xsmall .grid-fourth {
    width: 25%;
  }

  .row-start-xsmall .grid-third {
    width: 33.3333333333%;
  }

  .row-start-xsmall .grid-half {
    width: 50%;
  }

  .row-start-xsmall .grid-two-thirds {
    width: 66.6666666667%;
  }

  .row-start-xsmall .grid-three-fourths {
    width: 75%;
  }

  .row-start-xsmall .grid-full {
    width: 100%;
  }
}
@media (min-width: 30em) {
  .row-start-small .grid-fourth {
    width: 25%;
  }

  .row-start-small .grid-third {
    width: 33.3333333333%;
  }

  .row-start-small .grid-half {
    width: 50%;
  }

  .row-start-small .grid-two-thirds {
    width: 66.6666666667%;
  }

  .row-start-small .grid-three-fourths {
    width: 75%;
  }

  .row-start-small .grid-full {
    width: 100%;
  }
}
@media (min-width: 50em) {
  .grid-fourth {
    width: 25%;
  }

  .grid-third {
    width: 33.3333333333%;
  }

  .grid-half {
    width: 50%;
  }

  .grid-two-thirds {
    width: 66.6666666667%;
  }

  .grid-three-fourths {
    width: 75%;
  }

  .grid-full {
    width: 100%;
  }

  .offset-fourth {
    margin-left: 25%;
  }

  .offset-third {
    margin-left: 33.3333333333%;
  }

  .offset-half {
    margin-left: 50%;
  }

  .offset-two-thirds {
    margin-left: 66.6666666667%;
  }

  .offset-three-fourths {
    margin-left: 75%;
  }

  .offset-full {
    margin-left: 100%;
  }
}
/**
 * Dynamic grid
 */
@media (min-width: 20em) {
  .grid-dynamic {
    width: 50%;
  }
}
@media (min-width: 30em) {
  .grid-dynamic {
    width: 33.3333333333%;
  }
}
@media (min-width: 50em) {
  .grid-dynamic {
    width: 25%;
  }
}
/**
 * @section Typography
 * Sets font styles for entire site
 */
body {
  color: rgba(0, 0, 0, 0.8);
  background: white;
  font-family: "acumin-pro", "Helvetica Neue", sans-serif;
  font-size: 105%;
  font-weight: 400;
  line-height: 1.5;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 50em) {
  body {
    line-height: 1.5625;
  }
}

p {
  margin: 0 0 1.5625em;
}

/**
 * Hyperlink styling
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  color: rgba(0, 0, 0, 0.8);
  text-decoration: underline;
  word-wrap: break-word;
  -webkit-text-decoration-skip: objects;
  /* 2 */
  /**
   * Improve readability when focused and also mouse hovered in all browsers.
   */
}
a:active, a:hover {
  outline: 0;
}
a:active, a:focus, a:hover {
  color: black;
  text-decoration: underline;
}

/**
 * Creates block-level links
 */
a.link-block {
  color: black;
  display: block;
  text-decoration: none;
}

a.no-underline, .no-underline a {
  text-decoration: none;
}
a.no-underline:hover, .no-underline a:hover {
  text-decoration: underline;
}

/**
 * List styling
 */
ul,
ol {
  margin: 0 0 1.5625em 2em;
  padding: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}

dl,
dd {
  margin: 0;
  padding: 0;
}

dd {
  margin-bottom: 1.5625em;
}

dt {
  font-weight: bold;
}

/**
Lists
 */
.list-unstyled {
  margin-left: 0;
  list-style: none;
}

.list-spaced li {
  padding: 0 0 0.78125em 0;
}

.list-inline {
  list-style: none;
  margin-left: -0.625em;
  margin-right: -0.625em;
  padding: 0;
}
.list-inline > li {
  display: inline;
  margin-left: 0.625em;
  margin-right: 0.625em;
}

.list-star {
  list-style: none;
  margin-left: 0;
}
.list-star li {
  padding-left: 1.3em;
}
.list-star li::before {
  content: "✳︎";
  display: block;
  margin-left: -1.3em;
  float: left;
}

.list-arrow {
  list-style: none;
  margin-left: 0;
}
.list-arrow li {
  padding-left: 1.3em;
}
.list-arrow li::before {
  content: "→︎";
  display: block;
  margin-left: -1.3em;
  float: left;
}

.list-lined li {
  padding-bottom: 9px;
  margin-bottom: 7px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.list-lined li:last-of-type {
  border: none;
}

/**
 * Heading styling for h1 through h6 elements.
 * Heading class lets you use one heading type for semantics, but style it as another heading type.
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.2;
  margin: 0.3125em 0 1.09375em 0;
  padding: 0;
  word-wrap: break-word;
}

h1 {
  font-size: 1.625em;
  margin-top: 0;
}
@media (min-width: 50em) {
  h1 {
    font-size: 2.1875em;
  }
}

h1.giant {
  font-size: 4.125em;
  margin-top: 0;
  margin-bottom: 0.78125em;
}

h2 {
  font-size: 1.3125em;
}
@media (min-width: 50em) {
  h2 {
    font-size: 1.5625em;
  }
}

h3 {
  font-size: 1.125em;
  font-weight: 600;
  margin-bottom: 0.46875em;
}

h4, h5, h6 {
  font-size: 1em;
}

/**
 * Lines, Quotes and Emphasis
 */
hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom: 0 solid white;
  box-sizing: content-box;
  margin: 2em auto;
  overflow: visible;
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: 600;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/**
 * Blockquotes
 */
blockquote {
  font-size: 1.1875em;
  margin: 0 0 0.78125em 0;
  border-left: 0.78125em solid #f1f1f1;
  padding-left: 0.78125em;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

/**
 * @section Nav
 */
nav {
  display: block;
  position: fixed;
  width: 100%;
  height: 48px;
  background: white;
  z-index: 500;
  -webkit-transition: padding 0.2s ease-in-out;
  -moz-transition: padding 0.2s ease-in-out;
  transition: padding 0.2s ease-in-out;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}
nav .main-menu {
  position: fixed;
  display: none;
  margin: 48px 0 0 0;
  height: 100%;
  width: 100%;
  z-index: 499;
  background: white;
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
}
nav .main-menu ul {
  margin-top: 0.625em;
  padding-left: 4%;
  line-height: 1.2em;
}
nav .main-menu ul li {
  padding: 2px 0;
}
nav .main-menu ul li.primary {
  font-weight: 600;
}
nav .main-menu ul li a {
  display: inline-block;
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  padding: 3px 0;
}
nav .main-menu ul li a span {
  display: inline-block;
  border-bottom: 2px solid transparent;
}
nav .main-menu ul li a:hover {
  text-decoration: none;
}
nav .main-menu ul li.buy {
  margin: 0.78125em 0;
}
nav .show-menu {
  display: block;
}
nav #logo {
  display: block;
  margin: 13px auto 10px 15px;
  width: 110px;
  height: 21px;
  float: left;
  color: rgba(0, 0, 0, 0.8);
}
nav #hamburger {
  width: 25px;
  height: 20px;
  padding: 2px;
  float: left;
  margin: 14px 0 0 4%;
  cursor: pointer;
  overflow: hidden;
}
nav #hamburger span {
  display: block;
  height: 3px;
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
  margin-bottom: 3px;
}
nav #hamburger.open span {
  height: 2px;
  margin-top: 2px;
  margin-bottom: 2px;
}
nav #buynow {
  display: inline-block;
  float: right;
  font-size: 0.875em;
  padding: 4px 0 4px 4px;
  line-height: 1em;
  margin: 12px 4% 0 0;
  font-weight: 600;
}
@media (min-width: 50em) {
  nav {
    z-index: 500;
    height: auto;
    padding: 40px 0;
    background: transparent;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    box-shadow: none;
  }
  nav.shrink {
    padding: 19px 0 20px 0;
    background: white;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
  }
  nav #wrapper {
    position: static;
    margin: 0 auto;
    width: 92%;
    max-width: 68em;
  }
  nav #logo {
    color: rgba(0, 0, 0, 0.8);
    margin: 6px 0 0 3px;
    width: 130px;
    height: 24px;
    float: left;
  }
  nav #logo:hover {
    color: black;
  }
  nav #hamburger {
    display: none;
  }
  nav #buynow {
    display: none;
  }
  nav .main-menu {
    position: static;
    display: block;
    width: 75%;
    height: auto;
    background: transparent;
    margin: 0;
    color: rgba(0, 0, 0, 0.8);
    float: right;
    font-size: 16.8px;
  }
  nav .main-menu ul {
    text-align: right;
    margin: 0px;
  }
  nav .main-menu ul li {
    display: inline;
    margin-left: 22px;
    padding: 0;
  }
  nav .main-menu ul li.secondary {
    display: none;
  }
  nav .main-menu ul li a {
    display: inline-block;
    color: rgba(0, 0, 0, 0.8);
  }
  nav .main-menu ul li a:hover {
    color: black;
  }
  nav .main-menu ul li a:hover span {
    border-bottom: 2px solid rgba(0, 0, 0, 0.8);
  }
  nav .main-menu ul li.buy {
    margin: 0 0 0 18px;
  }
  nav .main-menu ul li.buy a {
    background: rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.9);
    padding: 7px 13px 9px 13px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  }
  nav .main-menu ul li.buy a:hover {
    background: black;
    color: white;
  }
  nav .main-menu ul li.buy a:active {
    box-shadow: none;
  }
  nav .main-menu #social {
    margin: 0 0 50px 40px;
    color: rgba(0, 0, 0, 0.8);
  }
  nav .main-menu #social .icon {
    display: inline-block;
    width: auto;
    margin-left: 0px;
  }
  nav .main-menu #social .icon:first-of-type {
    margin-left: 0;
  }
  nav .main-menu #social .icon:hover {
    color: black;
  }
  nav .main-menu #social .icon svg {
    width: 20px;
  }
}

.main-menu a.active span {
  border-bottom: 2px solid rgba(0, 0, 0, 0.8);
}
.main-menu a.active span:hover {
  border-color: black;
}

.main-menu .buy a.active span {
  border-color: transparent;
}

@media (min-width: 50em) {
  #page-iss nav, #page-sub nav, #page-ord nav {
    position: static;
  }
  #page-iss nav.shrink, #page-sub nav.shrink, #page-ord nav.shrink {
    padding: 40px 0;
    background: transparent;
    box-shadow: none;
  }
  #page-iss section:first-of-type, #page-sub section:first-of-type, #page-ord section:first-of-type {
    padding-top: 1.5625em;
  }
}

/**
 * @section Buttons
 * Styling for CSS buttons.
 */
button {
  /* cursor: default; */
  font: inherit;
  line-height: normal;
  overflow: visible;
  -webkit-appearance: button;
  /* for input */
  -webkit-user-select: none;
  /* for button */
  -moz-user-select: none;
  -ms-user-select: none;
  margin: 0;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.btn {
  cursor: default;
  text-align: center;
  line-height: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/**
 * Primary buttons
 */
.btn {
  background: rgba(0, 0, 0, 0.8);
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  padding: 0.3125em 0.9375em 0.5em 0.9375em;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
.btn:hover, a .btn:hover, .btn:focus, a .btn:focus, .btn:active, a .btn:active, .btn.active {
  background: black;
  border-color: black;
  color: white;
  text-decoration: none;
}
.btn:active, a .btn:active, .btn.active {
  box-shadow: none;
}

/**
 * Other button styles
 */
.btn-inline {
  margin-top: 10px;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid rgba(0, 0, 0, 0.8);
  color: rgba(0, 0, 0, 0.8);
  box-shadow: none;
}
.btn-secondary:hover, a .btn-secondary:hover, .btn-secondary:focus, a .btn-secondary:focus, .btn-secondary:active, a .btn-secondary:active, .btn-secondary.active {
  background: transparent;
  border-color: black;
  color: black;
}

.btn-gray, .btn-gray:hover {
  color: rgba(0, 0, 0, 0.1);
  background: none;
  border-color: rgba(0, 0, 0, 0.1);
  cursor: default;
  box-shadow: none;
}

.btn-large {
  padding: 10px 20px 13px 20px;
}

.btn-xlarge {
  padding: 15px 20px 18px 20px;
}

.btn-pulse {
  animation: pulse 2s infinite;
}

.btn-mini {
  background: transparent;
  padding: 0 0 2px 0;
  color: rgba(0, 0, 0, 0.8);
  box-shadow: none;
}
.btn-mini:hover, .btn-mini:focus, .btn-mini:active {
  background: transparent;
  color: black;
  text-decoration: underline;
  border-color: transparent;
}

.btn-share svg {
  width: 16px;
  margin: 0 5px -2px -2px;
}

/**
 * Active state
 */
.btn:active,
.btn.active {
  outline: 0;
}

/**
 * Disabled state
 */
.btn.disabled,
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

/**
 * Block-level buttons
 */
.btn-block,
input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  display: block;
  margin-right: 0;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  border-radius: 1px;
}

/* Pulse animation */
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
/*! Flickity v2.0.5
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flickity-prev-next-button:hover {
  background: black;
}

.flickity-prev-next-button:focus {
  outline: none;
}

.flickity-prev-next-button.previous {
  left: 0;
}

.flickity-prev-next-button.next {
  right: 0;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 25%;
  top: 25%;
  width: 50%;
  height: 50%;
}

.flickity-prev-next-button .arrow {
  fill: rgba(255, 255, 255, 0.9);
}
.flickity-prev-next-button .arrow:hover {
  fill: white;
}

/* ---- slider styles ---- */
.spreads {
  background: #f1f1f1;
  padding: 2.34375em 0;
}
.spreads img {
  height: 250px;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 1.5625em 3.125em 1.5625em 0;
}
@media (min-width: 50em) {
  .spreads img {
    height: 500px;
  }
}

.slider-full img {
  height: 250px;
  display: block;
  margin: 0 1.5625em 0 0;
}
@media (min-width: 50em) {
  .slider-full img {
    height: 500px;
  }
}

.slider-small img {
  height: 250px;
  display: block;
  margin: 0 2px 0 0;
}
@media (min-width: 50em) {
  .slider-small img {
    height: 365px;
  }
}

.slider-giant img {
  height: 250px;
  display: block;
  margin: 0 1.5625em 0 0;
}
@media (min-width: 50em) {
  .slider-giant img {
    height: auto;
  }
}

/**
 * @section Forms
 * Styling for form elements.
 */
fieldset {
  border: 0;
  padding: 0;
}

legend,
label {
  display: block;
  margin: 0 0 0.3125em;
  padding: 0;
  color: rgba(0, 0, 0, 0.5);
}

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
input,
optgroup,
select,
textarea {
  color: rgba(0, 0, 0, 0.8);
  /* 1 */
  font: inherit;
  font-size: 100%;
  line-height: normal;
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button {
  text-transform: none;
}
button:focus {
  outline: none;
}
button:active {
  box-shadow: none;
}

input,
select,
textarea {
  border-radius: 1px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  display: block;
  width: 100%;
  background: white;
  padding: 0.1875em 0.5em 0.3125em 0.5em;
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  -webkit-appearance: none;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

textarea {
  height: 12em;
  overflow: auto;
}

[type=image],
[type=checkbox],
[type=radio] {
  cursor: pointer;
  display: inline-block;
  height: auto;
  margin-bottom: 0;
  margin-right: 5px;
  padding: 0;
  width: auto;
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 0, 0, 0.5);
  outline: 0;
}

input:disabled {
  background: transparent;
  color: rgba(0, 0, 0, 0.5);
}

[type=file]:focus,
[type=checkbox]:focus {
  outline: none;
  outline: 0.3125em auto -webkit-focus-ring-color;
  outline-offset: -0.125em;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.3);
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3);
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(0, 0, 0, 0.3);
}

:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3);
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Inline inputs
 */
.input-inline {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}

.input-oneline {
  position: relative;
}
.input-oneline button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  line-height: 1;
  border-radius: 1px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../images/arrow-down.svg") 97%/15% no-repeat white;
  background-size: 12px auto;
}

/*target Internet Explorer 9 and Internet Explorer 10:*/
@media screen and (min-width: 0\0 ) {
  select {
    background: none;
    padding: 5px;
  }
}
.form-error {
  position: relative;
}

.form-error input, .form-error select {
  border-color: #d55c62;
}

.validetta-bubble {
  position: absolute;
  background-color: #d55c62;
  color: white;
  padding: 0px 5px 2px 5px;
  z-index: 10;
  bottom: -14px;
  font-size: 13px;
  font-weight: 600;
}

.validetta-inline,
.validetta-bubble {
  display: block;
}

/**
 * @section SVGs
 * SVG icon sprite styling.
 * @link http://css-tricks.com/svg-sprites-use-better-icon-fonts/
 * @link http://css-tricks.com/svg-use-external-source/
 */
/**
 * Basic styles
 * Only displayed when SVGs are supported to avoid large empty spaces
 */
svg {
  display: inline-block !important;
  fill: currentColor;
}

/**
 * Hide fallback text if browser supports SVG
 */
/**
 * @section Tables
 * Styling for tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1.5625em;
  max-width: 100%;
  width: 100%;
}

th,
td {
  text-align: left;
  padding: 0.5em;
}

th {
  border-bottom: 0.125em solid rgba(0, 0, 0, 0.3);
  font-weight: bold;
  vertical-align: bottom;
}

td {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  vertical-align: top;
}

/**
 * Adds zebra striping
 */
.table-striped tbody tr:nth-child(odd) {
  background-color: rgba(18, 18, 18, 0.3);
}

/**
 * Reduces padding on condensed tables
 */
.table-condensed th,
.table-condensed td {
  padding: 0.25em;
}

/**
 * Pure CSS responsive tables
 * Adds label to each cell using the [data-label] attribute
 * @link https://techblog.livingsocial.com/blog/2015/04/06/responsive-tables-in-pure-css/
 */
@media (max-width: 50em) {
  .table-responsive thead {
    display: none;
    visibility: hidden;
  }
  .table-responsive tr {
    border-top: 1px solid rgba(8, 8, 8, 0.3);
    display: block;
    padding: 0.5em;
  }
  .table-responsive td {
    border: 0;
    display: block;
    padding: 0.25em;
  }
  .table-responsive td:before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
  }
}
/**
 * @section Overrides
 * Nudge and tweak alignment, spacing, and visibility.
 */
/**
 * Text sizes
 */
.text-small {
  font-size: 0.875em;
}

.text-large {
  font-size: 1.3125em;
  line-height: 1.4;
}
@media (min-width: 50em) {
  .text-large {
    font-size: 1.5625em;
  }
}

.text-xlarge {
  font-size: 1.75em;
  line-height: 1.4;
}
@media (min-width: 50em) {
  .text-xlarge {
    font-size: 1.875em;
  }
}

.text-strong {
  font-weight: 600;
}

.text-normal {
  font-weight: normal !important;
}

.text-muted {
  color: rgba(0, 0, 0, 0.5);
}
.text-muted a {
  color: rgba(0, 0, 0, 0.5);
}
.text-muted a:hover {
  color: rgba(0, 0, 0, 0.8);
}

.text-linethrough {
  text-decoration: line-through;
}

.text-very-muted {
  color: rgba(0, 0, 0, 0.3);
}
.text-very-muted a {
  color: rgba(0, 0, 0, 0.3);
}
.text-very-muted a:hover {
  color: rgba(0, 0, 0, 0.5);
}

.text-white {
  color: rgba(255, 255, 255, 0.9);
}
.text-white a {
  color: rgba(255, 255, 255, 0.9);
}
.text-white a:hover {
  color: white;
}

h1 .text-white {
  color: white;
}

.text-red, .ccform .form-error label, .text-red a, .ccform .form-error label a, a.text-red {
  color: #d55c62;
}

.text-green, .text-green a, a.text-green {
  color: #299074;
}

/**
 * Text alignment
 */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

@media (min-width: 50em) {
  .text-right-medium {
    text-align: right;
  }
}
/**
 * Opacity
 */
.opacity-half {
  opacity: 0.5;
}

/**
 * Floats
 */
.float-left {
  float: left;
}

.float-center {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.float-right {
  float: right;
}

.float-clear {
  clear: both;
  float: none;
}

/**
 * Margins
 */
.no-margin-top {
  margin-top: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.margin-top {
  margin-top: 1.5625em;
}

.margin-bottom {
  margin-bottom: 1.5625em;
}

.margin-bottom-small {
  margin-bottom: 0.78125em;
}

/**
 * Padding
 */
.no-padding {
  padding: 0 !important;
}

.no-padding-top {
  padding-top: 0;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.padding-top {
  padding-top: 1.5625em;
}

.padding-top-small {
  padding-top: 0.78125em;
}

.padding-bottom {
  padding-bottom: 1.5625em;
}

.padding-bottom-small {
  padding-bottom: 0.5em;
}

/**
 * Visibility
 */
.hide-mobile {
  display: none;
}
@media (min-width: 50em) {
  .hide-mobile {
    display: inherit;
  }
}

.hide-desktop {
  display: inherit;
}
@media (min-width: 50em) {
  .hide-desktop {
    display: none;
  }
}

.hide {
  display: none;
}

/**
 * Visually hide an element, but leave it available for screen readers
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 * @link http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.screen-reader, .svg-fallback-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/**
 * Extends the .screen-reader class to allow the element to be focusable when navigated to via the keyboard
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 * @link https://www.drupal.org/node/897638
 */
.screen-reader-focusable:active,
.screen-reader-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/**
 * @workaround
 * @affected IE 8/9/10
 * @link http://juicystudio.com/article/screen-readers-display-none.php
 */
[hidden], template {
  display: none;
  visibility: hidden;
}

/**
 * Contain floats
 * The space content is one way to avoid an Opera bug when the `contenteditable` attribute is included anywhere else in the document.
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 */
.clearfix:before, .container:before,
.row:before,
.clearfix:after,
.container:after,
.row:after {
  display: table;
  content: " ";
}

.clearfix:after, .container:after,
.row:after {
  clear: both;
}

/**
 * @section Print
 * Styling for printed content. Adapted from HTML5BP.
 * @link http://html5boilerplate.com
 */
@media print {
  /**
   * Universal selector.
   * Reset all content to transparent background, black color, and remove box and text shadows.
   */
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /**
   * Specifies page margin
   */
  @page {
    margin: 0.5cm;
  }
  /**
   * Underline all links
   */
  a,
a:visited {
    text-decoration: underline;
  }

  /**
   * Show URL after links
   */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /**
   * Don't show URL for internal links
   */
  a[href^="#"]:after {
    content: "";
  }

  /**
   * Specifies the minimum number of lines to print at the top and bottom of a page.
   */
  p,
h1, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /**
   * Avoid inserting a page break after headers
   */
  h1, h2, h3 {
    page-break-after: avoid;
  }

  /**
   * Change border color on blockquotes and preformatted text.
   * Avoid page breaks inside the content
   */
  pre,
blockquote {
    border-color: #999;
    page-break-inside: avoid;
  }

  /**
   * Displayed as a table header row group
   */
  thead {
    display: table-header-group;
  }

  /**
   * Avoid inserting a page break inside table rows and images
   */
  tr,
img {
    page-break-inside: avoid;
  }
}
.lined {
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  padding-left: 0.78125em;
}

.line {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5625em;
  margin-bottom: 3.125em;
}

@media (min-width: 50em) {
  .columns-three {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}

.group {
  background: #f1f1f1;
  padding: 0.9375em 1.171875em 0.703125em 1.171875em;
}
@media (min-width: 50em) {
  .group {
    padding: 1.25em 1.5625em 0.9375em 1.5625em;
  }
}

.anchor {
  display: block;
  position: relative;
  top: -75px;
  visibility: hidden;
}

#page-hom .release {
  margin-bottom: 1.5625em;
}
#page-hom .release .row {
  margin-bottom: 0;
}
#page-hom .release .left a img, #page-hom .release .right a img {
  float: left;
  width: 49%;
  height: 20vh;
  object-fit: cover;
}
#page-hom .release .left a:first-of-type img, #page-hom .release .right a:first-of-type img {
  margin-right: 2%;
}
#page-hom .release .cover a img {
  display: block;
  margin: 0.390625em 0;
}
#page-hom .release span {
  display: none;
}
#page-hom img.why {
  width: 68%;
  display: block;
  margin: 0 auto;
}
@media (min-width: 50em) {
  #page-hom .release {
    margin-top: 5.46875em;
    margin-bottom: 4.6875em;
  }
  #page-hom .release .left a img, #page-hom .release .right a img {
    height: auto;
    object-fit: fill;
  }
  #page-hom .release .left a:first-of-type img {
    margin-bottom: 0.78125em;
    margin-right: 0;
    float: right;
    margin-top: 1.5625em;
    width: 85%;
  }
  #page-hom .release .left a:nth-of-type(2) img {
    width: 100%;
  }
  #page-hom .release .right a img {
    width: 70%;
  }
  #page-hom .release .right a:first-of-type img {
    margin-top: 0.78125em;
    margin-bottom: 0.78125em;
    margin-right: 0;
    width: 100%;
  }
  #page-hom .release .right span {
    display: inline-block;
    z-index: 1;
    font-weight: bold;
    padding: 3px 12px 6px 20px;
    background: #f1f1f1;
    margin-top: 1.5625em;
  }
  #page-hom .release .cover {
    position: relative;
    min-height: 1px;
  }
  #page-hom .release .cover a {
    display: block;
    position: absolute;
    left: 50%;
    top: -3.125em;
    width: 125%;
    max-width: none !important;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    transition: all 0.2s;
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.3);
  }
  #page-hom .release .cover a:hover {
    -webkit-transform: translateX(-50%) scale(1.05);
    transform: translateX(-50%) scale(1.05);
  }
  #page-hom .release .cover a img {
    display: block;
    margin: 0;
  }
}
#page-hom .release .cover a {
  width: 117%;
}

.about {
  background-color: #dbd7d0;
}
@media (min-width: 50em) {
  .about {
    padding-top: 2.34375em;
    padding-bottom: 2.34375em;
  }
}

.reviews {
  -webkit-columns: 3;
  -moz-columns: 3;
  columns: 3;
  column-gap: 1.5625em;
  margin: 0 1.5625em 1.5625em 1.5625em;
}
@media (min-width: 65em) {
  .reviews {
    -webkit-columns: 5;
    -moz-columns: 5;
    columns: 5;
  }
}
.reviews div {
  width: 100%;
  display: inline-block;
  padding: 0.9375em 1.09375em;
  background-color: #f1f1f1;
  margin-bottom: 0.78125em;
  margin-top: 0.78125em;
}
.reviews div p {
  margin-bottom: 0;
}
.reviews div p:last-of-type {
  margin-top: 0.78125em;
}
.reviews div svg {
  height: 1em;
  display: inline-block;
  margin-top: 5px;
  opacity: 0.2;
  float: right;
}

#page-mag section:first-of-type, #page-mag section:last-of-type {
  background: rgba(0, 0, 0, 0.2);
}
@media (min-width: 30em) {
  #page-mag section:first-of-type .intro, #page-mag section:last-of-type .intro {
    margin-top: 3.125em;
  }
}
#page-mag .covers p {
  position: relative;
  text-align: center;
}
#page-mag .covers p a {
  display: inline-block;
}
#page-mag .covers p a.sold {
  filter: grayscale(1);
}
#page-mag .covers p a.sold:hover {
  filter: none;
}
#page-mag .covers p a img {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.1s ease-in-out;
}
#page-mag .covers p a:hover img {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
}

#page-issue section:first-of-type .intro em {
  font-style: normal;
  color: #fff;
}
#page-issue section:first-of-type .action {
  text-align: center;
}
@media (min-width: 50em) {
  #page-issue section:first-of-type .action {
    text-align: left;
  }
}
#page-issue section:first-of-type li {
  padding-bottom: 0.9375em;
}
#page-issue section:first-of-type .cover {
  text-align: center;
}
@media (min-width: 50em) {
  #page-issue section:first-of-type .cover {
    text-align: right;
  }
}
#page-issue section:first-of-type .cover img {
  width: 98%;
  box-shadow: 0 0 55px rgba(0, 0, 0, 0.3);
}
#page-issue .cta {
  padding: 1.5625em 1.5625em 0.3125em 1.5625em;
  margin-top: 0.625em;
  background-color: #f1f1f1;
  position: relative;
}
#page-issue .cta:hover .cover {
  transform: scale(1.03);
}
#page-issue .cta .cover {
  margin-bottom: 1.5625em;
  transition: transform 0.1s ease-in-out;
}
@media (min-width: 50em) {
  #page-issue .cta .cover {
    position: absolute;
    top: -25px;
    left: 2.3%;
    width: 33%;
  }
  #page-issue .cta .cover img {
    display: block;
    margin: 20px 0 0 30px;
    width: 72%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
    z-index: 50;
  }
}
#page-issue .tabs li {
  padding: 0;
  display: inline-block;
  width: 49%;
  margin-right: 2%;
  float: left;
  display: block;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
#page-issue .tabs li:nth-child(even) {
  margin-right: 0;
}
#page-issue .tabs li strong {
  padding: 10px 0;
  display: block;
}
#page-issue .tabs li img {
  display: none;
  width: 90%;
  margin: 0 auto;
}
#page-issue .tabs li.current, #page-issue .tabs li.current:hover {
  color: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.8);
}
#page-issue .tabs li.current img, #page-issue .tabs li.current:hover img {
  opacity: 1;
}
@media (min-width: 50em) {
  #page-issue .tabs li {
    padding: 0;
    display: inline-block;
    width: 24.25%;
    margin-right: 1%;
    float: left;
  }
  #page-issue .tabs li:nth-child(even) {
    margin-right: 1%;
  }
  #page-issue .tabs li:last-of-type {
    margin-right: 0;
  }
  #page-issue .tabs li img {
    display: block;
    opacity: 0.3;
  }
  #page-issue .tabs li:hover {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.3);
  }
  #page-issue .tabs li:hover img {
    opacity: 0.5;
  }
  #page-issue .tabs li.active, #page-issue .tabs li.active:hover {
    color: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.8);
  }
  #page-issue .tabs li.active img, #page-issue .tabs li.active:hover img {
    opacity: 1;
  }
}
#page-issue .tab-content {
  display: none;
}
#page-issue .current {
  display: block;
}
#page-issue .quote {
  display: none;
}
@media (min-width: 50em) {
  #page-issue .quote {
    display: inherit;
  }
  #page-issue .quote p:first-of-type {
    position: relative;
    height: 0;
  }
  #page-issue .quote p:first-of-type span {
    position: absolute;
    width: 80%;
    top: 2.96875em;
    left: 5%;
    z-index: 10;
  }
  #page-issue .quote img {
    opacity: 0.3;
    width: 75%;
    filter: grayscale(100%);
  }
  #page-issue .quote img:hover {
    opacity: 1;
    filter: none;
    z-index: 11;
    position: relative;
  }
}
#page-issue .toc {
  -webkit-columns: 300px 3;
  -moz-columns: 300px 3;
  columns: 300px 3;
  -webkit-column-gap: 2.34375em;
  -moz-column-gap: 2.34375em;
  column-gap: 2.34375em;
}
#page-issue .toc p {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 0;
  padding-bottom: 1.5625em;
}
#page-issue .sponsors {
  text-align: center;
  padding: 1.5625em 0;
}
#page-issue .sponsors a {
  display: inline-block;
  opacity: 0.8;
  margin: 1.5625em 0.78125em;
}
#page-issue .sponsors a img {
  vertical-align: middle;
  width: 135px;
  height: 60px;
}
@media (min-width: 50em) {
  #page-issue .sponsors a {
    margin: 2.34375em 2.34375em;
  }
  #page-issue .sponsors a img {
    width: 190px;
    height: 75px;
  }
}
#page-issue .sponsors a:hover {
  opacity: 1;
}

#page-dis section:first-of-type {
  background: #f5b9a1;
}
#page-dis .quotes .icon svg {
  width: 0.9em;
  display: inline-block;
  margin-bottom: -2px;
  margin-left: 5px;
  opacity: 0.3;
}

#page-abo .text-xlarge {
  padding: 0 15%;
}

#page-con .list-lined span:last-of-type {
  display: block;
}
#page-con .connect a {
  display: block;
  text-decoration: none;
  margin: 0 0 1.5625em 0;
}
#page-con .connect a svg {
  width: 60px;
}

#page-pur .value {
  position: relative;
}
#page-pur .value span {
  font-size: 5em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  display: block;
  margin: 0 0 -0.6em 0.2em;
}

#page-pro .specs strong {
  display: block;
  float: left;
  width: 30%;
}
#page-pro .specs span {
  width: 65%;
  display: block;
  float: right;
}

#page-sto .countries {
  margin-bottom: 3.125em;
}

#email-signup {
  background: #f5b9a1;
}

#page-blo {
  background: white;
}
#page-blo section:first-of-type {
  background: #c6dbd1;
}
#page-blo #pagination {
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  padding: 1.5625em 0 0 0;
}
#page-blo .spacer {
  padding-top: 1.40625em;
  padding-bottom: 2.1875em;
}
#page-blo .spacer span {
  display: block;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
}
#page-blo h1.cat {
  color: #c6dbd1;
}
#page-blo .post h1 {
  margin-top: -5px;
}
#page-blo .post figure {
  margin-bottom: 1.5625em;
}
#page-blo .post .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
#page-blo .post .video iframe, #page-blo .post .video object, #page-blo .post .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#page-blo .post hr {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#page-blo .meta {
  padding-top: 0.15625em;
}
#page-blo .meta svg {
  height: 20px;
  display: inline-block;
  margin: 0 5px -5px 0;
}
@media (min-width: 50em) {
  #page-blo .sidebar {
    transition: opacity 0.2s ease-in-out;
    opacity: 0.55;
  }
  #page-blo .sidebar:hover {
    opacity: 1;
  }
  #page-blo .sidebar h2:first-of-type {
    margin-top: 0;
  }
  #page-blo blockquote {
    margin: 0 0 1.5625em 0;
    border-left: 1.5625em solid #f1f1f1;
    padding-left: 1.5625em;
  }
}

#page-spo {
  background: #f1f1f1;
}
#page-spo .box {
  background: rgba(255, 255, 255, 0.9);
}
#page-spo .inclusion {
  padding: 1.25em 1.5625em 0 1.5625em;
  position: relative;
}
@media (min-width: 50em) {
  #page-spo .plus::after {
    content: "+";
    font-size: 2em;
    color: rgba(0, 0, 0, 0.3);
    position: absolute;
    right: -1.171875em;
    top: 0.1em;
    display: block;
  }
}
#page-spo ul.rates strong {
  display: block;
  float: right;
  padding: 0 0 0 10px;
}

#page-abo,
#page-sto,
#page-faq,
#page-pur,
#page-pro,
#page-pat,
#page-con {
  background: #dbd7d0;
}
#page-abo section:first-of-type,
#page-sto section:first-of-type,
#page-faq section:first-of-type,
#page-pur section:first-of-type,
#page-pro section:first-of-type,
#page-pat section:first-of-type,
#page-con section:first-of-type {
  padding: 0;
  height: 48px;
}
#page-abo section:first-of-type > div,
#page-sto section:first-of-type > div,
#page-faq section:first-of-type > div,
#page-pur section:first-of-type > div,
#page-pro section:first-of-type > div,
#page-pat section:first-of-type > div,
#page-con section:first-of-type > div {
  display: none;
}
@media (min-width: 50em) {
  #page-abo section:first-of-type,
#page-sto section:first-of-type,
#page-faq section:first-of-type,
#page-pur section:first-of-type,
#page-pro section:first-of-type,
#page-pat section:first-of-type,
#page-con section:first-of-type {
    background: white;
    height: auto;
    padding-top: 7.375em;
  }
  #page-abo section:first-of-type > div,
#page-sto section:first-of-type > div,
#page-faq section:first-of-type > div,
#page-pur section:first-of-type > div,
#page-pro section:first-of-type > div,
#page-pat section:first-of-type > div,
#page-con section:first-of-type > div {
    display: block;
  }
  #page-abo section:first-of-type .subnav-about,
#page-sto section:first-of-type .subnav-about,
#page-faq section:first-of-type .subnav-about,
#page-pur section:first-of-type .subnav-about,
#page-pro section:first-of-type .subnav-about,
#page-pat section:first-of-type .subnav-about,
#page-con section:first-of-type .subnav-about {
    display: block;
    padding-top: 3.125em;
    line-height: 1.2em;
  }
  #page-abo section:first-of-type .subnav-about li,
#page-sto section:first-of-type .subnav-about li,
#page-faq section:first-of-type .subnav-about li,
#page-pur section:first-of-type .subnav-about li,
#page-pro section:first-of-type .subnav-about li,
#page-pat section:first-of-type .subnav-about li,
#page-con section:first-of-type .subnav-about li {
    margin-right: 5px;
  }
  #page-abo section:first-of-type .subnav-about a,
#page-sto section:first-of-type .subnav-about a,
#page-faq section:first-of-type .subnav-about a,
#page-pur section:first-of-type .subnav-about a,
#page-pro section:first-of-type .subnav-about a,
#page-pat section:first-of-type .subnav-about a,
#page-con section:first-of-type .subnav-about a {
    padding: 4px 2px;
  }
  #page-abo section:first-of-type .subnav-about a span,
#page-sto section:first-of-type .subnav-about a span,
#page-faq section:first-of-type .subnav-about a span,
#page-pur section:first-of-type .subnav-about a span,
#page-pro section:first-of-type .subnav-about a span,
#page-pat section:first-of-type .subnav-about a span,
#page-con section:first-of-type .subnav-about a span {
    display: inline-block;
    border-bottom: 2px solid transparent;
  }
  #page-abo section:first-of-type .subnav-about a:hover span,
#page-sto section:first-of-type .subnav-about a:hover span,
#page-faq section:first-of-type .subnav-about a:hover span,
#page-pur section:first-of-type .subnav-about a:hover span,
#page-pro section:first-of-type .subnav-about a:hover span,
#page-pat section:first-of-type .subnav-about a:hover span,
#page-con section:first-of-type .subnav-about a:hover span {
    border-color: rgba(0, 0, 0, 0.8);
  }
  #page-abo section:first-of-type .subnav-about .support,
#page-sto section:first-of-type .subnav-about .support,
#page-faq section:first-of-type .subnav-about .support,
#page-pur section:first-of-type .subnav-about .support,
#page-pro section:first-of-type .subnav-about .support,
#page-pat section:first-of-type .subnav-about .support,
#page-con section:first-of-type .subnav-about .support {
    display: none;
  }
}
@media (min-width: 50em) and (min-width: 65em) {
  #page-abo section:first-of-type .subnav-about .support,
#page-sto section:first-of-type .subnav-about .support,
#page-faq section:first-of-type .subnav-about .support,
#page-pur section:first-of-type .subnav-about .support,
#page-pro section:first-of-type .subnav-about .support,
#page-pat section:first-of-type .subnav-about .support,
#page-con section:first-of-type .subnav-about .support {
    display: inline-block;
    float: right;
  }
}

#page-abo section .subnav-about .sub-abo a span,
#page-sto section .subnav-about .sub-sto a span,
#page-faq section .subnav-about .sub-faq a span,
#page-pur section .subnav-about .sub-pur a span,
#page-pro section .subnav-about .sub-pro a span,
#page-pat section .subnav-about .sub-pat a span,
#page-con section .subnav-about .sub-con a span {
  border-color: rgba(0, 0, 0, 0.8);
}

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 999;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
}
.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}
.blocker.behind {
  background-color: transparent;
}

.modal {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 1000;
  max-width: 500px;
  box-sizing: border-box;
  width: 100%;
  background: white;
  border-radius: 2px;
  text-align: left;
}
.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  z-index: 1001;
  right: -12.5px;
  display: block;
  width: 30px;
  text-align: center;
  height: 30px;
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-decoration: none;
  background: black;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.modal-spinner {
  display: none;
  position: fixed;
  text-align: center;
  top: 50%;
  width: 100%;
  margin-left: 0px;
  margin-top: -21px;
}
.modal-spinner::before {
  content: "Loading...";
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 7px 18px 10px 18px;
  display: inline-block;
}

footer {
  background: rgba(0, 0, 0, 0.8);
}
footer .logo {
  width: 70px;
  display: block;
}
footer .social a {
  display: inline-block;
  margin: 5px 7px 0 0;
}
footer .social a svg {
  height: 20px;
}
footer .mchimp {
  margin: 0 0 1.5625em;
}
footer .mchimp span {
  font-weight: bold;
  display: block;
  margin-bottom: 0.46875em;
}
footer .mchimp input {
  border-color: rgba(0, 0, 0, 0.6);
}
footer .mchimp ::-webkit-input-placeholder, footer .mchimp ::-moz-placeholder {
  color: black;
}

.videowrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 51.6%;
  /* 56.25% is  16:9 */
  padding-top: 15px;
  height: 0;
}
@media (min-width: 50em) {
  .videowrap {
    padding-top: 25px;
  }
}
.videowrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
