@charset "UTF-8";
/*!
Theme Name: Madavor Child - JT
Description: Theme for JazzTimes
Theme URI: https://jazztimes.com/
Author: Stephen Simon Interactive
Author URI: http://stephensimon.com
Version: 1.0.0
Template: madavor
Text Domain: madavor

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/


This is for CSS specific to JazzTimes. If looking to modify styles that all
child themes share, go the 'madavor' theme stylsheet.
*/
/* ==========================================================================
   INUITCSS
   ========================================================================== */
/**
 * inuitcss, by @csswizardry
 *
 * github.com/inuitcss | inuitcss.com
 */
/**
 * CONTENTS
 *
 * SETTINGS
 * Config...............Project-level configuration and feature switches.
 * Core.................inuitcss’ core and setup settings.
 * Global...............Project-wide variables and settings.
 *
 * TOOLS
 * Font-size............A mixin which guarantees baseline-friendly line-heights.
 * Clearfix.............Micro clearfix mixin.
 * Hidden...............Mixin for hiding elements.
 * Sass MQ..............inuitcss’ default media query manager.
 *
 * GENERIC
 *
 * ELEMENTS
 * Page.................Set up our document’s default `font-size` and
 *                      `line-height`.
 * Headings.............Very minimal (i.e. only font-size information) for
 *                      headings 1 through 6.
 * Images...............Base image styles.
 * Links................Base link styles.
 * Tables...............Simple table styles.
 * Forms................Simple form styles.
 *
 * OBJECTS
 *
 * COMPONENTS
 * Buttons..............
 * Slider...............
 * Header...............
 * Primary-Navigation...
 * Search-Form..........
 * Breadcrumbs..........
 * Main.................
 * Secondary............
 * Related-Stories......
 * Footer...............
 * Dividers.............
 * Pagination...........
 * Icons................
 * Subscribe............
 * Share................
 * Listings.............
 * Events...............
 * New Jazz Now.........
 * Ads..................
 * NGG..................
 * Waypoints............Styling for sticky elements via the Waypoints plugin
 * Advertisements.......
 * Modal................
 * WooCommerce & VIP....
 *
 * UTILITIES
 * Headings.............Reassigning our heading styles to helper classes.
 * Helpers..............Various text styling helper classes
 */
/* ==========================================================================
   #PAGE
   ========================================================================== */
/**
 * Simple page-level setup.
 *
 * 1. Set the default `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.
 */
html {
  background-color: #f9f9fb;
  color: #000000;
  font-size: 1.0625em;
  /* [1] */
  line-height: 1.5;
  /* [1] */
  overflow-y: scroll;
  /* [2] */
  min-height: 100%;
  /* [3] */
  -webkit-font-smoothing: antialiased; }

body {
  font-family: "Roboto", Helvetica, Arial, sans-serif; }

/**
 * Remove underlines from links.
 */
a {
  text-decoration: none; }

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Simple default styles for headings 1 through 6. Anything more opinionated
 * than simple font-size changes should likely be applied via classes (see:
 * http://csswizardry.com/2016/02/managing-typography-on-large-apps/).
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "PT Serif", Georgia, serif; }
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a {
    color: inherit; }

h1 {
  font-size: 52px;
  font-size: 3.0588235294rem;
  line-height: 1.0961538462; }
  h1:not(.u-sans-serif) {
    letter-spacing: -2px; }

h2 {
  font-size: 33px;
  font-size: 1.9411764706rem;
  line-height: 1.1515151515; }
  h2:not(.u-sans-serif) {
    letter-spacing: -0.5px; }

h3 {
  font-size: 28px;
  font-size: 1.6470588235rem;
  line-height: 1.1071428571; }
  h3:not(.u-sans-serif) {
    letter-spacing: -0.5px; }

h4 {
  font-size: 23px;
  font-size: 1.3529411765rem;
  line-height: 1.2391304348; }
  h4:not(.u-sans-serif) {
    letter-spacing: -0.5px; }

h5 {
  font-size: 20px;
  font-size: 1.1764705882rem;
  line-height: 1.275; }
  h5:not(.u-sans-serif) {
    letter-spacing: -0.5px; }

h6 {
  font-size: 16px;
  font-size: 0.9411764706rem;
  line-height: 1.275; }
  h6:not(.u-sans-serif) {
    letter-spacing: -0.5px; }

/* ==========================================================================
   #IMAGES
   ========================================================================== */
/**
 * 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 {
  height: auto;
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */ }

/* ==========================================================================
   #LINKS
   ========================================================================== */
