@charset "UTF-8";
@font-face {
  font-family: "GT America Bold";
  src: url("../fonts/GT-America-Bold/GT-America-Bold.woff2") format("woff2"), url("../fonts/GT-America-Bold/GT-America-Bold.woff") format("woff"), url("../fonts/GT-America-Bold/GT-America-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: "GT America Compressed Black";
  src: url("../fonts/GT-America-Compressed-Black/GT-America-Compressed-Black.woff2") format("woff2"), url("../fonts/GT-America-Compressed-Black/GT-America-Compressed-Black.woff") format("woff"), url("../fonts/GT-America-Compressed-Black/GT-America-Compressed-Black.otf") format("opentype");
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: "GT-America-Medium";
  src: url("../fonts/GT-America-Medium/GT-America-Medium.woff2") format("woff2"), url("../fonts/GT-America-Medium/GT-America-Medium.woff") format("woff"), url("../fonts/GT-America-Medium/GT-America-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 400; }

/**
 * Settings - will only sett settings if we  settings have not yet been defined
 */
/**
 * Settings
 *
 * Core defaults
 */
/**
 * Breakpoints
 *
 * Hold our breakpoint aliases and conditions in a list. These can be invoked
 * later on via the `respond-to()` mixin found in _mixins.scss.
 */
/**
 * Base Grid & Spacing values
 */
/**
 * Base Type Settings
 */
/**
 * Base Colours
 */
/**
 * Base Icons
 */
/**
 * Base Cursors
 */
/**
 * Base Sections (Sections being regions that allow you to control core styling)
 * The keys in this array will be used as modifiers (.Section--{key}) with the config settings provided
 * At a config level Sections can define:
 	- background color
 	- foreground color,
 	- heading typeface,
 	- body typeface
 	- padding for the .Section-body
 	- max width for the .Section-body
 	- colour for images
 	- colour links
 	- colour for active items
 */
/**
 * Top level hooks
 */
/**
 * Tools
 */
/* Strip unit */
/* Express pixel size as viewport width */
/* Express pixel size as viewport width */
/* Col and Row functions */
/**
 * Font size mixin
 *
 * This will generate a rem-based font-size with its pixel fallback.
 *
 * @include font-size(12px);
 */
/**
 * Grid
 */
/**
 * Media query mixin
 *
 * A simple mixin to quickly generate whole media queries from the aliases and
 * conditions defined in `_settings.scss`.
 *
 * @include respond-to(mobile) { ... }
 */
/**
* Get Unit function
*
* Return a value from a variable based on a responsive breakpoint vlabel. If the variable passed in is not multidimensional, then the value is simply returned
*
* get-unit('mobile',$base-padding);
*/
/**
 * Responsive property
 *
 * Works with the respond-to mixin to output a property with a range of settings based on breakpoint labels supplied
 *
 * @include font-size(12px);
 */
/**
 * Responsive font
 *
 * Viewport width font sizes with min and max sizes
 */
/**
 * Responsive X property
 *
 * Multiple a multi-dimensional value by a supplied factor
 */
/**
 * Margin-top
 *
 * Apply the base padding as a top margin
 */
/**
 * Margin-bottom
 *
 * Apply the base padding as a botto margin
 */
/*

	'background' : $base-background,
	'color' : $base-color,
	'heading-font-family' : $base-font-family-alt,
	'text-font-family' : $base-font-family,
	'container-padding' : $base-padding,
	'container-max-width' : $base-max-width,
	'image-color' : $base-image-color,
	'link-color' : $base-link-color,
	'active-color' : $base-active-color

*/
/*

Spritesheet mixin

*/
/**
 * Ceaser cubic bezier’s easing animations
 *
 * Based on: http://matthewlein.com/ceaser
 */
/**
 * EaseOut
*/
/**
 * Cubic
 */
/**
 * Circ
 */
/**
 * Expo
 */
/**
 * Quad
 */
/**
 * Quart
 */
/**
 * Quint
 */
/**
 * Sine
 */
/**
 * Back
 */
@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

@keyframes pulse {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/**
 * Base
 */
/*! 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 */ }

/**
 * 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"] {
  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;
  -webkit-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; }

/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

/**
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications. Removes the default spacing and border for
 * appropriate elements.
 */
/**
 * High, page-level styling.
 *
 * 1. Set the default font-family, `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 * 4. Fonts on OSX will look more consistent with other systems that do not
 *    render text using sub-pixel anti-aliasing.
 */
html {
  font-family: "Georgia", Times, Times New Roman, serif;
  /* 1 */
  font-size: 1em;
  /* 1 */
  line-height: 1.75;
  /* 1 */
  letter-spacing: 0;
  background: #FFF;
  color: #333333;
  overflow-y: scroll;
  /* 2 */
  min-height: 100%;
  /* 3 */
  -moz-osx-font-smoothing: grayscale;
  /* 4 */
  -webkit-font-smoothing: antialiased;
  /* 4 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  html .Site--dark {
    color: #cbcccc; }

a {
  color: #333333;
  /*@include when-inside('.Site--dark') {
	    color: $base-link-color-darkmode;
	}*/
  text-decoration: none;
  transition: opacity 0.4s ease, border 0.4s ease, color 0.4s ease; }

.Site--no-touch a:hover {
  opacity: 1; }

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
p,
pre {
  margin: 0; }

button {
  background: transparent;
  border: 0;
  padding: 0; }

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

iframe {
  border: 0; }

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0; }

/**
 * Suppress the focus outline on links that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 */
[tabindex="-1"]:focus {
  outline: none !important; }

/**
 * Emboldened elements
 */
b,
strong {
  /*  font-weight: normal;
  font-family: $base-font-family-bold;
  line-height:1;  */ }

em {
  font-style: italic; }

/**
 * Address
 */
address {
  font-style: normal; }

/**
 * Selection
 */
::selection {
  background-color: rgba(0, 0, 0, 0.75);
  color: #FFF;
  text-shadow: none; }
  .Site--dark ::selection {
    background-color: white;
    color: #070707; }

/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
img {
  max-width: 100%;
  /* 1 */
  font-style: italic;
  /* 2 */
  vertical-align: middle;
  /* 3 */ }

/**
 * If a `width` and/or `height` attribute have been explicitly defined, let’s
 * not make the image fluid.
 */
img[width],
img[height] {
  max-width: none; }

/**
 * Text inputs
 */
input,
textarea {
  outline: none;
  border: 0;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0; }

input[type="search"] {
  box-sizing: inherit; }

::-webkit-input-placeholder {
  color: #787878; }

/**
 * Text tags all set to base font size
 */
h1,
h2,
h3,
h4,
h5,
h6,
p, ul, input {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal; }

/**
 * Utils
 */
.Icon.Icon--ratio {
  position: relative; }

.Icon.Icon--ratio > *, .Layout-bg,
*[data-layout-bg], .Icon.Icon--fluid {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block; }

.Icon.Icon--ratio {
  height: 0;
  overflow: hidden;
  width: auto; }

/**
 * Contain floats
 *
 * Make an element expand to contain floated children.
 * Uses pseudo-elements (micro clearfix).
 *
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of the
 *    element.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.Slider .Slider-head:before, .Module .Module-head:before, .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title .Number:before,
.Slider .Slider-head:after,
.Module .Module-head:after,
.Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title .Number:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }


.Slider .Slider-head:after,
.Module .Module-head:after,
.Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title .Number:after {
  clear: both; }

/** @define Container */
/**
 * Container has auto side margins and max width in line with the base settings
 */
.Layout-container,
*[data-layout-container] {
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  padding-left: 20px;
  padding-right: 20px; }
  @media (min-width: 746px) {
    .Layout-container,
    *[data-layout-container] {
      padding-left: 60px; } }
  @media (min-width: 746px) {
    .Layout-container,
    *[data-layout-container] {
      padding-right: 60px; } }

/**
 * Core grid system
 */
/**
 * Grid container
 *
 * 1. Account for browser defaults of elements that might be the root node of
 *    the component.
 * 2. Ensure consistent default alignment.
 * 3. Apply a negative `margin-left` to negate the columns’ gutters.
 */
/**
 * Grid item
 *
 * 1. Fundamentals of the non-float grid layout.
 * 2. Space columns apart.
 * 3. Keeps content correctly aligned with the grid direction.
 * 4. Controls vertical positioning of units.
 * 5. Make cells full-width by default.
 */
/*

Can be extended on a component or pseudo element, add icon types and just send in an icon file:

	%u-icon--close{
	
		background-image:url('/ui/img/icons/close.svg');
	
	}
	
	Examples for making a component or pseudo element display like an icon...

	.Icon{
		
		@extend %u-icon;
		@extend %u-box--ratio;
		width:100%;
		padding-top:100%;
		
		
		
	}
	
	.Icon--closeBlack{
	
		@extend %u-icon--close;
		
		
	}
	
	.Link--icon{
		
		&:before{
			
			@extend %u-icon;
			@extend %u-icon--close;
			width:20px;
			height:20px;
		}
		
	}

	
	
*/
.Icon, .Link.Link--facebook:before, .Link.Link--instagram:before, .Link.Link--twitter:before {
  background: transparent center no-repeat;
  background-size: 100% auto;
  content: '';
  display: inline-block;
  transition: all 0.4s ease;
  transform-origin: 50% 50%;
  /*@include when-inside(':hover >'){
		
		opacity:0.5;
		
	}*/ }

.Icon--play {
  background-image: url("../img/icons/play.svg"); }

.Icon--search {
  background-image: url("../img/icons/search.svg"); }

.Icon--star {
  background-image: url("../img/icons/star.svg"); }

.Icon--close {
  background-image: url("../img/icons/close.svg"); }

.Icon--star-light-on {
  background-image: url("../img/icons/star-light-on.svg"); }

.Icon--burger {
  background-image: url("../img/icons/burger.svg"); }

.Icon--star-new-light-on-333, .Icon.Icon--star.is-on, .Site--dark .Module--grey .Icon.Icon--star.is-on {
  background-image: url("../img/icons/star-new-light-on-333.svg"); }

.Icon--star-new-light-off, .Icon.Icon--star, .Site--dark .Module--grey .Icon.Icon--star {
  background-image: url("../img/icons/star-new-light-off.svg"); }

.Icon--star-new-dark-off, .Site--dark .Icon.Icon--star, .Module--grey .Icon.Icon--star {
  background-image: url("../img/icons/star-new-dark-off.svg"); }

.Icon--star-new-dark-on, .Site--dark .Icon.Icon--star.is-on, .Module--grey .Icon.Icon--star.is-on {
  background-image: url("../img/icons/star-new-dark-on.svg"); }

.Icon--star-dark-on {
  background-image: url("../img/icons/star-dark-on.svg"); }

.Icon--star-light-off {
  background-image: url("../img/icons/star-light-off.svg"); }

.Icon--arrow, .Link.Link--small:after, .Icon.Icon--number .Icon-body:after, .Module--grey .Icon.Icon--number:hover .Icon-body:after {
  background-image: url("../img/icons/arrow.svg"); }

.Icon--arrow-white, .Link.Link--small.Link--white:after, .Module--grey .Icon.Icon--number .Icon-body:after, .Icon.Icon--number:hover .Icon-body:after {
  background-image: url("../img/icons/arrow-white.svg"); }

.Icon--arrow-prev {
  background-image: url("../img/icons/arrow-prev.svg"); }

.Icon--arrow-prev-white {
  background-image: url("../img/icons/arrow-prev-white.svg"); }

.Icon--twitter2, .Link.Link--twitter:before {
  background-image: url("../img/icons/twitter2.svg"); }

.Icon--facebook, .Link.Link--facebook:before {
  background-image: url("../img/icons/facebook.svg"); }

.Icon--instagram, .Link.Link--instagram:before {
  background-image: url("../img/icons/instagram.svg"); }

.Icon--facebook-grey, .Footer .Link.Link--facebook:before {
  background-image: url("../img/icons/facebook-grey.svg"); }

.Icon--instagram-grey, .Footer .Link.Link--instagram:before {
  background-image: url("../img/icons/instagram-grey.svg"); }

.Icon--twitter-grey, .Footer .Link.Link--twitter:before {
  background-image: url("../img/icons/twitter-grey.svg"); }

.Icon--glyph-mail, .Icon--glyph-search, .Icon--glyph-zoom-in, .Icon--glyph-zoom-out, .Icon--glyph-location, .Icon--glyph-arrow-left, .Icon--glyph-arrow-right, .Icon--glyph-arrow-up, .Icon--glyph-arrow-down, .Icon--glyph-plus, .Icon--glyph-minus, .Icon--glyph-check, .Icon--glyph-cross, .Icon--glyph-inbox, .Icon--glyph-open, .Icon--glyph-ellipsis, .Icon--glyph-location2, .Icon--glyph-play, .Icon--glyph-pause {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.Icon--glyph-mail:before {
  content: ""; }

.Icon--glyph-search:before {
  content: ""; }

.Icon--glyph-zoom-in:before {
  content: ""; }

.Icon--glyph-zoom-out:before {
  content: ""; }

.Icon--glyph-location:before {
  content: ""; }

.Icon--glyph-arrow-left:before {
  content: ""; }

.Icon--glyph-arrow-right:before {
  content: ""; }

.Icon--glyph-arrow-up:before {
  content: ""; }

.Icon--glyph-arrow-down:before {
  content: ""; }

.Icon--glyph-plus:before {
  content: ""; }

.Icon--glyph-minus:before {
  content: ""; }

.Icon--glyph-check:before {
  content: ""; }

.Icon--glyph-cross:before {
  content: ""; }

.Icon--glyph-inbox:before {
  content: ""; }

.Icon--glyph-open:before {
  content: ""; }

.Icon--glyph-ellipsis:before {
  content: ""; }

.Icon--glyph-location2:before {
  content: ""; }

.Icon--glyph-play:before {
  content: ""; }

.Icon--glyph-pause:before {
  content: ""; }

/* Ratio box - needs a top padding to give it proportion */
/* Relative box - must be sized specifically, e.g. keepRatio */
/* Fluid box - will fill its parent */
/* Ratio cover -  needs a top padding. Images will cover regardless of source size */
/* Fluid cover - will fill its parent and scale background image regardless of source size */
/**
 * Core list system
 */
/**
 * List
 *
 */
.Content p, .Content.Content--default p, .Content.Content--normal p, .Link.Link--inlinetag, .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-body, .Campaign.Campaign--inArticle .Campaign-info .Campaign-title, .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer, .Embed .Embed-GDPR {
  font-family: "Helvetica", Arial, sans-serif; }

.Content p, .Content.Content--default p, .Content.Content--normal p, .Link.Link--inlinetag, .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-body, .Campaign.Campaign--inArticle .Campaign-info .Campaign-title, .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer, .Embed .Embed-GDPR {
  font-size: 16px;
  font-size: 1rem; }

/**
 * Align children of this element vertically in the middle
 */
/**
 * Cell
 *
 * 1. Make it relative so children can borrow its height
 * 2. Add pseudo element so that theblcok content can sit in the vertical middle (hack to give height to an unknown area)
 * 3. Immediate children set to inline block
 * 4. Immeditate children set to vertical align middle
 */
.Layout-middle,
*[data-layout-middle] {
  display: block;
  position: relative;
  /* 1 */
  white-space: nowrap; }
  .Layout-middle:before,
  [data-layout-middle]:before {
    /* 2 */
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    /* Old way */
    margin-right: -0.25em;
    /* Adjusts for spacing */
    /* New Way */
    width: 1px;
    margin-left: -1px;
    margin-right: 0; }
  .Layout-middle > *, *[data-layout-middle] > * {
    display: inline-block;
    /* 3 */
    vertical-align: middle;
    /* 4 */
    white-space: normal;
    width: 100%; }

.Layout,
*[data-layout] {
  position: relative;
  z-index: 1; }

.Layout--window,
*[data-layout="window"],
*[data-layout-window] {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  /* http://stephen.io/mediaqueries/ */
  /* Viewport height fix in pure css for specific iOS devices */
  /* iPhone 2G-4 portrait */
  /* iPhone 5,5s portrait */
  /* iPhone 6,7,8  */
  /* iPhone 6+,7+,8+ */
  /* iPhone X */
  /* iPad */ }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) {
    .Layout--window,
    *[data-layout="window"],
    *[data-layout-window] {
      height: 373px; } }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) {
    .Layout--window,
    *[data-layout="window"],
    *[data-layout-window] {
      height: 320px; } }
  @media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
    .Layout--window,
    *[data-layout="window"],
    *[data-layout-window] {
      height: 461px; } }
  @media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: landscape) {
    .Layout--window,
    *[data-layout="window"],
    *[data-layout-window] {
      height: 320px; } }
  @media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: portrait) {
    .Layout--window,
    *[data-layout="window"],
    *[data-layout-window] {
      height: 560px; } }
  @media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) {
    .Layout--window,
    *[data-layout="window"],
    *[data-layout-window] {
      height: 375px; } }
  @media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (orientation: portrait) {
    .Layout--window,
    *[data-layout="window"],
    *[data-layout-window] {
      height: 629px; } }
  @media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (orientation: landscape) {
    .Layout--window,
    *[data-layout="window"],
    *[data-layout-window] {
      height: 414px; } }
  @media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
    .Layout--window,
    *[data-layout="window"],
    *[data-layout-window] {
      height: 705px; } }
  @media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
    .Layout--window,
    *[data-layout="window"],
    *[data-layout-window] {
      height: 375px; } }
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .Layout--window,
    *[data-layout="window"],
    *[data-layout-window] {
      height: 927px; } }
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .Layout--window,
    *[data-layout="window"],
    *[data-layout-window] {
      height: 671px; } }

.Layout--fluid,
*[data-layout="fluid"], .Layout-fluid,
*[data-layout-fluid] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1; }

.Layout--abs,
*[data-layout="abs"] {
  position: absolute;
  width: 100%;
  z-index: 1; }

.Layout--fixed,
*[data-layout="fixed"],
*[data-layout-fixed] {
  position: fixed;
  width: 100%;
  z-index: 1; }

.Layout-head,
*[data-layout-head] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2; }

.Layout-body,
*[data-layout-body] {
  position: relative;
  z-index: 1; }

.Layout-centre,
*[data-layout-centre],
*[data-layout-center], .Icon.Icon--number .Icon-body:after, .Icon.Icon--number .Icon-body span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3; }

.Layout-foot,
*[data-layout-foot] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3; }

.Layout-right,
*[data-layout-right] {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 2; }

.Layout-middle,
*[data-layout-middle] {
  height: 100%; }

.Layout-scroll,
*[data-layout-scroll] {
  overflow: hidden;
  overflow-y: auto; }
  .Site--touch .Layout-scroll,
  .Site--touch *[data-layout-scroll] {
    overflow-y: scroll;
    /* has to be scroll, not auto */
    -webkit-overflow-scrolling: touch; }

.Layout-left,
*[data-layout-left] {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 2; }

.Layout-tl,
*[data-layout-tl] {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3; }

.Layout-tr,
*[data-layout-tr] {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3; }

.Layout-tm,
*[data-layout-tm] {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  transform: translateX(-50%); }

.Layout-bm,
*[data-layout-bm] {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  transform: translateX(-50%); }

.Layout-lm,
*[data-layout-lm] {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
  transform: translateY(-50%); }

.Layout-rm,
*[data-layout-rm] {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 3;
  transform: translateY(-50%); }

.Layout-bl,
*[data-layout-bl] {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3; }

.Layout-br,
*[data-layout-br] {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3; }

.Layout-bg,
*[data-layout-bg] {
  z-index: 0; }

/**
 * Components
 */
.Icon {
  width: 28px;
  height: 28px;
  overflow: hidden;
  overflow: hidden;
  padding: 0;
  text-indent: 101%;
  white-space: nowrap; }
  .Icon.Icon--ratio {
    width: 100%;
    padding-top: 100%; }
  .Icon.Icon--fluid {
    padding-top: 0; }

