@charset "UTF-8";
/**
 * style.scss
 *
 * Author: Marian Friedmann
 *
 */
/**
 * basicss overrides
 *
 * any defaults in basicss/basicss/_settings.scss
 * may be overridden...
 *
 * e.g. $prototyping: true;
 */
/**
 * basicss import
 */
/**
 * basicss.scss
 *
 * Author: Marian Friedmann
 *
 */
/* ====================================================
   Reset, Defaults, Mixins
   ==================================================== */
/**
 * Reset, Default settings
 */
/**
 * _settings.scss
 *
 * Author: Marian Friedmann
 */
/**
 * Default objects
 */
/**
 * Default helper
 */
/**
 * Default fonts
 */
/**
 * Default font size
 */
/**
 * Default headings
 */
/**
 *  Default spacing
 */
/**
 * Default breakpoints
 */
/**
 * Default constrains
 */
/**
 * Arrows
 */
/**
 * Global Variables
 */
/**
 * Mixins
 */
/**
 * _media.scss
 *
 * Author: Marius Scheel
 *
 * Usage:
 * @include media(300px);
 * or @include media(300px, false);
 * or @include media(max-width 300px);
 * or @include media(100px max-width 300px);
 * or @include media(max-width 100px max-width 300px);
 * or @include media(max-width 100px max-width 300px, true);
 *
 */
/**
 * _hdpi.scss
 *
 * Author: Marius Scheel
 *
 * defaults to 1.3 to include Google Nexus 7
 * adapted from bourbon:
 * https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_hidpi-media-query.scss
 *
 * Usage:
 * @include hdpi {
 *  // your css for hdpi displays
 * };
 *
 * you can use a custom ratio, if you like:
 * @include hdpi(1.5) {
 *  // your css
 * };
 */
/**
 * _retina-image.scss
 *
 * Author: Marius Scheel
 *
 * Usage:
 * .hero {
 *  @include retina-image("../path/to/hero", 200px 400px);
 * }
 *
 * to use a specific filename:
 * .hero {
 *  @include retina-image("../path/to/hero", 200px 400px, "../path/to/retina-hero");
 * }
 *
 * modified version of bourbon's retina-image mixin.
 * The mixin uses a @2x.png retina filename by default.
 * https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_retina-image.scss
 */
/**
 * _font-size.scss
 *
 * Author: Marian Friedmann
 *
 */
/**
 * _px-to-rem.scss
 *
 * Author: Marian Friedmann
 *
 * Usage:
 * .element {
 *   @include px-to-rem(padding, 0 24px)
 * }
 *
 * Output:
 * .element {
 *   padding: 0 24px;
 *   padding: 0 1.5rem;
 * }
 *
 */
/**
 * _clearfix.scss
 *
 * Author: Marian Friedmann
 *
 * Usage:
 * .element {
 *   @include clearfix;
 * }
 *
 */
/**
 * _ellipsis.scss
 *
 * Author: Marian Friedmann
 *
 * ellipsis mixin
 *
 */