a {
  color: #4063e6;
  transition: color 0.15s; }
  a:hover {
    color: #4063e6; }
  a > svg {
    fill: #4063e6; }

a.u-secondary-link {
  color: #000000; }
  a.u-secondary-link:hover {
    color: #000000; }
  a.u-secondary-link > svg {
    fill: #000000; }

a.u-tertiary-link {
  color: #7e8d9e; }
  a.u-tertiary-link:hover {
    color: #2b2d4f; }
  a.u-tertiary-link > svg {
    fill: #7e8d9e; }

/* ==========================================================================
   #TABLES
   ========================================================================== */
/**
 * 1. Ensure tables fill up as much space as possible.
 */
table {
  width: 100%;
  /* [1] */ }

/* ==========================================================================
   #FORMS
   ========================================================================== */
label,
button,
input,
optgroup,
select,
textarea {
  font-family: "Roboto", Helvetica, Arial, sans-serif; }

input,
select,
textarea {
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 0;
  font-family: "Roboto", Helvetica, Arial, sans-serif; }
  input:focus,
  select:focus,
  textarea:focus {
    outline-color: #989898; }

select {
  background-color: #fff;
  -webkit-appearance: none;
  background-image: url(assets/images/dropdown.png);
  background-position: 95% 50%;
  background-repeat: no-repeat;
  padding: 7px 25px 7px 3px; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    select {
      background-image: url(assets/images/svg/dropdown.svg);
      background-size: 10px 14px; } }
/* ==========================================================================
   #BUTTONS
   ========================================================================== */
.c-btn,
input[type="submit"],
button {
  border: none; }
  .c-btn:focus,
  input[type="submit"]:focus,
  button:focus {
    outline: none; }
    .c-btn:focus svg,
    input[type="submit"]:focus svg,
    button:focus svg {
      opacity: 0.5; }

/**
 * This is an example component. Extend inuitcss by building your own components
 * that make up your UI. Component classes are prefixed with a `c-`.
 */
/**
 * 1. Allow us to style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Make buttons inherit font styles (often necessary when styling `input`s as
 *    buttons).
 * 4. Reset/normalize some styles.
 * 5. Force all button-styled elements to appear clickable.
 */
.c-btn,
input[type="submit"] {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font: inherit;
  /* [3] */
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  text-align: center;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  padding: 10px 24px;
  transition: all 300ms ease-in-out;
  border-radius: 0; }

.c-btn--block {
  display: block;
  width: 100%; }

/* Style variants
   ========================================================================== */
.c-btn--primary,
input[type="submit"] {
  background-color: #4063e6;
  text-transform: uppercase; }
  .c-btn--primary, .c-btn--primary:hover, .c-btn--primary:active, .c-btn--primary:focus,
  input[type="submit"],
  input[type="submit"]:hover,
  input[type="submit"]:active,
  input[type="submit"]:focus {
    color: #fff;
    text-decoration: none;
    /* [4] */ }
  .c-btn--primary:hover, .c-btn--primary:focus,
  input[type="submit"]:hover,
  input[type="submit"]:focus {
    background-color: #000000; }

.c-btn--secondary {
  background-color: #fff;
  border: 1px solid #4063e6;
  text-transform: uppercase; }
  .c-btn--secondary, .c-btn--secondary:hover, .c-btn--secondary:active, .c-btn--secondary:focus {
    color: #4063e6;
    text-decoration: none; }
  .c-btn--secondary:hover, .c-btn--secondary:focus {
    background-color: #4063e6;
    color: #ffffff; }

.c-btn--tertiary {
  background-color: #f9f9fb;
  border: 1px solid #c0c0c0;
  border-radius: 100px;
  color: #000000;
  text-transform: uppercase; }
  .c-btn--tertiary, .c-btn--tertiary:hover, .c-btn--tertiary:active, .c-btn--tertiary:focus {
    color: #000;
    text-decoration: none; }
  .c-btn--tertiary:hover, .c-btn--tertiary:focus {
    border-color: #000; }

/* Pill variant
   ========================================================================== */
.c-btn--pill {
  border-radius: 24px; }

/* Size variants
   ========================================================================== */
.c-btn--small {
  font-size: 13px;
  font-size: 0.7647058824rem;
  line-height: 1.8461538462;
  padding: 4px 24px; }
  .c-btn--small.c-btn--tertiary {
    font-size: 14px;
    font-size: 0.8235294118rem;
    line-height: 1.7142857143; }

.c-btn--med {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.7142857143;
  padding: 6px 24px; }
  .c-btn--med.c-btn--tertiary {
    font-size: 16px;
    font-size: 0.9411764706rem;
    line-height: 1.5; }

.c-btn--large {
  padding: 24px 48px; }

/* Ghost buttons
   ========================================================================== */
/**
 * Ghost buttons have see-through backgrounds and are bordered.
 */
.c-btn--ghost {
  border: 2px solid currentColor;
  padding: 10px 22px; }
  .c-btn--ghost, .c-btn--ghost:hover, .c-btn--ghost:active, .c-btn--ghost:focus {
    background: none; }
  .c-btn--ghost.c-btn--small {
    padding: 4px 10px; }
  .c-btn--ghost.c-btn--large {
    padding: 22px 46px; }
  .c-btn--ghost.c-btn--primary {
    color: #4a8ec2; }
    .c-btn--ghost.c-btn--primary:hover, .c-btn--ghost.c-btn--primary:focus {
      color: #3774a2; }
  .c-btn--ghost.c-btn--secondary {
    color: #2f4054; }
    .c-btn--ghost.c-btn--secondary:hover, .c-btn--ghost.c-btn--secondary:focus {
      color: #1d2733; }
  .c-btn--ghost.c-btn--tertiary {
    color: #fff; }
    .c-btn--ghost.c-btn--tertiary:hover, .c-btn--ghost.c-btn--tertiary:focus {
      color: #fff; }

/* ==========================================================================
   #SLIDER
   ========================================================================== */
/**
 * Slick Slider
 */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("assets/images/ajax-loader.gif") center center no-repeat; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  display: block;
  width: 27px;
  height: 50px;
  padding: 0;
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
  cursor: pointer;
  color: #fff;
  border: none;
  outline: none;
  background: transparent;
  -webkit-appearance: none !important;
  z-index: 10; }
  @media (min-width: 46.25em) {
    .slick-prev,
    .slick-next {
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); } }
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: #fff;
  outline: none;
  background: transparent; }

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1; }

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25; }

.slick-arrow .slick-prev__icon,
.slick-arrow .slick-next__icon {
  fill: #fff;
  height: 50px;
  width: 27px; }

.slick-prev {
  left: 25px; }

[dir='rtl'] .slick-prev {
  right: 25px;
  left: auto; }

.slick-next {
  right: 25px; }

[dir='rtl'] .slick-next {
  right: auto;
  left: 25px; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center; }

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer; }

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent; }

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none; }

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1; }

.slick-dots li button:before {
  font-size: 60px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  color: #bcbcbd;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-dots li.slick-active button:before {
  color: black; }

.slider__item {
  background-color: #cacacc;
  position: relative;
  text-align: center; }

.slider__item--ad {
  height: 300px; }
  @media (min-width: 46.25em) {
    .slider__item--ad {
      height: 400px; } }
  @media (min-width: 61.25em) {
    .slider__item--ad {
      height: 610px; } }
  .slider__item--ad > div {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }

.slide__content {
  background-color: #000;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 1.5em 2em;
  right: 0;
  text-align: left; }
  @media (min-width: 46.25em) {
    .slide__content {
      background-color: rgba(0, 0, 0, 0.55);
      position: absolute; } }
/**
 * NextGEN Gallery
 */
.nggc-imagebrowser {
  min-width: 300px; }

.nggc-container {
  max-width: 100%;
  min-width: 300px;
  padding: 0px;
  z-index: 1; }

.nggc-background {
  background: #CCCCCC; }

@media (min-width: 740px) {
  .nggc-image {
    position: relative;
    max-width: 800px;
    margin: 0 auto; }
  .nggc-image-ad {
    min-height: 600px; }
  .nggc-ad-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    margin: -15% 0 0 -25%; }
  .nggc-back {
    margin: 0px; }
  .nggc-next {
    margin: 0px;
    z-index: 999; } }

@media (min-width: 660px) and (max-width: 739px) {
  .nggc-image {
    position: relative;
    max-width: 600px;
    margin: 0 auto; }
  .nggc-image-ad {
    min-height: 400px; }
  .nggc-ad-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    margin: -15% 0 0 -25%; }
  .nggc-back {
    margin-top: -25%; }
  .nggc-next {
    margin-top: -25%;
    z-index: 999; } }

@media (min-width: 501px) and (max-width: 659px) {
  .nggc-image {
    position: relative;
    max-width: 500px;
    margin: 0 auto; }
  .nggc-image-ad {
    min-height: 400px; }
  .nggc-ad-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    margin: -15% 0 0 -25%; }
  .nggc-back {
    margin: 0px; }
  .nggc-next {
    margin: 0px;
    z-index: 999; } }

@media (min-width: 300px) and (max-width: 500px) {
  .nggc-image {
    position: relative;
    max-width: 300px;
    min-width: 300px;
    margin: 0 auto; }
  .nggc-image-ad {
    min-width: 300px;
    min-height: 250px; }
  .nggc-ad-wrapper {
    min-width: 300px; }
  .nggc-back {
    margin: 0px; }
  .nggc-next {
    margin: 0px;
    z-index: 999; } }

.nggc-anchor-spacing {
  height: 50px; }

.nggc-container a {
  display: block !important;
  font-size: 0;
  margin: 0px;
  text-align: center; }

.nggc-container-ad {
  text-align: center; }

.nggc-back {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 32px;
  height: 58px;
  padding: 0px;
  z-index: 3; }

.nggc-next {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 32px;
  height: 58px;
  padding: 0px;
  z-index: 999; }

/* ==========================================================================
   #HEADER
   ========================================================================== */
.site-header {
  background: #000 url(assets/images/header-bg.jpg) center top no-repeat;
  background-size: cover;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  position: relative; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .site-header {
      background-image: url(assets/images/header-bg@2x.jpg); } }
  .site-header ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff; }
  .site-header ::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff; }
  .site-header :-ms-input-placeholder {
    /* IE 10+ */
    color: #fff; }
  .site-header :-moz-placeholder {
    /* Firefox 18- */
    color: #fff; }

.site-header--overlay {
  z-index: 2; }
  .site-header--overlay .site-header__top {
    background-color: #000;
    color: #fff; }

.site-header__top {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 12px; }
  @media (min-width: 61.25em) {
    .site-header__top {
      flex-wrap: nowrap;
      padding-bottom: 0; } }
.site-branding {
  width: 100%; }
  @media (min-width: 61.25em) {
    .site-branding {
      order: 2; } }
.site-header__social-search {
  order: 2;
  position: relative;
  text-align: center; }
  @media (min-width: 61.25em) {
    .site-header__social-search {
      order: 3;
      text-align: right; } }
.site-header__sign-in-subscribe {
  display: flex;
  order: 3;
  text-align: center; }
  @media (min-width: 61.25em) {
    .site-header__sign-in-subscribe {
      order: 1;
      text-align: left; } }
.site-title {
  margin: 0 auto;
  max-width: 325px;
  padding: 10px; }
  @media (min-width: 61.25em) {
    .site-title {
      margin: 0;
      max-width: none;
      padding: 35px 0;
      width: auto; } }
  .site-title svg {
    fill: #fff;
    max-width: 100%; }

.site-header .menu-social-navigation-container {
  display: inline-block; }
  .site-header .menu-social-navigation-container li {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle; }
  .site-header .menu-social-navigation-container a {
    display: block;
    color: #fff;
    height: 28px;
    padding: 0 5px;
    text-align: center;
    width: 22px; }
  .site-header .menu-social-navigation-container a:hover {
    color: #505050; }
    .site-header .menu-social-navigation-container a:hover svg {
      fill: #505050; }

.site-header--overlay .menu-social-navigation-container .menu a {
  color: #fff; }

.site-header--overlay .menu-social-navigation-container .menu svg,
.site-header--overlay .menu-social-navigation-container .menu svg:hover {
  fill: #fff; }

.site-header__cta {
  font-weight: 500;
  font-size: 13px;
  font-size: 0.7647058824rem;
  line-height: normal; }
  .site-header__cta svg {
    fill: #6b7c93; }
  .site-header__cta a {
    color: #6b7c93; }
  .site-header--overlay .site-header__cta a {
    color: #fff; }
  .site-header--overlay .site-header__cta svg {
    fill: #fff; }

.c-favorites-link {
  color: #fff;
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: normal;
  text-transform: uppercase; }
  @media (min-width: 61.25em) {
    .c-favorites-link {
      border-right: 1px solid #fff;
      border-right-color: white;
      border-right-color: rgba(255, 255, 255, 0.25);
      margin-right: 12px;
      padding-right: 12px; } }
  .c-favorites-link:hover, .c-favorites-link:focus {
    color: rgba(255, 255, 255, 0.25); }
  .c-favorites-link .c-favorites-link__icon {
    fill: #fff;
    margin-right: 9px;
    vertical-align: middle; }

.site-header__user-actions .c-btn {
  border-color: #b4b4bc;
  color: #b4b4bc;
  font-size: 13px;
  font-size: 0.7647058824rem;
  line-height: normal; }
  .site-header__user-actions .c-btn:hover, .site-header__user-actions .c-btn:focus {
    border-color: #fff;
    color: #fff; }
  @media (min-width: 61.25em) {
    .site-header__user-actions .c-btn {
      font-size: 14px;
      font-size: 0.8235294118rem;
      line-height: normal;
      min-width: 98px; } }
.ad--header {
  background-color: #f2f2f5;
  clear: both;
  padding: 20px; }

.menu {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0; }
  .menu a {
    color: #000; }
    .menu a:hover {
      color: #4063e6; }

.main-navigation {
  background-color: #fff;
  clear: both;
  display: block;
  font-size: 17px;
  font-size: 1rem;
  line-height: 1.4117647059;
  float: left;
  width: 100%; }
  @media (min-width: 61.25em) and (max-width: 74.99em) {
    .main-navigation {
      font-size: 15px;
      font-size: 0.8823529412rem;
      line-height: 1.6; } }
  .site-header--default .main-navigation {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6; }
  .site-header--overlay .main-navigation {
    background-color: #fff;
    border-top: none;
    border-bottom: none; }
    @media (min-width: 61.25em) {
      .site-header--overlay .main-navigation {
        background-color: rgba(255, 255, 255, 0.5); } }
  .main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0; }
    .main-navigation ul ul {
      display: inline-block;
      padding: 12px 0; }
      @media (min-width: 61.25em) {
        .main-navigation ul ul {
          background-color: #fff;
          border-radius: 8px;
          box-shadow: 9px 15.588px 35.26px 7.74px rgba(0, 0, 0, 0.2); } }
      @media (min-width: 61.25em) {
        .main-navigation ul ul {
          position: absolute;
          top: 100%;
          left: -999em;
          z-index: 99999; } }
      @media (min-width: 61.25em) {
        .main-navigation ul ul ul {
          left: -999em;
          top: 0; } }
      .main-navigation ul ul li {
        font-size: 15px;
        margin-right: 0;
        padding: 5px 23px 8px; }
        .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
          left: 100%; }
      .main-navigation ul ul a {
        width: 200px; }
    @media (min-width: 61.25em) {
      .main-navigation ul li:hover > ul,
      .main-navigation ul li.focus > ul {
        left: 50%;
        margin-left: -118px; } }
  .main-navigation li {
    display: block;
    margin-right: 10px;
    padding: 20px 0 0;
    position: relative; }
    @media (min-width: 61.25em) {
      .main-navigation li {
        display: inline-block;
        padding: 20px 0; } }
    @media (min-width: 75em) {
      .main-navigation li {
        margin-right: 20px; } }
    .main-navigation li:last-child {
      margin-right: 0; }
  .main-navigation a {
    display: block;
    text-decoration: none; }
  .main-navigation .current_page_item > a,
  .main-navigation .current-menu-item > a,
  .main-navigation .current_page_ancestor > a,
  .main-navigation .current-menu-ancestor > a {
    color: #4063e6; }
  .main-navigation ul li.menu-item-has-children:before,
  .main-navigation ul li.page_item_has_children:before {
    border-style: solid;
    border-width: 0 6px 6px;
    border-color: transparent transparent #fff;
    content: "";
    display: none;
    height: 0;
    left: 50%;
    margin-left: -6px;
    position: absolute;
    bottom: -1px;
    width: 0;
    z-index: 100000; }
  @media (min-width: 61.25em) {
    .main-navigation ul li.menu-item-has-children.focus:before,
    .main-navigation ul li.menu-item-has-children:hover:before,
    .main-navigation ul li.menu-item-has-children.focus:after,
    .main-navigation ul li.menu-item-has-children:hover:after,
    .main-navigation ul li.page_item_has_children.focus:before,
    .main-navigation ul li.page_item_has_children:hover:before,
    .main-navigation ul li.page_item_has_children.focus:after,
    .main-navigation ul li.page_item_has_children:hover:after {
      display: block; } }
/* Small menu. */
.menu-toggle {
  display: inline-block; }

.main-navigation.toggled ul {
  display: block; }

.menu-toggle {
  background-color: transparent;
  border: none;
  height: 30px;
  padding: 5px;
  text-align: center;
  width: 30px; }
  .menu-toggle svg {
    fill: #fff;
    margin-left: auto;
    margin-right: auto; }

@media (min-width: 61.25em) {
  .menu-toggle {
    display: none; }
  .main-navigation ul {
    display: block;
    text-align: center; }
  .main-navigation ul ul {
    text-align: left;
    width: 236px; } }

.site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden; }

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%; }

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%; }

#content .woocommerce-MyAccount-navigation {
  margin-bottom: 48px; }

#content .woocommerce-MyAccount-navigation ul {
  color: #c7c7c7;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-size: 0.9411764706rem;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  list-style: none; }
  #content .woocommerce-MyAccount-navigation ul li {
    display: inline-block; }
  #content .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link {
    position: relative; }
    #content .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link:after {
      color: #c7c7c7;
      content: " | ";
      padding: 0 .5em 0 .2em; }
    #content .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link:last-child:after {
      content: none; }
  #content .woocommerce-MyAccount-navigation ul a {
    color: #000000;
    text-decoration: none !important; }
    #content .woocommerce-MyAccount-navigation ul a:hover, #content .woocommerce-MyAccount-navigation ul a:focus {
      color: #4063e6; }
  #content .woocommerce-MyAccount-navigation ul .is-active a {
    color: #4063e6; }

.user-menu {
  border-bottom: 6px solid transparent;
  display: inline-block;
  position: relative; }
  .user-menu .c-mobile-user-link {
    display: block;
    padding: 10px 0;
    width: 30px; }
    .user-menu .c-mobile-user-link > svg {
      fill: #b4b4bc; }
    .user-menu .c-mobile-user-link:hover > svg, .user-menu .c-mobile-user-link:focus > svg {
      fill: #fff; }
  .user-menu .woocommerce-MyAccount-navigation {
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 9px 15.588px 35.26px 7.74px rgba(0, 0, 0, 0.2);
    display: none;
    padding: 12px;
    position: absolute;
    top: 100%;
    top: calc(100% + 6px);
    left: -999em;
    text-align: left;
    z-index: 99999;
    width: 205px !important; }
    @media (min-width: 61.25em) {
      .user-menu .woocommerce-MyAccount-navigation {
        padding: 24px; } }
    .user-menu .woocommerce-MyAccount-navigation ul {
      margin-bottom: 0;
      margin-left: 0; }
    .user-menu .woocommerce-MyAccount-navigation li {
      font-size: 14px;
      margin-right: 0;
      padding: 5px 5px 8px; }
      .user-menu .woocommerce-MyAccount-navigation li:hover > ul, .user-menu .woocommerce-MyAccount-navigation li.focus > ul {
        left: initial;
        right: 0; }
    .user-menu .woocommerce-MyAccount-navigation a {
      background-color: #FFF;
      border: none;
      color: #000;
      padding: 0; }
      .user-menu .woocommerce-MyAccount-navigation a:hover, .user-menu .woocommerce-MyAccount-navigation a:focus {
        background-color: #FFF;
        color: #4063e6; }
  .user-menu .user-menu--trigger:hover .woocommerce-MyAccount-navigation,
  .user-menu .user-menu--trigger.focus .woocommerce-MyAccount-navigation, .user-menu:hover .woocommerce-MyAccount-navigation, .user-menu.focus .woocommerce-MyAccount-navigation {
    display: block;
    left: initial;
    right: 0; }
    @media (min-width: 61.25em) {
      .user-menu .user-menu--trigger:hover .woocommerce-MyAccount-navigation,
      .user-menu .user-menu--trigger.focus .woocommerce-MyAccount-navigation, .user-menu:hover .woocommerce-MyAccount-navigation, .user-menu.focus .woocommerce-MyAccount-navigation {
        right: -60px; } }
  .user-menu li {
    display: block;
    position: relative; }
    .user-menu li:last-child {
      margin-right: 0;
      padding-bottom: 0; }
  .user-menu .user-menu--trigger:before,
  .user-menu .user-menu--trigger:before,
  .user-menu .user-menu--trigger:after,
  .user-menu .user-menu--trigger:after {
    border-style: solid;
    border-width: 0 6px 6px;
    content: "";
    display: none;
    height: 0;
    position: absolute;
    width: 0;
    z-index: 100000; }
  .user-menu .user-menu--trigger:before,
  .user-menu .user-menu--trigger:before {
    border-color: transparent transparent #000;
    bottom: -6px; }
  .user-menu .user-menu--trigger:after,
  .user-menu .user-menu--trigger:after {
    border-color: transparent transparent #fff;
    bottom: -7px; }
  .user-menu:hover .user-menu--trigger:before, .user-menu.focus .user-menu--trigger:before,
  .user-menu .user-menu--trigger:hover:before,
  .user-menu .user-menu--trigger.focus:before, .user-menu:hover .user-menu--trigger:after, .user-menu.focus .user-menu--trigger:after,
  .user-menu .user-menu--trigger:hover:after,
  .user-menu .user-menu--trigger.focus:after {
    display: block; }

.user-menu--mobile .user-menu--trigger:hover .woocommerce-MyAccount-navigation,
.user-menu--mobile .user-menu--trigger.focus .woocommerce-MyAccount-navigation, .user-menu--mobile:hover .woocommerce-MyAccount-navigation, .user-menu--mobile.focus .woocommerce-MyAccount-navigation {
  display: block;
  left: -20px; }

.user-menu--mobile .user-menu--trigger:before,
.user-menu--mobile .user-menu--trigger:before,
.user-menu--mobile .user-menu--trigger:after,
.user-menu--mobile .user-menu--trigger:after {
  left: 0; }

.user-menu--desktop .user-menu--trigger:hover .woocommerce-MyAccount-navigation,
.user-menu--desktop .user-menu--trigger.focus .woocommerce-MyAccount-navigation, .user-menu--desktop:hover .woocommerce-MyAccount-navigation, .user-menu--desktop.focus .woocommerce-MyAccount-navigation {
  display: block;
  left: initial;
  right: 0; }

.user-menu--desktop .user-menu--trigger:before,
.user-menu--desktop .user-menu--trigger:before,
.user-menu--desktop .user-menu--trigger:after,
.user-menu--desktop .user-menu--trigger:after {
  left: 40px; }

.menu-subscribe-container {
  display: none;
  position: relative; }
  @media (min-width: 25em) {
    .menu-subscribe-container {
      display: inline-block; } }
  .menu-subscribe-container ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
    text-transform: uppercase; }
    .menu-subscribe-container ul ul {
      background: #fff;
      border-radius: 8px;
      box-shadow: 9px 15.588px 35.26px 7.74px rgba(0, 0, 0, 0.2);
      display: none;
      padding: 12px;
      position: absolute;
      top: 100%;
      top: calc(100% + 6px);
      left: -999em;
      text-align: left;
      z-index: 99999;
      width: 205px; }
      @media (min-width: 61.25em) {
        .menu-subscribe-container ul ul {
          padding: 17px 24px; } }
      .menu-subscribe-container ul ul ul {
        left: -999em;
        top: 0; }
      .menu-subscribe-container ul ul li {
        font-size: 14px;
        font-size: 0.8235294118rem;
        line-height: normal;
        margin-right: 0;
        padding: 5px 5px 8px; }
        .menu-subscribe-container ul ul li:hover > ul, .menu-subscribe-container ul ul li.focus > ul {
          left: initial;
          right: 0; }
      .menu-subscribe-container ul ul a {
        background-color: #FFF;
        border: none;
        border-radius: 0;
        color: #000;
        padding: 0;
        text-transform: none; }
        .menu-subscribe-container ul ul a:hover, .menu-subscribe-container ul ul a:focus {
          background-color: #FFF;
          color: #4063e6; }
  .menu-subscribe-container li:hover ul,
  .menu-subscribe-container li.focus ul {
    display: block;
    left: initial;
    right: 0; }
    @media (min-width: 61.25em) {
      .menu-subscribe-container li:hover ul,
      .menu-subscribe-container li.focus ul {
        right: -60px; } }
  .menu-subscribe-container li {
    display: block;
    position: relative; }
    .menu-subscribe-container li:last-child {
      margin-right: 0; }
  .menu-subscribe-container a {
    border: 2px solid #b4b4bc;
    border-radius: 100px;
    color: #b4b4bc;
    display: inline-block;
    font-size: 14px;
    font-size: 0.8235294118rem;
    line-height: normal;
    font-weight: 100;
    padding: 4px 10px; }
    .menu-subscribe-container a:hover, .menu-subscribe-container a:focus {
      border-color: #fff;
      color: #fff; }
    @media (min-width: 61.25em) {
      .menu-subscribe-container a {
        font-size: 14px;
        font-size: 0.8235294118rem;
        line-height: normal;
        min-width: 98px; } }
  .menu-subscribe-container .current_page_item > a,
  .menu-subscribe-container .current-menu-item > a {
    color: #4063e6; }
  .menu-subscribe-container li.menu-item-has-children {
    border-bottom: 6px solid transparent; }
  .menu-subscribe-container ul li.menu-item-has-children:before,
  .menu-subscribe-container ul li.page_item_has_children:before,
  .menu-subscribe-container ul li.menu-item-has-children:after,
  .menu-subscribe-container ul li.page_item_has_children:after {
    border-style: solid;
    border-width: 0 6px 6px;
    content: "";
    display: none;
    height: 0;
    left: 50%;
    margin-left: -3px;
    position: absolute;
    width: 0;
    z-index: 100000; }
  .menu-subscribe-container ul li.menu-item-has-children:before,
  .menu-subscribe-container ul li.page_item_has_children:before {
    border-color: transparent transparent #000;
    bottom: -6px; }
  .menu-subscribe-container ul li.menu-item-has-children:after,
  .menu-subscribe-container ul li.page_item_has_children:after {
    border-color: transparent transparent #fff;
    bottom: -7px; }
  .menu-subscribe-container ul li.menu-item-has-children.focus:before,
  .menu-subscribe-container ul li.menu-item-has-children:hover:before,
  .menu-subscribe-container ul li.menu-item-has-children.focus:after,
  .menu-subscribe-container ul li.menu-item-has-children:hover:after,
  .menu-subscribe-container ul li.page_item_has_children.focus:before,
  .menu-subscribe-container ul li.page_item_has_children:hover:before,
  .menu-subscribe-container ul li.page_item_has_children.focus:after,
  .menu-subscribe-container ul li.page_item_has_children:hover:after {
    display: block; }

/* ==========================================================================
   #SEARCH FORM
   ========================================================================== */
.search-form {
  background-color: #f9f9fb;
  border: 1px solid #d1d8df;
  border-radius: 3px;
  display: inline-block;
  display: flex;
  font-family: "Roboto", Helvetica, Arial, sans-serif; }
  .search-form:focus {
    outline-color: #e2e5ea; }

.search-field {
  background-color: transparent;
  border: none;
  float: left; }
  .search-field:focus {
    outline: none; }

.search-submit {
  -webkit-appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: right;
  width: 44px; }
  .search-submit svg {
    margin-right: 3px;
    vertical-align: middle; }

.js .header-search {
  display: none;
  transition: all .2s ease-in-out;
  opacity: 0; }

.header-search .search-field {
  color: #fff; }

.toggled .header-search {
  display: inline-block;
  opacity: 1;
  vertical-align: bottom; }
  @media (min-width: 46.25em) {
    .toggled .header-search {
      padding-right: 44px; } }
  @media (min-width: 61.25em) {
    .toggled .header-search {
      padding-right: 0;
      width: calc(100% - 55px); } }
.header-search svg {
  fill: #fff;
  height: 31px;
  margin-right: 3px; }

.header-search-toggle {
  background: none;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  height: 30px;
  padding: 0;
  vertical-align: middle;
  width: 30px; }
  .header-search-toggle svg {
    fill: #b4b4bc;
    vertical-align: middle; }
  .header-search-toggle:hover svg, .header-search-toggle:focus svg,
  .header-search-toggle .toggled > svg {
    fill: #fff; }
  @media (min-width: 61.25em) {
    .header-search-toggle {
      border-left: 1px solid #fff;
      border-left-color: rgba(255, 255, 255, 0.25);
      height: auto;
      margin-left: 15px;
      padding-left: 15px;
      position: relative;
      width: auto; }
      .site-header--overlay .header-search-toggle {
        border-right-color: #404040; } }
  .site-header--overlay .header-search-toggle svg {
    fill: #fff; }

@media (min-width: 61.25em) {
  #header-social-search.toggled .header-search-toggle {
    border-right: none; } }

#header-social-search .header-search-toggle .icon-close {
  display: none; }

#header-social-search .header-search-toggle .icon-search {
  display: inline-block; }

@media (max-width: 61.24em) {
  #header-social-search.toggled {
    margin-bottom: 24px;
    text-align: center;
    width: 100%; } }

#header-social-search.toggled .menu-toggle {
  display: none; }

#header-social-search.toggled .user-menu {
  display: none; }

#header-social-search.toggled .c-favorites-link {
  display: none; }

#header-social-search.toggled .header-search-toggle .icon-close {
  display: inline-block; }

#header-social-search.toggled .header-search-toggle .icon-search {
  display: none; }

#header-social-search.toggled .menu-social-navigation-container,
#header-social-search.toggled a.c-btn {
  display: none; }

.site-header .search-form {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e1e1e1;
  border-radius: 0;
  margin-left: auto;
  max-width: 255px;
  min-height: 32px; }
  .site-header .search-form:focus, .site-header .search-form:focus-within {
    outline: 6px auto #d1d8df; }

.site-header--overlay .search-form {
  background-color: #000;
  border-bottom: 1px solid #fff; }

.site-header--overlay .search-field {
  background-color: #000;
  color: #fff; }

.content-area .search-form {
  padding: 7px; }

/* ==========================================================================
   #BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
  clear: both;
  color: #c3c3c3;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.7142857143;
  padding-bottom: 6px;
  padding-top: 12px; }
  .breadcrumbs a {
    color: #c3c3c3; }

.c-site-wide-banner {
  background-color: #000000;
  clear: both;
  color: #fff;
  font-size: 16px;
  font-size: 0.9411764706rem;
  line-height: normal;
  padding: 12px 0;
  text-align: center; }
  .c-site-wide-banner a {
    color: inherit; }

#news-scroll-container {
  overflow: hidden; }

@media (min-width: 20em) {
  #news-scroll-text {
    text-align: center;
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: my-animation 14s linear infinite;
    -webkit-animation: my-animation 14s linear infinite;
    animation: my-animation 14s linear infinite; } }

@media (min-width: 62.5em) {
  #news-scroll-text {
    text-align: center;
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: my-animation 20s linear infinite;
    -webkit-animation: my-animation 20s linear infinite;
    animation: my-animation 20s linear infinite; } }

/* for Firefox */
@-moz-keyframes my-animation {
  from {
    -moz-transform: translateX(100%); }
  to {
    -moz-transform: translateX(-100%); } }

/* for Chrome */
@-webkit-keyframes my-animation {
  from {
    -webkit-transform: translateX(100%); }
  to {
    -webkit-transform: translateX(-100%); } }

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@media (min-width: 46.25em) {
  .primary-content-container {
    max-width: 870px; } }

.site-content {
  clear: both;
  padding-top: 48px; }

.site-content--full-width-hero {
  padding-top: 0;
  position: relative;
  z-index: 1; }
  @media (min-width: 46.25em) {
    .site-content--full-width-hero {
      top: -66px; } }
.post-thumbnail > img {
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 92% 100%, 100% 88%, 100% 0%);
  clip-path: polygon(0% 0%, 0% 100%, 92% 100%, 100% 88%, 100% 0%); }

.single .main-article .post-thumbnail {
  margin: 0 auto 48px;
  max-width: 1000px; }
  .single .main-article .post-thumbnail > img {
    clip-path: none; }

.single-post .site-main .entry-header,
.single-post .site-main .entry-content,
.single-post .site-main .entry-footer,
.single-post .site-main .comments-area {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px; }

.entry-content-wrapper .entry-content {
  font-weight: 300;
  position: relative; }

.entry-meta--post-type {
  color: #4063e6; }

.byline > a {
  color: #000; }

.archive-description {
  color: #666666;
  letter-spacing: 0.01em; }

.entry-excerpt {
  font-size: 16px;
  font-size: 0.9411764706rem;
  line-height: 1.5625; }
  .entry-excerpt p:last-child {
    margin-bottom: 0; }

.lede {
  color: #545353;
  font-size: 23px; }

.main-article:not(.hide-drop-cap) .entry-content > p:first-of-type:first-letter {
  color: #000;
  display: inline-block;
  float: left;
  font-size: 92px;
  font-size: 5.4117647059rem;
  line-height: 0.8;
  font-weight: 700;
  margin: 0;
  padding: .05em .08em 0 0; }

.main-article:not(.hide-drop-cap) .entry-content > p:first-of-type:after {
  clear: left; }

.c-author {
  background: #fff;
  margin-bottom: 48px;
  margin-top: 48px;
  padding: 30px; }
  .c-author .o-media__img {
    border: 4px solid #f2f2f2;
    border-radius: 100px;
    height: 105px;
    overflow: hidden;
    width: 105px; }
  .c-author .o-media__body {
    color: #010101;
    font-size: 15px;
    font-size: 0.8823529412rem;
    line-height: 1.6666666667;
    font-weight: 300; }
    .c-author .o-media__body p {
      margin-bottom: 12px; }
  .c-author .c-author__name {
    color: #000;
    font-size: 18px;
    font-size: 1.0588235294rem;
    line-height: 1;
    text-transform: uppercase; }

.author-social {
  margin-bottom: 15px; }
  .author-social a {
    border: 1px solid #dddddd;
    border-radius: 60px;
    color: #5e5e5e;
    display: inline-block;
    height: 28px;
    text-align: center;
    width: 28px; }
    .author-social a:hover, .author-social a:focus {
      color: #000; }
      .author-social a:hover .icon, .author-social a:focus .icon {
        fill: #000; }
  .author-social li {
    margin-right: 12px; }
    .author-social li:last-child {
      margin-right: 0; }
  .author-social .icon {
    fill: #5e5e5e;
    height: 12px; }

blockquote {
  border-left: 3px solid #dddddd;
  font-size: 28px;
  font-size: 1.6470588235rem;
  line-height: 1.2857142857;
  margin-left: 24px;
  padding: 24px; }

.entry-meta {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.7142857143; }

figcaption,
.wp-caption-text {
  color: #666666;
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.4285714286;
  padding-top: 10px; }

.strapline {
  color: #4063e6; }

.module-section {
  padding-bottom: 24px;
  padding-top: 24px; }

.module-section--bg-color {
  padding-bottom: 48px;
  padding-top: 48px; }

.module-section--bg-image {
  padding-bottom: 48px;
  padding-top: 48px;
  position: relative; }
  @media (max-width: 61.24em) {
    .module-section--bg-image:before {
      background-color: #000;
      background-color: rgba(0, 0, 0, 0.25);
      bottom: 0;
      display: block;
      content: "";
      height: 100%;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      width: 100%;
      z-index: 1; } }
  .module-section--bg-image .o-wrapper {
    position: relative;
    z-index: 5; }

.module-section__header {
  margin-bottom: 24px; }

.module-section__header-link {
  color: #7e8d9e; }
  .module-section__header-link .icon {
    height: 11px; }

@media (max-width: 61.24em) {
  .module-section__content .o-layout__item {
    margin-bottom: 20px; } }

@media (min-width: 61.25em) {
  .o-layout__item.module-section__non-post-content {
    width: 26.5%; } }

@media (min-width: 61.25em) {
  .module-section--2-col .o-layout__item.module-section__non-post-content {
    width: 28.70833333%; } }

@media (min-width: 61.25em) {
  .module-section--2-col--50-50 .o-layout__item.module-section__non-post-content {
    width: 50%; } }

@media (min-width: 61.25em) {
  .module-section--3-col .o-layout__item.module-section__non-post-content {
    width: 33.333%; } }

@media (min-width: 61.25em) {
  .module-section--2-col .module-section__post-content {
    width: 71.29166667%; } }

@media (min-width: 61.25em) {
  .module-section--2-col--50-50 .module-section__post-content {
    width: 50%; } }

@media (min-width: 46.25em) {
  .module-section--3-col .module-section__post-content {
    width: 50%; } }

@media (min-width: 61.25em) {
  .module-section--3-col .module-section__post-content {
    width: 33.333%; } }

.module-section--3-col--featured-content .module-section__content .o-layout {
  position: relative; }

@media (min-width: 46.25em) {
  .module-section--3-col--featured-content .module-section__post-content--1 {
    width: 100%; } }

@media (max-width: 74.99em) {
  .module-section--3-col--featured-content .module-section__post-content--1 {
    margin-bottom: 20px; } }

@media (min-width: 75em) {
  .module-section--3-col--featured-content .module-section__post-content--1 {
    max-width: 542px;
    margin-left: 334px;
    width: 50%; } }

@media (min-width: 46.25em) {
  .module-section--3-col--featured-content .module-section__post-content--2 {
    width: 50%; } }

@media (min-width: 75em) {
  .module-section--3-col--featured-content .module-section__post-content--2 {
    width: 344px; } }

@media (min-width: 46.25em) {
  .module-section--3-col--featured-content .o-layout__item.module-section__non-post-content {
    width: 50%; } }

@media (min-width: 75em) {
  .module-section--3-col--featured-content .o-layout__item.module-section__non-post-content {
    left: 0;
    position: absolute;
    width: 334px; } }

.module-section--3-col--featured-content .o-layout__item.module-section__non-post-content .widget {
  width: 100%; }

.module-section--3-col--featured-content .widget--current-issue {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; }

@media (min-width: 41.25em) and (max-width: 62.49em) {
  .module-section--4-col .o-layout__item.module-section__non-post-content {
    width: 50%; } }

@media (min-width: 62.5em) and (max-width: 78.115em) {
  .module-section--4-col .o-layout__item.module-section__non-post-content {
    width: 100%; } }

@media (min-width: 78.125em) {
  .module-section--4-col .o-layout__item.module-section__non-post-content {
    float: right;
    padding-left: 0;
    width: 307px; } }

@media (min-width: 46.25em) {
  .module-section--4-col .module-section__post-content {
    width: 50%; } }

@media (min-width: 61.25em) {
  .module-section--4-col .module-section__post-content {
    width: 25%; } }

@media (min-width: 46.25em) {
  .module-section--4-col.module-section--has-non-post-content .module-section__post-content {
    width: 50%; } }

@media (min-width: 61.25em) {
  .module-section--4-col.module-section--has-non-post-content .module-section__post-content {
    width: 32.333%; } }

@media (min-width: 75em) {
  .module-section--4-col.module-section--has-non-post-content .module-section__post-content {
    width: 300px; } }

@media (min-width: 75em) {
  .module-section--4-col.module-section--has-non-post-content .module-section__post-content .stacked {
    max-width: 271px; } }

.module-section--4-col .module-section__content .o-layout {
  position: relative; }

.module-section--4-col .author-bottom {
  padding-bottom: 48px;
  position: relative; }
  @media (min-width: 46.25em) {
    .module-section--4-col .author-bottom .entry-meta--author {
      bottom: 24px;
      left: 40px;
      position: absolute; } }
.stacked {
  min-height: 315px; }
  .o-layout--equal-height .post-count-1 .stacked, .related-stories .o-layout--equal-height .stacked, .featured-stories .o-layout--equal-height .stacked {
    height: 100%; }
  .module-section--2-col .stacked, .module-section--3-col .stacked {
    min-height: 521px; }

.stacked:not(.stacked--border):not(.stacked--drop-shadow) .post-thumbnail {
  display: block;
  margin-bottom: 12px; }

.stacked--drop-shadow {
  background-color: #fff;
  box-shadow: 5px 8.66px 10px 0px rgba(0, 0, 0, 0.02); }
  .stacked--drop-shadow .post-thumbnail img {
    display: block;
    height: 250px;
    object-fit: cover;
    width: 100%; }
  .page-bottom-feature .stacked--drop-shadow img {
    height: 175px; }

.stacked--border {
  background-color: #fff;
  border: 1px solid #cccfd9; }
  .stacked--border .post-thumbnail {
    border-bottom: 1px solid #cccfd9; }
    .stacked--border .post-thumbnail img {
      display: block;
      height: 250px;
      object-fit: cover;
      width: 100%; }

.stacked--drop-shadow .stacked__content, .stacked--border .stacked__content {
  background-color: #fff;
  padding: 24px 40px; }

.u-1\/3\@tablet .stacked--drop-shadow .stacked__content, .u-1\/3\@tablet .stacked--border .stacked__content {
  padding: 24px; }

.post-type-archive .stacked__content {
  min-height: 218px; }

.listing {
  background: #fff;
  box-shadow: 5px 8.66px 10px 0px rgba(0, 0, 0, 0.02);
  padding: 24px; }
  .listing.has-post-thumbnail {
    padding: 0; }
    .listing.has-post-thumbnail .listing__content {
      padding: 6px 0; }
  .listing .entry-header,
  .listing .entry-excerpt,
  .listing .entry-content {
    max-width: 93%; }

.listing__image {
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 92% 100%, 100% 88%, 100% 0%);
  clip-path: polygon(0% 0%, 0% 100%, 92% 100%, 100% 88%, 100% 0%); }
  @media (min-width: 46.25em) {
    .listing__image {
      width: 43.35090803%; } }
@media (min-width: 46.25em) {
  .listing__content-container {
    width: 56.64909197%; } }

.archive .listing {
  margin-bottom: 24px; }

.module-home-call-to-action__title {
  font-size: 38px;
  font-size: 2.2352941176rem;
  line-height: 1.1; }

.module-home-call-to-action__content {
  color: #4063e6;
  font-size: 17px;
  font-size: 1rem;
  line-height: 1.1; }
  @media (min-width: 46.25em) {
    .module-home-call-to-action__content p:last-child {
      margin-bottom: none; } }
.module-home-call-to-action__link {
  border: 1px solid #4063e6; }
  .module-home-call-to-action__link:hover {
    background-color: transparent;
    border-color: #fff; }

.overlay-link {
  display: block;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 92% 100%, 100% 88%, 100% 0%);
  clip-path: polygon(0% 0%, 0% 100%, 92% 100%, 100% 88%, 100% 0%); }

.overlay {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 269px;
  min-height: 269px;
  position: relative; }
  @media (min-width: 46.25em) {
    .overlay {
      min-height: 538px;
      height: 538px; } }
  .o-layout--equal-height .overlay {
    height: 100%; }
  @media (max-width: 46.24em) {
    .overlay .entry-excerpt {
      font-size: 14px;
      font-size: 0.8235294118rem;
      line-height: 1.7142857143; } }
.overlay--short {
  height: 195px;
  max-height: 216px;
  min-height: 195px; }
  @media (min-width: 46.25em) {
    .overlay--short {
      height: 254px; } }
  @media (min-width: 61.25em) {
    .overlay--short {
      max-height: 254px;
      height: 254px; } }
  .overlay--short:first-child {
    margin-bottom: 30px; }

.archive .overlay__title {
  font-size: 40px;
  font-size: 2.3529411765rem;
  line-height: 1; }

.overlay--gradient {
  position: relative; }
  .overlay--gradient:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    /* IE6-9 */
    z-index: 1; }

.overlay__content {
  bottom: 0;
  padding: 24px;
  position: absolute;
  text-align: center;
  text-shadow: 2px 3.464px 3px rgba(0, 0, 0, 0.4);
  width: 100%;
  z-index: 5; }
  @media (min-width: 46.25em) {
    .overlay__content {
      bottom: 23px;
      left: 30px;
      text-align: left;
      top: auto;
      padding: 0;
      max-width: 410px;
      width: 80%; } }
  .overlay--boxed .overlay__content {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 21px 25px; }
  .overlay__content a {
    color: #fff; }
  .overlay__content :last-child {
    margin-bottom: 0; }

@media (max-width: 46.24em) {
  .module-section--post-count-1 .overlay {
    height: 300px; } }

@media (max-width: 46.24em) {
  .module-section--post-count-1 .overlay__content {
    bottom: 0;
    position: absolute; } }

.module-section--bg-image .more-link {
  color: #000000;
  display: block; }
  .module-section--bg-image .more-link:hover {
    color: #000000; }

.audio_video_cat-video-archive a.post-thumbnail {
  display: block;
  position: relative;
  width: 100%; }
  .audio_video_cat-video-archive a.post-thumbnail:after {
    background: url(assets/images/video-play-icon.png) 50% no-repeat;
    content: ' ';
    height: 60px;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    position: absolute;
    top: 50%;
    width: 60px;
    z-index: 5; }
    @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
      .audio_video_cat-video-archive a.post-thumbnail:after {
        background-image: url(assets/images/video-play-icon@2x.png);
        background-size: 61px 61px; } }
.module-section__non-post-content .widget {
  margin-left: auto;
  margin-right: auto; }
  .module-section__non-post-content .widget:first-child {
    margin-bottom: 24px; }
  .module-section__non-post-content .widget:last-child {
    margin-bottom: 0; }
  .module-section__non-post-content .widget .ad {
    background: #f2f2f5;
    text-align: center; }
  .module-section__non-post-content .widget .ad--sidebar--300x250 {
    padding-top: 13px;
    padding-bottom: 13px; }
    @media (min-width: 46.25em) {
      .module-section__non-post-content .widget .ad--sidebar--300x250 {
        padding-top: 38px;
        padding-bottom: 38px; } }
  .module-section__non-post-content .widget .ad--sidebar--300x600 {
    padding-top: 13px;
    padding-bottom: 13px; }

figure {
  max-width: 100%; }

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.content-highlight {
  border: 1px solid #d1d8df;
  margin-bottom: 24px;
  padding: 30px; }
  .content-highlight:last-child {
    margin-bottom: 12px; }
  .content-highlight p:last-child {
    margin-bottom: 0; }

/* ==========================================================================
   #WIDGETS
   ========================================================================== */
@media (min-width: 46.25em) {
  .secondary-content-container {
    width: 350px; } }

@media (max-width: 61.24em) {
  .secondary-content-container {
    display: block;
    float: none;
    margin-left: auto;
    margin-right: auto; } }

@media (min-width: 61.25em) {
  .secondary-content-container {
    float: right; } }

.widget-area--sidebar .widget-title {
  border-bottom: 2px solid #000;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-size: 1.1764705882rem;
  line-height: 1.5;
  letter-spacing: normal;
  margin-bottom: 30px;
  padding-bottom: 2px; }

.widget-area--sidebar {
  margin-left: auto;
  margin-right: auto; }

.widget--contained {
  background-color: #fff;
  border: 1px solid #e1e1e1; }

.widget-area--sidebar .widget {
  margin-bottom: 24px; }

.widget--current-issue {
  padding: 11px 14px;
  height: 100%; }

.widget--current-issue__heading {
  font-size: 20px;
  font-size: 1.1764705882rem;
  line-height: normal;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 500; }

.widget--current-issue__sub-heading {
  font-size: 23px;
  font-size: 1.3529411765rem;
  line-height: normal;
  color: #4063e6; }

.featured-posts-list__item img {
  max-width: 90px; }

.featured-posts-list__item .entry-meta--post-type {
  line-height: 1;
  margin-bottom: 12px;
  vertical-align: top; }

.c-featured-album-review a {
  color: #000; }

.c-featured-album-review__img-container {
  position: relative; }
  .c-featured-album-review__img-container:before {
    background: url(assets/images/album-of-the-day-bg.png) 100% 50% no-repeat;
    background-size: cover;
    content: ' ';
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    z-index: 5; }

.c-featured-album-review__img {
  position: relative;
  width: 70.34013605%;
  z-index: 10; }

.c-featured-album-review__title {
  margin-bottom: 12px; }
  .c-featured-album-review:hover .c-featured-album-review__title, .c-featured-album-review:focus .c-featured-album-review__title {
    color: #4063e6; }

.c-featured-album-review__meta {
  font-size: 16px;
  font-size: 0.9411764706rem;
  line-height: 1.5625;
  letter-spacing: 0.025em; }

/* ==========================================================================
   #RELATED STORIES
   ========================================================================== */
.page-bottom-feature {
  padding-bottom: 48px;
  padding-top: 48px; }
  @media (min-width: 75em) {
    .page-bottom-feature > .o-wrapper {
      padding-left: 0;
      padding-right: 0; } }
/* ==========================================================================
   #FOOTER
   ========================================================================== */
.footer-newsletter-cta {
  background: #000000;
  color: #fff;
  margin-top: 40px;
  padding: 35px 0;
  position: relative; }

.footer-newsletter-cta__heading {
  font-size: 38px;
  font-size: 2.2352941176rem;
  line-height: 1; }

.footer-newsletter-cta__description {
  color: #4063e6; }

.footer-newsletter-cta__link {
  border: 1px solid #4063e6; }
  .footer-newsletter-cta__link:hover {
    background-color: transparent;
    border-color: #fff; }

.site-footer {
  background: #000 url(assets/images/footer-bg.jpg) center top no-repeat;
  background-size: cover;
  color: #b4b4bc;
  font-family: "Roboto", Helvetica, Arial, sans-serif; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .site-footer {
      background-image: url(assets/images/footer-bg@2x.jpg); } }
.site-footer__top {
  padding-bottom: 24px;
  padding-top: 24px; }

@media (min-width: 46.25em) {
  .site-footer__footer-menu {
    text-align: center; }
    .site-footer__footer-menu li {
      display: inline-block;
      margin-right: 40px;
      vertical-align: middle; } }

.site-footer__middle {
  padding-bottom: 24px;
  padding-top: 24px; }

.site-footer__bottom {
  background-color: #141414;
  font-size: 13px;
  font-size: 0.7647058824rem;
  line-height: 1.8461538462;
  padding-bottom: 12px;
  padding-top: 12px; }
  .site-footer--3-col .site-footer__bottom, .site-footer--inline .site-footer__bottom {
    text-align: center; }

.menu-footer-navigation-column-1-container li,
.menu-footer-navigation-column-2-container li,
.menu-footer-navigation-container li {
  display: block;
  margin-bottom: 6px; }

.site-footer__social-menu {
  margin-bottom: 24px; }
  .site-footer__social-menu svg {
    fill: #fff; }
  .site-footer__social-menu li {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle; }
  .site-footer__social-menu a {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    border-color: rgba(255, 255, 255, 0.2);
    display: block;
    color: #fff;
    height: 38px;
    padding: 5px;
    text-align: center;
    width: 38px; }
    .site-footer__social-menu a svg {
      fill: #fff; }
    .site-footer__social-menu a:hover {
      color: #808080; }
      .site-footer__social-menu a:hover svg {
        fill: #808080; }

.site-footer__logo {
  margin: 30px 0; }

.site-footer a {
  color: #b4b4bc; }
  .site-footer a:hover, .site-footer a:focus {
    color: #fff; }

.site-footer .widget-title {
  color: #fff;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase; }

/* ==========================================================================
   #DIVIDERS
   ========================================================================== */
.bottom-divider {
  border-bottom: 1px solid #d8dee3;
  margin-bottom: 48px;
  padding-bottom: 48px; }

.bottom-divider--margin-none {
  margin-bottom: 0; }

.bottom-divider--padding-none {
  padding-bottom: 0; }

.top-divider {
  border-top: 1px solid #d8dee3;
  margin-top: 48px;
  padding-top: 48px; }

.top-divider--margin-none {
  margin-top: 0; }

.top-divider--padding-none {
  padding-top: 0; }

/* ==========================================================================
   #PAGINATION
   ========================================================================== */
.pagination {
  clear: both;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 19px;
  font-size: 1.1176470588rem;
  line-height: 1.5789473684;
  margin-bottom: 24px;
  text-align: center; }
  .pagination .page-numbers {
    border: 1px solid #000;
    display: inline-block;
    padding: 8px 14px;
    vertical-align: middle; }
  .pagination .dots {
    border-color: transparent; }
  .pagination a {
    color: #000;
    display: inline-block;
    margin-bottom: 12px; }
  .pagination .icon {
    height: 12px;
    width: 7px; }
  .pagination .next,
  .pagination .prev {
    vertical-align: middle; }
  .pagination .page-numbers:hover,
  .pagination .current {
    background: #4063e6;
    border-color: #4063e6;
    color: #fff; }
  .pagination .current {
    vertical-align: top; }
    .pagination .current > .page-numbers {
      background: #4063e6; }
  .pagination .page-numbers:focus {
    border-color: #4063e6;
    color: #4063e6; }

/* ==========================================================================
   #ICONS
   ========================================================================== */
.icon {
  display: inline-block;
  fill: currentColor;
  height: 1em;
  position: relative;
  transition: fill 0.15s;
  top: -0.0625em;
  vertical-align: middle;
  width: 1em; }

/* ==========================================================================
   #SUBSCRIBE
   ========================================================================== */
.magazine-template-subscribe .site-content {
  padding-top: 0; }

.landing-page-top--bg-image {
  padding-top: 24px; }
  @media (min-width: 46.25em) {
    .landing-page-top--bg-image {
      padding-top: 62px; } }
@media (min-width: 46.25em) {
  .subscription-tiers {
    align-items: flex-end; } }

@media (min-width: 61.25em) {
  .subscription-tier-container:nth-child(1) {
    order: 2; }
  .subscription-tier-container:nth-child(2) {
    order: 1; }
  .subscription-tier-container:nth-child(3) {
    order: 3; } }

.subscription-tier {
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 100%; }
  @media (min-width: 61.25em) {
    .subscription-tier {
      min-height: 770px; } }
.subscription-tier__header {
  background: #43484d;
  color: #fff;
  font-size: 19px;
  font-size: 1.1176470588rem;
  line-height: 1.5789473684;
  letter-spacing: 0.05em;
  padding: 24px;
  text-align: center;
  text-transform: uppercase;
  width: 100%; }
  .subscription-tier-container:first-child .subscription-tier__header {
    background: #4063e6; }

.subscription-tier__head {
  font-size: 19px;
  font-size: 1.1176470588rem;
  line-height: 1.5789473684;
  margin-bottom: 0; }

.subscription-tier__subhead {
  color: #1b295e;
  letter-spacing: 0.135em; }

.subscription-tier__main {
  background: #fff;
  padding: 24px 40px;
  width: 100%; }

.subscription-tier-section__title {
  font-size: 17px;
  font-size: 1rem;
  line-height: 1.4117647059;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  position: relative; }
  .subscription-tier-section__title > strong {
    background: #fff;
    display: inline-block;
    font-weight: 500;
    padding: 0 0.5em;
    position: relative; }
  .subscription-tier-section__title:before {
    background: #d9d9d9;
    content: '';
    left: 0;
    height: 1px;
    position: absolute;
    top: 50%;
    width: 100%; }

.subscription-tier__price {
  font-size: 52px;
  font-size: 3.0588235294rem;
  line-height: 1.1538461538;
  margin-bottom: 24px; }
  .subscription-tier__price sup {
    font-size: 46.15384615%;
    top: -1em; }

.curency {
  font-size: 21px;
  font-size: 1.2352941176rem;
  line-height: 1.4285714286;
  vertical-align: middle; }

.subscription-tier__content p {
  margin-bottom: 12px; }

.subscription-tier__content ul {
  list-style: none; }

.subscription-tier__content li {
  font-weight: 300;
  margin-bottom: 24px;
  padding-left: 7px;
  position: relative; }
  .subscription-tier__content li:before {
    background: url(assets/images/gray-check.png) no-repeat;
    content: '';
    display: block;
    height: 11px;
    left: -1em;
    position: absolute;
    top: 7px;
    width: 14px; }
    @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
      .subscription-tier__content li:before {
        background-image: url(assets/images/gray-check@2x.png);
        background-size: 14px auto; } }
.subscription-tier__footer {
  background: #fff;
  padding: 20px 40px;
  margin-top: auto;
  width: 100%; }

.subscription-cta .content {
  background: #fff;
  padding: 48px; }
  .subscription-cta .content p:last-child {
    margin-bottom: 0; }

.subscription-cta {
  text-align: center; }
  @media (min-width: 61.25em) {
    .subscription-cta {
      text-align: left; } }
  @media (max-width: 61.24em) {
    .subscription-cta .subscription-cta-link {
      margin-top: 24px; } }
.magazine-feature {
  padding: 48px; }
  .magazine-feature:nth-child(even) {
    background: #fff; }
  .magazine-feature .feature__image {
    margin-bottom: 24px;
    text-align: center; }
    @media (min-width: 61.25em) {
      .magazine-feature .feature__image {
        text-align: left; } }
@media (min-width: 61.25em) {
  .feature__content {
    padding: 48px; } }

.subscribe-faq {
  background: #fff;
  padding: 48px 0; }
  @media (min-width: 46.25em) {
    .subscribe-faq {
      padding: 96px 0; } }
.subscribe-faq .ui-accordion-header:before {
  content: "+ ";
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  width: 24px; }

.subscribe-faq .ui-accordion-header.ui-state-active:before {
  content: "\2013 ";
  font-size: 24px;
  vertical-align: -4%;
  color: #fff; }

.subscribe-faq .ui-accordion-header {
  font-size: 15px;
  font-size: 0.8823529412rem;
  line-height: 1.6666666667;
  background: #4063e6;
  border-radius: 5px;
  color: #FFF;
  padding: .5em 1em;
  margin: .75em 0 0;
  cursor: pointer;
  outline: none !important; }

.subscribe-faq .ui-accordion-header.ui-state-active {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.subscribe-faq__question-label,
.subscribe-faq__question {
  display: inline-block;
  vertical-align: top; }

.subscribe-faq__question {
  width: 85%; }

.subscribe-faq .ui-accordion-content {
  border: 1px solid #e1e1e1;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #000000;
  font-size: 15px;
  font-size: 0.8823529412rem;
  line-height: 1.6666666667;
  padding: 1.5em 1.5em 1.5em 2.5em; }

.ui-accordion-content p:first-of-type {
  display: inline; }

.ui-accordion-content p {
  margin: 1.5em 0; }

.sub-title {
  color: #fff; }

/* ==========================================================================
   #SHARING (ADDTHIS)
   ========================================================================== */
.c-sharing--horizontal {
  margin-bottom: 48px;
  text-align: center; }

.c-sharing--vertical {
  width: 48px; }
  @media (min-width: 46.25em) {
    .c-sharing--vertical {
      float: left;
      margin-bottom: 24px;
      margin-left: -87px;
      margin-right: 24px;
      position: absolute;
      top: 0; } }
.c-sharing__item {
  display: inline-block;
  position: relative; }
  .c-sharing__item:before {
    background-image: url(assets/images/share-sprite.png);
    background-repeat: no-repeat;
    content: '';
    display: block;
    height: 48px;
    width: 48px; }
    @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
      .c-sharing__item:before {
        background-image: url(assets/images/share-sprite@2x.png);
        background-size: 48px 240px; } }
  @media (min-width: 46.25em) {
    .c-sharing--vertical .c-sharing__item {
      display: block;
      margin-bottom: 0; } }
.addthis_button_facebook:before {
  background-position: 0 0; }

.addthis_button_twitter:before {
  background-position: 0 -48px; }

.addthis_button_print:before {
  background-position: 0 -96px; }

.addthis_button_email:before {
  background-position: 0 -144px; }

.addthis_button_more .at-icon-wrapper,
.addthis_button_more .at-icon {
  display: none !important; }

.addthis_button_more:before {
  background-position: 0 -193px; }

/* ==========================================================================
   #LISTINGS: EDUCATION, JAZZ RADIO, JAZZ FESTIVALS
   ========================================================================== */
.listing-preview {
  border-top: 1px solid #c2c2c2;
  margin-top: 48px;
  padding-top: 48px; }
  .listing-preview:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0; }
  .listing-preview .entry-excerpt {
    position: relative; }
  @media (min-width: 46.25em) {
    .listing-preview .listing-preview__btn {
      bottom: 0;
      position: absolute;
      right: 0;
      width: 103px; } }
.c-listing-details__item {
  margin-bottom: 10px; }
  @media (min-width: 46.25em) {
    .c-listing-details__item {
      display: grid;
      grid-template-columns: [category] 40% [description] 1fr;
      margin-bottom: 5px; } }
@media (min-width: 46.25em) {
  .c-listing-details__label {
    white-space: nowrap;
    grid-column: category; } }

@media (min-width: 46.25em) {
  .c-listing-details__content {
    grid-column: description; } }

.single-education .c-listing-details {
  border-bottom: 1px solid #c2c2c2;
  margin-bottom: 48px;
  padding-bottom: 48px; }

.c-alpha-filter-list {
  font-size: 21px;
  font-size: 1.2352941176rem;
  line-height: normal; }
  @media (min-width: 46.25em) {
    .c-alpha-filter-list {
      display: flex;
      justify-content: space-between; } }
.c-alpha-filter-list__item {
  height: 34px;
  width: 34px; }
  @media (min-width: 46.25em) {
    .c-alpha-filter-list__item {
      height: auto;
      width: auto; } }
  .c-alpha-filter-list__item a {
    color: #8f8f8f; }
    .c-alpha-filter-list__item a:focus, .c-alpha-filter-list__item a:hover {
      color: #4063e6; }

@media (min-width: 61.25em) {
  .c-education-filters__search-form {
    display: flex; } }

.c-education-filters__education-type-search,
.c-education-filters__location-search {
  margin-bottom: 15px;
  max-width: 338px; }
  @media (min-width: 61.25em) {
    .c-education-filters__education-type-search,
    .c-education-filters__location-search {
      margin-right: 15px;
      margin-bottom: 0;
      max-width: 230px; } }
  .c-education-filters__education-type-search select,
  .c-education-filters__location-search select {
    width: 100%; }

.c-education-filters__keyword-search {
  max-width: 338px;
  width: 100%; }
  @media (min-width: 46.25em) {
    .c-education-filters__keyword-search {
      display: flex;
      max-width: 555px;
      width: 555px; } }
  @media (min-width: 61.25em) {
    .c-education-filters__keyword-search {
      margin-left: auto;
      width: 555px; } }
.c-education-filters__search-form-input {
  display: block;
  margin-bottom: 12px;
  max-width: 338px;
  padding: 7px;
  width: 100%; }
  @media (min-width: 46.25em) {
    .c-education-filters__search-form-input {
      display: inline-block;
      margin-bottom: 0;
      margin-right: 15px;
      width: 60.79136691%; } }
.c-education-filters__search-form-btn {
  display: block;
  width: 100%; }
  @media (min-width: 46.25em) {
    .c-education-filters__search-form-btn {
      display: inline-block;
      width: 37.20863309%; } }
/* ==========================================================================
   #EVENTS
   ========================================================================== */
/**
 * Sponosor Header
 */
.c-events-sponsor {
  background: #2f0073 url(assets/images/sponsor-bg-image.jpg) 50% 30% no-repeat;
  display: flex;
  height: 217px;
  margin-bottom: 48px; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .c-events-sponsor {
      background-image: url(assets/images/sponsor-bg-image@2x.jpg);
      background-size: 1603px 1069px; } }
.c-events-sponsor__item {
  display: block;
  margin: auto;
  padding: 24px; }

/**
 * Events List View
 */
.events-list .tribe-events-loop {
  max-width: none; }

.tribe-events-list-content {
  position: relative; }
  @media (min-width: 61.25em) {
    .tribe-events-list-content {
      width: 53.30990041%; } }
.tribe-events-list .tribe-events-list-separator-month {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important; }

.tribe-events-list .type-tribe_events {
  border-bottom: none;
  margin-bottom: 24px;
  padding: 0 0 12px;
  position: relative; }
  @media (max-width: 46.24em) {
    .tribe-events-list .type-tribe_events {
      margin-left: auto;
      margin-right: auto;
      max-width: 370px; } }
.tribe-events-list .tribe-events-loop .tribe-events-event-image {
  position: relative; }
  @media (min-width: 61.25em) {
    .tribe-events-list .tribe-events-loop .tribe-events-event-image {
      width: 43.35090803%; } }
  .tribe-events-list .tribe-events-loop .tribe-events-event-image img {
    -webkit-clip-path: polygon(33% 0%, 0% 47%, 0% 100%, 92% 100%, 100% 88%, 100% 0%);
    clip-path: polygon(33% 0%, 0% 47%, 0% 100%, 92% 100%, 100% 88%, 100% 0%); }
  @media (max-width: 61.24em) {
    .tribe-events-list .tribe-events-loop .tribe-events-event-image {
      float: none;
      margin-bottom: 24px;
      width: 100%; } }
.tribe-events-list .tribe-events-list-event-title,
.tribe-events-list .tribe-events-event-meta {
  width: 70%; }

@media (min-width: 61.25em) {
  .tribe-events-list .tribe-events-event-cost {
    position: absolute;
    right: 0;
    top: 8px; } }

.tribe-events-list .tribe-events-event-cost span {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1;
  min-width: 75px;
  padding: 12px; }

.tribe-events-list .tribe-events-list-event-title {
  font-size: 24px;
  font-size: 1.4117647059rem;
  line-height: normal; }

.tribe-events-list .tribe-event-url {
  color: #4063e6; }
  .tribe-events-list .tribe-event-url:hover, .tribe-events-list .tribe-event-url:focus {
    color: #000; }

.tribe-events-list .tribe-events-event-meta {
  margin-top: 5px; }
  @media (max-width: 46.24em) {
    .tribe-events-list .tribe-events-event-meta {
      border: none;
      padding: 0; } }
.tribe-events-list .tribe-events-venue-details {
  font-style: italic;
  font-weight: 300; }
  @media (max-width: 46.24em) {
    .tribe-events-list .tribe-events-venue-details {
      border: none;
      padding: 0; } }
@media (max-width: 46.24em) {
  .tribe-events-list .tribe-event-schedule-details {
    border: none;
    padding: 0 0 15px; } }

.tribe-events-list .tribe-events-list-event-description {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.6428571429; }

.tribe-events-list #tribe-events .tribe-events-list-event-description > p:last-of-type {
  margin-bottom: 0; }

.tribe-events-list .tribe-events-content {
  max-width: 92.52747253%; }

.tribe-events-list .tribe-events-loop .tribe-event-featured {
  background: #fff;
  box-shadow: 5px 8.66px 10px 0px rgba(0, 0, 0, 0.02); }
  .tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-meta,
  .tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-content {
    color: inherit !important; }
  .tribe-events-list .tribe-events-loop .tribe-event-featured .c-event-list-date-badge {
    left: 0; }
  .tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost .ticket-cost {
    background-color: transparent;
    border: 1px solid #ddd;
    color: inherit !important; }
  .tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-event-schedule-details {
    font-weight: 700; }
  .tribe-events-list .tribe-events-loop .tribe-event-featured a,
  .tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-list-event-title a {
    color: #4063e6; }
  .tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-image {
    background: #f9f9fb;
    max-height: 463px;
    overflow: hidden;
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 92% 100%, 100% 88%, 100% 0%);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 92% 100%, 100% 88%, 100% 0%); }
    .tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-image img {
      -webkit-clip-path: polygon(125px 0%, 0% 125px, 0% 100%, 92% 100%, 100% 88%, 100% 0%);
      clip-path: polygon(125px 0%, 0% 125px, 0% 100%, 92% 100%, 100% 88%, 100% 0%); }
  .tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-list-content {
    width: 100%; }

/**
 * Pagination
 */
.events-list #tribe-events-footer {
  border-top: 2px solid #dddddd;
  padding-top: 18px; }
  .events-list #tribe-events-footer a {
    color: #000; }
    .events-list #tribe-events-footer a:hover, .events-list #tribe-events-footer a:focus {
      color: #4063e6; }

/**
 * Buttons
 */
#tribe-events .tribe-events-button,
.tribe-events-button {
  background-color: #4063e6;
  font-size: 16px;
  font-size: 0.9411764706rem;
  line-height: 1.1;
  border-radius: 0;
  font-weight: 400;
  padding: 12px 20px;
  text-transform: none; }

a.tribe-events-gcal, a.tribe-events-ical {
  clear: none; }

.tribe-events-add-event {
  float: right;
  margin-top: 21px;
  margin-left: 21px; }

.tribe-events-back .c-btn {
  text-transform: none; }
  .tribe-events-back .c-btn span {
    position: relative; }
    .tribe-events-back .c-btn span:before {
      content: "";
      display: inline-block;
      margin-right: 12px;
      border-width: 5px;
      border-style: solid;
      border-color: transparent white transparent transparent; }

/**
 * Single View
 */
.single-tribe_events .tribe-events-single-event-title {
  font-size: 52px !important;
  font-size: 3.0588235294rem !important;
  line-height: 1.0961538462 !important;
  letter-spacing: -2px; }

@media (min-width: 61.25em) {
  .single-tribe_events .tribe-events-event-image {
    float: right;
    width: 48.27182191%; } }

.single-tribe_events .tribe-events-event-meta {
  font-size: 17px;
  font-size: 1rem;
  line-height: 1.5882352941;
  border: none; }
  .single-tribe_events .tribe-events-event-meta dd {
    color: #545353;
    margin-left: 0; }
    .single-tribe_events .tribe-events-event-meta dd:last-child {
      margin-bottom: 48px; }
  .single-tribe_events .tribe-events-event-meta .tribe-events-single-section-title {
    margin: 0 0 12px; }

.single-tribe_events .tribe-events-event-meta .column,
.single-tribe_events .tribe-events-event-meta .tribe-events-meta-group {
  display: block;
  float: none;
  padding-left: 0; }

.single-tribe_events #tribe-events-content .tribe-events-event-meta dl {
  margin-bottom: 24px; }

.single-tribe_events #tribe-events-content .tribe-events-event-meta dd {
  margin-bottom: 0; }

.single-tribe_events .tribe-events-single-event-description {
  border-bottom: 1px solid #c2c2c2;
  padding-bottom: 24px;
  margin-bottom: 24px; }

/**
 * Badge
 */
.c-event-list-date-badge {
  background: #fff;
  border-radius: 10px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  width: 87px; }

.c-event-list-date-badge__month {
  background-color: #dd3436;
  color: #fff;
  font-size: 11px;
  font-size: 0.6470588235rem;
  line-height: 1;
  padding: 6px 2px;
  border-radius: 10px 10px 0 0; }

.c-event-list-date-badge__date {
  font-size: 35px;
  font-size: 2.0588235294rem;
  line-height: 1.4; }

.c-event-list-date-badge__day {
  font-size: 9px;
  font-size: 0.5294117647rem;
  line-height: 1;
  font-weight: bold;
  padding-bottom: 8px; }

/**
 * Events List View: Widget
 */
.tribe-list-widget {
  margin-bottom: 12px; }

.tribe-events-list-widget-events {
  border-bottom: 1px solid #c2c2c2;
  min-height: 90px;
  padding-left: 82px !important;
  padding-bottom: 24px !important;
  position: relative; }
  .tribe-events-list-widget-events:last-child {
    border-bottom: none;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important; }
  .tribe-events-list-widget-events .tribe-event-duration {
    font-size: 12px;
    font-size: 0.7058823529rem;
    line-height: 1;
    font-weight: bold;
    padding-bottom: 6px !important; }
  .tribe-events-list-widget-events .tribe-event-title {
    font-size: 15px;
    font-size: 0.8823529412rem;
    line-height: 1;
    font-weight: normal; }
  .tribe-events-list-widget-events .tribe-address {
    font-size: 10px;
    font-size: 0.5882352941rem;
    line-height: 1.1; }
  .tribe-events-list-widget-events .c-event-list-date-badge {
    left: 0;
    width: 60px; }
  .tribe-events-list-widget-events .c-event-list-date-badge__month {
    font-size: 8px;
    font-size: 0.4705882353rem;
    line-height: 1; }
  .tribe-events-list-widget-events .c-event-list-date-badge__date {
    font-size: 22px;
    font-size: 1.2941176471rem;
    line-height: 1.4; }
  .tribe-events-list-widget-events .c-event-list-date-badge__day {
    font-size: 8px;
    font-size: 0.4705882353rem;
    line-height: 1; }

.tribe-events-widget-link {
  padding-left: 82px; }

.tribe-events-list-widget .tribe-events-widget-link a {
  font-weight: normal !important;
  position: relative; }
  .tribe-events-list-widget .tribe-events-widget-link a:after {
    content: "";
    display: inline-block;
    margin-left: 6px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #4063e6; }

/* ==========================================================================
   #NEW JAZZ NOW
   ========================================================================== */
.term-new-jazz-now .site-content {
  padding-top: 0; }

.page-header--new-jazz-now {
  background: #000 url(assets/images/new-jazz-now-hero.jpg) 50% no-repeat;
  display: flex;
  height: 235px;
  padding-left: 24px;
  padding-right: 24px; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .page-header--new-jazz-now {
      background-image: url(assets/images/new-jazz-now-hero@2x.jpg);
      background-size: 1600px 235px; } }
.page-header--new-jazz-now-logo {
  margin: auto; }

.c-post-sorting {
  border-bottom: 2px solid #bfbfbf;
  color: #818181;
  font-weight: 500;
  letter-spacing: 0.015em;
  margin-bottom: 60px;
  padding-bottom: 6px; }
  @media (min-width: 46.25em) {
    .c-post-sorting {
      text-align: right; } }
  .c-post-sorting a {
    color: #818181; }
  .c-post-sorting .c-post-sorting__current {
    color: #000; }

.c-post-sorting__spacer {
  padding-left: 6px;
  padding-right: 6px; }

.new-jazz-now-preview a {
  color: #000; }
  .new-jazz-now-preview a:hover, .new-jazz-now-preview a:focus {
    color: #4063e6; }

.new-jazz-now-preview__cover {
  margin-bottom: 30px; }

.new-jazz-now-preview__artist {
  font-size: 24px;
  font-size: 1.4117647059rem;
  line-height: normal;
  margin-bottom: 0; }

.new-jazz-now-preview__album {
  font-size: 21px;
  font-size: 1.2352941176rem;
  line-height: normal;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 10px; }

.new-jazz-now-preview__label {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: normal;
  font-weight: 500; }

/* ==========================================================================
   #Media.NET ADS
   ========================================================================== */
.medianet-desktop-outer-box {
  background-color: transparent;
  margin: 0 10px 20px 10px;
  padding: 8px 0;
  text-align: center; }

.medianet-desktop-inner-box {
  background: url(assets/img/leaderboard-ad-heading.png) -2px 50% no-repeat;
  background-color: transparent;
  min-height: 70px;
  min-width: 600px;
  max-width: 825px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 11px; }

.medianet-mobile-outer-box {
  background-color: transparent;
  margin: 0 0 1.5em;
  padding: 2px 0 5px 0;
  clear: both; }

@media screen and (min-width: 720px) and (max-width: 1023px) {
  .medianet-mobile-outer-box {
    width: 95%; } }

.medianet-mobile-outer-box select {
  max-width: 100%; }

.medianet-mobile-inner-box {
  background-color: transparent;
  display: block;
  min-width: 300px;
  min-height: 50px;
  margin-top: -15px;
  margin-left: auto;
  margin-right: auto; }

/* ==========================================================================
   #IN-CONTENT ADS
   ========================================================================== */
.desktop-incontent-outer-box {
  background-color: transparent;
  margin: 0 10px 20px 10px;
  padding: 8px 0;
  text-align: center;
  clear: both; }

.desktop-incontent-inner-box {
  background: url(assets/images/leaderboard-ad-heading.png) -2px 50% no-repeat;
  min-height: 90px;
  min-width: 728px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8px; }

.mobile-incontent-outer-box {
  display: block;
  width: 95%;
  margin: 0 auto;
  border-top: 1px solid #ebecee;
  border-bottom: 1px solid #ebecee;
  text-align: center; }

.mobile-incontent-inner-box {
  display: block;
  padding-bottom: 24px;
  text-align: center; }

.mobile-incontent-ad-label {
  height: 15px;
  margin-top: 0;
  color: #707070;
  font-size: 10px;
  text-align: center; }

/* ==========================================================================
   #NGGC
   ========================================================================== */
.nggc-imagebrowser {
  min-width: 300px; }

.nggc-container {
  position: relative;
  max-width: 100%;
  min-width: 300px;
  padding: 0px;
  z-index: 1; }

.nggc-background {
  background: #CCCCCC; }

@media (min-width: 740px) {
  .nggc-anchor-spacing {
    height: 50px; }
  .nggc-image {
    position: relative;
    max-width: 800px;
    margin: 0 auto; }
  .nggc-image-ad {
    min-height: 600px; }
  .nggc-ad-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    margin: -15% 0 0 -25%; }
  .nggc-back {
    top: 46%;
    margin: 0px; }
  .nggc-next {
    top: 46%;
    margin: 0px;
    z-index: 999; } }

@media (min-width: 660px) and (max-width: 739px) {
  .nggc-anchor-spacing {
    height: 50px; }
  .nggc-image {
    position: relative;
    max-width: 600px;
    margin: 0 auto; }
  .nggc-image-ad {
    min-height: 400px; }
  .nggc-ad-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    margin: -15% 0 0 -25%; }
  .nggc-back {
    top: 46%;
    margin-top: -25%; }
  .nggc-next {
    top: 46%;
    margin-top: -25%;
    z-index: 999; } }

@media (min-width: 501px) and (max-width: 659px) {
  .nggc-anchor-spacing {
    height: 50px; }
  .nggc-image {
    position: relative;
    max-width: 500px;
    margin: 0 auto; }
  .nggc-image-ad {
    min-height: 400px; }
  .nggc-ad-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    margin: -15% 0 0 -25%; }
  .nggc-back {
    top: 46%;
    margin: 0px; }
  .nggc-next {
    top: 46%;
    margin: 0px;
    z-index: 999; } }

@media (min-width: 300px) and (max-width: 500px) {
  .nggc-anchor-spacing {
    height: 0px; }
  .nggc-image {
    position: relative;
    max-width: 300px;
    min-width: 300px;
    margin: 0 auto; }
  .nggc-image-ad {
    min-width: 300px;
    min-height: 250px; }
  .nggc-ad-wrapper {
    min-width: 300px; }
  .nggc-back {
    top: 43%;
    margin: 0px; }
  .nggc-next {
    top: 43%;
    margin: 0px;
    z-index: 999; } }

.nggc-container a {
  display: block !important;
  font-size: 0;
  margin: 0px;
  text-align: center; }

.nggc-container-ad {
  text-align: center; }

.nggc-imagebrowser-nav {
  padding: 5px;
  text-align: center; }

.nggc-back {
  position: absolute;
  left: 15px;
  width: 32px;
  height: 58px;
  padding: 0px;
  z-index: 999; }

.nggc-next {
  position: absolute;
  right: 15px;
  width: 32px;
  height: 58px;
  padding: 0px;
  z-index: 999; }

.nggc-dot-container {
  display: inline-block;
  padding-top: 20px;
  padding-bottom: 20px; }

.nggc-dot-float {
  float: left;
  height: 40px; }

.nggc-dot-padding {
  padding-right: 19px; }

.nggc-imagebrowser-desc {
  clear: both; }

/* Begin Contest Styles */
.single-contest .site-content {
  padding-top: 0; }

.single-gallery-submission h1.entry-title,
.single-contest-submission h1.entry-title,
.single-photo-submission h1.entry-title {
  border-bottom: 1px solid #ccc; }

.gallery-submission .entry-header,
.contest-submission .entry-header,
.photo-submission .entry-header {
  padding-bottom: 35px; }

.gallery-submission .entry-header h1.entry-title,
.contest-submission .entry-header h1.entry-title,
.photo-submission .entry-header h1.entry-title {
  border-bottom: 0;
  margin: 0; }

.gallery-submission .navigation,
.contest-submission .navigation,
.photo-submission .navigation {
  display: block;
  overflow: hidden;
  padding: 10px 0 30px; }

.gallery-submission .navigation a,
.contest-submission .navigation a,
.photo-submission .navigation a {
  font-size: 20px; }

.gallery-submission .navigation .alignleft a:before,
.contest-submission .navigation .alignleft a:before,
.photo-submission .navigation .alignleft a:before {
  content: "&larr; "; }

.gallery-submission .navigation .alignright a:after,
.contest-submission .navigation .alignright a:after,
.photo-submission .navigation .alignright a:after {
  content: " &rarr;"; }

#mdv-image-upload-form .row,
#mdv-image-upload-form input[type="file"] {
  overflow: hidden;
  clear: both;
  margin: 0 0 1em; }

#mdv-image-upload-form label {
  width: 20%;
  float: left;
  font-weight: bold; }

#mdv-image-upload-form input,
#mdv-image-upload-form textarea {
  width: 80%;
  float: left; }

#mdv-image-upload-form input[type="submit"] {
  width: auto; }

.image-information {
  overflow: hidden;
  background: transparent;
  border-radius: 4px;
  border: 1px solid #d8dee3;
  padding: 30px 30px;
  margin: 10px 0; }
  .image-information .row {
    overflow: hidden;
    margin-bottom: 1em; }

.single-gallery-submission #comments,
.single-contest-submission #comments,
.single-photo-submission #comments {
  overflow: hidden;
  background: transparent;
  border-radius: 4px;
  border: 1px solid #d8dee3;
  padding: 30px 30px 20px;
  margin: 10px 0px; }

.e2ma_signup_form_row,
.e2ma_signup_form_groups,
.e2ma_signup_form_required_footnote {
  border: none !important; }

.contest-navigation {
  list-style-type: none;
  margin: 1em 0;
  padding: 0;
  text-align: center;
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }

.contest-navigation li {
  float: none;
  display: table-cell;
  width: 1%;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  padding: 8px 12px;
  border-radius: 4px;
  position: relative; }

.contest-navigation li:first-child:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.contest-navigation li:not(:first-child):not(:last-child) {
  border-radius: 0; }

.contest-navigation li:last-child:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.contest-navigation li:hover,
.contest-navigation li.current_page_item {
  background: #e6e6e6; }

.contest-navigation li a {
  display: inline-block;
  width: 100%; }

.contest-navigation li a:hover {
  text-decoration: none; }

.gallery-terms.well {
  text-align: center; }

.full-width-ad-block {
  text-align: center;
  padding: 30px 0;
  border-bottom: 1px solid #dfdfdf; }

.contest-canvas .site-header {
  background: none;
  padding: 30px 0 40px;
  text-align: center; }
  .contest-canvas .site-header .contest-logo {
    margin-bottom: 30px;
    max-width: 400px; }
  .contest-canvas .site-header .contest-banner {
    margin-bottom: 60px; }

.contest-sponsors {
  background: #f2f2f5;
  text-align: center; }
  .contest-sponsors a {
    display: inline-block;
    padding: 17px 2%;
    width: 31.3333%; }
    @media (min-width: 61.25em) {
      .contest-sponsors a {
        width: 16%; } }
.contest-sponsors.has-featured-sponsors {
  background: #fff;
  border-bottom: 1px solid #e3e3e3; }

.has-featured-sponsors .contest-sponsors__featured {
  background: #f2f2f5;
  border-bottom: 1px solid #e3e3e3; }

.contest-sponsors .contest-sponsors__featured a {
  background-color: #f3f3f3;
  width: 26%;
  padding: 17px 2%; }
  @media (min-width: 992px) {
    .contest-sponsors .contest-sponsors__featured a {
      width: auto;
      padding: 17px 20px; }
      .contest-sponsors .contest-sponsors__featured a img {
        max-height: 88px;
        max-width: 200px;
        width: auto;
        position: relative; } }
@media (min-width: 992px) {
  .contest-sponsors .contest-sponsors__featured--single {
    z-index: 50;
    display: block;
    height: 113px;
    overflow: hidden;
    margin-top: -113px;
    position: relative; } }

.contest-sponsors .contest-sponsors__featured--single a {
  background-color: transparent;
  display: inline-block;
  margin: 0 auto;
  padding: 17px 2%;
  position: relative;
  width: 31%; }
  @media (min-width: 992px) {
    .contest-sponsors .contest-sponsors__featured--single a {
      height: 113px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 24px 40px 0;
      width: 290px; }
      .contest-sponsors .contest-sponsors__featured--single a:before {
        background-color: #f3f3f3;
        border-radius: 70%;
        content: '';
        height: 290px;
        position: absolute;
        top: 0;
        width: 290px; } }
#contest-basics {
  overflow: hidden;
  clear: both;
  text-align: center;
  margin: 40px 0px; }
  #contest-basics p {
    margin-bottom: 0;
    font-size: 18px; }

#contest-intro {
  overflow: hidden; }

#contest-nav {
  text-align: center;
  padding: 20px 0;
  clear: both;
  margin-bottom: 60px; }

#contest-nav.contest-nav-bottom {
  padding-top: 10px; }

.mdv-buy-submissions {
  border: 2px solid #4063e6; }

.mdv-buy-submissions:hover {
  border: 2px solid #000; }

#contest-prizes {
  background: #f2f2f5;
  text-align: center;
  clear: both; }

#contest-prize-deck {
  background: #f2f2f5; }
  #contest-prize-deck .prize-content {
    margin: 0 auto 48px;
    max-width: 812px; }
  #contest-prize-deck .prize-image {
    background: linear-gradient(#f2f2f5 75%, #ffffff 75%);
    text-align: center; }

.col-prize {
  background: #fff;
  border: 1px solid #e1e1e1;
  min-height: 760px;
  padding: 30px; }
  @media all and (max-width: 768px) {
    .col-prize {
      width: auto;
      margin-bottom: 20px; } }
  .col-prize ul {
    list-style: none;
    margin-left: 0; }
  .col-prize li {
    border-bottom: 1px solid #e2e2e2;
    padding: 1em 0;
    text-align: left; }
    .col-prize li:first-child {
      padding-top: 0; }
    .col-prize li:last-child {
      border-bottom: none;
      padding-bottom: 0; }

.place {
  color: #333333;
  background: #fff;
  font-size: 48px;
  line-height: .5;
  padding: 0 0 .75em; }
  .place span {
    font-size: 18px; }

.contest-divider {
  position: relative; }
  .contest-divider:after {
    background-color: #e6e6e6;
    content: '';
    display: block;
    height: 1px;
    margin: 48px auto;
    max-width: 1085px;
    width: 90%; }

#contest-quote {
  background-color: #000000;
  color: white;
  padding: 37px 12px;
  text-align: center; }
  #contest-quote blockquote {
    font-size: 26px;
    font-size: 1.5294117647rem;
    line-height: 1.4473684211;
    letter-spacing: -0.2px;
    margin: 24px 0;
    border-left: none; }
    @media (min-width: 61.25em) {
      #contest-quote blockquote {
        font-size: 38px;
        font-size: 2.2352941176rem;
        line-height: 1.4473684211; } }
  #contest-quote figcaption {
    border-top: 1px solid #bfbfbf;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding-top: 14px;
    text-transform: uppercase; }

#contest-faq .ui-accordion-header {
  border-bottom: 1px solid #e1e1e1;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  margin: .75em 0 0;
  padding: .5em 1em 1em 53px;
  position: relative;
  outline: none !important; }
  #contest-faq .ui-accordion-header.ui-state-active {
    border-bottom-color: #f9f9fb;
    margin-bottom: -2px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }

#contest-faq .ui-accordion-header:before {
  background: url(assets/images/contest-arrow.png) 0 3px no-repeat;
  background-size: 9px;
  display: inline-block;
  content: ' ';
  height: 30px;
  left: 0;
  position: absolute;
  vertical-align: middle;
  transition: all 300ms ease-in-out;
  width: 16px; }

#contest-faq .ui-accordion-header.ui-state-active:before {
  background-position: 0;
  transform: rotate(90deg); }

#contest-faq .ui-accordion-content {
  border-bottom: 1px solid #e1e1e1;
  font-weight: bold;
  padding: 1.5em 1.5em 1.5em 53px;
  position: relative; }

.contest-faq__q-label,
.contest-faq__a-label {
  font-weight: normal;
  left: 33px;
  position: absolute; }

.ui-accordion-content p:first-of-type {
  display: inline; }

.ui-accordion-content p {
  margin: 1.5em 0; }

#contest-rules {
  border: 1px solid #dddddd;
  max-height: 1200px;
  overflow: hidden;
  overflow-y: scroll;
  padding: 24px; }

#contest-faq {
  margin-bottom: 60px;
  overflow: hidden;
  clear: both; }
  #contest-faq h3 {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    line-height: 1.3; }

.contest-footer {
  background: #000; }

.page-template-page-purchase #content input[type="radio"] {
  margin: 0 .5em 1em .25em; }

.page-template-page-purchase #content input[type="submit"] {
  margin: 1.5em 0 0; }

#mdv-payment-form label {
  width: 20%;
  float: left;
  font-weight: bold; }

#mdv-payment-form .form-row {
  overflow: hidden;
  clear: both;
  margin: 0 0 1em; }

#mdv-payment-form input,
#mdv-payment-form textarea {
  width: 80%;
  float: left; }

#mdv-payment-form input[type="submit"] {
  width: auto; }

#cc-exp input {
  width: 40px; }

#cc-exp span {
  float: left; }

#cc-cvc input {
  width: 87px; }

#cc-terms label {
  width: auto; }

#cc-terms input {
  float: none;
  margin-left: 6px;
  width: auto; }

.payment-errors {
  display: block;
  font-weight: bold;
  color: #f24141;
  margin-bottom: 2em;
  font-size: 24px; }

#mdv-image-upload-form .row.file-upload label {
  width: 100%;
  margin-bottom: .25em; }

#mdv-image-upload-form .row.file-upload label .red {
  color: #f24141; }

.parsley-errors-list {
  margin: 0;
  padding: 0;
  width: 100%;
  clear: both;
  color: #f24141; }

.single-gallery-submission .feat-img,
.single-contest-submission .feat-img,
.single-photo-submission .feat-img {
  position: relative; }

.single-gallery-submission .interaction-bar,
.single-contest-submission .interaction-bar,
.single-photo-submission .interaction-bar {
  opacity: 1; }

.gallery-submission.col-md-4,
.contest-submission.col-md-4 {
  border-bottom: none; }

@media (min-width: 992px) {
  .gallery-submission.col-md-4,
  .contest-submission.col-md-4 {
    width: 32%;
    margin-right: 1.333%;
    margin-bottom: 0; }
  .gallery-submission.col-md-4 .entry-content,
  .contest-submission.col-md-4 .entry-content {
    margin-top: .75em; } }

.archive.author .gallery-container.row {
  margin-left: 0;
  margin-right: 0; }

.has-interaction-bar {
  position: relative; }

/* ENTRY FEE STYLES */
.contest-entry-fees {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
  padding: 24px 12px; }

.entry-fee {
  margin: 0 24px; }

.entry-fee__price {
  display: block;
  font-size: 36px;
  font-size: 2.1176470588rem;
  line-height: 1.1666666667;
  font-weight: bold;
  letter-spacing: -0.02em;
  margin-bottom: 24px; }

.entry-fee__description {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.7142857143;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase; }
  @media (min-width: 61.25em) {
    .entry-fee__description {
      margin-bottom: 0; } }
/* END ENTRY FEE STYLES */
/* INTERACTION BAR */
.entry-content .interaction-bar {
  opacity: 0;
  transition: all ease-in-out .2s; }

.entry-content:hover .interaction-bar {
  opacity: 1; }
  @media all and (max-width: 1024px) {
    .entry-content:hover .interaction-bar {
      opacity: 0; } }
.interaction-bar .author-name a {
  color: #fff !important; }
  .interaction-bar .author-name a:hover {
    text-decoration: underline; }

.interaction-bar {
  padding-top: 15px;
  padding-bottom: 5px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(20, 20, 20, 0), #141414); }
  .interaction-bar .author {
    position: relative;
    float: left; }
  .interaction-bar .author-name {
    font-family: "lato", Helvetica, Arial, sans-serif !important;
    font-size: 13px !important;
    display: inline-block !important;
    position: relative !important;
    top: 5px !important;
    left: 6px !important;
    color: white !important; }
  .interaction-bar .author img {
    float: left;
    margin-left: 10px;
    margin-bottom: 10px;
    width: 35px;
    height: auto;
    border-radius: 50%; }
  .interaction-bar button {
    cursor: pointer; }
  .interaction-bar .btn-block {
    float: right;
    margin-right: 15px; }

.single .entry-content .interaction-bar .author img {
  min-width: 0 !important; }

/* END INTERACTION BAR */
/* FINALISTS */
.finalist-gallery .entry-header,
.gallery-actions .entry-header {
  overflow: hidden; }

.gallery-container,
.gallery-actions {
  clear: both;
  overflow: hidden;
  padding-bottom: 30px; }
  @media (min-width: 61.25em) {
    .gallery-container,
    .gallery-actions {
      padding-bottom: 60px; } }
.gallery-actions .o-layout__item {
  margin-bottom: 24px; }
  @media (min-width: 61.25em) {
    .gallery-actions .o-layout__item {
      margin-bottom: 0; } }
.gallery-actions #order {
  float: right; }

.post-type-archive-gallery-submission .page-header h1 {
  border: none; }

.post-type-archive-gallery-submission article,
.page-template-page-gallery article, .single-gallery article, .post-type-archive-gallery-submission article, .single-contest .finalist-gallery article {
  border: none;
  padding: 0;
  line-height: 0; }

.page-template-page-gallery article a img,
.single-gallery article a img,
.single-contest .finalist-gallery article a img {
  width: 245px;
  height: 245px;
  object-fit: cover;
  margin: 1.5em 0 0; }

/* END FINALISTS */
/* IMAGE PROTECTION */
.image-facade-prot {
  left: 0;
  position: absolute;
  width: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/* MULTI-CATEGORY CONTEST LANDING PAGE */
.page-template-page-multicat-contest h2,
.page-template-page-multicat-contest h3,
.page-template-page-multicat-contest h4,
.page-template-page-multicat-contest h5,
.page-template-page-multicat-contest h6 {
  color: #000;
  margin-bottom: 6px; }

.contest-cat-links-container {
  text-align: center;
  padding-bottom: 40px;
  margin-left: 0;
  overflow: hidden; }
  .contest-cat-links-container .contest-cat-link {
    display: block;
    background: #efefef;
    margin-right: 2%;
    padding: 10px;
    width: 30%; }
    .contest-cat-links-container .contest-cat-link:hover {
      text-decoration: none; }
    .contest-cat-links-container .contest-cat-link:nth-child(3n+3) {
      margin-right: 0; }
    .contest-cat-links-container .contest-cat-link img {
      width: 100%; }
    .contest-cat-links-container .contest-cat-link h2 {
      margin: .25em 0 0; }

.sponsors-inner {
  padding: 17px 0px; }

.contest-logo {
  text-align: center; }

.contest-banner-image-container {
  height: 300px;
  overflow: hidden;
  position: relative; }
  @media (min-width: 61.25em) {
    .contest-banner-image-container {
      height: auto; } }
.contest-banner {
  max-width: initial;
  height: 100%;
  margin-bottom: 0; }
  @media (min-width: 61.25em) {
    .contest-banner {
      height: auto;
      max-width: none;
      width: 100%; } }
.contest-basic-content {
  padding-bottom: 20px; }

.contest-basic-content ul {
  margin-left: 0; }

.block-content {
  clear: both; }

/* START JUDGES STYLES */
.author-block {
  overflow: hidden;
  background: #fff;
  padding: 45px;
  margin-bottom: 30px;
  border: 1px solid #e1e1e1;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px; }

@media (max-width: 599px) {
  .author-block {
    padding: 45px 30px; } }

.author-block:nth-of-type(even) .image {
  float: right; }

@media (max-width: 599px) {
  .author-block:nth-of-type(even) .image {
    float: none; } }

.author-block:nth-of-type(even) .content {
  padding-left: 0;
  padding-right: 5%; }

@media (max-width: 599px) {
  .author-block:nth-of-type(even) .content {
    padding: 0; } }

.author-block .image {
  float: left;
  width: 24%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 5px solid #e1e5e7;
  line-height: 0; }

@media (max-width: 599px) {
  .author-block .image {
    width: 140px;
    float: none;
    margin: 0 auto; } }

.author-block .content {
  padding-left: 5%;
  width: 76%;
  float: left; }

@media (max-width: 599px) {
  .author-block .content {
    padding-left: 0;
    width: 100%;
    margin-top: 25px;
    clear: both;
    text-align: center; } }

.author-block h3.name {
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-weight: normal;
  color: #495570;
  font-size: 26px;
  display: inline-block; }

.author-block .handle {
  margin-bottom: 20px;
  line-height: 1.2;
  margin-left: 4px;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-weight: normal;
  font-size: 26px;
  color: #a4aab7;
  display: inline-block; }

/* END JUDGES STYLES */
/* END MULTI-CATEGORY CONTEST LANDING PAGE */
.itsg_single_ajax_remove {
  display: inline-block;
  vertical-align: middle;
  font: inherit;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  text-align: center;
  margin: 0;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  background-color: #f6f9fc;
  border: 1px solid #d8dee3 !important;
  border-radius: 50px;
  color: #6f7c82;
  text-transform: uppercase;
  font-size: 0.8235294118rem;
  line-height: 1.7142857143;
  padding: 4px 24px;
  text-decoration: none; }

.itsg_single_ajax_remove:hover {
  color: #292e31;
  text-decoration: none; }

.hidden {
  display: none; }

.countdown-clock {
  font-family: "PT Serif", Georgia, serif;
  display: flex;
  font-size: 44px;
  font-size: 2.5882352941rem;
  line-height: normal;
  font-weight: bold;
  justify-content: center;
  margin: 40px auto;
  max-width: 1090px;
  position: relative;
  text-align: center; }
  .no-js .countdown-clock {
    display: none; }
  @media (min-width: 61.25em) {
    .countdown-clock {
      font-size: 64px;
      font-size: 3.7647058824rem;
      line-height: normal; }
      .countdown-clock:before {
        background-color: #ddd;
        content: '';
        height: 1px;
        position: absolute;
        top: 50%;
        width: 100%; } }
  .countdown-clock > div {
    background: #f9f9fb;
    border-left: 1px solid #ddd;
    padding: 10px;
    display: inline-block;
    z-index: 2; }
    @media (min-width: 61.25em) {
      .countdown-clock > div {
        width: 180px; } }
  .countdown-clock > div:last-child {
    border-right: 1px solid #ddd; }
  .countdown-clock div > span {
    padding: 0 5px;
    border-radius: 3px;
    display: inline-block; }
  .countdown-clock .countdown-clock__label {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-size: 0.8235294118rem;
    line-height: normal;
    letter-spacing: 0.01em;
    text-transform: uppercase; }

#contest-winners .winner-img,
#contest-winners .finalist-gallery img {
  display: block; }
  @media (min-width: 61.25em) {
    #contest-winners .winner-img,
    #contest-winners .finalist-gallery img {
      margin-left: auto;
      margin-right: auto;
      max-width: 512px; } }
.past-winner a {
  color: #000000; }

.past-winner__title {
  color: #000000;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-size: 0.7647058824rem;
  line-height: 1.6538461538;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase; }

.contest-newsletter-cta {
  background: #1a1a1a;
  background-size: 412px auto;
  color: #fff;
  padding: 24px 0;
  position: relative; }
  @media (min-width: 61.25em) {
    .contest-newsletter-cta {
      padding: 48px 0; } }
.contest-newsletter-cta__heading {
  font-size: 30px;
  font-size: 1.7647058824rem;
  line-height: 1.9666666667;
  letter-spacing: 0.013em; }

.contest-newsletter-cta__form {
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  margin-top: 24px; }
  @media (min-width: 61.25em) {
    .contest-newsletter-cta__form {
      margin-top: 0;
      flex-direction: row;
      justify-content: flex-end; } }
  .contest-newsletter-cta__form #input_46_2 {
    border-color: #1a1a1a;
    margin-bottom: 12px;
    flex-grow: 1;
    min-height: 52px;
    padding: 12px; }
    @media (min-width: 61.25em) {
      .contest-newsletter-cta__form #input_46_2 {
        margin-right: 24px;
        margin-bottom: 0;
        max-width: 360px; } }
  .contest-newsletter-cta__form input[type="submit"] {
    border: 1px solid #4063e6; }
  .contest-newsletter-cta__form input[type="submit"]:hover {
    background-color: transparent;
    border-color: #fff; }

.judge__image img {
  border-radius: 60px; }

.archive-contest-logo {
  background: #f2f2f5;
  align-items: center;
  background-position: center center;
  display: flex;
  height: 245px;
  padding: 24px;
  text-align: center; }

/* End Contest Styles */
/* ==========================================================================
   #WAYPOINTS
   ========================================================================== */
.c-sticky-wrapper {
  position: relative; }

.c-sticky-item--sticking {
  position: fixed;
  top: 0; }

.c-sticky-item--at-bottom {
  bottom: 0;
  position: absolute;
  top: auto !important; }

/* ==========================================================================
   #ADVERTISEMENT
   ========================================================================== */
.ad-advertisement-vertical {
  background: url(assets/images/leaderboard-ad-heading.png) -2px 50% no-repeat;
  min-height: 75px;
  min-width: 300px;
  padding-left: 11px;
  display: inline-block; }

.ad-advertisement-horizontal {
  height: 15px;
  margin-top: -10px;
  color: #707070;
  font-size: 10px;
  text-align: center; }

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0); }

#cboxWrapper {
  max-width: none; }

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%; }

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left; }

#cboxContent {
  position: relative; }

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

#cboxTitle {
  margin: 0; }

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer; }

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic; }

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0; }

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #000;
  background: rgba(0, 0, 0, 0.75); }

#colorbox {
  outline: 0; }

#cboxContent {
  border-radius: 100px;
  margin-top: 32px;
  overflow: visible;
  background: #fff; }

.cboxIframe {
  background: #fff; }

#cboxError {
  padding: 50px;
  border: 1px solid #ccc; }

#cboxLoadedContent {
  background: #fff;
  padding: 30px; }

#cboxLoadingGraphic {
  background: url(assets/images/loading.gif) no-repeat center center; }

#cboxLoadingOverlay {
  background: #000; }

#cboxTitle {
  position: absolute;
  top: -22px;
  left: 0;
  color: #000; }

#cboxCurrent {
  position: absolute;
  top: -22px;
  right: 205px;
  text-indent: -9999px; }

#cboxClose {
  -webkit-appearance: none;
  background: #fff;
  border: 0;
  position: absolute; }

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxClose:active {
  outline: 0; }

#cboxClose {
  right: 15px;
  top: 15px; }

#cboxClose svg {
  fill: #000; }

#cboxClose:hover svg {
  fill: #4063e6; }

.c-modal__content,
.c-modal__footer {
  color: #757679; }

.c-btn--modal {
  display: block;
  width: auto; }

.c-modal__footer {
  margin-left: auto;
  margin-right: auto;
  max-width: 250px; }

/* ==========================================================================
   #WOOCOMMERCE & VIP
   ========================================================================== */
.membership-promotion-header-banner {
  background: #000;
  color: #fff; }

.membership-promotion-header-banner__content-wrapper {
  background: url(assets/images/header-banner-badge.png) center bottom no-repeat;
  background-size: 112px 96px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  min-height: 54px;
  max-width: 680px;
  padding: 20px 10px; }
  @media (min-width: 46.25em) {
    .membership-promotion-header-banner__content-wrapper {
      background-position: left bottom;
      flex-direction: row-reverse;
      min-height: 98px;
      padding: 10px 2px; } }
.membership-promotion-header-banner__content {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.2;
  margin: 10px;
  max-width: 240px;
  text-align: center; }
  @media (min-width: 46.25em) {
    .membership-promotion-header-banner__content {
      text-align: left;
      margin: 0 24px; } }
.membership-promotion-header-banner__link {
  border: 1px solid #4063e6;
  font-size: 13px;
  font-size: 0.7647058824rem;
  line-height: 1.2; }
  @media (min-width: 46.25em) {
    .membership-promotion-header-banner__link {
      width: 211px; } }
  .membership-promotion-header-banner__link:hover {
    background-color: transparent;
    border-color: #fff; }

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: 100%; }

.woocommerce-notices-wrapper {
  clear: both; }

.woocommerce div.product form.cart .variations td {
  vertical-align: middle; }

.woocommerce div.product form.cart .variations select {
  padding: 10px 23px 5px 5px; }

.woocommerce form .form-row label {
  width: auto; }

.checkout.woocommerce-checkout input[type=text],
.checkout.woocommerce-checkout input[type=url],
.checkout.woocommerce-checkout input[type=email],
.checkout.woocommerce-checkout input[type=password],
.checkout.woocommerce-checkout input[type=number],
.checkout.woocommerce-checkout input[type=tel] {
  padding: .625rem; }

.checkout.woocommerce-checkout input[type=text]:focus,
.checkout.woocommerce-checkout input[type=url]:focus,
.checkout.woocommerce-checkout input[type=email]:focus,
.checkout.woocommerce-checkout input[type=password]:focus,
.checkout.woocommerce-checkout input[type=number]:focus,
.checkout.woocommerce-checkout input[type=tel]:focus {
  border-color: #000 !important; }

.checkout.woocommerce-checkout input[type=text]:disabled,
.checkout.woocommerce-checkout input[type=url]:disabled,
.checkout.woocommerce-checkout input[type=email]:disabled,
.checkout.woocommerce-checkout input[type=password]:disabled,
.checkout.woocommerce-checkout input[type=number]:disabled,
.checkout.woocommerce-checkout input[type=tel]:disabled {
  background-color: #eee;
  cursor: not-allowed; }

.checkout.woocommerce-checkout .woo-select {
  position: relative;
  color: inherit; }

.checkout.woocommerce-checkout .woo-select::after {
  content: '\25BE';
  position: absolute;
  top: .625rem;
  right: .9375rem;
  color: #777;
  pointer-events: none; }

.checkout.woocommerce-checkout .woo-select select::-ms-expand {
  display: none; }

.checkout.woocommerce-checkout .woo-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 2.4375rem;
  width: 100%;
  padding-left: .625rem;
  margin-bottom: .625rem;
  font-family: inherit;
  font-size: .875rem;
  border: .0625rem solid #919191;
  border-radius: .1875rem;
  outline: none;
  background-color: white; }

.checkout.woocommerce-checkout .woo-select select:focus {
  border-color: #000 !important; }

.checkout.woocommerce-checkout .woo-select select:disabled {
  background-color: #eee;
  cursor: not-allowed; }

.checkout.woocommerce-checkout .woo-select select {
  width: 80%; }

.checkout.woocommerce-checkout .woo-select:after {
  top: 0.025rem;
  right: .9375rem;
  color: #000; }

.checkout.woocommerce-checkout abbr[title] {
  border-bottom: 0;
  cursor: default;
  text-decoration: none; }

.checkout.woocommerce-checkout abbr.required {
  color: #000; }

.checkout.woocommerce-checkout button[type=submit] {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 1px solid #000;
  color: #000;
  background: none;
  border-radius: 3px;
  padding: 9px 30px;
  font-size: 15px;
  display: inline-block;
  text-decoration: none;
  font-weight: normal; }

.checkout.woocommerce-checkout button[type=submit]:hover {
  background: #000;
  color: white !important; }

table.shop_table {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px; }

table.shop_table th {
  font-weight: 700;
  padding: 9px 12px;
  line-height: 1.5em; }

table.shop_table td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 9px 12px;
  vertical-align: middle;
  line-height: 1.5em;
  background: transparent; }

table.shop_table td small {
  font-weight: normal; }

table.shop_table tbody:first-child tr:first-child th,
table.shop_table tbody:first-child tr:first-child td {
  border-top: 0; }

table.shop_table tfoot td,
table.shop_table tfoot th,
table.shop_table tbody th {
  font-weight: 700;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

body.jt-lp #content {
  text-align: center; }

.landing-page-top .page-title {
  font-size: 40px;
  font-size: 2.3529411765rem;
  line-height: normal; }

body.jt-lp .page-title,
body.jt-lp .page-content {
  padding-left: 15px;
  padding-right: 15px; }

.woocommerce-member-benefits .site-content,
.woocommerce-partner-discounts .site-content,
.page-template-member-page .site-content,
.page-template-partner-discounts .site-content,
.page-template-single-landing-page .site-content {
  padding-top: 0; }

.page-template-single-landing-page .landing-page-top--bg-image .page-content {
  color: #fff; }

.post-type-archive-jazz_radio .page-content,
.post-type-archive-jazz_festivals .page-content,
.post-type-archive-education .page-content,
.woocommerce-member-benefits .page-content,
.woocommerce-partner-discounts .page-content,
.page-template-member-page .page-content,
.page-template-partner-discounts .page-content {
  background: #f9f9fb;
  margin-bottom: 24px; }
  .post-type-archive-jazz_radio .page-content .entry-header,
  .post-type-archive-jazz_festivals .page-content .entry-header,
  .post-type-archive-education .page-content .entry-header,
  .woocommerce-member-benefits .page-content .entry-header,
  .woocommerce-partner-discounts .page-content .entry-header,
  .page-template-member-page .page-content .entry-header,
  .page-template-partner-discounts .page-content .entry-header {
    background: #fff;
    padding: 48px 0; }
  .post-type-archive-jazz_radio .page-content p,
  .post-type-archive-jazz_festivals .page-content p,
  .post-type-archive-education .page-content p,
  .woocommerce-member-benefits .page-content p,
  .woocommerce-partner-discounts .page-content p,
  .page-template-member-page .page-content p,
  .page-template-partner-discounts .page-content p {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px; }
    .post-type-archive-jazz_radio .page-content p:last-child,
    .post-type-archive-jazz_festivals .page-content p:last-child,
    .post-type-archive-education .page-content p:last-child,
    .woocommerce-member-benefits .page-content p:last-child,
    .woocommerce-partner-discounts .page-content p:last-child,
    .page-template-member-page .page-content p:last-child,
    .page-template-partner-discounts .page-content p:last-child {
      margin-bottom: 0; }

.post-type-archive-jazz_radio .page-content p,
.post-type-archive-jazz_festivals .page-content p,
.post-type-archive-education .page-content p,
.woocommerce-member-benefits .page-content p,
.woocommerce-partner-discounts .page-content p,
.page-template-member-page .page-content p,
.page-template-partner-discounts .page-content p {
  font-size: 18px;
  font-size: 1.0588235294rem;
  line-height: 1.5555555556; }

.membership-content.access-restricted > .post-thumbnail,
.listing.membership-content.access-restricted .post-thumbnail {
  display: block;
  position: relative; }
  .membership-content.access-restricted > .post-thumbnail:after,
  .listing.membership-content.access-restricted .post-thumbnail:after {
    background: url(assets/images/members-only-badge.png) no-repeat;
    content: '';
    display: block;
    height: 23px;
    position: absolute;
    right: 0;
    top: 0;
    width: 93px; }
    @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
      .membership-content.access-restricted > .post-thumbnail:after,
      .listing.membership-content.access-restricted .post-thumbnail:after {
        background-image: url(assets/images/members-only-badge@2x.png);
        background-size: contain; } }
.member-benefits-section .o-wrapper {
  max-width: 820px; }

.member-benefits-section__icon {
  margin-bottom: 24px; }

.member-benefits-section__title {
  font-size: 40px;
  font-size: 2.3529411765rem;
  line-height: 1.5555555556; }

.member-benefits-section__description {
  font-size: 18px;
  font-size: 1.0588235294rem;
  line-height: 1.5555555556;
  text-align: center; }

.member-benefits-section__content {
  background: #fff;
  border: 1px solid #d1d1d1;
  margin-bottom: 24px;
  padding: 24px; }
  .member-benefits-section__content:last-child {
    margin-bottom: 0; }

.eworkshops-table th {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  text-align: left; }

.eworkshops-table td {
  font-family: "Roboto", Helvetica, Arial, sans-serif; }

.video-availability {
  color: #bdbdbd;
  font-weight: bold; }

.member-benefits-section--on-demand-videos .member-benefits-section__icon > img {
  max-width: 90px; }

.member-benefits-section--eguides .member-benefits-section__icon > img {
  max-width: 60px; }

.partner-discount {
  margin-bottom: 48px;
  padding: 24px;
  min-height: 590px; }

.partner-discount__top {
  display: flex;
  align-content: center;
  height: 240px;
  justify-content: center; }
  .partner-discount__top > img {
    margin: auto; }

.partner-discount__bottom {
  display: flex;
  flex-direction: column;
  min-height: 348px; }
  .partner-discount__bottom .partner-discount__link {
    margin-bottom: 0;
    margin-top: auto; }
  .partner-discount__bottom .c-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 255px;
    text-align: center; }

.page-template-partner-discounts .menu-logged-in-user {
  margin-bottom: 48px;
  text-align: center; }

.membership-cta__other-plans .content,
.membership-cta__additional-links .content {
  background: #fff;
  padding: 48px; }

.membership-cta__other-plans {
  text-align: center; }
  @media (min-width: 61.25em) {
    .membership-cta__other-plans {
      text-align: left; } }
  @media (max-width: 61.24em) {
    .membership-cta__other-plans .membership-cta__other-plans-link {
      margin-top: 24px; } }
.jt-benefits-container {
  background: #f9f9fb;
  padding: 40px 0; }

.jt-benefit {
  padding: 48px; }
  .jt-benefit:nth-child(2n+1) {
    background: #fff; }

.jt-benefits {
  margin-bottom: 24px;
  margin-top: 24px; }
  @media (min-width: 61.25em) {
    .jt-benefits {
      margin-bottom: 48px;
      margin-top: 48px; } }
  .jt-benefits:first-child {
    margin-top: 0; }
  .jt-benefits:last-child {
    margin-bottom: 0; }

.jt-benefits--2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 740px; }

.jt-benefits .jt-benefit {
  border: none;
  text-align: center; }
  @media (min-width: 61.25em) {
    .jt-benefits .jt-benefit {
      text-align: left; } }
.jt-benefits .benefit-image {
  margin-bottom: 24px;
  text-align: center; }
  @media (min-width: 61.25em) {
    .jt-benefits .benefit-image {
      text-align: left; } }
.jt-benefits .benefit-image img {
  display: block; }

.jt-benefits .benefit-content {
  padding: 12px; }
  @media (min-width: 46.25em) {
    .jt-benefits .benefit-content {
      padding: 24px; } }
  @media (min-width: 61.25em) {
    .jt-benefits .benefit-content {
      padding: 96px; } }
.jt-benefits .benefit-title {
  font-size: 30px;
  font-size: 1.7647058824rem;
  line-height: normal; }

.jt-benefits .benefit-description {
  font-size: 15px;
  font-size: 0.8823529412rem;
  line-height: 1.6666666667; }

.free-trial-cta {
  margin-bottom: 65px;
  position: relative; }
  .free-trial-cta:before {
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, #f9f9fb 80%);
    content: ' ';
    height: 100px;
    position: absolute;
    top: -100px;
    width: 100%; }

.free-trial-cta__content {
  background: #fff;
  padding: 40px;
  position: relative;
  text-align: center; }

.free-trial-cta-form {
  display: flex;
  flex-direction: column; }
  @media (min-width: 61.25em) {
    .free-trial-cta-form {
      flex-direction: row; } }
.free-trial-cta .widgettitle {
  font-size: 40px;
  font-size: 2.3529411765rem;
  line-height: 1.1515151515;
  margin-left: auto;
  margin-right: auto;
  max-width: 530px; }

.free-trial-cta--action {
  margin: 0 auto 24px;
  max-width: 510px; }

.free-trial-cta--action__disclaimer .small {
  font-size: 12px;
  font-size: 0.7058823529rem;
  line-height: normal; }

.free-trial-cta--copy {
  color: #333333;
  font-size: 18px;
  font-size: 1.0588235294rem;
  line-height: 1.6666666667;
  margin-left: auto;
  margin-right: auto;
  max-width: 550px; }

.free-trial-cta--action input {
  font-size: 16px;
  font-size: 0.9411764706rem;
  line-height: normal;
  flex-grow: 1;
  margin-bottom: 20px;
  padding: 10px; }
  @media (min-width: 61.25em) {
    .free-trial-cta--action input {
      margin-bottom: 0;
      margin-right: 20px; } }
.sign-up-button-wrapper {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: normal; }
  .sign-up-button-wrapper .c-btn {
    border-color: #000;
    display: block;
    padding: 15px 24px;
    margin: auto;
    max-width: 258px; }
    .sign-up-button-wrapper .c-btn:hover, .sign-up-button-wrapper .c-btn:focus {
      background: #000;
      color: #fff; }

.access-restricted .c-sharing--horizontal {
  display: none !important;
  visibility: hidden; }

body.jt-lp #content .wcopc,
body.product-template-default.single.single-product #content .is-gifting {
  padding: 0 40px;
  width: 100%;
  max-width: 960px;
  margin: auto auto 65px auto;
  text-align: left; }

body.jt-lp #content .wcopc .form-row input,
body.product-template-default.single.single-product #content .is-gifting .form-row input {
  float: none; }

body.jt-lp #content .wcopc #billing_address_2_field,
body.product-template-default.single.single-product #content .is-gifting #billing_address_2_field {
  text-align: right; }

body.jt-lp #content .wcopc .woocommerce-form-coupon-toggle,
body.product-template-default.single.single-product #content .is-gifting .woocommerce-form-coupon-toggle {
  display: none; }

body.jt-lp #content .wcopc .stripe-icon,
body.product-template-default.single.single-product #content .is-gifting .stripe-icon {
  max-width: 50px;
  display: inline-block; }

.membership-plan {
  margin-bottom: 24px; }
  @media (min-width: 61.25em) {
    .membership-plan {
      margin-bottom: 0; } }
.membership-plan-image {
  margin-bottom: 24px;
  text-align: center; }

.membership-plan-image img {
  display: inline-block;
  max-width: 116px; }

body.page-template-page-profile .acf-form .acf-label {
  display: block; }

.jt-lp #order_review .product-remove {
  display: none; }