.Icon--glyph-mail {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-mail:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-search {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-search:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-zoom-in {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-zoom-in:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-zoom-out {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-zoom-out:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-location {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-location:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-arrow-left {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-arrow-left:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-arrow-right {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-arrow-right:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-arrow-up {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-arrow-up:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-arrow-down {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-arrow-down:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-plus {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-plus:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-minus {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-minus:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-check {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-check:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-cross {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-cross:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-inbox {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-inbox:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-open {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-open:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-ellipsis {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-ellipsis:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-location2 {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-location2:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-play {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-play:before {
    display: inline-block;
    width: 100%; }

.Icon--glyph-pause {
  position: relative;
  text-indent: 0;
  font-size: 28px; }
  .Icon--glyph-pause:before {
    display: inline-block;
    width: 100%; }

.Layout-front,
*[data-layout-front] {
  z-index: 5; }

.Layout-back,
*[data-layout-back] {
  z-index: 0; }

.Layout--debug div {
  border: 1px solid black;
  background: rgba(0, 0, 0, 0.25);
  min-width: 50px;
  min-height: 50px;
  color: #FFF; }

.Content p, .Content.Content--default p, .Content.Content--normal p, .Link.Link--inlinetag, .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-body, .Campaign.Campaign--inArticle .Campaign-info .Campaign-title, .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer, .Embed .Embed-GDPR {
  font-family: "Georgia", Times, Times New Roman, serif;
  font-size: 17px;
  line-height: 1.6; }
  @media (max-width: 745px) {
    .Content p, .Content.Content--default p, .Content.Content--normal p, .Link.Link--inlinetag, .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-body, .Campaign.Campaign--inArticle .Campaign-info .Campaign-title, .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer, .Embed .Embed-GDPR {
      font-size: 17px; } }
  @media (max-width: 321px) {
    .Content p, .Content.Content--default p, .Content.Content--normal p, .Link.Link--inlinetag, .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-body, .Campaign.Campaign--inArticle .Campaign-info .Campaign-title, .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer, .Embed .Embed-GDPR {
      font-size: 20px; } }
  @media (max-width: 376px) {
    .Content p, .Content.Content--default p, .Content.Content--normal p, .Link.Link--inlinetag, .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-body, .Campaign.Campaign--inArticle .Campaign-info .Campaign-title, .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer, .Embed .Embed-GDPR {
      font-size: 18px; } }
  @media (min-width: 1400px) {
    .Content p, .Content.Content--default p, .Content.Content--normal p, .Link.Link--inlinetag, .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-body, .Campaign.Campaign--inArticle .Campaign-info .Campaign-title, .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer, .Embed .Embed-GDPR {
      font-size: 20px; } }
  @media (min-width: 1575px) {
    .Content p, .Content.Content--default p, .Content.Content--normal p, .Link.Link--inlinetag, .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-body, .Campaign.Campaign--inArticle .Campaign-info .Campaign-title, .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer, .Embed .Embed-GDPR {
      font-size: 22px; } }

.Spot .Spot-title, .Spot.Spot--singleFeature .Spot-inner .Spot-appetizer, .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-appetizer, .Template.Template--list .headline, .Article .Article-appetizer {
  font-family: "GT-America-Medium", sans-serif;
  /* VW */
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.42; }
  .Spot--singleFeature .Spot .Spot-title, .Spot .Spot--singleFeature .Spot-title, .Spot.Spot--singleFeature .Spot-inner .Spot-appetizer, .Spot--singleFeature .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-appetizer, .Spot.Spot--topFeatureSpecial .Spot-inner .Spot--singleFeature .Spot-appetizer, .Spot--singleFeature .Template.Template--list .headline, .Template.Template--list .Spot--singleFeature .headline, .Spot--singleFeature .Article .Article-appetizer, .Article .Spot--singleFeature .Article-appetizer {
    font-size: 18px;
    font-size: 1.125rem; }
  .Spot--topFeatureSpecial .Spot .Spot-title, .Spot .Spot--topFeatureSpecial .Spot-title, .Spot--topFeatureSpecial .Spot.Spot--singleFeature .Spot-inner .Spot-appetizer, .Spot.Spot--singleFeature .Spot-inner .Spot--topFeatureSpecial .Spot-appetizer, .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-appetizer, .Spot--topFeatureSpecial .Template.Template--list .headline, .Template.Template--list .Spot--topFeatureSpecial .headline, .Spot--topFeatureSpecial .Article .Article-appetizer, .Article .Spot--topFeatureSpecial .Article-appetizer {
    font-size: 18px;
    font-size: 1.125rem; }
  @media (max-width: 745px) {
    .Spot .Spot-title, .Spot.Spot--singleFeature .Spot-inner .Spot-appetizer, .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-appetizer, .Template.Template--list .headline, .Article .Article-appetizer {
      font-size: 16px;
      font-size: 1rem;
      line-height: 1.4375; }
      .Module--slider .Spot .Spot-title, .Spot .Module--slider .Spot-title, .Module--slider .Spot.Spot--singleFeature .Spot-inner .Spot-appetizer, .Spot.Spot--singleFeature .Spot-inner .Module--slider .Spot-appetizer, .Module--slider .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-appetizer, .Spot.Spot--topFeatureSpecial .Spot-inner .Module--slider .Spot-appetizer, .Module--slider .Template.Template--list .headline, .Template.Template--list .Module--slider .headline, .Module--slider .Article .Article-appetizer, .Article .Module--slider .Article-appetizer {
        font-size: 14px;
        font-size: 0.875rem;
        line-height: 1.357; } }
  @media (min-width: 2000px) {
    .Spot .Spot-title, .Spot.Spot--singleFeature .Spot-inner .Spot-appetizer, .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-appetizer, .Template.Template--list .headline, .Article .Article-appetizer {
      font-size: 22.2222222222px; } }

.Content.Content--default h6, .Content.Content--normal h6 {
  font-family: "GT America Bold", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  text-transform: uppercase; }

.Content.Content--404 h1, .Article .Article-headline h1 {
  font-family: "GT America Compressed Black", sans-serif;
  font-size: 76px;
  font-size: 4.75rem;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
  /*
	@include respond-to(mobile-medium){
		@include rem("font-size",18px);
	}
	
	@include respond-to(mobile-small){
		@include rem("font-size",20px);
	}
*/ }
  @media (max-width: 745px) {
    .Content.Content--404 h1, .Article .Article-headline h1 {
      font-size: 36px;
      font-size: 2.25rem;
      line-height: 0.85; } }
  @media (min-width: 2000px) {
    .Content.Content--404 h1, .Article .Article-headline h1 {
      font-size: 105.555555556px; } }

.Content h1 {
  font-family: "GT America Compressed Black", sans-serif;
  font-size: 64px;
  font-size: 4rem;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: center; }

.Module--podcasts .Spot.Spot--large .Spot-info .Spot-title, .Module--bottomFeatures .Spot.Spot--large .Spot-info .Spot-title, .Module--partner-article-spots .Spot.Spot--large .Spot-info .Spot-title, .Content blockquote p, .Content.Content--default a,
.Content.Content--default h2, .Spot.Spot--large .Spot-info .Spot-title, .Newsletter .Newsletter-title {
  font-family: "GT America Compressed Black", sans-serif;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 0.92;
  text-transform: uppercase;
  text-align: center; }
  @media (max-width: 745px) {
    .Module--podcasts .Spot.Spot--large .Spot-info .Spot-title, .Module--bottomFeatures .Spot.Spot--large .Spot-info .Spot-title, .Module--partner-article-spots .Spot.Spot--large .Spot-info .Spot-title, .Content blockquote p, .Content.Content--default a,
    .Content.Content--default h2, .Spot.Spot--large .Spot-info .Spot-title, .Newsletter .Newsletter-title {
      font-size: 28px;
      font-size: 1.75rem;
      line-height: 0.92; } }
  @media (min-width: 2000px) {
    .Module--podcasts .Spot.Spot--large .Spot-info .Spot-title, .Module--bottomFeatures .Spot.Spot--large .Spot-info .Spot-title, .Module--partner-article-spots .Spot.Spot--large .Spot-info .Spot-title, .Content blockquote p, .Content.Content--default a,
    .Content.Content--default h2, .Spot.Spot--large .Spot-info .Spot-title, .Newsletter .Newsletter-title {
      font-size: 69.4444444444px; } }

.Module--podcasts .Spot.Spot--large .Spot-info .Spot-title, .Module--bottomFeatures .Spot.Spot--large .Spot-info .Spot-title, .Module--partner-article-spots .Spot.Spot--large .Spot-info .Spot-title {
  font-size: 2.6rem; }
  @media (min-width: 2000px) {
    .Module--podcasts .Spot.Spot--large .Spot-info .Spot-title, .Module--bottomFeatures .Spot.Spot--large .Spot-info .Spot-title, .Module--partner-article-spots .Spot.Spot--large .Spot-info .Spot-title {
      font-size: 57.7777777778px; } }
  @media (max-width: 745px) {
    .Module--podcasts .Spot.Spot--large .Spot-info .Spot-title, .Module--bottomFeatures .Spot.Spot--large .Spot-info .Spot-title, .Module--partner-article-spots .Spot.Spot--large .Spot-info .Spot-title {
      font-size: 25px;
      font-size: 1.5625rem; } }

.Content h2,
.Content h2 b,
.Content h2 em,
.Content h2 strong, .Content h3, .Slider .Slider-title,
.Slider .Slider-title-mobile, .List.List--searchResults li, .Module .Module-head .Module-headline, .Module.Module--headline h1, .Module.Module--featureAndNewslist .Module-head .Module-heading, .Spot.Spot--list .Spot-info .Spot-title, .Form.Form--search input, .Template .Template-head, .Template .Template-head h1, .Template.Template--list .page-title, .Template.Template--list .Results .Result a, .Embed .Embed-GDPR span.line1 {
  font-family: "GT America Compressed Black", sans-serif;
  font-weight: 400;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.04;
  text-transform: uppercase; }
  @media (max-width: 745px) {
    .Content h2,
    .Content h2 b,
    .Content h2 em,
    .Content h2 strong, .Content h3, .Slider .Slider-title,
    .Slider .Slider-title-mobile, .List.List--searchResults li, .Module .Module-head .Module-headline, .Module.Module--headline h1, .Module.Module--featureAndNewslist .Module-head .Module-heading, .Spot.Spot--list .Spot-info .Spot-title, .Form.Form--search input, .Template .Template-head, .Template .Template-head h1, .Template.Template--list .page-title, .Template.Template--list .Results .Result a, .Embed .Embed-GDPR span.line1 {
      font-size: 25px;
      font-size: 1.5625rem;
      line-height: 0.92; } }
  @media (min-width: 2000px) {
    .Content h2,
    .Content h2 b,
    .Content h2 em,
    .Content h2 strong, .Content h3, .Slider .Slider-title,
    .Slider .Slider-title-mobile, .List.List--searchResults li, .Module .Module-head .Module-headline, .Module.Module--headline h1, .Module.Module--featureAndNewslist .Module-head .Module-heading, .Spot.Spot--list .Spot-info .Spot-title, .Form.Form--search input, .Template .Template-head, .Template .Template-head h1, .Template.Template--list .page-title, .Template.Template--list .Results .Result a, .Embed .Embed-GDPR span.line1 {
      font-size: 44.4444444444px; } }

.Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-head .Newsletter-box-title {
  font-family: "GT America Compressed Black", sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 0.833;
  text-transform: uppercase; }
  @media (min-width: 2000px) {
    .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-head .Newsletter-box-title {
      font-size: 26.3888888889px; } }

.Content.Content--sectionIntro p {
  font-family: "Georgia", Times, Times New Roman, serif;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.3;
  text-align: center; }
  @media (max-width: 745px) {
    .Content.Content--sectionIntro p {
      font-size: 16px;
      font-size: 1rem; } }
  @media (min-width: 2000px) {
    .Content.Content--sectionIntro p {
      font-size: 34.7222222222px; } }

.Content small, .Module--review .Spot .Spot-title, .Module--bottomFeatures .Spot .Spot-title, .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
  font-family: "GT-America-Medium", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.42; }
  @media (max-width: 745px) {
    .Content small, .Module--review .Spot .Spot-title, .Module--bottomFeatures .Spot .Spot-title, .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
      font-size: 14px;
      font-size: 0.875rem; } }
  @media (min-width: 2000px) {
    .Content small, .Module--review .Spot .Spot-title, .Module--bottomFeatures .Spot .Spot-title, .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
      font-size: 19.4444444444px; } }

.Content.Content--disclaimer, .Content.Content--disclaimer small {
  font-family: "Georgia", Times, Times New Roman, serif;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.36; }

.Button.Button--yellow a, .Button.Button--GDPR a, .Content figure figcaption, .Content .relatedtext .relatedtext-headline, .Slider .Slider-cta-mobile, .Slider.Slider--trending .Slider-body .Slider-title, .Slider.Slider--related .Slider-body .Slider-title, .Tag, .Timestamp, .Module .Module-head .Module-title,
.Module .Module-head .Module-cta,
.Module .Module-head .Module-partner, .Module .Module-footer.mountaindew .mountaindew .mountaindewtext, .Module.Module--slider--live .Module-foot .Button a, .Icon.Icon--number .Icon-body span, .Spot .Spot-title .Category, .Spot .Spot-category, .Spot .Spot-time, .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title .Number:after, .Form .Form-input, .Form .Form-submit, .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-head .Newsletter-box-frequency, .Template-purchase-top .Template-purchase-top-sections span, .Article .Article-byline, .Article .Article-imageinfo, .Article .Article-imageinfo div, .in-article-front .in-article-bordertext, .Campaign.Campaign--nativeLink .Campaign-company {
  font-family: "GT America Bold", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1;
  text-transform: uppercase; }
  @media (max-width: 745px) {
    .Button.Button--yellow a, .Button.Button--GDPR a, .Content figure figcaption, .Content .relatedtext .relatedtext-headline, .Slider .Slider-cta-mobile, .Slider.Slider--trending .Slider-body .Slider-title, .Slider.Slider--related .Slider-body .Slider-title, .Tag, .Timestamp, .Module .Module-head .Module-title,
    .Module .Module-head .Module-cta,
    .Module .Module-head .Module-partner, .Module .Module-footer.mountaindew .mountaindew .mountaindewtext, .Module.Module--slider--live .Module-foot .Button a, .Icon.Icon--number .Icon-body span, .Spot .Spot-title .Category, .Spot .Spot-category, .Spot .Spot-time, .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title .Number:after, .Form .Form-input, .Form .Form-submit, .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-head .Newsletter-box-frequency, .Template-purchase-top .Template-purchase-top-sections span, .Article .Article-byline, .Article .Article-imageinfo, .Article .Article-imageinfo div, .in-article-front .in-article-bordertext, .Campaign.Campaign--nativeLink .Campaign-company {
      font-size: 10px;
      font-size: 0.625rem; } }
  @media (min-width: 2000px) {
    .Button.Button--yellow a, .Button.Button--GDPR a, .Content figure figcaption, .Content .relatedtext .relatedtext-headline, .Slider .Slider-cta-mobile, .Slider.Slider--trending .Slider-body .Slider-title, .Slider.Slider--related .Slider-body .Slider-title, .Tag, .Timestamp, .Module .Module-head .Module-title,
    .Module .Module-head .Module-cta,
    .Module .Module-head .Module-partner, .Module .Module-footer.mountaindew .mountaindew .mountaindewtext, .Module.Module--slider--live .Module-foot .Button a, .Icon.Icon--number .Icon-body span, .Spot .Spot-title .Category, .Spot .Spot-category, .Spot .Spot-time, .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title .Number:after, .Form .Form-input, .Form .Form-submit, .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-head .Newsletter-box-frequency, .Template-purchase-top .Template-purchase-top-sections span, .Article .Article-byline, .Article .Article-imageinfo, .Article .Article-imageinfo div, .in-article-front .in-article-bordertext, .Campaign.Campaign--nativeLink .Campaign-company {
      font-size: 15.2777777778px; } }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  font-family: "GT America Bold", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1;
  text-transform: uppercase; }
  @media (max-width: 745px) {
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus {
      font-size: 10px;
      font-size: 0.625rem; } }
  @media (min-width: 2000px) {
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus {
      font-size: 15.2777777778px; } }

.Timestamp {
  color: #BCBCBC; }
  .Site--dark .Timestamp {
    color: #F8F8F8; }

.Content h5 {
  font-family: "Georgia", Times, Times New Roman, serif;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.36; }

.Content .facts, .Content .facts b {
  font-family: "Georgia", Times, Times New Roman, serif;
  font-style: italic;
  font-size: 14px;
  font-size: 0.875rem; }
  @media (max-width: 745px) {
    .Content .facts, .Content .facts b {
      line-height: 1.5; } }

.Link {
  font-family: "GT America Bold", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  text-transform: uppercase; }

.Link.Link--small, .Link.Link--foot, .List.List--foot span {
  font-family: "GT America Bold", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1;
  text-transform: uppercase; }

.Link.Link--big, .Link.Link--submenu {
  font-family: "GT America Compressed Black", sans-serif;
  font-size: 64px;
  font-size: 4rem;
  line-height: 1.25;
  text-transform: uppercase; }

.Link.Link--medium {
  font-family: "GT America Compressed Black", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.35;
  text-transform: uppercase; }

.Link.Link--small:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 6px;
  width: 0.375rem;
  height: 12px;
  height: 0.75rem;
  line-height: 1;
  margin-left: 10px;
  margin-left: 0.625rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto; }

.Link.Link--small.Link--white:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 6px;
  width: 0.375rem;
  height: 12px;
  height: 0.75rem;
  line-height: 1;
  margin-left: 10px;
  margin-left: 0.625rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto; }

.Site .Site-foot .Site-foot-columns, .Grid, .Slider .Slider-body, .Spot.Spot--singleFeature .Spot-inner, .Spot.Spot--topFeatureSpecial .Spot-inner, .Spot.Spot--list .Spot-inner, .Newsletter.Newsletter--dark .Newsletter-boxes, .Footer .Footer-columns {
  display: flex;
  flex-wrap: wrap; }

.Grid .Grid-item, .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box {
  position: relative;
  display: block;
  vertical-align: top;
  text-align: left; }

.Menu .Menu-foot {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; }

.Menu .Menu-close {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: auto; }

.Site.Site--video, .Site.Site--dark, .Site.Site--video .Site-head,
.Site.Site--video .Site-trending, .Site.Site--dark .Site-head,
.Site.Site--dark .Site-trending, .Site--video .Template, .Site--dark .Template {
  background-color: black;
  color: white; }

/** @define Component */
/**
 * Name: Component
*/
.Component {
  margin: 0 auto;
  border-bottom: 1px #ccc solid; }

.Component-head {
  color: #999;
  padding: 10px;
  border-bottom: 1px #ccc solid; }

.Component-body {
  padding: 10px;
  position: relative; }

.Component.Component--dark {
  background: #333333;
  color: white; }

.Component.Component--section {
  margin: 0px auto 30px auto; }
  .Component.Component--section .Component-head {
    font-size: 30px; }

.Component--navigation li {
  display: inline-block;
  margin-left: 20px; }

.Debug {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background-color: transparent;
  display: none;
  opacity: 0.1;
  pointer-events: none; }
  .Debug.is-active {
    display: none; }

html, body {
  font-size: 1.111vw; }
  @media (max-width: 745px) {
    html, body {
      font-size: 4.2105vw; } }
  @media (max-width: 745px) and (orientation: landscape) {
    html, body {
      font-size: 2vw; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    html, body {
      font-size: 1.5625vw; } }
  @media (min-width: 2000px) {
    html, body {
      font-size: 22.2222222222px; } }
  html a, body a {
    color: inherit; }

.Site.Site--adminBar .Site-head,
.Site.Site--adminBar .Site-trending,
.Site.Site--adminBar .Site-body {
  margin-top: 32px; }

.Site {
  background-color: #F8F8F8; }
  .Site--dark .Site {
    background-color: #070707; }
  .Site .Site-page {
    position: relative; }
  .Site .Site-head {
    position: absolute;
    top: 0;
    z-index: 9;
    width: 100%;
    height: 54px;
    height: 3.375rem;
    background-color: white;
    border-bottom: 1px solid #ABABAB; }
    .Site--dark .Site .Site-head {
      background-color: black; }
    .Site--dark .Site .Site-head {
      border-bottom: 1px solid #cbcccc; }
    @media (min-width: 2000px) {
      .Site .Site-head {
        height: 75px; } }
    @media (max-width: 745px) {
      .Site .Site-head {
        height: 50px;
        height: 3.125rem; } }
  @media (max-width: 745px) {
    .Site .Site-head-container {
      position: relative;
      overflow: hidden; } }
  .Site .Site-head-hidden {
    position: relative;
    z-index: 7;
    width: 100%;
    height: 54px;
    height: 3.375rem;
    visibility: hidden; }
    @media (max-width: 745px) {
      .Site .Site-head-hidden {
        height: 50px;
        height: 3.125rem; } }
  .Site .Site-trending {
    position: absolute;
    background: white;
    top: 54px;
    top: 3.375rem;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 8;
    transition: transform 700ms 1ms cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-backface-visibility: hidden; }
    .Site--dark .Site .Site-trending {
      background: black; }
    @media (max-width: 745px) {
      .Site .Site-trending {
        top: 50px;
        top: 3.125rem;
        transform: translateY(-100%) translate3d(0, 0, 0);
        transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1); } }
  .Site .Site-body {
    position: relative;
    z-index: 1;
    background-color: #F8F8F8; }
  .Site .Site-foot-spacer {
    width: 100%;
    display: none;
    height: 70vh;
    background: transparent;
    pointer-events: none; }
    @media (max-width: 745px) {
      .Site .Site-foot-spacer {
        height: 70vh; } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Site .Site-foot-spacer {
        height: 40vh; } }
    @media (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
      .Site .Site-foot-spacer {
        height: 50vh; } }
  .Site .Site-foot {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    padding: 0;
    background: #202020;
    color: white;
    padding-left: 0;
    padding-right: 0;
    padding-top: 125px;
    padding-top: 7.8125rem; }
    .Site .Site-foot.Site-foot--Para {
      position: fixed;
      bottom: 0;
      left: 0;
      z-index: -2;
      visibility: hidden; }
    @media (max-width: 745px) {
      .Site .Site-foot {
        padding-top: 55px;
        padding-top: 3.4375rem; } }
    .Site .Site-foot .Site-foot-newsletter {
      padding-bottom: 100px;
      padding-bottom: 6.25rem; }
      @media (max-width: 745px) {
        .Site .Site-foot .Site-foot-newsletter {
          padding-bottom: 60px;
          padding-bottom: 3.75rem; } }
    .Site .Site-foot .Site-foot-columns {
      padding-bottom: 50px;
      padding-bottom: 3.125rem;
      width: 100%;
      margin: 0;
      padding-left: calc(3.75rem);
      padding-right: calc(3.75rem); }
      @media (max-width: 745px) {
        .Site .Site-foot .Site-foot-columns {
          padding-left: 0;
          padding-right: 0;
          justify-content: center;
          align-items: center;
          flex-wrap: wrap-reverse;
          padding-bottom: 20px;
          padding-bottom: 1.25rem; } }
      @media (min-width: 2000px) {
        .Site .Site-foot .Site-foot-columns {
          max-width: 1832px;
          margin: 0 auto;
          padding-left: 0;
          padding-right: 0; } }
    .Site .Site-foot .Site-foot-column {
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem ) / 12 * 6 + 5 * 3.75rem )); }
      @media (max-width: 745px) {
        .Site .Site-foot .Site-foot-column {
          width: calc( ( (100% - 6 * 2.41rem ) / 6 * 6 + 5 * 2.41rem ));
          margin-left: 0.625rem;
          margin-right: 0.625rem; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Site .Site-foot .Site-foot-column {
          margin-left: 1rem;
          margin-right: 1rem;
          width: calc( ( (100% - 12 * 2rem ) / 12 * 6 + 5 * 2rem )); } }
      .Site .Site-foot .Site-foot-column.Site-foot-column--last {
        text-align: right; }
        @media (max-width: 745px) {
          .Site .Site-foot .Site-foot-column.Site-foot-column--last {
            text-align: left;
            margin-bottom: 15px;
            margin-bottom: 0.9375rem; } }
      @media (max-width: 745px) {
        .Site .Site-foot .Site-foot-column {
          width: auto; } }
  .Site .Site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.5);
    z-index: 11;
    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms 200ms cubic-bezier(0.19, 1, 0.22, 1); }
    .Site .Site-overlay .Site-overlay-inner {
      position: absolute;
      top: 0;
      left: 0;
      width: 36%;
      height: 100%;
      background: #202020;
      color: white;
      transition: transform 400ms cubic-bezier(0.19, 1, 0.22, 1);
      overflow: hidden;
      transform: translateX(-100%); }
      .Site--dark .Site .Site-overlay .Site-overlay-inner {
        background: #F8F8F8; }
      .Site--dark .Site .Site-overlay .Site-overlay-inner {
        color: black; }
      @media (max-width: 745px) {
        .Site .Site-overlay .Site-overlay-inner {
          width: 100%; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Site .Site-overlay .Site-overlay-inner {
          width: 75%; } }
    .Site .Site-overlay.Site-overlay--search .Site-overlay-inner {
      right: 0;
      left: auto;
      background: #F8F8F8;
      transform: translateX(100%); }
      .Site--dark .Site .Site-overlay.Site-overlay--search .Site-overlay-inner {
        background-color: #070707; }
  .Site.Site--minTrending .Site-trending {
    transform: translateY(calc(-100% + 17px)) translate3d(0, 0, 0); }
    @media (max-width: 745px) {
      .Site.Site--minTrending .Site-trending {
        transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1); } }
  @media (max-width: 745px) {
    .Site.Site--maxTrending .Site-trending {
      transform: translateY(0) translate3d(0, 0, 0);
      transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1); } }
  .Site.Site--headActive .Site-head {
    position: fixed;
    top: 0; }
  .Site.Site--headActive .Site-trending {
    position: fixed; }
  .Site.Site--headActive .Site-foot {
    visibility: visible;
    pointer-events: all; }
  .Site.Site--menu .Site-overlay {
    opacity: 1;
    pointer-events: all;
    transition: opacity 400ms cubic-bezier(0.19, 1, 0.22, 1); }
    .Site.Site--menu .Site-overlay.Site-overlay--search {
      pointer-events: none;
      opacity: 0; }
    .Site.Site--menu .Site-overlay.Site-overlay--menu .Site-overlay-inner {
      transition: transform 400ms 300ms cubic-bezier(0.19, 1, 0.22, 1);
      transform: translateX(0); }
  .Site.Site--search .Site-overlay {
    opacity: 1;
    pointer-events: all;
    transition: opacity 400ms cubic-bezier(0.19, 1, 0.22, 1); }
    .Site.Site--search .Site-overlay.Site-overlay--menu {
      pointer-events: none;
      opacity: 0; }
    .Site.Site--search .Site-overlay.Site-overlay--search .Site-overlay-inner {
      transition: transform 400ms 300ms cubic-bezier(0.19, 1, 0.22, 1);
      transform: translateX(0); }
  .Site.Site--smallFooter .Site-body {
    margin-bottom: 0 !important; }
  .Site.Site--smallFooter .Site-foot {
    visibility: hidden; }
  .Site.Site--dark .Site-foot {
    filter: invert(1); }
  .Site.Site--dark .Site-body {
    background-color: #070707; }

.Button.Button--yellow a {
  border: none;
  background-color: #333333;
  color: white;
  padding-top: 18px;
  padding-top: 1.125rem;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  padding-left: 36px;
  padding-left: 2.25rem;
  padding-right: 36px;
  padding-right: 2.25rem; }
  .Site--dark .Button.Button--yellow a {
    background-color: #cbcccc; }
  .Site--dark .Button.Button--yellow a {
    color: black; }

.Button.Button--GDPR {
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  width: 100%; }
  .Button.Button--GDPR a {
    border: none;
    background-color: white;
    color: #333333;
    padding-top: 18px;
    padding-top: 1.125rem;
    padding-bottom: 18px;
    padding-bottom: 1.125rem;
    padding-left: 36px;
    padding-left: 2.25rem;
    padding-right: 36px;
    padding-right: 2.25rem;
    display: block;
    text-align: center; }
    .Site--dark .Button.Button--GDPR a {
      background-color: black; }
    .Site--dark .Button.Button--GDPR a {
      color: #cbcccc; }
    .Button.Button--GDPR a:hover {
      background-color: #BCBCBC; }
      .Site--dark .Button.Button--GDPR a:hover {
        background-color: #F8F8F8; }

.Content p, .Content h3, .Content h2, .Content .facts, .Content .relatedtext, .Content hr, .Content .Button, .Content .special_container_p_width, .Content .in-article-front.special_container_p_width, .Content .in-article-back.special_container_p_width, .Content .Embed .Embed-GDPR {
  max-width: 610px; }
  @media (max-width: 745px) {
    .Content p, .Content h3, .Content h2, .Content .facts, .Content .relatedtext, .Content hr, .Content .Button, .Content .special_container_p_width, .Content .in-article-front.special_container_p_width, .Content .in-article-back.special_container_p_width, .Content .Embed .Embed-GDPR {
      max-width: 100%; } }
  @media (min-width: 1400px) {
    .Content p, .Content h3, .Content h2, .Content .facts, .Content .relatedtext, .Content hr, .Content .Button, .Content .special_container_p_width, .Content .in-article-front.special_container_p_width, .Content .in-article-back.special_container_p_width, .Content .Embed .Embed-GDPR {
      max-width: 700px; } }
  @media (min-width: 1575px) {
    .Content p, .Content h3, .Content h2, .Content .facts, .Content .relatedtext, .Content hr, .Content .Button, .Content .special_container_p_width, .Content .in-article-front.special_container_p_width, .Content .in-article-back.special_container_p_width, .Content .Embed .Embed-GDPR {
      max-width: 750px; } }

.Content p, .Content h3, .Content h2, .Content .facts, .Content .relatedtext, .Content hr, .Content .Button {
  width: 100%;
  margin: 0 auto; }
  @media (max-width: 745px) {
    .Content p, .Content h3, .Content h2, .Content .facts, .Content .relatedtext, .Content hr, .Content .Button {
      padding-left: calc(2.41rem/2);
      padding-right: calc(2.41rem/2); } }

.Content .Button {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  margin-top: 40px;
  margin-top: 2.5rem; }

.Content hr {
  border: 0;
  border-top: 1px solid #BCBCBC;
  height: 1px;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem; }
  .Site--dark .Content hr {
    border-top: 1px solid #F8F8F8; }
  @media (max-width: 745px) {
    .Content hr {
      width: auto;
      margin-bottom: 15px;
      margin-bottom: 0.9375rem;
      margin-left: calc(2.41rem/2);
      margin-right: calc(2.41rem/2); } }

.Content blockquote p {
  max-width: 100%; }

@media (min-width: 746px) {
  .Content img.Image--portrait {
    max-width: 65.38%;
    margin: 0 auto;
    display: block; }
  .Content figure.Image--portrait,
  .Content img.Image--portrait + figcaption {
    max-width: 65.38%;
    margin-left: auto;
    margin-right: auto; } }

.Content img {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 70px;
  margin-top: 4.8611111111vw;
  margin-bottom: 60px;
  margin-bottom: 4.1666666667vw; }
  @media (max-width: 745px) {
    .Content img {
      padding-left: calc(2.41rem/2);
      padding-right: calc(2.41rem/2);
      margin-bottom: 80px;
      margin-bottom: 5.5555555556vw; } }

.Content figure {
  margin-top: 70px;
  margin-top: 4.8611111111vw;
  margin-bottom: 60px;
  margin-bottom: 4.1666666667vw; }
  @media (max-width: 745px) {
    .Content figure {
      margin-top: 100px;
      margin-top: 6.9444444444vw;
      margin-bottom: 80px;
      margin-bottom: 5.5555555556vw; } }
  .Content figure figcaption {
    line-height: 1.25;
    margin-top: 17px;
    margin-top: 1.1805555556vw;
    color: #ababab; }
    @media (max-width: 745px) {
      .Content figure figcaption {
        padding-left: 20px;
        padding-left: 1.25rem;
        padding-right: 20px;
        padding-right: 1.25rem;
        font-size: 11px;
        font-size: 0.6875rem;
        margin-top: 0.9rem; } }
    .Site--purchase .Content figure figcaption {
      color: #333333; }

.Content figure img {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  height: 100%;
  position: relative; }

.Content p img {
  padding-left: 0;
  padding-right: 0; }

.Content p {
  margin-bottom: 22px;
  margin-bottom: 1.375rem; }
  @media (max-width: 745px) {
    .Content p {
      margin-bottom: 18px;
      margin-bottom: 1.125rem; } }
  @media (min-width: 2000px) {
    .Content p {
      margin-bottom: 30.5555555556px; } }

.Content blockquote {
  display: none;
  margin-top: 73px;
  margin-top: 4.5625rem;
  margin-bottom: 84px;
  margin-bottom: 5.25rem; }
  @media (max-width: 745px) {
    .Content blockquote {
      margin-top: 25px;
      margin-top: 1.5625rem;
      margin-bottom: 25px;
      margin-bottom: 1.5625rem;
      padding-left: 35px;
      padding-left: 2.1875rem;
      padding-right: 55px;
      padding-right: 3.4375rem; } }
  .Content blockquote p {
    text-align: left; }
    @media (max-width: 745px) {
      .Content blockquote p {
        padding: 0; } }
  .Content blockquote.tiktok-embed {
    display: block; }

.Content h2,
.Content h2 b,
.Content h2 em,
.Content h2 strong {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  margin-top: 36px;
  margin-top: 2.25rem;
  text-align: left; }
  @media (max-width: 745px) {
    .Content h2,
    .Content h2 b,
    .Content h2 em,
    .Content h2 strong {
      margin-bottom: 14px;
      margin-bottom: 0.875rem;
      margin-top: 36px;
      margin-top: 2.25rem; } }
  @media (min-width: 2000px) {
    .Content h2,
    .Content h2 b,
    .Content h2 em,
    .Content h2 strong {
      margin-bottom: 27.7777777778px;
      margin-top: 50px; } }

.Content h3 {
  margin-bottom: 40px;
  margin-bottom: 2.5rem; }

.Content a {
  border-bottom: 1px solid #202020; }
  .Site--dark .Content a {
    border-bottom: 1px solid #F8F8F8; }

.Content ul {
  max-width: 53%;
  margin: 0 auto;
  margin-top: 80px;
  margin-top: 5rem;
  margin-bottom: 87px;
  margin-bottom: 5.4375rem; }
  @media (max-width: 745px) {
    .Content ul {
      max-width: 100%;
      padding-left: 35px;
      padding-left: 2.1875rem;
      padding-right: 35px;
      padding-right: 2.1875rem; } }
  .Content ul li {
    margin-bottom: 30px;
    margin-bottom: 1.875rem; }
    .Content ul li:last-child {
      margin-bottom: 0; }
    .Content ul li:before {
      content: "•";
      display: inline-block;
      margin-left: -24px;
      margin-left: -1.5rem;
      position: absolute; }

.Content.Content--disclaimer small {
  color: #A8A8A8; }

.Content.Content--default p, .Content.Content--default h3, .Content.Content--default h2, .Content.Content--default .facts, .Content.Content--default .relatedtext, .Content.Content--default hr, .Content.Content--default .Button, .Content.Content--default .CookieDeclarationType, .Content.Content--normal p, .Content.Content--normal h3, .Content.Content--normal h2, .Content.Content--normal .facts, .Content.Content--normal .relatedtext, .Content.Content--normal hr, .Content.Content--normal .Button, .Content.Content--normal .CookieDeclarationType {
  max-width: 50%;
  width: 100%;
  margin: 0 auto; }
  @media (max-width: 745px) {
    .Content.Content--default p, .Content.Content--default h3, .Content.Content--default h2, .Content.Content--default .facts, .Content.Content--default .relatedtext, .Content.Content--default hr, .Content.Content--default .Button, .Content.Content--default .CookieDeclarationType, .Content.Content--normal p, .Content.Content--normal h3, .Content.Content--normal h2, .Content.Content--normal .facts, .Content.Content--normal .relatedtext, .Content.Content--normal hr, .Content.Content--normal .Button, .Content.Content--normal .CookieDeclarationType {
      max-width: 100%;
      padding-left: calc(2.41rem/2);
      padding-right: calc(2.5rem / 1.75); } }
  @media (min-width: 2000px) {
    .Content.Content--default p, .Content.Content--default h3, .Content.Content--default h2, .Content.Content--default .facts, .Content.Content--default .relatedtext, .Content.Content--default hr, .Content.Content--default .Button, .Content.Content--default .CookieDeclarationType, .Content.Content--normal p, .Content.Content--normal h3, .Content.Content--normal h2, .Content.Content--normal .facts, .Content.Content--normal .relatedtext, .Content.Content--normal hr, .Content.Content--normal .Button, .Content.Content--normal .CookieDeclarationType {
      max-width: 1000px; } }

.Content.Content--default hr, .Content.Content--normal hr {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  width: auto;
  max-width: 100%;
  margin-left: calc(3.75rem*1.5);
  margin-right: calc(3.75rem*1.5);
  padding-left: calc(3.75rem*1.5);
  padding-right: calc(3.75rem*1.5); }
  @media (min-width: 2000px) {
    .Content.Content--default hr, .Content.Content--normal hr {
      margin: 0 auto;
      padding: 0;
      max-width: 1749px;
      margin-bottom: 34.7222222222px; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Content.Content--default hr, .Content.Content--normal hr {
      margin-left: 0;
      margin-right: 0; } }
  @media (max-width: 745px) {
    .Content.Content--default hr, .Content.Content--normal hr {
      margin-left: 0;
      margin-right: 0;
      padding: 0;
      width: auto;
      margin-bottom: 15px;
      margin-bottom: 0.9375rem; } }

.Content.Content--default h4, .Content.Content--normal h4 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.35; }
  @media (max-width: 745px) {
    .Content.Content--default h4, .Content.Content--normal h4 {
      font-size: 21px;
      font-size: 1.3125rem; } }

.Content.Content--default h6, .Content.Content--normal h6 {
  border-bottom: 2px solid black;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  display: inline-block;
  margin: 0 auto;
  display: block;
  width: fit-content; }
  .Site--dark .Content.Content--default h6, .Site--dark .Content.Content--normal h6 {
    border-bottom: 2px solid white; }
  @media (max-width: 745px) {
    .Content.Content--default h6, .Content.Content--normal h6 {
      border-bottom: 1px solid black;
      font-size: 9px;
      font-size: 0.5625rem;
      padding-bottom: 2px;
      padding-bottom: 0.125rem; }
      .Site--dark .Content.Content--default h6, .Site--dark .Content.Content--normal h6 {
        border-bottom: 1px solid white; } }

.Content.Content--default .wp-block-separator, .Content.Content--normal .wp-block-separator {
  border: none;
  border-bottom: 1px solid #ABABAB;
  margin-top: 50px;
  margin-top: 3.125rem;
  margin-bottom: 85px;
  margin-bottom: 5.3125rem; }
  .Site--dark .Content.Content--default .wp-block-separator, .Site--dark .Content.Content--normal .wp-block-separator {
    border-bottom: 1px solid #cbcccc; }
  @media (max-width: 745px) {
    .Content.Content--default .wp-block-separator, .Content.Content--normal .wp-block-separator {
      margin-top: 32px;
      margin-top: 2rem;
      margin-bottom: 45px;
      margin-bottom: 2.8125rem; } }

.Content.Content--default h2, .Content.Content--normal h2 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.35; }
  @media (max-width: 745px) {
    .Content.Content--default h2, .Content.Content--normal h2 {
      font-size: 21px;
      font-size: 1.3125rem; } }

.Content.Content--default p, .Content.Content--normal p {
  margin-bottom: 28px;
  margin-bottom: 1.75rem; }
  @media (min-width: 2000px) {
    .Content.Content--default p, .Content.Content--normal p {
      margin-bottom: 38.8888888889px; } }
  @media (max-width: 745px) {
    .Content.Content--default p, .Content.Content--normal p {
      padding-left: 0;
      padding-right: 0; } }

.Content.Content--default a,
.Content.Content--default h2 {
  border: none;
  display: block;
  margin-top: 11px;
  margin-top: 0.6875rem;
  margin-bottom: 118px;
  margin-bottom: 7.375rem; }
  @media (max-width: 745px) {
    .Content.Content--default a,
    .Content.Content--default h2 {
      margin-top: 9px;
      margin-top: 0.5625rem;
      margin-bottom: 60px;
      margin-bottom: 3.75rem;
      font-size: 26px;
      font-size: 1.625rem; } }

.Content.Content--centered > * {
  text-align: center; }

.Content.Content--centered .wp-block-separator {
  margin-top: 0px;
  margin-top: 0rem; }

.Content.Content--404 {
  text-align: center; }
  .Content.Content--404 p {
    margin-bottom: 18px;
    margin-bottom: 1.125rem;
    font-size: 18px;
    font-size: 1.125rem; }
    @media (max-width: 745px) {
      .Content.Content--404 p {
        font-size: 16px;
        font-size: 1rem; } }
  .Content.Content--404 p b {
    border-bottom: 1px solid black;
    padding-bottom: 4px;
    padding-bottom: 0.25rem; }
    .Site--dark .Content.Content--404 p b {
      border-bottom: 1px solid white; }
  .Content.Content--404 h1 {
    margin-bottom: 35px;
    margin-bottom: 2.1875rem; }
    @media (max-width: 745px) {
      .Content.Content--404 h1 {
        font-size: 32px;
        font-size: 2rem; } }

.Content .facts {
  border-top: 1px solid #BCBCBC;
  padding-top: 21px;
  padding-top: 1.3125rem;
  padding-bottom: 21px;
  padding-bottom: 1.3125rem; }
  .Site--dark .Content .facts {
    border-top: 1px solid #F8F8F8; }
  @media (max-width: 745px) {
    .Content .facts {
      margin-left: calc(2.41rem/2);
      margin-right: calc(2.41rem/2);
      padding-right: 0;
      padding-left: 0;
      width: auto; } }
  .Content .facts b {
    font-weight: 700; }

.Content .relatedtext {
  margin-top: 21px;
  margin-top: 1.3125rem;
  padding-top: 21px;
  padding-top: 1.3125rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem; }
  @media (max-width: 745px) {
    .Content .relatedtext {
      margin-left: calc(2.41rem/2);
      margin-right: calc(2.41rem/2);
      padding-right: 0;
      padding-left: 0;
      width: auto; } }
  .Content .relatedtext ul {
    max-width: 100%;
    margin: 0; }
    @media (max-width: 745px) {
      .Content .relatedtext ul {
        padding-left: 23px;
        padding-left: 1.4375rem; } }
  .Content .relatedtext li {
    margin-bottom: 16px;
    margin-bottom: 1rem;
    font-size: 16px;
    font-family: "GT-America-Medium", sans-serif;
    line-height: 1.35;
    text-align: left;
    text-transform: unset; }
    @media (max-width: 745px) {
      .Content .relatedtext li {
        font-size: 16px; } }
    @media (max-width: 321px) {
      .Content .relatedtext li {
        font-size: 18px; } }
    @media (max-width: 376px) {
      .Content .relatedtext li {
        font-size: 17px; } }
    @media (min-width: 1400px) {
      .Content .relatedtext li {
        font-size: 18px; } }
    @media (min-width: 1575px) {
      .Content .relatedtext li {
        font-size: 20px; } }
  .Content .relatedtext .relatedtext-content {
    border-top: 1px solid #BCBCBC;
    margin-top: 10px;
    margin-top: 0.625rem;
    padding-top: 21px;
    padding-top: 1.3125rem;
    padding-left: 22px;
    padding-left: 1.375rem; }
    .Site--dark .Content .relatedtext .relatedtext-content {
      border-top: 1px solid #F8F8F8; }
    @media (max-width: 745px) {
      .Content .relatedtext .relatedtext-content {
        padding-left: 0; } }

.Grid .Grid-item {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 1 + 0 * 3.75rem )); }
  @media (max-width: 745px) {
    .Grid .Grid-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 1 + 0 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Grid .Grid-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 1 + 0 * 2rem )); } }
  @media (max-width: 745px) {
    .Grid .Grid-item {
      margin-left: 0 !important;
      margin-right: 0 !important; } }
  .Grid .Grid-item.Grid-item--sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    align-self: flex-start; }
    @media (min-width: 746px) {
      .Grid .Grid-item.Grid-item--sticky {
        top: 114px; } }
    @media (max-width: 745px) {
      .Grid .Grid-item.Grid-item--sticky {
        position: static; } }
    .Grid .Grid-item.Grid-item--sticky:before, .Grid .Grid-item.Grid-item--sticky:after {
      content: '';
      display: table; }

.Grid.Grid--trending .Grid-item {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 3 + 2 * 3.75rem )); }
  @media (max-width: 745px) {
    .Grid.Grid--trending .Grid-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 3 + 2 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--trending .Grid-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 3 + 2 * 2rem )); } }

@media (max-width: 745px) {
  .Grid.Grid--topFeatures {
    flex-wrap: wrap-reverse; } }

.Grid.Grid--topFeatures .Grid-item.Grid-item--n1 {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 4 + 3 * 3.75rem )); }
  @media (max-width: 745px) {
    .Grid.Grid--topFeatures .Grid-item.Grid-item--n1 {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 4 + 3 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--topFeatures .Grid-item.Grid-item--n1 {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 4 + 3 * 2rem )); } }
  @media (max-width: 745px) {
    .Grid.Grid--topFeatures .Grid-item.Grid-item--n1 {
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 8 + 7 * 3.75rem ));
      padding: 0 calc(2.41rem/2); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Grid.Grid--topFeatures .Grid-item.Grid-item--n1 {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 8 + 7 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--topFeatures .Grid-item.Grid-item--n1 {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 8 + 7 * 2rem )); } }

.Grid.Grid--topFeatures .Grid-item.Grid-item--n2 {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 8 + 7 * 3.75rem )); }
  @media (max-width: 745px) {
    .Grid.Grid--topFeatures .Grid-item.Grid-item--n2 {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 8 + 7 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--topFeatures .Grid-item.Grid-item--n2 {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 8 + 7 * 2rem )); } }
  @media (max-width: 745px) {
    .Grid.Grid--topFeatures .Grid-item.Grid-item--n2 {
      width: 100%;
      margin: 0;
      margin-bottom: 2.41rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--topFeatures .Grid-item.Grid-item--n2 {
      margin-bottom: 2.5rem; } }
  @media (max-width: 745px) and (min-width: 769px) {
    .Grid.Grid--topFeatures .Grid-item.Grid-item--n2 {
      margin-bottom: 4.37rem; } }

.Grid.Grid--largeandtwo .Grid-item.Grid-item--n1 {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 8 + 7 * 3.75rem )); }
  @media (max-width: 745px) {
    .Grid.Grid--largeandtwo .Grid-item.Grid-item--n1 {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 8 + 7 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--largeandtwo .Grid-item.Grid-item--n1 {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 8 + 7 * 2rem )); } }
  @media (max-width: 745px) {
    .Grid.Grid--largeandtwo .Grid-item.Grid-item--n1 {
      width: 100%;
      margin: 0;
      margin-bottom: 20px;
      margin-bottom: 1.25rem; } }

.Grid.Grid--largeandtwo .Grid-item.Grid-item--n2 {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 4 + 3 * 3.75rem )); }
  @media (max-width: 745px) {
    .Grid.Grid--largeandtwo .Grid-item.Grid-item--n2 {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 4 + 3 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--largeandtwo .Grid-item.Grid-item--n2 {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 4 + 3 * 2rem )); } }
  @media (max-width: 745px) {
    .Grid.Grid--largeandtwo .Grid-item.Grid-item--n2 {
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 8 + 7 * 3.75rem ));
      padding: 0; } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Grid.Grid--largeandtwo .Grid-item.Grid-item--n2 {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 8 + 7 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--largeandtwo .Grid-item.Grid-item--n2 {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 8 + 7 * 2rem )); } }

.Grid.Grid--submenu {
  width: fit-content;
  margin: 0 auto; }
  @media (max-width: 745px) {
    .Grid.Grid--submenu {
      width: 100%; } }
  .Grid.Grid--submenu .Grid-item {
    width: fit-content;
    margin: 0;
    padding-left: 35px;
    padding-left: 2.1875rem;
    padding-right: 35px;
    padding-right: 2.1875rem; }
    @media (max-width: 745px) {
      .Grid.Grid--submenu .Grid-item {
        padding: 0;
        width: 100%;
        text-align: center; } }
    .Grid.Grid--submenu .Grid-item:first-child {
      padding-left: 0; }
    .Grid.Grid--submenu .Grid-item:last-child {
      padding-right: 0; }

@media (max-width: 745px) {
  .Grid.Grid--featureAndNewslist {
    /*flex-wrap: wrap-reverse;

			@include when-inside('.Template--subFrontpage') {
				flex-wrap: wrap;
			}

			@include when-inside('.Template--streamerFrontpage') {
				flex-wrap: wrap-reverse;
			}
			*/ } }

.Grid.Grid--featureAndNewslist .Grid-item.Grid-item--n1 {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 8 + 7 * 3.75rem ));
  /*
				@include when-inside('.Template--streamerFrontpage') {
					display:none;
				}
				@include when-inside('.Template--standardFrontpage') {
					display:none;
				}				*/ }
  @media (max-width: 745px) {
    .Grid.Grid--featureAndNewslist .Grid-item.Grid-item--n1 {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 8 + 7 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--featureAndNewslist .Grid-item.Grid-item--n1 {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 8 + 7 * 2rem )); } }
  @media (max-width: 745px) {
    .Grid.Grid--featureAndNewslist .Grid-item.Grid-item--n1 {
      margin: 0;
      width: 100%;
      display: none; } }
  @media (max-width: 745px) {
    .Template--streamerFrontpage .Grid.Grid--featureAndNewslist .Grid-item.Grid-item--n1 {
      margin-top: 40px;
      margin-top: 2.5rem; } }

.Grid.Grid--featureAndNewslist .Grid-item.Grid-item--n2 {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 4 + 3 * 3.75rem )); }
  @media (max-width: 745px) {
    .Grid.Grid--featureAndNewslist .Grid-item.Grid-item--n2 {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 4 + 3 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--featureAndNewslist .Grid-item.Grid-item--n2 {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 4 + 3 * 2rem )); } }
  @media (max-width: 745px) {
    .Grid.Grid--featureAndNewslist .Grid-item.Grid-item--n2 {
      width: 100%;
      padding: 0 calc(2.41rem/2); }
      .Template--standardFrontpage .Grid.Grid--featureAndNewslist .Grid-item.Grid-item--n2 {
        margin-top: 0; } }

