@charset "UTF-8";
/*!
Theme Name: Madavor Child - TW
Description: Theme for The Writer
Theme URI: http://thewritermag.com/
Author: Stephen Simon Interactive
Author URI: http://stephensimon.com
Version: 1.1.0
Template: madavor
Text Domain: madavor

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


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

body {
  font-family: "PT Serif", Georgia, serif; }

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

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

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

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

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

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

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

h6 {
  font-size: 18px;
  font-size: 1.0588235294rem;
  line-height: 1.3333333333; }
  h6:not(.u-sans-serif) {
    letter-spacing: -0.5px; }

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

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

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

input,
select,
textarea {
  background-color: #ffffff;
  border: 1px solid #000;
  border-radius: 3px;
  font-family: "PT Sans", Verdana, sans-serif; }
  input:focus, input:focus-within,
  select:focus,
  select:focus-within,
  textarea:focus,
  textarea:focus-within {
    border-color: #e05560;
    outline: none !important; }

[type="checkbox"],
[type="radio"] {
  min-height: inherit; }

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; } }
.gform_wrapper.gf_browser_gecko select {
  padding: 7px 22px 3px 2px; }

.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label {
  display: block !important;
  padding: 3px 0 4px 31px !important; }

.gform_wrapper .gfield_checkbox input + label:before,
.gform_wrapper .gfield_radio input + label:before {
  border: 2px solid #c7c7c7;
  border-radius: 50%;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 18px; }

.gform_wrapper .gfield_checkbox input + label:after,
.gform_wrapper .gfield_radio input + label:after {
  content: "";
  background: #000 url(assets/images/checkmark.png) 50% no-repeat;
  border-radius: 50%;
  border-left: 0;
  border-top: 0;
  height: 18px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 6px;
  width: 18px; }
  @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) {
    .gform_wrapper .gfield_checkbox input + label:after,
    .gform_wrapper .gfield_radio input + label:after {
      background-image: url(assets/images/checkmark@2x.png);
      background-size: 9px 10px; } }
.gform_wrapper .gfield_checkbox input:checked + label,
.gform_wrapper .gfield_radio input:checked + label {
  font-weight: bold; }

.gform_wrapper .gfield_checkbox input:checked + label::after,
.gform_wrapper .gfield_radio input:checked + label::after {
  opacity: 1; }

.gform_wrapper .gfield_radio input[type="radio"] {
  height: 18px;
  left: 0;
  margin-top: 0 !important;
  min-height: 18px;
  opacity: 0;
  position: absolute;
  top: 6px;
  width: 18px; }

.gform_wrapper .gfield_checkbox input[type="checkbox"] {
  height: 18px;
  left: 0;
  margin-top: 0 !important;
  min-height: 18px;
  opacity: 0;
  position: absolute;
  top: 6px;
  width: 18px; }

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
.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: "PT Sans", Verdana, sans-serif;
  text-align: center;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  padding: 10px 24px;
  transition: all 300ms ease-in-out;
  border-radius: 0; }
  .c-btn > a,
  input[type="submit"] > a {
    color: inherit; }

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

/* Style variants
   ========================================================================== */