.woocommerce-additional-fields .jt-multicheck-option input {
  margin-right: 10px; }

.woocommerce form .form-row .input-checkbox {
  width: auto; }

.membership-plan-name,
.membership-plan-price {
  text-align: center; }

.membership-cta h2 {
  margin-bottom: 48px;
  text-align: center; }

.membership-cta.plans-2 .cta-flex > .membership-plan:first-child {
  margin-left: 16.6665%; }

.membership-cta.plans-1 .cta-flex > .membership-plan {
  float: none;
  margin: 0 auto; }

.form-row input[type="checkbox"] {
  width: auto;
  float: none; }

.woocommerce-form .form-row label {
  float: none; }

.checkout.woocommerce-checkout #billing_country_field .woo-select:after,
.checkout.woocommerce-checkout #billing_state_field .woo-select:after,
.checkout.woocommerce-checkout #shipping_country_field .woo-select:after,
.checkout.woocommerce-checkout #shipping_state_field .woo-select:after {
  content: ''; }

.checkout.woocommerce-checkout #billing_country_field .select2-container--default,
.checkout.woocommerce-checkout #billing_state_field .select2-container--default,
.checkout.woocommerce-checkout #shipping_country_field .select2-container--default,
.checkout.woocommerce-checkout #shipping_state_field .select2-container--default {
  vertical-align: text-bottom; }