.Grid.Grid--featureAndNewslist .Grid-item.Grid-item--full {
  margin: 0;
  width: 100%; }

.Grid.Grid--featureAndNewslist .Grid-item.Grid-item--last {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 0; }
  @media (max-width: 745px) {
    .Grid.Grid--featureAndNewslist .Grid-item.Grid-item--last {
      margin-top: 30px;
      margin-top: 1.875rem;
      margin-bottom: 0px;
      margin-bottom: 0rem; }
      .Template--subFrontpage .Grid.Grid--featureAndNewslist .Grid-item.Grid-item--last {
        margin-bottom: 0; } }

.Grid.Grid--group-double .Grid-item {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 6 + 5 * 3.75rem )); }
  @media (max-width: 745px) {
    .Grid.Grid--group-double .Grid-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 6 + 5 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--group-double .Grid-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 6 + 5 * 2rem )); } }
  @media (max-width: 745px) {
    .Grid.Grid--group-double .Grid-item {
      width: 100%; } }
  @media (max-width: 745px) {
    .Grid.Grid--group-double .Grid-item.Grid-item--n2 {
      margin-top: 2.41rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--group-double .Grid-item.Grid-item--n2 {
      margin-top: 2.5rem; } }
  @media (max-width: 745px) and (min-width: 769px) {
    .Grid.Grid--group-double .Grid-item.Grid-item--n2 {
      margin-top: 4.37rem; } }
  @media (max-width: 745px) {
    .Module--purchase .Grid.Grid--group-double .Grid-item.Grid-item--n2 {
      display: none; } }

.Grid.Grid--group-triple {
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem; }
  .Module--noMarginTop .Grid.Grid--group-triple {
    margin-top: 0; }
  .Template--purchase .Grid.Grid--group-triple {
    margin-bottom: 0; }
  @media (max-width: 745px) {
    .Template--streamerFrontpage .Grid.Grid--group-triple {
      margin-top: 0; } }
  @media (max-width: 745px) {
    .Grid.Grid--group-triple {
      margin-bottom: 0; } }
  .Grid.Grid--group-triple .Grid-item {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
    width: calc( ( (100% - 12 * 3.75rem ) / 12 * 4 + 3 * 3.75rem )); }
    @media (max-width: 745px) {
      .Grid.Grid--group-triple .Grid-item {
        width: calc( ( (100% - 6 * 2.41rem ) / 6 * 4 + 3 * 2.41rem ));
        margin-left: 0.625rem;
        margin-right: 0.625rem; } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Grid.Grid--group-triple .Grid-item {
        margin-left: 1rem;
        margin-right: 1rem;
        width: calc( ( (100% - 12 * 2rem ) / 12 * 4 + 3 * 2rem )); } }
    @media (max-width: 745px) {
      .Grid.Grid--group-triple .Grid-item {
        margin-left: 1.875rem;
        margin-right: 1.875rem;
        width: calc( ( (100% - 12 * 3.75rem ) / 12 * 8 + 7 * 3.75rem ));
        margin-bottom: 0;
        margin-bottom: 0rem; } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Grid.Grid--group-triple .Grid-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 8 + 7 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--group-triple .Grid-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 8 + 7 * 2rem )); } }
    @media (max-width: 745px) {
        .Grid.Grid--group-triple .Grid-item:last-child {
          margin-bottom: 0; }
          .Template--fashionFrontpage .Grid.Grid--group-triple .Grid-item:last-child {
            margin-bottom: 0; }
            .Template--fashionFrontpage .Grid.Grid--group-triple .Grid-item:last-child .Spot {
              padding-bottom: 0; }
          .Grid.Grid--group-triple .Grid-item:last-child .Spot {
            margin-bottom: 0;
            font-size: 0; } }

.Grid.Grid--partner {
  margin-top: 18px;
  margin-top: 1.125rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem; }
  @media (max-width: 745px) {
    .Grid.Grid--partner {
      margin-top: 5px;
      margin-top: 0.3125rem;
      padding-bottom: 0; } }
  @media (max-width: 745px) {
    .Grid.Grid--partner .Grid-item {
      margin-bottom: 0;
      padding-bottom: 0; } }
  @media (max-width: 745px) {
    .Grid.Grid--partner .Grid-item:last-child {
      border-bottom: 0;
      padding-bottom: 0;
      margin-bottom: 0; } }
  @media (max-width: 745px) {
    .Grid.Grid--partner .Grid-item.Grid-item--row2 {
      display: none; } }

.Grid.Grid--group-quadro .Grid-item {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 3 + 2 * 3.75rem ));
  margin-bottom: 50px;
  margin-bottom: 3.125rem; }
  @media (max-width: 745px) {
    .Grid.Grid--group-quadro .Grid-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 3 + 2 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--group-quadro .Grid-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 3 + 2 * 2rem )); } }
  @media (max-width: 745px) {
    .Grid.Grid--group-quadro .Grid-item {
      width: 100%;
      margin: 0 calc(2.41rem/2);
      margin-bottom: 20px;
      margin-bottom: 1.25rem; }
      .Module--bottomFeatures .Grid.Grid--group-quadro .Grid-item:first-child .Spot {
        border-top: 1px solid #ABABAB;
        padding-top: 20px;
        padding-top: 1.25rem; }
        .Site--dark .Module--bottomFeatures .Grid.Grid--group-quadro .Grid-item:first-child .Spot {
          border-bottom: 1px solid #cbcccc; }
      .Grid.Grid--group-quadro .Grid-item:last-child .Spot {
        border-bottom: none; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--group-quadro .Grid-item {
      margin-bottom: 40px;
      margin-bottom: 2.5rem; } }

@media (max-width: 745px) {
  .Grid.Grid--header {
    padding: 0 1.25rem; } }

.Grid.Grid--header .Grid-item {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 4 + 3 * 3.75rem ));
  line-height: 100%;
  display: flex;
  align-items: center; }
  @media (max-width: 745px) {
    .Grid.Grid--header .Grid-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 4 + 3 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Grid.Grid--header .Grid-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 4 + 3 * 2rem )); } }
  @media (max-width: 745px) {
    .Grid.Grid--header .Grid-item {
      margin: 0; } }
  @media (max-width: 745px) {
    .Grid.Grid--header .Grid-item.Grid-item--search {
      width: 20%;
      margin-right: 0; } }
  @media (max-width: 745px) {
    .Grid.Grid--header .Grid-item.Grid-item--logo {
      width: 60%; } }
  @media (max-width: 745px) {
    .Grid.Grid--header .Grid-item.Grid-item--menu {
      width: 20%; } }

.Grid.Grid--newsletter .Grid-item {
  width: 50%; }

.Grid.Grid--component .Grid-item div {
  background: #FF7777;
  height: 50vh; }

.Grid.Grid--debug {
  padding-left: 0; }
  .Grid.Grid--debug .Grid-item div {
    background: #FF7777;
    height: 100vh; }

.Image.Image--video video {
  object-fit: cover; }

.Image {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 55.4385964912%;
  opacity: 0;
  transition: opacity 0.1s ease; }
  @media (max-width: 745px) {
    .Template--list .Spot--list .Image {
      padding-top: 100%; } }
  .Image.ui-lazyImage--loaded {
    opacity: 1; }
  .Image.Image--old .ui-lazyImage-bg {
    background-size: cover; }
  .Image.Image--NotFound {
    background-color: #ABABAB;
    opacity: 1; }
    .Site--dark .Image.Image--NotFound {
      background-color: #cbcccc; }
  .Image .Image-container img {
    position: relative;
    width: 100%;
    height: auto; }
  .Image .ui-lazyImage-bg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0; }
  .Image.Image--portrait {
    padding-top: 114.126984127%; }
    @media (max-width: 745px) {
      .Module--singleFeature .Image.Image--portrait {
        padding-top: 100%; } }
    @media (max-width: 745px) {
      .Module--mobileImageWide .Image.Image--portrait {
        padding-top: 55.4385964912%; } }
    .Module--trendinghigh .Image.Image--portrait {
      padding-top: 126.453488372%; }
      @media (max-width: 745px) {
        .Module--trendinghigh .Image.Image--portrait {
          padding-top: 114.695340502%; } }
      .Module--trendinghigh .Image.Image--portrait .ui-lazyImage-bg {
        background-size: cover; }
  .Image.Image--ratio img {
    position: relative;
    top: auto;
    left: auto; }
  .Image.Image--square {
    padding-top: 0; }
    .Module--featureAndNewslist .Image.Image--square {
      padding-top: 100%; }
    .Module--topFeatureSpecial .Image.Image--square {
      padding-top: 92.3188405797%; }
      .Module--topFeatureSpecial .Image.Image--square .ui-lazyImage-bg {
        background-position: top left; }
  @media (max-width: 745px) {
    .Module--featureAndNewslist .Image.Image--hero {
      padding-top: 100%; }
    .Module--topfeatures .Image.Image--hero {
      padding-top: 100%; }
    .Module--largeandtwo .Image.Image--hero {
      padding-top: 100%; }
    .Image.Image--hero .ui-lazyImage-bg {
      background-size: cover; } }
  .Image.Image--heroPodcasts {
    padding-top: 51.77%; }
    @media (max-width: 745px) {
      .Image.Image--heroPodcasts {
        padding-top: 100%; }
        .Image.Image--heroPodcasts .ui-lazyImage-bg {
          background-size: cover; } }
    .Module--sectionHero .Image.Image--heroPodcasts {
      padding-top: 34.375%; }
      @media (max-width: 745px) {
        .Module--sectionHero .Image.Image--heroPodcasts {
          padding-top: 89.47%; } }
  .Image.Image--svg {
    opacity: 1;
    padding-top: 0;
    width: 10vw; }
    .Template--podcastsSubFrontpage .Image.Image--svg {
      width: 15vw; }
      @media (max-width: 745px) {
        .Template--podcastsSubFrontpage .Image.Image--svg {
          width: 36vw; } }
      @media (min-width: 2000px) {
        .Template--podcastsSubFrontpage .Image.Image--svg {
          width: 300px; } }
    .Template--podcastsFrontpage .Image.Image--svg {
      width: 25vw;
      height: auto; }
      @media (max-width: 745px) {
        .Template--podcastsFrontpage .Image.Image--svg {
          width: 45vw; } }
      @media (min-width: 2000px) {
        .Template--podcastsFrontpage .Image.Image--svg {
          width: 500px; } }
    @media (max-width: 745px) {
      .Image.Image--svg {
        width: 30vw; } }
    @media (min-width: 2000px) {
      .Image.Image--svg {
        width: 200px; } }
    .Template--purchaseFrontpage .Image.Image--svg {
      width: 9.444vw; }
      @media (max-width: 745px) {
        .Template--purchaseFrontpage .Image.Image--svg {
          width: 30vw; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Template--purchaseFrontpage .Image.Image--svg {
          width: 14vw; } }
      @media (min-width: 2000px) {
        .Template--purchaseFrontpage .Image.Image--svg {
          width: 188.88px; } }
    .Template--filmklubFrontpage .Image.Image--svg {
      width: 37.16vw; }
      @media (max-width: 745px) {
        .Template--filmklubFrontpage .Image.Image--svg {
          width: 68vw; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Template--filmklubFrontpage .Image.Image--svg {
          width: 37.16; } }
      @media (min-width: 2000px) {
        .Template--filmklubFrontpage .Image.Image--svg {
          width: 743.2px; } }
  .Image.Image--mobile {
    display: none; }
    @media (max-width: 745px) {
      .Image.Image--mobile {
        display: block; } }
  @media (max-width: 745px) {
    .Image.Image--hideOnMobile {
      display: none; } }

.ui-swiper {
  animation-duration: 0 !important; }

.Slider {
  position: relative; }
  .Slider .Slider-progress-body {
    height: 1px;
    border-radius: 0;
    background-color: #ABABAB;
    margin-right: calc(3.75rem/2); }
    .Site--dark .Slider .Slider-progress-body {
      background-color: #cbcccc; }
    .Module--trending .Slider .Slider-progress-body {
      background-color: #ABABAB;
      margin-right: 0; }
      .Site--dark .Module--trending .Slider .Slider-progress-body {
        background-color: #cbcccc; }
    .Module--related .Slider .Slider-progress-body {
      margin-right: 0; }
    .Module--yellow .Slider .Slider-progress-body {
      background-color: #333333; }
    .Module--red_filmklub .Slider .Slider-progress-body {
      background-color: white; }
      .Site--dark .Module--red_filmklub .Slider .Slider-progress-body {
        background-color: black; }
    .Module--blue .Slider .Slider-progress-body {
      background-color: #333333; }
    .Module--grey .Slider .Slider-progress-body {
      background-color: white; }
      .Site--dark .Module--grey .Slider .Slider-progress-body {
        background-color: black; }
    .Module--red .Slider .Slider-progress-body {
      background-color: white; }
      .Site--dark .Module--red .Slider .Slider-progress-body {
        background-color: black; }
    .Module--turquoise .Slider .Slider-progress-body {
      background-color: white; }
      .Site--dark .Module--turquoise .Slider .Slider-progress-body {
        background-color: black; }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Slider .Slider-progress-body {
        margin-right: calc(2rem/2); } }
    @media (max-width: 745px) {
      .Slider .Slider-progress-body {
        margin-right: 0; } }
    .Slider .Slider-progress-body .swiper-scrollbar-drag {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      opacity: 1;
      background-color: #333333;
      border-radius: 0;
      top: auto;
      transition: height 100ms ease-in-out, transform 400ms ease-out;
      /*@include when-inside('.Site--dark') {
                background-color: $lightGrey;
            }*/ }
      .Site--dark .Slider .Slider-progress-body .swiper-scrollbar-drag {
        background-color: white; }
      .PartnerMoviaKulturator .Slider .Slider-progress-body .swiper-scrollbar-drag {
        background-color: #333333 !important; }
      .Module--grey .Slider .Slider-progress-body .swiper-scrollbar-drag {
        background-color: white; }
        .Site--dark .Module--grey .Slider .Slider-progress-body .swiper-scrollbar-drag {
          background-color: black; }
      .Module--darkGrey .Slider .Slider-progress-body .swiper-scrollbar-drag {
        background-color: white; }
        .Site--dark .Module--darkGrey .Slider .Slider-progress-body .swiper-scrollbar-drag {
          background-color: black; }
      .Module--turquoise .Slider .Slider-progress-body .swiper-scrollbar-drag {
        background-color: white; }
        .Site--dark .Module--turquoise .Slider .Slider-progress-body .swiper-scrollbar-drag {
          background-color: black; }
      .Module--red .Slider .Slider-progress-body .swiper-scrollbar-drag {
        background-color: white; }
        .Site--dark .Module--red .Slider .Slider-progress-body .swiper-scrollbar-drag {
          background-color: black; }
      .Module--red_filmklub .Slider .Slider-progress-body .swiper-scrollbar-drag {
        background-color: white; }
        .Site--dark .Module--red_filmklub .Slider .Slider-progress-body .swiper-scrollbar-drag {
          background-color: black; }
      .Site--video .Slider .Slider-progress-body .swiper-scrollbar-drag {
        background-color: #F8F8F8; }
      @media (max-width: 745px) {
        .Slider .Slider-progress-body .swiper-scrollbar-drag {
          display: none; } }
      .Slider .Slider-progress-body .swiper-scrollbar-drag:hover {
        height: 3px; }
  .Slider .Slider-head {
    padding-top: 8px;
    padding-top: 0.5rem;
    padding-bottom: 25px;
    padding-bottom: 1.5625rem; }
  .Slider .Slider-firstMobileItem {
    display: none; }
    @media (max-width: 745px) {
      .Slider .Slider-firstMobileItem {
        display: block;
        margin-right: 0;
        position: relative;
        margin-bottom: 40px;
        margin-bottom: 2.5rem; } }
  .Slider .swiper-wrapper {
    overflow: visible;
    -webkit-backface-visibility: hidden; }
  .Slider .Slider-button:focus {
    outline: none; }
  .Slider .Slider-body {
    overflow: visible;
    cursor: move;
    /* fallback if grab cursor is unsupported */
    cursor: grab; }
    .Site--dragging .Slider .Slider-body {
      cursor: move;
      /* fallback if grab cursor is unsupported */
      cursor: grabbing; }
    .Module--review .Slider .Slider-body {
      padding-bottom: 0; }
    .Slider .Slider-body:focus {
      outline: none; }
    .Slider .Slider-body .Slider-item {
      flex: 0 0 auto;
      flex-direction: row;
      left: auto !important;
      position: relative !important;
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 4 + 3 * 3.75rem )); }
      @media (max-width: 745px) {
        .Slider .Slider-body .Slider-item {
          width: calc( ( (100% - 6 * 2.41rem ) / 6 * 4 + 3 * 2.41rem ));
          margin-left: 0.625rem;
          margin-right: 0.625rem; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Slider .Slider-body .Slider-item {
          margin-left: 1rem;
          margin-right: 1rem;
          width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 4 + 3 * 2rem )); } }
      @media (max-width: 745px) {
        .Slider .Slider-body .Slider-item {
          margin-left: 1.875rem;
          margin-right: 1.875rem;
          width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 5 + 4 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Slider .Slider-body .Slider-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 5 + 4 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Slider .Slider-body .Slider-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 5 + 4 * 2rem )); } }
      @media (max-width: 745px) {
          .Slider .Slider-body .Slider-item:last-child {
            margin-right: 0; } }
      .Module--review .Slider .Slider-body .Slider-item {
        margin-left: 1.875rem;
        margin-right: 1.875rem;
        width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 3 + 2 * 3.75rem )); }
        @media (max-width: 745px) {
          .Module--review .Slider .Slider-body .Slider-item {
            width: calc( ( (100% - 6 * 2.41rem ) / 6 * 3 + 2 * 2.41rem ));
            margin-left: 0.625rem;
            margin-right: 0.625rem; } }
        @media (min-width: 746px) and (max-width: 1023px) {
          .Module--review .Slider .Slider-body .Slider-item {
            margin-left: 1rem;
            margin-right: 1rem;
            width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 3 + 2 * 2rem )); } }
        @media (max-width: 745px) {
          .Module--review .Slider .Slider-body .Slider-item {
            margin-left: 1.875rem;
            margin-right: 1.875rem;
            width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 6 + 5 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Module--review .Slider .Slider-body .Slider-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 6 + 5 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Module--review .Slider .Slider-body .Slider-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 6 + 5 * 2rem )); } }
      .Slider .Slider-body .Slider-item.Slider-item--n1 {
        margin-left: 0; }
  .Slider .Slider-title,
  .Slider .Slider-title-mobile {
    float: left; }
    .Module--yellow .Slider .Slider-title, .Module--yellow
    .Slider .Slider-title-mobile {
      color: #333333; }
    .Module--red_filmklub .Slider .Slider-title, .Module--red_filmklub
    .Slider .Slider-title-mobile {
      color: white; }
      .Site--dark .Module--red_filmklub .Slider .Slider-title, .Site--dark .Module--red_filmklub
      .Slider .Slider-title-mobile {
        color: black; }
    @media (max-width: 745px) {
      .Slider .Slider-title,
      .Slider .Slider-title-mobile {
        max-width: 16rem; } }
  .Slider .Slider-title-mobile {
    display: none; }
    @media (max-width: 745px) {
      .Slider .Slider-title-mobile {
        display: inline-block; } }
  .Slider .Slider-controls,
  .Slider .Slider-cta-mobile {
    float: right;
    padding-right: calc(3.75rem/2);
    margin-top: 5px;
    margin-top: 0.3125rem; }
    @media (max-width: 745px) {
      .Slider .Slider-controls,
      .Slider .Slider-cta-mobile {
        padding-right: calc(2.41rem/2);
        display: none; } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Slider .Slider-controls,
      .Slider .Slider-cta-mobile {
        padding-right: calc(2rem/2); } }
    .Slider .Slider-controls .Slider-button,
    .Slider .Slider-cta-mobile .Slider-button {
      display: inline-block;
      margin-left: 7px; }
  .Slider .Slider-cta-mobile {
    display: none;
    text-transform: uppercase;
    margin: 0;
    padding-right: 0; }
    @media (max-width: 745px) {
      .Slider .Slider-cta-mobile {
        display: block; } }
  .Slider.Slider--useMobileTitle .Slider-title {
    display: inline-block; }
    @media (max-width: 745px) {
      .Slider.Slider--useMobileTitle .Slider-title {
        display: none; } }
  .Slider.Slider--video .Slider-body .Slider-item, .Slider.Slider--video true .Slider-item, .Slider.Slider--big .Slider-body .Slider-item, .Slider.Slider--big true .Slider-item {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
    width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 8 + 7 * 3.75rem )); }
    @media (max-width: 745px) {
      .Slider.Slider--video .Slider-body .Slider-item, .Slider.Slider--video true .Slider-item, .Slider.Slider--big .Slider-body .Slider-item, .Slider.Slider--big true .Slider-item {
        width: calc( ( (100% - 6 * 2.41rem ) / 6 * 8 + 7 * 2.41rem ));
        margin-left: 0.625rem;
        margin-right: 0.625rem; } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Slider.Slider--video .Slider-body .Slider-item, .Slider.Slider--video true .Slider-item, .Slider.Slider--big .Slider-body .Slider-item, .Slider.Slider--big true .Slider-item {
        margin-left: 1rem;
        margin-right: 1rem;
        width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 8 + 7 * 2rem )); } }
    @media (max-width: 745px) {
      .Slider.Slider--video .Slider-body .Slider-item, .Slider.Slider--video true .Slider-item, .Slider.Slider--big .Slider-body .Slider-item, .Slider.Slider--big true .Slider-item {
        margin-left: 1.875rem;
        margin-right: 1.875rem;
        width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 6 + 5 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Slider.Slider--video .Slider-body .Slider-item, .Slider.Slider--video true .Slider-item, .Slider.Slider--big .Slider-body .Slider-item, .Slider.Slider--big true .Slider-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 6 + 5 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Slider.Slider--video .Slider-body .Slider-item, .Slider.Slider--video true .Slider-item, .Slider.Slider--big .Slider-body .Slider-item, .Slider.Slider--big true .Slider-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 6 + 5 * 2rem )); } }
    @media (max-width: 745px) {
        .Slider.Slider--video .Slider-body .Slider-item:last-child, .Slider.Slider--video true .Slider-item:last-child, .Slider.Slider--big .Slider-body .Slider-item:last-child, .Slider.Slider--big true .Slider-item:last-child {
          margin-right: 0; } }
    .Slider.Slider--video .Slider-body .Slider-item.Slider-item--n1, .Slider.Slider--video true .Slider-item.Slider-item--n1, .Slider.Slider--big .Slider-body .Slider-item.Slider-item--n1, .Slider.Slider--big true .Slider-item.Slider-item--n1 {
      margin-left: 0; }
  @media (max-width: 745px) {
    .Slider.Slider--purchase .Slider-progress-body .swiper-scrollbar-drag {
      display: none; } }
  @media (max-width: 745px) {
    .Slider.Slider--focus .swiper-scrollbar-drag {
      display: none; } }
  @media (max-width: 745px) {
    .Slider.Slider--focus .Slider-body .Slider-item, .Slider.Slider--focus true .Slider-item {
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 4.5 + 3.5 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Slider.Slider--focus .Slider-body .Slider-item, .Slider.Slider--focus true .Slider-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 4.5 + 3.5 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Slider.Slider--focus .Slider-body .Slider-item, .Slider.Slider--focus true .Slider-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 4.5 + 3.5 * 2rem )); } }
  @media (max-width: 745px) {
      .Slider.Slider--focus .Slider-body .Slider-item:last-child, .Slider.Slider--focus true .Slider-item:last-child {
        margin-right: 0; } }
  .Module--trendinghigh .Slider.Slider--focus .Slider-body .Slider-item, .Module--trendinghigh .Slider.Slider--focus true .Slider-item {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
    width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 3.5 + 2.5 * 3.75rem )); }
    @media (max-width: 745px) {
      .Module--trendinghigh .Slider.Slider--focus .Slider-body .Slider-item, .Module--trendinghigh .Slider.Slider--focus true .Slider-item {
        width: calc( ( (100% - 6 * 2.41rem ) / 6 * 3.5 + 2.5 * 2.41rem ));
        margin-left: 0.625rem;
        margin-right: 0.625rem; } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Module--trendinghigh .Slider.Slider--focus .Slider-body .Slider-item, .Module--trendinghigh .Slider.Slider--focus true .Slider-item {
        margin-left: 1rem;
        margin-right: 1rem;
        width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 3.5 + 2.5 * 2rem )); } }
    @media (max-width: 745px) {
      .Module--trendinghigh .Slider.Slider--focus .Slider-body .Slider-item, .Module--trendinghigh .Slider.Slider--focus true .Slider-item {
        margin-left: 1.875rem;
        margin-right: 1.875rem;
        width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 5.5 + 4.5 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Module--trendinghigh .Slider.Slider--focus .Slider-body .Slider-item, .Module--trendinghigh .Slider.Slider--focus true .Slider-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 5.5 + 4.5 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Module--trendinghigh .Slider.Slider--focus .Slider-body .Slider-item, .Module--trendinghigh .Slider.Slider--focus true .Slider-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 5.5 + 4.5 * 2rem )); } }
  .Slider.Slider--focus .Slider-body .Slider-item.Slider-item--n1, .Slider.Slider--focus true .Slider-item.Slider-item--n1 {
    margin-left: 0; }
  @media (max-width: 745px) {
    .Slider.Slider--mobileSmall .Slider-body .Slider-item {
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 4.5 + 3.5 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Slider.Slider--mobileSmall .Slider-body .Slider-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 4.5 + 3.5 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Slider.Slider--mobileSmall .Slider-body .Slider-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 4.5 + 3.5 * 2rem )); } }
  @media (max-width: 745px) {
    .Slider.Slider--podcasts .swiper-scrollbar-drag {
      display: none; } }
  .Slider.Slider--podcasts .Slider-body .Slider-item, .Slider.Slider--podcasts true .Slider-item {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
    width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 6 + 5 * 3.75rem )); }
    @media (max-width: 745px) {
      .Slider.Slider--podcasts .Slider-body .Slider-item, .Slider.Slider--podcasts true .Slider-item {
        width: calc( ( (100% - 6 * 2.41rem ) / 6 * 6 + 5 * 2.41rem ));
        margin-left: 0.625rem;
        margin-right: 0.625rem; } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Slider.Slider--podcasts .Slider-body .Slider-item, .Slider.Slider--podcasts true .Slider-item {
        margin-left: 1rem;
        margin-right: 1rem;
        width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 6 + 5 * 2rem )); } }
    @media (max-width: 745px) {
      .Slider.Slider--podcasts .Slider-body .Slider-item, .Slider.Slider--podcasts true .Slider-item {
        margin-left: 1.875rem;
        margin-right: 1.875rem;
        width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 5.5 + 4.5 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Slider.Slider--podcasts .Slider-body .Slider-item, .Slider.Slider--podcasts true .Slider-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 5.5 + 4.5 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Slider.Slider--podcasts .Slider-body .Slider-item, .Slider.Slider--podcasts true .Slider-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 5.5 + 4.5 * 2rem )); } }
    @media (max-width: 745px) {
        .Slider.Slider--podcasts .Slider-body .Slider-item:last-child, .Slider.Slider--podcasts true .Slider-item:last-child {
          margin-right: 0; } }
    .Slider.Slider--podcasts .Slider-body .Slider-item.Slider-item--n1, .Slider.Slider--podcasts true .Slider-item.Slider-item--n1 {
      margin-left: 0; }
  @media (min-width: 2000px) {
    .Slider.Slider--trending, .Slider.Slider--related {
      margin-left: 1.875rem; } }
  .Site--minTrending .Slider.Slider--trending .Slider-progress-body, .Site--minTrending .Slider.Slider--related .Slider-progress-body {
    opacity: 0;
    pointer-events: none; }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Slider.Slider--trending .Slider-progress-body, .Slider.Slider--related .Slider-progress-body {
      margin-left: calc(2rem/2); } }
  .Slider.Slider--trending .Slider-expand, .Slider.Slider--related .Slider-expand {
    width: 25px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -7px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms;
    cursor: pointer; }
    .Site--minTrending .Slider.Slider--trending .Slider-expand, .Site--minTrending .Slider.Slider--related .Slider-expand {
      opacity: 1;
      pointer-events: all; }
    .Site--trendingActiveMinMobile .Slider.Slider--trending .Slider-expand, .Site--trendingActiveMinMobile .Slider.Slider--related .Slider-expand {
      opacity: 1;
      pointer-events: all; }
    @media (max-width: 745px) {
      .Slider.Slider--trending .Slider-expand, .Slider.Slider--related .Slider-expand {
        width: 22px; } }
    @media (min-width: 2000px) {
      .Slider.Slider--trending .Slider-expand, .Slider.Slider--related .Slider-expand {
        transform: translate(calc(-50% - 0.9375rem), -7px); } }
    .Slider.Slider--trending .Slider-expand span, .Slider.Slider--related .Slider-expand span {
      width: 100%;
      height: 1px;
      background-color: #333333;
      display: block; }
      .Slider.Slider--trending .Slider-expand span:first-child, .Slider.Slider--related .Slider-expand span:first-child {
        margin-bottom: 2px; }
      .Site--video .Slider.Slider--trending .Slider-expand span, .Site--video .Slider.Slider--related .Slider-expand span {
        background-color: #F8F8F8; }
      .Site--dark .Slider.Slider--trending .Slider-expand span, .Site--dark .Slider.Slider--related .Slider-expand span {
        background-color: #F8F8F8; }
  .Slider.Slider--trending .Slider-body, .Slider.Slider--related .Slider-body {
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    padding-top: 22px;
    padding-top: 1.375rem;
    padding-bottom: 21px;
    padding-bottom: 1.3125rem;
    opacity: 1;
    pointer-events: all; }
    @media (max-width: 745px) {
      .Slider.Slider--trending .Slider-body, .Slider.Slider--related .Slider-body {
        padding-top: 14px;
        padding-top: 0.875rem;
        padding-bottom: 13px;
        padding-bottom: 0.8125rem; } }
    .Site--minTrending .Slider.Slider--trending .Slider-body, .Site--minTrending .Slider.Slider--related .Slider-body {
      pointer-events: none; }
    @media (max-width: 745px) {
      .Slider.Slider--trending .Slider-body .Slider-title, .Slider.Slider--related .Slider-body .Slider-title {
        font-size: 9px;
        font-size: 0.5625rem;
        display: block; } }
    .Slider.Slider--trending .Slider-body .Slider-item, .Slider.Slider--related .Slider-body .Slider-item {
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 3.7 + 2.7 * 3.75rem )); }
      @media (max-width: 745px) {
        .Slider.Slider--trending .Slider-body .Slider-item, .Slider.Slider--related .Slider-body .Slider-item {
          width: calc( ( (100% - 6 * 2.41rem ) / 6 * 3.7 + 2.7 * 2.41rem ));
          margin-left: 0.625rem;
          margin-right: 0.625rem; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Slider.Slider--trending .Slider-body .Slider-item, .Slider.Slider--related .Slider-body .Slider-item {
          margin-left: 1rem;
          margin-right: 1rem;
          width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 3.7 + 2.7 * 2rem )); } }
      @media (max-width: 745px) {
        .Slider.Slider--trending .Slider-body .Slider-item, .Slider.Slider--related .Slider-body .Slider-item {
          margin-left: 0.5rem !important;
          margin-right: 0.5rem !important;
          margin-left: 1.875rem;
          margin-right: 1.875rem;
          width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 4.7 + 3.7 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Slider.Slider--trending .Slider-body .Slider-item, .Slider.Slider--related .Slider-body .Slider-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 4.7 + 3.7 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Slider.Slider--trending .Slider-body .Slider-item, .Slider.Slider--related .Slider-body .Slider-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 4.7 + 3.7 * 2rem )); } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Slider.Slider--trending .Slider-body .Slider-item, .Slider.Slider--related .Slider-body .Slider-item {
          margin-left: 1rem !important;
          margin-right: 1rem !important;
          margin-left: 1.875rem;
          margin-right: 1.875rem;
          width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 5 + 4 * 3.75rem )); } }
  @media (min-width: 746px) and (max-width: 1023px) and (max-width: 745px) {
    .Slider.Slider--trending .Slider-body .Slider-item, .Slider.Slider--related .Slider-body .Slider-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 5 + 4 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) and (min-width: 746px) and (max-width: 1023px) {
    .Slider.Slider--trending .Slider-body .Slider-item, .Slider.Slider--related .Slider-body .Slider-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 5 + 4 * 2rem )); } }
      .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--first, .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
        margin-left: 1.875rem;
        margin-right: 1.875rem;
        width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 1.1 + 0.1 * 3.75rem ));
        margin-left: 0; }
        @media (max-width: 745px) {
          .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--first, .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
            width: calc( ( (100% - 6 * 2.41rem ) / 6 * 1.1 + 0.1 * 2.41rem ));
            margin-left: 0.625rem;
            margin-right: 0.625rem; } }
        @media (min-width: 746px) and (max-width: 1023px) {
          .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--first, .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
            margin-left: 1rem;
            margin-right: 1rem;
            width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 1.1 + 0.1 * 2rem )); } }
        @media (max-width: 745px) {
          .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--first, .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
            margin-left: 1.25rem !important;
            margin-left: 1.875rem;
            margin-right: 1.875rem;
            width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 1.4 + 0.4 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--first, .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 1.4 + 0.4 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--first, .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 1.4 + 0.4 * 2rem )); } }
        @media (min-width: 746px) and (max-width: 1023px) {
          .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--first, .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
            margin-left: 1.875rem;
            margin-right: 1.875rem;
            width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 1.5 + 0.5 * 3.75rem )); } }
  @media (min-width: 746px) and (max-width: 1023px) and (max-width: 745px) {
    .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--first, .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 1.5 + 0.5 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) and (min-width: 746px) and (max-width: 1023px) {
    .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--first, .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 1.5 + 0.5 * 2rem )); } }
  .Slider.Slider--trending .Slider-body {
    padding-bottom: 24px;
    padding-bottom: 1.5rem; }
    .Slider.Slider--trending .Slider-body .Slider-item {
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 3.5 + 2.5 * 3.75rem ));
      margin-left: 0; }
      @media (max-width: 745px) {
        .Slider.Slider--trending .Slider-body .Slider-item {
          width: calc( ( (100% - 6 * 2.41rem ) / 6 * 3.5 + 2.5 * 2.41rem ));
          margin-left: 0.625rem;
          margin-right: 0.625rem; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Slider.Slider--trending .Slider-body .Slider-item {
          margin-left: 1rem;
          margin-right: 1rem;
          width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 3.5 + 2.5 * 2rem )); } }
      @media (max-width: 745px) {
        .Slider.Slider--trending .Slider-body .Slider-item {
          margin-left: 1.875rem;
          margin-right: 1.875rem;
          width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 4.8 + 3.8 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Slider.Slider--trending .Slider-body .Slider-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 4.8 + 3.8 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Slider.Slider--trending .Slider-body .Slider-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 4.8 + 3.8 * 2rem )); } }
      @media (max-width: 321px) {
        .Slider.Slider--trending .Slider-body .Slider-item {
          margin-left: 1.875rem;
          margin-right: 1.875rem;
          width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 5.31 + 4.31 * 3.75rem )); } }
  @media (max-width: 321px) and (max-width: 745px) {
    .Slider.Slider--trending .Slider-body .Slider-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 5.31 + 4.31 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 321px) and (min-width: 746px) and (max-width: 1023px) {
    .Slider.Slider--trending .Slider-body .Slider-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 5.31 + 4.31 * 2rem )); } }
      .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--n10 {
        margin-right: calc(3.75rem); }
        @media (max-width: 745px) {
          .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--n10 {
            margin-right: calc(2.41rem*1.5) !important; } }
      @media (max-width: 745px) {
        .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--first {
          width: 20px;
          width: 1.25rem;
          margin-right: 0 !important; }
          .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--first .Slider-title,
          .Slider.Slider--trending .Slider-body .Slider-item.Slider-item--first .Slider-title-mobile {
            transform: rotate(-90deg) translateX(-100%);
            transform-origin: 0% 0%; } }
    @media (max-width: 745px) {
      .Slider.Slider--trending .Slider-body {
        padding-top: 14px;
        padding-top: 0.875rem;
        padding-bottom: 12px;
        padding-bottom: 0.75rem; } }
  .Slider.Slider--related .Slider-head {
    display: none; }
    @media (max-width: 745px) {
      .Slider.Slider--related .Slider-head {
        display: block;
        padding-top: 10px;
        padding-top: 0.625rem;
        padding-bottom: 0px;
        margin-left: calc(2.41rem/2); } }
    @media (max-width: 745px) {
      .Slider.Slider--related .Slider-head .Slider-title {
        display: block;
        font-size: 10px;
        font-size: 0.625rem;
        font-family: "GT America Bold", sans-serif; } }
  .Slider.Slider--related .Slider-expand {
    display: block; }
  .Slider.Slider--related .Slider-progress-body {
    background-color: transparent;
    margin-right: 0; }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Slider.Slider--related .Slider-progress-body {
        margin-left: 0; } }
    .Slider.Slider--related .Slider-progress-body .swiper-scrollbar-drag {
      bottom: auto; }
    .Site--minTrending .Slider.Slider--related .Slider-progress-body {
      opacity: 1;
      pointer-events: all; }
    @media (max-width: 745px) {
      .Slider.Slider--related .Slider-progress-body {
        margin-left: calc(2.41rem/2);
        margin-right: calc(2.41rem/2); } }
  .Slider.Slider--related .Slider-body {
    padding-top: 22px;
    padding-top: 1.375rem;
    padding-bottom: 13px;
    padding-bottom: 0.8125rem; }
    @media (max-width: 745px) {
      .Slider.Slider--related .Slider-body {
        padding-top: 10px;
        padding-top: 0.625rem;
        padding-bottom: 7px;
        padding-bottom: 0.4375rem; } }
    .Slider.Slider--related .Slider-body .Slider-item {
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 3.8 + 2.8 * 3.75rem ));
      margin-left: 1.275rem;
      margin-right: 1.275rem; }
      @media (max-width: 745px) {
        .Slider.Slider--related .Slider-body .Slider-item {
          width: calc( ( (100% - 6 * 2.41rem ) / 6 * 3.8 + 2.8 * 2.41rem ));
          margin-left: 0.625rem;
          margin-right: 0.625rem; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Slider.Slider--related .Slider-body .Slider-item {
          margin-left: 1rem;
          margin-right: 1rem;
          width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 3.8 + 2.8 * 2rem )); } }
      @media (max-width: 745px) {
        .Slider.Slider--related .Slider-body .Slider-item {
          margin-left: calc(2.41rem/2) !important;
          margin-right: calc(2.41rem/2) !important;
          margin-left: 1.875rem;
          margin-right: 1.875rem;
          width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 5.1 + 4.1 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Slider.Slider--related .Slider-body .Slider-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 5.1 + 4.1 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Slider.Slider--related .Slider-body .Slider-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 5.1 + 4.1 * 2rem )); } }
      @media (max-width: 321px) {
        .Slider.Slider--related .Slider-body .Slider-item {
          margin-left: 1.875rem;
          margin-right: 1.875rem;
          width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 5.4 + 4.4 * 3.75rem )); } }
  @media (max-width: 321px) and (max-width: 745px) {
    .Slider.Slider--related .Slider-body .Slider-item {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 5.4 + 4.4 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 321px) and (min-width: 746px) and (max-width: 1023px) {
    .Slider.Slider--related .Slider-body .Slider-item {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 5.4 + 4.4 * 2rem )); } }
      .Slider.Slider--related .Slider-body .Slider-item:last-child {
        padding-right: calc(3.75rem*1.5); }
        @media (max-width: 745px) {
          .Slider.Slider--related .Slider-body .Slider-item:last-child {
            padding-right: 0; } }
      .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
        margin-left: 1.875rem;
        margin-right: 1.875rem;
        width: calc( ( (100% - 12 * 3.75rem + 3.75rem/2 ) / 12 * 1.5 + 0.5 * 3.75rem ));
        margin-left: 0; }
        @media (max-width: 745px) {
          .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
            width: calc( ( (100% - 6 * 2.41rem ) / 6 * 1.5 + 0.5 * 2.41rem ));
            margin-left: 0.625rem;
            margin-right: 0.625rem; } }
        @media (min-width: 746px) and (max-width: 1023px) {
          .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
            margin-left: 1rem;
            margin-right: 1rem;
            width: calc( ( (100% - 12 * 2rem + 2rem/2 ) / 12 * 1.5 + 0.5 * 2rem )); } }
        @media (max-width: 745px) {
          .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
            display: none; } }
        @media (min-width: 746px) {
          .Slider.Slider--related .Slider-body .Slider-item.Slider-item--first {
            margin-left: 0 !important;
            margin-right: 0.7rem; } }
    .Site--minTrending .Slider.Slider--related .Slider-body {
      opacity: 1;
      pointer-events: all; }
  .Slider.Slider--end .Slider-controls .Slider-button.Slider-button--next {
    opacity: 0.3;
    pointer-events: none; }
  .Slider.Slider--start .Slider-controls .Slider-button.Slider-button--prev {
    opacity: 0.3;
    pointer-events: none; }
  @media (max-width: 745px) {
    .Slider.Slider--removeFirstMobile .Slider-item.Slider-item--n1 {
      display: none; } }
  @media (max-width: 745px) {
    .Slider.Slider--removeFirstMobile .Slider-item.Slider-item--n2 {
      margin-left: 0; } }