/* ====================================================
   Base Styles
   ==================================================== */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * 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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 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.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  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,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  width: 100%;
  line-height: 48px;
  height:48px;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 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`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * 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;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/**
 * _main.scss
 *
 * Author: Marian Friedmann
 *
 */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

/**
 * _baseline.scss
 *
 * Author: Marian Friedmann
 *
 */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6,
ul, ol, dl,
blockquote, p, address,
table,
fieldset, figure,
pre {
  margin: 0 0 16px;
  margin: 0 0 1rem;
}

ul, ol, dd {
  margin-left: 16px;
  margin-left: 1rem;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * _typo.scss
 *
 * Author: Marian Friedmann
 *
 */
html {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  line-height: 1.5;
}

h1,
.heading-1 {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1;
}

h2,
.heading-2 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.3333333333;
}

h3,
.heading-3 {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.5;
}

h4,
.heading-4 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}

h5,
.heading-5 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

h6,
.heading-6 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

/**
 * _links.scss
 *
 * Author: Marian Friedmann
 *
 */
a {
  color: #FF810C;
  text-decoration: none;
}

a:hover {
  color: #FF810C;
  text-decoration: underline;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

/**
 * media-src.scss
 *
 * Author: Marian Friedmann
 *
 */
object,
embed,
video,
img {
  max-width: 100%;
  height: auto;
}

/**
 * text styles to offset alt text
 */
img {
  color: #c00;
}

/**
 * no fluid images, when width or height are set
 */
img[width],
img[height] {
  max-width: none;
}

/* ====================================================
   Objects
   ==================================================== */
/**
 * _grid.scss
 *
 * Author: Marian Friedmann
 *
 * Usage:
 * <div class="grid">
 *   <div class="grid__item  width--1of1  width-tab--1of3  width-desk--1of4">
 *       ...
 *   </div><!--
 *--><div class="grid__item  width--1of1  width-tab--2of3  width-desk--3of4">
 *     <div class="grid">
 *       <div class="grid__item  width--1of1  width-tab--1of2">
 *           ...
 *       </div><!--
 *    --><div class="grid__item  width--1of1  width-tab--1of2">
 *           ...
 *       </div>
 *     </div>
 *   </div>
 * </div>
 *
 * the example above combines the grid items with the widths from helper/_width.scss
 */
.grid {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -16px;
  margin-left: -1rem;
}

.grid__item {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding-left: 16px;
  padding-left: 1rem;
}

/**
 * Reverse the order of grid items
 */
.grid--reversed {
  direction: rtl;
  text-align: left;
}

.grid--reversed > .grid__item {
  direction: ltr;
  text-align: left;
}

/**
 * Grid items without gutters
 */
.grid--flush {
  margin-left: 0;
}

.grid--flush > .grid__item {
  padding-left: 0;
}

/**
 * Grid size variations
 */
.grid--small {
  margin-left: -8px;
  margin-left: -0.5rem;
}

.grid--small > .grid__item {
  padding-left: 8px;
  padding-left: 0.5rem;
}

.grid--large {
  margin-left: -32px;
  margin-left: -2rem;
}

.grid--large > .grid__item {
  padding-left: 32px;
  padding-left: 2rem;
}

/**
 * _nav.scss
 *
 * Author: Marian Friedmann
 *
 * source: Nav abstraction from csswizardry.com/2011/09/the-nav-abstraction
 *
 * Can be used on an `ol` or `ul` and displays the list items horizontally.
 * Extend it with the following subclasses:
 *
 * - nav--stacked    // displays the list items vertically
 * - nav--banner     // centres the list
 * - nav--block      // expands list items clickable areas
 * - nav--fit        // forces the list to occupy the full width of its parent
 * - nav--keywords   // display as a list of keywords
 * - nav--breadcrumb // display as breadcrumbs
 * - nav--parallel   // display nav items with parallel separator
 *
 * Markup:
 *
 * <ul class="nav">
 *   <li><a href=#>Home</a></li>
 *   <li><a href=#>About</a></li>
 *   <li><a href=#>Portfolio</a></li>
 *   <li><a href=#>Contact</a></li>
 * </ul>
 */
.nav {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  margin: 0 0 1rem 0;
  /**
   * For IE 6/7 only
   * Include this rule to trigger hasLayout and contain floats.
   */
  *zoom: 1;
}

.nav:before, .nav:after {
  content: " ";
  display: table;
}

.nav:after {
  clear: both;
}

.nav > li,
.nav > li > a {
  display: inline-block;
}

/**
 * 'nav-stacked' displays the list items vertically
 */
.nav--stacked > li {
  display: list-item;
}

.nav--stacked > li > a {
  display: block;
}

/**
 * 'nav-banner' centres the list
 */
.nav--banner {
  text-align: center;
}

/**
 * 'nav--block' expands list items clickable areas with padding
 */
.nav--block {
  /* removes unnecessary whitespace */
  letter-spacing: -0.31em;
  word-spacing: -0.43em;
  white-space: nowrap;
}

.nav--block > li {
  letter-spacing: normal;
  word-spacing: normal;
  text-align: center;
}

.nav--block > li > a {
  padding: .75em;
  line-height: 1.5em;
}

/**
 * 'nav--fit' forces the list to occupy the full width of its parent
 */
.nav--fit {
  display: table;
  width: 100%;
}

.nav--fit > li {
  display: table-cell;
  text-align: center;
}

.nav--fit > li > a {
  display: block;
}

/**
 * 'nav--keywords' display as a list of keywords
 */
.nav--keywords > li:after {
  content: "\002C" "\00A0";
}

.nav--keywords > li:last-child:after {
  display: none;
}

/**
 * 'nav--breadcrumbs' display as breadcrumbs
 */
.nav--breadcrumbs > li:before {
  content: "\27E9" "\00A0";
}

.nav--breadcrumbs > li:first-child:before {
  display: none;
}

/**
 * 'nav--parallel' display with parallel separator
 */
.nav--parallel > li {
  padding-left: 4px;
  padding-left: 0.25rem;
}

.nav--parallel > li:before {
  content: "\007C";
  margin-right: 4px;
  margin-right: 0.25rem;
}

.nav--parallel > li:first-child {
  padding: 0;
}

.nav--parallel > li:first-child:before {
  display: none;
}

/**
 * _media.scss
 *
 * displays image and text side by side
 *
 * Example markup:
 *
    <div class="media media--small">
      <div class="media__img"></div>
      <div class="media__body"></div>
    </div>
 *
 * use the `.media--rev` modifier to reverse the the image location and put it to the right
 * use the `.media--small` modifier, to decrease the gutter width between image and content
 *
 * for more information have a look at:
 * stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 *
 */
.media {
  /**
   * For IE 6/7 only
   * Include this rule to trigger hasLayout and contain floats.
   */
  *zoom: 1;
  display: block;
}

.media:before, .media:after {
  content: " ";
  display: table;
}

.media:after {
  clear: both;
}

.media__img {
  float: left;
  margin-right: 16px;
  margin-right: 1rem;
}

.media__img > img {
  display: block;
}

.media__body {
  overflow: hidden;
}

.media__body,
.media__body > :last-child {
  margin-bottom: 0;
}

.media--rev > .media__img {
  float: right;
  margin-right: 0;
  margin-left: 16px;
  margin-left: 1rem;
}

.media--small .media__img {
  margin-right: 8px;
  margin-right: 0.5rem;
}

.media--small.media--rev > .media__img {
  margin-right: 0;
  margin-left: 8px;
  margin-left: 0.5rem;
}

/**
 * _bare-list.scss
 *
 */
.bare-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/**
 * _icon.scss
 *
 * Author: Marian Friedmann
 *
 * Usage:
 * <i class="icon [icon--nav-toggle]"></i>
 *
 */
/**
 * Alle icons werden als .svg exportiert unter
 * /assets/images/icons abgelegt und von grunt-svgmin
 * und grunt-grunticon weiterverarbeitet.
 *
 * Output unter /assets/images/icons/grunticon
 */
.icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  display: inline-block;
}

/**
 * Beispiel für ein Icon
 *
 * .icon--mobile-nav-toggle {
 *   @include background-svg("../images/nav-toggle");
 * }
 */
/* ====================================================
   Helper Classes
   ==================================================== */
/**
 * _spacing.scss
 *
 * Author: Marian Friedmann
 *
 * Usage:
 * <div class="space--top  space-tab--top-double">
 *   ...
 * </div>
 *
 */
/**
 * Basic & spacing
 */
.space--top-none {
  margin-top: 0px;
  margin-top: 0rem;
}

.space--left-none {
  margin-left: 0px;
  margin-left: 0rem;
}

.space--right-none {
  margin-right: 0px;
  margin-right: 0rem;
}

.space--bottom-none {
  margin-bottom: 0px;
  margin-bottom: 0rem;
}

.space--top-quarter {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.space--left-quarter {
  margin-left: 4px;
  margin-left: 0.25rem;
}

.space--right-quarter {
  margin-right: 4px;
  margin-right: 0.25rem;
}

.space--bottom-quarter {
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

.space--top-third {
  margin-top: 5.3333333333px;
  margin-top: 0.3333333333rem;
}

.space--left-third {
  margin-left: 5.3333333333px;
  margin-left: 0.3333333333rem;
}

.space--right-third {
  margin-right: 5.3333333333px;
  margin-right: 0.3333333333rem;
}

.space--bottom-third {
  margin-bottom: 5.3333333333px;
  margin-bottom: 0.3333333333rem;
}

.space--top-half {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.space--left-half {
  margin-left: 8px;
  margin-left: 0.5rem;
}

.space--right-half {
  margin-right: 8px;
  margin-right: 0.5rem;
}

.space--bottom-half {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.space--top {
  margin-top: 16px;
  margin-top: 1rem;
}

.space--left {
  margin-left: 16px;
  margin-left: 1rem;
}

.space--right {
  margin-right: 16px;
  margin-right: 1rem;
}

.space--bottom {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.space--top-double {
  margin-top: 32px;
  margin-top: 2rem;
}

.space--left-double {
  margin-left: 32px;
  margin-left: 2rem;
}

.space--right-double {
  margin-right: 32px;
  margin-right: 2rem;
}

.space--bottom-double {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.space--top-triple {
  margin-top: 48px;
  margin-top: 3rem;
}

.space--left-triple {
  margin-left: 48px;
  margin-left: 3rem;
}

.space--right-triple {
  margin-right: 48px;
  margin-right: 3rem;
}

.space--bottom-triple {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

@media screen and (min-width: 481px) {
  .space-tab--top-none {
    margin-top: 0px;
    margin-top: 0rem;
  }
  .space-tab--left-none {
    margin-left: 0px;
    margin-left: 0rem;
  }
  .space-tab--right-none {
    margin-right: 0px;
    margin-right: 0rem;
  }
  .space-tab--bottom-none {
    margin-bottom: 0px;
    margin-bottom: 0rem;
  }
  .space-tab--top-quarter {
    margin-top: 4px;
    margin-top: 0.25rem;
  }
  .space-tab--left-quarter {
    margin-left: 4px;
    margin-left: 0.25rem;
  }
  .space-tab--right-quarter {
    margin-right: 4px;
    margin-right: 0.25rem;
  }
  .space-tab--bottom-quarter {
    margin-bottom: 4px;
    margin-bottom: 0.25rem;
  }
  .space-tab--top-third {
    margin-top: 5.3333333333px;
    margin-top: 0.3333333333rem;
  }
  .space-tab--left-third {
    margin-left: 5.3333333333px;
    margin-left: 0.3333333333rem;
  }
  .space-tab--right-third {
    margin-right: 5.3333333333px;
    margin-right: 0.3333333333rem;
  }
  .space-tab--bottom-third {
    margin-bottom: 5.3333333333px;
    margin-bottom: 0.3333333333rem;
  }
  .space-tab--top-half {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
  .space-tab--left-half {
    margin-left: 8px;
    margin-left: 0.5rem;
  }
  .space-tab--right-half {
    margin-right: 8px;
    margin-right: 0.5rem;
  }
  .space-tab--bottom-half {
    margin-bottom: 8px;
    margin-bottom: 0.5rem;
  }
  .space-tab--top {
    margin-top: 16px;
    margin-top: 1rem;
  }
  .space-tab--left {
    margin-left: 16px;
    margin-left: 1rem;
  }
  .space-tab--right {
    margin-right: 16px;
    margin-right: 1rem;
  }
  .space-tab--bottom {
    margin-bottom: 16px;
    margin-bottom: 1rem;
  }
  .space-tab--top-double {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .space-tab--left-double {
    margin-left: 32px;
    margin-left: 2rem;
  }
  .space-tab--right-double {
    margin-right: 32px;
    margin-right: 2rem;
  }
  .space-tab--bottom-double {
    margin-bottom: 32px;
    margin-bottom: 2rem;
  }
  .space-tab--top-triple {
    margin-top: 48px;
    margin-top: 3rem;
  }
  .space-tab--left-triple {
    margin-left: 48px;
    margin-left: 3rem;
  }
  .space-tab--right-triple {
    margin-right: 48px;
    margin-right: 3rem;
  }
  .space-tab--bottom-triple {
    margin-bottom: 48px;
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 721px) {
  .space-lap--top-none {
    margin-top: 0px;
    margin-top: 0rem;
  }
  .space-lap--left-none {
    margin-left: 0px;
    margin-left: 0rem;
  }
  .space-lap--right-none {
    margin-right: 0px;
    margin-right: 0rem;
  }
  .space-lap--bottom-none {
    margin-bottom: 0px;
    margin-bottom: 0rem;
  }
  .space-lap--top-quarter {
    margin-top: 4px;
    margin-top: 0.25rem;
  }
  .space-lap--left-quarter {
    margin-left: 4px;
    margin-left: 0.25rem;
  }
  .space-lap--right-quarter {
    margin-right: 4px;
    margin-right: 0.25rem;
  }
  .space-lap--bottom-quarter {
    margin-bottom: 4px;
    margin-bottom: 0.25rem;
  }
  .space-lap--top-third {
    margin-top: 5.3333333333px;
    margin-top: 0.3333333333rem;
  }
  .space-lap--left-third {
    margin-left: 5.3333333333px;
    margin-left: 0.3333333333rem;
  }
  .space-lap--right-third {
    margin-right: 5.3333333333px;
    margin-right: 0.3333333333rem;
  }
  .space-lap--bottom-third {
    margin-bottom: 5.3333333333px;
    margin-bottom: 0.3333333333rem;
  }
  .space-lap--top-half {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
  .space-lap--left-half {
    margin-left: 8px;
    margin-left: 0.5rem;
  }
  .space-lap--right-half {
    margin-right: 8px;
    margin-right: 0.5rem;
  }
  .space-lap--bottom-half {
    margin-bottom: 8px;
    margin-bottom: 0.5rem;
  }
  .space-lap--top {
    margin-top: 16px;
    margin-top: 1rem;
  }
  .space-lap--left {
    margin-left: 16px;
    margin-left: 1rem;
  }
  .space-lap--right {
    margin-right: 16px;
    margin-right: 1rem;
  }
  .space-lap--bottom {
    margin-bottom: 16px;
    margin-bottom: 1rem;
  }
  .space-lap--top-double {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .space-lap--left-double {
    margin-left: 32px;
    margin-left: 2rem;
  }
  .space-lap--right-double {
    margin-right: 32px;
    margin-right: 2rem;
  }
  .space-lap--bottom-double {
    margin-bottom: 32px;
    margin-bottom: 2rem;
  }
  .space-lap--top-triple {
    margin-top: 48px;
    margin-top: 3rem;
  }
  .space-lap--left-triple {
    margin-left: 48px;
    margin-left: 3rem;
  }
  .space-lap--right-triple {
    margin-right: 48px;
    margin-right: 3rem;
  }
  .space-lap--bottom-triple {
    margin-bottom: 48px;
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .space-desk--top-none {
    margin-top: 0px;
    margin-top: 0rem;
  }
  .space-desk--left-none {
    margin-left: 0px;
    margin-left: 0rem;
  }
  .space-desk--right-none {
    margin-right: 0px;
    margin-right: 0rem;
  }
  .space-desk--bottom-none {
    margin-bottom: 0px;
    margin-bottom: 0rem;
  }
  .space-desk--top-quarter {
    margin-top: 4px;
    margin-top: 0.25rem;
  }
  .space-desk--left-quarter {
    margin-left: 4px;
    margin-left: 0.25rem;
  }
  .space-desk--right-quarter {
    margin-right: 4px;
    margin-right: 0.25rem;
  }
  .space-desk--bottom-quarter {
    margin-bottom: 4px;
    margin-bottom: 0.25rem;
  }
  .space-desk--top-third {
    margin-top: 5.3333333333px;
    margin-top: 0.3333333333rem;
  }
  .space-desk--left-third {
    margin-left: 5.3333333333px;
    margin-left: 0.3333333333rem;
  }
  .space-desk--right-third {
    margin-right: 5.3333333333px;
    margin-right: 0.3333333333rem;
  }
  .space-desk--bottom-third {
    margin-bottom: 5.3333333333px;
    margin-bottom: 0.3333333333rem;
  }
  .space-desk--top-half {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
  .space-desk--left-half {
    margin-left: 8px;
    margin-left: 0.5rem;
  }
  .space-desk--right-half {
    margin-right: 8px;
    margin-right: 0.5rem;
  }
  .space-desk--bottom-half {
    margin-bottom: 8px;
    margin-bottom: 0.5rem;
  }
  .space-desk--top {
    margin-top: 16px;
    margin-top: 1rem;
  }
  .space-desk--left {
    margin-left: 16px;
    margin-left: 1rem;
  }
  .space-desk--right {
    margin-right: 16px;
    margin-right: 1rem;
  }
  .space-desk--bottom {
    margin-bottom: 16px;
    margin-bottom: 1rem;
  }
  .space-desk--top-double {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .space-desk--left-double {
    margin-left: 32px;
    margin-left: 2rem;
  }
  .space-desk--right-double {
    margin-right: 32px;
    margin-right: 2rem;
  }
  .space-desk--bottom-double {
    margin-bottom: 32px;
    margin-bottom: 2rem;
  }
  .space-desk--top-triple {
    margin-top: 48px;
    margin-top: 3rem;
  }
  .space-desk--left-triple {
    margin-left: 48px;
    margin-left: 3rem;
  }
  .space-desk--right-triple {
    margin-right: 48px;
    margin-right: 3rem;
  }
  .space-desk--bottom-triple {
    margin-bottom: 48px;
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 1200px) {
  .space-desk-wide--top-none {
    margin-top: 0px;
    margin-top: 0rem;
  }
  .space-desk-wide--left-none {
    margin-left: 0px;
    margin-left: 0rem;
  }
  .space-desk-wide--right-none {
    margin-right: 0px;
    margin-right: 0rem;
  }
  .space-desk-wide--bottom-none {
    margin-bottom: 0px;
    margin-bottom: 0rem;
  }
  .space-desk-wide--top-quarter {
    margin-top: 4px;
    margin-top: 0.25rem;
  }
  .space-desk-wide--left-quarter {
    margin-left: 4px;
    margin-left: 0.25rem;
  }
  .space-desk-wide--right-quarter {
    margin-right: 4px;
    margin-right: 0.25rem;
  }
  .space-desk-wide--bottom-quarter {
    margin-bottom: 4px;
    margin-bottom: 0.25rem;
  }
  .space-desk-wide--top-third {
    margin-top: 5.3333333333px;
    margin-top: 0.3333333333rem;
  }
  .space-desk-wide--left-third {
    margin-left: 5.3333333333px;
    margin-left: 0.3333333333rem;
  }
  .space-desk-wide--right-third {
    margin-right: 5.3333333333px;
    margin-right: 0.3333333333rem;
  }
  .space-desk-wide--bottom-third {
    margin-bottom: 5.3333333333px;
    margin-bottom: 0.3333333333rem;
  }
  .space-desk-wide--top-half {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
  .space-desk-wide--left-half {
    margin-left: 8px;
    margin-left: 0.5rem;
  }
  .space-desk-wide--right-half {
    margin-right: 8px;
    margin-right: 0.5rem;
  }
  .space-desk-wide--bottom-half {
    margin-bottom: 8px;
    margin-bottom: 0.5rem;
  }
  .space-desk-wide--top {
    margin-top: 16px;
    margin-top: 1rem;
  }
  .space-desk-wide--left {
    margin-left: 16px;
    margin-left: 1rem;
  }
  .space-desk-wide--right {
    margin-right: 16px;
    margin-right: 1rem;
  }
  .space-desk-wide--bottom {
    margin-bottom: 16px;
    margin-bottom: 1rem;
  }
  .space-desk-wide--top-double {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .space-desk-wide--left-double {
    margin-left: 32px;
    margin-left: 2rem;
  }
  .space-desk-wide--right-double {
    margin-right: 32px;
    margin-right: 2rem;
  }
  .space-desk-wide--bottom-double {
    margin-bottom: 32px;
    margin-bottom: 2rem;
  }
  .space-desk-wide--top-triple {
    margin-top: 48px;
    margin-top: 3rem;
  }
  .space-desk-wide--left-triple {
    margin-left: 48px;
    margin-left: 3rem;
  }
  .space-desk-wide--right-triple {
    margin-right: 48px;
    margin-right: 3rem;
  }
  .space-desk-wide--bottom-triple {
    margin-bottom: 48px;
    margin-bottom: 3rem;
  }
}

/**
 * _width.scss
 *
 * Author: Marian Friedmann
 *
 * Usage:
 * <div class="grid">
 *   <div class="grid__item  width--1of1  width-tab--1of3  width-desk--1of4">
 *     ...
 *   </div>
 *   <div class="grid__item  width--1of1  width-tab--2of3  width-desk--3of4">
 *     ...
 *   </div>
 * </div>
 *
 */
.width--0 {
  width: 0% !important;
  display: none;
}

.width--1of1,
.width--2of2,
.width--3of3,
.width--4of4,
.width--5of5,
.width--6of6 {
  width: 100% !important;
  display: inline-block;
}

.width--1of2,
.width--2of4,
.width--3of6,
.width--4of8,
.width--5of10,
.width--6of12 {
  width: 50% !important;
  display: inline-block;
}

.width--1of3,
.width--2of6,
.width--3of9,
.width--4of12 {
  width: 33.33333% !important;
  display: inline-block;
}

.width--2of3,
.width--4of6,
.width--6of9,
.width--8of12 {
  width: 66.66666% !important;
  display: inline-block;
}

.width--1of4,
.width--2of8,
.width--3of12 {
  width: 25% !important;
  display: inline-block;
}

.width--3of4,
.width--6of8,
.width--9of12 {
  width: 75% !important;
  display: inline-block;
}

.width--1of5,
.width--2of10 {
  width: 20% !important;
  display: inline-block;
}

.width--2of5,
.width--4of10 {
  width: 40% !important;
  display: inline-block;
}

.width--3of5,
.width--6of10 {
  width: 60% !important;
  display: inline-block;
}

.width--4of5,
.width--8of10 {
  width: 80% !important;
  display: inline-block;
}

.width--1of6,
.width--2of12 {
  width: 16.66666% !important;
  display: inline-block;
}

.width--5of6,
.width--10of12 {
  width: 83.33333% !important;
  display: inline-block;
}

.width--1of8 {
  width: 12.5% !important;
  display: inline-block;
}

.width--3of8 {
  width: 37.5% !important;
  display: inline-block;
}

.width--5of8 {
  width: 62.5% !important;
  display: inline-block;
}

.width--7of8 {
  width: 87.5% !important;
  display: inline-block;
}

.width--1of9 {
  width: 11.1111111% !important;
  display: inline-block;
}

.width--2of9 {
  width: 22.2222222% !important;
  display: inline-block;
}

.width--4of9 {
  width: 44.4444444% !important;
  display: inline-block;
}

.width--5of9 {
  width: 55.5555555% !important;
  display: inline-block;
}

.width--7of9 {
  width: 77.7777777% !important;
  display: inline-block;
}

.width--8of9 {
  width: 88.8888888% !important;
  display: inline-block;
}

.width--1of10 {
  width: 10% !important;
  display: inline-block;
}

.width--3of10 {
  width: 30% !important;
  display: inline-block;
}

.width--7of10 {
  width: 70% !important;
  display: inline-block;
}

.width--9of10 {
  width: 90% !important;
  display: inline-block;
}

.width--1of12 {
  width: 8.3333333% !important;
  display: inline-block;
}

.width--5of12 {
  width: 41.6666666% !important;
  display: inline-block;
}

.width--7of12 {
  width: 58.3333333% !important;
  display: inline-block;
}

.width--11of12 {
  width: 91.6666666% !important;
  display: inline-block;
}

@media screen and (min-width: 481px) {
  .width-tab--0 {
    width: 0% !important;
    display: none;
  }
  .width-tab--1of1,
  .width-tab--2of2,
  .width-tab--3of3,
  .width-tab--4of4,
  .width-tab--5of5,
  .width-tab--6of6 {
    width: 100% !important;
    display: inline-block;
  }
  .width-tab--1of2,
  .width-tab--2of4,
  .width-tab--3of6,
  .width-tab--4of8,
  .width-tab--5of10,
  .width-tab--6of12 {
    width: 50% !important;
    display: inline-block;
  }
  .width-tab--1of3,
  .width-tab--2of6,
  .width-tab--3of9,
  .width-tab--4of12 {
    width: 33.33333% !important;
    display: inline-block;
  }
  .width-tab--2of3,
  .width-tab--4of6,
  .width-tab--6of9,
  .width-tab--8of12 {
    width: 66.66666% !important;
    display: inline-block;
  }
  .width-tab--1of4,
  .width-tab--2of8,
  .width-tab--3of12 {
    width: 25% !important;
    display: inline-block;
  }
  .width-tab--3of4,
  .width-tab--6of8,
  .width-tab--9of12 {
    width: 75% !important;
    display: inline-block;
  }
  .width-tab--1of5,
  .width-tab--2of10 {
    width: 20% !important;
    display: inline-block;
  }
  .width-tab--2of5,
  .width-tab--4of10 {
    width: 40% !important;
    display: inline-block;
  }
  .width-tab--3of5,
  .width-tab--6of10 {
    width: 60% !important;
    display: inline-block;
  }
  .width-tab--4of5,
  .width-tab--8of10 {
    width: 80% !important;
    display: inline-block;
  }
  .width-tab--1of6,
  .width-tab--2of12 {
    width: 16.66666% !important;
    display: inline-block;
  }
  .width-tab--5of6,
  .width-tab--10of12 {
    width: 83.33333% !important;
    display: inline-block;
  }
  .width-tab--1of8 {
    width: 12.5% !important;
    display: inline-block;
  }
  .width-tab--3of8 {
    width: 37.5% !important;
    display: inline-block;
  }
  .width-tab--5of8 {
    width: 62.5% !important;
    display: inline-block;
  }
  .width-tab--7of8 {
    width: 87.5% !important;
    display: inline-block;
  }
  .width-tab--1of9 {
    width: 11.1111111% !important;
    display: inline-block;
  }
  .width-tab--2of9 {
    width: 22.2222222% !important;
    display: inline-block;
  }
  .width-tab--4of9 {
    width: 44.4444444% !important;
    display: inline-block;
  }
  .width-tab--5of9 {
    width: 55.5555555% !important;
    display: inline-block;
  }
  .width-tab--7of9 {
    width: 77.7777777% !important;
    display: inline-block;
  }
  .width-tab--8of9 {
    width: 88.8888888% !important;
    display: inline-block;
  }
  .width-tab--1of10 {
    width: 10% !important;
    display: inline-block;
  }
  .width-tab--3of10 {
    width: 30% !important;
    display: inline-block;
  }
  .width-tab--7of10 {
    width: 70% !important;
    display: inline-block;
  }
  .width-tab--9of10 {
    width: 90% !important;
    display: inline-block;
  }
  .width-tab--1of12 {
    width: 8.3333333% !important;
    display: inline-block;
  }
  .width-tab--5of12 {
    width: 41.6666666% !important;
    display: inline-block;
  }
  .width-tab--7of12 {
    width: 58.3333333% !important;
    display: inline-block;
  }
  .width-tab--11of12 {
    width: 91.6666666% !important;
    display: inline-block;
  }
}

@media screen and (min-width: 721px) {
  .width-lap--0 {
    width: 0% !important;
    display: none;
  }
  .width-lap--1of1,
  .width-lap--2of2,
  .width-lap--3of3,
  .width-lap--4of4,
  .width-lap--5of5,
  .width-lap--6of6 {
    width: 100% !important;
    display: inline-block;
  }
  .width-lap--1of2,
  .width-lap--2of4,
  .width-lap--3of6,
  .width-lap--4of8,
  .width-lap--5of10,
  .width-lap--6of12 {
    width: 50% !important;
    display: inline-block;
  }
  .width-lap--1of3,
  .width-lap--2of6,
  .width-lap--3of9,
  .width-lap--4of12 {
    width: 33.33333% !important;
    display: inline-block;
  }
  .width-lap--2of3,
  .width-lap--4of6,
  .width-lap--6of9,
  .width-lap--8of12 {
    width: 66.66666% !important;
    display: inline-block;
  }
  .width-lap--1of4,
  .width-lap--2of8,
  .width-lap--3of12 {
    width: 25% !important;
    display: inline-block;
  }
  .width-lap--3of4,
  .width-lap--6of8,
  .width-lap--9of12 {
    width: 75% !important;
    display: inline-block;
  }
  .width-lap--1of5,
  .width-lap--2of10 {
    width: 20% !important;
    display: inline-block;
  }
  .width-lap--2of5,
  .width-lap--4of10 {
    width: 40% !important;
    display: inline-block;
  }
  .width-lap--3of5,
  .width-lap--6of10 {
    width: 60% !important;
    display: inline-block;
  }
  .width-lap--4of5,
  .width-lap--8of10 {
    width: 80% !important;
    display: inline-block;
  }
  .width-lap--1of6,
  .width-lap--2of12 {
    width: 16.66666% !important;
    display: inline-block;
  }
  .width-lap--5of6,
  .width-lap--10of12 {
    width: 83.33333% !important;
    display: inline-block;
  }
  .width-lap--1of8 {
    width: 12.5% !important;
    display: inline-block;
  }
  .width-lap--3of8 {
    width: 37.5% !important;
    display: inline-block;
  }
  .width-lap--5of8 {
    width: 62.5% !important;
    display: inline-block;
  }
  .width-lap--7of8 {
    width: 87.5% !important;
    display: inline-block;
  }
  .width-lap--1of9 {
    width: 11.1111111% !important;
    display: inline-block;
  }
  .width-lap--2of9 {
    width: 22.2222222% !important;
    display: inline-block;
  }
  .width-lap--4of9 {
    width: 44.4444444% !important;
    display: inline-block;
  }
  .width-lap--5of9 {
    width: 55.5555555% !important;
    display: inline-block;
  }
  .width-lap--7of9 {
    width: 77.7777777% !important;
    display: inline-block;
  }
  .width-lap--8of9 {
    width: 88.8888888% !important;
    display: inline-block;
  }
  .width-lap--1of10 {
    width: 10% !important;
    display: inline-block;
  }
  .width-lap--3of10 {
    width: 30% !important;
    display: inline-block;
  }
  .width-lap--7of10 {
    width: 70% !important;
    display: inline-block;
  }
  .width-lap--9of10 {
    width: 90% !important;
    display: inline-block;
  }
  .width-lap--1of12 {
    width: 8.3333333% !important;
    display: inline-block;
  }
  .width-lap--5of12 {
    width: 41.6666666% !important;
    display: inline-block;
  }
  .width-lap--7of12 {
    width: 58.3333333% !important;
    display: inline-block;
  }
  .width-lap--11of12 {
    width: 91.6666666% !important;
    display: inline-block;
  }
}

@media screen and (min-width: 1024px) {
  .width-desk--0 {
    width: 0% !important;
    display: none;
  }
  .width-desk--1of1,
  .width-desk--2of2,
  .width-desk--3of3,
  .width-desk--4of4,
  .width-desk--5of5,
  .width-desk--6of6 {
    width: 100% !important;
    display: inline-block;
  }
  .width-desk--1of2,
  .width-desk--2of4,
  .width-desk--3of6,
  .width-desk--4of8,
  .width-desk--5of10,
  .width-desk--6of12 {
    width: 50% !important;
    display: inline-block;
  }
  .width-desk--1of3,
  .width-desk--2of6,
  .width-desk--3of9,
  .width-desk--4of12 {
    width: 33.33333% !important;
    display: inline-block;
  }
  .width-desk--2of3,
  .width-desk--4of6,
  .width-desk--6of9,
  .width-desk--8of12 {
    width: 66.66666% !important;
    display: inline-block;
  }
  .width-desk--1of4,
  .width-desk--2of8,
  .width-desk--3of12 {
    width: 25% !important;
    display: inline-block;
  }
  .width-desk--3of4,
  .width-desk--6of8,
  .width-desk--9of12 {
    width: 75% !important;
    display: inline-block;
  }
  .width-desk--1of5,
  .width-desk--2of10 {
    width: 20% !important;
    display: inline-block;
  }
  .width-desk--2of5,
  .width-desk--4of10 {
    width: 40% !important;
    display: inline-block;
  }
  .width-desk--3of5,
  .width-desk--6of10 {
    width: 60% !important;
    display: inline-block;
  }
  .width-desk--4of5,
  .width-desk--8of10 {
    width: 80% !important;
    display: inline-block;
  }
  .width-desk--1of6,
  .width-desk--2of12 {
    width: 16.66666% !important;
    display: inline-block;
  }
  .width-desk--5of6,
  .width-desk--10of12 {
    width: 83.33333% !important;
    display: inline-block;
  }
  .width-desk--1of8 {
    width: 12.5% !important;
    display: inline-block;
  }
  .width-desk--3of8 {
    width: 37.5% !important;
    display: inline-block;
  }
  .width-desk--5of8 {
    width: 62.5% !important;
    display: inline-block;
  }
  .width-desk--7of8 {
    width: 87.5% !important;
    display: inline-block;
  }
  .width-desk--1of9 {
    width: 11.1111111% !important;
    display: inline-block;
  }
  .width-desk--2of9 {
    width: 22.2222222% !important;
    display: inline-block;
  }
  .width-desk--4of9 {
    width: 44.4444444% !important;
    display: inline-block;
  }
  .width-desk--5of9 {
    width: 55.5555555% !important;
    display: inline-block;
  }
  .width-desk--7of9 {
    width: 77.7777777% !important;
    display: inline-block;
  }
  .width-desk--8of9 {
    width: 88.8888888% !important;
    display: inline-block;
  }
  .width-desk--1of10 {
    width: 10% !important;
    display: inline-block;
  }
  .width-desk--3of10 {
    width: 30% !important;
    display: inline-block;
  }
  .width-desk--7of10 {
    width: 70% !important;
    display: inline-block;
  }
  .width-desk--9of10 {
    width: 90% !important;
    display: inline-block;
  }
  .width-desk--1of12 {
    width: 8.3333333% !important;
    display: inline-block;
  }
  .width-desk--5of12 {
    width: 41.6666666% !important;
    display: inline-block;
  }
  .width-desk--7of12 {
    width: 58.3333333% !important;
    display: inline-block;
  }
  .width-desk--11of12 {
    width: 91.6666666% !important;
    display: inline-block;
  }
}

@media screen and (min-width: 1200px) {
  .width-desk-wide--0 {
    width: 0% !important;
    display: none;
  }
  .width-desk-wide--1of1,
  .width-desk-wide--2of2,
  .width-desk-wide--3of3,
  .width-desk-wide--4of4,
  .width-desk-wide--5of5,
  .width-desk-wide--6of6 {
    width: 100% !important;
    display: inline-block;
  }
  .width-desk-wide--1of2,
  .width-desk-wide--2of4,
  .width-desk-wide--3of6,
  .width-desk-wide--4of8,
  .width-desk-wide--5of10,
  .width-desk-wide--6of12 {
    width: 50% !important;
    display: inline-block;
  }
  .width-desk-wide--1of3,
  .width-desk-wide--2of6,
  .width-desk-wide--3of9,
  .width-desk-wide--4of12 {
    width: 33.33333% !important;
    display: inline-block;
  }
  .width-desk-wide--2of3,
  .width-desk-wide--4of6,
  .width-desk-wide--6of9,
  .width-desk-wide--8of12 {
    width: 66.66666% !important;
    display: inline-block;
  }
  .width-desk-wide--1of4,
  .width-desk-wide--2of8,
  .width-desk-wide--3of12 {
    width: 25% !important;
    display: inline-block;
  }
  .width-desk-wide--3of4,
  .width-desk-wide--6of8,
  .width-desk-wide--9of12 {
    width: 75% !important;
    display: inline-block;
  }
  .width-desk-wide--1of5,
  .width-desk-wide--2of10 {
    width: 20% !important;
    display: inline-block;
  }
  .width-desk-wide--2of5,
  .width-desk-wide--4of10 {
    width: 40% !important;
    display: inline-block;
  }
  .width-desk-wide--3of5,
  .width-desk-wide--6of10 {
    width: 60% !important;
    display: inline-block;
  }
  .width-desk-wide--4of5,
  .width-desk-wide--8of10 {
    width: 80% !important;
    display: inline-block;
  }
  .width-desk-wide--1of6,
  .width-desk-wide--2of12 {
    width: 16.66666% !important;
    display: inline-block;
  }
  .width-desk-wide--5of6,
  .width-desk-wide--10of12 {
    width: 83.33333% !important;
    display: inline-block;
  }
  .width-desk-wide--1of8 {
    width: 12.5% !important;
    display: inline-block;
  }
  .width-desk-wide--3of8 {
    width: 37.5% !important;
    display: inline-block;
  }
  .width-desk-wide--5of8 {
    width: 62.5% !important;
    display: inline-block;
  }
  .width-desk-wide--7of8 {
    width: 87.5% !important;
    display: inline-block;
  }
  .width-desk-wide--1of9 {
    width: 11.1111111% !important;
    display: inline-block;
  }
  .width-desk-wide--2of9 {
    width: 22.2222222% !important;
    display: inline-block;
  }
  .width-desk-wide--4of9 {
    width: 44.4444444% !important;
    display: inline-block;
  }
  .width-desk-wide--5of9 {
    width: 55.5555555% !important;
    display: inline-block;
  }
  .width-desk-wide--7of9 {
    width: 77.7777777% !important;
    display: inline-block;
  }
  .width-desk-wide--8of9 {
    width: 88.8888888% !important;
    display: inline-block;
  }
  .width-desk-wide--1of10 {
    width: 10% !important;
    display: inline-block;
  }
  .width-desk-wide--3of10 {
    width: 30% !important;
    display: inline-block;
  }
  .width-desk-wide--7of10 {
    width: 70% !important;
    display: inline-block;
  }
  .width-desk-wide--9of10 {
    width: 90% !important;
    display: inline-block;
  }
  .width-desk-wide--1of12 {
    width: 8.3333333% !important;
    display: inline-block;
  }
  .width-desk-wide--5of12 {
    width: 41.6666666% !important;
    display: inline-block;
  }
  .width-desk-wide--7of12 {
    width: 58.3333333% !important;
    display: inline-block;
  }
  .width-desk-wide--11of12 {
    width: 91.6666666% !important;
    display: inline-block;
  }
}

/**
 * _typo.scss
 *
 * Author: Marian Friedmann
 *
 * Alt Text Styles.
 *
 * ## alignment
 * - text--left
 * - text--right
 * - text--center
 *
 * ## utilities
 * - text--secondary
 * - text--inherit-color
 * - text--no-wrap
 *
 * Usage:
 * <div class="text--large">
 *   <h1>Lorem Ipsum</h1>
 *   <p>Lorem ipsum</p>
 * </div>
 *
 */
/**
 * Inherit ancestor's text color
 */
.text--inherit-color {
  color: inherit !important;
}

/**
 * Prevent text from wrapping
 */
.text--no-wrap {
  white-space: nowrap !important;
}

.text--left {
  text-align: left;
}

.text--right {
  text-align: right;
}

.text--center {
  text-align: center;
}

@media screen and (min-width: 481px) {
  .text-tab--left {
    text-align: left;
  }
  .text-tab--right {
    text-align: right;
  }
  .text-tab--center {
    text-align: center;
  }
}

@media screen and (min-width: 721px) {
  .text-lap--left {
    text-align: left;
  }
  .text-lap--right {
    text-align: right;
  }
  .text-lap--center {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .text-desk--left {
    text-align: left;
  }
  .text-desk--right {
    text-align: right;
  }
  .text-desk--center {
    text-align: center;
  }
}

@media screen and (min-width: 1200px) {
  .text-desk-wide--left {
    text-align: left;
  }
  .text-desk-wide--right {
    text-align: right;
  }
  .text-desk-wide--center {
    text-align: center;
  }
}

/**
 * _layout.scss
 *
 *
 */
.clearfix {
  /**
   * For IE 6/7 only
   * Include this rule to trigger hasLayout and contain floats.
   */
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

/**
 * userstyle imports
 *
 * e.g. @import 'nav';
 */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

#mfPreviewBar {
  display: none;
}

body {
  background-color: #E4E4E4;
  color: #5A5A5A;
  padding-top: 110px;
  overflow-x: hidden;
}

.masthead .constrain {
  width: 1300px;
}
.masthead .constrain .media{
  width: 950px;
}
.constrain {
  width: 980px;
  margin: 0 auto;
}

.page-content {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  background-color: #FFFFFF;
  padding-top: 20px;
  padding-bottom: 80px;
  margin: 0;
}

.wrapper {
  padding: 0 20px;
}

.vam img {
  vertical-align: middle;
}

.breakout {
  width: 980px;
  margin: 0 0;
  padding: 40px 0;
}

@media screen and (min-width: 1340px) {
  .breakout {
    /*width: 1235px;
    margin: 0 -135px;*/
  }
}

@media screen and (min-width: 1580px) {
  .breakout {
    width: 1235px;
    margin: 0 -135px;
  }
}

.breakout--fake h3 {
  border-color: #C5C5C5;
}

.left-column {
  width: 580px;
  display: inline-block;
  vertical-align: top;
  margin-right: 60px;
}

.right-column {
  width: 300px;
  display: inline-block;
  vertical-align: top;
}

.right-column__item {
  margin-bottom: 64px;
}

iframe {
  margin-bottom: 0px;
  width: 100%;
}

.parent-container a {
  position: relative;
  display: inline-block;
}

.parent-container a:not(:last-child) {
  margin-right: 12px;
}

.parent-container a:before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -webkit-linear-gradient(155deg, rgba(255, 129, 12, 0.7) 0%, rgba(255, 159, 12, 0.7) 100%);
  background-image: linear-gradient(-65deg, rgba(255, 129, 12, 0.7) 0%, rgba(255, 159, 12, 0.7) 100%);
}

.parent-container a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-right: 10px solid #fff;
  border-bottom: 10px solid #fff;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
}

.parent-container a:hover:before {
  display: block;
}

.news-intro {
  width: 90%;
  margin-bottom: 3rem;
}

.news-intro p  {
  margin: 0;
}

.invisible {
  width: 0;
  height: 0;
  overflow: hidden;
  position: fixed;
  top: -1px;
  right: -1px;
  display: block;
}

.wrapper--addon p a {
  /** color: #3C3C3C;
  font-weight: bold; */
}

.wrapper--addon p a:hover {
  color: #FF810C;
  text-decoration: underline;
}

.page-wrap {
  width: 1300px;
  margin: 20px auto;
}

.preview-text {
  font-family: "Source Serif Pro", serif;
  font-size: 19px;
  line-height: 28px;
  letter-spacing: -0.01em;
  margin: 40px 0 100px;
}

.masthead {
  line-height: 90px;
  background-color: #FFFFFF;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.masthead__socials {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0 11px;
  height: 38px;
  background: #E4E4E4;
  vertical-align: middle;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  max-width: 150px;
  overflow: hidden;
}

.masthead__socials__item {
  display: inline-block;
}

.masthead__socials__icon {
  display: inline-block;
  height: 38px;
  width: 35px;
  background-position: center;
  line-height: 38px;
  vertical-align: top;
  text-align: center;
}

.masthead__socials__icon svg {
  vertical-align: middle;
}

.masthead__socials__icon:hover svg path {
  fill: #FF810C;
}

.masthead__logo {
  display: inline-block;
  vertical-align: middle;
  line-height: 24px;
  overflow: hidden;
  margin-right: 32px;
}

.masthead__logo:hover {
  text-decoration: none;
}

.masthead__logo__claim {
  font-family: "Roboto", sans-serif;
  color: #5A5A5A;
  font-size: 11px;
  line-height: 20px;
}

.masthead .nav--categories {
  display: none;
}

.masthead--categories {
  line-height: 65px;
}

.masthead--categories .masthead__socials {
  max-width: 0;
  overflow: hidden;
  padding: 0;
}

.masthead--categories .login {
  text-indent: -9999px;
  width: 38px;
  display: inline-block;
  height: 38px;
  padding: 0;
  background-position: center;
}

.masthead--categories .login:before {
  display: none;
  padding: 0;
  border-spacing: 0;
}

.masthead--categories .masthead__logo__claim {
  display: none;
}

.masthead--categories-nav .nav--categories {
  display: block;
  float: right;
  line-height: 38px;
  background: -webkit-linear-gradient(0deg, #FF9F0C, #FF810C);
  background: linear-gradient(-270deg, #FF9F0C, #FF810C);
  margin: 16px 0 0 0;
  padding: 0 28px 0 18px;
  position: relative;
  -webkit-animation: .3s display linear;
  animation: .3s display linear;
}

.masthead--categories-nav .nav--categories:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  right: 100%;
  top: 0;
  border-right: 19px solid #FF9F0C;
  display: block;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
}

.masthead--categories-nav .nav--categories a {
  color: #fff;
  padding: 0 11px;
  height: 29px;
  line-height: 32px;
  vertical-align: middle;
  font-family: "industry", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: -2px;
}

.masthead--categories-nav .nav--categories a:hover {
  background-color: #3C3C3C;
  text-decoration: none;
}

.masthead--categories-nav .nav--masthead {
  display: none;
}

.nav--masthead {
  display: inline-block;
  margin-bottom: 0;
  line-height: 30px;
  vertical-align: middle;
}

.nav--masthead li {
  margin-right: 24px;
}

.nav--masthead a {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  color: #C5C5C5;
  outline: none;
}

.login {
  background-color: #3C3C3C;
  color: #fff;
  padding: 0 16px 0 32px;
  vertical-align: middle;
  position: relative;
  background-position: 10px center;
  font-size: 14px;
  width: 83px;
  display: inline-block;
  line-height: 38px;
}

.login:hover {
  color: #fff;
  text-decoration: none;
  background-color: #FF810C;
}

.login:hover:before {
  border-right-color: #FF810C;
}

.login:before {
  content: "";
  height: 0;
  display: block;
  position: absolute;
  right: 100%;
  bottom: 0;
  border-right: 38px solid #3C3C3C;
  border-top: 38px solid transparent;
}

.login-modal-wrapper {
  position: relative;
  display: inline-block;
  line-height: 38px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.login-modal {
  display: none;
  text-align: center;
  background-color: #FF810C;
  position: absolute;
  right: 0;
  top: 100%;
  width: 260px;
  padding: 32px 24px;
  z-index: 100;
}

.login-modal:not(input) {
  color: #fff;
}

.login-modal input {
  color: #3C3C3C;
}

.login-modal a {
  color: #fff;
}

.login-modal.login-modal--active {
  display: block;
}

.header {
  margin-bottom: 48px;
  background: -webkit-linear-gradient(0deg, #FF9F0C, #FF810C);
  background: linear-gradient(-270deg, #FF9F0C, #FF810C);
}

body.start .header {
  margin-bottom: 16px;
}

.home .header {
  margin-bottom: 0;
}

.header.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.header-container .link--logo {
  display: inline-block;
  float: left;
}

.header-container .wrapper {
  /**
   * For IE 6/7 only
   * Include this rule to trigger hasLayout and contain floats.
   */
  *zoom: 1;
}

.header-container .wrapper:before, .header-container .wrapper:after {
  content: " ";
  display: table;
}

.header-container .wrapper:after {
  clear: both;
}

.header-container .logo {
  display: none;
}

.header-container .icon:not(.icon--home) {
  display: none;
}

.header-container .login-modal-wrapper {
  display: none;
}

.header-container.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background-color: #FFFFFF;
  padding: 16px 0;
}

.header-container.header--fixed .wrapper {
  padding: 0;
}

.header-container.header--fixed .header {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}

.header-container.header--fixed .header:before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  left: -18px;
  border-right: 18px solid #FF9F0C;
  border-top: 19px solid transparent;
  border-bottom: 18px solid transparent;
}

.header-container.header--fixed .logo {
  display: inline-block;
  padding-top: 3px;
}

.header-container.header--fixed .header-container__right {
  float: right;
}

.header-container.header--fixed .nav-primary {
  margin-bottom: 0;
  height: 37px;
  line-height: 37px;
  font-size: 16px;
}

.header-container.header--fixed .nav-item--home {
  display: none;
}

.header-container.header--fixed .icon:not(.icon--home) {
  display: inline-block;
}

.header-container.header--fixed .login-modal-wrapper {
  display: inline-block;
}

.header-container.header--fixed .login-modal--sticky {
  right: 8px;
}

h1,
.heading-1,
h2,
.heading-2,
h3,
.heading-3,
h4,
.heading-4,
h5,
.heading-5,
h6,
.heading-6 {
  font-family: "industry", sans-serif;
  color: #3C3C3C;
}

h1.dark-bg,
.heading-1--dark-bg,
h2.dark-bg,
.heading-2--dark-bg,
h3.dark-bg,
.heading-3--dark-bg {
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
.heading-1 {
  font-size: 45px;
  line-height: 50px;
}

h2,
.heading-2 {
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 0.01em;
}

h3,
.heading-3 {
  font-size: 22px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.015em;
}

h4,
.heading-4 {
  font-size: 18px;
  line-height: 22px;
  color: #C5C5C5;
  font-weight: 500;
}

h4.v2,
.heading-4--v2 {
  color: #3C3C3C;
  font-weight: 500;
}

h5,
.heading-5,
h5.v2,
.heading-5--v2,
h5.v3,
.heading-5--v3 {
  text-transform: uppercase;
}

h5,
.heading-5 {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #5A5A5A;
  padding-bottom: 8px;
  margin-bottom: 20px;
  letter-spacing: 0.12em;
}

h5.v2,
.heading-5--v2,
h5.v3,
.heading-5--v3 {
  border-bottom: 1px solid #E4E4E4;
  margin-bottom: 40px;
  font-weight: 400;
  padding-bottom: 0;
}

.breakout h5.v2, .breakout
.heading-5--v2, .breakout
h5.v3, .breakout
.heading-5--v3 {
  border-bottom: 1px solid #C5C5C5;
}

h5.v2 span,
.heading-5--v2 span,
h5.v3 span,
.heading-5--v3 span {
  background-color: #FF810C;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  padding: 8px 20px;
  font-size: 16px;
  position: relative;
}

h5.v2 span:after,
.heading-5--v2 span:after,
h5.v3 span:after,
.heading-5--v3 span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  height: 0;
  border-left: 37px solid #FF810C;
  border-top: 37px solid transparent;
}

h5.v3 span,
.heading-5--v3 span {
  background-color: #3C3C3C;
}

h5.v3 span:after,
.heading-5--v3 span:after {
  border-left: 37px solid #3C3C3C;
}

h6,
.heading-6 {
  color: #C5C5C5;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h6 a:hover,
.heading-6 a:hover,
a.heading-6:hover {
  color: #C5C5C5;
  text-decoration: underline;
}

.txt--smooth {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.txt--small {
  font-size: 14px;
  line-height: 18px;
}

.txt--tiny {
  color: #8A8A8A;
  font-size: 12px;
  line-height: 16px;
}

.txt--tiny--v2 {
  color: #C5C5C5;
}

.txt--secondary {
  font-family: "industry", sans-serif;
}

.txt--serif-intro {
  font-family: "Source Serif Pro", serif;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.01em;
}

.text-link {
  font-weight: 900;
  color: inherit;
}

.text-link:hover {
  color: #FF810C;
}

.review-content .text-link {
  font-weight: 700;
}

.nav-primary {
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "industry", sans-serif;
  font-weight: normal;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .05em;
}

.nav-primary a {
  color: #fff;
  padding: 0 16px;
  height: 40px;
  line-height: 40px;
  vertical-align: middle;
}

.nav-primary a:hover {
  background-color: #3C3C3C;
  text-decoration: none;
}

.nav-item--home {
  background: #FF810C;
  width: 75px;
  text-align: center;
  position: relative;
  margin-right: 30px;
}

.nav-item--home:after {
  content: "";
  position: absolute;
  left: 100%;
  width: 0;
  height: 0;
  border-right: 30px solid transparent;
  border-top: 30px solid #FF810C;
  border-bottom: 30px solid #FF810C;
}

.nav-item--home a:hover {
  background: inherit;
}

.slider {
  margin-bottom: 56px;
}

.slider img {
  width: 100%;
}

.slider__content_def {
  display: none;
}

.slider__items {
  margin: 0;
}

.slider__interchangeable-content {
  background-color: #fff;
  padding: 20px;
  position: relative;
  margin-top: -120px;
  width: 610px;
  min-height: 120px;
}

.slider__interchangeable-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  height: 0;
  border-left: 60px solid #FFF;
  border-right: 60px solid transparent;
  border-bottom: 60px solid #FFF;
  border-top: 60px solid transparent;
}

.slider__interchangeable-content:after {
  content: "";
  position: absolute;
  left: 100%;
}

.slider__interchangeable-content h1 {
  margin-bottom: 8px;
}

.slider__interchangeable-content h5 {
  margin: 0;
  font-weight: normal;
  margin-top: 16px;
}

.slider__image {
  position: relative;
  overflow: hidden;
  max-height: 480px;
}

.slider__controller {
  background: -webkit-linear-gradient(0deg, #FF810C, #FF9F0C);
  background: linear-gradient(-270deg, #FF810C, #FF9F0C);
  width: 210px;
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: center;
  line-height: 48px;
  height: 48px;
}

.slider__controller:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid #FF810C;
  border-bottom: 25px solid transparent;
  border-top: 25px solid transparent;
}

.slider__controller li:not(:last-child) {
  margin-right: 20px;
}

.slider__controller a {
  color: rgba(255, 255, 255, 0.5);
}

.slider__controller a:hover {
  text-decoration: none;
}

.slider__controller a:focus {
  outline: none;
}

.slider__controller a.active {
  color: white;
}

/**
 * Flag object.
 *
 * Very similar to the media object, only the flag object allows for vertical alignment.
 * stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
 */
.flag {
  display: table;
  width: 100%;
}

.flag__image,
.flag__body {
  display: table-cell;
  vertical-align: middle;
}

.flag--top .flag__image, .flag--top
.flag__body {
  vertical-align: top;
}

.flag--bottom .flag__image, .flag--bottom
.flag__body {
  vertical-align: bottom;
}

.flag__image {
  padding-right: 16px;
}

.flag__image > img {
  display: block;
  max-width: none;
}

.flag--rev .flag__image {
  padding-right: 0;
  padding-left: 16px;
}

.flag--iconless .flag__image {
  visibility: hidden;
  display: none;
}

.flag__body {
  width: 100%;
}

.news-teaser__item {
  margin-bottom: 40px;
}

.news-teaser__image {
  position: relative;
}

.news-teaser__image:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-right: 30px solid #fff;
  border-top: 30px solid transparent;
  z-index: 4;
}

.previews .news-teaser__image img {
  width: 100%;
}

.top-news .news-teaser__image {
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.sidebar-list__body--teaser .news-teaser__image {
  width: 59px;
  height: 37px;
  overflow: hidden;
  display: block;
}

.sidebar-list__body--teaser .news-teaser__image img {
  width: 100%;
}

.news-teaser--imageless .news-teaser__image:after {
  display: none;
}

.news-teaser__headline {
  margin-bottom: 5px;
  text-transform: none;
}

.news-teaser__headline a {
  color: #3C3C3C;
}

.news-teaser__body {
  margin-bottom: 2px;
}

.news-teaser__meta {
  color: #C5C5C5;
  line-height: 14px;
  display: block;
  margin-top: 7px;
}

.news-teaser__item {
  display: block;
  color: #5A5A5A;
  text-decoration: none;
}

.news-teaser__item:hover {
  text-decoration: none;
  color: #5A5A5A;
}

.compact-teaser .news-teaser__item {
  margin-bottom: 8px;
}

.compact-teaser .flag--iconless {
  padding-left: 32px;
}

.news-teaser__voting {
  line-height: 66px;
  height: 60px;
  display: block;
  width: 75px;
  background: -webkit-linear-gradient(0deg, #FF810C, #FF9F0C);
  background: linear-gradient(-270deg, #FF810C, #FF9F0C);
  color: #FFF;
  padding: 0 15px 0 0;
  font-size: 36px;
  font-family: "industry", sans-serif;
  text-align: center;
  position: relative;
  font-weight: bold;
  margin-left: 30px;
}

.news-teaser__voting:before {
  content: '';
  display: block;
  position: absolute;
  right: 100%;
  height: 0;
  width: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-right: 30px solid #FF810C;
}

.news-teaser__item .news-teaser__image a:hover:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-linear-gradient(0deg, #FF810C, #FF9F0C);
  background: linear-gradient(-270deg, #FF810C, #FF9F0C);
  opacity: .7;
  top: 0;
  left: 0;
  z-index: 3;
}

a.news-teaser__item:hover .news-teaser__image:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-linear-gradient(0deg, #FF810C, #FF9F0C);
  background: linear-gradient(-270deg, #FF810C, #FF9F0C);
  opacity: .7;
  top: 0;
  left: 0;
  z-index: 3;
}

.news-teaser__item--video .news-teaser__item__video-controls:before {
  content: '';
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  background: rgba(255, 255, 255, 0.4);
  z-index: 4;
}

.news-teaser__item--video .news-teaser__item__video-controls:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid #FFF;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  z-index: 5;
}

.news-teaser__item .flag__body p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px;
}

.right-column__item .news-teaser__item .flag__body p {
  margin-bottom: 0;
}

.news-teaser__image img {
  display: block;
}

a.news-teaser__item:hover h3.news-teaser__headline {
  text-decoration: none;
}

.top-news .news-teaser__image img {
  width: 100%;
}

.news-teaser {
  position: relative;
}

.review-slider__item {
  padding: 0 10px;
  width: 250px;
  outline: none;
}

.review-slider__link {
  display: block;
  position: relative;
  height: 305px;
  width: 230px;
  overflow: hidden;
}

.review-slider__link:hover .review-slider__image:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-linear-gradient(0deg, #FF810C, #FF9F0C);
  background: linear-gradient(-270deg, #FF810C, #FF9F0C);
  opacity: .7;
  top: 0;
  left: 0;
  z-index: 10;
}

.review-slider__link .review-slider__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(90deg, black 0%, rgba(197, 197, 197, 0) 100%);
  position: absolute;
  z-index: 5;
}

.review-slider__image {
  width: 230px;
  height: 268px;
  overflow: hidden;
  position: relative;
}

.review-slider__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  overflow: hidden;
  max-width: none !important;
}

.review-slider__type {
  color: #C5C5C5;
  margin-bottom: 8px;
}

.review-slider__headline {
  color: #fff;
}

.review-slider__text {
  color: #fff;
  position: absolute;
  bottom: 40px;
  padding: 32px;
  z-index: 12;
}

.review-slider__rating {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  font-weight: bold;
  z-index: 11;
}

.slick-prev {
  border-top: 20px solid transparent;
  border-right: 20px solid #8A8A8A;
  border-bottom: 20px solid transparent;
}

.slick-next {
  border-top: 20px solid transparent;
  border-left: 20px solid #8A8A8A;
  border-bottom: 20px solid transparent;
}

.slick-prev:before, .slick-next:before {
  visibility: hidden;
  display: none;
}

.review-slider__overlay {
  position: absolute;
  bottom: 0;
  background-color: #fff;
  width: 80px;
  height: 50px;
  z-index: 11;
}

.review-slider__overlay:before {
  content: "";
  position: absolute;
  left: 100%;
  border-top: 50px solid transparent;
  border-left: 50px solid #fff;
  border-bottom: 50px solid transparent;
}

.review-rating {
  position: relative;
  background: -webkit-linear-gradient(0deg, #FF810C, #FF9F0C);
  background: linear-gradient(-270deg, #FF810C, #FF9F0C);
  color: #fff;
  display: inline-block;
  width: 100px;
  line-height: 74px;
  text-align: center;
  font-family: "industry", sans-serif;
}

.review-rating:before {
  content: "";
  position: absolute;
  right: 100%;
  border-top: 37px solid transparent;
  border-right: 37px solid #FF810C;
  border-bottom: 37px solid transparent;
}

.review-rating--v1 {
  width: 75px;
  height: 60px;
  line-height: 60px;
  font-size: 36px;
}

.review-rating--v1:before {
  border-top: 30px solid transparent;
  border-right: 30px solid #FF810C;
  border-bottom: 30px solid transparent;
}

.feature-video {
  width: 620px;
  display: block;
  margin-right: 20px;
}

.next-up-videos {
  display: inline-block;
  vertical-align: top;
  width: 300px;
}

.next-up-video:not(:last-child) {
  margin-bottom: 16px;
}

.feature-video__figure {
  position: relative;
  overflow: hidden;
  height: 352px;
}

.feature-video__figure:after {
  content: '';
  width: 0;
  height: 0;
  display: block;
  border: 15px solid #FFF;
  border-top-color: transparent;
  border-left-color: transparent;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 12;
}

.feature-video__figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  overflow: hidden;
  max-width: none !important;
}

.next-up-video__figure {
  position: relative;
  width: 100%;
  height: 168px;
  display: block;
  overflow: hidden;
}

.next-up-video__figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  overflow: hidden;
  max-width: none !important;
}

.next-up-video__figure:after {
  content: '';
  width: 0;
  height: 0;
  display: block;
  border: 15px solid #FFF;
  border-top-color: transparent;
  border-left-color: transparent;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 12;
}

.video__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.4);
  z-index: 12;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.video__overlay:after {
  content: '';
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  border-left: 16px solid #FFF;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.feature-video .video__overlay {
  width: 106px;
  height: 106px;
}

.feature-video .video__overlay:after {
  border-left: 33px solid #FFF;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.feature-video,
.next-up-video {
  display: block;
  margin-bottom: 16px;
}

.feature-video, .feature-video:hover,
.next-up-video,
.next-up-video:hover {
  color: #3C3C3C;
  text-decoration: none;
}

.next-up-video:hover .next-up-video__figure,
.feature-video:hover .feature-video__figure {
  display: block;
  position: relative;
}

.next-up-video:hover .next-up-video__figure:before,
.feature-video:hover .feature-video__figure:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-linear-gradient(0deg, #FF810C, #FF9F0C);
  background: linear-gradient(-270deg, #FF810C, #FF9F0C);
  opacity: .7;
  top: 0;
  left: 0;
  z-index: 11;
}

.feature-video .feature-video__figcaption {
  font-size: 26px;
}

.next-up-video .next-up-video__figcaption {
  font-size: 18px;
}

.page-footer {
  background-color: #2D2D2D;
  padding: 112px 0;
  margin-top: 80px;
}

.page-footer h2 {
  font-size: 16px;
  color: #fff;
}

.footer-block .bare-list {
  line-height: 18px;
}

.footer__headline-big {
  font-size: 30px;
  font-weight: bold;
}

.footer-block .bare-list a {
  color: #8A8A8A;
  font-size: 14px;
}

.page-footer p {
  font-size: 12px;
  color: #8A8A8A;
  line-height: 16px;
}

.footer__logo {
  width: 208px;
  height: 23px;
  display: block;
}

.footer__socials {
  display: block;
  list-style: none;
  margin: 0 auto 32px;
  padding: 0 11px;
  height: 37px;
  vertical-align: middle;
}

.footer__socials__item {
  display: inline-block;
}

.footer__socials__icon {
  display: inline-block;
  height: 37px;
  width: 35px;
  background-position: center;
  vertical-align: middle;
  line-height: 37px;
}

.footer__socials__icon svg {
  vertical-align: middle;
}

.footer__socials__icon:hover svg path {
  fill: #FF810C;
}

.btn {
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  line-height: 30px;
  display: inline-block;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "industry", sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  /* Cosmetics */
  padding: 0em 16px;
  color: #fff;
  background-color: #FF810C;
}

.btn:hover {
  background-color: #e6740b;
  text-decoration: none;
  color: #fff;
}

.fishbowl {
  height: 550px;
  background: #FFF;
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
}

.fishbowl__bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  clip: rect(0px 980px 550px 0px);
}

.fishbowl__content {
  position: fixed;
  top: 0;
  left: 50%;
  width: 980px;
  height: 100%;
  -webkit-transform: translateX(-50%) translate3d(0, 0, 0);
  transform: translateX(-50%) translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.newsletter {
  padding: 55px 30px 75px;
  background: -webkit-linear-gradient(0deg, #FF810C, #FF9F0C);
  background: linear-gradient(-270deg, #FF810C, #FF9F0C);
  color: #FFF;
}

.newsletter__subline {
  font-size: 15px;
  color: #FFF;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.newsletter__headline {
  color: #FFF;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: .5px;
}

.newsletter__input {
  margin-top: 35px;
  color: #5A5A5A;
}

.newsletter__submit {
  margin-top: 25px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #2D2D2D;
}

.newsletter__form {
  position: relative;
}

.feedback {
  display: none;
  background: #3C3C3C;
  position: absolute;
  bottom: -webkit-calc(100% - 35px);
  bottom: calc(100% - 35px);
  left: 0;
  text-align: center;
  padding: 30px 40px 50px;
  width: 100%;
}

.feedback--success {
  bottom: -webkit-calc(100% - 83px);
  bottom: calc(100% - 83px);
  padding-bottom: 40px;
}

.feedback--error:after {
  content: '';
  width: 0;
  height: 0;
  border: 10px solid #FF810C;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
  position: absolute;
  left: 50%;
  bottom: 25px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.feedback__headline {
  font-size: 40px;
  font-family: "industry", sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}

.feedback__content {
  font-size: 14px;
  line-height: 20px;
}

.feedback__icon {
  width: 39px;
  height: 30px;
  display: block;
  margin: 0 auto 22px;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  background-position: center center;
}

.icon--speech-bubble {
  width: 15px;
  height: 14px;
  vertical-align: baseline;
}

.icon--home {
  width: 16px;
  height: 15px;
}

.header .icon--home {
  vertical-align: baseline;
}

.header-container .icon--user {
  width: 37px;
  height: 37px;
  background-color: #3C3C3C;
}

.icon--search:hover {
  background-color: #FF810C;
}

.header-container .icon--user {
  text-indent: -9999px;
  display: inline-block;
  vertical-align: middle;
  background-position: center center;
}

.review-content > p,
.review-content .left-column > p {
  font-family: "Source Serif Pro", serif;
  max-width: 700px;
  letter-spacing: -0.01em;
  font-size: 19px;
}

.left-column > p{
  font-family: "Source Serif Pro", serif;
  font-size: 18px;
}

.review-intro-emphasis {
  font-family: "industry", sans-serif;
  font-size: 45px;
  line-height: 45px;
  max-width: 650px;
  margin: 64px 0;
  text-transform: uppercase;
}

.review-content .slider {
  margin: 128px 0 128px;
}

.review-content .slider .slider__interchangeable-content {
  width: 560px;
  height: 120px;
  padding: 32px;
}

.review-content .slider .slider__controller {
  width: 180px;
}

.review-headline {
  font-size: 28px;
  line-height: 40px;
}

.review-like,
.review-dislike {
  margin: 60px 0 20px;
}

.review-like .gradient-bar,
.review-dislike .gradient-bar {
  margin: 0;
}

.game-mood {
  margin: 112px 0;
}

.game-mood p {
  font-family: "Source Serif Pro", serif;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 19px;
}

.game-mood--medium {
  max-width: 700px;
}

.game-mood--medium .flag__image {
  padding-right: 48px;
}

.game-mood--big {
  padding: 0 66px;
}

.game-mood__flag {
  margin-bottom: 64px;
}

.game-mood__headline {
  text-transform: uppercase;
  margin-left: 16px;
}

.gradient-bar {
  line-height: 100px;
  background: -webkit-linear-gradient(0deg, #FF9F0C, #FF810C);
  background: linear-gradient(-270deg, #FF9F0C, #FF810C);
  text-transform: uppercase;
  margin-bottom: 64px;
}

.gradient-bar__headline {
  line-height: inherit;
  color: #fff;
  font-size: 40px;
  margin-bottom: 0;
  padding-left: 50px;
}

.gradient-bar__icon {
  background-color: #FF810C;
  background-position: 30px center;
  width: 100px;
  height: 100px;
  position: relative;
}

.gradient-bar__icon:after {
  content: "";
  position: absolute;
  left: 100px;
  width: 0;
  height: 0;
  border-right: 50px solid transparent;
  border-top: 50px solid #FF810C;
  border-bottom: 50px solid #FF810C;
}

.verdict {
  margin-bottom: 48px;
}

.verdict__image {
  position: relative;
  height: 435px;
  margin: 160px 0 80px;
}

.verdict__rating {
  background: -webkit-linear-gradient(0deg, #FF810C, #FF9F0C);
  background: linear-gradient(-270deg, #FF810C, #FF9F0C);
  position: absolute;
  left: 0;
  bottom: 0;
  height: 160px;
  line-height: 160px;
  width: 250px;
  text-align: center;
  font-size: 120px;
  color: #fff;
  font-family: "industry", sans-serif;
}

.verdict__rating:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  border-left: 80px solid #FF9F0C;
  border-top: 80px solid transparent;
  border-bottom: 80px solid transparent;
}

.verdict__headline {
  font-size: 45px;
}

.verdict__left {
  padding-left: 40px;
}

.verdict__right {
  margin-top: -170px;
  margin-right: -40px;
  position: relative;
  background-color: #fff;
  padding: 32px 96px 0 48px;
}

.verdict__right:before {
  content: "";
  width: 0;
  height: 0;
  top: 0;
  right: 100%;
  position: absolute;
  border-right: 100px solid #fff;
  border-top: 100px solid transparent;
  border-bottom: 100px solid transparent;
}

.verdict__text {
  font-family: "Source Serif Pro", serif;
  max-width: 700px;
  letter-spacing: -0.01em;
  font-size: 19px;
}

.verdict__list li {
  position: relative;
  padding-left: 8px;
}

.verdict__list li:before {
  color: #FF810C;
  font-size: 50px;
  position: absolute;
  font-family: "industry", sans-serif;
  font-weight: bold;
}

.verdict__list--pos li:before {
  content: "+";
  left: -32px;
  top: -23px;
}

.verdict__list--neg li:before {
  content: "-";
  left: -29px;
  top: -25px;
}

.jump-to {
  border-bottom: 1px solid #E4E4E4;
  text-align: right;
  margin-top: 20px;
}

.jump-to__content {
  display: inline-block;
  border-top: 1px solid #E4E4E4;
  position: relative;
  padding: 19px 0 0;
  background: #fff;
  margin-bottom: -1px;
  box-shadow: 0 1px 0 0 #FFF;
}

.jump-to__content:hover {
  color: #5A5A5A;
}

.jump-to__content:after {
  content: "";
  width: 0;
  height: 0;
  top: 0;
  right: 100%;
  position: absolute;
  border-right: 22px solid #E4E4E4;
  border-bottom: 22px solid #E4E4E4;
  border-left: 22px solid transparent;
  border-top: 22px solid transparent;
}

.jump-to__content:before {
  content: "";
  width: 0;
  height: 0;
  top: 1px;
  right: 100%;
  position: absolute;
  z-index: 2;
  border-right: 22px solid #fff;
  border-bottom: 22px solid #fff;
  border-left: 22px solid transparent;
  border-top: 22px solid transparent;
}

.jump-to__content span {
  position: relative;
  padding-right: 60px;
  padding-bottom: 0;
}

.jump-to__content span:after {
  content: '';
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid #C5C5C5;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  -webkit-transform: translateX(50%) translateY(-50%);
  transform: translateX(50%) translateY(-50%);
}

.jump-to__content:hover .jump-to__content span:after {
  border-top-color: #FF810C;
}

.leaderboard-ad {
  text-align: center;
  margin: 16px 0 48px 0;
}

#outerra {
  position: absolute;
  left: 50%;
  margin-left: 500px;
}

#leaderboard {
  margin: 16px 0;
}

.ad--header {
  margin: 0 auto;
  width: 1300px;
}

input:not([type="submit"]) {
  font-size: 14px;
  margin-bottom: 4px;
  text-align: center;
  width: 100%;
  /** height: 48px; */
  line-height: 48px;
  border: none;
  /** -webkit-appearance: none; */
}

input[type="submit"], .btn--submit {
  color: #fff;
  border: none;
  text-transform: uppercase;
  width: 100%;
  height: 48px;
  line-height: 48px;
  /** -webkit-appearance: none; */
  display: block;
  background-color: #151515;
}

input[type="submit"]:hover, .btn--submit:hover {
  background-color: #000;
}

.more-button {
  border-top: 1px solid #E4E4E4;
  line-height: 36px;
  display: block;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #5A5A5A;
  outline: none;
  margin-bottom: 32px;
  position: relative;
}

.more-button:before {
  content: '';
  position: absolute;
  top: -2px;
  width: 100%;
  height: 1px;
  background: #FFF;
  display: block;
  z-index: 10;
}

.more-button span {
  display: inline-block;
  border-bottom: 1px solid #E4E4E4;
  box-shadow: 0 -1px 0 0 #FFF;
  padding: 0 25px;
  box-shadow: 0 -1px 0 0 #FFF;
  position: relative;
}

.more-button__border:before {
  content: '';
  display: block;
  border: 19px solid #E4E4E4;
  width: 0;
  height: 0;
  position: absolute;
  left: -38px;
  top: -1px;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.more-button__border:after {
  content: '';
  display: block;
  border: 19px solid #FFF;
  width: 0;
  height: 0;
  position: absolute;
  left: -38px;
  top: -2px;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.more-button__border--last:before, .more-button__border--last:after {
  left: auto;
  right: -38px;
  border-right-color: transparent;
  border-left-color: #E4E4E4;
}

.more-button__border--last:after {
  left: auto;
  right: -38px;
  border-right-color: transparent;
  border-left-color: #FFF;
}

.more-button:hover {
  text-decoration: none;
  color: #5A5A5A;
}

.more-button:hover span {
  background: #FF810C;
  color: #FFF;
  box-shadow: 0 -2px 0 0 #FF810C;
}

.more-button:hover .more-button__border:after {
  border-top-color: #FF810C;
  border-right-color: #FF810C;
}

.more-button:hover .more-button__border--last:after {
  border-right-color: transparent;
  border-left-color: #FF810C;
}

#comments h2 {
  margin: 80px 0 40px;
  padding: 0 50px;
}

.commentlist {
  list-style: none;
  margin: 0;
  padding: 0 50px;
}

.commentlist li.comment {
  padding: 0 0 0 85px;
  position: relative;
  margin-bottom: 50px;
  width: 745px;
}

.commentlist .comment-awaiting-moderation {
  color: #FF810C;
}

.commentlist .comment-author {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 16px;
}

.commentlist .comment-author .fn {
  font-size: 19px;
  color: #3C3C3C;
  font-family: "industry", sans-serif;
  line-height: 18px;
  padding-top: 18px;
  border-top: 1px solid #e4e4e4;
  display: inline-block;
  box-shadow: 0 1px 0 0 #FFF;
  margin: 0;
  vertical-align: middle;
  font-style: normal;
  position: relative;
}

.commentlist .comment-author .fn:after, .commentlist .comment-author .fn:before {
  content: '';
  width: 0;
  height: 0;
  border: 18px solid #e4e4e4;
  border-right-color: transparent;
  border-top-color: transparent;
  display: block;
  position: absolute;
  left: 100%;
  top: 0;
}

.commentlist .comment-author .fn:after {
  border-left-color: #FFF;
  border-bottom-color: #FFF;
  top: 1px;
}

.commentlist .comment-author .says {
  display: none;
}

.commentlist .comment-author img.avatar {
  display: none;
}

.commentlist .comment-meta {
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 10px;
}

.commentlist .comment-meta a {
  text-decoration: none;
  color: #C5C5C5;
  font-size: 12px;
}

.commentlist p {
  font-size: 16px;
  line-height: 22px;
}

.commentlist p[align=right] {
  text-align: left;
}

.commentlist p[align=right] a {
  font-size: 12px;
  color: #C5C5C5;
}

.commentlist .ava_small {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  display: block;
  background: transparent url(../images/no_ava.gif) top left no-repeat;
}

.commentlist .ava_small img {
  width: 60px;
  height: 60px;
}

#respond {
  width: 650px;
  margin: 160px auto 0;
}

#respond h3 {
  font-weight: bold;
  margin: 0;
}

#respond textarea {
  height: 150px;
  width: 100%;
  resize: none;
  border: 1px solid #E4E4E4;
}

#respond a {
  color: #FF810C;
}

#respond a:hover {
  color: #FF810C;
}

#respond .post-as {
  text-align: right;
  font-size: 12px;
  color: #C5C5C5;
}

#respond input[type=submit] {
  width: 132px;
  height: 45px;
  line-height: 45px;
  background: #FF810C;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  padding: 0;
  /** -webkit-appearance: none; */
}

.wp-pagenavi {
  width: 100%;
  border-bottom: 1px solid #E4E4E4;
  line-height: 22px;
  padding-bottom: 15px;
  text-align: center;
  font-size: 12px;
  position: relative;
  color: #C5C5C5;
  margin-bottom: 32px;
}

.wp-pagenavi span.extend {
  padding: 0 8px;
}

.wp-pagenavi a.page,
.wp-pagenavi span.current {
  padding: 0 8px;
  height: 22px;
  line-height: 25px;
  display: inline-block;
  font-size: 15px;
  font-family: "industry", sans-serif;
  color: #C5C5C5;
}

.wp-pagenavi a.page:hover,
.wp-pagenavi span.current:hover {
  text-decoration: none;
  color: #5A5A5A;
}

.wp-pagenavi a.first,
.wp-pagenavi a.last {
  color: #C5C5C5;
}

.wp-pagenavi a.first:hover,
.wp-pagenavi a.last:hover {
  color: #5A5A5A;
}

.wp-pagenavi span.current {
  color: #FFF;
  background: #FF810C;
}

.wp-pagenavi span.current:hover {
  color: #FFF;
}

.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
  color: #5A5A5A;
  position: absolute;
  top: 0;
  left: 0;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 25px;
  border-top: 1px solid #E4E4E4;
  box-shadow: 0 1px 0 0 #FFF;
  padding: 11px 0 0 30px;
  text-indent: -9999px;
  z-index: 10;
  letter-spacing: 0.12em;
}

.wp-pagenavi a.previouspostslink:hover,
.wp-pagenavi a.nextpostslink:hover {
  color: #5A5A5A;
}

.wp-pagenavi a.previouspostslink:before, .wp-pagenavi a.previouspostslink:after,
.wp-pagenavi a.nextpostslink:before,
.wp-pagenavi a.nextpostslink:after {
  content: '';
  display: block;
  position: absolute;
  top: -1px;
  left: 100%;
  border: 19px solid transparent;
  border-bottom-color: #E4E4E4;
  border-left-color: #E4E4E4;
}

.wp-pagenavi a.previouspostslink:after,
.wp-pagenavi a.nextpostslink:after {
  top: 0;
  border-bottom-color: #FFF;
  border-left-color: #FFF;
}

.wp-pagenavi a.previouspostslink:hover,
.wp-pagenavi a.nextpostslink:hover {
  text-decoration: underline;
}

.wp-pagenavi--gallery a.previouspostslink,
.wp-pagenavi--gallery a.nextpostslink {
  text-indent: inherit;
}

.wp-pagenavi a.nextpostslink {
  left: auto;
  right: 0;
  padding: 11px 30px 0 0;
}

.wp-pagenavi a.nextpostslink:before, .wp-pagenavi a.nextpostslink:after {
  left: auto;
  right: 100%;
  border-left-color: transparent;
  border-right-color: #E4E4E4;
}

.wp-pagenavi a.nextpostslink:after {
  border-right-color: #FFF;
  border-left-color: transparent;
}

.wp-pagenavi:after, .wp-pagenavi:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right-color: #C5C5C5;
  left: 0;
  bottom: 3px;
  position: absolute;
}

.wp-pagenavi:after {
  border-left-color: #C5C5C5;
  border-right-color: transparent;
  right: 0;
  left: auto;
}

.wp-pagenavi.hover-prev:before {
  border-right-color: #FF810C;
}

.wp-pagenavi.hover-next:after {
  border-left-color: #FF810C;
}

.wp-pagenavi.no-prev:before {
  display: none;
}

.wp-pagenavi.no-next:after {
  display: none;
}

.videobox {
  width: 100%;
  height: 0;
  padding-bottom: 58.3476764%;
  overflow: hidden;
  position: relative;
  display: block;
}

.videobox:hover:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-linear-gradient(0deg, #FF810C, #FF9F0C);
  background: linear-gradient(-270deg, #FF810C, #FF9F0C);
  opacity: .7;
  top: 0;
  left: 0;
  z-index: 3;
}

.videobox:after {
  content: '';
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  border: 15px solid #FFF;
  border-top-color: transparent;
  border-left-color: transparent;
  bottom: 0;
  right: 0;
  z-index: 4;
}

.videobox--big:after {
  border-width: 30px;
}

.videobox__image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  overflow: hidden;
  max-width: none !important;
}

.videobox__play {
  width: 50px;
  height: 50px;
  position: absolute;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: rgba(60, 60, 60, 0.8);
  top: 50%;
  left: 50%;
}

.videobox__play:after {
  content: '';
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #FFF;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.videobox--big .video__play {
  width: 100px;
  height: 100px;
}

.videobox--big .video__play:after {
  border-top-width: 22px;
  border-left-width: 34px;
  border-bottom-width: 22px;
}

.videobox__headline {
  font-size: 22px;
  font-family: "industry", sans-serif;
  color: #FFF;
  line-height: 24px;
  position: absolute;
  left: 0;
  bottom: 15px;
  text-align: center;
  padding: 0 10px;
  width: 100%;
}

.videobox--big .video__headline {
  font-style: 30px;
  line-height: 32px;
  padding: 0 20px;
}

.sidebar-list__headline {
  line-height: 38px;
  font-size: 16px;
  letter-spacing: 2px;
  color: #FFF;
}

.sidebar-list__headline span {
  display: inline-block;
  background: #FF810C;
  text-transform: uppercase;
  padding: 0 20px;
  position: relative;
}

.sidebar-list__headline span:after {
  content: '';
  border: 19px solid #FF810C;
  border-right-color: transparent;
  border-top-color: transparent;
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 100%;
}

.sidebar-list__body {
  padding: 40px 20px;
  background: #f1f1f1;
}

.sidebar-list .news-teaser__image:after {
  display: none;
}

.sidebar-list .news-teaser__item {
  margin-bottom: 10px;
}

.right-column .sidebar-list .news-teaser__item {
  margin-bottom: 25px;
}

.sidebar-list--numbers {
  counter-reset: sidebar-list;
}

.sidebar-list--numbers .news-teaser__item .icon {
  background: none !important;
  font-size: 14px;
  color: #C5C5C5;
  line-height: 18px;
  vertical-align: top;
}

.sidebar-list--numbers .news-teaser__item .icon:before {
  content: counter(sidebar-list);
  counter-increment: sidebar-list;
  background: none !important;
}

.sidebar-list--numbers .news-teaser__item .icon:after {
  content: '.';
}

.sidebar-list--transparent .sidebar-list__body {
  background: transparent;
  border-top: 1px solid #f1f1f1;
}

.sidebar-list .news-teaser__item:hover .news-teaser__body {
  text-decoration: underline;
}

.sidebar-list .news-teaser__image:before {
  display: none !important;
}

.post-header {
  position: relative;
  padding-bottom: 40px;
}

.post-header__image {
  width: 100%;
  height: 430px;
  position: relative;
  background-position: center;
  background-size: cover;
}

.post-header__image:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-linear-gradient(30deg, rgba(30, 30, 30, 0.45) 30%, transparent 70%);
  background-image: linear-gradient(60deg, rgba(30, 30, 30, 0.45) 30%, transparent 70%);
  display: block;
}

.post-header__headline {
  width: 600px;
  padding-left: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #FFF;
}

.post-header__category {
  line-height: 38px;
  width: 102px;
  background: #3C3C3C;
  color: #FFF;
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.post-header__category:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border: 19px solid #3C3C3C;
  border-top-color: transparent;
  border-right-color: transparent;
  top: 0;
  left: 100%;
}

.post-header__category:before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 320px;
  background: #3C3C3C;
}

.post-header__title {
  line-height: 50px;
  font-size: 45px;
  color: #FFF;
  margin-bottom: 8px;
}

.post-header__meta {
  font-size: 12px;
  color: #FFF;
}

.post-header__infos {
  position: absolute;
  bottom: 0;
  background: #FFF;
  height: 114px;
  width: -webkit-calc(100% - 342px);
  width: calc(100% - 342px);
  z-index: 1;
  font-size: 14px;
  color: #5A5A5A;
  padding: 30px 0 0 40px;
}

.post-header__infos span {
  font-size: 12px;
  color: #C5C5C5;
}

.post-header__infos:after {
  content: '';
  position: absolute;
  left: 100%;
  width: 0;
  height: 0;
  border: 57px solid #FFF;
  border-top-color: transparent;
  border-right-color: transparent;
  display: block;
  top: 0;
}

.post-header__voting {
  line-height: 160px;
  height: 160px;
  text-align: center;
  color: #FFF;
  font-family: "industry", sans-serif;
  font-weight: bold;
  font-size: 110px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: -webkit-linear-gradient(0deg, #FF810C, #FF9F0C);
  background: linear-gradient(-270deg, #FF810C, #FF9F0C);
  width: 230px;
  padding: 0 34px 0 0;
}

.post-header__voting:before {
  content: '';
  position: absolute;
  right: 100%;
  width: 0;
  height: 0;
  border: 80px solid #FF810C;
  border-top-color: transparent;
  border-left-color: transparent;
  display: block;
}

.post-header--empty .post-header__image:before {
  display: none;
}

.post-header__description {
  margin-top: 16px;
  color: #8A8A8A;
  font-size: 14px;
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 16px;
}

.post-infos {
  list-style: none;
  position: relative;
  padding: 0 0 0 40px;
  font-size: 22px;
  line-height: 38px;
  color: #3C3C3C;
  font-family: "industry", sans-serif;
  margin: 30px 0 0;
}

.post-infos li {
  padding: 0 0 0 30px;
  position: relative;
}

.post-infos li:before {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #FF810C;
}

.post_nav {
  border-bottom: 1px solid #C5C5C5;
  line-height: 50px;
  margin-bottom: 16px;
  font-family: "industry", sans-serif;
}

.post_nav__item {
  color: #C5C5C5;
  padding: 0 20px;
  display: block;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.post_nav__item:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 7px solid #C5C5C5;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post_nav__item--next:after {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 7px solid #C5C5C5;
}

.post_nav__item:hover {
  color: #8A8A8A;
}

.post_nav__item:hover:after {
  border-right-color: #FF810C;
  border-left-color: #FF810C;
}

.post__meta {
  font-size: 14px;
}

.post__jump-to {
  margin-top: -14px;
}

.post .left-column img {
  max-width: 100%;
}

.subnavi {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 38px;
}

.subnavi__item {
  font-size: 14px;
  color: #C5C5C5;
  text-transform: uppercase;
  margin-left: 28px;
}

.subnavi__item:hover {
  color: #FF810C;
}

.subnavi__item--active {
  color: #5A5A5A;
}

.review-content h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
}

.review-content p {
  max-width: 705px;
  margin-bottom: 40px;
}

.review-content img {
  margin-bottom: 0;
}

.review-content .image__desc {
  display: block;
  margin-bottom: 40px;
  font-size: 12px;
  line-height: 18px;
  color: #8A8A8A;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
}

.review-result {
  position: relative;
}

.review-result__image {
  display: block;
  position: relative;
  padding-bottom: 81px;
  width: 100%;
  height: 505px;
  background-position: center;
  background-size: cover;
}

.review-result__image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(30deg, rgba(30, 30, 30, 0.45) 30%, transparent 70%);
  background-image: linear-gradient(60deg, rgba(30, 30, 30, 0.45) 30%, transparent 70%);
}

.review-result__rating {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 256px;
  height: 162px;
  line-height: 162px;
  background: -webkit-linear-gradient(0deg, #FF810C, #FF9F0C);
  background: linear-gradient(-270deg, #FF810C, #FF9F0C);
  color: #FFF;
  padding: 0 0 0 50px;
  font-family: "industry", sans-serif;
  font-size: 120px;
  font-weight: bold;
  letter-spacing: 2px;
  z-index: 10;
}

.review-result__rating:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  top: 0;
  border: 81px solid #FF9F0C;
  border-right-color: transparent;
  border-top-color: transparent;
}

.review-result__right {
  background: #FFF;
  position: relative;
  top: -130px;
  min-height: 130px;
  z-index: 11;
  padding-top: 65px;
}

.review-result__right:before {
  content: '';
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  right: 100%;
  top: 0;
  border: 65px solid #FFF;
  border-left-color: transparent;
  border-top-color: transparent;
}

.review-result__left {
  padding-top: 80px;
}

.review-result__content {
  font-size: 19px;
  line-height: 28px;
  font-family: "Source Serif Pro", serif;
}

.review-result__headline {
  margin-bottom: 32px;
}

.review-result__subline {
  font-size: 16px;
  color: #5A5A5A;
  text-transform: uppercase;
}

.review-result__list {
  position: relative;
  width: 300px;
  margin-bottom: 32px;
  font-family: "Roboto", sans-serif;
}

.review-result__list__icon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FF810C;
  background-position: center;
  background-size: 19px;
  height: 52px;
  width: 50px;
}

.review-result__list__icon:after, .review-result__list__icon:before {
  content: '';
  width: 0;
  height: 0;
  border: 13px solid #FF810C;
  border-bottom-color: transparent;
  border-right-color: transparent;
  display: block;
  position: absolute;
  left: 100%;
  top: 0;
  background: none;
}

.review-result__list__icon:after {
  top: auto;
  bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #FF810C;
}

.review-result__list__headline {
  line-height: 52px;
  color: #FFF;
  background: -webkit-linear-gradient(0deg, #FF9F0C, #FF810C);
  background: linear-gradient(-270deg, #FF9F0C, #FF810C);
  color: #FFF;
  font-size: 16px;
  text-transform: uppercase;
  padding: 0 0 0 90px;
  position: relative;
}

.review-result__list__ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-result__list__item {
  border: 1px solid #E4E4E4;
  border-top: none;
  padding: 11px 40px 11px 45px;
  font-size: 16px;
  color: #5A5A5A;
  line-height: 24px;
  position: relative;
}

.review-result__list__item:before {
  content: '';
  width: 14px;
  height: 4px;
  display: block;
  position: absolute;
  background: #FF810C;
  left: 16px;
  top: 21px;
}

.review-result__list--pro .review-result__list__item:after {
  content: '';
  height: 14px;
  width: 4px;
  display: block;
  position: absolute;
  background: #FF810C;
  left: 21px;
  top: 16px;
}

.search {
  display: inline-block;
  position: relative;
  width: 37px;
  height: 38px;
  vertical-align: middle;
}

.search__input {
  -webkit-appearance: none;
  line-height: 36px !important;
  height: 36px !important;
  position: absolute;
  border: none;
  top: 0;
  right: 100%;
  outline: none;
  width: 0 !important;
  overflow: hidden;
  padding: 0 !important;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  text-align: left !important;
  margin: 0 !important;
  border: 1px solid #C5C5C5 !important;
  border-right: none !important;
  border-left: none !important;
}

.search__input:focus {
  width: 150px !important;
  padding: 0 20px !important;
  border-left: 1px solid #C5C5C5 !important;
  z-index: 10;
}

.search__submit {
  display: block;
  width: 37px !important;
  height: 38px !important;
  background-color: #3C3C3C !important;
  background-position: center;
  -webkit-apperance: none;
  border: none;
  text-indent: -9999px;
  outline: none;
}

span.youtube,
.videoWrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  display: block;
  margin-bottom: 20px;
}

span.youtube iframe,
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.ngg-galleryoverview__description {
  width: 540px;
  margin: 32px auto 0;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

.ngg-gallery-list {
  display: none;
}

.ngg-gallerypreview__item a {
  display: block;
  position: relative;
}

.ngg-gallerypreview__item a:after {
  content: '';
  width: 0;
  height: 0;
  display: block;
  border: 13px solid #FFF;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  right: 0;
  bottom: 0;
}

.ngg-gallerypreview__item a:hover:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(0deg, #FF810C, #FF9F0C);
  background: linear-gradient(-270deg, #FF810C, #FF9F0C);
  opacity: .7;
}

.ngg-gallerypreview__item a img {
  display: block;
}

.ngg-gallerypreview__headline {
  border-bottom: 1px solid #E4E4E4;
  display: block;
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 34px;
  margin-top: 32px;
  font-weight: normal;
}

blockquote {
  margin: 60px 0 60px;
  text-align: center;
  font-size: 45px;
  font-weight: bold;
  font-family: "industry", sans-serif;
  line-height: 50px;
  color: #3C3C3C;
}

blockquote p {
  margin: 0;
  padding: 0 80px;
}

blockquote p:before {
  content: '\00bb';
  margin-right: 10px;
}

blockquote p:after {
  content: '\00ab';
  margin-left: 10px;
}

.adContainer {
  position: absolute;
  top:0;
}
.adContainerClick {
  position:absolute;
  top:0;
  width:100%;
  height:100%;
  cursor: pointer;
}