.checkout.woocommerce-checkout #billing_country_field .select2-container--default .select2-selection--single .select2-selection__arrow b,
.checkout.woocommerce-checkout #billing_state_field .select2-container--default .select2-selection--single .select2-selection__arrow b,
.checkout.woocommerce-checkout #shipping_country_field .select2-container--default .select2-selection--single .select2-selection__arrow b,
.checkout.woocommerce-checkout #shipping_state_field .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #000 transparent transparent transparent; }

.no-country-checkout-text {
  padding: 20px;
  background: #ff0000;
  color: #fff;
  font-weight: bold;
  text-align: center; }

.wc-credit-card-form .form-row label {
  float: none; }

#billing_order_field,
#shipping_order_field {
  display: none; }

#s2member-pro-stripe-form-response,
.s2member-pro-stripe-form-response-error.s2member-pro-stripe-registration-form-response-error {
  display: none; }

.feat-block .content.assignment-bg {
  position: static; }

.widget_jt-featured-posts .read-more-wrapper {
  padding-top: 10px; }

.search-results article {
  position: relative; }

.search-results article .jt-restricted-content-message .woocommerce {
  left: -2px;
  z-index: 5; }

.jt-browse-search--browse-buttons ul#search-browse--post-types {
  padding: 0; }

.jt-browse-search--browse-buttons ul#search-browse--post-types li a .jt-browse-button--text {
  font-size: 1rem;
  font-weight: bold;
  display: inline-block;
  padding-top: 5px; }