.Link {
  outline: none; }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Nav .Link {
      font-size: 18px;
      font-size: 1.125rem; } }
  .Menu .Link {
    /*
        @include respond-to(wide) {
            @include rem('font-size', 21px);
            //line-height:1.05;
        }*/ }
    @media (min-width: 769px) {
      .Menu .Link {
        font-size: 17px;
        font-size: 1.0625rem; } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Menu .Link {
        font-size: 21px;
        font-size: 1.3125rem; } }
  .Link:focus {
    outline: none; }
  .Link.Link--inlinetag {
    color: #202020;
    background: #E8E8E8;
    text-transform: none;
    transition: all 200ms ease-in-out;
    border-bottom: none; }
    .Site--dark .Link.Link--inlinetag {
      color: white;
      background: #444444; }
    .Site--purchase .Link.Link--inlinetag {
      background: rgba(243, 243, 245, 0.3);
      padding: 0 2px; }
    .Link.Link--inlinetag:hover {
      background: #333333;
      color: #F8F8F8; }
      .Site--dark .Link.Link--inlinetag:hover {
        background: white;
        color: black; }
  @media (max-width: 745px) {
    .Menu .Link {
      font-size: 18px;
      font-size: 1.125rem; } }

.Link.Link--list {
  line-height: 1.28; }

.Link.Link--small {
  display: inline-block;
  vertical-align: top; }
  .Link.Link--small span {
    vertical-align: middle; }

.Link.Link--facebook {
  vertical-align: middle;
  opacity: 0.85; }
  .Link.Link--facebook span {
    display: none; }
  .Link.Link--facebook:before {
    width: 11px;
    width: 0.6875rem;
    height: 11px;
    height: 0.6875rem; }
    @media (max-width: 745px) {
      .Link.Link--facebook:before {
        width: 25px;
        height: 25px; } }

.Link.Link--instagram {
  vertical-align: middle;
  opacity: 0.85; }
  .Link.Link--instagram span {
    display: none; }
  .Link.Link--instagram:before {
    width: 11px;
    width: 0.6875rem;
    height: 11px;
    height: 0.6875rem; }
    @media (max-width: 745px) {
      .Link.Link--instagram:before {
        width: 25px;
        height: 25px; } }

.Link.Link--twitter {
  vertical-align: middle;
  opacity: 0.85; }
  .Link.Link--twitter span {
    display: none; }
  .Link.Link--twitter:before {
    width: 11px;
    width: 0.6875rem;
    height: 11px;
    height: 0.6875rem; }
    @media (max-width: 745px) {
      .Link.Link--twitter:before {
        width: 25px;
        height: 25px; } }

.Link.Link--foot {
  display: inline-block;
  vertical-align: middle;
  color: #F8F8F8;
  /*
		@include when-inside('.Site--dark') {   
							color: $lightGrey_darkmode;
						}  */ }
  .Footer .Link.Link--foot {
    color: #333333;
    /*@include when-inside('.Site--dark') {
						    color: $altGrey_darkmode;
						}*/ }

.Nav .Link.Link--big {
  border-bottom: 3px solid transparent; }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Nav .Link.Link--big {
      font-size: 84px;
      font-size: 5.25rem; } }

.Menu .Link.Link--big {
  font-size: 56px;
  font-size: 3.5rem;
  line-height: 1.05; }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Menu .Link.Link--big {
      font-size: 72px;
      font-size: 4.5rem;
      line-height: 1.05; } }

.Link.Link--submenu {
  font-size: 54px;
  font-size: 3.375rem; }
  @media (max-width: 745px) {
    .Link.Link--submenu {
      font-size: 28px;
      font-size: 1.75rem; } }

