@charset "UTF-8";
/*!
Theme Name: Madavor Child - BWD
Description: Theme for BirdWatching Daily
Theme URI: http://birdwatchingdaily.com/
Author: Stephen Simon Interactive
Author URI: http://stephensimon.com
Version: 1.0.19
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 BirdWatching. If looking to modify styles that all
child themes share, go the 'madavor' theme stylesheet.
*/
/* ==========================================================================
   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................
 * Subscriptions........
 * Photo-Galleries......
 * Hotspots.............
 * Share................
 * Ads..................
 * NGGC.................
 * Contributors.........
 * Contests.............
 * Tour.................
 * 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: #f6f9fc;
  color: #495570;
  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: "Noto Serif", Georgia, serif; }

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

/* Forms
   ========================================================================== */
label,
button,
input,
optgroup,
select,
textarea {
  font-family: "Source Sans Pro", Verdana, sans-serif; }

input,
select,
textarea {
  background-color: #f6f9fc;
  border: 1px solid #d1d8df;
  border-radius: 3px;
  font-family: "Source Sans Pro", Verdana, sans-serif; }
  input:focus,
  select:focus,
  textarea:focus {
    outline-color: #e2e5ea; }

/* ==========================================================================
   #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: "Source Sans Pro", Verdana, sans-serif;
  font-weight: normal; }
  h1 .entry-content,
  h2 .entry-content,
  h3 .entry-content,
  h4 .entry-content,
  h5 .entry-content,
  h6 .entry-content {
    color: #2b2d4f; }
  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;
  letter-spacing: -2px; }

h2 {
  font-size: 33px;
  font-size: 1.9411764706rem;
  line-height: 1.1515151515;
  letter-spacing: -0.5px; }

h3 {
  font-size: 28px;
  font-size: 1.6470588235rem;
  line-height: 1.1071428571;
  letter-spacing: -0.5px; }

h4 {
  font-size: 23px;
  font-size: 1.3529411765rem;
  line-height: 1.2391304348;
  letter-spacing: -0.5px; }

h5 {
  font-size: 20px;
  font-size: 1.1764705882rem;
  line-height: 1.225;
  letter-spacing: -0.5px; }

h6 {
  font-size: 17px;
  font-size: 1rem;
  line-height: 1.4117647059;
  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: #4fa9d6;
  transition: color 0.15s; }
  a:hover {
    color: #1e475c; }
  a > svg {
    fill: #4fa9d6; }

a.u-secondary-link {
  color: #4ecd90; }
  a.u-secondary-link:hover {
    color: #41b783; }
  a.u-secondary-link > svg {
    fill: #4ecd90; }

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: "Source Sans Pro", Verdana, sans-serif; }

input,
select,
textarea {
  background-color: #f6f9fc;
  border: 1px solid #d1d8df;
  border-radius: 3px;
  font-family: "Source Sans Pro", Verdana, sans-serif; }
  input:focus,
  select:focus,
  textarea:focus {
    outline-color: #e2e5ea; }

select {
  -webkit-appearance: none;
  background-image: url(assets/images/dropdown.png);
  background-position: 95% 50%;
  background-repeat: no-repeat; }
  @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; } }
/* ==========================================================================
   #LAYOUT
   ========================================================================== */
/**
 * See parent theme for full definitions
 */
/* Gutter size modifiers
   ========================================================================== */
.o-layout--medium {
  margin-left: -30px; }
  .o-layout--medium > .o-layout__item {
    padding-left: 30px; }

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  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: "Source Sans Pro", Verdana, sans-serif;
  text-align: center;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  padding: 10px 24px;
  transition: all 300ms ease-in-out;
  border-radius: 3px; }

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

/* Style variants
   ========================================================================== */