.jt-browse-search--browse-buttons ul#search-browse--post-types li a img {
  width: 50px; }

.no-results {
  display: block; }

.woocommerce .col-well-a,
.woocommerce .col-well-a:nth-of-type(1) {
  float: none;
  width: 100%;
  margin-right: 0; }

.woocommerce .jt-newsletter-instructions {
  font-style: italic; }

.woocommerce form.jt-ignore-errors .form-row.woocommerce-invalid label {
  color: #575a5b; }

.woocommerce form.jt-ignore-errors .form-row.woocommerce-invalid .select-2-container,
.woocommerce form.jt-ignore-errors .form-row.woocommerce-invalid input.input-text,
.woocommerce form.jt-ignore-errors .form-row.woocommerce-invalid select {
  border-color: #919191; }

.woocommerce form.jt-ignore-errors .form-row.woocommerce-invalid #terms {
  outline: none; }

.woocommerce-MyAccount-content .order-again {
  display: none; }

.paywall-message-replacement {
  margin-top: 1rem; }

.odpwc-emag-iframe-wrapper {
  height: 110vh;
  max-height: 200vh;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; }

.odpwc-emag-iframe-wrapper .odpwc-emag-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; }

.feat-block .content,
.feat-archive-block .content {
  position: relative; }

.jt-restricted-content-message .woocommerce {
  position: absolute;
  top: -1px;
  right: -2px; }

