@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.0.0
Template: madavor
Text Domain: madavor

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


This is for CSS specific to 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.................
 *
 * 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 #d1d8df;
  border-radius: 3px;
  font-family: "PT Sans", Verdana, sans-serif; }
  input:focus,
  select:focus,
  textarea:focus {
    outline-color: #e2e5ea; }

select {
  -webkit-appearance: none;
  background-image: url(assets/images/dropdown.png);
  background-position: 95% 50%;
  background-repeat: no-repeat; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    select {
      background-image: url(assets/images/svg/dropdown.svg);
      background-size: 10px 14px; } }

/* ==========================================================================
   #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--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; }

.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-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
    .owl-carousel .owl-stage:after {
      content: ".";
      display: block;
      clear: both;
      visibility: hidden;
      line-height: 0;
      height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline; }

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

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

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

/**
 * The Writer Theme
 */
.c-carousel-wrapper {
  background: #FFFFFF;
  min-height: 300px; }
  @media (min-width: 41.25em) {
    .c-carousel-wrapper {
      min-height: 572px; } }

.owl-theme {
  height: 300px; }
  @media (min-width: 41.25em) {
    .owl-theme {
      height: auto;
      min-height: 572px; } }

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

/* ==========================================================================
   #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: 170px; }
  @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; }

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

/* ==========================================================================
   #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;
  right: 10px;
  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;
      right: 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; }

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

.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;
  padding-right: 9px; }

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

.single .main-article .byline,
.single .main-article .posted-on {
  display: block; }

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

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

/* ==========================================================================
   #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; }

/* ==========================================================================
   #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 {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.desktop-intext-inner-box {
  background-color: transparent;
  display: block;
  width: 100%;
  max-width: 336px;
  min-height: 250px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }

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

/* ==========================================================================
   #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; }

/* ==========================================================================
   #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 */