.c-btn--primary,
input[type="submit"] {
  background-color: #ffffff;
  border: 1.5px solid #000;
  color: #000;
  font-weight: 700;
  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] */ }
  .c-btn--primary:hover, .c-btn--primary:focus,
  input[type="submit"]:hover,
  input[type="submit"]:focus {
    background-color: #000;
    color: #FFF; }

.c-btn--secondary {
  background-color: #505050;
  color: #FFF;
  font-weight: 700;
  text-transform: uppercase; }
  .c-btn--secondary, .c-btn--secondary:hover, .c-btn--secondary:active, .c-btn--secondary:focus {
    text-decoration: none; }
  .c-btn--secondary:hover, .c-btn--secondary:focus {
    background-color: #000;
    color: #FFF; }

.c-btn--tertiary {
  background-color: #ffffff;
  border: 1px solid #c0c0c0;
  border-radius: 50px;
  color: #000000;
  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: #808080; }
  .c-btn--tertiary:hover, .c-btn--tertiary:focus {
    border-color: #000000;
    color: #000000; }

/* Size variants
   ========================================================================== */
.c-btn--small {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.5;
  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 {
    border-color: rgba(0, 0, 0, 0.5);
    color: #000; }
    .c-btn--ghost.c-btn--primary:hover, .c-btn--ghost.c-btn--primary:focus {
      color: #FFF; }
  .c-btn--ghost.c-btn--secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFF; }
    .c-btn--ghost.c-btn--secondary:hover, .c-btn--ghost.c-btn--secondary:focus {
      border-color: white;
      color: #FFF; }
  .c-btn--ghost.c-btn--tertiary {
    border-color: rgba(0, 0, 0, 0.5);
    color: #000000; }
    .c-btn--ghost.c-btn--tertiary:hover, .c-btn--ghost.c-btn--tertiary:focus {
      border-color: white;
      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-nav.disabled,
	.owl-dots.disabled {
		display: none;
	}*/ }
  .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 .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: #000;
    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; }

/**
 * The Writer Theme
 */
.c-carousel-wrapper {
  background: #FFFFFF;
  /*min-height: 300px;
	@include mq($from: tablet) {
		min-height: 572px;
	}*/ }

.owl-theme .owl-nav {
  /*position: absolute;
    top: 45%;
    width: 100%;*/
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-theme .owl-prev {
  float: left;
  margin-left: 24px; }

.owl-theme .owl-next {
  float: right;
  margin-right: 24px; }

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

.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: "PT Sans", 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;
  width: 100px; }
  @media (min-width: 41.25em) {
    .site-title {
      width: 130px; } }
  @media (min-width: 62.5em) {
    .site-title {
      margin: 0;
      padding: 20px 0;
      width: auto; } }
  .site-title svg {
    fill: #000000;
    max-width: 100%; }

.site-header .menu-social-navigation-container {
  display: inline-block; }
  .site-header .menu-social-navigation-container a:hover {
    color: #1e475c; }
    .site-header .menu-social-navigation-container a:hover .icon {
      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 .menu-social-navigation-container .menu a {
  color: #fff; }
  .site-header--overlay .menu-social-navigation-container .menu a:hover {
    fill: #4db3e6; }

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

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

.c-favorites-link {
  color: #000;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: normal;
  text-transform: uppercase;
  vertical-align: middle; }
  @media (min-width: 62.5em) {
    .c-favorites-link {
      border-right: 1px solid #e6e6e6;
      margin-right: 12px;
      padding-right: 12px; } }
  .c-favorites-link .c-favorites-link__icon {
    fill: #000;
    margin-right: 9px;
    vertical-align: middle; }
  .c-favorites-link:hover, .c-favorites-link:focus {
    color: #cf0e3a; }
    .c-favorites-link:hover .c-favorites-link__icon, .c-favorites-link:focus .c-favorites-link__icon {
      fill: #cf0e3a; }

.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: #000000; }
    .menu a:hover {
      color: #e05560; }

.main-navigation {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  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; } }
  .main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
    text-transform: uppercase; }
    .main-navigation ul ul {
      display: inline-block;
      padding: 12px 0;
      text-transform: none; }
      @media (min-width: 62.5em) {
        .main-navigation ul ul {
          background-color: #fff;
          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-family: "PT Sans", Verdana, sans-serif;
        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;
    font-family: "PT Serif", Georgia, serif;
    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 .current_page_item > a,
  .main-navigation .current-menu-item > a,
  .main-navigation .current_page_ancestor > a,
  .main-navigation .current-menu-ancestor > a {
    color: #e05560; }
  .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: #ffffff;
  border: none;
  border-radius: 5px;
  height: 44px;
  left: 10px;
  padding: 5px;
  position: absolute;
  text-align: center;
  top: 20px;
  width: 44px; }
  .menu-toggle svg {
    fill: #000000;
    margin-left: auto;
    margin-right: auto; }

@media (min-width: 62.5em) {
  .menu-toggle {
    display: none; }
  .main-navigation ul {
    display: flex;
    justify-content: space-between;
    text-align: center; }
  .main-navigation ul ul {
    text-align: left;
    width: 236px; } }

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

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

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

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

#content .woocommerce-MyAccount-navigation ul {
  color: #c7c7c7;
  font-family: "PT Sans", 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: #c7c7c7;
      content: " | ";
      padding: 0 .5em 0 .2em; }
    #content .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link:last-child:after {
      content: none; }
  #content .woocommerce-MyAccount-navigation ul a {
    color: #000000;
    text-decoration: none !important; }
    #content .woocommerce-MyAccount-navigation ul a:hover, #content .woocommerce-MyAccount-navigation ul a:focus {
      color: #e05560; }
  #content .woocommerce-MyAccount-navigation ul .is-active a {
    color: #e05560; }

.user-menu {
  border-bottom: 6px solid #fff;
  display: inline-block;
  right: 10px;
  position: absolute;
  top: 20px; }
  @media (min-width: 25em) {
    .user-menu {
      left: 95px;
      right: initial; } }
  @media (min-width: 62.5em) {
    .user-menu {
      display: inline-block;
      left: initial;
      position: relative;
      top: initial; } }
  .user-menu .c-mobile-user-link {
    display: block;
    padding: 10px 0;
    width: 44px; }
    .user-menu .c-mobile-user-link > svg {
      fill: #000; }
  .user-menu .woocommerce-MyAccount-navigation {
    background-color: #FFF;
    border: 1px solid #000;
    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: #000;
      padding: 0;
      text-transform: uppercase; }
      .user-menu .woocommerce-MyAccount-navigation a:hover, .user-menu .woocommerce-MyAccount-navigation a:focus {
        background-color: #FFF;
        color: #cf0e3a; }
  .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 #000;
    bottom: -6px; }
  .user-menu .user-menu--trigger:after,
  .user-menu .user-menu--trigger:after {
    border-color: transparent transparent #fff;
    bottom: -7px; }
  .user-menu:hover .user-menu--trigger:before, .user-menu.focus .user-menu--trigger:before,
  .user-menu .user-menu--trigger:hover:before,
  .user-menu .user-menu--trigger.focus:before, .user-menu:hover .user-menu--trigger:after, .user-menu.focus .user-menu--trigger:after,
  .user-menu .user-menu--trigger:hover:after,
  .user-menu .user-menu--trigger.focus:after {
    display: block; }

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

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

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

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

.menu-subscribe-container {
  display: none;
  right: 10px;
  position: absolute;
  top: 27px; }
  @media (min-width: 25em) {
    .menu-subscribe-container {
      display: inline-block; } }
  @media (min-width: 62.5em) {
    .menu-subscribe-container {
      position: relative;
      right: initial;
      top: initial; } }
  .menu-subscribe-container ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
    text-transform: uppercase; }
    .menu-subscribe-container ul ul {
      background-color: #FFF;
      border: 1px solid #000;
      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;
        color: #000;
        padding: 0; }
        .menu-subscribe-container ul ul a:hover, .menu-subscribe-container ul ul a:focus {
          background-color: #FFF;
          color: #cf0e3a; }
  .menu-subscribe-container li:hover ul,
  .menu-subscribe-container li.focus ul {
    display: block;
    left: initial;
    right: 0; }
    @media (min-width: 62.5em) {
      .menu-subscribe-container li:hover ul,
      .menu-subscribe-container li.focus ul {
        right: -60px; } }
  .menu-subscribe-container li {
    display: block;
    position: relative; }
    .menu-subscribe-container li:last-child {
      margin-right: 0; }
  .menu-subscribe-container a {
    background-color: #FFF;
    border: 1.5px solid #000;
    color: #000;
    font-weight: 700;
    display: block;
    font-size: 14px;
    font-size: 0.8235294118rem;
    line-height: 1.5;
    padding: 4px 10px;
    text-transform: uppercase;
    text-decoration: none; }
    @media (min-width: 62.5em) {
      .menu-subscribe-container a {
        padding: 4px 24px; } }
    .menu-subscribe-container a:hover, .menu-subscribe-container a:focus {
      background-color: #000;
      color: #FFF; }
  .menu-subscribe-container .current_page_item > a,
  .menu-subscribe-container .current-menu-item > a {
    color: #cf0e3a; }
  .menu-subscribe-container li.menu-item-has-children {
    border-bottom: 6px solid #fff; }
  .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 #000;
    bottom: -6px; }
  .menu-subscribe-container ul li.menu-item-has-children:after,
  .menu-subscribe-container ul li.page_item_has_children:after {
    border-color: transparent transparent #fff;
    bottom: -7px; }
  .menu-subscribe-container ul li.menu-item-has-children.focus:before,
  .menu-subscribe-container ul li.menu-item-has-children:hover:before,
  .menu-subscribe-container ul li.menu-item-has-children.focus:after,
  .menu-subscribe-container ul li.menu-item-has-children:hover:after,
  .menu-subscribe-container ul li.page_item_has_children.focus:before,
  .menu-subscribe-container ul li.page_item_has_children:hover:before,
  .menu-subscribe-container ul li.page_item_has_children.focus:after,
  .menu-subscribe-container ul li.page_item_has_children:hover:after {
    display: block; }

/* ==========================================================================
   #SEARCH FORM
   ========================================================================== */
.search-form {
  background-color: #ffffff;
  border: 1px solid #d1d8df;
  border-radius: 3px;
  display: inline-block;
  font-family: "PT Sans", 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: #000;
  height: 20px;
  vertical-align: middle; }

.header-search-toggle {
  background: none;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  height: 44px;
  left: 53px;
  position: absolute;
  top: 20px;
  vertical-align: middle;
  width: 44px; }
  .header-search-toggle svg {
    fill: #000000;
    vertical-align: middle; }
  @media (min-width: 62.5em) {
    .header-search-toggle {
      border-left: 1px solid #e6e6e6;
      height: 16px;
      margin-left: 3px;
      margin-right: 5px;
      padding-left: 15px;
      position: relative;
      left: auto;
      top: auto;
      width: auto; } }
@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 {
  clear: both;
  color: #c3c3c3;
  font-family: "PT Sans", Verdana, sans-serif;
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.7142857143;
  padding-top: 15px; }
  .breadcrumbs a {
    color: #c3c3c3; }
    .breadcrumbs a:hover, .breadcrumbs a:focus {
      color: #000; }

.breadcrumbs__separator {
  font-weight: bold;
  padding-left: 5px;
  padding-right: 5px; }

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

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

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

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

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

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

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

@media (min-width: 62.5em) {
  .primary-content-container {
    max-width: calc(100% - 324px); } }

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

@media (min-width: 41.25em) {
  .main-article {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    min-height: 1500px; }
    .page-template-my-account .main-article {
      min-height: auto; } }

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

.single .site-main .entry-header--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px; }

@media (min-width: 62.5em) {
  .entry-content-wrapper {
    padding-left: 204px;
    position: relative; } }

.entry-content-wrapper .entry-content {
  margin-bottom: 24px; }
  .entry-content-wrapper .entry-content:after {
    content: "" !important;
    display: block !important;
    clear: both !important; }

.post-thumbnail:focus {
  outline: none; }

@media (min-width: 41.25em) {
  .post-thumbnail--right\@tablet {
    float: right;
    margin-bottom: 24px;
    margin-left: 24px;
    width: 300px; } }

.entry-content-wrapper .post-thumbnail {
  max-width: 796px; }

.entry-content-wrapper .entry-content,
.entry-content-wrapper .entry-footer,
.entry-content-wrapper .comments-area {
  max-width: 696px; }

@media (min-width: 62.5em) {
  .single .site-main .entry-aside {
    display: inline-block;
    height: 100%;
    left: 0;
    min-height: 100%;
    position: absolute;
    top: 0;
    vertical-align: top;
    width: 179px; } }

.entry-meta {
  color: #8592a4;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 16px;
  font-size: 0.9411764706rem;
  line-height: 1.5;
  font-weight: 300;
  text-transform: uppercase; }

.byline {
  color: #000000; }

.single .main-article .entry-meta {
  color: #000; }

@media (min-width: 41.25em) {
  .single .main-article .entry-meta span:not(:first-child),
  .single .main-article .entry-meta .simplefavorite-button,
  .single .main-article .entry-meta .c-btn--save-article {
    border-left: 1px solid #e0e0e0;
    margin-left: 12px;
    padding-left: 12px; } }

.entry-meta--current-article .byline {
  color: #e05560;
  font-weight: 700; }

.c-btn--save-article {
  color: #000; }
  .c-btn--save-article > svg {
    fill: #000; }
  .c-btn--save-article:hover, .c-btn--save-article:focus {
    color: #cf0e3a; }
    .c-btn--save-article:hover > svg, .c-btn--save-article:focus > svg {
      fill: #cf0e3a; }

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

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

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

.entry-excerpt {
  color: #5e6a74;
  font-family: "PT Sans", Verdana, sans-serif;
  font-size: 15px;
  font-size: 0.8823529412rem;
  line-height: 1.5333333333; }
  .entry-excerpt p:last-child {
    margin-bottom: 0; }

.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-left: 6px solid #d4d4d4;
  font-family: "PT Serif", Georgia, serif;
  font-size: 27px;
  font-size: 1.5882352941rem;
  line-height: 1.3333333333;
  font-weight: 700;
  padding-left: 24px;
  text-align: left; }

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

.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__header {
  margin-bottom: 24px; }

.module-section__header-link {
  color: #999999;
  text-transform: uppercase; }

@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: 324px; } }

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

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

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

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

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

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

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

@media (min-width: 78.125em) {
  .module-section--3-col.module-section--has-non-post-content .module-section__post-content {
    padding-left: 30px;
    width: 443px; } }

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

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

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

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

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

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

.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 #cccccc;
  padding: 35px 40px; }
  .stacked--border .post-thumbnail {
    display: block;
    border: 1px solid #e1e1e1;
    margin-bottom: 30px; }
    .stacked--border .post-thumbnail img {
      display: block;
      height: 250px;
      object-fit: cover;
      width: 100%; }
  .u-1\/3\@tablet .stacked--border {
    padding: 24px; }

.stacked__content {
  color: #5e6a74; }
  .stacked--border .stacked__content {
    background-color: #fff; }
  .stacked__content .entry-header a {
    color: #000; }
    .stacked__content .entry-header a:focus, .stacked__content .entry-header a:hover {
      color: #e05560; }

.module-home-call-to-action {
  padding-bottom: 48px;
  padding-top: 48px; }

.module-home-call-to-action__content :last-child {
  margin-bottom: 0; }

.listing {
  margin-bottom: 33px; }
  .listing .entry-header,
  .listing .entry-content {
    max-width: 90%; }
  .listing .post-thumbnail {
    display: block; }

.listing__image {
  width: 30.395%; }

.listing__content-container {
  width: 69.605%; }

.overlay {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 195px;
  min-height: 195px;
  position: relative; }
  @media (min-width: 62.5em) {
    .overlay {
      min-height: 600px;
      height: 600px; } }
  .o-layout--equal-height .overlay {
    height: 100%; }

.overlay--short {
  height: 195px;
  max-height: 226px;
  min-height: 195px; }
  @media (min-width: 41.25em) {
    .overlay--short {
      height: 226px; } }
  @media (min-width: 41.25em) {
    .post-count-2 .overlay--short {
      height: 285px;
      max-height: none; } }
.overlay-link {
  display: block; }
  .post-count-1 .overlay-link {
    height: 100%; }
  .post-count-2 .overlay-link:first-child {
    margin-bottom: 30px; }

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

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

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

.module-section__non-post-content .widget {
  margin-left: auto;
  margin-right: auto;
  max-width: 307px; }
  .module-section__non-post-content .widget:first-child {
    margin-bottom: 12px; }
  .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; }

.archive-title {
  margin-bottom: 12px; }

.contests-list__item .contests-list__deadline {
  color: #8592a4;
  display: block; }
  @media (min-width: 62.5em) {
    .contests-list__item .contests-list__deadline {
      display: inline-block; } }
.contests-list__deadline-label {
  color: #000; }

.conference-list__dates {
  color: #8592a4; }

.conference-list__dates-label {
  color: #000; }

.page-template-user-page .site-main,
.page-template-user-page-with-sidebar .site-main {
  margin-left: auto;
  margin-right: auto;
  max-width: 790px; }

.c-launch-modal,
.simplefavorite-button {
  -webkit-appearance: none;
  background: #fff;
  border: none;
  cursor: pointer;
  padding: 0; }

/* ==========================================================================
   #WIDGETS
   ========================================================================== */
.secondary-content-container {
  margin-bottom: 24px; }
  @media (min-width: 62.5em) {
    .secondary-content-container {
      width: 300px; } }
  @media (min-width: 78.125em) {
    .secondary-content-container {
      width: 354px; } }
.widget-area--sidebar {
  margin-left: auto;
  max-width: 300px; }
  @media (max-width: 62.49em) {
    .widget-area--sidebar {
      margin-right: auto; } }
.widget--contained {
  border: 1px solid #e1e1e1; }

.widget-area--sidebar .widget {
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px; }

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

.widget-area--sidebar .widget-title {
  border-bottom: 1px solid #000;
  font-size: 27px;
  font-size: 1.5882352941rem;
  line-height: normal;
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 0 !important;
  margin-bottom: 20px;
  padding-bottom: 5px;
  text-transform: uppercase; }

.widget--current-issue {
  height: 100%;
  max-width: 307px; }

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

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

.widget--current-issue__cover {
  margin-bottom: 20px; }

.featured-posts-list {
  padding-left: 3px;
  padding-right: 3px; }

.featured-posts-list__counter {
  color: #e05560;
  padding-right: 10px; }

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

/* ==========================================================================
   #FOOTER
   ========================================================================== */
.footer-newsletter-cta {
  background: #000000 url(assets/images/footer-cta-bg.jpg) no-repeat;
  color: #fff;
  margin-top: 40px;
  padding: 40px 0;
  position: relative; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .footer-newsletter-cta {
      background-image: url(assets/images/footer-cta-bg@2x.jpg);
      background-size: 1600px 252px; } }
  .o-wrapper .footer-newsletter-cta {
    max-width: 1200px; }

.site-footer {
  background: #000000;
  color: #FFF;
  font-family: "PT Sans", Verdana, sans-serif; }
  .site-footer a {
    color: #fff; }
    .site-footer a:hover {
      color: #808080; }

.site-footer .widget-title {
  font-family: "PT Sans", Verdana, sans-serif;
  font-size: 17px;
  font-size: 1rem;
  line-height: 1.4117647059;
  margin-bottom: 17px; }

.site-footer__top {
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 24px;
  padding-top: 24px; }

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

.site-footer__bottom {
  background-color: #141414;
  color: #cccccc;
  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; }

.site-footer__logo {
  fill: #fff; }
  .site-footer--3-col .site-footer__logo {
    margin: 30px 0; }

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

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

.menu-social-navigation-container li {
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle; }

.site-footer__social-menu {
  margin-bottom: 24px; }
  .site-footer__social-menu svg {
    fill: #fff; }
  .site-footer__social-menu a {
    background-color: #1a1a1a;
    border: 1px solid #333333;
    display: block;
    color: #4fa9d6;
    height: 38px;
    padding: 5px;
    text-align: center;
    width: 38px; }
    .site-footer__social-menu a svg {
      fill: #fff; }
    .site-footer__social-menu a:hover {
      color: #808080; }
      .site-footer__social-menu a:hover svg {
        fill: #808080; }

.site-footer .icon-facebook {
  height: 13px;
  width: 7.5px; }

.site-footer .icon-twitter {
  height: 13.5px;
  width: 17px; }

.site-footer .icon-linkedin {
  height: 13px;
  width: 13px; }

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

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

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

.bottom-divider--small {
  margin-bottom: 12px;
  padding-bottom: 12px; }

.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: "PT Sans", Verdana, sans-serif;
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: normal;
  margin-bottom: 24px;
  text-align: center; }
  .pagination .page-numbers {
    border: 1px solid #000;
    display: inline-block;
    height: 33px;
    padding: 6px;
    vertical-align: middle;
    width: 33px; }
  .pagination a {
    color: #000; }
    .pagination a:hover {
      color: #e05560;
      border-color: #e05560; }
  .pagination .icon {
    height: 12px;
    top: 4px;
    width: 7px; }
  .pagination .next,
  .pagination .prev {
    padding-top: 0;
    padding-bottom: 0;
    vertical-align: middle; }
  .pagination .current {
    background: #e05560;
    border-color: #e05560;
    color: #fff;
    font-weight: 600; }

.pagination--post .page-numbers {
  background: #e05560;
  border-color: #e05560;
  color: #fff;
  font-weight: 600; }
  .pagination--post .page-numbers a {
    background: #fff;
    color: #000; }

/* ==========================================================================
   #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: #5e6a74;
  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: #e05560;
    margin-top: -60px; }

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

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

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

.subscription-tier__title {
  padding-bottom: 80px;
  color: #fff; }

.membership-tier__title {
  color: #fff; }

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

.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;
  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: #f7f7f7; }
  .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: 15px;
  font-size: 0.8823529412rem;
  line-height: 1.6666666667;
  background: #000;
  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; }

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

.c-sharing--vertical {
  width: 32px; }
  @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: 32px;
    width: 32px; }
    @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: 180px 32px; } }
  @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: -37px 0; }

.addthis_button_google_plus:before {
  background-position: -74px 0; }

.addthis_button_linkedin:before {
  background-position: -111px 0; }

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

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

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

/**
 * Post Type Call to Action
 */
.c-pt-cta {
  background: #FFFFFF;
  height: 300px;
  margin-top: 48px;
  margin-bottom: 48px;
  min-height: 300px;
  position: relative; }
  @media (min-width: 41.25em) {
    .c-pt-cta {
      height: auto;
      margin-top: 96px;
      min-height: 572px; } }
  .c-pt-cta .o-wrapper {
    height: 100%; }

.c-pt-cta__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) {
    .c-pt-cta__main {
      font-size: 17px;
      font-size: 1rem;
      line-height: normal;
      max-width: 580px;
      bottom: 72px; } }
  .c-pt-cta--vertical-center .c-pt-cta__main {
    bottom: initial;
    top: 50%;
    transform: translateY(-50%); }
  .c-pt-cta--horizontal-center .c-pt-cta__main {
    right: 0;
    text-align: center; }
    @media (min-width: 41.25em) {
      .c-pt-cta--horizontal-center .c-pt-cta__main {
        left: 50%;
        margin-left: -290px;
        text-align: left; } }
.c-pt-cta__title {
  font-size: 24px;
  font-size: 1.4117647059rem;
  line-height: normal; }
  @media (min-width: 41.25em) {
    .c-pt-cta__title {
      font-size: 40px;
      font-size: 2.3529411765rem;
      line-height: normal; } }
.c-pt-cta__content a:focus, .c-pt-cta__content a:hover {
  color: #e67880; }

.c-pt-cta__content .c-btn {
  background-color: #e05560;
  color: #fff; }
  .c-pt-cta__content .c-btn:hover {
    background-color: #fff;
    color: #000; }

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

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

.medianet-mobile-outer-box {
  background-color: transparent;
  margin: 0 0 1.5em;
  padding: 2px 0 5px 0;
  clear: both; }
  @media screen and (min-width: 720px) and (max-width: 1023px) {
    .medianet-mobile-outer-box {
      width: 95%; } }
.medianet-mobile-outer-box select {
  max-width: 100%; }

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

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

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

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

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

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

.desktop-intext-outer-box-left {
  padding: 10px 0 15px; }
  @media (min-width: 41.25em) {
    .desktop-intext-outer-box-left {
      display: inline;
      float: left;
      padding: 10px 10px 0 0; } }
.desktop-intext-outer-box-right {
  padding: 10px 0 15px; }
  @media (min-width: 41.25em) {
    .desktop-intext-outer-box-right {
      display: inline;
      float: right;
      padding: 0 0 10px 10px; } }
.desktop-intext-inner-box {
  background-color: transparent;
  display: block;
  width: 100%;
  max-width: 336px;
  min-height: 100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }
  @media (min-width: 41.25em) {
    .desktop-intext-inner-box {
      min-height: 250px; } }
.ad__label {
  color: #757575;
  font-family: "PT Sans", Verdana, sans-serif;
  font-size: 11px;
  font-size: 0.6470588235rem;
  line-height: 1.6363636364;
  text-align: center; }

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

.ad-2 {
  margin-top: 55px; }

.ad-advertisement-vertical {
  background: url(/wp-content/themes/madavor-child-tw/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; }

/* ==========================================================================
   #STICKY ADS
   ========================================================================== */
.c-sticky-wrapper {
  position: relative; }

.c-sticky-sub-wrapper {
  max-width: 100% !important; }
  @media (min-width: 62.5em) {
    .c-sticky-sub-wrapper {
      position: relative;
      max-width: calc(100% - 300px) !important; } }
.c-sticky-item--sticking {
  position: fixed;
  top: 0; }

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

.c-sticky-item-wrapper {
  display: none; }
  @media (min-width: 62.5em) {
    .c-sticky-item-wrapper {
      display: block; } }
/* ==========================================================================
   #NGGC
   ========================================================================== */
/* BEGIN CUSTOM NGG STYLES */
.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: 3; }

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

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

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

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

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

/* Begin Contest Styles */
.single-the-writer-contests .site-content {
  padding-top: 0px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contest-sponsors {
  background: #f3f3f3;
  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: #f3f3f3;
  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) {
  border-bottom: 1px dotted #333333;
  color: #333333; }

.single-contest p a:not(.c-btn):focus,
.single-contest p a:not(.c-btn):hover {
  border-bottom-color: transparent;
  color: #7a7a7a; }

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

.page-template-enter-contest .my-account-block-small-block-subtext {
  padding: 25px 15px; }

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

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

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

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

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

#contest-quote {
  background-color: #000000;
  color: white;
  padding: 37px 12px;
  text-align: center; }
  #contest-quote blockquote {
    font-size: 26px;
    font-size: 1.5294117647rem;
    line-height: 1.4473684211;
    letter-spacing: -0.2px;
    margin: 24px 0;
    border-left: none;
    text-align: center; }
    @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: #fff;
  border-bottom: 1px solid #e1e1e1;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  margin: .75em 0 0;
  padding: .5em 1em 1em 53px;
  position: relative;
  outline: none !important; }
  #contest-faq .ui-accordion-header.ui-state-active {
    border-bottom-color: #fff;
    margin-bottom: -2px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }

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

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

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

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

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

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

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

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

.contest-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 #dddddd;
  border-bottom: 1px solid #dddddd;
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
  padding: 24px 12px; }

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

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

.entry-fee__description {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.7142857143;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase; }
  @media (min-width: 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: #ddd;
        content: '';
        height: 1px;
        position: absolute;
        top: 50%;
        width: 100%; } }
  .countdown-clock > div {
    background: #FFF;
    border-left: 1px solid #ddd;
    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 #ddd; }
  .countdown-clock div > span {
    padding: 0 5px;
    border-radius: 3px;
    display: inline-block; }
  .countdown-clock .countdown-clock__label {
    font-family: "PT Sans", 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: #000000; }

.past-winner__title {
  color: #000000;
  font-family: "PT Sans", 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; } }
.fit-img img {
  height: 245px;
  width: 100%;
  object-fit: cover; }

.past-winner .fit-img img {
  height: 209px; }

.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 {
  background: #f3f3f3;
  align-items: center;
  background-position: center center;
  display: flex;
  height: 245px;
  padding: 24px;
  text-align: center; }

.post-type-archive-the-writer-contests .page-title {
  text-align: center; }

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

#cboxWrapper {
  max-width: none; }

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

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left; }

#cboxContent {
  position: relative; }

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

#cboxTitle {
  margin: 0; }

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

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

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

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

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

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

#colorbox {
  outline: 0; }

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

.cboxIframe {
  background: #fff; }

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

#cboxLoadedContent {
  background: #fff;
  border-radius: 3px;
  padding: 30px; }

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

#cboxLoadingOverlay {
  background: #000; }

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

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

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

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

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

#cboxClose svg {
  fill: #000; }

#cboxClose:hover svg {
  fill: #e05560; }

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

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

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

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

.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: "PT Sans", Verdana, sans-serif;
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: 1.2;
  font-weight: bold;
  margin: 10px;
  max-width: 240px;
  text-align: center; }
  @media (min-width: 41.25em) {
    .membership-promotion-header-banner__content {
      text-align: left;
      margin: 0 24px; } }
.membership-promotion-header-banner__link {
  font-size: 13px;
  font-size: 0.7647058824rem;
  line-height: 1.2; }
  .membership-promotion-header-banner__link.c-btn--ghost.c-btn--secondary {
    border-color: #fff;
    padding: 5px 22px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.tw-lp .page-title,
body.tw-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: #f3f3f3;
  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,
  .page-template-single-landing-page .page-content p {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px; }
    .woocommerce-member-benefits .page-content p:last-child,
    .woocommerce-partner-discounts .page-content p:last-child,
    .page-template-member-page .page-content p:last-child,
    .page-template-partner-discounts .page-content p:last-child,
    .page-template-single-landing-page .page-content p:last-child {
      margin-bottom: 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,
.listing.membership-content.access-restricted .post-thumbnail {
  position: relative; }
  .membership-content.access-restricted > .post-thumbnail:after,
  .listing.membership-content.access-restricted .post-thumbnail:after {
    background: url(assets/images/members-only-badge.png) no-repeat;
    content: '';
    display: block;
    height: 23px;
    position: absolute;
    right: 0;
    top: 0;
    width: 93px; }
    @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
      .membership-content.access-restricted > .post-thumbnail:after,
      .listing.membership-content.access-restricted .post-thumbnail:after {
        background-image: url(assets/images/members-only-badge@2x.png);
        background-size: contain; } }
.member-benefits-section .o-wrapper {
  max-width: 820px; }

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

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

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

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

.eworkshops-table th {
  font-family: "PT Sans", Verdana, sans-serif;
  text-align: left; }

.eworkshops-table td {
  font-family: "PT Sans", 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; }

.partner-discount {
  border: 1px solid #5e6a74;
  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 #5e6a74;
  height: 240px;
  justify-content: center; }
  .partner-discount__top > img {
    margin: auto; }

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

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

.tw-benefits-container {
  background: #f3f3f3;
  padding: 40px 0;
  margin: 40px 0; }

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

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

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

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

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

.tw-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(255, 255, 255, 0) 0%, #fff 80%);
    content: ' ';
    height: 100px;
    position: absolute;
    top: -100px;
    width: 100%; }

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

.free-trial-cta-form {
  display: flex;
  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.1515151515;
  margin-left: auto;
  margin-right: auto;
  max-width: 530px; }

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

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

.free-trial-cta--copy {
  color: #333333;
  font-size: 18px;
  font-size: 1.0588235294rem;
  line-height: 1.6666666667; }

.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; } }
.sign-up-button-wrapper {
  font-size: 14px;
  font-size: 0.8235294118rem;
  line-height: normal; }
  .sign-up-button-wrapper .c-btn {
    border-color: #000;
    display: block;
    margin: auto;
    max-width: 223px; }
    .sign-up-button-wrapper .c-btn:hover, .sign-up-button-wrapper .c-btn:focus {
      background: #000;
      color: #fff; }

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

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

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

body.tw-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 {
  margin-bottom: 24px;
  text-align: center; }

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

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

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

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

.search-results article {
  position: relative; }

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

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

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

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

.no-results {
  display: block; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.membership-promotion__description {
  border: 1px solid #d1d1d1;
  font-family: "PT Sans", 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 {
  overflow: hidden; }

.membership-cta .membership-plan .content {
  position: relative;
  background: #fff;
  border: 1px solid #5e6a74;
  border-radius: 3px;
  padding-bottom: 40px; }

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

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

.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: 36px 20px;
  text-align: left; }

.membership-cta .membership-plan .membership-plan-detail {
  color: #5e6a74;
  font-size: 18px;
  font-size: 1.0588235294rem;
  line-height: 1.5555555556; }
  .membership-cta .membership-plan .membership-plan-detail 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: #000; }

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

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

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

.tw-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: #5e6a74;
  min-height: 230px; }

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

.my-account-block-top-block-header {
  background: #000000;
  color: #fff;
  font-family: "PT Sans", 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-family: "PT Sans", Verdana, sans-serif;
  font-weight: bold;
  padding: 15px 25px; }

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

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

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

.tw-benefit {
  background: #FFFFFF !important;
  padding: 48px; }
  .tw-benefit:nth-child(2n+1) {
    background: #F7F7F7 !important; }

/* ==========================================================================
   #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: "PT Sans", 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: "PT Sans", 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: "PT Serif", Georgia, serif; }
  .u-h1 a,
  .u-h2 a,
  .u-h3 a,
  .u-h4 a,
  .u-h5 a,
  .u-h6 a {
    color: inherit; }

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

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

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

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

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

.u-h6 {
  font-size: 18px;
  font-size: 1.0588235294rem;
  line-height: 1.3333333333; }
  .u-h6:not(.u-sans-serif) {
    letter-spacing: -0.5px; }

/* ==========================================================================
   #HEADER WITH DIVIDER
   ========================================================================== */
.u-header-with-divider {
  border-bottom: 1px solid #000; }

.u-header-with-divider__heading {
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 0 !important;
  margin-bottom: 0;
  padding-bottom: 5px;
  text-transform: uppercase; }

/* ==========================================================================
   #HELPERS
   ========================================================================== */
.u-sans-serif {
  font-family: "PT Sans", Verdana, sans-serif; }

.u-sans-serif-alt {
  font-family: "Oswald", Arial, sans-serif; }

.u-serif {
  font-family: "PT Serif", Georgia, serif; }

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

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

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

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

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

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