.jt-restricted-content-message .woocommerce .woocommerce-info.wc-memberships-content-restricted-message {
  padding: 0;
  margin: 0 !important;
  width: 107px;
  height: 36px;
  background-color: transparent;
  background: url(../img/post-images/members-only.png) center center no-repeat;
  color: transparent;
  border: none;
  list-style: none outside;
  word-wrap: break-word;
  background-size: cover;
  text-indent: -9999px;
  z-index: 200; }

.jt-restricted-content-message .woocommerce .woocommerce-info.wc-memberships-content-restricted-message:before {
  content: ''; }

.jt-restricted-content-message .woocommerce .woocommerce-info.wc-memberships-content-restricted-message:after {
  clear: both; }

.recommended-articles h2 {
  padding: 0em 0.5em; }

.recommended-articles h2 {
  padding: 0em 0.5em; }

.intro-lp {
  max-width: 1100px;
  margin: 0 auto; }

.intro-lp p {
  line-height: 1.4;
  margin-top: 0;
  font-size: 18px;
  font-size: 1.0588235294rem;
  line-height: 1.5555555556;
  color: #333333;
  margin-bottom: 2em; }

.membership-promotion {
  margin-left: auto;
  margin-right: auto;
  max-width: 730px; }

.membership-promotion__content {
  text-align: center; }
  .membership-promotion__content .c-btn {
    display: block; }