.c-btn--primary,
input[type="submit"] {
  background-color: #4db3e6;
  border-radius: 4px;
  box-shadow: -0.105px 2.998px 5.64px 0.36px rgba(50, 52, 92, 0.2);
  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 {
    text-decoration: none;
    /* [4] */
    color: #fff; }
  .c-btn--primary:hover, .c-btn--primary:focus,
  input[type="submit"]:hover,
  input[type="submit"]:focus {
    background-color: #3774a2;
    box-shadow: -0.174px 4.997px 5.64px 0.36px rgba(50, 52, 92, 0.2);
    transform: translateY(-1px); }

.c-btn--secondary {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: -0.105px 2.998px 5.64px 0.36px rgba(50, 52, 92, 0.2);
  text-transform: uppercase; }
  .c-btn--secondary, .c-btn--secondary:hover, .c-btn--secondary:active, .c-btn--secondary:focus {
    text-decoration: none;
    color: #4ecd90; }
  .c-btn--secondary:hover, .c-btn--secondary:focus {
    color: #41b783;
    box-shadow: -0.174px 4.997px 5.64px 0.36px rgba(50, 52, 92, 0.2);
    transform: translateY(-1px); }

.c-btn--tertiary {
  background-color: #f6f9fc;
  border: 1px solid #d8dee3;
  border-radius: 50px;
  color: #6f7c82;
  text-transform: uppercase; }
  .c-btn--tertiary, .c-btn--tertiary:hover, .c-btn--tertiary:active, .c-btn--tertiary:focus {
    text-decoration: none; }
  .c-btn--tertiary:active {
    color: #4a8ec2; }
  .c-btn--tertiary:hover, .c-btn--tertiary:focus {
    color: #292e31; }

.c-btn--quaternary {
  background-color: #73ca95;
  border-radius: 4px;
  box-shadow: -0.105px 2.998px 5.64px 0.36px rgba(50, 52, 92, 0.2);
  text-transform: uppercase; }
  .c-btn--quaternary, .c-btn--quaternary:hover, .c-btn--quaternary:active, .c-btn--quaternary:focus {
    text-decoration: none;
    /* [4] */
    color: #fff; }
  .c-btn--quaternary:hover, .c-btn--quaternary:focus {
    background-color: #5daa7e;
    box-shadow: -0.174px 4.997px 5.64px 0.36px rgba(50, 52, 92, 0.2);
    transform: translateY(-1px); }

/* Size variants
   ========================================================================== */
.c-btn--small-header {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.7142857143; }

.c-btn--small {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.7142857143;
  padding: 4px 24px; }

.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; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
    .owl-carousel .owl-stage:after {
      content: ".";
      display: block;
      clear: both;
      visibility: hidden;
      line-height: 0;
      height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

.owl-carousel.owl-loaded {
  overflow: hidden; }

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
  .owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  bottom: 0;
  position: absolute;
  width: 100%;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  @media (min-width: 41.25em) {
    .owl-theme .owl-dots {
      bottom: 12px; } }
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline; }

.owl-theme .owl-dots .owl-dot span {
  width: 11px;
  height: 11px;
  margin: 5px 7px;
  background: transparent;
  border: 2px solid #fff;
  display: block;
  opacity: 0.5;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px; }

.owl-theme .owl-dots .owl-dot:focus {
  outline: none; }
  .owl-theme .owl-dots .owl-dot:focus > span {
    opacity: 0.9; }

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #FFFFFF;
  border-collapse: transparent; }

/**
 * BWD Theme
 */
.c-carousel-wrapper {
  background: #FFFFFF;
  min-height: 300px; }
  @media (min-width: 41.25em) {
    .c-carousel-wrapper {
      min-height: 572px; } }
.owl-theme {
  height: 300px; }
  @media (min-width: 41.25em) {
    .owl-theme {
      height: auto;
      min-height: 572px; } }
.past-contest-winners__content .c-carousel-wrapper {
  height: auto;
  min-height: auto; }

.past-contest-winners__content .owl-theme {
  height: auto;
  min-height: auto; }

.owl-carousel .item {
  height: 300px; }
  @media (min-width: 41.25em) {
    .owl-carousel .item {
      height: 572px; } }
  .owl-carousel .item .o-wrapper {
    height: 100%;
    position: relative; }

.slide__main {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 25px;
  font-size: 15px;
  font-size: 0.8823529412rem;
  line-height: normal;
  left: 0;
  bottom: 0;
  position: absolute; }
  @media (min-width: 41.25em) {
    .slide__main {
      font-size: 17px;
      font-size: 1rem;
      line-height: normal;
      max-width: 410px;
      bottom: 72px; } }
  .slide--vertical-center .slide__main {
    bottom: initial;
    top: 50%;
    transform: translateY(-50%); }
  .slide--horizontal-center .slide__main {
    right: 0;
    text-align: center; }
    @media (min-width: 41.25em) {
      .slide--horizontal-center .slide__main {
        left: 50%;
        margin-left: -205px;
        text-align: left; } }
  .slide--horizontal-right .slide__main {
    left: initial;
    right: 0; }

.slide__title {
  font-size: 24px;
  font-size: 1.4117647059rem;
  line-height: normal; }
  @media (min-width: 41.25em) {
    .slide__title {
      font-size: 40px;
      font-size: 2.3529411765rem;
      line-height: normal; } }
.slide__content a:focus, .slide__content a:hover {
  color: #70b9de; }

.owl-carousel.past-winners-carousel .owl-nav .owl-prev,
.owl-carousel.past-winners-carousel .owl-nav .owl-next {
  background: white;
  height: 100%;
  margin: 0;
  padding: 24px;
  position: absolute;
  top: 0;
  width: 100px;
  z-index: 90; }
  .owl-carousel.past-winners-carousel .owl-nav .owl-prev .icon,
  .owl-carousel.past-winners-carousel .owl-nav .owl-next .icon {
    height: 35px;
    width: 19px; }

.owl-carousel.past-winners-carousel .owl-nav .owl-prev {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0) 100%);
  left: 0; }

.owl-carousel.past-winners-carousel .owl-nav .owl-next {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.9) 100%);
  right: 0; }

/* ==========================================================================
   #HEADER
   ========================================================================== */
.site-header {
  font-family: "Source Sans Pro", Verdana, sans-serif;
  position: relative; }

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

.site-title {
  margin: 0 auto;
  padding: 10px;
  position: relative;
  width: 170px; }
  @media (min-width: 62.5em) {
    .site-title {
      padding: 20px 0;
      width: 287px; } }
  .site-title svg {
    fill: #6b7c93;
    max-width: 100%; }

.site-title__wordmark {
  height: 33px; }
  @media (min-width: 62.5em) {
    .site-title__wordmark {
      height: 59px; } }
.site-title__tagline {
  position: absolute;
  left: 10px;
  top: 49px;
  width: 130px; }
  @media (min-width: 62.5em) {
    .site-title__tagline {
      left: 0;
      opacity: 0.65;
      position: absolute;
      top: 71px;
      width: 254px; } }
.site-header .menu-social-navigation-container {
  display: inline-block;
  margin-bottom: 24px; }
  .site-header .menu-social-navigation-container li {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle; }
  .site-header .menu-social-navigation-container a {
    color: #4fa9d6; }
    .site-header .menu-social-navigation-container a svg {
      fill: #4fa9d6; }
    .site-header .menu-social-navigation-container a:hover {
      color: #1e475c; }
      .site-header .menu-social-navigation-container a:hover svg {
        fill: #1e475c; }

.site-header .facebook svg {
  height: 16px;
  width: 9px; }

.site-header .twitter svg {
  height: 15px;
  width: 18px; }

.site-header .flickr svg {
  height: 12px;
  width: 18px; }

.site-header--overlay svg {
  fill: #fff; }

.site-header--overlay ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff; }

.site-header--overlay ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff; }

.site-header--overlay :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff; }

.site-header--overlay :-moz-placeholder {
  /* Firefox 18- */
  color: #fff; }

.site-header--overlay .menu-social-navigation-container a {
  color: #fff; }
  .site-header--overlay .menu-social-navigation-container a svg {
    fill: #fff; }
  .site-header--overlay .menu-social-navigation-container a:hover {
    color: #4db3e6; }
    .site-header--overlay .menu-social-navigation-container a:hover svg {
      fill: #4db3e6; }

.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; }

.menu {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0; }
  .menu a {
    color: #6a7b93; }
    .menu a:hover {
      color: #32325d; }

.main-navigation {
  background-color: #fff;
  clear: both;
  display: block;
  font-size: 18px;
  font-size: 1.0588235294rem;
  line-height: 1.3333333333;
  float: left;
  width: 100%; }
  @media (min-width: 62.5em) and (max-width: 78.115em) {
    .main-navigation {
      font-size: 15px;
      font-size: 0.8823529412rem;
      line-height: 1.6; } }
  .site-header--default .main-navigation {
    border-bottom: 2px solid #edf0fa;
    border-top: 2px solid #edf0fa; }
  .site-header--overlay .main-navigation {
    background-color: #000;
    border-top: none;
    border-bottom: none; }
    @media (min-width: 62.5em) {
      .site-header--overlay .main-navigation {
        background-color: rgba(0, 0, 0, 0.5); } }
    .site-header--overlay .main-navigation a {
      color: #fff; }
    .site-header--overlay .main-navigation li li a {
      color: #6a7b93; }
      .site-header--overlay .main-navigation li li a:hover {
        color: #32325d; }
  .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: 62.5em) {
        .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: 62.5em) {
        .main-navigation ul ul {
          position: absolute;
          top: 100%;
          left: -999em;
          z-index: 99999; } }
      @media (min-width: 62.5em) {
        .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: 62.5em) {
      .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: 62.5em) {
      .main-navigation li {
        display: inline-block;
        padding: 20px 0; } }
    @media (min-width: 78.125em) {
      .main-navigation li {
        margin-right: 20px; } }
    .main-navigation li:last-child {
      margin-right: 0; }
  .main-navigation a {
    display: block;
    text-decoration: none; }
  .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: 62.5em) {
    .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,
.main-navigation.toggled ul {
  display: block; }

.menu-toggle {
  background-color: #d3dae2;
  border: none;
  border-radius: 5px;
  height: 44px;
  left: 10px;
  padding: 5px;
  position: absolute;
  text-align: center;
  top: 10px;
  width: 44px; }
  .menu-toggle svg {
    fill: #6b7c93;
    margin-left: auto;
    margin-right: auto; }
  .site-header--overlay .menu-toggle {
    background-color: #222222; }
    .site-header--overlay .menu-toggle svg {
      fill: #fff; }

@media (min-width: 62.5em) {
  .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 ul {
  color: #495570;
  font-family: "Source Sans Pro", Verdana, 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: #969899;
      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: #495570;
    text-decoration: none !important; }
    #content .woocommerce-MyAccount-navigation ul a:hover, #content .woocommerce-MyAccount-navigation ul a:focus {
      color: #4fa9d6; }
  #content .woocommerce-MyAccount-navigation ul .is-active a {
    color: #4fa9d6; }

.user-menu {
  border-bottom: 6px solid transparent;
  display: inline-block;
  position: relative; }
  .user-menu .c-desktop-user-link {
    padding: 6px 14px; }
  .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: 62.5em) {
      .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;
      font-weight: 600;
      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: #6a7b93;
      padding: 0; }
      .user-menu .woocommerce-MyAccount-navigation a:hover, .user-menu .woocommerce-MyAccount-navigation a:focus {
        background-color: #FFF;
        color: #1e475c; }
  .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: 62.5em) {
      .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 #fff;
    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 {
  position: absolute;
  top: 10px;
  left: 54px; }
  .user-menu--mobile .c-mobile-user-link {
    display: inline-block;
    height: 44px;
    width: 44px;
    vertical-align: middle; }
    .user-menu--mobile .c-mobile-user-link > svg {
      height: 44px; }
  .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: 16px; }

.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: inline-block; }
  #header-social-search.toggled .menu-subscribe-container {
    display: none; }
  .menu-subscribe-container ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
    text-transform: uppercase; }
    .menu-subscribe-container ul ul {
      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; }
      @media (min-width: 62.5em) {
        .menu-subscribe-container ul ul {
          padding: 24px; } }
      .menu-subscribe-container ul ul ul {
        left: -999em;
        top: 0; }
      .menu-subscribe-container ul ul li {
        font-size: 14px;
        font-weight: 600;
        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;
        box-shadow: none;
        color: #6a7b93;
        padding: 0;
        text-transform: none; }
        .menu-subscribe-container ul ul a:hover, .menu-subscribe-container ul ul a:focus {
          background-color: #FFF;
          color: #1e475c; }
  .menu-subscribe-container li:hover ul,
  .menu-subscribe-container li.focus ul {
    display: block;
    left: initial;
    right: 0; }
  .menu-subscribe-container li {
    display: block;
    position: relative; }
    .menu-subscribe-container li:last-child {
      margin-right: 0; }
  .menu-subscribe-container a {
    background-color: #4db3e6;
    border-radius: 4px;
    box-shadow: -0.105px 2.998px 5.64px 0.36px rgba(50, 52, 92, 0.2);
    color: #fff;
    display: block;
    font-size: 14px;
    font-size: 0.8235294118rem;
    line-height: 1.7142857143;
    padding: 6px 14px;
    text-transform: uppercase;
    text-decoration: none; }
    .menu-subscribe-container a:hover, .menu-subscribe-container a:focus {
      background-color: #3774a2;
      color: #FFF; }
  .menu-subscribe-container .current_page_item > a,
  .menu-subscribe-container .current-menu-item > a {
    color: #1e475c; }
  .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: 20px;
    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 #fff;
    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: #f6f9fc;
  border: 1px solid #d1d8df;
  border-radius: 3px;
  display: inline-block;
  font-family: "Source Sans Pro", Verdana, sans-serif; }
  .search-form:focus {
    outline-color: #e2e5ea; }

.search-field {
  background-color: transparent;
  border: none;
  width: calc(100% - 40px); }
  .search-field:focus {
    outline: none; }

.search-submit {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none; }

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

.toggled .header-search {
  display: inline-block;
  opacity: 1; }

.header-search svg {
  fill: #8898aa;
  vertical-align: middle; }

.header-search-toggle {
  background: none;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  height: 44px;
  right: 10px;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 44px; }
  .header-search-toggle svg {
    fill: #8898aa;
    vertical-align: middle; }
  @media (min-width: 62.5em) {
    .header-search-toggle {
      border-right: 1px solid #d3dae2;
      height: auto;
      margin-right: 15px;
      padding-right: 15px;
      position: relative;
      right: auto;
      top: auto;
      width: auto; }
      .site-header--overlay .header-search-toggle {
        border-right-color: #404040; } }
  .site-header--overlay .header-search-toggle svg {
    fill: #fff; }

@media (min-width: 62.5em) {
  #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; }

#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 {
  border: none;
  border-bottom: 1px solid #e1e1e1;
  border-radius: 0;
  min-height: 32px; }
  .site-header .search-form:focus, .site-header .search-form:focus-within {
    outline: 6px auto #d1d8df; }
  @media (max-width: 62.49em) {
    .site-header .search-form {
      margin-bottom: 20px; } }
.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 {
  border-bottom: 2px solid #edf0fa;
  clear: both;
  color: #b7c2cf;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.7142857143;
  padding-bottom: 6px;
  padding-top: 6px; }
  .breadcrumbs a {
    color: #8898aa; }

.c-site-wide-banner {
  background-color: #495570;
  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: 62.5em) {
  .primary-content-container {
    width: 62%; } }

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

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

.site-content--full-width-hero {
  padding-top: 0;
  position: relative;
  z-index: 1; }
  @media (min-width: 41.25em) {
    .site-content--full-width-hero {
      top: -66px; } }
.single .site-main .post-thumbnail {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px; }

.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; }

.single .site-main .posted-on {
  color: #7e8d9e; }

.byline {
  color: #2b2d4f; }

.entry-excerpt {
  font-size: 15px;
  font-size: 0.8823529412rem;
  line-height: 1.5333333333; }
  .entry-excerpt p:last-child {
    margin-bottom: 0; }

.lede {
  font-size: 23px;
  font-style: italic; }

.c-author {
  margin-bottom: 24px;
  margin-top: 24px; }
  .c-author .o-media__img {
    border: 4px solid #fff;
    border-radius: 100px;
    height: 105px;
    overflow: hidden;
    width: 105px; }
  .c-author .o-media__body {
    color: #7e8d9e; }
    .c-author .o-media__body p {
      margin-bottom: 12px; }
  .c-author h3 {
    color: #2b2d4f; }

blockquote {
  border-top: 6px solid #4db3e6;
  border-bottom: 2px solid #4db3e6;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-size: 23px;
  font-size: 1.3529411765rem;
  line-height: 1.3043478261;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 17px;
  padding-top: 17px;
  text-align: center; }
  blockquote.alignleft {
    border-bottom: none;
    border-left: 6px solid #4db3e6;
    border-top: none;
    padding-bottom: 0;
    padding-left: 24px;
    padding-right: 0;
    padding-top: 0;
    text-align: left; }
  blockquote.alignright {
    border-bottom: none;
    border-right: 6px solid #4db3e6;
    border-top: none;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 24px;
    padding-top: 0;
    text-align: right; }

.entry-meta {
  color: #7e8d9e;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-size: 18px;
  font-size: 1.0588235294rem;
  line-height: 1.3333333333; }
  .entry-meta a {
    color: #2b2d4f; }

figcaption,
.wp-caption-text {
  color: #7e8d9e;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.4285714286;
  padding-top: 10px; }

.entry-content ol, .entry-content ul {
  padding-left: 24px; }

.entry-content li {
  margin-bottom: 18px;
  margin-bottom: 1.125rem; }

.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: 62.49em) {
    .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--bg-image a:focus, .module-section--bg-image a:hover {
    color: #ddd; }

.module-section__header {
  margin-bottom: 24px; }
  @media (min-width: 62.5em) {
    .module-section--3-col .module-section__header {
      width: calc(50% - 171px) !important; } }
  @media (min-width: 78.125em) {
    .module-section--3-col .module-section__header {
      width: 70.83333333% !important; } }
.module-section__header-link {
  color: #7e8d9e; }
  .module-section__header-link .icon {
    height: 11px; }

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

@media (min-width: 62.5em) {
  .module-section__non-post-content {
    width: 342px; } }

@media (min-width: 62.5em) {
  .module-section--2-col .module-section__post-content {
    width: calc(100% - 348px); } }

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

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

@media (min-width: 78.125em) {
  .module-section--3-col .module-section__post-content {
    width: 440px; } }

.o-layout--equal-height .stacked {
  height: 100%; }

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

.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--border .stacked__content {
  background-color: #fff;
  padding: 24px 40px; }

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

.listing .entry-header,
.listing .entry-content {
  max-width: 90%; }

.overlay {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 195px;
  min-height: 195px;
  position: relative; }
  @media (max-width: 41.24em) {
    .overlay {
      display: flex;
      flex-direction: column; } }
  @media (min-width: 41.25em) {
    .overlay {
      min-height: 464px;
      height: 464px; } }
  .o-layout--equal-height .overlay {
    height: 100%; }

.overlay--thin {
  height: 195px;
  max-height: 216px;
  min-height: 195px; }
  @media (min-width: 41.25em) {
    .overlay--thin {
      height: 216px; } }
  @media (min-width: 62.5em) {
    .overlay--thin {
      max-height: 225px;
      height: 216px; } }
  .overlay--thin:first-child {
    margin-bottom: 32px; }

.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 {
  padding: 24px;
  margin-top: auto;
  text-align: center;
  text-shadow: 2px 3.464px 3px rgba(0, 0, 0, 0.4);
  width: 100%;
  z-index: 5; }
  @media (min-width: 41.25em) {
    .overlay__content {
      bottom: 23px;
      left: 30px;
      text-align: left;
      top: auto;
      padding: 0;
      max-width: 410px;
      position: absolute;
      width: 60.97560976%; } }
  .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: 41.24em) {
  .module-section--post-count-1 .overlay {
    height: 300px; } }

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

.module-section--bg-image .more-link {
  color: #4ecd90;
  display: block; }
  .module-section--bg-image .more-link:hover {
    color: #41b783; }

@media (min-width: 41.25em) {
  .module-section__non-post-content {
    width: 318px; } }

@media (max-width: 41.24em) {
  .o-layout .module-section__non-post-content .ad--sidebar {
    margin-left: -10px; }
  .o-layout--medium .module-section__non-post-content .ad--sidebar {
    margin-left: -15px; } }

@media (min-width: 41.25em) {
  .module-section__non-post-content .ad--sidebar {
    border: 1px solid #e1e1e1;
    padding: 8px; } }

.module-section__non-post-content .widget {
  margin-left: auto;
  margin-right: auto;
  max-width: 318px; }
  @media (min-width: 41.25em) {
    .module-section__non-post-content .widget {
      width: 318px; } }
  .module-section__non-post-content .widget:first-child {
    margin-bottom: 24px; }
  .module-section__non-post-content .widget:last-child {
    margin-bottom: 0; }

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
   ========================================================================== */
.secondary-content-container {
  margin-bottom: 24px; }
  @media (min-width: 62.5em) {
    .secondary-content-container {
      width: 342px; } }
.widget-area--sidebar {
  margin-left: auto;
  margin-right: auto; }

.widget--contained,
.widget-area--sidebar .widget {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px;
  max-width: 318px; }

.widget--padding {
  padding: 8px; }

.widget--bg-catskill-white,
.widget-area--sidebar .widget--bg-catskill-white {
  background-color: #eef2f7;
  border-color: #eef2f7; }

@media (min-width: 41.25em) {
  .widget-area--sidebar .ad--sidebar {
    padding: 8px; } }

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

.widget--current-issue__heading {
  font-size: 33px;
  font-size: 1.9411764706rem;
  line-height: normal;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-weight: 700; }

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

.widget_twitter {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  position: relative;
  padding: 8px; }
  .widget_twitter .twitter-avatar {
    float: left;
    margin-left: -58px; }
  .module-section__non-post-content .widget_twitter {
    height: 191px;
    overflow: hidden; }

.widget_twitter h3 {
  font-size: 15px;
  font-size: 0.8823529412rem;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 0;
  padding: 5px 0 20px; }

.widget_twitter a {
  text-decoration: none; }

.widget_twitter .widget-heading {
  font-size: 18px;
  font-size: 1.0588235294rem;
  line-height: normal;
  margin-bottom: 10px; }

.widget_twitter ul {
  list-style: none;
  margin: 0;
  padding-left: 0; }
  .module-section__non-post-content .widget_twitter ul {
    height: 129px;
    overflow: scroll;
    overflow-x: auto; }
    .module-section__non-post-content .widget_twitter ul:before {
      content: '';
      display: block;
      height: inherit;
      width: 92%;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 60%, white 100%);
      background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 60%, white 100%);
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, white 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
      z-index: 1; }

.widget_twitter li {
  border-top: 1px solid #ebebeb;
  margin-bottom: 15px;
  padding: 6px; }
  .widget_twitter li:last-child {
    margin-bottom: 0;
    padding-bottom: 0; }

.widget_twitter .entry-content {
  display: block;
  margin-left: 58px;
  font-size: 11px;
  font-size: 0.6470588235rem;
  line-height: normal; }

.widget_twitter .entry-meta {
  display: block;
  clear: left;
  font-size: 10px;
  font-size: 0.625rem;
  margin: 2px 0 0;
  text-align: right; }

.widget_twitter .entry-meta,
.widget_twitter .entry-meta a {
  color: #959595; }

@media (min-width: 41.25em) {
  .widget_twitter .follow-button {
    overflow: hidden;
    position: absolute;
    right: 8px;
    top: 13px; } }

/* ==========================================================================
   #RELATED STORIES
   ========================================================================== */
.page-bottom-feature {
  background-color: #fff;
  padding-bottom: 48px;
  padding-top: 48px; }

/* ==========================================================================
   #FOOTER
   ========================================================================== */
.footer-newsletter-cta {
  background: #37b687;
  /* Old browsers */
  background: -moz-linear-gradient(left, #6dde9e 0%, #37b687 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #6dde9e 0%, #37b687 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #6dde9e 0%, #37b687 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6dde9e', endColorstr='#37b687',GradientType=1 );
  /* IE6-9 */
  color: #fff;
  margin-top: 40px;
  padding: 17px 0;
  position: relative;
  text-shadow: 2px 3.464px 2.85px rgba(44, 150, 111, 0.58); }
  .footer-newsletter-cta .c-btn {
    text-shadow: none; }
  .footer-newsletter-cta:before {
    background-image: url(assets/images/footer-newsletter-signup.png);
    background-repeat: no-repeat;
    content: '';
    display: block;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -30px;
    width: 134px; }
    @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) {
      .footer-newsletter-cta:before {
        background-image: url(assets/images/footer-newsletter-signup@2x.png);
        background-size: 134px 120px; } }
    @media (min-width: 62.5em) {
      .footer-newsletter-cta:before {
        left: 50%;
        margin-left: -60px;
        margin-top: 0;
        position: absolute;
        top: -20px; } }
.site-footer {
  color: #7e8d9e;
  font-family: "Source Sans Pro", Verdana, sans-serif; }

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

.site-footer__bottom {
  background-color: #fff;
  border-top: 1px solid #ebebeb;
  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 li {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle; }
  .site-footer__social-menu svg {
    fill: #4fa9d6; }
  .site-footer__social-menu a {
    color: #4fa9d6; }
    .site-footer__social-menu a svg {
      fill: #4fa9d6; }
    .site-footer__social-menu a:hover {
      color: #1e475c; }
      .site-footer__social-menu a:hover svg {
        fill: #1e475c; }

.site-footer .icon-facebook {
  height: 24px;
  width: 14px; }

.site-footer .icon-twitter {
  height: 24px;
  width: 30px; }

.site-footer .icon-instagram {
  height: 24px;
  width: 24px; }

.site-footer .icon-flickr {
  height: 14px;
  width: 24px; }

.page-id-48880 .site-footer {
  background: #fff; }

/* ==========================================================================
   #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 {
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-size: 18px;
  font-size: 1.0588235294rem;
  line-height: 1.3333333333;
  margin-bottom: 24px;
  text-align: center; }
  .pagination .page-numbers {
    border-radius: 8px;
    padding: 6px 12px;
    vertical-align: middle; }
  .pagination a {
    color: #525f7f; }
  .pagination .icon {
    height: 12px;
    width: 7px; }
  .pagination .next,
  .pagination .prev {
    padding-top: 0;
    padding-bottom: 0;
    vertical-align: middle; }
  .pagination .current {
    background: #e6ebf0;
    color: #45b2e8;
    font-weight: 600; }

/* ==========================================================================
   #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: 41.25em) {
    .landing-page-top--bg-image {
      padding-top: 62px; } }
@media (min-width: 41.25em) {
  .subscription-tiers {
    align-items: flex-end; } }

@media (min-width: 62.5em) {
  .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: 62.5em) {
    .subscription-tier {
      min-height: 770px; } }
.subscription-tier__header {
  background: #495570;
  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: #4ecd90; }

.subscription-tier__head {
  font-size: 21px;
  font-size: 1.2352941176rem;
  line-height: 1.4285714286;
  font-weight: 600;
  margin-bottom: 0; }

.subscription-tier__subhead {
  color: #25694b;
  letter-spacing: 0.135em; }

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

.subscription-tier__title {
  color: #ffffff; }

.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: 600;
    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; }

.ghost-subscription-tier__price {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.7142857143;
  margin-bottom: 24px; }

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

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

.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 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: 62.5em) {
    .subscription-cta {
      text-align: left; } }
  @media (max-width: 62.49em) {
    .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: 62.5em) {
      .magazine-feature .feature__image {
        text-align: left; } }
@media (min-width: 62.5em) {
  .feature__content {
    padding: 48px; } }

.subscribe-faq {
  background: #fff;
  padding: 48px 0; }
  @media (min-width: 41.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: 16px;
  font-size: 0.9411764706rem;
  line-height: 1.5555555556;
  background: #4fa9d6;
  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: #969899;
  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; }

/* ==========================================================================
   #SUBSCRIPTIONS
   ========================================================================== */
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-primary {
  border-color: #dfdfdf; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #454647;
  border-color: #454647; }

.panel-title {
  margin: 1em 0;
  font-size: 20px;
  color: inherit; }

.panel-body {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: normal;
  padding: 15px; }

/* ==========================================================================
   #PHOTO GALLERIES
   ========================================================================== */
/* c-join-register-gallery__cta */
.c-join-register-gallery__cta .c-btn {
  display: block;
  width: 100%; }
  @media (min-width: 41.25em) {
    .c-join-register-gallery__cta .c-btn {
      min-width: 145px;
      width: auto; } }
/* .c-photo-grid__options */
.c-photo-grid__options select {
  height: 45px; }

@media (min-width: 41.25em) {
  .c-photo-grid__options .c-btn {
    width: 130px; } }

.c-photo-grid__sort-order {
  margin-right: 10px;
  margin-bottom: 24px;
  width: 50%; }
  @media (min-width: 41.25em) {
    .c-photo-grid__sort-order {
      margin-bottom: 0;
      margin-right: 20px;
      width: 60%; } }
.c-photo-grid__options .search-form--photos {
  height: 45px;
  padding: 8px;
  width: 100%; }
  @media (min-width: 41.25em) {
    .c-photo-grid__options .search-form--photos {
      width: auto; } }
/* .c-photo-pagination__link */
.c-photo-pagination__link a {
  display: inline-block;
  vertical-align: middle;
  font: inherit;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  text-align: center;
  margin: 0;
  cursor: pointer;
  padding: 12px 24px;
  transition: all 300ms ease-in-out;
  border-radius: 3px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: -0.105px 2.998px 5.64px 0.36px rgba(50, 52, 92, 0.2);
  text-transform: uppercase; }
  .c-photo-pagination__link a, .c-photo-pagination__link a:hover, .c-photo-pagination__link a:active, .c-photo-pagination__link a:focus {
    text-decoration: none;
    color: #4ecd90; }
  .c-photo-pagination__link a:hover, .c-photo-pagination__link a:focus {
    color: #41b783;
    box-shadow: -0.174px 4.997px 5.64px 0.36px rgba(50, 52, 92, 0.2);
    transform: translateY(-1px); }

/* AJAX Counter */
.bawpvc-ajax-counter {
  display: inline; }

/* ==========================================================================
   #HOTSPOTS
   ========================================================================== */
@media (min-width: 41.25em) {
  .hotspot-search-form {
    background-image: url(assets/images/hotspot-form-icon.png);
    background-repeat: no-repeat;
    background-position: 0 -5px;
    min-height: 221px;
    padding-top: 30px;
    padding-left: 211px; } }
  @media all and (min-width: 41.25em) and (-webkit-min-device-pixel-ratio: 1.5), all and (min-width: 41.25em) and (-o-min-device-pixel-ratio: 3/2), all and (min-width: 41.25em) and (min--moz-device-pixel-ratio: 1.5), all and (min-width: 41.25em) and (min-device-pixel-ratio: 1.5) {
    .hotspot-search-form {
      background-image: url(assets/images/hotspot-form-icon@2x.png);
      background-size: 172px 231px; } }
.hotspot-search-form p {
  margin-bottom: 17px; }

.hotspot-search-form select,
.hotspot-search-form input {
  display: block;
  height: 45px;
  max-width: 380px;
  padding: 7px;
  width: 100%; }
  @media (min-width: 41.25em) {
    .hotspot-search-form select,
    .hotspot-search-form input {
      display: inline-block;
      margin-right: 24px; } }
.hotspot-search-form input {
  margin-bottom: 17px; }

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

.c-sharing--vertical {
  width: 48px; }
  @media (min-width: 41.25em) {
    .c-sharing--vertical {
      float: left;
      margin-bottom: 24px;
      margin-left: -100px;
      margin-right: 24px;
      margin-top: 12px; } }
.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: 41.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; }

/* ==========================================================================
   #Header Ad
   ========================================================================== */
.ad--header {
  background: #fff;
  border-bottom: 2px solid #edf0fa;
  border-top: 2px solid #edf0fa;
  padding-top: 12px;
  padding-bottom: 12px; }

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

.medianet-desktop-inner-box {
  background-color: transparent;
  min-height: 70px;
  min-width: 600px;
  max-width: 830px;
  margin-left: auto;
  margin-right: auto; }

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

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

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

.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 Styles
   ========================================================================== */
.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;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8px; }

.mobile-incontent-outer-box {
  display: block;
  width: 95%;
  max-width: 350px;
  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; }

.oop-ad {
  height: 0; }

.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; }

/* ==========================================================================
 #HOME PAGE IN-CONTENT ADS
 ========================================================================== */
.homepage-ad-box-L3 {
  width: 100%;
  min-height: 90px;
  padding: 40px 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }

.homepage-ad-box-L4 {
  width: 100%;
  min-height: 90px;
  padding-top: 80px;
  padding-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  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; } }

@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%; } }

@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; } }

@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; } }

.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; }

/* ==========================================================================
   #SPECIAL CONTRIBUTORS
   ========================================================================== */
.contributor-initialize {
  all: initial; }

.contributor-form {
  box-sizing: border-box;
  width: 180px;
  height: 350px;
  margin-top: -20px;
  margin-left: auto;
  margin-right: auto; }

.post-99490 {
  text-align: center; }

.contributor-login-username, .contributor-login-password {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  height: 65px;
  text-align: left; }

.contributor-login-remember, .contributor-login-submit {
  box-sizing: border-box;
  width: 100%;
  height: 50px; }

.contributor-login-submit {
  text-align: center; }

/* 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 #cccfd9;
  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: #e9edf2;
  text-align: center; }
  .contest-sponsors a {
    display: inline-block;
    padding: 17px 2%;
    width: 31.3333%; }
    @media (min-width: 62.5em) {
      .contest-sponsors a {
        width: 16%; } }
.contest-sponsors.has-featured-sponsors {
  background: #fff;
  border-bottom: 1px solid #e3e3e3; }

.has-featured-sponsors .contest-sponsors__featured {
  background: #e9edf2;
  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; }

.single-contest p a:not(.c-btn) {
  color: #4fa9d6;
  transition: color 0.15s;
  text-decoration: none; }

.single-contest p a:not(.c-btn):focus,
.single-contest p a:not(.c-btn):hover {
  color: #1e475c; }

.page-template-enter-contest .my-account-block .c-btn--small {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 2;
  padding: 12px 24px;
  min-width: 190px; }

.fit-img img {
  height: 245px;
  width: 100%;
  object-fit: cover; }

.past-contest-winners .c-carousel-wrapper {
  background: none; }

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

#contest-entry-fees {
  background: #fff;
  margin-bottom: -40px; }

#contest-prize-deck {
  background: #f6f9fc; }
  #contest-prize-deck .prize-content {
    margin: 0 auto 48px;
    max-width: 812px; }
  #contest-prize-deck .prize-image {
    background: linear-gradient(#f6f9fc 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;
    font-size: 18px; }
    .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: #cccfd9;
    content: '';
    display: block;
    height: 1px;
    margin: 48px auto;
    max-width: 1085px;
    width: 90%; }

#contest-quote {
  background-color: #495570;
  color: white;
  padding: 25px 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-top: none;
    border-bottom: none; }
    @media (min-width: 62.5em) {
      #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 {
  background-color: #f6f9fc;
  border-bottom: 1px solid #cccfd9;
  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: #f6f9fc;
    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 #cccfd9;
  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 #cccfd9;
  max-height: 1200px;
  overflow: hidden;
  overflow-y: scroll;
  padding: 24px; }

#contest-faq {
  margin-bottom: 60px;
  overflow: hidden;
  clear: both; }

.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: 80px; }

#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 #cccfd9;
  border-bottom: 1px solid #cccfd9;
  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: 62.5em) {
    .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: 62.5em) {
    .gallery-container,
    .gallery-actions {
      padding-bottom: 60px; } }
.gallery-actions .o-layout__item {
  margin-bottom: 24px; }
  @media (min-width: 62.5em) {
    .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: 62.5em) {
    .contest-banner-image-container {
      height: auto; } }
.contest-banner {
  max-width: initial;
  height: 100%;
  margin-bottom: 0; }
  @media (min-width: 62.5em) {
    .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 {
  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: 62.5em) {
    .countdown-clock {
      font-size: 64px;
      font-size: 3.7647058824rem;
      line-height: normal; }
      .countdown-clock:before {
        background-color: #cccfd9;
        content: '';
        height: 1px;
        position: absolute;
        top: 50%;
        width: 100%; } }
  .countdown-clock > div {
    background: #f6f9fc;
    border-left: 1px solid #cccfd9;
    padding: 10px;
    display: inline-block;
    z-index: 2; }
    @media (min-width: 62.5em) {
      .countdown-clock > div {
        width: 180px; } }
  .countdown-clock > div:last-child {
    border-right: 1px solid #cccfd9; }
  .countdown-clock div > span {
    padding: 0 5px;
    border-radius: 3px;
    display: inline-block; }
  .countdown-clock .countdown-clock__label {
    font-family: "Source Sans Pro", Verdana, sans-serif;
    font-size: 14px;
    font-size: 0.8235294118rem;
    line-height: normal;
    letter-spacing: 0.01em;
    text-transform: uppercase; }

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

.past-winner__title {
  color: #495570;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-size: 13px;
  font-size: 0.7647058824rem;
  line-height: 1.6538461538;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase; }

.past-winner span {
  padding: 0px 20px 0px 20px;
  float: left; }
  @media (min-width: 41.25em) {
    .past-winner span {
      padding: 0px; } }
.owl-nav {
  display: none; }
  @media (min-width: 62.5em) {
    .owl-nav {
      display: block; } }
.contest-newsletter-cta {
  background: #1a1a1a;
  background-size: 412px auto;
  color: #fff;
  padding: 24px 0;
  position: relative; }
  @media (min-width: 62.5em) {
    .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: 62.5em) {
    .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: 62.5em) {
      .contest-newsletter-cta__form #input_46_2 {
        margin-right: 24px;
        margin-bottom: 0;
        max-width: 360px; } }
  .contest-newsletter-cta__form input[type="submit"] {
    border: 2px solid currentColor; }

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

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

/* End Contest Styles */
/* ==========================================================================
   #TOUR
   ========================================================================== */
.tour-search-form p {
  margin-bottom: 17px; }

.tour-search-form select,
.tour-search-form input {
  display: block;
  height: 45px;
  padding: 7px;
  width: 100%; }
  @media (min-width: 41.25em) {
    .tour-search-form select,
    .tour-search-form input {
      display: inline-block; } }
.tour-search-form input {
  margin-bottom: 17px; }

.tour-desc-child {
  font-size: 18px; }

.tour-letters-parent {
  width: 100%;
  height: 40px; }
  @media screen and (max-width: 600px) {
    .tour-letters-parent {
      display: none; } }
.tour-letters-child {
  width: 99.5%;
  height: 100%;
  margin: 0 auto; }

.tour-letter {
  float: left;
  width: 3.95%; }

.tour-form-parent {
  width: 100%; }
  @media screen and (min-width: 501px) {
    .tour-form-parent {
      height: 55px;
      margin-bottom: 35px; } }
@media screen and (max-width: 500px) {
  .tour-form-select-location-parent {
    height: 80px; } }

@media screen and (min-width: 501px) {
  .tour-form-select-location-parent {
    width: 23%;
    min-width: 185px;
    float: left; } }

@media screen and (min-width: 501px) {
  .tour-form-select-location-child {
    width: 95%; } }

@media screen and (max-width: 500px) {
  .tour-form-select-location-child {
    width: 100%; } }

.tour-form-find-button {
  float: right; }

.tour-form-search-bar {
  overflow: hidden; }

@media screen and (min-width: 1001px) {
  .tour-secondary-content-container {
    width: 342px;
    float: right;
    margin-bottom: 24px; } }

@media screen and (max-width: 1000px) {
  .tour-secondary-content-container {
    display: none; } }

.tour-listing-dividing-line {
  border-top: 1px solid #d8dee3;
  margin-top: 24px; }

.tour-listing-parent {
  margin-top: 32px; }

@media screen and (min-width: 601px) {
  .tour-listing-logo-main {
    width: 35%; } }

@media screen and (max-width: 600px) {
  .tour-listing-logo-main {
    display: none; } }

@media screen and (min-width: 601px) {
  .tour-listing-info-main {
    padding-left: 50px;
    width: 65%; } }

@media screen and (max-width: 600px) {
  .tour-listing-info-main {
    padding-left: 50px;
    width: 100%; } }

@media screen and (max-width: 500px) {
  .tour-listing-label {
    font-weight: bold;
    min-width: 140px; } }

@media screen and (min-width: 601px) {
  .tour-listing-label {
    float: left;
    font-weight: bold;
    min-width: 140px;
    min-height: 30px; } }

@media screen and (min-width: 501px) and (max-width: 600px) {
  .tour-listing-label {
    float: left;
    font-weight: bold;
    min-width: 140px; } }

@media screen and (min-width: 501px) and (max-width: 600px) {
  .tour-listing-info {
    padding-bottom: 10px; } }

@media screen and (min-width: 601px) {
  .tour-listing-info {
    min-height: 30px;
    overflow: hidden; } }

/* ==========================================================================
   #WOOCOMMERCE & VIP
   ========================================================================== */
.membership-promotion-header-banner {
  background: #4db3e6;
  color: #ffffff; }

.membership-promotion-header-banner__content-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 800px;
  padding: 20px 10px; }
  @media (min-width: 41.25em) {
    .membership-promotion-header-banner__content-wrapper {
      flex-direction: row;
      padding: 10px; } }
.membership-promotion-header-banner__content {
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: normal;
  margin: 10px;
  max-width: 250px;
  text-align: center; }
  @media (min-width: 41.25em) {
    .membership-promotion-header-banner__content {
      text-align: left;
      margin: 0 20px; } }
.membership-promotion-header-banner__link {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.4117647059; }

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

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

.page-template-user-page .gform_wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 726px; }

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

.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.bwm-lp #content {
  text-align: center; }

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

.woocommerce-member-benefits .ad--header,
.woocommerce-partner-discounts .ad--header,
.page-template-member-page .ad--header,
.page-template-partner-discounts .ad--header,
.page-template-single-landing-page .ad--header {
  background: #f3f3f3;
  border-bottom: none; }

.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; }

.woocommerce-member-benefits .page-content,
.woocommerce-partner-discounts .page-content,
.page-template-member-page .page-content,
.page-template-partner-discounts .page-content,
.page-template-single-landing-page .page-content {
  background: #fff;
  margin-bottom: 24px;
  padding: 48px 0; }

.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 {
  display: block;
  position: relative; }
  .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 {
        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__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: "Source Sans Pro", Verdana, sans-serif;
  text-align: left; }

.eworkshops-table td {
  font-family: "Source Sans Pro", Verdana, sans-serif; }

.webinar-availability {
  color: #bdbdbd; }

.member-benefits-section--webinars-and-eworkshops .member-benefits-section__icon > img {
  max-width: 90px; }

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

.member-benefits-section--webinars-and-eworkshops,
.member-benefits-section--elearning-guides {
  padding: 48px 0; }

.member-benefits-section--elearning-guides {
  background: #fff;
  padding: 48px 0; }

.partner-discount {
  background: #fff;
  border: 1px solid #d1d1d1;
  margin-bottom: 48px;
  min-height: 590px; }

.partner-discount__top,
.partner-discount__bottom {
  padding: 24px; }

.partner-discount__top {
  display: flex;
  align-content: center;
  border-bottom: 1px solid #d1d1d1;
  height: 240px;
  justify-content: center; }
  .partner-discount__top > img {
    margin: auto; }

.partner-discount__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .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; }

.bwm-benefits-container {
  background: #fff;
  padding: 40px 0;
  margin: 40px 0; }

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

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

.bwm-benefits .bwm-benefit {
  border: none;
  text-align: center; }
  .bwm-benefits .bwm-benefit .benefit-description {
    padding: 0 10px 30px; }

.bwm-benefits .benefit-icon {
  height: 40px;
  margin-bottom: 24px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center; }

.bwm-benefits .benefit-icon img {
  display: inline-block; }

.bwm-benefits .benefit-title {
  font-size: 22px;
  font-size: 1.2941176471rem;
  line-height: normal;
  padding-left: 10px;
  padding-right: 10px; }

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

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

.free-trial-cta-form {
  display: flex;
  margin: auto;
  max-width: 515px;
  flex-direction: column; }
  @media (min-width: 62.5em) {
    .free-trial-cta-form {
      flex-direction: row; } }
.free-trial-cta .widgettitle {
  font-size: 40px;
  font-size: 2.3529411765rem;
  line-height: 1.2;
  letter-spacing: normal;
  margin-left: auto;
  margin-right: auto;
  max-width: 520px; }

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

.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: 640px; }

.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: 62.5em) {
    .free-trial-cta--action input {
      margin-bottom: 0;
      margin-right: 20px; } }
.access-restricted .c-sharing--horizontal {
  display: none !important;
  visibility: hidden; }

body.bwm-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.bwm-lp #content .wcopc .form-row input,
body.product-template-default.single.single-product #content .is-gifting .form-row input {
  float: none; }

body.bwm-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.bwm-lp #content .wcopc .woocommerce-form-coupon-toggle,
body.product-template-default.single.single-product #content .is-gifting .woocommerce-form-coupon-toggle {
  display: none; }

body.bwm-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: 62.5em) {
    .membership-plan {
      margin-bottom: 0; } }
.membership-plan-image {
  padding: 12px 0 24px;
  text-align: center; }

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

.sidebar-a .sidebar-block .row {
  position: relative; }

.sidebar-a .sidebar-block .row .col-sm-6.col-md-6 {
  position: static; }

.sidebar-a .sidebar-block .woocommerce {
  left: 12px; }

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

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

.woocommerce-additional-fields .bwm-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_bwm-featured-posts .read-more-wrapper {
  padding-top: 10px; }

.search-results article {
  position: relative; }

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

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

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

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

.no-results {
  display: block; }

.bwm-search-filter-sidebar .bwm-sidebar-filter .taxonomy-list {
  margin-bottom: 1rem; }

.bwm-search-filter-sidebar .bwm-sidebar-filter .taxonomy-list h5 {
  position: relative;
  margin: 0; }

.bwm-search-filter-sidebar .bwm-sidebar-filter .taxonomy-list h5 label {
  display: block;
  font-size: 18px;
  cursor: pointer;
  padding-left: 20px; }

.bwm-search-filter-sidebar .bwm-sidebar-filter .taxonomy-list h5 label::before {
  position: absolute;
  left: 0;
  content: ' + ';
  font-weight: bold;
  font-size: 1rem;
  color: #000;
  display: inline-block;
  width: 10px;
  text-align: center; }

.bwm-search-filter-sidebar .bwm-sidebar-filter .taxonomy-list h5 label.expanded::before {
  content: ' - '; }

.bwm-search-filter-sidebar .bwm-sidebar-filter .taxonomy-list h5 .clear {
  position: absolute;
  right: 0;
  top: 1rem;
  cursor: pointer;
  color: #000;
  font-weight: normal; }

.bwm-search-filter-sidebar .bwm-sidebar-filter .taxonomy-list h5 .clear:hover {
  text-decoration: underline; }

.bwm-search-filter-sidebar .bwm-sidebar-filter .taxonomy-list .items {
  display: none;
  padding: 10px 0 0 20px; }

.bwm-search-filter-sidebar .bwm-sidebar-filter .taxonomy-list .items .filter-term input[type="checkbox"] {
  margin-right: 10px; }

.bwm-search-filter-sidebar .bwm-sidebar-filter .taxonomy-list .items .filter-term label {
  font-size: 1rem; }

#bwm-sidebar-filter-form {
  padding: 20px 0 20px 20px;
  border-left: 1px solid #ccc;
  margin-bottom: 20px;
  overflow: hidden; }

#bwm-sidebar-filter-form .bwm-tax-filter-head {
  font-size: 20px;
  text-align: center; }

#bwm-sidebar-filter-form .bwm-filter-action {
  text-align: center; }

#bwm-sidebar-filter-form .bwm-filter-action input {
  display: inline-block; }

.bwm-search-filter-sidebar .bwm-sidebar-filter .filter-term {
  display: block; }

.search-search-block form {
  overflow: hidden; }

#bwm-search-orderby {
  float: left;
  margin-top: 1rem; }

#bwm-search-orderby label {
  font-weight: bold;
  font-size: .8rem; }

.search-page--search-submit {
  float: right;
  margin-top: 1rem; }

.search.search-results .search-search-block form {
  margin-bottom: 20px; }

.search-result .entry-header {
  position: relative;
  z-index: 10; }

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

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

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

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

.woocommerce form.bwm-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; }

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

.bwm-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; }

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

.bwm-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 {
  background: #fff;
  border: 1px solid #d1d1d1;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-size: 17px;
  font-size: 1rem;
  line-height: 1.4117647059;
  margin-bottom: 24px;
  min-height: 155px;
  padding: 20px; }

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

.membership-cta .membership-plan .content {
  position: relative;
  background: #fff;
  border: 1px solid #d1d8df;
  border-radius: 3px;
  box-shadow: 13.5px 23.383px 54.51px 24.49px rgba(118, 146, 180, 0.18);
  padding-bottom: 40px; }

.membership-cta .membership-plan .top {
  padding: 20px;
  background: #f6f9fc;
  border-bottom: 1px solid #d1d8df; }

.membership-cta .membership-plan .top .membership-plan-name {
  color: #2b2d4f;
  line-height: 1.2em;
  margin-bottom: 0; }

.membership-cta .membership-plan.featured .top,
.membership-cta .membership-plan.featured .top .membership-plan-name {
  color: #fff; }

.membership-cta .membership-plan .top .membership-plan-price {
  font-size: 14px; }

.membership-cta .membership-plan .mid {
  padding: 40px 20px;
  text-align: left; }

.membership-cta .membership-plan .mid .membership-plan-details {
  font-size: 18px;
  font-size: 1.0588235294rem;
  line-height: 1.5555555556; }
  .membership-cta .membership-plan .mid .membership-plan-details li {
    margin-bottom: 12px; }

.membership-cta .membership-plan .bottom {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 1.5em; }

.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; }

.membership-cta .membership-plan.featured .top {
  background: #45b2e8; }

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

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

.bwm-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; }

.bwm-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);
  color: #969899; }

.my-account-block-top-block-row {
  font-size: 15px;
  font-size: 0.8823529412rem;
  line-height: 1.2;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 0; }

.my-account-block-top-block-header {
  background: #4db3e6;
  color: #fff;
  font-family: "Source Sans Pro", Verdana, 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-size: 16px;
  font-size: 0.9411764706rem;
  line-height: 1.2;
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-weight: bold;
  padding: 15px 25px; }

.my-account-block-small-block-subtext {
  font-size: 15px;
  font-size: 0.8823529412rem;
  line-height: 1.2;
  padding: 25px 3px;
  text-align: center; }

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

/* ==========================================================================
   #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: "Source Sans Pro", Verdana, 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: "Source Sans Pro", Verdana, 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: "Source Sans Pro", Verdana, sans-serif;
  font-weight: normal; }
  .u-h1 .entry-content,
  .u-h2 .entry-content,
  .u-h3 .entry-content,
  .u-h4 .entry-content,
  .u-h5 .entry-content,
  .u-h6 .entry-content {
    color: #2b2d4f; }
  .u-h1 a,
  .u-h2 a,
  .u-h3 a,
  .u-h4 a,
  .u-h5 a,
  .u-h6 a {
    color: inherit; }

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

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

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

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

.u-h5 {
  font-size: 20px !important;
  font-size: 1.1764705882rem !important;
  line-height: 1.225 !important;
  letter-spacing: -0.5px; }

.u-h6 {
  font-size: 17px;
  font-size: 1rem;
  line-height: 1.4117647059;
  letter-spacing: -0.5px; }

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

.u-sans-serif {
  font-family: "Source Sans Pro", Verdana, sans-serif; }

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

.u-font-color-primary-link {
  color: #4fa9d6 !important; }

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

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

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

/**
 * Clear both for items following WordPress' .alignleft/.alignright classes.
 */
.u-clear-both {
  clear: both; }

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