.Link.Link--dark {
  background-color: #202020;
  color: white;
  border: 1px solid transparent;
  display: block;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  transition: background-color 300ms ease, border 300ms ease, color 300ms ease; }
  .Site--dark .Link.Link--dark {
    color: black;
    background-color: #F8F8F8; }
  @media (max-width: 745px) {
    .Link.Link--dark {
      padding-top: 12px;
      padding-top: 0.75rem;
      padding-bottom: 12px;
      padding-bottom: 0.75rem; } }
  .Link.Link--dark:hover {
    background-color: white;
    border: 1px solid #202020;
    color: #202020; }
    .Site--dark .Link.Link--dark:hover {
      background-color: black;
      border: 1px solid #F8F8F8;
      color: #F8F8F8; }
    @media (max-width: 745px) {
      .Link.Link--dark:hover {
        background-color: #202020;
        color: white;
        border: 1px solid transparent; }
        .Site--dark .Link.Link--dark:hover {
          background-color: #F8F8F8;
          color: black; } }

@media (max-width: 745px) {
  .Link.Link--mobileButton {
    text-align: center;
    background-color: #202020;
    color: white;
    display: block;
    padding-top: 12px;
    padding-top: 0.75rem;
    padding-bottom: 12px;
    padding-bottom: 0.75rem; }
    .Site--dark .Link.Link--mobileButton {
      background-color: #F8F8F8;
      color: black; } }

@media (max-width: 745px) {
  .Link.Link--button {
    font-size: 10px; } }

@media (min-width: 746px) and (max-width: 1023px) {
  .Nav .Link.Link--medium {
    font-size: 40px;
    font-size: 2.5rem; } }

.brokenlink {
  /*text-decoration: line-through;*/ }

.List li {
  line-height: 1; }

.List.List--inline li {
  display: inline-block;
  margin: 0 6px;
  vertical-align: middle;
  opacity: 0.3;
  transition: opacity  300ms ease-in-out; }
  .List.List--inline li:hover {
    opacity: 1; }
  .List.List--inline li:first-child {
    margin-left: 0; }
  .List.List--inline li:last-child {
    margin-right: 0; }
  .Menu .List.List--inline li {
    opacity: 1; }

.List.List--inline .List-item--noHover:hover {
  opacity: 0.3; }

@media (max-width: 745px) {
  .Site-foot-column--first .List.List--inline li.GDPR {
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 2vw; } }

@media (max-width: 745px) {
  .Site-foot-column--last .List.List--foot li {
    margin: 0 9px; }
    .Site-foot-column--last .List.List--foot li:last-child {
      display: none; } }

.List.List--social {
  font-size: 0; }

.List.List--searchResults li {
  line-height: 1.43; }
  @media (max-width: 745px) {
    .List.List--searchResults li {
      font-size: 25px;
      font-size: 1.5625rem; } }
  .List.List--searchResults li a {
    border-bottom: 2px solid transparent; }
  .List.List--searchResults li:hover a {
    border-bottom: 2px solid #202020; }

.Menu {
  position: relative;
  height: 100%;
  width: 100%; }
  .Menu .Menu-close {
    top: 45px;
    top: 2.8125rem;
    right: 50px;
    right: 3.125rem; }
    @media (max-width: 745px) {
      .Menu .Menu-close {
        top: 40px;
        top: 2.5rem;
        right: 35px;
        right: 2.1875rem; } }
  .Menu .Menu-container {
    padding-top: 120px;
    padding-top: 7.5rem;
    padding-left: 50px;
    padding-left: 3.125rem; }
    @media (max-width: 745px) {
      .Menu .Menu-container {
        padding-top: 50px;
        padding-top: 3.125rem;
        padding-left: 35px;
        padding-left: 2.1875rem; } }
    .Menu .Menu-container .Nav--subNav {
      margin-top: 40px;
      margin-top: 2.5rem; }
  .Menu .Menu-foot {
    bottom: 54px;
    bottom: 3.375rem;
    padding-left: 50px;
    padding-left: 3.125rem;
    padding-right: 50px;
    padding-right: 3.125rem; }
    @media (max-width: 745px) {
      .Menu .Menu-foot {
        bottom: 30px;
        bottom: 1.875rem;
        padding-left: 35px;
        padding-left: 2.1875rem;
        padding-right: 35px;
        padding-right: 2.1875rem; } }
    .Menu .Menu-foot .Menu-sections {
      display: flex; }
      .Menu .Menu-foot .Menu-sections .Menu-section {
        display: inline-block;
        vertical-align: bottom; }
        .Menu .Menu-foot .Menu-sections .Menu-section.Menu-section--1 {
          width: 75%; }
        .Menu .Menu-foot .Menu-sections .Menu-section.Menu-section--2 {
          width: 25%;
          text-align: right;
          margin-top: auto;
          margin-bottom: 3px; }

.Module {
  padding-top: 2.41rem; }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Module {
      padding-top: 2.5rem; } }
  @media (min-width: 769px) {
    .Module {
      padding-top: 4.37rem; } }
  .Module .Module-inner {
    margin-left: 3.75rem;
    margin-right: 3.75rem; }
    @media (min-width: 2000px) {
      .Module .Module-inner {
        max-width: 1832px;
        margin: 0 auto; } }
    @media (max-width: 745px) {
      .Module .Module-inner {
        margin: 0 calc(2.41rem/2); } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Module .Module-inner {
        margin-left: 2rem;
        margin-right: 2rem; } }
  .Module .Module-head {
    padding-left: calc(3.75rem/2);
    padding-right: calc(3.75rem/2);
    margin-bottom: 0;
    margin-bottom: 15px;
    margin-bottom: 0.9375rem; }
    @media (max-width: 745px) {
      .Module .Module-head {
        padding-left: calc(2.41rem/2);
        padding-right: calc(2.41rem/2); } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Module .Module-head {
        padding-left: calc(2rem/2);
        padding-right: calc(2rem/2); } }
    .Module .Module-head .Module-title {
      float: left; }
    .Module .Module-head .Module-cta {
      float: right;
      opacity: 1;
      transition: opacity 200ms ease-in-out;
      display: block; }
      @media (max-width: 745px) {
        .Module .Module-head .Module-cta {
          display: none; } }
      .Module .Module-head .Module-cta:hover {
        opacity: 0.3; }
    .Module .Module-head .Module-partner {
      float: right;
      display: block;
      text-transform: none; }
      .Module .Module-head .Module-partner .benjerry {
        margin-top: -7px;
        margin-top: -0.4375rem; }
        .Module .Module-head .Module-partner .benjerry img {
          width: 4.7rem;
          margin-left: 10px;
          margin-left: 0.625rem; }
        .Module .Module-head .Module-partner .benjerry .benjerrytext {
          display: block;
          float: left;
          padding-top: 7px;
          padding-top: 0.4375rem; }
    .Module .Module-head .Module-headline {
      width: 100%;
      float: left;
      border-top: 1px solid white; }
      .Site--dark .Module .Module-head .Module-headline {
        border-top: 1px solid black; }
  .Module .Module-footer.mountaindew {
    background: url(https://apps.soundvenue.com/external/20211119_mountaindew/bgg_desktop.svg);
    background-size: cover;
    height: 11vw;
    margin-top: -2vw; }
    .Module .Module-footer.mountaindew .mountaindew {
      position: relative; }
      .Module .Module-footer.mountaindew .mountaindew .mountaindewtext {
        padding-top: 6vw;
        color: black;
        width: 100%;
        text-align: center; }
        .Site--dark .Module .Module-footer.mountaindew .mountaindew .mountaindewtext {
          color: white; }
      .Module .Module-footer.mountaindew .mountaindew .Image--svg {
        position: absolute;
        top: -5.2vw;
        right: 0px;
        margin: 0;
        padding: 0;
        width: 23vw; }
  @media (max-width: 745px) {
    .Module.Module--hideOnMobile {
      display: none; } }
  @media (min-width: 746px) {
    .Module.Module--hideOnDesktop {
      display: none; } }
  @media (max-width: 745px) {
    .Module.Module--FirstModule {
      padding-top: 0.2675rem; } }
  @media (min-width: 746px) {
    .Module.Module--FirstModule {
      padding-top: 2rem; } }
  .Module.Module--headline {
    padding: 0; }
    .Template--subFrontpage .Module.Module--headline {
      margin-bottom: 30px;
      margin-bottom: 1.875rem; }
      @media (max-width: 745px) {
        .Template--subFrontpage .Module.Module--headline {
          margin-bottom: 15px;
          margin-bottom: 0.9375rem; } }
    @media (max-width: 745px) {
      .Template--podcastsSubFrontpage .Module.Module--headline {
        padding-bottom: 0;
        padding-bottom: 0rem; } }
    .Module.Module--headline .Module-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      border-bottom: 1px solid #ABABAB;
      padding-top: 19px;
      padding-top: 1.1875rem;
      padding-bottom: 19px;
      padding-bottom: 1.1875rem;
      margin: 0 calc(3.75rem*1.5); }
      .Site--dark .Module.Module--headline .Module-inner {
        border-bottom: 1px solid #cbcccc; }
      .Template--podcastsSubFrontpage .Module.Module--headline .Module-inner {
        padding-top: 40px;
        padding-top: 2.5rem; }
      @media (min-width: 2000px) {
        .Module.Module--headline .Module-inner {
          margin: 0 auto;
          position: relative; }
          .Module.Module--headline .Module-inner:before, .Module.Module--headline .Module-inner:after {
            content: '';
            display: block;
            position: absolute;
            height: 6px;
            width: 1.875rem;
            bottom: -3px;
            left: 0;
            background: #F8F8F8;
            z-index: 2; }
            .Site--dark .Module.Module--headline .Module-inner:before, .Site--dark .Module.Module--headline .Module-inner:after {
              background: #070707; }
          .Module.Module--headline .Module-inner:after {
            right: 0;
            left: auto; }
          .Template--purchaseFrontpage .Module.Module--headline .Module-inner:before, .Template--purchaseFrontpage .Module.Module--headline .Module-inner:after {
            display: none; }
          .Template--filmklubFrontpage .Module.Module--headline .Module-inner:before, .Template--filmklubFrontpage .Module.Module--headline .Module-inner:after {
            display: none; }
          .Template--streamerFrontpage .Module.Module--headline .Module-inner:before, .Template--streamerFrontpage .Module.Module--headline .Module-inner:after {
            background: #00CB91; }
          .Template--standardFrontpage .Module.Module--headline .Module-inner:before, .Template--standardFrontpage .Module.Module--headline .Module-inner:after {
            background: #FF7777; } }
      .Template--sectionFrontpage .Module.Module--headline .Module-inner {
        border-bottom: none; }
      @media (max-width: 745px) {
        .Module.Module--headline .Module-inner {
          margin: 0 calc(2.41rem/2);
          padding-top: 15px;
          padding-top: 0.9375rem;
          padding-bottom: 14px;
          padding-bottom: 0.875rem; }
          .Template--sectionFrontpage .Module.Module--headline .Module-inner {
            padding-bottom: 16px;
            padding-bottom: 1rem; }
          .Module.Module--headline .Module-inner .Module-body {
            width: 102px;
            width: 6.375rem; }
            .Template--subFrontpage .Module.Module--headline .Module-inner .Module-body {
              width: auto; }
            .Template--podcastsSubFrontpage .Module.Module--headline .Module-inner .Module-body {
              width: auto; }
            .Template--filmklubFrontpage .Module.Module--headline .Module-inner .Module-body {
              width: auto; } }
    .Module.Module--headline.Module--yellow .Module-inner, .Module.Module--headline.Module--turquoise .Module-inner {
      padding-top: 20px;
      padding-top: 1.25rem;
      padding-bottom: 21px;
      padding-bottom: 1.3125rem; }
      .Module.Module--headline.Module--yellow .Module-inner .Module-body, .Module.Module--headline.Module--turquoise .Module-inner .Module-body {
        transform: translateY(-2px); }
    @media (max-width: 745px) {
      .Module.Module--headline.Module--yellow .Module-inner, .Module.Module--headline.Module--turquoise .Module-inner {
        padding-top: 14px;
        padding-top: 0.875rem;
        padding-bottom: 14px;
        padding-bottom: 0.875rem; }
        .Module.Module--headline.Module--yellow .Module-inner .Module-body, .Module.Module--headline.Module--turquoise .Module-inner .Module-body {
          transform: translateY(-1px); } }
    .Template--filmklubFrontpage .Module.Module--headline.Module--red_filmklub .Module-inner {
      padding-top: 27px;
      padding-top: 1.6875rem;
      padding-bottom: 17px;
      padding-bottom: 1.0625rem; }
      .Template--filmklubFrontpage .Module.Module--headline.Module--red_filmklub .Module-inner .Module-body {
        transform: translateY(-2px); }
    @media (max-width: 745px) {
      .Template--filmklubFrontpage .Module.Module--headline.Module--red_filmklub .Module-inner {
        padding-top: 23px;
        padding-top: 1.4375rem;
        padding-bottom: 12px;
        padding-bottom: 0.75rem; }
        .Template--filmklubFrontpage .Module.Module--headline.Module--red_filmklub .Module-inner .Module-body {
          transform: translateY(-1px); } }
    .Module.Module--headline h1 {
      margin-top: -2px;
      margin-top: -0.125rem; }
    .Module.Module--headline.Module--noBorder .Module-inner {
      border-bottom: none; }
      @media (max-width: 745px) {
        .Module.Module--headline.Module--noBorder .Module-inner {
          padding-bottom: 0; } }
  .Module.Module--hero {
    padding-top: 0; }
    .Module.Module--hero .Module-inner {
      margin: 0 calc(3.75rem*1.5); }
      @media (max-width: 745px) {
        .Module.Module--hero .Module-inner {
          margin: 0; }
          .Template--subFrontpage .Module.Module--hero .Module-inner {
            margin: 0 calc(2.5rem/2); } }
      @media (min-width: 2000px) {
        .Module.Module--hero .Module-inner {
          margin: 0 auto;
          padding: 0 1.875rem; } }
      .Module.Module--hero .Module-inner .Module-body {
        position: relative; }
        .Module.Module--hero .Module-inner .Module-body .Module-logo {
          position: absolute;
          bottom: 40px;
          bottom: 2.5rem;
          left: 40px;
          left: 2.5rem;
          width: fit-content;
          height: auto;
          z-index: 1; }
          @media (max-width: 745px) {
            .Module.Module--hero .Module-inner .Module-body .Module-logo {
              bottom: 22px;
              bottom: 1.375rem;
              left: 22px;
              left: 1.375rem; } }
  .Module.Module--sectionHero {
    padding: 0;
    margin: 0; }
    .Module.Module--sectionHero .Module-inner {
      margin: 0;
      padding: 0; }
      @media (min-width: 2000px) {
        .Module.Module--sectionHero .Module-inner {
          margin: 0 auto;
          padding: 0 1.875rem; } }
  @media (max-width: 745px) {
    .Module.Module--submenu {
      display: none; } }
  .Module.Module--submenu .Module-head {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-bottom: 1.25rem; }
  .Module.Module--submenu .Module-inner {
    margin-bottom: 37px;
    margin-bottom: 2.3125rem; }
    @media (max-width: 745px) {
      .Module.Module--submenu .Module-inner {
        margin-bottom: 0; } }
  .Module.Module--header {
    padding-top: 0;
    display: table;
    width: 100%;
    height: 100%; }
    @media (min-width: 2000px) {
      .Module.Module--header {
        max-width: 1832px;
        margin: 0 auto; } }
    .Module.Module--header .Module-inner {
      display: table-cell;
      vertical-align: middle;
      width: 100%;
      padding-left: 3.75rem;
      padding-right: 3.75rem; }
      @media (max-width: 745px) {
        .Module.Module--header .Module-inner {
          padding-left: 0;
          padding-right: 0; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Module.Module--header .Module-inner {
          padding-left: 2rem;
          padding-right: 2rem; } }
      @media (min-width: 2000px) {
        .Module.Module--header .Module-inner {
          margin-left: 0;
          margin-right: 0;
          padding-left: 0;
          padding-right: 0; } }
  .Module.Module--trending {
    position: relative;
    padding-top: 0;
    overflow-x: hidden; }
    .Module.Module--trending .Module-inner {
      margin-left: calc(3.75rem*1.5);
      margin-right: calc(3.75rem*1.5); }
      @media (max-width: 745px) {
        .Module.Module--trending .Module-inner {
          margin: 0; } }
      @media (min-width: 2000px) {
        .Module.Module--trending .Module-inner {
          margin: 0 auto; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Module.Module--trending .Module-inner {
          margin-left: 2rem;
          margin-right: 2rem; } }
    .Module.Module--trending:before {
      content: "";
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: #ABABAB; }
      .Site--dark .Module.Module--trending:before {
        background-color: #cbcccc; }
    .Module.Module--trending .Module-head {
      display: none; }
  .Module.Module--topfeatures {
    padding-top: 0; }
    @media (max-width: 745px) {
      .Module.Module--topfeatures .Module-inner {
        margin-left: 0;
        margin-right: 0; } }
  .Module.Module--topFeatureSpecial {
    padding-top: 0; }
    .Module.Module--topFeatureSpecial .Module-inner {
      margin-left: 0; }
      @media (max-width: 745px) {
        .Module.Module--topFeatureSpecial .Module-inner {
          margin-right: 0; } }
      @media (min-width: 2000px) {
        .Module.Module--topFeatureSpecial .Module-inner {
          margin-left: auto; } }
    .Module.Module--topFeatureSpecial .Module-head {
      display: none; }
  @media (max-width: 745px) {
    .Module.Module--featureAndNewslist {
      padding-top: 1.9rem;
      margin-bottom: 0; } }
  .Module.Module--featureAndNewslist .Module-head {
    padding: 0; }
    .Module.Module--featureAndNewslist .Module-head .Module-title {
      display: block;
      width: 100%;
      border-bottom: 1px solid #ABABAB;
      padding-bottom: 10px;
      padding-bottom: 0.625rem;
      float: none; }
      .Site--dark .Module.Module--featureAndNewslist .Module-head .Module-title {
        border-bottom: 1px solid #cbcccc; }
      @media (max-width: 745px) {
        .Module.Module--featureAndNewslist .Module-head .Module-title {
          display: none; } }
    .Module.Module--featureAndNewslist .Module-head .Module-heading {
      margin-top: 9px;
      margin-top: 0.5625rem;
      margin-bottom: 25px;
      margin-bottom: 1.5625rem;
      display: block; }
      @media (max-width: 745px) {
        .Module.Module--featureAndNewslist .Module-head .Module-heading {
          font-size: 25px;
          font-size: 1.5625rem;
          border-top: 1px solid #ABABAB;
          padding-top: 7px;
          padding-top: 0.4375rem;
          margin-bottom: 2px;
          margin-bottom: 0.125rem; }
          .Site--dark .Module.Module--featureAndNewslist .Module-head .Module-heading {
            border-top: 1px solid #cbcccc; } }
  @media (max-width: 745px) {
    .Module.Module--featureAndNewslist .Module-inner {
      margin-left: 0;
      margin-right: 0; } }
  .Module.Module--largeandtwo .Module-head {
    margin-bottom: 31px;
    margin-bottom: 1.9375rem; }
    .Module.Module--largeandtwo .Module-head .Module-headline {
      padding-top: 15px;
      padding-top: 0.9375rem; }
    @media (max-width: 745px) {
      .Module.Module--largeandtwo .Module-head {
        padding-left: 0;
        padding-right: 0; } }
  @media (min-width: 746px) {
    .Module.Module--largeandtwo {
      padding-bottom: 2.41rem; } }
  @media (min-width: 746px) and (min-width: 746px) and (max-width: 1023px) {
    .Module.Module--largeandtwo {
      padding-bottom: 2.5rem; } }
  @media (min-width: 746px) and (min-width: 769px) {
    .Module.Module--largeandtwo {
      padding-bottom: 4.37rem; } }
  @media (min-width: 746px) {
      .Module.Module--largeandtwo .Spot-n2 {
        margin-top: 90px;
        margin-top: 5.625rem; } }
  @media (max-width: 745px) {
    .Module.Module--largeandtwo .Spot.Spot--mobileGrid.Spot-n1 {
      padding-bottom: 0; }
    .Module.Module--largeandtwo .Spot.Spot--mobileGrid.Spot-n2 {
      padding-top: 20px;
      padding-top: 1.25rem;
      border-top: 1px solid #ABABAB; } }
  .Module.Module--group {
    padding-top: 2.41rem; }
    @media (min-width: 746px) {
      .Module.Module--group {
        padding-top: 4.25rem; } }
    @media (max-width: 745px) {
      .Module.Module--group {
        padding-top: 30px;
        padding-top: 1.875rem; } }
    .Module.Module--group .Module-headline {
      margin-top: 10px;
      margin-top: 0.625rem;
      padding-bottom: 28px;
      padding-bottom: 1.75rem;
      padding-top: 8px;
      padding-top: 0.5rem; }
    @media (max-width: 745px) {
      .Module.Module--group .Module-head {
        padding-left: 0;
        padding-right: 0; } }
  .Module.Module--bottomFeatures .Module-inner {
    padding-bottom: 2.41rem; }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Module.Module--bottomFeatures .Module-inner {
        padding-bottom: 2.5rem; } }
    @media (min-width: 769px) {
      .Module.Module--bottomFeatures .Module-inner {
        padding-bottom: 4.37rem; } }
    @media (max-width: 745px) {
      .Module.Module--bottomFeatures .Module-inner {
        padding-bottom: 2.4rem; } }
    .Module.Module--bottomFeatures .Module-inner .Module-head {
      margin-bottom: 31px;
      margin-bottom: 1.9375rem; }
      @media (max-width: 745px) {
        .Module.Module--bottomFeatures .Module-inner .Module-head {
          padding-left: 0;
          padding-right: 0; } }
      .Module.Module--bottomFeatures .Module-inner .Module-head .Module-title {
        padding-bottom: 15px;
        padding-bottom: 0.9375rem; }
        @media (max-width: 745px) {
          .Module.Module--bottomFeatures .Module-inner .Module-head .Module-title {
            display: none; } }
      .Module.Module--bottomFeatures .Module-inner .Module-head .Module-headline {
        border-top: 1px solid #333333;
        padding-top: 15px;
        padding-top: 0.9375rem; }
        .Site--dark .Module.Module--bottomFeatures .Module-inner .Module-head .Module-headline {
          border-top: 1px solid #cbcccc; }
        @media (max-width: 745px) {
          .Module.Module--bottomFeatures .Module-inner .Module-head .Module-headline {
            border-top: 1px solid #ABABAB; }
            .Site--dark .Module.Module--bottomFeatures .Module-inner .Module-head .Module-headline {
              border-top: 1px solid #cbcccc; } }
    .Module.Module--bottomFeatures .Module-inner .Module-body .Module-container {
      margin-bottom: 3.75rem; }
      @media (max-width: 745px) {
        .Module.Module--bottomFeatures .Module-inner .Module-body .Module-container {
          margin-bottom: 39px;
          margin-bottom: 2.4375rem; } }
      .Module.Module--bottomFeatures .Module-inner .Module-body .Module-container.Module-container--noMargin {
        margin-bottom: 0; }
    .Module.Module--bottomFeatures .Module-inner .Module-foot {
      width: 100%;
      padding-left: calc(3.75rem/2);
      padding-right: calc(3.75rem/2); }
      @media (max-width: 745px) {
        .Module.Module--bottomFeatures .Module-inner .Module-foot {
          padding-left: 0;
          padding-right: 0;
          padding-top: 0.61rem; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Module.Module--bottomFeatures .Module-inner .Module-foot {
          padding-left: calc(2rem/2);
          padding-right: calc(2rem/2); } }
      .Module.Module--bottomFeatures .Module-inner .Module-foot > * {
        width: 100%; }
  .Template--podcastsFrontpage .Module.Module--podcasts {
    padding-bottom: 116px;
    padding-bottom: 7.25rem;
    padding-top: 60px;
    padding-top: 3.75rem; }
    @media (max-width: 745px) {
      .Template--podcastsFrontpage .Module.Module--podcasts {
        padding-top: 2.5rem;
        padding-bottom: 4rem; } }
  .page-template-page-film-forside.module-Filmklub-Loaded .Module.Module--podcasts.Module--turquoise {
    margin-top: 0; }
  .Module.Module--text {
    padding-top: 0.8rem; }
    @media (min-width: 2000px) {
      .Module.Module--text {
        max-width: 1832px;
        margin: 0 auto;
        padding: 0 1.875rem; } }
    .Module.Module--text .Module-inner {
      border-bottom: 1px solid #ABABAB;
      margin: 0 calc(3.75rem*1.5);
      padding-bottom: 27px;
      padding-bottom: 1.6875rem; }
      .Site--dark .Module.Module--text .Module-inner {
        border-bottom: 1px solid #cbcccc; }
      @media (max-width: 745px) {
        .Module.Module--text .Module-inner {
          margin: 0 calc(2.41rem/2); }
          .Template--podcastsSubFrontpage .Module.Module--text .Module-inner {
            padding-bottom: 7px;
            padding-bottom: 0.4375rem; } }
      @media (min-width: 2000px) {
        .Module.Module--text .Module-inner {
          margin: 0 auto; } }
    .Module.Module--text .Module-body {
      width: 85%;
      margin: 0 auto; }
      @media (max-width: 745px) {
        .Module.Module--text .Module-body {
          width: 100%; } }
  @media (max-width: 745px) {
    .Site--safariMobile body.single .Module.Module--partner-article-spots {
      padding-top: 0; } }
  @media (max-width: 745px) {
    .Module.Module--partner-article-spots {
      padding-bottom: 30px;
      padding-bottom: 1.875rem; }
      .Module.Module--partner-article-spots .Module-head {
        margin-bottom: 0; } }
  .Module.Module--partner-article-spots .Module-headline {
    padding-bottom: 9px;
    padding-bottom: 0.5625rem;
    border-top: 1px solid #333333; }
  .Module.Module--slider {
    overflow: hidden; }
    @media (max-width: 745px) {
      .Module.Module--slider .Module-head {
        display: none; } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Module.Module--slider .Module-head {
        padding-left: calc(2rem/2);
        padding-right: calc(2rem/2); } }
    .Module.Module--slider .Module-body {
      margin-left: calc(3.75rem/2); }
      @media (max-width: 745px) {
        .Module.Module--slider .Module-body {
          margin-left: 0; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Module.Module--slider .Module-body {
          margin-left: calc(2rem/2); } }
  .Module.Module--slider--live .Module-head {
    position: relative;
    display: block; }
    @media (max-width: 745px) {
      .Module.Module--slider--live .Module-head {
        padding: 0 !important;
        margin: 0 !important; } }
    @media (max-width: 745px) {
      .Module.Module--slider--live .Module-head .Module-cta {
        display: none; } }
    .Module.Module--slider--live .Module-head .Module--LiveLogo {
      background: #333333; }
      .Site--dark .Module.Module--slider--live .Module-head .Module--LiveLogo {
        background: #cbcccc; }
      @media (min-width: 746px) {
        .Module.Module--slider--live .Module-head .Module--LiveLogo {
          position: absolute;
          z-index: 99;
          padding-right: 20px;
          padding-right: 1.25rem;
          left: unset;
          top: 58px;
          top: 3.625rem;
          width: 396px;
          width: 24.75rem;
          height: auto; } }
  @media (max-width: 745px) {
    .Module.Module--slider--live .Module-body .Slider-progress-body {
      display: none; } }
  .Module.Module--slider--live .Module-foot {
    margin-top: 50px;
    margin-top: 3.125rem; }
    @media (min-width: 746px) {
      .Module.Module--slider--live .Module-foot {
        display: none; } }
    .Module.Module--slider--live .Module-foot .Button a {
      border: none;
      background-color: white;
      color: #333333;
      display: inline-block;
      text-align: center;
      padding-top: 10px;
      padding-top: 0.625rem;
      padding-bottom: 10px;
      padding-bottom: 0.625rem;
      width: 100%; }
      .Site--dark .Module.Module--slider--live .Module-foot .Button a {
        background-color: black; }
      .Site--dark .Module.Module--slider--live .Module-foot .Button a {
        color: #cbcccc; }
  .Module.Module--theme, .Module.Module--video, .Module.Module--purchase {
    overflow-x: hidden;
    padding-top: 0;
    margin-top: 0; }
  .Module.Module--theme {
    margin-top: 2.41rem;
    padding-bottom: 2.41rem; }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Module.Module--theme {
        margin-top: 2.5rem; } }
    @media (min-width: 769px) {
      .Module.Module--theme {
        margin-top: 4.37rem; } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Module.Module--theme {
        padding-bottom: 2.5rem; } }
    @media (min-width: 769px) {
      .Module.Module--theme {
        padding-bottom: 4.37rem; } }
    @media (max-width: 745px) {
      .Module.Module--theme {
        padding-top: 2.41rem;
        padding-bottom: 0; } }
    .Module.Module--theme .Module-head {
      padding-top: 57px;
      padding-top: 3.5625rem; }
    @media (max-width: 745px) {
      .Module.Module--theme .Module-title,
      .Module.Module--theme .Module-cta {
        display: none; } }
    .Module.Module--theme.Module--themeLessSpacing .Module-head {
      padding-top: 47px;
      padding-top: 2.9375rem; }
    .Campaign--inArticle .Module.Module--theme {
      background-color: #333333 !important;
      padding-top: 24px;
      padding-top: 1.5rem;
      margin-top: -25px;
      margin-top: -1.5625rem;
      margin-bottom: -8px;
      margin-bottom: -0.5rem; }
      .Site--dark .Campaign--inArticle .Module.Module--theme {
        background-color: #cbcccc !important; }
      .Campaign--inArticle .Module.Module--theme .Module-inner {
        padding-bottom: 12px;
        padding-bottom: 0.75rem; }
      .Campaign--inArticle .Module.Module--theme .Module-head {
        margin-bottom: 10px;
        margin-bottom: 0.625rem; }
        @media (max-width: 745px) {
          .Campaign--inArticle .Module.Module--theme .Module-head {
            display: block;
            padding-top: 0;
            padding-left: 0;
            padding-right: 0;
            margin-bottom: 7px;
            margin-bottom: 0.4375rem; } }
        @media (max-width: 745px) {
          .Campaign--inArticle .Module.Module--theme .Module-head .Module-title {
            display: block; } }
      .Campaign--inArticle .Module.Module--theme .Slider-title {
        max-width: unset; }
  @media (max-width: 745px) {
    .Module.Module--purchase {
      padding-top: 1.5rem;
      padding-bottom: 0; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Module.Module--purchase {
      padding-top: 2rem;
      padding-bottom: 2.8rem; } }
  .Module.Module--purchase .Module-head .Module-headline {
    padding-bottom: 45px;
    padding-bottom: 2.8125rem; }
    @media (max-width: 745px) {
      .Module.Module--purchase .Module-head .Module-headline {
        padding-bottom: 16px;
        padding-bottom: 1rem; } }
  .Template--Frontpage .Module.Module--singleFeature .Module-head {
    display: none; }
  .Template--musicFrontpage .Module.Module--singleFeature .Module-head {
    display: none; }
  .Template--movieFrontpage .Module.Module--singleFeature .Module-head {
    display: none; }
  .Template--purchaseFrontpage .Module.Module--singleFeature .Module-head {
    display: none; }
  .Template--filmklubFrontpage .Module.Module--singleFeature .Module-head {
    display: none; }
  .Template--fashionFrontpage .Module.Module--singleFeature .Module-head {
    display: none; }
  @media (max-width: 745px) {
    .Template--purchaseFrontpage .Module.Module--singleFeature {
      padding-top: 2.41rem; }
    .Module.Module--singleFeature .Module-inner {
      margin: 0; } }
  @media (max-width: 745px) {
    .Module.Module--singleFeature.Module--mobileMargin {
      margin: 0 calc(2.41rem/2); } }
  .Module.Module--red_filmklubSlider {
    display: none; }
    @media (min-width: 746px) {
      .Module.Module--red_filmklubSlider {
        padding-bottom: 2.41rem;
        margin-top: -30px;
        margin-top: -1.875rem; } }
  @media (min-width: 746px) and (min-width: 746px) and (max-width: 1023px) {
    .Module.Module--red_filmklubSlider {
      padding-bottom: 2.5rem; } }
  @media (min-width: 746px) and (min-width: 769px) {
    .Module.Module--red_filmklubSlider {
      padding-bottom: 4.37rem; } }
    @media (min-width: 746px) {
        .Module.Module--red_filmklubSlider .Module-head {
          margin-bottom: 10px;
          margin-bottom: 0.625rem; }
          .Module.Module--red_filmklubSlider .Module-head .Image.Image--svg {
            width: 13.1vw; }
          .Module.Module--red_filmklubSlider .Module-head .Module-title {
            margin-top: -5px;
            margin-top: -0.3125rem; }
          .Module.Module--red_filmklubSlider .Module-head .Module-cta {
            padding-top: 1px;
            padding-top: 0.0625rem; } }
    @media (max-width: 745px) {
      .Module.Module--red_filmklubSlider .Module-head {
        display: block !important;
        padding: 0;
        margin-bottom: 8px;
        margin-bottom: 0.5rem; }
        .Module.Module--red_filmklubSlider .Module-head .Image.Image--svg {
          width: 47vw; }
      .Module.Module--red_filmklubSlider .Slider .Slider-cta-mobile {
        display: none !important; }
      .Module.Module--red_filmklubSlider .Spot .Spot-title .Category {
        border-color: white; }
        .Site--dark .Module.Module--red_filmklubSlider .Spot .Spot-title .Category {
          border-color: black; } }
    .page-template-page-film-forside.module-Filmklub-Loaded .Module.Module--red_filmklubSlider {
      margin-top: 2.41rem; }
      @media (min-width: 746px) and (max-width: 1023px) {
        .page-template-page-film-forside.module-Filmklub-Loaded .Module.Module--red_filmklubSlider {
          margin-top: 2.5rem; } }
      @media (min-width: 769px) {
        .page-template-page-film-forside.module-Filmklub-Loaded .Module.Module--red_filmklubSlider {
          margin-top: 4.37rem; } }
  .Module.PartnerBenJerry {
    background-color: #498BC9 !important; }
    .Module.PartnerBenJerry .Module-head {
      margin-bottom: 10px;
      margin-bottom: 0.625rem; }
      @media (max-width: 745px) {
        .Module.PartnerBenJerry .Module-head {
          display: block;
          padding-top: 0;
          padding-left: 0;
          padding-right: 0;
          margin-bottom: 7px;
          margin-bottom: 0.4375rem; } }
      @media (max-width: 745px) {
        .Module.PartnerBenJerry .Module-head .Module-title {
          display: block; } }
    .Module.PartnerBenJerry.PartnerBenJerryArticle {
      display: none;
      margin-top: 0;
      margin-top: -30px;
      margin-top: -1.875rem; }
  .Module.PartnerMoviaKulturator {
    background-color: #ebe9e1 !important;
    color: #333333 !important; }
    @media (max-width: 745px) {
      .Module.PartnerMoviaKulturator {
        padding-bottom: 2.41rem; } }
    .Module.PartnerMoviaKulturator .Module-head {
      margin-bottom: 10px;
      margin-bottom: 0.625rem; }
      @media (max-width: 745px) {
        .Module.PartnerMoviaKulturator .Module-head {
          display: block;
          padding-top: 0;
          padding-left: 0;
          padding-right: 0;
          margin-bottom: 7px;
          margin-bottom: 0.4375rem; } }
      @media (max-width: 745px) {
        .Module.PartnerMoviaKulturator .Module-head .Module-title {
          display: block; } }

.Template--article .Module.Module--trendinghigh {
  padding-top: 0;
  margin-bottom: 60px;
  margin-bottom: 3.75rem; }
  @media (max-width: 745px) {
    .Template--article .Module.Module--trendinghigh {
      margin-bottom: 40px;
      margin-bottom: 2.5rem; } }

.Module.Module--related {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 99;
  padding-top: 0;
  transform: translateY(100%);
  transition: none;
  backface-visibility: hidden;
  overflow-x: hidden;
  padding-top: 0;
  background-color: white; }
  .Site--dark .Module.Module--related {
    background-color: black; }
  .Module.Module--related.not-sticky {
    position: relative;
    bottom: auto;
    transform: translateY(0%);
    transition: none;
    margin-top: 0; }
  .Module.Module--related.is-active {
    transform: translateY(0);
    transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1); }
  .Module.Module--related.is-inactive {
    transform: translateY(100%);
    transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1); }
  .Module.Module--related.is-scrolling {
    position: absolute;
    bottom: auto;
    transform: translateY(-100%);
    transition: none; }
  .Module.Module--related .Module-inner {
    margin-left: calc(3.75rem*1.5);
    margin-right: calc(3.75rem*1.5); }
    @media (max-width: 745px) {
      .Module.Module--related .Module-inner {
        margin: 0; } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Module.Module--related .Module-inner {
        margin-left: calc(2rem*1.5);
        margin-right: calc(2rem*1.5); } }
    @media (min-width: 2000px) {
      .Module.Module--related .Module-inner {
        margin: 0 auto; } }
    .Module.Module--related .Module-inner .Module-head {
      display: none; }
  .Module.Module--related .Module-safari-fix {
    display: none; }
    @media (max-width: 745px) {
      .Site--safariMobile .Module.Module--related .Module-safari-fix {
        height: 35px;
        background-color: #333333;
        width: 100%;
        display: block; }
        .Site--dark .Site--safariMobile .Module.Module--related .Module-safari-fix {
          background-color: #cbcccc; } }

.Module.Module--component {
  height: 25vh; }

.Module.Module--grey {
  background-color: #333333;
  color: white; }
  .Site--dark .Module.Module--grey {
    background-color: #cbcccc; }
  .Site--dark .Module.Module--grey {
    color: black; }

.Module.Module--platinum {
  background-color: #ECE9E2; }

.Module--darkGrey {
  background-color: #202020;
  color: white; }

.Module.Module--lightGrey {
  background-color: #F8F8F8; }
  .Site--dark .Module.Module--lightGrey {
    background-color: #070707;
    color: #F8F8F8; }

.Module.Module--related.Module--lightGrey {
  background-color: #f3f2f2; }
  .Site--video .Module.Module--related.Module--lightGrey {
    background-color: #333333;
    color: #F8F8F8; }
  .Site--dark .Module.Module--related.Module--lightGrey {
    background-color: black;
    color: #cbcccc; }

.Module.Module--red {
  background-color: #FF7777;
  color: white; }
  .Site--dark .Module.Module--red {
    color: black; }

.Module.Module--turquoise {
  background-color: #00CB91;
  color: white; }
  .Site--dark .Module.Module--turquoise {
    color: black; }

.Module.Module--blue,
.Module.Module--yellow {
  background-color: #FFC525; }

.Module.Module--red_filmklub {
  background-color: #da3232;
  color: white; }
  .Site--dark .Module.Module--red_filmklub {
    color: black; }

@media (max-width: 745px) {
  .Module.Module--grey .Module-inner,
  .Module.Module--turquoise .Module-inner,
  .Module.Module--red .Module-inner,
  .Module.Module--blue .Module-inner,
  .Module.Module--yellow .Module-inner,
  .Module.Module--red_filmklub .Module-inner,
  .Module--slider.Module.Module--turquoise .Module-inner,
  .Module--slider.Module.Module--red .Module-inner {
    padding-bottom: 2.41rem; } }

.ModuleList {
  padding-bottom: 2.41rem; }
  @media (min-width: 746px) and (max-width: 1023px) {
    .ModuleList {
      padding-bottom: 2.5rem; } }
  @media (min-width: 769px) {
    .ModuleList {
      padding-bottom: 4.37rem; } }
  @media (max-width: 745px) {
    .ModuleList .Module--singleFeature {
      margin-bottom: 2.41rem; } }
  .ModuleList .ModuleList-foot {
    width: 100%;
    margin-top: 2.41rem;
    padding-left: calc(3.75rem*1.5);
    padding-right: calc(3.75rem*1.5); }
    @media (min-width: 746px) and (max-width: 1023px) {
      .ModuleList .ModuleList-foot {
        margin-top: 2.5rem; } }
    @media (min-width: 769px) {
      .ModuleList .ModuleList-foot {
        margin-top: 4.37rem; } }
    @media (max-width: 745px) {
      .ModuleList .ModuleList-foot {
        padding-left: calc(2.41rem/2);
        padding-right: calc(2.41rem/2); } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .ModuleList .ModuleList-foot {
        padding-left: calc(2rem/2);
        padding-right: calc(2rem/2); } }
    .ModuleList .ModuleList-foot > * {
      width: 100%; }

.Icon {
  position: relative; }
  .Icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%); }

.Icon.Icon--number {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  position: relative;
  border-radius: 50%;
  border: 1px solid #202020;
  background-color: transparent;
  transition: background-color 300ms ease-in-out; }
  .Module--grey .Icon.Icon--number {
    border: 1px solid white; }
    .Site--dark .Module--grey .Icon.Icon--number {
      border: 1px solid black; }
  .Icon.Icon--number .Icon-body {
    position: relative;
    width: 100%;
    height: 100%; }
    .Icon.Icon--number .Icon-body:after {
      content: '';
      width: 8px;
      height: 15px;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center center; }
  .Icon.Icon--number:hover {
    background-color: #333333; }
    .Site--dark .Icon.Icon--number:hover {
      background-color: #cbcccc; }
    .Module--grey .Icon.Icon--number:hover {
      background-color: white; }
      .Site--dark .Module--grey .Icon.Icon--number:hover {
        background-color: black; }

.Icon.Icon--bordered {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  position: relative;
  border-radius: 50%;
  border: 1px solid #202020;
  background-color: transparent;
  transition: background-color 300ms ease-in-out; }
  .Site--dark .Icon.Icon--bordered {
    border: 1px solid #F8F8F8; }
  .Module--grey .Icon.Icon--bordered {
    border: 1px solid white; }
    .Site--dark .Module--grey .Icon.Icon--bordered {
      border: 1px solid black; }
  .Module--darkGrey .Icon.Icon--bordered {
    border: 1px solid white; }
    .Site--dark .Module--darkGrey .Icon.Icon--bordered {
      border: 1px solid black; }
  .Module--turquoise .Icon.Icon--bordered {
    border: 1px solid white; }
    .Site--dark .Module--turquoise .Icon.Icon--bordered {
      border: 1px solid black; }
  .Module--red .Icon.Icon--bordered {
    border: 1px solid white; }
    .Site--dark .Module--red .Icon.Icon--bordered {
      border: 1px solid black; }
  .Module--red_filmklub .Icon.Icon--bordered {
    border: 1px solid white; }
    .Site--dark .Module--red_filmklub .Icon.Icon--bordered {
      border: 1px solid black; }
  .Icon.Icon--bordered:hover {
    background-color: #333333; }
    .Site--dark .Icon.Icon--bordered:hover {
      background-color: #cbcccc; }
    .Module--grey .Icon.Icon--bordered:hover {
      background-color: white; }
      .Site--dark .Module--grey .Icon.Icon--bordered:hover {
        border: 1px solid black; }
    .Module--darkGrey .Icon.Icon--bordered:hover {
      background-color: white; }
      .Site--dark .Module--darkGrey .Icon.Icon--bordered:hover {
        border: 1px solid black; }
    .Module--turquoise .Icon.Icon--bordered:hover {
      background-color: white; }
      .Site--dark .Module--turquoise .Icon.Icon--bordered:hover {
        border: 1px solid black; }
    .Module--red .Icon.Icon--bordered:hover {
      background-color: white; }
      .Site--dark .Module--red .Icon.Icon--bordered:hover {
        border: 1px solid black; }
    .Module--red_filmklub .Icon.Icon--bordered:hover {
      background-color: white; }
      .Site--dark .Module--red_filmklub .Icon.Icon--bordered:hover {
        border: 1px solid black; }

.Icon.Icon--next svg,
.Icon.Icon--prev svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25%;
  height: auto;
  transform: translate(-50%, -50%); }
  .Icon.Icon--next svg path,
  .Icon.Icon--prev svg path {
    fill: #333333;
    transition: fill 300ms ease-in-out; }
    .Site--dark .Icon.Icon--next svg path, .Site--dark
    .Icon.Icon--prev svg path {
      fill: #cbcccc; }
    .Module--grey .Icon.Icon--next svg path, .Module--grey
    .Icon.Icon--prev svg path {
      fill: white; }
      .Site--dark .Module--grey .Icon.Icon--next svg path, .Site--dark .Module--grey
      .Icon.Icon--prev svg path {
        fill: black; }
    .Module--darkGrey .Icon.Icon--next svg path, .Module--darkGrey
    .Icon.Icon--prev svg path {
      fill: white; }
      .Site--dark .Module--darkGrey .Icon.Icon--next svg path, .Site--dark .Module--darkGrey
      .Icon.Icon--prev svg path {
        fill: black; }
    .Module--purchase .Icon.Icon--next svg path, .Module--purchase
    .Icon.Icon--prev svg path {
      fill: #333333; }
    .Module--turquoise .Icon.Icon--next svg path, .Module--turquoise
    .Icon.Icon--prev svg path {
      fill: white; }
      .Site--dark .Module--turquoise .Icon.Icon--next svg path, .Site--dark .Module--turquoise
      .Icon.Icon--prev svg path {
        fill: black; }
    .Module--red .Icon.Icon--next svg path, .Module--red
    .Icon.Icon--prev svg path {
      fill: white; }
      .Site--dark .Module--red .Icon.Icon--next svg path, .Site--dark .Module--red
      .Icon.Icon--prev svg path {
        fill: black; }
    .Module--red_filmklub .Icon.Icon--next svg path, .Module--red_filmklub
    .Icon.Icon--prev svg path {
      fill: white; }
      .Site--dark .Module--red_filmklub .Icon.Icon--next svg path, .Site--dark .Module--red_filmklub
      .Icon.Icon--prev svg path {
        fill: black; }

.Icon.Icon--next:hover svg path,
.Icon.Icon--prev:hover svg path {
  fill: white; }
  .Module--grey .Icon.Icon--next:hover svg path, .Module--grey
  .Icon.Icon--prev:hover svg path {
    fill: #333333; }
  .Module--darkGrey .Icon.Icon--next:hover svg path, .Module--darkGrey
  .Icon.Icon--prev:hover svg path {
    fill: #333333; }
  .Module--blue .Icon.Icon--next:hover svg path, .Module--blue
  .Icon.Icon--prev:hover svg path {
    fill: white; }
  .Module--turquoise .Icon.Icon--next:hover svg path, .Module--turquoise
  .Icon.Icon--prev:hover svg path {
    fill: #333333; }
  .Module--red .Icon.Icon--next:hover svg path, .Module--red
  .Icon.Icon--prev:hover svg path {
    fill: #333333; }
  .Module--red_filmklub .Icon.Icon--next:hover svg path, .Module--red_filmklub
  .Icon.Icon--prev:hover svg path {
    fill: #333333; }

.Icon.Icon--bordered.Icon--prev svg {
  transform: translate(-65%, -50%); }

.Icon.Icon--bordered.Icon--next svg {
  transform: translate(-47%, -50%); }

.Icon.Icon--small {
  width: 7px;
  width: 0.4375rem;
  height: 9px;
  height: 0.5625rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  transform: translateY(0.04rem); }
  .Icon.Icon--small svg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none; }
    .Module--lightGrey .Icon.Icon--small svg path {
      fill: #333333; }
    .Module--purchase .Icon.Icon--small svg path {
      fill: #333333; }

.Module--lightGrey .Icon.Icon--next.Icon--small svg path {
  fill: #333333; }
  .Site--dark .Module--lightGrey .Icon.Icon--next.Icon--small svg path {
    fill: #cbcccc; }

.Module--purchase .Icon.Icon--next.Icon--small svg path {
  fill: #333333; }

.Icon.Icon--social {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem; }
  .Template-purchase-top .Icon.Icon--social {
    width: 18px;
    width: 1.125rem;
    height: 18px;
    height: 1.125rem; }
    @media (max-width: 745px) {
      .Template-purchase-top .Icon.Icon--social {
        width: 13px;
        width: 0.8125rem;
        height: 13px;
        height: 0.8125rem; } }

.Icon.Icon--number {
  text-indent: 0%;
  white-space: normal; }
  .Icon.Icon--number .Icon-body:after {
    display: none; }
  .Icon.Icon--number:hover {
    background-color: transparent; }

.Icon.is-inactive {
  opacity: 0.5; }

.Icon.Icon--play {
  width: 84px;
  height: 84px; }

.Icon.Icon--star {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  margin-right: 1px;
  background-size: contain; }
  @media (max-width: 745px) {
    .Icon.Icon--star {
      width: 13px;
      width: 0.8125rem;
      height: 13px;
      height: 0.8125rem; } }
  .Spot--large .Icon.Icon--star {
    width: 17px;
    width: 1.0625rem;
    height: 17px;
    height: 1.0625rem; }
    @media (max-width: 745px) {
      .Spot--large .Icon.Icon--star {
        width: 13px;
        width: 0.8125rem;
        height: 13px;
        height: 0.8125rem; } }
  .Spot--small .Icon.Icon--star {
    width: 14px;
    width: 0.875rem;
    height: 14px;
    height: 0.875rem; }
    @media (max-width: 745px) {
      .Spot--small .Icon.Icon--star {
        width: 12px;
        width: 0.75rem;
        height: 12px;
        height: 0.75rem; } }
    .Slider .Spot--small .Icon.Icon--star {
      width: 13px;
      width: 0.8125rem;
      height: 13px;
      height: 0.8125rem; }
  .Article-rating .Icon.Icon--star {
    width: 25px;
    width: 1.5625rem;
    height: 25px;
    height: 1.5625rem;
    margin: 0 2px;
    margin-bottom: 90px;
    margin-bottom: 5.625rem; }
    @media (max-width: 745px) {
      .Article-rating .Icon.Icon--star {
        width: 15px;
        width: 0.9375rem;
        height: 15px;
        height: 0.9375rem;
        margin: 0 1px;
        margin-bottom: 2.41rem; } }
  .Module--bottomFeatures .Spot--small .Icon.Icon--star {
    width: 12px;
    width: 0.75rem;
    height: 12px;
    height: 0.75rem; }
    @media (max-width: 745px) {
      .Module--bottomFeatures .Spot--small .Icon.Icon--star {
        width: 13px;
        width: 0.8125rem;
        height: 13px;
        height: 0.8125rem; } }
  @media (max-width: 745px) {
    .Module--bottomFeatures .Spot--large .Icon.Icon--star {
      width: 15px;
      width: 0.9375rem;
      height: 15px;
      height: 0.9375rem; } }
  @media (max-width: 745px) {
    .Module--review .Icon.Icon--star {
      width: 15px;
      width: 0.9375rem;
      height: 15px;
      height: 0.9375rem; } }

.Icon.Icon--search {
  width: 21.237px;
  width: 1.3273125rem;
  height: 20px;
  height: 1.25rem;
  margin-left: auto;
  background-position: contain; }
  @media (max-width: 745px) {
    .Icon.Icon--search {
      width: 17px;
      width: 1.0625rem;
      height: 17px;
      height: 1.0625rem; } }
  @media (min-width: 2000px) {
    .Icon.Icon--search {
      width: 29.4958333333px;
      height: 27.7777777778px; } }
  .Site--video .Icon.Icon--search {
    background-image: url("../img/icons/search_white.svg"); }
  .Site--dark .Icon.Icon--search {
    background-image: url("../img/icons/search_white.svg"); }

.Icon.Icon--close {
  width: 14px;
  height: 14px; }
  .Menu .Icon.Icon--close {
    width: 18px;
    width: 1.125rem;
    height: 18px;
    height: 1.125rem; }

.Icon.Icon--burger {
  width: 24px;
  width: 1.5rem;
  height: 12px;
  height: 0.75rem;
  cursor: pointer; }
  @media (min-width: 2000px) {
    .Icon.Icon--burger {
      width: 33.3333333333px;
      height: 16.6666666667px; } }
  .Site--dark .Icon.Icon--burger {
    background-image: url("../img/icons/burger_white.svg"); }

.Logo {
  position: relative;
  width: 130px;
  width: 8.125rem;
  height: 16px;
  height: 1rem;
  margin: 0 auto;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent; }
  @media (min-width: 2000px) {
    .Logo {
      width: 180.555555556px;
      height: 22.2222222222px; } }
  .Logo:after {
    content: '';
    display: block;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../img/logo2022.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none; }
    .Site--video .Logo:after {
      background-image: url(../img/logo2022_white.svg); }
    .Site--dark .Logo:after {
      background-image: url(../img/logo2022_white.svg); }
    .svad-creative-container.extendedtopscroll .Logo:after {
      background-image: url(../img/logo2022_white.svg); }
  .Logo a {
    overflow: hidden;
    padding: 0;
    text-indent: 101%;
    white-space: nowrap;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }

@media (min-width: 746px) {
  .Slider--doubleDecker .Spot {
    margin-bottom: 55px;
    margin-bottom: 3.4375rem; } }

.Spot .Spot-title {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem; }
  @media (max-width: 745px) {
    .Module--slider .Spot .Spot-title {
      margin-top: 15px;
      margin-top: 0.9375rem; } }
  .Module--review .Spot .Spot-title {
    margin-bottom: 0;
    margin-top: 10px;
    margin-top: 0.625rem; }
  .Module--bottomFeatures .Spot .Spot-title {
    min-height: 70px;
    min-height: 4.375rem;
    margin-bottom: 0;
    margin-top: 10px;
    margin-top: 0.625rem; }
  .Spot .Spot-title .Category {
    text-transform: uppercase;
    border-bottom: 1px solid #202020;
    padding-bottom: 1px;
    padding-bottom: 0.0625rem;
    position: relative;
    top: -4px;
    top: -0.25rem;
    margin-right: 12px;
    margin-right: 0.75rem; }
    @media (max-width: 745px) {
      .Spot .Spot-title .Category {
        padding-bottom: 0.13rem; } }
    .Site--dark .Spot .Spot-title .Category {
      border-bottom: 1px solid #F8F8F8; }
    .Module--grey .Spot .Spot-title .Category {
      border-bottom: 1px solid white; }
      .Site--dark .Module--grey .Spot .Spot-title .Category {
        border-bottom: 1px solid black; }
    .Module--darkGrey .Spot .Spot-title .Category {
      border-bottom: 1px solid white; }
      .Site--dark .Module--darkGrey .Spot .Spot-title .Category {
        border-bottom: 1px solid black; }
    .Module--red .Spot .Spot-title .Category {
      border-bottom: 1px solid white; }
      .Site--dark .Module--red .Spot .Spot-title .Category {
        border-bottom: 1px solid black; }
    .Module--turquoise .Spot .Spot-title .Category {
      border-bottom: 1px solid white; }
      .Site--dark .Module--turquoise .Spot .Spot-title .Category {
        border-bottom: 1px solid black; }
    .Module--review .Spot .Spot-title .Category {
      display: none; }
      @media (max-width: 745px) {
        .Module--review .Spot .Spot-title .Category {
          display: inline-block; } }
    .Module--bottomFeatures .Spot .Spot-title .Category {
      display: none; }
    .Module--trendinghigh .Spot .Spot-title .Category {
      margin-right: 0; }
      .Module--trendinghigh .Spot .Spot-title .Category:after {
        content: '';
        display: block;
        height: 2px;
        height: 0.125rem; }
        @media (max-width: 745px) {
          .Module--trendinghigh .Spot .Spot-title .Category:after {
            height: 7px;
            height: 0.4375rem; } }

.Module--topfeatures .Spot {
  margin-bottom: 55px;
  margin-bottom: 3.4375rem; }
  .Module--topfeatures .Spot:last-child {
    margin: 0; }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Module--topfeatures .Spot {
      margin-bottom: 40px;
      margin-bottom: 2.5rem; } }
  @media (max-width: 745px) {
    .Module--topfeatures .Spot {
      margin-bottom: 30px;
      margin-bottom: 1.875rem; } }

.Spot .Spot-category {
  display: none;
  text-transform: uppercase;
  border-bottom: 1px solid #202020;
  padding-bottom: 2px; }
  .Site--dark .Spot .Spot-category {
    border-bottom: 1px solid #F8F8F8; }
  .PartnerMoviaKulturator .Spot .Spot-category {
    border-bottom: 1px solid #202020 !important; }
  @media (max-width: 745px) {
    .Spot .Spot-category {
      padding-bottom: 1px; } }
  .Module--review .Spot .Spot-category {
    display: inline-block;
    margin-top: 20px;
    margin-top: 1.25rem; }
    @media (max-width: 745px) {
      .Module--review .Spot .Spot-category {
        display: none; } }
  .Module--bottomFeatures .Spot .Spot-category {
    display: inline-block;
    margin-top: 20px;
    margin-top: 1.25rem; }
  .Module--blue .Spot .Spot-category {
    border-bottom: 1px solid #333333; }
  .Module--yellow .Spot .Spot-category {
    border-bottom: 1px solid #333333; }
  .Module--red_filmklub .Spot .Spot-category {
    border-bottom: 1px solid white; }
    .Site--dark .Module--red_filmklub .Spot .Spot-category {
      border-bottom: 1px solid black; }
  .Module--grey .Spot .Spot-category {
    border-bottom: 1px solid white; }
    .Site--dark .Module--grey .Spot .Spot-category {
      border-bottom: 1px solid black; }
  .Module--turquoise .Spot .Spot-category {
    border-bottom: 1px solid white; }
    .Site--dark .Module--turquoise .Spot .Spot-category {
      border-bottom: 1px solid black; }
  .Module--red .Spot .Spot-category {
    border-bottom: 1px solid white; }
    .Site--dark .Module--red .Spot .Spot-category {
      border-bottom: 1px solid black; }
  .Module--darkGrey .Spot .Spot-category {
    border-bottom: 1px solid white; }
    .Site--dark .Module--darkGrey .Spot .Spot-category {
      border-bottom: 1px solid black; }

.Spot .Spot-time {
  text-transform: uppercase;
  color: #BCBCBC; }
  .Site--dark .Spot .Spot-time {
    color: #F8F8F8; }
  @media (max-width: 745px) {
    .Spot .Spot-time {
      font-size: 11px;
      font-size: 0.6875rem; } }

.Spot .Spot-rating {
  padding-top: 5px;
  padding-top: 0.3125rem;
  line-height: 0; }
  @media (max-width: 745px) {
    .Spot .Spot-rating {
      padding-top: 10px;
      padding-top: 0.625rem; } }
  @media (max-width: 745px) {
    .Module--trendinghigh .Spot .Spot-rating {
      padding-top: 0; } }
  .Module--review .Spot .Spot-rating {
    padding-top: 20px;
    padding-top: 1.25rem; }
    @media (max-width: 745px) {
      .Module--review .Spot .Spot-rating {
        padding-top: 18px;
        padding-top: 1.125rem; } }
  @media (max-width: 745px) {
    .Slider-firstMobileItem .Spot .Spot-rating {
      padding-top: 4px;
      padding-top: 0.25rem; } }
  .Module--trending .Spot .Spot-rating {
    display: none; }
  .Module--related .Spot .Spot-rating {
    display: none; }
  .Module--featureAndNewslist .SpotList .Spot .Spot-rating {
    display: none; }

@media (max-width: 745px) {
  .Spot.Spot--hideOnMobile {
    display: none; } }

@media (min-width: 746px) {
  .Spot.Spot--hideOnDesktop {
    display: none; } }

.Spot.Spot--small .Spot-info .Spot-title {
  margin-top: 5px;
  margin-top: 0.3125rem; }
  .Module--topfeatures .Spot.Spot--small .Spot-info .Spot-title {
    margin-top: 18px;
    margin-top: 1.125rem; }
    @media (max-width: 745px) {
      .Module--topfeatures .Spot.Spot--small .Spot-info .Spot-title {
        margin-top: 7px;
        margin-top: 0.4375rem; } }
  .Module--largeandtwo .Spot.Spot--small .Spot-info .Spot-title {
    margin-top: 18px;
    margin-top: 1.125rem; }
    @media (max-width: 745px) {
      .Module--largeandtwo .Spot.Spot--small .Spot-info .Spot-title {
        margin-top: 7px;
        margin-top: 0.4375rem; } }
  .Module--bottomfeatures .Spot.Spot--small .Spot-info .Spot-title {
    margin-top: 18px;
    margin-top: 1.125rem; }
    @media (max-width: 745px) {
      .Module--bottomfeatures .Spot.Spot--small .Spot-info .Spot-title {
        margin-top: 8px;
        margin-top: 0.5rem; } }
  @media (max-width: 745px) {
    .Spot.Spot--small .Spot-info .Spot-title {
      font-size: 0.875rem;
      line-height: 1.357;
      margin-top: 8px;
      margin-top: 0.5rem; } }
  @media (max-width: 745px) {
    .Spot.Spot--small .Spot-info .Spot-title .Category {
      top: -3px; } }

@media (max-width: 745px) {
  .Spot.Spot--small .Spot-info .Spot-rating {
    padding-top: 8px;
    padding-top: 0.5rem; }
    .Slider .Spot.Spot--small .Spot-info .Spot-rating {
      margin-top: 10px;
      margin-top: 0.625rem; } }

.Spot.Spot--large .Spot-category {
  display: inline-block;
  margin-top: 33px;
  margin-top: 2.0625rem;
  padding-bottom: 2px; }
  @media (max-width: 745px) {
    .Spot.Spot--large .Spot-category {
      margin-top: 25px;
      margin-top: 1.5625rem; }
      .Module--podcasts .Spot.Spot--large .Spot-category {
        display: none; }
      .Slider-firstMobileItem .Spot.Spot--large .Spot-category {
        display: none; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Spot.Spot--large .Spot-category {
      margin-top: 25px;
      margin-top: 1.5625rem;
      padding-bottom: 3px;
      padding-bottom: 0.1875rem; } }

@media (max-width: 745px) {
  .Module--largeandtwo .Spot.Spot--large .Spot-media {
    margin: 0 calc(-2.41rem/2); } }

.Spot.Spot--large .Spot-info {
  text-align: center; }
  .Slider-firstMobileItem .Spot.Spot--large .Spot-info {
    text-align: left; }
  .Spot.Spot--large .Spot-info .Spot-title {
    margin: 0 auto;
    margin-top: 10px;
    margin-top: 0.625rem;
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
    width: 90%;
    min-height: auto; }
    .Slider .Spot.Spot--large .Spot-info .Spot-title {
      margin-bottom: 0; }
    @media (max-width: 745px) {
      .Slider--mobileSmall .Spot.Spot--large .Spot-info .Spot-title {
        font-size: 14px;
        font-size: 0.875rem;
        font-family: "GT-America-Medium", sans-serif;
        line-height: 1.357;
        text-transform: none;
        width: 100%;
        text-align: left; } }
    @media (min-width: 746px) {
      .Module--topfeatures .Spot.Spot--large .Spot-info .Spot-title {
        margin-bottom: 14px;
        margin-bottom: 0.875rem; } }
    @media (max-width: 745px) {
      .Module--topfeatures .Spot.Spot--large .Spot-info .Spot-title {
        margin-bottom: 8px;
        margin-bottom: 0.5rem; } }
    @media (min-width: 746px) {
      .Module--featureAndNewslist .Spot.Spot--large .Spot-info .Spot-title {
        margin-bottom: 8px;
        margin-bottom: 0.5rem; } }
    @media (min-width: 746px) {
      .Module--bottomFeatures .Spot.Spot--large .Spot-info .Spot-title {
        margin-bottom: 8px;
        margin-bottom: 0.5rem; } }
    @media (max-width: 745px) {
      .Module--bottomFeatures .Spot.Spot--large .Spot-info .Spot-title {
        margin-bottom: 8px;
        margin-bottom: 0.5rem; } }
    .Module--podcasts .Spot.Spot--large .Spot-info .Spot-title {
      margin-top: 14px;
      margin-top: 0.875rem; }
    @media (max-width: 745px) {
      .Spot.Spot--large .Spot-info .Spot-title {
        margin-bottom: 30px;
        margin-bottom: 1.875rem; }
        .Module--podcasts .Spot.Spot--large .Spot-info .Spot-title {
          font-size: 14px;
          font-size: 0.875rem;
          font-family: "GT-America-Medium", sans-serif;
          line-height: 1.357;
          width: 100%;
          text-transform: none;
          text-align: left; }
        .Slider-firstMobileItem .Spot.Spot--large .Spot-info .Spot-title {
          font-size: 16px;
          font-size: 1rem;
          font-family: "GT-America-Medium", sans-serif;
          line-height: 1.42;
          width: 100%;
          text-transform: none;
          text-align: left;
          margin-bottom: 15px;
          margin-bottom: 0.9375rem;
          margin-top: 12px;
          margin-top: 0.75rem; } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Spot.Spot--large .Spot-info .Spot-title {
        font-size: 40px;
        font-size: 2.5rem; } }
    .Spot.Spot--large .Spot-info .Spot-title .Category {
      display: none; }
      @media (max-width: 745px) {
        .Slider--mobileSmall .Spot.Spot--large .Spot-info .Spot-title .Category {
          display: inline-block;
          top: -3px; } }
      @media (max-width: 745px) {
        .Module--podcasts .Spot.Spot--large .Spot-info .Spot-title .Category {
          display: inline-block;
          top: -3px; }
        .Slider-firstMobileItem .Spot.Spot--large .Spot-info .Spot-title .Category {
          display: inline-block; } }
  @media (max-width: 745px) {
    .Slider--mobileSmall .Spot.Spot--large .Spot-info .Spot-category {
      display: none; } }
  .Spot.Spot--large .Spot-info .Spot-rating {
    margin-top: 20px;
    margin-top: 1.25rem; }
    @media (max-width: 745px) {
      .Spot.Spot--large .Spot-info .Spot-rating {
        margin-bottom: 20px;
        margin-bottom: 1.25rem; }
        .Slider .Spot.Spot--large .Spot-info .Spot-rating {
          margin-top: 8px;
          margin-top: 0.5rem;
          margin-bottom: 0px;
          margin-bottom: 0rem; }
        .Slider-firstMobileItem .Spot.Spot--large .Spot-info .Spot-rating {
          margin-bottom: 35px;
          margin-bottom: 2.1875rem;
          line-height: 1; }
        .Slider--mobileSmall .Spot.Spot--large .Spot-info .Spot-rating {
          text-align: left; } }
    @media (min-width: 746px) {
      .Module--topfeatures .Spot.Spot--large .Spot-info .Spot-rating {
        margin-top: 13px;
        margin-top: 0.8125rem; } }
    @media (max-width: 745px) {
      .Module--topfeatures .Spot.Spot--large .Spot-info .Spot-rating {
        margin-top: 8px;
        margin-top: 0.5rem; } }
    @media (min-width: 746px) {
      .Module--featureAndNewslist .Spot.Spot--large .Spot-info .Spot-rating {
        margin-top: 8px;
        margin-top: 0.5rem; } }
    @media (min-width: 746px) {
      .Module--bottomFeatures .Spot.Spot--large .Spot-info .Spot-rating {
        margin-top: 8px;
        margin-top: 0.5rem; } }
    @media (max-width: 745px) {
      .Module--bottomFeatures .Spot.Spot--large .Spot-info .Spot-rating {
        margin-top: 8px;
        margin-top: 0.5rem; } }

.Spot.Spot--noRating .Spot-info .Spot-title {
  margin-bottom: 0; }

.Spot.Spot--singleFeature .Spot-inner, .Spot.Spot--topFeatureSpecial .Spot-inner {
  align-items: center;
  height: auto; }
  @media (min-width: 746px) {
    .Spot.Spot--singleFeature .Spot-inner, .Spot.Spot--topFeatureSpecial .Spot-inner {
      flex-direction: row-reverse; } }
  .Spot.Spot--singleFeature .Spot-inner .Spot-appetizer, .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-appetizer {
    font-family: "Georgia", Times, Times New Roman, serif;
    width: 80%;
    margin: 0 auto;
    margin-top: 40px;
    margin-top: 2.5rem; }
    @media (max-width: 745px) {
      .Spot.Spot--singleFeature .Spot-inner .Spot-appetizer, .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-appetizer {
        width: 95%; } }
  @media (max-width: 745px) {
    .Spot.Spot--singleFeature .Spot-inner .Spot-info .Spot-title, .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-info .Spot-title {
      width: 100%;
      margin-bottom: 8px;
      margin-bottom: 0.5rem; } }
  @media (max-width: 745px) {
    .Spot.Spot--singleFeature .Spot-inner .Spot-info, .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-info {
      margin: 0 calc(2.41rem/2); } }
  @media (max-width: 745px) {
    .Module--mobileMargin .Spot.Spot--singleFeature .Spot-inner .Spot-info, .Module--mobileMargin .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-info {
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem ) / 12 * 8 + 7 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Module--mobileMargin .Spot.Spot--singleFeature .Spot-inner .Spot-info, .Module--mobileMargin .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-info {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 8 + 7 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Module--mobileMargin .Spot.Spot--singleFeature .Spot-inner .Spot-info, .Module--mobileMargin .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-info {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 8 + 7 * 2rem )); } }
  @media (max-width: 745px) {
    .Module--mobileMargin .Spot.Spot--singleFeature .Spot-inner .Spot-info, .Module--mobileMargin .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-info {
      margin-left: 0;
      margin-right: 0; } }
  @media (max-width: 745px) {
    .Spot.Spot--singleFeature .Spot-inner .Spot-info .Spot-rating, .Spot.Spot--topFeatureSpecial .Spot-inner .Spot-info .Spot-rating {
      margin-top: 8px;
      margin-top: 0.5rem; } }

.Spot.Spot--singleFeature .Spot-media,
.Spot.Spot--singleFeature .Spot-info, .Spot.Spot--topFeatureSpecial .Spot-media,
.Spot.Spot--topFeatureSpecial .Spot-info {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 6 + 5 * 3.75rem )); }
  @media (max-width: 745px) {
    .Spot.Spot--singleFeature .Spot-media,
    .Spot.Spot--singleFeature .Spot-info, .Spot.Spot--topFeatureSpecial .Spot-media,
    .Spot.Spot--topFeatureSpecial .Spot-info {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 6 + 5 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Spot.Spot--singleFeature .Spot-media,
    .Spot.Spot--singleFeature .Spot-info, .Spot.Spot--topFeatureSpecial .Spot-media,
    .Spot.Spot--topFeatureSpecial .Spot-info {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 6 + 5 * 2rem )); } }
  @media (max-width: 745px) {
    .Spot.Spot--singleFeature .Spot-media,
    .Spot.Spot--singleFeature .Spot-info, .Spot.Spot--topFeatureSpecial .Spot-media,
    .Spot.Spot--topFeatureSpecial .Spot-info {
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem ) / 12 * 8 + 7 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Spot.Spot--singleFeature .Spot-media,
    .Spot.Spot--singleFeature .Spot-info, .Spot.Spot--topFeatureSpecial .Spot-media,
    .Spot.Spot--topFeatureSpecial .Spot-info {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 8 + 7 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Spot.Spot--singleFeature .Spot-media,
    .Spot.Spot--singleFeature .Spot-info, .Spot.Spot--topFeatureSpecial .Spot-media,
    .Spot.Spot--topFeatureSpecial .Spot-info {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 8 + 7 * 2rem )); } }

@media (max-width: 745px) {
  .Spot.Spot--singleFeature .Spot-media, .Spot.Spot--topFeatureSpecial .Spot-media {
    margin: 0; } }

.Spot.Spot--reversed .Spot-inner {
  flex-direction: row; }

@media (max-width: 745px) {
  .Spot.Spot--singleFeature .Spot-appetizer {
    display: none; } }

@media (min-width: 2000px) {
  .Spot.Spot--topFeatureSpecial {
    padding: 0 1.875rem; } }

.Spot.Spot--topFeatureSpecial .Spot-inner {
  align-items: flex-start;
  height: auto; }
  .Module--topFeatureSpecial .Spot.Spot--topFeatureSpecial .Spot-inner {
    align-items: center; }
  @media (min-width: 746px) {
    .Spot.Spot--topFeatureSpecial .Spot-inner {
      flex-direction: row; } }
  @media (max-width: 745px) {
    .Spot.Spot--topFeatureSpecial .Spot-inner {
      align-items: center; } }

.Module--yellow .Spot.Spot--topFeatureSpecial .Spot-title {
  color: inherit; }

.Module--red_filmklub .Spot.Spot--topFeatureSpecial .Spot-title {
  color: inherit; }

.Spot.Spot--topFeatureSpecial .Spot-appetizer {
  margin-top: 50px;
  margin-top: 3.125rem;
  width: 90%;
  margin-left: 10px;
  margin-left: 0.625rem;
  margin-right: 10px;
  margin-right: 0.625rem; }

.Spot.Spot--topFeatureSpecial .Spot-category {
  color: #202020;
  margin-top: 0; }
  .Module--turquoise .Spot.Spot--topFeatureSpecial .Spot-category {
    color: white;
    border-bottom: 1px solid white; }
    .Site--dark .Module--turquoise .Spot.Spot--topFeatureSpecial .Spot-category {
      color: black;
      border-bottom: 1px solid black; }
  .Module--red .Spot.Spot--topFeatureSpecial .Spot-category {
    color: white;
    border-bottom: 1px solid white; }
    .Site--dark .Module--red .Spot.Spot--topFeatureSpecial .Spot-category {
      color: black;
      border-bottom: 1px solid black; }
  .Module--red_filmklub .Spot.Spot--topFeatureSpecial .Spot-category {
    color: white;
    border-bottom: 1px solid white; }
    .Site--dark .Module--red_filmklub .Spot.Spot--topFeatureSpecial .Spot-category {
      color: black;
      border-bottom: 1px solid black; }
  @media (max-width: 745px) {
    .Spot.Spot--topFeatureSpecial .Spot-category {
      margin-top: 25px;
      margin-top: 1.5625rem; } }

.Spot.Spot--topFeatureSpecial .Spot-media {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 6.5 + 5.5 * 3.75rem ));
  margin-left: 0; }
  @media (max-width: 745px) {
    .Spot.Spot--topFeatureSpecial .Spot-media {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 6.5 + 5.5 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Spot.Spot--topFeatureSpecial .Spot-media {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 6.5 + 5.5 * 2rem )); } }
  @media (max-width: 745px) {
    .Spot.Spot--topFeatureSpecial .Spot-media {
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem ) / 12 * 8 + 7 * 3.75rem )); } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Spot.Spot--topFeatureSpecial .Spot-media {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 8 + 7 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Spot.Spot--topFeatureSpecial .Spot-media {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 8 + 7 * 2rem )); } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Spot.Spot--topFeatureSpecial .Spot-media {
      margin-left: 0; } }

.Spot.Spot--topFeatureSpecial .Spot-info {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  width: calc( ( (100% - 12 * 3.75rem ) / 12 * 5.5 + 4.5 * 3.75rem ));
  margin-top: 105px;
  margin-top: 6.5625rem; }
  @media (max-width: 745px) {
    .Spot.Spot--topFeatureSpecial .Spot-info {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 5.5 + 4.5 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Spot.Spot--topFeatureSpecial .Spot-info {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 5.5 + 4.5 * 2rem )); } }
  .Module--topFeatureSpecial .Spot.Spot--topFeatureSpecial .Spot-info {
    margin-top: 0; }
  @media (max-width: 745px) {
    .Spot.Spot--topFeatureSpecial .Spot-info {
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem ) / 12 * 8 + 7 * 3.75rem ));
      margin-top: 17px;
      margin-top: 1.0625rem; } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Spot.Spot--topFeatureSpecial .Spot-info {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 8 + 7 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Spot.Spot--topFeatureSpecial .Spot-info {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 8 + 7 * 2rem )); } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Spot.Spot--topFeatureSpecial .Spot-info {
      margin-top: 70px;
      margin-top: 4.375rem; } }
  @media (max-width: 745px) {
    .Spot.Spot--topFeatureSpecial .Spot-info .Spot-appetizer {
      display: none; } }

@media (max-width: 745px) {
  .Spot.Spot--topFeatureSpecial .Spot-media {
    margin: 0; } }

.Spot.Spot--list {
  margin-bottom: 48ox;
  margin-bottom: 3rem; }
  @media (max-width: 745px) {
    .Spot.Spot--list {
      border-top: 1px solid #ABABAB;
      margin-bottom: 20ox;
      margin-bottom: 1.25rem;
      padding-top: 20ox;
      padding-top: 1.25rem; }
      .Site--dark .Spot.Spot--list {
        border-top: 1px solid #cbcccc; }
      .Spot.Spot--list:first-child {
        border-top: none; } }
  .Spot.Spot--list .Spot-inner {
    align-items: center;
    height: auto; }
    @media (max-width: 745px) {
      .Spot.Spot--list .Spot-inner {
        align-items: flex-start; } }
  .Spot.Spot--list .Spot-media {
    width: 32%; }
    @media (max-width: 745px) {
      .Spot.Spot--list .Spot-media {
        width: 100px;
        width: 6.25rem;
        max-width: 100px;
        max-width: 6.25rem;
        max-height: 100px;
        max-height: 6.25rem;
        min-width: 100px;
        min-width: 6.25rem;
        min-height: 100px;
        min-height: 6.25rem; } }
  .Spot.Spot--list .Spot-info {
    width: 68%;
    padding-left: 3.75rem; }
    @media (max-width: 745px) {
      .Spot.Spot--list .Spot-info {
        width: calc(100% - 6.25rem);
        padding-left: calc(2.41rem/2); } }
    .Spot.Spot--list .Spot-info .Category {
      display: none; }
    .Spot.Spot--list .Spot-info .Spot-category {
      display: inline-block; }
      @media (max-width: 745px) {
        .Spot.Spot--list .Spot-info .Spot-category {
          display: block;
          width: fit-content; } }
    .Spot.Spot--list .Spot-info .Spot-title {
      line-height: 1.1875;
      margin-top: 3px;
      margin-top: 0.1875rem;
      margin-bottom: 0; }
      @media (max-width: 745px) {
        .Spot.Spot--list .Spot-info .Spot-title {
          font-family: "Georgia", Times, Times New Roman, serif;
          font-size: 14px;
          font-size: 0.875rem;
          margin-top: 8px;
          margin-top: 0.5rem;
          text-transform: none; } }

@media (max-width: 745px) {
  .Spot.Spot--Slider--Second {
    display: none; } }

.Module--featureAndNewslist .Spot.Spot--squareTiny {
  padding-bottom: 9px;
  padding-bottom: 0.5625rem;
  margin-top: 18px;
  margin-top: 1.125rem;
  border-bottom: 1px solid #ABABAB; }
  .Site--dark .Module--featureAndNewslist .Spot.Spot--squareTiny {
    border-bottom: 1px solid #cbcccc; }
  .Module--featureAndNewslist .Spot.Spot--squareTiny:first-child {
    margin-top: 0; }
  @media (max-width: 745px) {
    .Module--featureAndNewslist .Spot.Spot--squareTiny {
      margin-top: 1.2rem;
      padding-bottom: 12px;
      padding-bottom: 0.75rem; }
      .Module--featureAndNewslist .Spot.Spot--squareTiny:nth-child(10) {
        border-bottom: none; }
      .Module--featureAndNewslist .Spot.Spot--squareTiny:first-child {
        margin-top: 1.1rem; } }

.Spot.Spot--squareTiny .Spot-inner {
  position: relative;
  width: 100%;
  display: inline-flex; }
  .Module--trending .Spot.Spot--squareTiny .Spot-inner {
    display: block; }
  .Spot.Spot--squareTiny .Spot-inner .Spot-media {
    width: 62px;
    width: 3.875rem;
    height: auto;
    position: relative; }
    .Module--featureAndNewslist .Spot.Spot--squareTiny .Spot-inner .Spot-media {
      max-width: 100px;
      max-width: 6.25rem;
      max-height: 100px;
      max-height: 6.25rem;
      min-width: 100px;
      min-width: 6.25rem;
      min-height: 100px;
      min-height: 6.25rem; }
    .Module--related .Spot.Spot--squareTiny .Spot-inner .Spot-media {
      width: 25%;
      max-width: 72px;
      max-width: 4.5rem;
      max-height: 72px;
      max-height: 4.5rem;
      min-width: 72px;
      min-width: 4.5rem;
      min-height: 72px;
      min-height: 4.5rem; }
      @media (max-width: 745px) {
        .Module--related .Spot.Spot--squareTiny .Spot-inner .Spot-media {
          max-width: 80px;
          max-width: 5rem;
          max-height: 80px;
          max-height: 5rem;
          min-width: 80px;
          min-width: 5rem;
          min-height: 80px;
          min-height: 5rem; } }
  .Spot.Spot--squareTiny .Spot-inner .Spot-info {
    width: 80%;
    position: relative;
    padding-left: 15px;
    padding-left: 0.9375rem;
    margin-top: 10px;
    margin-top: 0.625rem; }
    @media (max-width: 745px) {
      .Spot.Spot--squareTiny .Spot-inner .Spot-info {
        margin-top: 0px; } }
    .Module--featureAndNewslist .Spot.Spot--squareTiny .Spot-inner .Spot-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start; }
    .Module--featureAndNewslist .Spot.Spot--squareTiny .Spot-inner .Spot-info {
      width: 75%; }
    .Module--related .Spot.Spot--squareTiny .Spot-inner .Spot-info {
      width: 72%;
      margin-top: 6px;
      margin-top: 0.375rem; }
      @media (max-width: 745px) {
        .Module--related .Spot.Spot--squareTiny .Spot-inner .Spot-info {
          width: 75%;
          margin-top: 1px;
          margin-top: 0.0625rem; } }
    .Module--trending .Spot.Spot--squareTiny .Spot-inner .Spot-info {
      font-size: 0;
      width: 100%;
      margin-top: 0; }
      @media (max-width: 745px) {
        .Module--trending .Spot.Spot--squareTiny .Spot-inner .Spot-info {
          padding-left: 0;
          margin-top: 0; } }
    .Spot.Spot--squareTiny .Spot-inner .Spot-info > * {
      display: inline-block; }
    .Module--featureAndNewslist .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-time {
      margin-top: 10px;
      margin-top: 0.625rem;
      align-self: flex-end; }
    .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
      margin-top: 0; }
      .Module--trending .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
        font-size: 15px;
        font-size: 0.9375rem;
        margin-bottom: 0;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        font-family: "Georgia", Times, Times New Roman, serif; }
        @media (max-width: 745px) {
          .Module--trending .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
            font-size: 14px;
            font-size: 0.875rem;
            line-height: 1.4; } }
        @media (max-width: 376px) {
          .Module--trending .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
            font-size: 15px;
            font-size: 0.9375rem; } }
        @media (max-width: 321px) {
          .Module--trending .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
            font-size: 16px;
            font-size: 1rem; } }
      .Module--related .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
        font-family: "Georgia", Times, Times New Roman, serif;
        font-size: 15px;
        font-size: 0.9375rem;
        margin-top: 0; }
        @media (max-width: 745px) {
          .Module--related .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
            font-size: 14px;
            font-size: 0.875rem;
            line-height: 1.25;
            margin-top: 0.3rem;
            margin-bottom: 0; } }
        @media (max-width: 376px) {
          .Module--related .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
            font-size: 15px;
            font-size: 0.9375rem;
            margin-top: 0.2rem; } }
        @media (max-width: 321px) {
          .Module--related .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
            font-size: 16px;
            font-size: 1rem;
            margin-top: 0; } }
      @media (max-width: 745px) {
        .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
          font-size: 11px;
          font-size: 0.6875rem; }
          .Module--featureAndNewslist .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title {
            font-size: 13px;
            font-size: 0.8125rem; } }
      .Module--trending .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title a {
        transform: translateY(-0.2em); }
      .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title .Number {
        width: 21px;
        width: 1.3125rem;
        height: 21px;
        height: 1.3125rem;
        transform: translateY(1px);
        float: none;
        border-radius: none;
        background: transparent;
        border: none;
        display: inline-block;
        margin-right: 20px;
        margin-right: 1.25rem; }
        @media (min-width: 2000px) {
          .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title .Number {
            width: 29.1666666667px;
            height: 29.1666666667px;
            margin-right: 27.7777777778px; } }
        @media (max-width: 745px) {
          .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title .Number {
            margin-right: 12px;
            width: 20px;
            height: 20px;
            margin-right: 12px;
            margin-right: 0.75rem;
            width: 20px;
            width: 1.25rem;
            height: 20px;
            height: 1.25rem; } }
        .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title .Number:after {
          content: attr(data-number);
          position: relative;
          width: 21px;
          width: 1.3125rem;
          height: 21px;
          height: 1.3125rem;
          border: 1px solid #333333;
          background-color: #333333;
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          color: white;
          font-size: 10px;
          font-size: 0.625rem; }
          .Site--dark .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title .Number:after {
            color: black;
            border: 1px solid white;
            background-color: white; }
          @media (min-width: 2000px) {
            .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title .Number:after {
              font-size: 13.8888888889px;
              width: 29.1666666667px;
              height: 29.1666666667px; } }
          @media (max-width: 745px) {
            .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-title .Number:after {
              width: 20px;
              width: 1.25rem;
              height: 20px;
              height: 1.25rem; } }
    .Spot.Spot--squareTiny .Spot-inner .Spot-info .Spot-number {
      display: none;
      position: absolute;
      top: 0;
      left: 0;
      width: auto;
      height: auto; }

@media (max-width: 745px) {
  .Spot.Spot--mobileGrid {
    font-size: 0;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #ABABAB;
    margin-top: 0; }
    .Site--dark .Spot.Spot--mobileGrid {
      border-bottom: 1px solid #cbcccc; }
    .Spot.Spot--mobileGrid:first-child {
      border-top: 1px solid #ABABAB;
      padding-top: 20px;
      padding-top: 1.25rem; }
      .Site--dark .Spot.Spot--mobileGrid:first-child {
        border-top: 1px solid #cbcccc; }
      .Module--bottomFeatures .Spot.Spot--mobileGrid:first-child {
        border-top: none;
        padding-top: 0; }
    .Module--topfeatures .Spot.Spot--mobileGrid {
      margin-bottom: 20px;
      margin-bottom: 1.25rem;
      padding-bottom: 20px;
      padding-bottom: 1.25rem; }
      .Module--topfeatures .Spot.Spot--mobileGrid:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0; }
    .Module--largeandtwo .Spot.Spot--mobileGrid {
      margin-bottom: 20px;
      margin-bottom: 1.25rem;
      padding-bottom: 20px;
      padding-bottom: 1.25rem; }
      .Module--largeandtwo .Spot.Spot--mobileGrid:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0; }
    .Grid-item:last-child .Spot.Spot--mobileGrid {
      border-bottom: none; }
    .Spot.Spot--mobileGrid .Spot-inner {
      position: relative; }
    .Spot.Spot--mobileGrid .Spot-category {
      vertical-align: top;
      display: block;
      width: fit-content;
      margin-top: 2px;
      margin-top: 0.125rem; }
    .Spot.Spot--mobileGrid .Spot-title {
      min-height: auto;
      margin-top: 8px;
      margin-top: 0.5rem;
      vertical-align: top; } }
    @media (max-width: 745px) and (max-width: 745px) {
      .Spot.Spot--mobileGrid .Spot-title {
        margin-bottom: 0; } }

@media (max-width: 745px) {
      .Spot.Spot--mobileGrid .Spot-title .Category {
        display: none; }
    .Spot.Spot--mobileGrid .Spot-inner {
      width: 100%;
      display: inline-flex; }
      .Spot.Spot--mobileGrid .Spot-inner .Spot-media {
        position: relative;
        width: 100px;
        width: 6.25rem;
        height: 100px;
        height: 6.25rem;
        max-width: 100px;
        max-width: 6.25rem;
        max-height: 100px;
        max-height: 6.25rem; }
        .Spot.Spot--mobileGrid .Spot-inner .Spot-media .Image .ui-lazyImage-bg {
          background-size: cover; }
      .Spot.Spot--mobileGrid .Spot-inner .Spot-info {
        align-self: flex-start;
        width: calc(100% - 6.25rem);
        position: relative;
        padding-left: 10px;
        padding-left: 0.625rem; } }
      @media (max-width: 745px) and (max-width: 745px) {
        .Spot.Spot--mobileGrid .Spot-inner .Spot-info {
          padding-left: 20px;
          padding-left: 1.25rem; } }

@media (max-width: 745px) {
  .Module-group--triple .Spot.Spot--medium {
    font-size: 0;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #ABABAB;
    margin-top: 0; }
    .Site--dark .Module-group--triple .Spot.Spot--medium {
      border-bottom: 1px solid #cbcccc; }
    .Module-group--triple .Spot.Spot--medium .Spot-inner {
      position: relative; }
    .Module-group--triple .Spot.Spot--medium .Spot-category {
      display: block;
      width: fit-content;
      margin-top: 2px;
      margin-top: 0.125rem; }
    .Module-group--triple .Spot.Spot--medium .Spot-title {
      min-height: auto;
      margin-top: 8px;
      margin-top: 0.5rem;
      vertical-align: top;
      font-size: 0.875rem;
      line-height: 1.357; }
      .Module-group--triple .Spot.Spot--medium .Spot-title .Category {
        display: none; }
    .Module-group--triple .Spot.Spot--medium .Spot-inner {
      width: 100%;
      display: inline-flex; }
      .Module-group--triple .Spot.Spot--medium .Spot-inner .Spot-media {
        position: relative;
        width: 100px;
        width: 6.25rem;
        height: 100px;
        height: 6.25rem;
        max-width: 100px;
        max-width: 6.25rem;
        max-height: 100px;
        max-height: 6.25rem; }
        .Module-group--triple .Spot.Spot--medium .Spot-inner .Spot-media .Image .ui-lazyImage-bg {
          background-size: cover; }
      .Module-group--triple .Spot.Spot--medium .Spot-inner .Spot-info {
        align-self: flex-start;
        width: calc(100% - 6.25rem);
        position: relative;
        padding-left: 10px;
        padding-left: 0.625rem; } }
      @media (max-width: 745px) and (max-width: 745px) {
        .Module-group--triple .Spot.Spot--medium .Spot-inner .Spot-info {
          padding-left: 20px;
          padding-left: 1.25rem; } }

@media (max-width: 745px) {
  .Module--borderTopMobile .Grid-item--n1 .Spot.Spot--medium {
    border-top: 1px solid #ABABAB;
    padding-top: 20px;
    padding-top: 1.25rem; }
    .Site--dark .Module--borderTopMobile .Grid-item--n1 .Spot.Spot--medium {
      border-top: 1px solid #cbcccc; } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Module--borderTopMobile .Grid-item--n1 .Spot.Spot--medium {
      padding-top: 2.41rem; } }

@media (max-width: 745px) {
  .Grid-item--n3 .Spot.Spot--medium .Template--musicFrontpage {
    border-bottom: none;
    margin-bottom: 0; }
  .Template--fashionFrontpage .Spot.Spot--medium {
    border: none; }
    .Template--fashionFrontpage .Spot.Spot--medium .Spot-inner {
      display: block; }
      .Template--fashionFrontpage .Spot.Spot--medium .Spot-inner .Spot-media {
        width: 100%;
        max-width: none;
        max-height: none;
        height: auto; }
      .Template--fashionFrontpage .Spot.Spot--medium .Spot-inner .Spot-info {
        width: 100%;
        padding-left: 0;
        text-align: center;
        padding: 0 calc(2.5rem/2); }
        .Template--fashionFrontpage .Spot.Spot--medium .Spot-inner .Spot-info .Spot-category {
          position: relative;
          margin: 0 auto;
          margin-top: 25px;
          margin-top: 1.5625rem; }
        .Template--fashionFrontpage .Spot.Spot--medium .Spot-inner .Spot-info .Spot-title {
          font-family: "GT America Compressed Black", sans-serif;
          text-transform: uppercase;
          font-size: 1.75rem;
          line-height: 0.92;
          margin-top: 10px;
          margin-top: 0.625rem; } }

.Spot.Spot--component {
  padding-top: 56.25%;
  background-color: lightGrey;
  position: relative;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem; }
  .Spot.Spot--component .Spot-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

.Spot.Spot--sticky {
  position: sticky;
  top: 0; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0px 1000px #202020 inset; }

.Form {
  position: relative;
  width: 100%; }
  .Form input {
    margin: 0;
    padding: 0; }
  .Form button {
    padding: 0;
    margin: 0; }
  .Form .Form-input {
    background-color: transparent;
    width: calc(100% - (16%));
    padding-right: 5%;
    opacity: 0.3;
    transition: opacity 300ms ease-in-out; }
    @media (max-width: 745px) {
      .Form .Form-input {
        width: calc(100% - (22%)); } }
  .Form .Form-submit {
    background-color: transparent;
    width: 18%;
    text-align: right;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.3;
    transition: opacity 300ms ease-in-out; }
    @media (max-width: 745px) {
      .Form .Form-submit {
        width: 22%; } }
    .Form .Form-submit:focus {
      outline: none; }
    .Form .Form-submit svg {
      display: inline-block;
      width: 7px;
      width: 0.4375rem;
      height: 9px;
      height: 0.5625rem;
      vertical-align: bottom;
      margin-left: 4px;
      margin-left: 0.25rem;
      opacity: 1;
      transition: opacity 300ms ease-in-out; }
      .Form .Form-submit svg path {
        fill: white; }
    .Form .Form-submit:hover svg {
      opacity: 1; }
  .Form .Form-field {
    width: 100%;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
    padding-bottom: 0.625rem; }
    .Form .Form-field.Form-field--input {
      display: flex;
      align-items: center; }
    .Form .Form-field.Form-field--disclaimer {
      border-bottom: none;
      padding-top: 25px;
      padding-top: 1.5625rem; }
  .Form ::placeholder {
    color: white; }
  .Form .Form-submit:hover {
    opacity: 1; }
  .Form.is-focus .Form-input {
    opacity: 1; }
  .Form.is-typed .Form-input {
    opacity: 1; }
  .Form .checkbox-container {
    display: block;
    position: relative;
    padding-left: 40px;
    padding-left: 2.5rem;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.36;
    color: #A8A8A8;
    text-align: left; }
  .Form.Form--dark ::placeholder {
    color: #333333; }
    .Site--dark .Form.Form--dark ::placeholder {
      color: #cbcccc; }
  .Form.Form--dark .Form-field {
    margin-bottom: 0; }
    .Form.Form--dark .Form-field.Form-field--input {
      border-bottom: 1px solid #333333; }
      .Site--dark .Form.Form--dark .Form-field.Form-field--input {
        border-bottom: 1px solid #cbcccc; }
    .Form.Form--dark .Form-field.Form-field--disclaimer {
      max-width: 50%;
      margin: 0 auto;
      padding-bottom: 0;
      margin-bottom: 97px;
      margin-bottom: 6.0625rem; }
      @media (max-width: 745px) {
        .Form.Form--dark .Form-field.Form-field--disclaimer {
          max-width: 90%;
          margin-bottom: 56px;
          margin-bottom: 3.5rem;
          padding-top: 18px;
          padding-top: 1.125rem; } }
      .Form.Form--dark .Form-field.Form-field--disclaimer .checkbox-container {
        color: #333333;
        text-align: center;
        padding-left: 0; }
        .Site--dark .Form.Form--dark .Form-field.Form-field--disclaimer .checkbox-container {
          color: #cbcccc; }
  .Form.Form--dark .Form-submit svg path {
    fill: #333333; }
  .Form.Form--search {
    margin-top: 0;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #202020;
    /*@include when-inside('.Site--dark') {   
					border-bottom: 1px solid $grey_darkmode;  
				}*/
    position: relative;
    overflow: visible; }
    .Form.Form--search input {
      background-color: transparent;
      color: #202020;
      /*@include when-inside('.Site--dark') {   
						color: $grey_darkmode;
					}*/
      line-height: 100%; }
      @media (max-width: 745px) {
        .Form.Form--search input {
          font-size: 25px;
          font-size: 1.5625rem; } }
    .Form.Form--search .Form-field {
      width: 100%;
      border-bottom: 1px solid white;
      padding-bottom: 4px;
      padding-bottom: 0.25rem; }
      .Form.Form--search .Form-field.Form-field--input {
        align-items: flex-end; }
    .Form.Form--search .Form-input {
      width: 90%; }
      @media (max-width: 745px) {
        .Form.Form--search .Form-input {
          width: 88%; } }
    .Form.Form--search .Form-submit {
      color: #202020;
      /*@include when-inside('.Site--dark') {   
						color: $grey_darkmode;
					} */
      margin-bottom: 4px;
      margin-bottom: 0.25rem;
      width: 10%; }
      @media (max-width: 745px) {
        .Form.Form--search .Form-submit {
          width: 12%; } }
      .Form.Form--search .Form-submit svg path {
        fill: black;
        /*@include when-inside('.Site--dark') {
                	fill: white;
								}*/ }
    .Form.Form--search ::placeholder {
      color: #202020;
      /*@include when-inside('.Site--dark') {   
						color: $grey_darkmode;
					}*/ }

.Newsletter {
  color: white;
  /*
		@include when-inside('.Site--dark') {
    	color:black;
		}*/ }
  @media (max-width: 745px) {
    .Newsletter .Newsletter-title {
      width: 83%;
      margin: 0 auto;
      font-size: 32px;
      font-size: 2rem;
      line-height: 0.92; } }
  .Newsletter .Newsletter-form {
    width: 56%;
    margin: 0 auto;
    text-align: center;
    margin-top: 80px;
    margin-top: 5rem; }
    @media (max-width: 745px) {
      .Newsletter .Newsletter-form {
        width: 80%;
        margin-top: 40px;
        margin-top: 2.5rem; } }
  .Newsletter.Newsletter--dark {
    color: #333333; }
    .Newsletter.Newsletter--dark .Newsletter-title {
      max-width: 50%;
      margin: 0 auto; }
      @media (max-width: 745px) {
        .Newsletter.Newsletter--dark .Newsletter-title {
          max-width: 90%; } }
    .Newsletter.Newsletter--dark .Newsletter-form {
      margin-top: 95px;
      margin-top: 5.9375rem; }
      @media (max-width: 745px) {
        .Newsletter.Newsletter--dark .Newsletter-form {
          width: 90%;
          margin-top: 47px;
          margin-top: 2.9375rem; } }
    .Newsletter.Newsletter--dark .Newsletter-boxes {
      margin: 0 16%;
      padding-bottom: 50px;
      padding-bottom: 3.125rem; }
      @media (max-width: 745px) {
        .Newsletter.Newsletter--dark .Newsletter-boxes {
          margin: 0;
          padding-bottom: 0px;
          padding-bottom: 0rem; } }
      .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box {
        cursor: pointer;
        margin-left: 1.875rem;
        margin-right: 1.875rem;
        width: calc( ( (100% - 12 * 3.75rem ) / 12 * 6 + 5 * 3.75rem ));
        margin-bottom: 50px;
        margin-bottom: 3.125rem;
        color: white;
        /*@include when-inside('.Site--dark') {
						    color:black;
								}*/
        padding-top: 25px;
        padding-top: 1.5625rem;
        padding-bottom: 25px;
        padding-bottom: 1.5625rem;
        padding-left: 30px;
        padding-left: 1.875rem;
        padding-right: 30px;
        padding-right: 1.875rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        min-height: 160px; }
        @media (max-width: 745px) {
          .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box {
            width: calc( ( (100% - 6 * 2.41rem ) / 6 * 6 + 5 * 2.41rem ));
            margin-left: 0.625rem;
            margin-right: 0.625rem; } }
        @media (min-width: 746px) and (max-width: 1023px) {
          .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box {
            margin-left: 1rem;
            margin-right: 1rem;
            width: calc( ( (100% - 12 * 2rem ) / 12 * 6 + 5 * 2rem )); } }
        @media (max-width: 745px) {
          .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box {
            margin-left: 1.875rem;
            margin-right: 1.875rem;
            width: calc( ( (100% - 12 * 3.75rem ) / 12 * 8 + 7 * 3.75rem ));
            margin-bottom: 25px;
            margin-bottom: 1.5625rem;
            margin-left: 0 !important;
            margin-right: 0 !important; } }
  @media (max-width: 745px) and (max-width: 745px) {
    .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box {
      width: calc( ( (100% - 6 * 2.41rem ) / 6 * 8 + 7 * 2.41rem ));
      margin-left: 0.625rem;
      margin-right: 0.625rem; } }
  @media (max-width: 745px) and (min-width: 746px) and (max-width: 1023px) {
    .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box {
      margin-left: 1rem;
      margin-right: 1rem;
      width: calc( ( (100% - 12 * 2rem ) / 12 * 8 + 7 * 2rem )); } }
        .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-head {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          width: 100%; }
          .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-head .Newsletter-box-checkbox {
            position: relative; }
          .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-head .Newsletter-box-title {
            margin-left: 45px;
            margin-left: 2.8125rem; }
            .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-head .Newsletter-box-title.Newsletter-box-title--icon {
              height: 28px;
              height: 1.75rem; }
              .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-head .Newsletter-box-title.Newsletter-box-title--icon img {
                object-fit: contain;
                object-position: top left;
                width: auto;
                height: 100%; }
        .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-body {
          align-self: flex-end;
          margin-top: 20px;
          margin-top: 1.25rem;
          font-size: 17px;
          font-size: 1.0625rem;
          line-height: 1.294;
          padding-right: 20px;
          padding-right: 1.25rem; }
          @media (min-width: 2000px) {
            .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-body {
              font-size: 27.7777777778px; } }
          @media (max-width: 745px) {
            .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box .Newsletter-box-body {
              padding-right: 0; } }
        .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--black {
          background-color: #333333; }
        .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--red {
          background-color: #FF7777; }
        .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--turquoise {
          background-color: #00CB91; }
          .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--turquoise .Newsletter-box-head .Newsletter-box-title.Newsletter-box-title--icon {
            height: 23px;
            height: 1.4375rem;
            margin-top: 2px;
            margin-top: 0.125rem; }
            @media (max-width: 745px) {
              .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--turquoise .Newsletter-box-head .Newsletter-box-title.Newsletter-box-title--icon {
                height: 18px;
                height: 1.125rem;
                margin-top: 5px;
                margin-top: 0.3125rem; } }
          .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--turquoise .Newsletter-box-frequency {
            margin-top: 2px;
            margin-top: 0.125rem; }
            @media (max-width: 745px) {
              .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--turquoise .Newsletter-box-frequency {
                margin-top: 5px;
                margin-top: 0.3125rem; } }
        .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--yellow {
          background-color: #FFC525;
          color: #333333; }
          .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--yellow .Newsletter-box-head .Newsletter-box-title.Newsletter-box-title--icon {
            height: 23px;
            height: 1.4375rem;
            margin-top: 2px;
            margin-top: 0.125rem; }
            @media (max-width: 745px) {
              .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--yellow .Newsletter-box-head .Newsletter-box-title.Newsletter-box-title--icon {
                height: 18px;
                height: 1.125rem;
                margin-top: 5px;
                margin-top: 0.3125rem; } }
          .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--yellow .Newsletter-box-frequency {
            margin-top: 2px;
            margin-top: 0.125rem; }
            @media (max-width: 745px) {
              .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--yellow .Newsletter-box-frequency {
                margin-top: 5px;
                margin-top: 0.3125rem; } }
        .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--streamer .Newsletter-box-head .Newsletter-box-title.Newsletter-box-title--icon, .Newsletter.Newsletter--dark .Newsletter-boxes .Newsletter-box.Newsletter--purchase .Newsletter-box-head .Newsletter-box-title.Newsletter-box-title--icon {
          margin-top: 3px;
          margin-top: 0.1875rem;
          height: 20px;
          height: 1.25rem; }

.Search {
  position: relative;
  height: auto;
  width: 100%;
  margin: 0 auto;
  padding-top: 45px;
  padding-top: 2.8125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  padding-left: 50px;
  padding-left: 3.125rem;
  padding-right: 80px;
  padding-right: 5rem; }
  @media (max-width: 745px) {
    .Search {
      padding-left: 35px;
      padding-left: 2.1875rem;
      padding-right: 35px;
      padding-right: 2.1875rem; } }
  .Search .Search-form {
    margin-top: 56px;
    margin-top: 3.5rem; }
  .Search .Search-results {
    margin-top: 42px;
    margin-top: 2.625rem;
    color: #202020; }

.Template {
  background-color: #F8F8F8;
  padding-top: 146px;
  padding-top: 9.125rem;
  /*
    &.Template--purchase {
        background-color: $yellow;

        .Template-intro-purchase {
            
            display: none;
            background-color: $purchaseYellow;
            width: 100vw;
            height: calc(100vh - 3.125rem);
            position: absolute;
            top:0;
            right:0;
            left: calc(3.75rem*1.5/2);
            z-index: 0;        

            @include respond-to(mobile) {
                left: 0;
                display: none;
                height: 50vh;
            }
        }

    }
*/ }
  .Site--dark .Template {
    background-color: #070707; }
  .Site--noTrending .Template {
    padding-top: 0; }
  @media (max-width: 745px) {
    .Template {
      padding-top: 0; } }
  .Template .Template-intro-purchase {
    display: none; }
  .Template .Template-head {
    border-bottom: 1px solid #ABABAB;
    text-align: center;
    margin-left: calc(3.75rem*1.5);
    margin-right: calc(3.75rem*1.5);
    margin-bottom: 73px;
    margin-bottom: 4.5625rem;
    padding-top: 19px;
    padding-top: 1.1875rem;
    padding-bottom: 19px;
    padding-bottom: 1.1875rem; }
    .Site--dark .Template .Template-head {
      border-bottom: 1px solid #cbcccc; }
    .Template .Template-head h1 {
      margin-top: -2px;
      margin-top: -0.125rem; }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Template .Template-head {
        margin-left: 0;
        margin-right: 0; } }
    @media (max-width: 745px) {
      .Template .Template-head {
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 16px;
        padding-bottom: 1rem; } }
  .Template.Template--article {
    overflow-x: hidden; }
    .Template.Template--article .Template-sections {
      padding-bottom: 90px;
      padding-bottom: 5.625rem;
      padding-bottom: 0; }
      @media (max-width: 745px) {
        .Template.Template--article .Template-sections {
          padding-bottom: 0; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Template.Template--article .Template-sections {
          padding-bottom: 0; } }
      @media (min-width: 2000px) {
        .Template.Template--article .Template-sections {
          max-width: 2000px;
          margin: 0 auto;
          padding-bottom: 125px; } }
    .Template.Template--article.Template--relatedNotSticky .Template-sections {
      padding-bottom: 0px;
      padding-bottom: 0rem; }
  .Template.Template--subFrontpage {
    padding-top: 104px;
    padding-top: 6.5rem; }
    @media (max-width: 745px) {
      .Template.Template--subFrontpage {
        padding-top: 0px;
        padding-top: 0rem; } }
  .Template.Template--podcastsSubFrontpage {
    padding-top: 104px;
    padding-top: 6.5rem; }
    @media (max-width: 745px) {
      .Template.Template--podcastsSubFrontpage {
        padding-top: 0px;
        padding-top: 0rem; } }
  .Template.Template--sectionFrontpage {
    padding-top: 104px;
    padding-top: 6.5rem; }
    @media (max-width: 745px) {
      .Template.Template--sectionFrontpage {
        padding-top: 0px;
        padding-top: 0rem; } }
  .Template.Template--fullWidthCenter {
    padding-top: 104px;
    padding-top: 6.5rem; }
    @media (max-width: 745px) {
      .Template.Template--fullWidthCenter {
        padding-top: 0px;
        padding-top: 0rem; } }
  .Template.Template--list {
    padding-top: 104px;
    padding-top: 6.5rem; }
    @media (max-width: 745px) {
      .Template.Template--list {
        padding-top: 0px;
        padding-top: 0rem; } }
  .Template.Template--article {
    padding-top: 80px;
    padding-top: 5rem; }
    @media (max-width: 745px) {
      .Template.Template--article {
        padding-top: 30px;
        padding-top: 1.875rem; } }
    .Template.Template--article.Template--purchase {
      padding-top: 50px;
      padding-top: 3.125rem; }
      @media (max-width: 745px) {
        .Template.Template--article.Template--purchase {
          padding-top: 30px;
          padding-top: 1.875rem; } }
  .Site--noTrending .Template {
    padding-top: 0px;
    padding-top: 0rem; }
  @media (min-width: 746px) {
    .Template.Template--list {
      max-width: 87%;
      margin: 0 auto; } }
  .Template.Template--list .Template-head {
    margin-bottom: 15pxx;
    margin-bottom: 0.9375rem;
    margin-left: calc(2.41rem/2);
    margin-right: calc(2.41rem/2); }
    @media (max-width: 745px) {
      .Template.Template--list .Template-head {
        padding-top: 0.9375rem;
        padding-bottom: 0.9375rem; }
        .Template.Template--list .Template-head h1 {
          display: inline-block; } }
  @media (max-width: 745px) {
    .Template.Template--list .Template-body {
      padding-left: calc(2.41rem/2);
      padding-right: calc(2.41rem/2); } }
  .Template.Template--list .headline {
    font-family: "Georgia", Times, Times New Roman, serif; }
  .Template.Template--list .Results .Result a {
    line-height: 1.43; }
  .Template.Template--list .Template-foot {
    width: 100%;
    padding-left: calc(3.75rem*1.5);
    padding-right: calc(3.75rem*1.5);
    padding-bottom: 72px;
    padding-bottom: 4.5rem;
    margin-top: 59px;
    margin-top: 3.6875rem; }
    .Template.Template--list .Template-foot > * {
      width: 100%; }
  @media (max-width: 745px) {
    .Template.Template--fullWidthCenter {
      padding-left: calc(2.41rem/2);
      padding-right: calc(2.41rem/2); } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Template.Template--fullWidthCenter {
      padding-left: calc(2rem/2);
      padding-right: calc(2rem/2); } }
  .Template.Template--fullWidthCenter .Template-head {
    padding-left: calc(3.75rem*1.5);
    padding-right: calc(3.75rem*1.5);
    margin-bottom: 30px;
    margin-bottom: 1.875rem; }
    @media (max-width: 745px) {
      .Template.Template--fullWidthCenter .Template-head {
        margin-bottom: 29px;
        margin-bottom: 1.8125rem;
        max-width: 100%;
        padding-top: 15px;
        padding-top: 0.9375rem;
        padding-bottom: 14px;
        padding-bottom: 0.875rem;
        padding-left: 0;
        padding-right: 0; } }
    @media (min-width: 2000px) {
      .Template.Template--fullWidthCenter .Template-head {
        max-width: 1832px;
        position: relative;
        margin: 0 auto;
        margin-bottom: 41.6666666667px; }
        .Template.Template--fullWidthCenter .Template-head:before, .Template.Template--fullWidthCenter .Template-head:after {
          content: '';
          display: block;
          position: absolute;
          height: 6px;
          width: 1.875rem;
          bottom: -3px;
          left: 0;
          background: #F8F8F8;
          z-index: 2; }
          .Site--dark .Template.Template--fullWidthCenter .Template-head:before, .Site--dark .Template.Template--fullWidthCenter .Template-head:after {
            background-color: #070707; }
        .Template.Template--fullWidthCenter .Template-head:after {
          right: 0;
          left: auto; } }
  .Template.Template--fullWidthCenter .Template-body {
    padding-bottom: 32px;
    padding-bottom: 2rem; }
    @media (min-width: 2000px) {
      .Template.Template--fullWidthCenter .Template-body {
        max-width: 1832px;
        margin: 0 auto;
        padding-bottom: 44.4444444444px; } }
  .Template.Template--newsletter .Template-head {
    margin-bottom: 78px;
    margin-bottom: 4.875rem; }
    @media (max-width: 745px) {
      .Template.Template--newsletter .Template-head {
        margin-bottom: 46px;
        margin-bottom: 2.875rem; } }
  .Template.Template--404 {
    height: 73.8vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start; }
    @media (max-width: 745px) {
      .Template.Template--404 {
        height: 56.6vh; } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Template.Template--404 {
        height: 53vh; } }
    .Template.Template--404 .Template-body {
      width: 55%;
      margin-top: 115px;
      margin-top: 7.1875rem; }
      @media (max-width: 745px) {
        .Template.Template--404 .Template-body {
          width: 80%;
          margin-top: 80px;
          margin-top: 5rem; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Template.Template--404 .Template-body {
          width: 80%;
          margin-top: 115px;
          margin-top: 7.1875rem; } }
  @media (max-width: 745px) {
    .Template {
      padding-top: 0; } }
  .Template .Template-padding {
    padding-left: calc(3.75rem*1.5);
    padding-right: calc(3.75rem*1.5); }
    @media (max-width: 745px) {
      .Template .Template-padding {
        padding-left: 0;
        padding-right: 0; } }
    @media (min-width: 746px) and (max-width: 1023px) {
      .Template .Template-padding {
        padding-left: calc(2rem*1.5);
        padding-right: calc(2rem*1.5); } }
  .Template .Template-sections {
    position: relative;
    width: 100%;
    /*
        padding-left: calc(3.75rem*1.5);
        padding-right: calc(3.75rem*1.5);        

        @include respond-to(mobile) {
            padding-left: 0;
            padding-right: 0;
        }

        @include respond-to(tablet) {
            padding-left: calc(2rem*1.5);
            padding-right: calc(2rem*1.5);
        }
*/ }
    .Template .Template-sections .Template-section {
      display: inline-block;
      vertical-align: top; }
      .Template .Template-sections .Template-section.Template-section--n1 {
        width: 100%;
        /*width: calc(100% - 300px);
                padding-right: $base-gutter;*/
        /*overflow-x: hidden;      MOVED TO TEMPLATE    */ }
        @media (max-width: 745px) {
          .Template .Template-sections .Template-section.Template-section--n1 {
            width: 100%;
            padding-right: 0; } }
        @media (min-width: 746px) and (max-width: 1023px) {
          .Template .Template-sections .Template-section.Template-section--n1 {
            width: 100%;
            padding-right: 0; } }
      .Template .Template-sections .Template-section.Template-section--n2 {
        display: none;
        width: 300px; }
        @media (max-width: 745px) {
          .Template .Template-sections .Template-section.Template-section--n2 {
            display: none; } }
        @media (min-width: 746px) and (max-width: 1023px) {
          .Template .Template-sections .Template-section.Template-section--n2 {
            display: none; } }
      .Template .Template-sections .Template-section.Template-section--sticky {
        position: sticky;
        position: -webkit-sticky;
        height: 100%;
        top: 186px;
        top: 11.625rem;
        margin-bottom: 30px;
        margin-bottom: 1.875rem;
        align-self: flex-start;
        transform: translateY(3px);
        transition: top 700ms cubic-bezier(0.19, 1, 0.22, 1);
        -webkit-backface-visibility: hidden;
        transform: translate3d(0, 0, 0); }
        .Site--headActive.Site--minTrending .Template .Template-sections .Template-section.Template-section--sticky {
          top: 96px;
          top: 6rem; }
        @media (max-width: 745px) {
          .Template .Template-sections .Template-section.Template-section--sticky {
            position: static; } }
        .Template .Template-sections .Template-section.Template-section--sticky:before, .Template .Template-sections .Template-section.Template-section--sticky:after {
          content: '';
          display: table; }

.Template-purchase-top {
  position: relative;
  z-index: 1;
  background: #333333;
  width: 100%;
  padding-left: calc(3.75rem*1.5);
  padding-right: calc(3.75rem*1.5);
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  margin-top: 104px;
  margin-top: 6.5rem;
  font-size: 0; }
  @media (max-width: 745px) {
    .Template-purchase-top {
      padding-left: calc(2.41rem/2);
      padding-right: calc(2.41rem/2);
      padding-top: 15px;
      padding-top: 0.9375rem;
      padding-bottom: 15px;
      padding-bottom: 0.9375rem;
      margin-top: 0; } }
  .Template-purchase-top .Template-purchase-top-sections {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1; }
    @media (min-width: 2000px) {
      .Template-purchase-top .Template-purchase-top-sections {
        max-width: 1832px;
        margin: 0 auto;
        /*padding-left: 1.875rem;
            padding-right: 1.875rem;*/ } }
    .Template-purchase-top .Template-purchase-top-sections .Template-purchase-top-logo {
      width: 100px;
      width: 6.25rem;
      height: auto;
      object-fit: contain; }
      @media (max-width: 745px) {
        .Template-purchase-top .Template-purchase-top-sections .Template-purchase-top-logo {
          width: 70px;
          height: auto; } }
    .Template-purchase-top .Template-purchase-top-sections span {
      color: white;
      text-transform: none;
      line-height: 1;
      margin-left: 10px;
      margin-left: 0.625rem; }
      .Site--dark .Template-purchase-top .Template-purchase-top-sections span {
        color: black; }
      @media (max-width: 745px) {
        .Template-purchase-top .Template-purchase-top-sections span {
          font-size: 8px; } }
    .Template-purchase-top .Template-purchase-top-sections .Template-purchase-top-section--n1 a, .Template-purchase-top .Template-purchase-top-sections .Template-purchase-top-section--n1 span {
      vertical-align: bottom; }

.Article .Article-header {
  z-index: 1;
  position: relative; }
  .Article .Article-header .Article-rating {
    text-align: center;
    font-size: 0; }
    .Template--article-noHeroImage .Article .Article-header .Article-rating {
      margin-top: 37px;
      margin-top: 2.3125rem; }
      @media (max-width: 745px) {
        .Template--article-noHeroImage .Article .Article-header .Article-rating {
          margin-top: 0; } }

.Article .Article-headline {
  margin-top: 38px;
  margin-top: 2.375rem;
  margin-bottom: 37px;
  margin-bottom: 2.3125rem; }
  .Template--article-noHeroImage .Article .Article-headline {
    margin-bottom: 0; }
  @media (min-width: 746px) {
    .Article .Article-headline {
      max-width: 76.4%;
      margin-left: auto;
      margin-right: auto; } }
  @media (min-width: 2000px) {
    .Article .Article-headline {
      max-width: 1399.648px;
      margin-left: auto;
      margin-right: auto; } }
  .Article .Article-headline h1 {
    margin: 0 auto;
    margin-top: 10px;
    margin-top: 0.625rem;
    margin-bottom: 25px;
    margin-bottom: 1.5625rem;
    width: 100%;
    min-height: auto; }
    .Template--article-noHeroImage .Article .Article-headline h1 {
      margin-bottom: 0; }
      @media (max-width: 745px) {
        .Template--article-noHeroImage .Article .Article-headline h1 {
          margin-bottom: 23px;
          margin-bottom: 1.4375rem; } }
  @media (max-width: 745px) {
    .Article .Article-headline {
      margin-top: 19px;
      margin-top: 1.1875rem;
      margin-left: 20px;
      margin-left: 1.25rem;
      margin-right: 20px;
      margin-right: 1.25rem;
      margin-bottom: 0; } }

.Article .Article-appetizer {
  text-align: center;
  width: 100%;
  max-width: 665px;
  margin: 0 auto;
  margin-bottom: 52px;
  margin-bottom: 3.25rem;
  font-family: "Georgia", Times, Times New Roman, serif;
  font-size: 19px; }
  @media (max-width: 745px) {
    .Article .Article-appetizer {
      font-size: 19px;
      line-height: 1.4;
      padding-left: 20px;
      padding-left: 1.25rem;
      padding-right: 20px;
      padding-right: 1.25rem;
      margin-bottom: 30px;
      margin-bottom: 1.875rem;
      max-width: 100%; } }
  @media (max-width: 376px) {
    .Article .Article-appetizer {
      font-size: 19px; } }
  @media (max-width: 321px) {
    .Article .Article-appetizer {
      font-size: 16px; } }
  @media (min-width: 1400px) {
    .Article .Article-appetizer {
      font-size: 25px;
      line-height: 1.4;
      max-width: 875px; } }
  @media (min-width: 1575px) {
    .Article .Article-appetizer {
      max-width: 980px;
      font-size: 25px;
      line-height: 1.4; } }
  .Template--article-noHeroImage .Article .Article-appetizer {
    margin-top: 37px;
    margin-top: 2.3125rem; }
    @media (max-width: 745px) {
      .Template--article-noHeroImage .Article .Article-appetizer {
        margin-top: 25px;
        margin-top: 1.5625rem; } }

.Article .Article-byline {
  line-height: 1.18;
  width: 100%;
  text-align: center; }
  @media (max-width: 745px) {
    .Article .Article-byline {
      font-size: 11px;
      font-size: 0.6875rem; }
      .Article .Article-byline div {
        display: block; }
        .Article .Article-byline div:last-child {
          margin-left: 4px;
          margin-left: 0.25rem; } }
  .Article .Article-byline .fn {
    padding-bottom: 2px;
    padding-bottom: 0.125rem;
    border-bottom: 1px solid black; }
    .Site--dark .Article .Article-byline .fn {
      border-bottom: 1px solid white; }

@media (min-width: 2000px) {
  .Article .Article-heroImage {
    max-width: 2000px;
    margin: 0 auto;
    padding-left: calc(3.75rem*1.5);
    padding-right: calc(3.75rem*1.5); } }

.Article .Article-heroImage img {
  object-fit: contain;
  width: 100%;
  height: auto; }

.Article .Article-imageinfo {
  display: flex;
  align-items: center;
  margin-top: 17px;
  margin-top: 1.0625rem;
  color: #ABABAB;
  width: 60%; }
  .Site--dark .Article .Article-imageinfo {
    color: #cbcccc; }
  .Site--purchase .Article .Article-imageinfo {
    color: #333333; }
    .Site--dark .Site--purchase .Article .Article-imageinfo {
      color: #cbcccc; }
  @media (max-width: 745px) {
    .Article .Article-imageinfo {
      font-size: 11px;
      font-size: 0.6875rem;
      padding-right: 20px;
      padding-right: 1.25rem;
      padding-left: 20px;
      padding-left: 1.25rem;
      margin-top: 0.9rem;
      align-items: flex-start;
      width: 100%; } }
  @media (max-width: 745px) {
    .Article .Article-imageinfo div {
      font-size: 10px;
      font-size: 0.625rem;
      display: inline-block;
      width: 50%; } }
  .Article .Article-imageinfo .left {
    color: #ABABAB;
    width: 60%; }
    .Site--dark .Article .Article-imageinfo .left {
      color: #cbcccc; }
  .Article .Article-imageinfo .right {
    margin-left: auto;
    width: 40%;
    text-align: right; }

.Article .Article-description {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 80px auto;
  z-index: 1;
  position: relative;
  margin-top: 65px;
  margin-top: 4.0625rem;
  margin-bottom: 65px;
  margin-bottom: 4.0625rem; }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Article .Article-description {
      margin: 60px auto; } }
  @media (max-width: 745px) {
    .Article .Article-description {
      margin: 25px auto; } }
  @media (max-width: 745px) {
    .Article .Article-description {
      margin-top: 25px;
      margin-top: 1.5625rem;
      margin-bottom: 35px;
      margin-bottom: 2.1875rem; } }
  @media (min-width: 746px) {
    .Article .Article-description {
      width: 85%; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .Article .Article-description {
      margin-top: 60px;
      margin-top: 3.75rem;
      margin-bottom: 65px;
      margin-bottom: 4.0625rem; } }
  @media (min-width: 2000px) {
    .Article .Article-description {
      margin-top: 90.2777777778px;
      margin-bottom: 180.555555556px; } }
  .Template--relatedNotSticky .Article .Article-description {
    /*@include rem("margin-bottom",160px);
            @include respond-to(mobile){
							@include rem("margin-bottom",172px);
						}*/ }
  .Template--article-noHeroImage .Article .Article-description {
    margin-top: 0; }
  .Article .Article-description > * {
    width: 100%;
    display: block; }
  .Article .Article-description .twitter-tweet,
  .Article .Article-description .instagram-media {
    margin: 0 auto !important;
    opacity: 0;
    transition: opacity 400ms ease-in;
    margin-top: 3.5vw !important;
    margin-bottom: 3.5vw !important; }
    .Article .Article-description .twitter-tweet.instagram-media-rendered, .Article .Article-description .twitter-tweet.twitter-tweet-rendered,
    .Article .Article-description .instagram-media.instagram-media-rendered,
    .Article .Article-description .instagram-media.twitter-tweet-rendered {
      opacity: 1; }
  .Article .Article-description .instagram-media iframe,
  .Article .Article-description .Embed--instagram iframe {
    min-height: 150px; }
  .Article .Article-description .fb-post span {
    text-align: center; }

.eksterncontainer-fullsize {
  position: relative;
  width: 100%; }
  @media (max-width: 745px) {
    .eksterncontainer-fullsize {
      height: auto; } }
  @media (max-width: 321px) {
    .eksterncontainer-fullsize {
      padding: 0; } }
  .eksterncontainer-fullsize.top_small_ekstern {
    padding-top: 0; }

#top_large_ekstern_new_container {
  height: 80vh; }

@media (min-width: 746px) {
  .banner_mobile {
    display: none; } }

@media (max-width: 745px) {
  .banner_desktop {
    display: none; } }

.in-article-front {
  max-width: 48%;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  margin-top: 3rem;
  margin-bottom: 21px;
  margin-bottom: 1.3125rem;
  border-bottom: 1px solid #BCBCBC; }
  .Site--dark .in-article-front {
    border-bottom: 1px solid #F8F8F8; }
  .Site--purchase .in-article-front {
    border-bottom: 1px solid rgba(51, 51, 51, 0.3); }
  @media (max-width: 745px) {
    .in-article-front {
      max-width: 85%; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .in-article-front {
      max-width: 62%; } }
  .in-article-front .in-article-bordertext {
    color: #BCBCBC;
    padding-bottom: 9px;
    padding-bottom: 0.5625rem; }
    .Site--dark .in-article-front .in-article-bordertext {
      color: #F8F8F8; }
    .Site--purchase .in-article-front .in-article-bordertext {
      color: #333333;
      opacity: 0.5; }
      .Site--dark .Site--purchase .in-article-front .in-article-bordertext {
        color: #cbcccc; }
    @media (max-width: 745px) {
      .in-article-front .in-article-bordertext {
        font-size: 11px;
        font-size: 0.6875rem; } }
  .in-article-front.special_long_text {
    max-width: 90%;
    text-align: center;
    border: 0;
    margin-bottom: 0.4rem; }
    .in-article-front.special_long_text .in-article-bordertext {
      color: #333333; }
      .Site--dark .in-article-front.special_long_text .in-article-bordertext {
        color: #cbcccc; }
    @media (max-width: 745px) {
      .in-article-front.special_long_text {
        max-width: 80%; } }
    @media (max-width: 321px) {
      .in-article-front.special_long_text {
        max-width: 90%; } }
  .in-article-front.type_section {
    margin-top: 150px;
    margin-top: 9.375rem; }
    @media (max-width: 745px) {
      .in-article-front.type_section {
        margin-top: 80px;
        margin-top: 5rem; } }

.in-article-back {
  max-width: 48%;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #BCBCBC;
  margin-bottom: 48px;
  margin-bottom: 3rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem; }
  .Site--dark .in-article-back {
    border-bottom: 1px solid #F8F8F8; }
  .Site--purchase .in-article-back {
    border-bottom: 1px solid #333333;
    opacity: 0.3; }
    .Site--dark .Site--purchase .in-article-back {
      border-bottom: 1px solid #cbcccc; }
  @media (max-width: 745px) {
    .in-article-back {
      max-width: 85%; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .in-article-back {
      max-width: 62%; } }
  .in-article-back.end-of-article {
    border-bottom: 0;
    margin-bottom: 0px;
    margin-bottom: 0rem; }
    .Template--relatedNotSticky .in-article-back.end-of-article {
      margin-bottom: 30px;
      margin-bottom: 1.875rem; }
  .in-article-back.special_long_text {
    max-width: 90%;
    border: 0; }
    @media (max-width: 745px) {
      .in-article-back.special_long_text {
        max-width: 80%; } }
    @media (max-width: 321px) {
      .in-article-back.special_long_text {
        max-width: 90%; } }
  .Campaign--inArticle .in-article-back {
    max-width: 100%; }

.Campaign--inArticle .concept_inarticle_container.in-article-size, .Campaign--inArticle .in-article-size {
  margin-left: auto;
  margin-right: auto;
  max-width: 488px; }
  @media (max-width: 745px) {
    .Campaign--inArticle .concept_inarticle_container.in-article-size, .Campaign--inArticle .in-article-size {
      max-width: 100%; } }
  @media (min-width: 1400px) {
    .Campaign--inArticle .concept_inarticle_container.in-article-size, .Campaign--inArticle .in-article-size {
      max-width: 560px; } }
  @media (min-width: 1575px) {
    .Campaign--inArticle .concept_inarticle_container.in-article-size, .Campaign--inArticle .in-article-size {
      max-width: 600px; } }
  .midscroll .Campaign--inArticle .concept_inarticle_container.in-article-size, .midscroll .Campaign--inArticle .in-article-size {
    margin-left: auto;
    margin-right: auto;
    max-width: 100vw; }

.midscroll .concept_inarticle_container.in-article-size .svads-interscroll-window, .midscroll .in-article-size .svads-interscroll-window {
  margin-top: -1px; }

.concept_inarticle_container {
  max-width: 48%;
  margin: 0 auto;
  position: relative; }
  @media (max-width: 745px) {
    .concept_inarticle_container {
      max-width: 85%; } }
  @media (min-width: 746px) and (max-width: 1023px) {
    .concept_inarticle_container {
      max-width: 62%; } }
  .concept_inarticle_container.special_long_text {
    max-width: 90%; }
    @media (max-width: 745px) {
      .concept_inarticle_container.special_long_text {
        max-width: 80%; } }
    @media (max-width: 321px) {
      .concept_inarticle_container.special_long_text {
        max-width: 90%; } }
  .concept_inarticle_container .adnm-interscroll-topbar, .concept_inarticle_container .adnm-interscroll-bottombar {
    display: none !important; }

.InArticle--EditorialModule {
  display: block; }
  .InArticle--EditorialModule .specialcode {
    max-width: 100%;
    margin-top: 15vw;
    margin-bottom: 9vw; }
  .InArticle--EditorialModule h3 {
    margin-bottom: unset;
    padding: unset; }
  .InArticle--EditorialModule figure {
    margin: unset; }
  .InArticle--EditorialModule a {
    border-bottom: unset; }
  .InArticle--EditorialModule .Slider-firstMobileItem {
    margin-bottom: unset; }
  .InArticle--EditorialModule .Module-head .Module-partner img {
    margin: unset;
    padding: unset; }

.midscroll #cncpt-inarticle_dsk_last_front,
.midscroll #cncpt-inarticle_dsk_2_back {
  display: none; }

.midscroll.midscroll_belowarticle.midscroll_dsk .Campaign--inArticle {
  margin-top: -30px;
  margin-top: -1.875rem; }

.midscroll.midscroll_belowarticle.midscroll_mob .Campaign--inArticle {
  margin-top: 0;
  margin-top: 0rem; }

#sva-midscroll-mob_2.midscroll_frontpage {
  margin-top: 40;
  margin-top: 2.5rem; }

#sva-inarticle_dsk_last_container .in-article-back {
  margin-bottom: 0;
  border-bottom: 0; }

html.piwikHeatmap .top_large_ekstern_new_container {
  height: 651px; }

html.piwikHeatmap .Module--partner-article-spots {
  height: 991px; }

.Campaign.Campaign--inArticle figure.Campaign-image {
  padding-top: 52.303%;
  margin: 0; }

.Campaign.Campaign--inArticle .videoplayer {
  position: relative; }
  .Campaign.Campaign--inArticle .videoplayer .video-js {
    background-color: transparent; }
  .Campaign.Campaign--inArticle .videoplayer .controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .Campaign.Campaign--inArticle .videoplayer .controls img {
      margin: 0;
      padding: 0;
      position: absolute;
      z-index: 10;
      bottom: 8px;
      width: 24px;
      height: 24px;
      display: block; }
      .Campaign.Campaign--inArticle .videoplayer .controls img.play {
        right: 8px; }
      .Campaign.Campaign--inArticle .videoplayer .controls img.volume {
        left: 8px; }

.Campaign.Campaign--inArticle .Campaign-info {
  padding-top: 1.2rem; }
  .Campaign.Campaign--inArticle .Campaign-info .Campaign-title {
    font-family: "GT America Bold", sans-serif;
    line-height: 1.2;
    display: none; }
    .Campaign.Campaign--inArticle .Campaign-info .Campaign-title.old {
      display: block; }
    @media (max-width: 745px) {
      .Campaign.Campaign--inArticle .Campaign-info .Campaign-title.mobile {
        display: block; } }
    @media (min-width: 746px) {
      .Campaign.Campaign--inArticle .Campaign-info .Campaign-title.desktop {
        display: block; } }
  .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer {
    display: none;
    font-family: Helvetica, Arial, sans-serif;
    padding-top: 0.4rem;
    font-size: 14px;
    line-height: 1.3; }
    @media (min-width: 746px) {
      .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer.desktop {
        display: block; } }
    @media (max-width: 745px) {
      .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer {
        font-size: 15px; } }
    @media (max-width: 321px) {
      .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer {
        font-size: 17px; } }
    @media (max-width: 376px) {
      .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer {
        font-size: 15px; } }
    @media (min-width: 1400px) {
      .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer {
        font-size: 16px; } }
    @media (min-width: 1575px) {
      .Campaign.Campaign--inArticle .Campaign-info .Campaign-appetizer {
        font-size: 18px; } }

.Campaign.Campaign--nativeLink {
  /* Temporary until we change to Adnuntius. Remove this, and the specific partner code in _Grid. */
  /* Temporary end */ }
  .Campaign.Campaign--nativeLink .Module-group--triple .Spot.Spot--medium {
    padding: 0;
    border: 0;
    margin: 0; }
  @media (max-width: 745px) {
    .Campaign.Campaign--nativeLink .Module-group--triple .Spot.Spot--medium .Spot-title {
      margin-top: 3px;
      margin-top: 0.1875rem; }
    .Campaign.Campaign--nativeLink .Campaign-imageContainer-square {
      display: block !important; } }
  @media (min-width: 746px) {
    .Campaign.Campaign--nativeLink .Module-group--triple .Spot.Spot--medium .Spot-title {
      margin-top: 17px;
      margin-top: 1.0625rem;
      margin-bottom: 12px;
      margin-bottom: 0.75rem; }
    .Campaign.Campaign--nativeLink .Campaign-imageContainer-wide {
      display: block !important; }
      .Campaign.Campaign--nativeLink .Campaign-imageContainer-wide figure.Campaign-image {
        padding-top: 52.303%; } }
  .Campaign.Campaign--nativeLink .Spot-info .Spot-title {
    line-height: 1.3; }
  .Campaign.Campaign--nativeLink .Campaign-company {
    color: #ababab;
    padding-top: 5px;
    padding-top: 0.3125rem; }
    @media (max-width: 745px) {
      .Campaign.Campaign--nativeLink .Campaign-company {
        padding-top: 10px;
        padding-top: 0.625rem; } }
    .Site--dark .Campaign.Campaign--nativeLink .Campaign-company {
      color: #666666; }

.Embed {
  margin: 0 auto;
  width: auto;
  margin-top: 70px;
  margin-top: 4.8611111111vw;
  margin-bottom: 80px;
  margin-bottom: 5.5555555556vw; }
  @media (max-width: 745px) {
    .Embed {
      margin-top: 100px;
      margin-top: 6.9444444444vw;
      margin-bottom: 100px;
      margin-bottom: 6.9444444444vw; } }
  .Embed .Embed-inner {
    width: auto; }
    @media (max-width: 745px) {
      .Embed .Embed-inner {
        width: 100%; } }
    .Embed .Embed-inner.Embed-inner-GDPR {
      display: none; }
  .Embed .Embed-GDPR {
    background: #333333;
    padding: 3.9vw;
    color: white;
    margin: 0 auto; }
    .Site--dark .Embed .Embed-GDPR {
      background: #cbcccc; }
    .Site--dark .Embed .Embed-GDPR {
      color: black; }
    @media (max-width: 745px) {
      .Embed .Embed-GDPR {
        padding: 6.6vw;
        width: 100%; } }
    .Embed .Embed-GDPR span.line1 {
      display: block; }
    .Embed .Embed-GDPR span.line2 {
      display: block;
      margin-top: 1.5rem; }
    .Embed .Embed-GDPR.Remove {
      display: none; }
  @media (max-width: 745px) {
    .Embed {
      padding-left: calc(2.41rem/2);
      padding-right: calc(2.41rem/2);
      position: relative;
      width: 100% !important; }
      .Embed iframe {
        max-width: 100% !important;
        min-width: 100% !important; } }
  .Embed.Embed--video .Embed-inner {
    padding-top: 56.25%;
    width: 100%;
    position: relative; }
    .Embed.Embed--video .Embed-inner .Embed, .Embed.Embed--video .Embed-inner iframe {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
  .Embed.Embed--facebook iframe {
    display: block;
    margin: 0 auto; }
  @media (min-width: 746px) {
    .Embed.Embed--soundcloud iframe, .Embed.Embed--spotify iframe {
      margin: 0 auto;
      display: block; } }
  @media (max-width: 745px) {
    .Embed.Embed--soundcloud, .Embed.Embed--spotify {
      padding-left: calc(2.41rem);
      padding-right: calc(2.41rem); } }

body .qc-cmp2-container #qc-cmp2-ui .qc-cmp2-consent-info {
  padding: 40px 40px 0; }

body .qc-cmp2-container #qc-cmp2-ui .qc-cmp2-consent-info .qc-cmp2-publisher-logo-container {
  text-align: left; }
  body .qc-cmp2-container #qc-cmp2-ui .qc-cmp2-consent-info .qc-cmp2-publisher-logo-container h2 {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 20px; }
  body .qc-cmp2-container #qc-cmp2-ui .qc-cmp2-consent-info .qc-cmp2-publisher-logo-container .qc-cmp2-summary-info p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px; }

body .qc-cmp2-container #qc-cmp2-ui .qc-cmp2-consent-info .qc-cmp2-summary-info {
  padding-bottom: 0; }

body .qc-cmp2-container #qc-cmp2-ui .qc-cmp2-footer {
  box-shadow: none;
  border: none;
  padding: 15px 40px 20px; }
  body .qc-cmp2-container #qc-cmp2-ui .qc-cmp2-footer button {
    border-radius: 0;
    box-shadow: none;
    letter-spacing: 1px;
    font-weight: 600; }
  body .qc-cmp2-container #qc-cmp2-ui .qc-cmp2-footer.qc-cmp2-footer-overlay::before {
    top: -25px;
    height: 30px; }

@media (min-width: 480px) and (max-width: 850px) {
  body .qc-cmp2-container #qc-cmp2-ui {
    width: 86vw;
    height: 86vh;
    max-height: 86vh; } }

@media (min-width: 680px) and (max-width: 850px) {
  body .qc-cmp2-container #qc-cmp2-ui {
    grid-template-rows: auto 1fr;
    height: auto;
    max-height: none; } }

@media (max-width: 480px) {
  body .qc-cmp2-container #qc-cmp2-ui {
    width: 86%;
    height: 84%; }
    body .qc-cmp2-container #qc-cmp2-ui .qc-cmp2-consent-info {
      padding: 30px 20px 0; }
      body .qc-cmp2-container #qc-cmp2-ui .qc-cmp2-consent-info .qc-cmp2-publisher-logo-container button.qc-cmp2-home-button {
        top: -22px; }
      body .qc-cmp2-container #qc-cmp2-ui .qc-cmp2-consent-info .qc-cmp2-summary-info {
        max-height: 100%;
        height: unset; }
    body .qc-cmp2-container #qc-cmp2-ui .qc-cmp2-footer {
      padding: 10px 20px 10px; }
      body .qc-cmp2-container #qc-cmp2-ui .qc-cmp2-footer .qc-cmp2-footer-links button {
        font-weight: 400;
        letter-spacing: 0;
        text-transform: none;
        font-size: 11px; } }

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  height: 25px;
  height: 1.5625rem;
  width: 25px;
  width: 1.5625rem;
  border: 1px solid #C0C0C0;
  border-radius: 50%;
  transform: translateY(-50%); }
  .Newsletter-box .checkmark {
    transform: translateY(0);
    border: 1px solid white;
    height: 28px;
    height: 1.75rem;
    width: 28px;
    width: 1.75rem; }
    .Site--dark .Newsletter-box .checkmark {
      border: 1px solid black; }
  .Newsletter--yellow .checkmark {
    border: 1px solid #333333; }
    .Site--dark .Newsletter--yellow .checkmark {
      border: 1px solid #cbcccc; }
  @media (max-width: 745px) {
    .checkmark {
      height: 23px;
      height: 1.4375rem;
      width: 23px;
      width: 1.4375rem;
      top: 4px;
      transform: translateY(0%); } }

/* On mouse-over, add a grey background color */
input ~ .checkmark {
  background-color: transparent; }

/* When the checkbox is checked, add a blue background */
input:checked ~ .checkmark {
  background-color: transparent; }

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block; }

/* Style the checkmark/indicator */
.checkmark:after {
  left: 9px;
  left: 0.5625rem;
  top: 5px;
  top: 0.3125rem;
  width: 5px;
  width: 0.3125rem;
  height: 10px;
  height: 0.625rem;
  border: solid white;
  /*@include when-inside('.Site--dark') {
						    border: solid black;
						}*/
  border-width: 0 1px 1px 0;
  border-top: none;
  border-left: none;
  transform: rotate(45deg); }
  .Newsletter-box .checkmark:after {
    left: 10px;
    left: 0.625rem;
    top: 6px;
    top: 0.375rem; }
  .Newsletter--yellow .checkmark:after {
    border: solid #333333;
    border-width: 0 1px 1px 0;
    border-top: none;
    border-left: none; }

.Footer {
  position: relative; }
  .Footer .Footer-columns {
    justify-content: space-between;
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
    width: 100%;
    margin: 0;
    padding-left: calc(3.75rem);
    padding-right: calc(3.75rem); }
    @media (max-width: 745px) {
      .Footer .Footer-columns {
        padding-left: 0;
        padding-right: 0;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap-reverse;
        padding-bottom: 20px;
        padding-bottom: 1.25rem; } }
    @media (min-width: 2000px) {
      .Footer .Footer-columns {
        max-width: 1832px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0; } }
    .Footer .Footer-columns .Footer-column {
      margin-left: 1.875rem;
      margin-right: 1.875rem;
      width: calc( ( (100% - 12 * 3.75rem ) / 12 * 6 + 5 * 3.75rem )); }
      @media (max-width: 745px) {
        .Footer .Footer-columns .Footer-column {
          width: calc( ( (100% - 6 * 2.41rem ) / 6 * 6 + 5 * 2.41rem ));
          margin-left: 0.625rem;
          margin-right: 0.625rem; } }
      @media (min-width: 746px) and (max-width: 1023px) {
        .Footer .Footer-columns .Footer-column {
          margin-left: 1rem;
          margin-right: 1rem;
          width: calc( ( (100% - 12 * 2rem ) / 12 * 6 + 5 * 2rem )); } }
      .Footer .Footer-columns .Footer-column.Footer-column--last {
        text-align: right; }
        @media (max-width: 745px) {
          .Footer .Footer-columns .Footer-column.Footer-column--last {
            text-align: left;
            margin-bottom: 15px;
            margin-bottom: 0.9375rem; } }
      @media (max-width: 745px) {
        .Footer .Footer-columns .Footer-column {
          width: auto; } }