.membership-promotion__description {
  border: 1px solid #d1d1d1;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-size: 1rem;
  line-height: 1.4117647059;
  margin-bottom: 24px;
  min-height: 155px;
  padding: 20px; }

.membership-cta {
  margin: 60px 0; }

.membership-cta__plans {
  justify-content: space-between; }

.membership-cta .membership-plan {
  overflow: hidden; }

.membership-cta .membership-plan.u-1\/1\@tablet {
  margin: auto;
  max-width: 576px; }

.membership-cta .membership-plan .content {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  padding-bottom: 40px; }

.membership-cta .membership-plan .top {
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  color: #000; }

.membership-cta .membership-plan.featured .top {
  padding-top: 0; }

.membership-cta .membership-plan .top .membership-plan-name {
  color: #000;
  font-size: 24px;
  font-size: 1.4117647059rem;
  line-height: 1.5555555556;
  line-height: 1.2em;
  margin-bottom: 0; }

.feat-block-badge {
  background: #4063e6;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  font-size: 0.7647058824rem;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.025em;
  margin-left: -30px;
  padding: 9px;
  position: relative;
  text-transform: uppercase; }
  .feat-block-badge:before {
    content: '';
    width: 0;
    height: 0;
    left: 0;
    top: 100%;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 0 solid transparent;
    border-top: 10px solid #4063e6; }

.membership-cta .membership-plan .top .membership-plan-price {
  color: #4063e6;
  font-size: 20px;
  font-size: 1.1764705882rem;
  line-height: 1.2; }

.membership-cta .membership-plan .mid {
  flex: 1;
  padding: 36px 48px;
  text-align: left; }

.membership-cta .membership-plan .membership-plan-detail li {
  margin-bottom: 12px; }

.membership-cta .membership-plan .bottom {
  width: 100%;
  text-align: center; }

.membership-cta .membership-plan .bottom .membership-plan-action a.btn {
  color: white !important;
  background: #000;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.membership-cta .membership-plan .bottom .membership-plan-action a.btn:hover {
  background: #589b6e;
  color: white !important; }

.photo-contest-single-cta h2 {
  text-align: center; }

.photo-contest-single-cta .top {
  text-align: center; }

.jt-lp-whats-included {
  background: #f9f9fb;
  padding: 24px; }
  .jt-lp-whats-included > .o-wrapper {
    max-width: 820px; }

.jt-lp-section-links a.btn {
  border: 1px solid #000;
  color: #000 !important;
  background: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.jt-lp-section-links a.btn:hover {
  background: #000;
  color: white !important; }

.woocommerce div.product {
  margin: 1em; }

.product-template-default #secondary.widget-area {
  display: none; }

.product-template-default .woocommerce-breadcrumb {
  display: none; }

#place_order {
  background: #000 !important;
  color: #fff; }

.woocommerce input.button.alt,
.woocommerce input#submit.alt,
.woocommerce #respond input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce a#submit.alt,
.woocommerce button.button.alt,
.woocommerce button#submit.alt {
  background: #000 !important;
  color: #fff; }

.woocommerce input.button.alt:hover,
.woocommerce input#submit.alt:hover,
.woocommerce #respond input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce a#submit.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce button#submit.alt:hover {
  background: #000 !important;
  color: #fff; }

.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input#submit.alt.disabled,
.woocommerce input#submit.alt.disabled:hover,
.woocommerce #respond input.button.alt.disabled,
.woocommerce #respond input.button.alt.disabled:hover,
.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a#submit.alt.disabled,
.woocommerce a#submit.alt.disabled:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button#submit.alt.disabled,
.woocommerce button#submit.alt.disabled:hover {
  opacity: 0.5; }

.woocommerce-variation-add-to-cart > fieldset {
  margin-bottom: 1rem; }

#add_payment_method #payment ul.payment_methods li label,
.woocommerce-checkout #payment ul.payment_methods li label {
  overflow: hidden; }

#add_payment_method #payment ul.payment_methods li label img.stripe-icon,
.woocommerce-checkout #payment ul.payment_methods li label img.stripe-icon {
  float: right; }

.is-gifting > .product > .summary > p.price {
  display: none; }

.vip-plan ul li:nth-child(3),
.vip-plan ul li:nth-child(4) {
  display: none; }

.membership-plan-action.entry-purchase {
  text-align: center; }

.membership-plan-action.entry-purchase a.btn {
  background: #000;
  color: white !important;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.membership-plan-action.entry-purchase a.btn:hover {
  background: #589b6e;
  color: white !important; }

.page-template-single-landing-page .page-content {
  flex-flow: row wrap !important; }

.page-template-single-landing-page .page-content .page-title {
  width: 100%; }

.page-template-my-account .my-account-block .c-btn--small {
  padding: 9px 24px;
  min-width: 190px; }

.my-account-block {
  border: 1px solid #efefef;
  background-color: #fff;
  box-shadow: 2.5px 4.33px 16px 0px rgba(38, 39, 39, 0.1);
  min-height: 230px; }

.my-account-block-top-block-row {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 0; }

.my-account-block-top-block-header {
  background: #000000;
  color: #fff;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  padding: 10px 25px; }

.my-account-block-bottom-border {
  border-bottom: 1px solid #eeeeee; }

.my-account-block-small-block-header,
.my-account-block-big-block-header {
  color: #000000;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: bold;
  padding: 15px 25px; }

.my-account-block-small-block-subtext {
  color: #5e6a74;
  font-size: 15px;
  font-size: 0.8823529412rem;
  line-height: 1.6666666667;
  padding: 25px;
  text-align: center; }

.my-account-block-small-block-btn {
  padding-bottom: 35px;
  text-align: center; }

.woocommerce-product-gallery__image img {
  margin: auto;
  max-width: 300px;
  width: auto; }

/* ==========================================================================
   #INSTAGRAM
   ========================================================================== */
@media (min-width: 1040px) {
  .inst-content {
    width: 965px;
    margin: 60px auto 20px auto;
    overflow: hidden; } }

@media (max-width: 960px) {
  .inst-content {
    width: 100%;
    margin: 40px auto 20px auto;
    overflow: hidden; } }

.inst-row {
  clear: both;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 15px; }

@media (max-width: 1039px) {
  .inst-row {
    margin-right: -15px;
    margin-left: -15px; } }

.inst-col-4 {
  width: 33.33333333%;
  float: left; }

@media (max-width: 1039px) {
  .inst-col-4 {
    padding-right: 2px !important;
    padding-left: 2px !important;
    padding-bottom: 4px !important; } }

.inst-col-12, .inst-col-4 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px; }

/*
@media (min-width: 960px) {
.inst-col-12 {
  width: 100%;
	 float: left;}}
*/
@media (max-width: 1039px) {
  .inst-col-12 {
    padding-right: 0px;
    padding-left: 0px; } }

.inst-container {
  position: relative;
  width: 100%; }

.inst-image {
  display: block;
  width: 100%;
  height: auto; }

.inst-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: rgba(0, 0, 0, 0.3); }

.inst-container:hover .inst-overlay {
  opacity: 1; }

.inst-text {
  color: white;
  font-size: 20px;
  font-size: 1.1764705882rem;
  line-height: 1.5;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center; }

@media (max-width: 959px) {
  .inst-text {
    font-size: 14px;
    font-size: 0.8235294118rem;
    line-height: 1.7142857143; } }

.inst-footer-menu {
  margin: auto 30px; }

.inst-footer-menu div {
  display: inline; }

.inst-footer-menu li {
  list-style-type: none;
  display: inline; }

.inst-footer-menu ul {
  margin: auto;
  padding: inherit; }

.inst-footer-menu a {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 0.7058823529rem;
  line-height: 1.5;
  font-weight: 600;
  line-height: 14px;
  color: #8e8e8e;
  color: rgba(var(--f52, 142, 142, 142), 1);
  margin-right: 8px;
  margin-left: 8px; }

.inst-footer-menu a:hover, a:focus, a:active {
  color: #616161; }

.inst-footer-branding {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 0.7058823529rem;
  line-height: 1.5;
  text-align: center;
  color: #a5a6a7;
  margin-top: 15px; }

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Redefine all of our basic heading styles against utility classes so as to
 * allow for double stranded heading hierarchy, e.g. we semantically need an H2,
 * but we want it to be sized like an H1:
 *
 *   <h2 class="u-h1"></h2>
 *
 */
.u-h1,
.u-h2,
.u-h3,
.u-h4,
.u-h5,
.u-h6 {
  display: block;
  font-family: "PT Serif", Georgia, serif; }
  .u-h1 a,
  .u-h2 a,
  .u-h3 a,
  .u-h4 a,
  .u-h5 a,
  .u-h6 a {
    color: inherit; }
    .u-h1 a:hover,
    .u-h2 a:hover,
    .u-h3 a:hover,
    .u-h4 a:hover,
    .u-h5 a:hover,
    .u-h6 a:hover {
      color: #4063e6; }

.u-h1 {
  font-size: 52px !important;
  font-size: 3.0588235294rem !important;
  line-height: 1.0961538462 !important; }
  .u-h1:not(.u-sans-serif) {
    letter-spacing: -2px; }

.u-h2 {
  font-size: 33px !important;
  font-size: 1.9411764706rem !important;
  line-height: 1.1515151515 !important; }
  .u-h2:not(.u-sans-serif) {
    letter-spacing: -0.5px; }

.u-h3 {
  font-size: 28px !important;
  font-size: 1.6470588235rem !important;
  line-height: 1.1071428571 !important; }
  .u-h3:not(.u-sans-serif) {
    letter-spacing: -0.5px; }

.u-h4 {
  font-size: 23px !important;
  font-size: 1.3529411765rem !important;
  line-height: 1.2391304348 !important; }
  .u-h4:not(.u-sans-serif) {
    letter-spacing: -0.5px; }

.u-h5 {
  font-size: 20px !important;
  font-size: 1.1764705882rem !important;
  line-height: 1.275 !important; }
  .u-h5:not(.u-sans-serif) {
    letter-spacing: -0.5px; }

.u-h6 {
  font-size: 16px;
  font-size: 0.9411764706rem;
  line-height: 1.275; }
  .u-h6:not(.u-sans-serif) {
    letter-spacing: -0.5px; }

/* ==========================================================================
   #HELPERS
   ========================================================================== */
.u-serif {
  font-family: "PT Serif", Georgia, serif; }

.u-sans-serif {
  font-family: "Roboto", Helvetica, Arial, sans-serif; }

.u-font-size-small {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: normal; }

.u-font-size-tiny {
  font-size: 12px;
  font-size: 0.7058823529rem;
  line-height: normal; }

.u-font-color-white {
  color: #fff !important; }

.u-font-weight-light {
  font-weight: 300; }

.u-font-weight-bold {
  font-weight: 700; }

.u-text-lower {
  text-transform: lower; }

.u-text-upper {
  text-transform: uppercase; }

.u-top-divider {
  border-top: 1px solid #c2c2c2;
  margin-top: 24px;
  padding-top: 24px; }

.u-header-with-divider {
  border-bottom: 2px solid #000;
  margin-bottom: 24px; }

.u-header-with-divider__heading {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  margin-bottom: 0; }

.u-display-block {
  display: block; }

/*# sourceMappingURL=style.css.map */