/******************************************************************
Site Name:
Author:

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/* Forms */
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
@font-face {
  font-family: 'ProximaNova';
  src: url("../fonts/ProximaNova-Light.eot");
  src: url("../fonts/ProximaNova-Light.woff2") format("woff2"), url("../fonts/ProximaNova-Light.woff") format("woff"), url("../fonts/ProximaNova-Light.ttf") format("truetype"), url("../fonts/ProximaNova-Light.svg#ProximaNova-Light") format("svg"), url("../fonts/ProximaNova-Light.eot?#iefix") format("embedded-opentype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'ProximaNova';
  src: url("../fonts/ProximaNova-Regular.eot");
  src: url("../fonts/ProximaNova-Regular.woff2") format("woff2"), url("../fonts/ProximaNova-Regular.woff") format("woff"), url("../fonts/ProximaNova-Regular.ttf") format("truetype"), url("../fonts/ProximaNova-Regular.svg#ProximaNova-Regular") format("svg"), url("../fonts/ProximaNova-Regular.eot?#iefix") format("embedded-opentype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'ProximaNova';
  src: url("../fonts/ProximaNova-Semibold.eot");
  src: url("../fonts/ProximaNova-Semibold.woff2") format("woff2"), url("../fonts/ProximaNova-Semibold.woff") format("woff"), url("../fonts/ProximaNova-Semibold.ttf") format("truetype"), url("../fonts/ProximaNova-Semibold.svg#ProximaNova-Semibold") format("svg"), url("../fonts/ProximaNova-Semibold.eot?#iefix") format("embedded-opentype");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'ProximaNova';
  src: url("../fonts/ProximaNova-Bold.eot");
  src: url("../fonts/ProximaNova-Bold.woff2") format("woff2"), url("../fonts/ProximaNova-Bold.woff") format("woff"), url("../fonts/ProximaNova-Bold.ttf") format("truetype"), url("../fonts/ProximaNova-Bold.svg#ProximaNova-Bold") format("svg"), url("../fonts/ProximaNova-Bold.eot?#iefix") format("embedded-opentype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'Icons';
  src: url("../fonts/icomoon.eot?dxmv7v");
  src: url("../fonts/icomoon.eot?dxmv7v#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?dxmv7v") format("truetype"), url("../fonts/icomoon.woff?dxmv7v") format("woff"), url("../fonts/icomoon.svg?dxmv7v#icomoon") format("svg");
  font-weight: 400;
  font-style: normal; }

/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig"; }

/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-app-Apple-App-Store:before {
  content: "\e922"; }

.icon-app-Google-Play:before {
  content: "\e923"; }

.icon-search-background:before {
  content: "\e92a"; }

.icon-FAQ-search:before {
  content: "\e928"; }

.icon-FAQ-popular:before {
  content: "\e929"; }

.icon-testimonial-quotes:before {
  content: "\e927"; }

.icon-podcast-player-slash:before {
  content: "\e925"; }

.icon-popup-triangle:before {
  content: "\e926"; }

.icon-login-eye-blind:before {
  content: "\e924"; }

.icon-menu-back-arrow:before {
  content: "\e921"; }

.icon-search_big:before {
  content: "\e91f"; }

.icon-search_small:before {
  content: "\e920"; }

.icon-menu_big:before {
  content: "\e91e"; }

.icon-podcast-player-un-mute:before {
  content: "\e91d"; }

.icon-voicemail:before {
  content: "\e91c"; }

.icon-podcast-player-rss:before {
  content: "\e91a"; }

.icon-archive-author-default-author-pic-face:before {
  content: "\e900"; }

.icon-c2a-lock:before {
  content: "\e901"; }

.icon-contact-dropdown-down-arrow:before {
  content: "\e902"; }

.icon-dash-n-podcast-player-android-logo:before {
  content: "\e903"; }

.icon-dash-n-podcast-player-apple:before {
  content: "\e904"; }

.icon-dash-settings:before {
  content: "\e905"; }

.icon-dash-store-discount:before {
  content: "\e906"; }

.icon-dash-alert-X:before {
  content: "\e907"; }

.icon-dash-article:before {
  content: "\e908"; }

.icon-dash-download-arrow:before {
  content: "\e909"; }

.icon-dash-help-button:before {
  content: "\e90a"; }

.icon-dash-logout:before {
  content: "\e90b"; }

.icon-FAQ-contact:before {
  content: "\e90c"; }

.icon-FAQ-tab-account:before {
  content: "\e90d"; }

.icon-FAQ-tab-payments:before {
  content: "\e90e"; }

.icon-FAQ-tab-plus:before {
  content: "\e90f"; }

.icon-FAQ-tab-podcast:before {
  content: "\e910"; }

.icon-header-desktop-categories-down-arrow:before {
  content: "\e911"; }

.icon-login-eye:before {
  content: "\e912"; }

.icon-pagination-double-arrow-back:before {
  content: "\e913"; }

.icon-pagination-single-arrow-back:before {
  content: "\e914"; }

.icon-pagination-single-arrow-forward:before {
  content: "\e915"; }

.icon-password-reset-envelope:before {
  content: "\e916"; }

.icon-podcast-player-download-arrow:before {
  content: "\e917"; }

.icon-podcast-player-pause:before {
  content: "\e918"; }

.icon-podcast-player-play:before {
  content: "\e919"; }

.icon-podcast-player-volume:before {
  content: "\e91b"; }

.icon-google-plus:before {
  content: "\ea8b"; }

.icon-facebook2:before {
  content: "\ea91"; }

.icon-twitter:before {
  content: "\ea96"; }

.icon-skype:before {
  content: "\eac5"; }

/* Text Inputs + Textarea
   ========================================================================== */
.mu_form {
  /* Style Placeholders */
  /* Text inputs */
  /* Search Field */
  /* Textarea */
  /* Autocomplete */ }
  .mu_form ::-webkit-input-placeholder {
    color: #999999; }
  .mu_form :-moz-placeholder {
    /* Firefox 18- */
    color: #999999; }
  .mu_form ::-moz-placeholder {
    /* Firefox 19+ */
    color: #999999; }
  .mu_form :-ms-input-placeholder {
    color: #999999; }
  .mu_form input:not([type]),
  .mu_form input[type=text],
  .mu_form input[type=password],
  .mu_form input[type=email],
  .mu_form input[type=url],
  .mu_form input[type=time],
  .mu_form input[type=date],
  .mu_form input[type=datetime],
  .mu_form input[type=datetime-local],
  .mu_form input[type=tel],
  .mu_form input[type=number],
  .mu_form input[type=search],
  .mu_form textarea.materialize-textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #808080;
    border-radius: 0;
    outline: none;
    height: 3rem;
    width: 100%;
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 0;
    box-shadow: none;
    box-sizing: content-box;
    transition: all 0.3s; }
    .mu_form input:not([type]):disabled, .mu_form input:not([type])[readonly="readonly"],
    .mu_form input[type=text]:disabled,
    .mu_form input[type=text][readonly="readonly"],
    .mu_form input[type=password]:disabled,
    .mu_form input[type=password][readonly="readonly"],
    .mu_form input[type=email]:disabled,
    .mu_form input[type=email][readonly="readonly"],
    .mu_form input[type=url]:disabled,
    .mu_form input[type=url][readonly="readonly"],
    .mu_form input[type=time]:disabled,
    .mu_form input[type=time][readonly="readonly"],
    .mu_form input[type=date]:disabled,
    .mu_form input[type=date][readonly="readonly"],
    .mu_form input[type=datetime]:disabled,
    .mu_form input[type=datetime][readonly="readonly"],
    .mu_form input[type=datetime-local]:disabled,
    .mu_form input[type=datetime-local][readonly="readonly"],
    .mu_form input[type=tel]:disabled,
    .mu_form input[type=tel][readonly="readonly"],
    .mu_form input[type=number]:disabled,
    .mu_form input[type=number][readonly="readonly"],
    .mu_form input[type=search]:disabled,
    .mu_form input[type=search][readonly="readonly"],
    .mu_form textarea.materialize-textarea:disabled,
    .mu_form textarea.materialize-textarea[readonly="readonly"] {
      color: rgba(0, 0, 0, 0.26);
      border-bottom: 1px dotted rgba(0, 0, 0, 0.26); }
    .mu_form input:not([type]):disabled + label,
    .mu_form input:not([type])[readonly="readonly"] + label,
    .mu_form input[type=text]:disabled + label,
    .mu_form input[type=text][readonly="readonly"] + label,
    .mu_form input[type=password]:disabled + label,
    .mu_form input[type=password][readonly="readonly"] + label,
    .mu_form input[type=email]:disabled + label,
    .mu_form input[type=email][readonly="readonly"] + label,
    .mu_form input[type=url]:disabled + label,
    .mu_form input[type=url][readonly="readonly"] + label,
    .mu_form input[type=time]:disabled + label,
    .mu_form input[type=time][readonly="readonly"] + label,
    .mu_form input[type=date]:disabled + label,
    .mu_form input[type=date][readonly="readonly"] + label,
    .mu_form input[type=datetime]:disabled + label,
    .mu_form input[type=datetime][readonly="readonly"] + label,
    .mu_form input[type=datetime-local]:disabled + label,
    .mu_form input[type=datetime-local][readonly="readonly"] + label,
    .mu_form input[type=tel]:disabled + label,
    .mu_form input[type=tel][readonly="readonly"] + label,
    .mu_form input[type=number]:disabled + label,
    .mu_form input[type=number][readonly="readonly"] + label,
    .mu_form input[type=search]:disabled + label,
    .mu_form input[type=search][readonly="readonly"] + label,
    .mu_form textarea.materialize-textarea:disabled + label,
    .mu_form textarea.materialize-textarea[readonly="readonly"] + label {
      color: rgba(0, 0, 0, 0.26); }
    .mu_form input:not([type]):focus:not([readonly]),
    .mu_form input[type=text]:focus:not([readonly]),
    .mu_form input[type=password]:focus:not([readonly]),
    .mu_form input[type=email]:focus:not([readonly]),
    .mu_form input[type=url]:focus:not([readonly]),
    .mu_form input[type=time]:focus:not([readonly]),
    .mu_form input[type=date]:focus:not([readonly]),
    .mu_form input[type=datetime]:focus:not([readonly]),
    .mu_form input[type=datetime-local]:focus:not([readonly]),
    .mu_form input[type=tel]:focus:not([readonly]),
    .mu_form input[type=number]:focus:not([readonly]),
    .mu_form input[type=search]:focus:not([readonly]),
    .mu_form textarea.materialize-textarea:focus:not([readonly]) {
      border-bottom: 1px solid #999999;
      box-shadow: 0 1px 0 0 #999999; }
    .mu_form input:not([type]):focus:not([readonly]) + label,
    .mu_form input[type=text]:focus:not([readonly]) + label,
    .mu_form input[type=password]:focus:not([readonly]) + label,
    .mu_form input[type=email]:focus:not([readonly]) + label,
    .mu_form input[type=url]:focus:not([readonly]) + label,
    .mu_form input[type=time]:focus:not([readonly]) + label,
    .mu_form input[type=date]:focus:not([readonly]) + label,
    .mu_form input[type=datetime]:focus:not([readonly]) + label,
    .mu_form input[type=datetime-local]:focus:not([readonly]) + label,
    .mu_form input[type=tel]:focus:not([readonly]) + label,
    .mu_form input[type=number]:focus:not([readonly]) + label,
    .mu_form input[type=search]:focus:not([readonly]) + label,
    .mu_form textarea.materialize-textarea:focus:not([readonly]) + label {
      color: #999999; }
    .mu_form input:not([type]).valid, .mu_form input:not([type]):focus.valid,
    .mu_form input[type=text].valid,
    .mu_form input[type=text]:focus.valid,
    .mu_form input[type=password].valid,
    .mu_form input[type=password]:focus.valid,
    .mu_form input[type=email].valid,
    .mu_form input[type=email]:focus.valid,
    .mu_form input[type=url].valid,
    .mu_form input[type=url]:focus.valid,
    .mu_form input[type=time].valid,
    .mu_form input[type=time]:focus.valid,
    .mu_form input[type=date].valid,
    .mu_form input[type=date]:focus.valid,
    .mu_form input[type=datetime].valid,
    .mu_form input[type=datetime]:focus.valid,
    .mu_form input[type=datetime-local].valid,
    .mu_form input[type=datetime-local]:focus.valid,
    .mu_form input[type=tel].valid,
    .mu_form input[type=tel]:focus.valid,
    .mu_form input[type=number].valid,
    .mu_form input[type=number]:focus.valid,
    .mu_form input[type=search].valid,
    .mu_form input[type=search]:focus.valid,
    .mu_form textarea.materialize-textarea.valid,
    .mu_form textarea.materialize-textarea:focus.valid {
      border-bottom: 1px solid #808080;
      box-shadow: 0 1px 0 0 #808080; }
    .mu_form input:not([type]).valid + label:after,
    .mu_form input:not([type]):focus.valid + label:after,
    .mu_form input[type=text].valid + label:after,
    .mu_form input[type=text]:focus.valid + label:after,
    .mu_form input[type=password].valid + label:after,
    .mu_form input[type=password]:focus.valid + label:after,
    .mu_form input[type=email].valid + label:after,
    .mu_form input[type=email]:focus.valid + label:after,
    .mu_form input[type=url].valid + label:after,
    .mu_form input[type=url]:focus.valid + label:after,
    .mu_form input[type=time].valid + label:after,
    .mu_form input[type=time]:focus.valid + label:after,
    .mu_form input[type=date].valid + label:after,
    .mu_form input[type=date]:focus.valid + label:after,
    .mu_form input[type=datetime].valid + label:after,
    .mu_form input[type=datetime]:focus.valid + label:after,
    .mu_form input[type=datetime-local].valid + label:after,
    .mu_form input[type=datetime-local]:focus.valid + label:after,
    .mu_form input[type=tel].valid + label:after,
    .mu_form input[type=tel]:focus.valid + label:after,
    .mu_form input[type=number].valid + label:after,
    .mu_form input[type=number]:focus.valid + label:after,
    .mu_form input[type=search].valid + label:after,
    .mu_form input[type=search]:focus.valid + label:after,
    .mu_form textarea.materialize-textarea.valid + label:after,
    .mu_form textarea.materialize-textarea:focus.valid + label:after {
      content: attr(data-success);
      color: #808080;
      opacity: 1; }
    .mu_form input:not([type]).invalid, .mu_form input:not([type]):focus.invalid,
    .mu_form input[type=text].invalid,
    .mu_form input[type=text]:focus.invalid,
    .mu_form input[type=password].invalid,
    .mu_form input[type=password]:focus.invalid,
    .mu_form input[type=email].invalid,
    .mu_form input[type=email]:focus.invalid,
    .mu_form input[type=url].invalid,
    .mu_form input[type=url]:focus.invalid,
    .mu_form input[type=time].invalid,
    .mu_form input[type=time]:focus.invalid,
    .mu_form input[type=date].invalid,
    .mu_form input[type=date]:focus.invalid,
    .mu_form input[type=datetime].invalid,
    .mu_form input[type=datetime]:focus.invalid,
    .mu_form input[type=datetime-local].invalid,
    .mu_form input[type=datetime-local]:focus.invalid,
    .mu_form input[type=tel].invalid,
    .mu_form input[type=tel]:focus.invalid,
    .mu_form input[type=number].invalid,
    .mu_form input[type=number]:focus.invalid,
    .mu_form input[type=search].invalid,
    .mu_form input[type=search]:focus.invalid,
    .mu_form textarea.materialize-textarea.invalid,
    .mu_form textarea.materialize-textarea:focus.invalid {
      border-bottom: 1px solid #f01d4f;
      box-shadow: 0 1px 0 0 #f01d4f; }
    .mu_form input:not([type]).invalid + label:after,
    .mu_form input:not([type]):focus.invalid + label:after,
    .mu_form input[type=text].invalid + label:after,
    .mu_form input[type=text]:focus.invalid + label:after,
    .mu_form input[type=password].invalid + label:after,
    .mu_form input[type=password]:focus.invalid + label:after,
    .mu_form input[type=email].invalid + label:after,
    .mu_form input[type=email]:focus.invalid + label:after,
    .mu_form input[type=url].invalid + label:after,
    .mu_form input[type=url]:focus.invalid + label:after,
    .mu_form input[type=time].invalid + label:after,
    .mu_form input[type=time]:focus.invalid + label:after,
    .mu_form input[type=date].invalid + label:after,
    .mu_form input[type=date]:focus.invalid + label:after,
    .mu_form input[type=datetime].invalid + label:after,
    .mu_form input[type=datetime]:focus.invalid + label:after,
    .mu_form input[type=datetime-local].invalid + label:after,
    .mu_form input[type=datetime-local]:focus.invalid + label:after,
    .mu_form input[type=tel].invalid + label:after,
    .mu_form input[type=tel]:focus.invalid + label:after,
    .mu_form input[type=number].invalid + label:after,
    .mu_form input[type=number]:focus.invalid + label:after,
    .mu_form input[type=search].invalid + label:after,
    .mu_form input[type=search]:focus.invalid + label:after,
    .mu_form textarea.materialize-textarea.invalid + label:after,
    .mu_form textarea.materialize-textarea:focus.invalid + label:after {
      content: attr(data-error);
      color: #f01d4f;
      opacity: 1; }
    .mu_form input:not([type]).validate + label,
    .mu_form input[type=text].validate + label,
    .mu_form input[type=password].validate + label,
    .mu_form input[type=email].validate + label,
    .mu_form input[type=url].validate + label,
    .mu_form input[type=time].validate + label,
    .mu_form input[type=date].validate + label,
    .mu_form input[type=datetime].validate + label,
    .mu_form input[type=datetime-local].validate + label,
    .mu_form input[type=tel].validate + label,
    .mu_form input[type=number].validate + label,
    .mu_form input[type=search].validate + label,
    .mu_form textarea.materialize-textarea.validate + label {
      width: 100%;
      pointer-events: none; }
    .mu_form input:not([type]) + label:after,
    .mu_form input[type=text] + label:after,
    .mu_form input[type=password] + label:after,
    .mu_form input[type=email] + label:after,
    .mu_form input[type=url] + label:after,
    .mu_form input[type=time] + label:after,
    .mu_form input[type=date] + label:after,
    .mu_form input[type=datetime] + label:after,
    .mu_form input[type=datetime-local] + label:after,
    .mu_form input[type=tel] + label:after,
    .mu_form input[type=number] + label:after,
    .mu_form input[type=search] + label:after,
    .mu_form textarea.materialize-textarea + label:after {
      display: block;
      content: "";
      position: absolute;
      top: 60px;
      opacity: 0;
      transition: .2s opacity ease-out, .2s color ease-out; }
  .mu_form .input-field {
    position: relative;
    margin-top: 1rem; }
    .mu_form .input-field.inline {
      display: inline-block;
      vertical-align: middle;
      margin-left: 5px; }
      .mu_form .input-field.inline input,
      .mu_form .input-field.inline .select-dropdown {
        margin-bottom: 1rem; }
    .mu_form .input-field.col label {
      left: 0.75rem; }
    .mu_form .input-field.col .prefix ~ label,
    .mu_form .input-field.col .prefix ~ .validate ~ label {
      width: calc(100% - 3rem - 1.5rem); }
    .mu_form .input-field label {
      color: #808080;
      position: absolute;
      top: 0.8rem;
      left: 0;
      font-size: 1rem;
      cursor: text;
      transition: .2s ease-out; }
      .mu_form .input-field label:not(.label-icon).active {
        font-size: 14px;
        transform: translateY(-140%); }
    .mu_form .input-field .prefix {
      position: absolute;
      width: 3rem;
      font-size: 2rem;
      transition: color .2s; }
      .mu_form .input-field .prefix.active {
        color: #999999; }
    .mu_form .input-field .prefix ~ input,
    .mu_form .input-field .prefix ~ textarea,
    .mu_form .input-field .prefix ~ label,
    .mu_form .input-field .prefix ~ .validate ~ label,
    .mu_form .input-field .prefix ~ .autocomplete-content {
      margin-left: 3rem;
      width: 92%;
      width: calc(100% - 3rem); }
    .mu_form .input-field .prefix ~ label {
      margin-left: 3rem; }
    @media only screen and (max-width: 992px) {
      .mu_form .input-field .prefix ~ input {
        width: 86%;
        width: calc(100% - 3rem); } }
    @media only screen and (max-width: 600px) {
      .mu_form .input-field .prefix ~ input {
        width: 80%;
        width: calc(100% - 3rem); } }
  .mu_form textarea {
    width: 100%;
    height: 3rem;
    background-color: transparent; }
    .mu_form textarea.materialize-textarea {
      overflow-y: hidden;
      /* prevents scroll bar flash */
      padding: .8rem 0 1.6rem 0;
      /* prevents text jump on Enter keypress */
      resize: none;
      min-height: 3rem; }
  .mu_form .hiddendiv {
    display: none;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    /* future version of deprecated 'word-wrap' */
    padding-top: 1.2rem;
    /* prevents text jump on Enter keypress */ }
  .mu_form .autocomplete-content {
    margin-top: -15px;
    display: block;
    opacity: 1;
    position: static; }
    .mu_form .autocomplete-content li .highlight {
      color: #444; }
    .mu_form .autocomplete-content li img {
      height: 40px;
      width: 40px;
      margin: 5px 15px; }

/* Checkboxes
   ========================================================================== */
.mu_form {
  /* CUSTOM CSS CHECKBOXES */
  /* Remove default checkbox */
  /* Indeterminate checkbox */ }
  .mu_form form p {
    margin-bottom: 10px;
    text-align: left; }
  .mu_form form p:last-child {
    margin-bottom: 0; }
  .mu_form [type="checkbox"]:not(:checked),
  .mu_form [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
    opacity: 0; }
  .mu_form [type="checkbox"] {
    /* checkbox aspect */ }
    .mu_form [type="checkbox"] + label {
      position: relative;
      padding-left: 35px;
      cursor: pointer;
      display: inline-block;
      height: 25px;
      line-height: 25px;
      font-size: 1rem;
      -webkit-user-select: none;
      /* webkit (safari, chrome) browsers */
      -moz-user-select: none;
      /* mozilla browsers */
      -khtml-user-select: none;
      /* webkit (konqueror) browsers */
      -ms-user-select: none;
      /* IE10+ */ }
    .mu_form [type="checkbox"] + label:before,
    .mu_form [type="checkbox"]:not(.filled-in) + label:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 18px;
      height: 18px;
      z-index: 0;
      border: 2px solid #5a5a5a;
      border-radius: 1px;
      margin-top: 2px;
      transition: .2s; }
    .mu_form [type="checkbox"]:not(.filled-in) + label:after {
      border: 0;
      transform: scale(0); }
    .mu_form [type="checkbox"]:not(:checked):disabled + label:before {
      border: none;
      background-color: rgba(0, 0, 0, 0.26); }
    .mu_form [type="checkbox"].tabbed:focus + label:after {
      transform: scale(1);
      border: 0;
      border-radius: 50%;
      box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
      background-color: rgba(0, 0, 0, 0.1); }
  .mu_form [type="checkbox"]:checked + label:before {
    top: -4px;
    left: -5px;
    width: 12px;
    height: 22px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #1382BF;
    border-bottom: 2px solid #1382BF;
    transform: rotate(40deg);
    backface-visibility: hidden;
    transform-origin: 100% 100%; }
  .mu_form [type="checkbox"]:checked:disabled + label:before {
    border-right: 2px solid rgba(0, 0, 0, 0.26);
    border-bottom: 2px solid rgba(0, 0, 0, 0.26); }
  .mu_form [type="checkbox"]:indeterminate + label:before {
    top: -11px;
    left: -12px;
    width: 10px;
    height: 22px;
    border-top: none;
    border-left: none;
    border-right: 2px solid #1382BF;
    border-bottom: none;
    transform: rotate(90deg);
    backface-visibility: hidden;
    transform-origin: 100% 100%; }
  .mu_form [type="checkbox"]:indeterminate:disabled + label:before {
    border-right: 2px solid rgba(0, 0, 0, 0.26);
    background-color: transparent; }
  .mu_form [type="checkbox"].filled-in + label:after {
    border-radius: 2px; }
  .mu_form [type="checkbox"].filled-in + label:before,
  .mu_form [type="checkbox"].filled-in + label:after {
    content: '';
    left: 0;
    position: absolute;
    /* .1s delay is for check animation */
    transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
    z-index: 1; }
  .mu_form [type="checkbox"].filled-in:not(:checked) + label:before {
    width: 0;
    height: 0;
    border: 3px solid transparent;
    left: 6px;
    top: 10px;
    -webkit-transform: rotateZ(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 20% 40%;
    transform-origin: 100% 100%; }
  .mu_form [type="checkbox"].filled-in:not(:checked) + label:after {
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 2px solid #5a5a5a;
    top: 0px;
    z-index: 0; }
  .mu_form [type="checkbox"].filled-in:checked + label:before {
    top: 0;
    left: 1px;
    width: 8px;
    height: 13px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotateZ(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%; }
  .mu_form [type="checkbox"].filled-in:checked + label:after {
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #f01d4f;
    background-color: #f01d4f;
    z-index: 0; }
  .mu_form [type="checkbox"].filled-in.tabbed:focus + label:after {
    border-radius: 2px;
    border-color: #5a5a5a;
    background-color: rgba(0, 0, 0, 0.1); }
  .mu_form [type="checkbox"].filled-in.tabbed:checked:focus + label:after {
    border-radius: 2px;
    background-color: #f01d4f;
    border-color: #f01d4f; }
  .mu_form [type="checkbox"].filled-in:disabled:not(:checked) + label:before {
    background-color: transparent;
    border: 2px solid transparent; }
  .mu_form [type="checkbox"].filled-in:disabled:not(:checked) + label:after {
    border-color: transparent;
    background-color: #BDBDBD; }
  .mu_form [type="checkbox"].filled-in:disabled:checked + label:before {
    background-color: transparent; }
  .mu_form [type="checkbox"].filled-in:disabled:checked + label:after {
    background-color: #BDBDBD;
    border-color: #BDBDBD; }

/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out; }
  .blue-btn:hover, .blue-btn:focus {
    color: #fff;
    text-decoration: none;
    outline: none; }
  .blue-btn:active {
    top: 1px; }

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn {
  background-color: #1382BF; }
  .blue-btn:hover, .blue-btn:focus {
    background-color: #1175ac; }
  .blue-btn:active {
    background-color: #1172a8; }

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
fieldset {
  border: none;
  padding: 0;
  margin: 0; }

input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  background-color: transparent;
  border-color: inherit inherit #9e9e9e;
  border-image: none;
  border-radius: 0;
  border-style: none none solid;
  border-width: medium medium 1px;
  box-shadow: none;
  box-sizing: border-box;
  font-size: 21px;
  height: 50px;
  margin: 0 0 20px;
  outline: medium none;
  padding: 10px 0 0;
  width: 100%;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    outline: none; }
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  textarea.error,
  textarea.is-invalid,
  .field.error,
  .field.is-invalid {
    color: #fbe3e4;
    border-color: #fbe3e4;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: #fbe3e4; }
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  textarea.success,
  textarea.is-valid,
  .field.success,
  .field.is-valid {
    color: #e6efc2;
    border-color: #e6efc2;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: #e6efc2; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    cursor: not-allowed;
    border-color: #cfcfcf;
    opacity: 0.6; }
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active,
    .field[disabled]:focus,
    .field[disabled]:active,
    .field.is-disabled:focus,
    .field.is-disabled:active {
      background-color: #d5edf8; }

input:not([type]):focus:not([readonly]),
input[type=text]:focus:not([readonly]),
input[type=password]:focus:not([readonly]),
input[type=email]:focus:not([readonly]),
input[type=url]:focus:not([readonly]),
input[type=time]:focus:not([readonly]),
input[type=date]:focus:not([readonly]),
input[type=datetime]:focus:not([readonly]),
input[type=datetime-local]:focus:not([readonly]),
input[type=tel]:focus:not([readonly]),
input[type=number]:focus:not([readonly]),
input[type=search]:focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]),
input.valid:not([type]),
input.valid:focus:not([type]),
input.valid[type="text"],
input.valid[type="text"]:focus,
input.valid[type="password"],
input.valid[type="password"]:focus,
input.valid[type="email"],
input.valid[type="email"]:focus,
input.valid[type="url"],
input.valid[type="url"]:focus,
input.valid[type="time"],
input.valid[type="time"]:focus,
input.valid[type="date"],
input.valid[type="date"]:focus,
input.valid[type="datetime"],
input.valid[type="datetime"]:focus,
input.valid[type="datetime-local"],
input.valid[type="datetime-local"]:focus,
input.valid[type="tel"],
input.valid[type="tel"]:focus,
input.valid[type="number"],
input.valid[type="number"]:focus,
input.valid[type="search"],
input.valid[type="search"]:focus,
textarea.materialize-textarea.valid,
textarea.materialize-textarea.valid:focus {
  box-shadow: none; }

input[type="password"] {
  font-size: 32px;
  letter-spacing: 0.2em; }

input.valid[type="password"]:focus, input.valid[type="password"]:active {
  border-bottom: 2px solid #0071BC; }

.mu_form [type="checkbox"] + label::before {
  border-radius: 3px; }

.mu_form .filled-in[type="checkbox"]:not(:checked) + label::after {
  border: 1px solid #666666;
  height: 18px;
  width: 18px;
  margin: 0 1px; }

.mu_form .filled-in[type="checkbox"]:checked + label::before {
  height: 10px;
  width: 6px; }

.mu_form .filled-in[type="checkbox"]:checked + label::after {
  background: #1382BF;
  border-color: #1382BF;
  margin: 0 1px;
  border-radius: 2px;
  height: 17px;
  width: 17px; }

.mu_form .input-field label {
  font-size: 18px;
  color: #999999;
  letter-spacing: 1px;
  top: 10px;
  text-align: left; }

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em; }

select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center; }

.header {
  width: 100%;
  position: absolute;
  background: #160036;
  background: -moz-linear-gradient(23deg, #160036 0%, #410091 41%, #ff002b 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #160036), color-stop(41%, #410091), color-stop(100%, #ff002b));
  background: -webkit-linear-gradient(23deg, #160036 0%, #410091 41%, #ff002b 100%);
  background: -o-linear-gradient(23deg, #160036 0%, #410091 41%, #ff002b 100%);
  background: -ms-linear-gradient(23deg, #160036 0%, #410091 41%, #ff002b 100%);
  background: linear-gradient(23deg, #160036 0%, #410091 41%, #ff002b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#160036', endColorstr='#ff002b', GradientType=1 ); }

.inner-header {
  display: table;
  width: 100%;
  height: 50px;
  margin: 0 auto; }

.logo {
  display: table-cell;
  vertical-align: middle;
  line-height: 0;
  width: 200px;
  padding-right: 16px; }

.logo a {
  display: inline-block;
  line-height: 0; }

.logo img {
  height: 36px; }

.header nav {
  /*float: right;*/
  display: table-cell; }

.header .nav {
  margin: 0;
  display: none;
  width: 100%; }

.header .nav > li {
  text-align: center; }

.header .nav > li a {
  height: 50px;
  line-height: 50px;
  display: block;
  color: white;
  opacity: .5;
  text-decoration: none; }

.header .sub-menu > li a {
  line-height: 50px;
  height: 50px; }

.header .nav a {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px;
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300; }

.header .nav a:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1); }

.header .nav > .current_page_item > a,
.header .nav > .current-menu-item > a {
  opacity: 1; }

.header .categories > a:after {
  font-family: "Icons";
  content: "\e902";
  font-size: 10px;
  line-height: 20px;
  margin-left: 10px;
  position: relative; }

.header li {
  display: table-cell;
  list-style: none;
  font-size: 0; }

.header .nav .menu-item-has-children:hover > ul {
  opacity: 1;
  visibility: visible; }

.header .nav .menu-item-has-children:hover {
  background-color: #7D38EB; }
  .header .nav .menu-item-has-children:hover > a {
    cursor: default; }

.header .sub-menu {
  margin: 0;
  opacity: 0;
  background-color: #7D38EB;
  position: fixed;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px calc(50% - 683px);
  visibility: hidden; }

.header .sub-menu li {
  display: inline-block;
  margin: 6px; }

.header .sub-menu li a {
  line-height: 50px; }

.search-form button, .search-form input {
  margin: 0;
  padding: 0; }

.search-form {
  display: table-cell;
  vertical-align: middle; }

.search-form > div {
  height: 50px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 10px;
  width: 58px;
  float: right;
  font-size: 0; }

.search-form label {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.43);
  padding-top: 12px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 1; }

.search-form input {
  color: white;
  width: calc(100% - 48px);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 29px;
  outline: none;
  height: 30px;
  margin-top: 7px;
  position: relative;
  z-index: 2;
  border-radius: none;
  -webkit-appearance: none; }

.search-form input:focus {
  border-bottom: 2px solid #ddd; }

.search-form input::-moz-selection {
  background: rgba(255, 255, 255, 0.72);
  color: #380091;
  font-weight: 600; }

.search-form input::selection {
  background: rgba(255, 255, 255, 0.72);
  color: #380091;
  font-weight: 600; }

.search-form button {
  color: white;
  background-color: transparent;
  border: none;
  border-radius: 100px;
  width: 48px;
  height: 48px;
  vertical-align: middle;
  position: relative;
  top: 1px;
  outline: 0;
  transition: all 0.22s ease-out;
  -webkit-backface-visibility: hidden; }

.search-form button:hover {
  background-color: rgba(255, 255, 255, 0.1); }

.search-form button:before {
  font-size: 25px;
  top: 2px;
  position: relative;
  left: 1px; }

.logo.search-toggle {
  display: none; }

.search-form.writing label,
.search-form.writing > div.search-toggle > label {
  opacity: 0 !important; }

.search-form > div.search-toggle {
  width: 100%; }

.search-form > div.search-toggle > label {
  visibility: visible;
  opacity: 1; }

/*--------------------------*/
/*----   Animations     ----*/
/*--------------------------*/
.inner-header,
.logo img,
.header .logo,
.header .nav a,
.header .sub-menu li,
.header .nav .menu-item-has-children:hover,
.search-form > div {
  transition: all 0.14s ease-out;
  -webkit-backface-visibility: hidden; }

.header .sub-menu {
  transition: all 0.1s ease-out;
  -webkit-backface-visibility: hidden; }

.search-form label {
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden; }

.search-form input {
  transition: none; }

/*--------------------------*/
/*----   MOBILE MENU    ----*/
/*--------------------------*/
.header .mobile-menu-btn {
  color: #fff;
  display: table-cell;
  font-size: 25px;
  line-height: 50px;
  padding: 0 15px 0 15px;
  vertical-align: middle;
  cursor: pointer;
  width: 50px; }

.mobile-menu {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  visibility: hidden; }

.mobile-menu ul,
.mobile-menu li {
  margin: 0; }

.mobile-menu li {
  list-style: none;
  line-height: 66px; }

.mobile-menu li.border {
  border-bottom: 1px solid #D2D2D2;
  padding-bottom: 10px; }

.mobile-menu li#menu-item-79649,
.mobile-menu li#menu-item-79658,
.mobile-menu li#menu-item-79661,
.mobile-menu li#menu-item-79687 {
  padding-top: 10px; }

.mobile-menu a,
.mobile-header div {
  font-size: 18px;
  letter-spacing: 1px;
  text-decoration: none; }

.mobile-menu a {
  color: #1A1A1A;
  padding: 0 16px 0 32px;
  display: block;
  cursor: pointer;
  transition: background-color .2s ease-out; }

.mobile-menu li a:focus, .mobile-menu li a:visited {
  color: #1A1A1A; }

.mobile-menu li a:hover {
  color: #1A1A1A;
  background-color: rgba(100, 100, 100, 0.1); }

li#menu-item-88746, li#menu-item-88748, li#menu-item-88786 {
  padding-top: 10px; }

.mobile-menu ul:first-child,
.sub-menu {
  padding-top: 70px; }

.mobile-menu ul:last-child {
  padding-bottom: 66px; }

.mobile-menu .nav-menu {
  background-color: #fff;
  width: 100%;
  position: static; }

.mobile-menu .sub-menu {
  background: #fff;
  width: 100%;
  top: 0;
  left: -100%;
  min-height: calc(100vh - 122px);
  position: absolute;
  z-index: 112;
  visibility: hidden; }

.mobile-menu .menu-item-has-children > a:after {
  font-family: "Icons";
  content: "\e91e";
  font-size: 25px;
  float: right; }

.mobile-menu .nav-header {
  display: none; }

.mobile-menu .nav-menu > li,
.mobile-menu-on .sub-menu.active-menu li {
  line-height: 66px;
  transition-delay: 0s; }

.submenu-active .mobile-menu .nav-menu > li,
.mobile-menu .sub-menu li {
  line-height: 18px;
  transition: line-height 0s linear .35s; }

/*--------------------------*/
/*----  MOBILE HEADER   ----*/
/*--------------------------*/
.mobile-header {
  background-color: #7D38EB;
  color: #fff;
  height: 56px;
  top: 0;
  left: -100%;
  width: 100%;
  visibility: hidden;
  position: fixed;
  z-index: 120;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); }

.mobile-header div {
  float: left;
  transition: all 0.3s ease-out 0s; }

.mobile-header .menu-back-btn,
.mobile-header .menu-close-btn {
  text-align: center;
  line-height: 48px;
  width: 48px;
  height: 48px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 4px; }

.mobile-header .menu-back-btn {
  margin-left: 20px; }

.mobile-header .menu-close-btn {
  margin-right: 3px; }

.mobile-header .title-text {
  font-size: 20px;
  line-height: 56px;
  margin-left: 32px;
  position: absolute; }

.mobile-header div[class*="-btn"]:hover {
  background: rgba(0, 0, 0, 0.1); }

.mobile-header .menu-close-btn {
  float: right; }

.mobile-header .menu-close-btn:after {
  font-family: "Icons";
  content: "\e907";
  font-size: 23px; }

.mobile-header .menu-back-btn:after {
  font-family: "Icons";
  content: "\e921";
  font-size: 23px; }

/*--------------------------*/
/*--- MOBILE ANIMATIONS  ---*/
/*--------------------------*/
.mobile-header,
.mobile-menu,
.mobile-menu .nav-menu,
.mobile-menu .sub-menu {
  -webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  /* easeInOutCubic */ }

.mobile-menu-on .mobile-header,
.mobile-menu-on .mobile-menu,
.mobile-menu-on .sub-menu.active-menu {
  visibility: visible;
  left: 0; }

.submenu-active .mobile-header .title-text {
  margin-left: 78px; }

.mobile-menu-on #container {
  overflow: hidden;
  height: 100vh; }

/*--------------------------*/
/*----   OVERLAYS       ----*/
/*--------------------------*/
.overlay-menu,
.overlay-submenu {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s ease-out 0.5s, opacity 0.5s ease-out; }

.overlay-submenu {
  z-index: 111; }

.mobile-menu-on .overlay-menu,
.overlay-submenu.overlay-visible {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s; }

/*--------------------------*/
/*---- MEDIA QUERIES     ---*/
/*--------------------------*/
@media screen and (min-width: 640px) {
  /*	.search-form label,
	.search-form input{
		display: inline;
	}*/
  .mobile-menu ul:first-child,
  .sub-menu {
    padding-top: 70px; }
  .header .mobile-menu-btn {
    padding: 0 25px 0 20px;
    width: 70px; }
  .inner-header {
    height: 70px; }
  .header .logo img {
    height: 43px; }
  .search-form {
    min-width: 275px;
    padding-left: calc(100vw/40); }
  .search-form > div {
    padding-top: 7px;
    width: inherit; }
  .search-form button {
    top: -4px; }
  .search-form label {
    visibility: visible;
    opacity: 1; } }

@media screen and (min-width: 1000px) {
  .overlay-menu,
  .overlay-submenu,
  .header .mobile-menu-btn,
  .mobile-menu,
  .mobile-header,
  .header .nav > li.popular, .header .nav > li.app {
    display: none; }
  .header .nav {
    display: table; }
  .header {
    position: fixed; }
  .inner-header {
    padding: 0 38px; }
  .search-form {
    min-width: 175px;
    padding-left: calc(100vw/60); }
  .search-form > div {
    float: none;
    padding-right: 0; }
  .header .border {
    border-left: 1px solid rgba(255, 255, 255, 0.41); }
  .header .nav > li > a {
    height: 70px;
    line-height: 77px;
    white-space: nowrap; }
  .header .nav > li a {
    padding: 0 calc(100vw/120); }
  .header nav li.start > a {
    padding-left: calc(100vw/60); }
  .header nav li.end > a,
  .header nav .podcasts > a {
    padding-right: calc(100vw/60); }
  .sticky .inner-header {
    height: 50px; }
  .sticky .logo {
    width: 168px; }
  .sticky .logo img {
    height: 36px; }
  .sticky .nav > .current_page_item > a:after,
  .sticky .nav > .current-menu-item > a:after {
    margin-top: -14px; }
  .sticky .nav > li > a {
    height: 50px;
    line-height: 50px; }
  .sticky .sub-menu li {
    margin: 5px 10px; }
  .sticky .search-form {
    height: 50px; }
  .sticky .search-form > div {
    padding-top: 0; } }

@media screen and (min-width: 1269px) {
  .header nav .podcasts > a {
    padding-right: calc(100vw/120); }
  .header .nav > li.popular, .header .nav > li.app {
    display: table-cell; } }

@media screen and (min-width: 1366px) {
  .inner-header {
    width: 1366px; }
  .search-form {
    padding-left: 32px; } }

@media screen and (min-width: 1600px) {
  .header .nav > li a {
    padding: 0 calc(100vw / 190); } }

/*********************
SINGLE POST
*********************/
.hentry header .image.podcasts.player .inner-image.full {
  width: 100%;
  margin: 0; }

.hentry header .image.podcasts.player.full {
  z-index: 1; }

.hentry header .image .podcast_post_header {
  text-align: center;
  line-height: 0; }

header .image.podcasts.player.full:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 23%, transparent 83%, rgba(0, 0, 0, 0.6) 97%, rgba(0, 0, 0, 0.6) 100%); }

@media only screen and (min-width: 640px) {
  .hentry header .image.podcasts.player {
    padding-bottom: 0; }
    .hentry header .image.podcasts.player .inner-image {
      min-height: 0; } }

@media only screen and (min-width: 1000px) {
  .image.podcasts.player {
    margin-top: 0;
    min-height: 550px; }
    .image.podcasts.player + .header-bottom {
      margin-top: 0;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none; }
      .image.podcasts.player + .header-bottom h1.single-title {
        padding-top: 20px; }
  .image.full.podcasts.player .inner-image {
    padding: 0 38px; } }

@media only screen and (min-width: 1366px) {
  .hentry header .image.old.podcasts.player {
    height: 550px; }
    .hentry header .image.old.podcasts.player .inner-image {
      position: relative !important;
      margin-left: calc(168px + 26px); } }

/*********************
PODCAST HEADER TITLES FOR SINGLE POST AND ARCHIVE
*********************/
.hentry header .image .podcast-titles, .podcast-titles {
  line-height: 21px;
  color: #fff;
  font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-align: center;
  width: 100%;
  margin: 0;
  letter-spacing: 1px;
  width: 100%;
  display: block;
  position: relative; }
  .hentry header .image .podcast-titles .podcast, .hentry header .image .podcast-titles .number, .hentry header .image .podcast-titles .featuring, .hentry header .image .podcast-titles .author, .hentry header .image .podcast-titles h6, .podcast-titles .podcast, .podcast-titles .number, .podcast-titles .featuring, .podcast-titles .author, .podcast-titles h6 {
    display: block; }
  .hentry header .image .podcast-titles .podcast, .podcast-titles .podcast {
    margin-top: 40px;
    font-size: 36px;
    line-height: 44px; }
  .hentry header .image .podcast-titles .number, .podcast-titles .number {
    font-size: 74px;
    line-height: 98px;
    font-weight: 300;
    margin-top: 5px;
    font-weight: 400; }
  .hentry header .image .podcast-titles .featuring, .podcast-titles .featuring {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 28px;
    margin-top: 7px; }
  .hentry header .image .podcast-titles .author, .podcast-titles .author {
    font-size: 24px;
    line-height: 29px; }
  .hentry header .image .podcast-titles h6, .podcast-titles h6 {
    height: auto;
    margin: 0;
    margin-top: 25px; }
  .hentry header .image .podcast-titles .post-categories, .podcast-titles .post-categories {
    text-align: center;
    margin: 0;
    position: relative;
    bottom: 0;
    padding: 0; }
    .hentry header .image .podcast-titles .post-categories li, .podcast-titles .post-categories li {
      margin-top: 0;
      display: inline-block;
      margin: 0 7px 12px;
      -webkit-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.1); }
      .hentry header .image .podcast-titles .post-categories li a, .podcast-titles .post-categories li a {
        font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 28px;
        display: block;
        padding: 0 14px 0;
        background: #fff;
        text-decoration: none;
        color: #1A1A1A;
        margin: 0;
        font-weight: 400; }
        .hentry header .image .podcast-titles .post-categories li a:active, .hentry header .image .podcast-titles .post-categories li a:hover, .podcast-titles .post-categories li a:active, .podcast-titles .post-categories li a:hover {
          color: #662D91;
          background: #FFFEF1; }

@media only screen and (min-width: 640px) {
  .post-categories {
    width: 100%; }
  .archive-title.podcasts .podcast-titles {
    padding-top: 18px; } }

@media only screen and (min-width: 1000px) {
  .hentry header .image.old.podcasts.player .inner-image.old {
    margin-bottom: 52px; }
  .hentry header .image.old.podcasts.player .post-categories li {
    box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.1); }
  .hentry header .image.full.podcasts.player .podcast-titles {
    padding-left: calc(38px + 32px); } }

@media only screen and (min-width: 1366px) {
  .hentry header .image.full.podcasts.player .podcast-titles {
    padding-left: calc(38px + 130px);
    width: calc(100% - 510px); }
  .image.old.podcasts.player .post-categories {
    bottom: 2px; } }

/*********************
PODCAST VERSION FOR SINGLE POST AND ARCHIVE
*********************/
.podcast-version-plus label {
  cursor: default; }

.podcast-version {
  color: #fff;
  font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 21px;
  text-align: left;
  padding: 0 0 38px;
  font-weight: 300;
  position: relative;
  display: inline-block; }
  .podcast-version .title {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 28px; }
    .podcast-version .title .p-name {
      display: none; }
  .podcast-version .plus {
    position: relative; }
  .podcast-version .free, .podcast-version .plus {
    margin-top: 20px; }
    .podcast-version .free .opacity-07, .podcast-version .plus .opacity-07 {
      opacity: .7;
      font-weight: 400; }
  .podcast-version .plus.protected {
    margin-top: 10px;
    padding-top: 18px; }
    .podcast-version .plus.protected .quality-select {
      height: 60px; }
  .podcast-version input[type='radio'] {
    display: none; }
  .podcast-version .podcast-radio-btn {
    border: 1px solid #fff;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    float: left;
    margin-right: 18px;
    margin-bottom: 12px; }
  .podcast-version label div:nth-child(2) {
    margin-left: -34px;
    font-size: 21px;
    line-height: 16px;
    margin-top: 6px;
    margin-bottom: 6px; }
  .podcast-version .podcast-radio-btn:before {
    display: none;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: #fff;
    position: relative;
    top: 2px;
    left: 2px; }
  .podcast-version input[name='toggle-version']:checked + label .podcast-radio-btn:before {
    display: block; }
  .podcast-version label, .podcast-version .podcast-radio-btn {
    cursor: pointer; }
  .podcast-version #free-radio + label, .podcast-version #extended-radio + label {
    display: block;
    padding-left: 34px; }
  .podcast-version .podcast-size {
    font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7); }
    .podcast-version .podcast-size.hq-podcast {
      margin-bottom: -1px;
      margin-right: -1px; }
  .podcast-version .quality-select {
    margin-top: 11px;
    margin-left: 34px; }
    .podcast-version .quality-select .podcast-size {
      border: 1px solid white;
      display: block;
      width: 142px;
      height: 34px;
      line-height: 34px;
      float: left; }
    .podcast-version .quality-select.default-select #hq-radio + label div, .podcast-version .quality-select #hq-radio:checked + label div, .podcast-version .quality-select #sq-radio:checked + label div,
    .podcast-version .quality-select.default-select #hq-radio-plus + label div, .podcast-version .quality-select #hq-radio-plus:checked + label div, .podcast-version .quality-select #sq-radio-plus:checked + label div {
      background: #fff;
      color: #1A1A1A; }
      .podcast-version .quality-select.default-select #hq-radio + label div .podcast-size, .podcast-version .quality-select #hq-radio:checked + label div .podcast-size, .podcast-version .quality-select #sq-radio:checked + label div .podcast-size,
      .podcast-version .quality-select.default-select #hq-radio-plus + label div .podcast-size, .podcast-version .quality-select #hq-radio-plus:checked + label div .podcast-size, .podcast-version .quality-select #sq-radio-plus:checked + label div .podcast-size {
        opacity: 1; }
      .podcast-version .quality-select.default-select #hq-radio + label div .podcast-size:hover, .podcast-version .quality-select #hq-radio:checked + label div .podcast-size:hover, .podcast-version .quality-select #sq-radio:checked + label div .podcast-size:hover,
      .podcast-version .quality-select.default-select #hq-radio-plus + label div .podcast-size:hover, .podcast-version .quality-select #hq-radio-plus:checked + label div .podcast-size:hover, .podcast-version .quality-select #sq-radio-plus:checked + label div .podcast-size:hover {
        color: #1A1A1A;
        opacity: 1;
        background: #fff; }
    .podcast-version .quality-select .podcast-size:hover {
      color: #fff;
      opacity: 1;
      background: rgba(255, 255, 255, 0.2); }
    .podcast-version .quality-select #hq-radio + label .podcast-size:before, .podcast-version .quality-select #hq-radio-plus + label .podcast-size:before {
      content: "HQ";
      margin: 0 10px 0 15px; }
    .podcast-version .quality-select #sq-radio + label .podcast-size:before, .podcast-version .quality-select #sq-radio-plus + label .podcast-size:before {
      content: "SQ";
      margin: 0 15px; }

.podcast_post_header .podcast-version {
  margin-top: 10px; }

.archive-title.podcasts .content {
  text-align: center; }

.archive-title.podcasts .podcast-version {
  margin-top: -4px; }

.archive-title.podcasts .podcast-version .title {
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif; }

@media only screen and (min-width: 320px) {
  .podcast-version {
    padding: 0 18px 56px; } }

@media only screen and (min-width: 360px) {
  .podcast-version .title .p-name {
    display: inline; } }

@media only screen and (min-width: 640px) {
  .image.full.podcasts.player .podcast_post_header .podcast-titles, .archive-title.podcasts .podcast-titles {
    margin-top: 18px; }
  .image.full.podcasts.player .podcast_post_header .podcast-titles, .image.full.podcasts.player .podcast_post_header .podcast-version, .archive-title.podcasts .podcast-titles, .archive-title.podcasts .podcast-version {
    width: 50%;
    padding-top: 38px;
    padding: 0 32px; }
  .image.full.podcasts.player .podcast_post_header .podcast-titles, .archive-title.podcasts .podcast-titles {
    float: left; }
  .image.full.podcasts.player .podcast_post_header .podcast-version, .archive-title.podcasts .podcast-version {
    float: right;
    padding: 0 32px 82px 28px;
    margin-top: 25px; }
    .image.full.podcasts.player .podcast_post_header .podcast-version .plus, .archive-title.podcasts .podcast-version .plus {
      margin-top: 20px; }
    .image.full.podcasts.player .podcast_post_header .podcast-version .title, .archive-title.podcasts .podcast-version .title {
      margin-top: 10px; }
    .image.full.podcasts.player .podcast_post_header .podcast-version .title .p-name, .archive-title.podcasts .podcast-version .title .p-name {
      display: none; }
  .image.full.podcasts.player .podcast_post_header .post-categories, .archive-title.podcasts .post-categories {
    width: 100%; }
  .image.old.podcasts.player .podcast-version {
    font-size: 18px;
    font-weight: 400;
    margin-top: -14px;
    width: 330px;
    padding: 0 0 16px; }
    .image.old.podcasts.player .podcast-version .title {
      font-size: 28px;
      font-weight: 400; }
    .image.old.podcasts.player .podcast-version label div:nth-child(2) {
      font-size: 24px;
      margin-top: 8px;
      margin-bottom: 8px; }
  .image.old.podcasts.player .podcast-version, .archive-title.podcasts .podcast-version {
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 44px;
    margin-top: -14px; }
    .image.old.podcasts.player .podcast-version label div:nth-child(2), .archive-title.podcasts .podcast-version label div:nth-child(2) {
      font-size: 24px;
      margin-top: 8px;
      margin-bottom: 8px; } }

@media only screen and (min-width: 1000px) {
  .image.full.podcasts.player .podcast_post_header .podcast-version {
    margin-right: 38px;
    padding: 0 calc(25% - 182px) 51px calc(25% - 182px);
    width: calc(50% - 38px);
    height: 362px; }
    .image.full.podcasts.player .podcast_post_header .podcast-version .title {
      margin-top: 54px; }
      .image.full.podcasts.player .podcast_post_header .podcast-version .title .p-name {
        display: inline; }
  .image.full.podcasts.player .podcast_post_header .podcast-titles, .image.full.podcasts.player .podcast_post_header .podcast-version {
    margin-top: 34px; }
  .podcast-version {
    font-size: 18px; }
    .podcast-version label div:nth-child(2) {
      margin-left: -41px; }
    .podcast-version #free-radio + label, .podcast-version #extended-radio + label {
      padding-left: 41px; }
    .podcast-version .podcast-radio-btn {
      margin-right: 25px; }
    .podcast-version .podcast-version .free, .podcast-version .podcast-version .plus {
      margin-top: 30px; }
    .podcast-version .plus.protected {
      margin-top: 12px; }
    .podcast-version label div:nth-child(2) {
      font-size: 24px;
      margin-bottom: 10px;
      margin-top: 10px; }
  .image.old.podcasts.player .podcast-version {
    position: absolute;
    right: 38px;
    top: 130px;
    width: calc(325px + (100vw - 1000px)/2); } }

@media only screen and (min-width: 1366px) {
  .image.full.podcasts.player .podcast_post_header .podcast-version {
    width: 460px;
    padding: 0 0 51px 0; }
    .image.full.podcasts.player .podcast_post_header .podcast-version .title {
      font-size: 28px;
      letter-spacing: 2px; }
  .image.old.podcasts.player .podcast-version {
    width: 365px;
    right: calc(115px + (100vw - 1366px) / 2); } }

/*********************
ARCHIVE PAGE
*********************/
.archive .archive-title.podcasts {
  height: auto;
  padding: 0 8px 0 0;
  overflow: hidden;
  line-height: 0; }
  .archive .archive-title.podcasts .content {
    display: block; }

.archive-title.podcasts {
  position: relative; }
  .archive-title.podcasts:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 23%, transparent 83%, rgba(0, 0, 0, 0.6) 97%, rgba(0, 0, 0, 0.6) 100%); }
  .archive-title.podcasts:after {
    display: none; }
  .archive-title.podcasts .content {
    width: 100%;
    position: static; }
  .archive-title.podcasts .summary {
    margin-top: 40px;
    display: block;
    color: #fff;
    font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 1px;
    font-weight: 300;
    -webkit-hyphens: initial;
    -epub-hyphens: initial;
    -moz-hyphens: initial;
    hyphens: initial;
    width: 100%; }
    .archive-title.podcasts .summary .title {
      font-size: 24px;
      letter-spacing: 1px;
      margin-top: 20px;
      margin-bottom: 20px;
      text-align: center; }
    .archive-title.podcasts .summary p {
      font-size: 18px; }
    .archive-title.podcasts .summary a, .archive-title.podcasts .summary a:visited {
      color: inherit;
      padding: 0 18px; }
  .archive-title.podcasts .podcast-version .title {
    font-weight: 500; }
  .archive-title.podcasts .podcast-titles > div > a, .archive-title.podcasts .summary > a {
    position: relative;
    display: block;
    color: #fff; }
    .archive-title.podcasts .podcast-titles > div > a:after, .archive-title.podcasts .summary > a:after {
      content: "";
      display: block;
      width: 100%;
      height: calc(100% + 40px);
      position: absolute;
      left: 0;
      top: -25px;
      z-index: -1; }
    .archive-title.podcasts .podcast-titles > div > a:hover p, .archive-title.podcasts .podcast-titles > div > a:hover div, .archive-title.podcasts .podcast-titles > div > a:active p, .archive-title.podcasts .podcast-titles > div > a:active div, .archive-title.podcasts .summary > a:hover p, .archive-title.podcasts .summary > a:hover div, .archive-title.podcasts .summary > a:active p, .archive-title.podcasts .summary > a:active div {
      color: #FFFDC5;
      transition: color .25s ease-in-out;
      -moz-transition: color .25s ease-in-out;
      -webkit-transition: color .25s ease-in-out; }

@media only screen and (min-width: 640px) {
  .archive-title.podcasts .summary, .archive-title.podcasts .podcast-version {
    width: calc(100% - 300px);
    float: right; }
  .archive-title.podcasts .summary {
    margin-top: 36px; }
    .archive-title.podcasts .summary a {
      padding: 0 26px; }
  .archive-title.podcasts .podcast-version {
    margin-top: 14px;
    font-weight: 300; }
    .archive-title.podcasts .podcast-version label div:nth-child(2) {
      margin-bottom: 10px;
      margin-top: 10px; } }

@media only screen and (min-width: 640px) and (max-width: 1000px) {
  .archive .archive-title.podcasts .content {
    display: table;
    position: relative; }
  .archive-title.podcasts .podcast-titles {
    left: 300px;
    padding-bottom: 90px;
    display: table-cell;
    vertical-align: middle;
    float: none; } }

@media only screen and (min-width: 640px) and (max-width: 679px) {
  .archive .archive-title.podcasts .content {
    left: -304px;
    width: calc(100% + 310px); }
  .archive-title.podcasts .podcast-titles {
    left: 304px;
    width: calc(360px - 64px) !important; } }

@media only screen and (min-width: 680px) {
  .archive-title.podcasts .podcast-titles {
    width: 320px; }
  .archive-title.podcasts .summary, .archive-title.podcasts .podcast-version {
    width: calc(100% - 300px); }
  .archive-title.podcasts .podcast-version .title .p-name {
    display: inline; } }

@media only screen and (min-width: 680px) and (max-width: 719px) {
  .archive .archive-title.podcasts .content {
    left: -324px;
    width: calc(100% + 330px); }
  .archive-title.podcasts .podcast-titles {
    left: 324px;
    width: calc(380px - 64px) !important; } }

@media only screen and (min-width: 720px) {
  .archive-title.podcasts .podcast-titles {
    width: 360px; }
  .archive-title.podcasts .summary, .archive-title.podcasts .podcast-version {
    width: calc(100% - 346px); } }

@media only screen and (min-width: 720px) and (max-width: 999px) {
  .archive .archive-title.podcasts .content {
    left: -349px;
    width: calc(100% + 355px); }
  .archive-title.podcasts .podcast-titles {
    left: 349px;
    width: calc(405px - 64px) !important; } }

@media only screen and (min-width: 1000px) {
  .archive .archive-title.podcasts {
    position: relative;
    min-height: 440px;
    margin-top: 0.67em; }
    .archive .archive-title.podcasts .left {
      padding: 0;
      width: 360px;
      padding-right: 26px;
      height: auto; }
    .archive .archive-title.podcasts .podcast-titles {
      margin-top: 6px;
      margin-left: 30px;
      text-align: left;
      padding: 0;
      width: auto;
      margin-right: 0px;
      min-width: 280px; }
      .archive .archive-title.podcasts .podcast-titles .podcast {
        max-width: 280px; }
      .archive .archive-title.podcasts .podcast-titles .post-categories {
        text-align: left; }
        .archive .archive-title.podcasts .podcast-titles .post-categories li {
          margin: 0 14px 12px 0; }
        .archive .archive-title.podcasts .podcast-titles .post-categories li:first-child {
          margin-left: 0; }
    .archive .archive-title.podcasts .podcast-titles > div > a:after, .archive .archive-title.podcasts .summary > a:after {
      top: -10px;
      left: -10px;
      height: calc(100% + 25px);
      width: calc(100% + 24px); }
    .archive .archive-title.podcasts .summary > a:after {
      top: -18px;
      width: calc(100% + 40px);
      height: calc(100% + 33px); }
    .archive .archive-title.podcasts .summary {
      float: left;
      padding: 0;
      width: calc(100vw - 38px * 2 - 26px * 2 - 260px - 260px - 26px - 38px - 26px);
      margin-top: 38px; }
      .archive .archive-title.podcasts .summary a {
        padding: 0 40px 0 0; }
    .archive .archive-title.podcasts .podcast-version {
      width: 325px;
      height: 334px;
      padding-left: 0;
      padding-right: 0;
      margin-top: 38px;
      margin-right: 30px;
      padding-bottom: 38px; }
      .archive .archive-title.podcasts .podcast-version .title {
        margin-top: 20px; }
    .archive .archive-title.podcasts .player-container {
      padding: 0 30px; }
  .archive.category-plus-podcasts:not(.has-podcast-player) .archive-title.podcasts {
    min-height: auto; } }

@media only screen and (min-width: 1100px) {
  .summary {
    padding: 0 26px; } }

@media only screen and (min-width: 1366px) {
  .archive .archive-title.podcasts {
    padding-right: calc((100vw - 100%) / 2 - 38px); }
    .archive .archive-title.podcasts .left > a:after, .archive .archive-title.podcasts .summary > a:after {
      width: calc(100% + 465px);
      height: calc(100% + 24px); }
    .archive .archive-title.podcasts .podcast-titles {
      margin-left: 56px;
      margin-right: -8px; }
      .archive .archive-title.podcasts .podcast-titles .post-categories {
        max-width: 308px; }
    .archive .archive-title.podcasts .summary > a:after {
      width: calc(100% + 379px);
      height: calc(100% + 42px);
      left: -369px; }
    .archive .archive-title.podcasts .summary {
      width: 540px;
      padding: 0; }
      .archive .archive-title.podcasts .summary a {
        margin: 0 26px 0 46px;
        padding: 0; }
    .archive .archive-title.podcasts .podcast-version {
      margin-right: 60px; }
      .archive .archive-title.podcasts .podcast-version .title {
        margin-top: 20px; } }

.podcast-version-plus #free-radio + label, .podcast-version-plus #extended-radio + label {
  padding-left: 0; }

.podcast-version-plus .podcast-radio-btn::before, .podcast-version-plus .podcast-radio-btn {
  opacity: 0; }

.podcast-version-plus .quality-select {
  margin-left: 0; }

/*********************
PLAYER, PLAYER CONTROLS
*********************/
.player-container {
  padding: 0 8px;
  clear: both; }
  .player-container .player-controls {
    width: 100%;
    display: inline-block;
    position: relative;
    color: #fff; }
    .player-container .player-controls .powerpress_player {
      display: none;
      position: relative;
      bottom: 0;
      height: 84px; }
      .player-container .player-controls .powerpress_player .wp-audio-shortcode {
        max-width: none; }
    .player-container .player-controls .powerpress_player.show-player {
      display: block; }

@media only screen and (min-width: 640px) {
  .player-container {
    padding: 0 28px; } }

.mejs-audio {
  position: relative; }
  .mejs-audio.mejs-container, .mejs-audio.mejs-container .mejs-controls, .mejs-audio .mejs-embed, .mejs-audio .mejs-embed body {
    background: none; }
    .mejs-audio.mejs-container .mejs-button, .mejs-audio.mejs-container .mejs-controls .mejs-button, .mejs-audio .mejs-embed .mejs-button, .mejs-audio .mejs-embed body .mejs-button {
      display: inline-block; }
      .mejs-audio.mejs-container .mejs-button:before, .mejs-audio.mejs-container .mejs-controls .mejs-button:before, .mejs-audio .mejs-embed .mejs-button:before, .mejs-audio .mejs-embed body .mejs-button:before {
        display: inline-block;
        font-family: "Icons";
        position: absolute;
        font-size: 25px;
        line-height: 33px;
        bottom: -3px;
        opacity: 0.8; }
      .mejs-audio.mejs-container .mejs-button:active, .mejs-audio.mejs-container .mejs-button:hover, .mejs-audio.mejs-container .mejs-controls .mejs-button:active, .mejs-audio.mejs-container .mejs-controls .mejs-button:hover, .mejs-audio .mejs-embed .mejs-button:active, .mejs-audio .mejs-embed .mejs-button:hover, .mejs-audio .mejs-embed body .mejs-button:active, .mejs-audio .mejs-embed body .mejs-button:hover {
        opacity: 1; }
        .mejs-audio.mejs-container .mejs-button:active:before, .mejs-audio.mejs-container .mejs-button:hover:before, .mejs-audio.mejs-container .mejs-controls .mejs-button:active:before, .mejs-audio.mejs-container .mejs-controls .mejs-button:hover:before, .mejs-audio .mejs-embed .mejs-button:active:before, .mejs-audio .mejs-embed .mejs-button:hover:before, .mejs-audio .mejs-embed body .mejs-button:active:before, .mejs-audio .mejs-embed body .mejs-button:hover:before {
          opacity: 1; }
      .mejs-audio.mejs-container .mejs-button.mejs-pause:before, .mejs-audio.mejs-container .mejs-controls .mejs-button.mejs-pause:before, .mejs-audio .mejs-embed .mejs-button.mejs-pause:before, .mejs-audio .mejs-embed body .mejs-button.mejs-pause:before {
        content: "\e918";
        margin-left: 5px; }
      .mejs-audio.mejs-container .mejs-button.mejs-play:before, .mejs-audio.mejs-container .mejs-controls .mejs-button.mejs-play:before, .mejs-audio .mejs-embed .mejs-button.mejs-play:before, .mejs-audio .mejs-embed body .mejs-button.mejs-play:before {
        content: "\e919"; }
      .mejs-audio.mejs-container .mejs-button.mejs-mute:before, .mejs-audio.mejs-container .mejs-controls .mejs-button.mejs-mute:before, .mejs-audio .mejs-embed .mejs-button.mejs-mute:before, .mejs-audio .mejs-embed body .mejs-button.mejs-mute:before {
        content: "\e91b"; }
      .mejs-audio.mejs-container .mejs-button.mejs-unmute:before, .mejs-audio.mejs-container .mejs-controls .mejs-button.mejs-unmute:before, .mejs-audio .mejs-embed .mejs-button.mejs-unmute:before, .mejs-audio .mejs-embed body .mejs-button.mejs-unmute:before {
        content: "\e91d"; }
      .mejs-audio.mejs-container .mejs-button button, .mejs-audio.mejs-container .mejs-controls .mejs-button button, .mejs-audio .mejs-embed .mejs-button button, .mejs-audio .mejs-embed body .mejs-button button {
        background: none;
        margin: 0;
        line-height: 25px;
        height: 25px;
        width: 25px;
        vertical-align: middle;
        outline: 0; }
    .mejs-audio.mejs-container .mejs-time, .mejs-audio.mejs-container .mejs-controls .mejs-time, .mejs-audio .mejs-embed .mejs-time, .mejs-audio .mejs-embed body .mejs-time {
      padding: 0;
      height: auto;
      overflow: visible;
      letter-spacing: 1px; }
      .mejs-audio.mejs-container .mejs-time span, .mejs-audio.mejs-container .mejs-controls .mejs-time span, .mejs-audio .mejs-embed .mejs-time span, .mejs-audio .mejs-embed body .mejs-time span {
        display: block;
        font-size: 16px;
        font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        padding-top: 0;
        height: 28px;
        line-height: 28px; }
      .mejs-audio.mejs-container .mejs-time .mejs-currenttime, .mejs-audio.mejs-container .mejs-controls .mejs-time .mejs-currenttime, .mejs-audio .mejs-embed .mejs-time .mejs-currenttime, .mejs-audio .mejs-embed body .mejs-time .mejs-currenttime {
        text-align: left;
        display: inline-block; }
        .mejs-audio.mejs-container .mejs-time .mejs-currenttime:after, .mejs-audio.mejs-container .mejs-controls .mejs-time .mejs-currenttime:after, .mejs-audio .mejs-embed .mejs-time .mejs-currenttime:after, .mejs-audio .mejs-embed body .mejs-time .mejs-currenttime:after {
          font-family: "Icons";
          color: #fff;
          content: "\e925";
          font-size: 28px;
          vertical-align: middle;
          position: absolute;
          left: 66px; }
    .mejs-audio.mejs-container .mejs-time-rail, .mejs-audio.mejs-container .mejs-controls .mejs-time-rail, .mejs-audio .mejs-embed .mejs-time-rail, .mejs-audio .mejs-embed body .mejs-time-rail {
      width: 100% !important;
      padding-top: 8px; }
      .mejs-audio.mejs-container .mejs-time-rail .mejs-time-total, .mejs-audio.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total, .mejs-audio .mejs-embed .mejs-time-rail .mejs-time-total, .mejs-audio .mejs-embed body .mejs-time-rail .mejs-time-total {
        margin: 0;
        background: rgba(255, 255, 255, 0.9);
        width: 100% !important;
        height: 5px;
        outline: 0; }
        .mejs-audio.mejs-container .mejs-time-rail .mejs-time-total::before, .mejs-audio.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total::before, .mejs-audio .mejs-embed .mejs-time-rail .mejs-time-total::before, .mejs-audio .mejs-embed body .mejs-time-rail .mejs-time-total::before {
          content: "";
          display: block;
          height: 15px;
          margin-top: -5px; }
        .mejs-audio.mejs-container .mejs-time-rail .mejs-time-total .mejs-time-loaded, .mejs-audio.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total .mejs-time-loaded, .mejs-audio .mejs-embed .mejs-time-rail .mejs-time-total .mejs-time-loaded, .mejs-audio .mejs-embed body .mejs-time-rail .mejs-time-total .mejs-time-loaded {
          background: white;
          height: 5px;
          margin-top: -10px; }
        .mejs-audio.mejs-container .mejs-time-rail .mejs-time-total .mejs-time-current, .mejs-audio.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total .mejs-time-current, .mejs-audio .mejs-embed .mejs-time-rail .mejs-time-total .mejs-time-current, .mejs-audio .mejs-embed body .mejs-time-rail .mejs-time-total .mejs-time-current {
          background: #00D5FF;
          height: 5px;
          margin-top: -10px; }
        .mejs-audio.mejs-container .mejs-time-rail .mejs-time-total .mejs-time-handle, .mejs-audio.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total .mejs-time-handle, .mejs-audio .mejs-embed .mejs-time-rail .mejs-time-total .mejs-time-handle, .mejs-audio .mejs-embed body .mejs-time-rail .mejs-time-total .mejs-time-handle {
          width: 19px;
          height: 19px;
          background: #29ABE2;
          border-radius: 50%;
          top: -7px;
          left: -11px;
          display: block;
          border: 0; }
        .mejs-audio.mejs-container .mejs-time-rail .mejs-time-total .mejs-time-float, .mejs-audio.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total .mejs-time-float, .mejs-audio .mejs-embed .mejs-time-rail .mejs-time-total .mejs-time-float, .mejs-audio .mejs-embed body .mejs-time-rail .mejs-time-total .mejs-time-float {
          display: none !important; }
    .mejs-audio.mejs-container .mejs-horizontal-volume-slider, .mejs-audio.mejs-container .mejs-controls .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed body .mejs-horizontal-volume-slider {
      display: none !important; }
      .mejs-audio.mejs-container .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, .mejs-audio.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, .mejs-audio .mejs-embed .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, .mejs-audio .mejs-embed body .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
        height: 3px;
        background: rgba(255, 255, 255, 0.32); }
      .mejs-audio.mejs-container .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .mejs-audio.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .mejs-audio .mejs-embed .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .mejs-audio .mejs-embed body .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
        height: 3px;
        background: white; }
      .mejs-audio.mejs-container .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle, .mejs-audio.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle, .mejs-audio .mejs-embed .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle, .mejs-audio .mejs-embed body .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
        width: 15px;
        height: 15px;
        background: white;
        border-radius: 50%;
        display: block;
        position: absolute;
        top: 5px; }
    .mejs-audio.mejs-container .mejs-button, .mejs-audio.mejs-container .mejs-time, .mejs-audio.mejs-container .mejs-horizontal-volume-slider, .mejs-audio.mejs-container .mejs-controls .mejs-button, .mejs-audio.mejs-container .mejs-controls .mejs-time, .mejs-audio.mejs-container .mejs-controls .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed .mejs-button, .mejs-audio .mejs-embed .mejs-time, .mejs-audio .mejs-embed .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed body .mejs-button, .mejs-audio .mejs-embed body .mejs-time, .mejs-audio .mejs-embed body .mejs-horizontal-volume-slider {
      position: absolute;
      top: 37px; }
    .mejs-audio.mejs-container .mejs-playpause-button, .mejs-audio.mejs-container .mejs-controls .mejs-playpause-button, .mejs-audio .mejs-embed .mejs-playpause-button, .mejs-audio .mejs-embed body .mejs-playpause-button {
      left: 0; }
    .mejs-audio.mejs-container .mejs-currenttime-container, .mejs-audio.mejs-container .mejs-controls .mejs-currenttime-container, .mejs-audio .mejs-embed .mejs-currenttime-container, .mejs-audio .mejs-embed body .mejs-currenttime-container {
      display: none;
      left: 48px; }
    .mejs-audio.mejs-container .mejs-duration-container, .mejs-audio.mejs-container .mejs-controls .mejs-duration-container, .mejs-audio .mejs-embed .mejs-duration-container, .mejs-audio .mejs-embed body .mejs-duration-container {
      display: none;
      left: 132px; }
    .mejs-audio.mejs-container .mejs-volume-button, .mejs-audio.mejs-container .mejs-controls .mejs-volume-button, .mejs-audio .mejs-embed .mejs-volume-button, .mejs-audio .mejs-embed body .mejs-volume-button {
      left: 50px; }
    .mejs-audio.mejs-container .mejs-horizontal-volume-slider, .mejs-audio.mejs-container .mejs-controls .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed body .mejs-horizontal-volume-slider {
      left: 282px;
      width: 150px; }
      .mejs-audio.mejs-container .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, .mejs-audio.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, .mejs-audio .mejs-embed .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, .mejs-audio .mejs-embed body .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
        width: 100%; }

@media only screen and (max-width: 639px) {
  .mejs-audio.mejs-container .mejs-button::before,
  .mejs-audio.mejs-container .mejs-controls .mejs-button::before {
    font-size: 32px; }
  .mejs-audio.mejs-container .mejs-volume-button,
  .mejs-audio.mejs-container .mejs-controls .mejs-volume-button {
    left: 56px; } }

/*********************
PLAYER DARK VERSION
*********************/
.hentry header .image .podcast_post_header.dark-skin, .dark-skin .podcast-version, .dark-skin .player-controls {
  color: #1A1A1A; }

.dark-skin .podcast-version .podcast-size {
  color: rgba(26, 26, 26, 0.7); }

.dark-skin .podcast-version .podcast-radio-btn, .dark-skin .podcast-version .quality-select .podcast-size {
  border: 1px solid #1A1A1A; }

.dark-skin .podcast-version .quality-select .podcast-size:active, .dark-skin .podcast-version .quality-select .podcast-size:hover {
  color: #1A1A1A; }

.dark-skin .podcast-version .podcast-radio-btn::before {
  background: #1A1A1A; }

.dark-skin .mejs-audio.mejs-container .mejs-button::before,
.dark-skin .mejs-audio.mejs-container .mejs-controls .mejs-button::before {
  opacity: 1; }

.dark-skin .mejs-audio .mejs-time-rail .mejs-time-total,
.dark-skin .mejs-audio.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total,
.dark-skin .mejs-audio .mejs-embed .mejs-time-rail .mejs-time-total,
.dark-skin .mejs-audio .mejs-embed body .mejs-time-rail .mejs-time-total,
.dark-skin .mejs-audio.mejs-container .mejs-time-rail .mejs-time-total .mejs-time-loaded,
.dark-skin .mejs-audio.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total .mejs-time-loaded,
.dark-skin .mejs-audio .mejs-embed .mejs-time-rail .mejs-time-total .mejs-time-loaded,
.dark-skin .mejs-audio .mejs-embed body .mejs-time-rail .mejs-time-total .mejs-time-loaded {
  background: rgba(26, 26, 26, 0.26); }

.dark-skin .mejs-audio.mejs-container .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.dark-skin .mejs-audio.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.dark-skin .mejs-audio .mejs-embed .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.dark-skin .mejs-audio .mejs-embed body .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background: rgba(26, 26, 26, 0.32) none repeat scroll 0 0; }

.dark-skin .mejs-audio.mejs-container .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.dark-skin .mejs-audio.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.dark-skin .mejs-audio .mejs-embed .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.dark-skin .mejs-audio .mejs-embed body .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.dark-skin .mejs-audio.mejs-container .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle,
.dark-skin .mejs-audio.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle,
.dark-skin .mejs-audio .mejs-embed .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle,
.dark-skin .mejs-audio .mejs-embed body .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
  background: #1A1A1A; }

.dark-skin .mejs-audio.mejs-container .mejs-time-rail .mejs-time-total .mejs-time-handle,
.dark-skin .mejs-audio.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total .mejs-time-handle,
.dark-skin .mejs-audio .mejs-embed .mejs-time-rail .mejs-time-total .mejs-time-handle,
.dark-skin .mejs-audio .mejs-embed body .mejs-time-rail .mejs-time-total .mejs-time-handle, .dark-skin .mejs-audio .mejs-container .mejs-time-rail .mejs-time-total .mejs-time-current,
.dark-skin .mejs-audio.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total .mejs-time-current,
.dark-skin .mejs-audio .mejs-embed .mejs-time-rail .mejs-time-total .mejs-time-current,
.dark-skin .mejs-audio .mejs-embed body .mejs-time-rail .mejs-time-total .mejs-time-current {
  background: #FF002C; }

.dark-skin .mejs-audio.mejs-container .mejs-controls .mejs-time,
.dark-skin .mejs-audio.mejs-container .mejs-time .mejs-currenttime::after,
.dark-skin .mejs-audio.mejs-container .mejs-controls .mejs-time .mejs-currenttime::after,
.dark-skin .mejs-audio .mejs-embed .mejs-time .mejs-currenttime::after,
.dark-skin .mejs-audio .mejs-embed body .mejs-time .mejs-currenttime::after {
  color: #1A1A1A; }

@media only screen and (min-width: 640px) {
  .mejs-audio.mejs-container .mejs-volume-button, .mejs-audio.mejs-container .mejs-controls .mejs-volume-button, .mejs-audio .mejs-embed .mejs-volume-button, .mejs-audio .mejs-embed body .mejs-volume-button {
    left: 228px; }
  .mejs-audio.mejs-container .mejs-currenttime-container,
  .mejs-audio.mejs-container .mejs-duration-container, .mejs-audio.mejs-container .mejs-controls .mejs-currenttime-container,
  .mejs-audio.mejs-container .mejs-controls .mejs-duration-container, .mejs-audio .mejs-embed .mejs-currenttime-container,
  .mejs-audio .mejs-embed .mejs-duration-container, .mejs-audio .mejs-embed body .mejs-currenttime-container,
  .mejs-audio .mejs-embed body .mejs-duration-container {
    display: block !important; }
  .mejs-audio.mejs-container .mejs-horizontal-volume-slider, .mejs-audio.mejs-container .mejs-controls .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed body .mejs-horizontal-volume-slider {
    display: block !important; } }

@media only screen and (min-width: 1000px) {
  .player-container {
    padding: 0 48px 0 38px; }
  .mejs-audio.mejs-container.mejs-container .mejs-horizontal-volume-slider, .mejs-audio.mejs-container.mejs-container .mejs-controls .mejs-horizontal-volume-slider, .mejs-audio.mejs-container .mejs-embed .mejs-horizontal-volume-slider, .mejs-audio.mejs-container .mejs-embed body .mejs-horizontal-volume-slider, .mejs-audio.mejs-container .mejs-controls.mejs-container .mejs-horizontal-volume-slider, .mejs-audio.mejs-container .mejs-controls.mejs-container .mejs-controls .mejs-horizontal-volume-slider, .mejs-audio.mejs-container .mejs-controls .mejs-embed .mejs-horizontal-volume-slider, .mejs-audio.mejs-container .mejs-controls .mejs-embed body .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed.mejs-container .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed.mejs-container .mejs-controls .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed .mejs-embed .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed .mejs-embed body .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed body.mejs-container .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed body.mejs-container .mejs-controls .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed body .mejs-embed .mejs-horizontal-volume-slider, .mejs-audio .mejs-embed body .mejs-embed body .mejs-horizontal-volume-slider {
    width: 278px; } }

/*********************
DOWNLOAD LINK
*********************/
.mejs-download {
  display: block;
  overflow: hidden;
  width: 20px;
  position: absolute;
  bottom: 0;
  right: 115px;
  height: 30px;
  margin-bottom: 20px; }
  .mejs-download a, .mejs-download a:visited {
    color: #fff;
    font-size: 18px;
    font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 30px;
    letter-spacing: 2px;
    text-decoration: none; }
    .mejs-download a span, .mejs-download a:visited span {
      font-size: 26px;
      margin-right: 18px;
      vertical-align: middle; }
    .mejs-download a:active, .mejs-download a:hover, .mejs-download a:visited:active, .mejs-download a:visited:hover {
      color: #fff; }

.dark-skin .mejs-download a, .dark-skin .mejs-download a:visited {
  color: #1A1A1A; }

@media only screen and (min-width: 785px) {
  .mejs-download {
    right: 125px;
    overflow: visible;
    width: auto; } }

/*********************
PROTECTED BUTTON
*********************/
.protected-popup {
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #1A1A1A;
  background: #fff;
  position: absolute;
  top: -120px;
  width: 436px;
  visibility: hidden;
  opacity: 0;
  transition: all .1s ease-out; }
  .protected-popup::after {
    font-family: "Icons";
    display: block;
    content: "\e926";
    color: #fff;
    width: 21px;
    height: 18px;
    line-height: 18px;
    position: absolute;
    bottom: -17px;
    left: 50%; }
  .protected-popup .cross {
    background: #ff002b;
    background: -moz-linear-gradient(-45deg, #ff002b 0%, #380091 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #ff002b), color-stop(100%, #380091));
    background: -webkit-linear-gradient(-45deg, #ff002b 0%, #380091 100%);
    background: -o-linear-gradient(-45deg, #ff002b 0%, #380091 100%);
    background: -ms-linear-gradient(-45deg, #ff002b 0%, #380091 100%);
    background: linear-gradient(135deg, #ff002b 0%, #380091 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff002b', endColorstr='#380091', GradientType=1 );
    float: left; }
    .protected-popup .cross::after {
      display: block;
      content: "";
      background: url("../images/popup-cross.png");
      width: 120px;
      height: 120px; }
  .protected-popup .popup-text {
    padding: 19px 15px 15px 135px; }
    .protected-popup .popup-text a {
      color: #0071BC;
      text-decoration: none; }

.protected-popup {
  width: 100%;
  top: auto;
  bottom: 135px; }
  .protected-popup .cross {
    width: 100%; }
    .protected-popup .cross:after {
      background-position: center;
      background-repeat: no-repeat;
      width: 100%;
      height: 134px; }
  .protected-popup .popup-text {
    padding: 12px 16px;
    font-size: 17px;
    line-height: 24px;
    display: inline-block; }

.archive.category-plus-podcasts:not(.has-podcast-player) .archive-title.podcasts .protected-popup {
  bottom: 110px; }

.protected-popup.popup-visible {
  visibility: visible;
  opacity: 1;
  transition-delay: .2s; }

@media only screen and (min-width: 485px) {
  .protected-popup {
    width: 435px;
    margin-left: calc((100vw - 100%) / -2 + (100vw - 435px) / 2); }
    .protected-popup .cross {
      width: 120px;
      float: left; }
      .protected-popup .cross:after {
        background-position: center;
        background-repeat: no-repeat;
        width: 120px;
        height: 120px; }
    .protected-popup .popup-text {
      width: calc(100% - 120px);
      padding: 14px 15px 0 15px; } }

@media only screen and (min-width: 640px) {
  .protected-popup {
    margin-left: 35px; }
  .image.full.podcasts .protected-popup,
  .archive-title.podcasts .protected-popup {
    margin-left: 0;
    right: -4px; } }

@media only screen and (min-width: 1000px) {
  .image.old.podcasts .protected-popup {
    margin-left: 0;
    right: 0; }
  .image.full.podcasts .protected-popup {
    left: auto;
    margin-right: calc((25vw - 182px) * -1);
    right: 0; } }

@media only screen and (min-width: 1366px) {
  .protected-popup {
    margin-left: 40px; }
  .image.old.podcasts .protected-popup {
    right: auto;
    margin-left: 40px; }
  .image.full.podcasts .protected-popup {
    margin-left: 40px;
    left: auto;
    right: auto;
    margin-right: 0; }
  .archive-title.podcasts .protected-popup {
    right: -32px; } }

/*********************
PLAYER MENU
*********************/
.player-menu-btn {
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 30px;
  line-height: 30px;
  margin-bottom: 20px;
  cursor: pointer;
  letter-spacing: 2px; }
  .player-menu-btn::before {
    font-family: "Icons";
    content: "\e91e";
    display: block;
    float: left;
    font-size: 24px;
    padding-right: 14px; }

.player-menu {
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1A1A1A;
  font-size: 18px;
  letter-spacing: 1px;
  background: #fff;
  position: absolute;
  text-align: left;
  width: 80%;
  left: 10%;
  bottom: -480px;
  visibility: hidden;
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-backface-visibility: hidden; }
  .player-menu .player-header {
    color: #fff;
    background: #7D38EB;
    height: 54px; }
    .player-menu .player-header .title {
      font-size: 20px;
      font-weight: 500;
      float: left; }
    .player-menu .player-header .player-menu-close-btn {
      display: block;
      cursor: pointer;
      width: 34px;
      height: 34px;
      line-height: 34px;
      border-radius: 50px;
      float: right;
      text-align: center;
      margin-top: 10px;
      margin-right: 12px; }
      .player-menu .player-header .player-menu-close-btn::before {
        font-family: "Icons";
        display: block;
        content: "\e907"; }
      .player-menu .player-header .player-menu-close-btn:hover {
        background: rgba(255, 255, 255, 0.1); }
    .player-menu .player-header > .title {
      line-height: 30px;
      margin-top: 13px; }
  .player-menu .title {
    font-weight: 600;
    line-height: 50px;
    padding: 0 12px 0 20px; }
  .player-menu .share {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc; }
  .player-menu ul {
    margin: 0; }
  .player-menu a {
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 300;
    text-decoration: none;
    display: block;
    line-height: 54px;
    padding: 0 12px 0 20px; }
    .player-menu a span {
      font-size: 26px;
      color: rgba(144, 99, 214, 0.55);
      margin-right: 20px;
      vertical-align: middle; }
    .player-menu a:visited, .player-menu a:focus {
      color: #1A1A1A; }
    .player-menu a:hover {
      color: #1A1A1A !important;
      background: rgba(0, 0, 0, 0.035); }

.player-menu-overlay {
  background: black;
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease-out, visibility .25s ease-out;
  -webkit-backface-visibility: hidden; }

.player-menu-on .player-menu,
.player-menu-on .archive-title.podcasts .player-menu {
  visibility: visible;
  bottom: calc(50% - 240px); }

.player-menu-on .player-menu-overlay {
  visibility: visible;
  opacity: .4; }

.player-menu-on .archive-title.podcasts .content {
  z-index: 4; }

@media only screen and (min-width: 480px) {
  .player-container {
    position: relative; }
  .player-menu {
    width: 200px;
    height: auto;
    left: auto;
    right: 0; }
  .player-menu-on .player-menu,
  .player-menu-on .archive-title.podcasts .player-menu {
    visibility: visible;
    bottom: 0; }
  .player-menu-on .player-menu-overlay {
    opacity: 0; } }

@media only screen and (min-width: 1000px) {
  .archive-title.podcasts .player-menu {
    right: 0;
    bottom: -440px; }
    .archive-title.podcasts .player-menu .player-header {
      height: 50px; }
      .archive-title.podcasts .player-menu .player-header .player-menu-close-btn {
        margin-top: 8px; }
    .archive-title.podcasts .player-menu a {
      line-height: 48px; } }

/******************************************************************
Site Name:
Author:

Stylesheet: 585px and Up Stylesheet

******************************************************************/
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  padding: 0;
  position: relative; }

.home #content header,
.page-latest #content header,
.page-popular #content header,
.archive #content header,
.search-results #content header,
.search-no-results #content header {
  padding: 0 18px; }

#content {
  padding-top: 70px; }

/*********************
POSTS & CONTENT STYLES
*********************/
.archive .archive-title, .page-latest .archive-title, .page-popular .archive-title, .search-results .archive-title, .search-no-results .archive-title {
  font-size: 49px;
  height: 180px;
  line-height: 180px;
  padding: 0 0 0 42px;
  margin-bottom: 0; }

.archive .archive-title, .page-latest .archive-title, .page-popular .archive-title {
  padding: 22px 20px 22px 66px;
  line-height: 80px; }
  .archive .archive-title .archive-type, .page-latest .archive-title .archive-type, .page-popular .archive-title .archive-type {
    font-size: 21px;
    line-height: 21px; }
  .archive .archive-title .posts, .page-latest .archive-title .posts, .page-popular .archive-title .posts {
    font-size: 35px;
    padding-left: 45px;
    line-height: 35px; }

.page-latest .archive-title, .page-popular .archive-title {
  padding: 43px 20px 22px 66px;
  line-height: 80px; }
  .page-latest .archive-title .posts, .page-popular .archive-title .posts {
    display: block;
    padding-left: 60px; }

.archive.author .archive-title {
  height: 130px;
  line-height: 60px;
  font-size: 38px;
  padding: 22px 20px; }
  .archive.author .archive-title .content {
    padding-top: 0;
    padding-left: 116px;
    margin-top: -5px; }
  .archive.author .archive-title .archive-type {
    font-size: 22px; }
  .archive.author .archive-title .posts {
    margin-top: 10px;
    font-size: 36px;
    display: inline-block;
    padding-left: 0; }

.archive.author .avatar {
  width: 94px;
  height: 94px;
  top: 16px;
  left: 20px; }
  .archive.author .avatar span:before {
    font-size: 57px;
    line-height: 94px; }
  .archive.author .avatar span:after {
    height: 66px;
    left: 14px;
    top: 14px;
    width: 66px; }

.archive.author .author-meta {
  width: 100%; }

.archive.author .author-desc, .archive.author .author-social {
  font-size: 18px;
  line-height: 24px;
  padding: 26px calc((100vw - 510px) / 2) 30px; }

.archive.author .author-desc b {
  font-size: 24px;
  font-weight: 400; }

.archive.author .author-desc + .author-social {
  padding-top: 10px; }

.archive.author .author-social {
  padding-top: 26px;
  margin-bottom: 0;
  font-size: 18px;
  text-align: center; }
  .archive.author .author-social a {
    width: 33px;
    height: 33px;
    vertical-align: middle;
    margin-left: 12px; }
  .archive.author .author-social .and {
    display: inline-block;
    margin: 0 -2px 0 10px; }

.search-results .archive-title, .search-no-results .archive-title {
  padding-left: calc(20px * 2 + 42px); }
  .search-results .archive-title:after, .search-no-results .archive-title:after {
    height: 42px;
    width: 42px;
    top: calc(50% - 21px);
    left: 20px;
    font-size: 42px;
    line-height: 42px; }

.single #inner-content {
  padding: 0; }

.home article header {
  padding: 0 18px; }

.single .bar-message {
  padding: 0 0 0;
  margin-bottom: 0; }

.bar-message {
  display: block;
  height: 126px;
  margin: 26px 0 26px 0; }
  .bar-message .message {
    font-size: 21px;
    height: 126px;
    padding: 21px 40px 21px 18px;
    position: relative;
    width: 400px;
    line-height: 29px;
    font-weight: 300;
    letter-spacing: 1px; }
    .bar-message .message a {
      text-decoration: none;
      position: relative;
      display: inline-block; }
      .bar-message .message a:after {
        bottom: 0;
        content: "";
        display: inline;
        height: 1px;
        left: 0;
        opacity: 0.5;
        position: absolute;
        width: 100%;
        background: #fff; }
    .bar-message .message:before {
      right: -4px;
      width: 4px; }
    .bar-message .message:after {
      right: -2px;
      width: 2px; }
    .bar-message .message div:before {
      right: -22px;
      width: 20px; }
    .bar-message .message div:after {
      right: -21px;
      width: 20px; }
  .bar-message .learn-more {
    height: 126px;
    margin-left: -11px;
    width: calc(100vw - 400px - 8px);
    text-align: center; }
    .bar-message .learn-more:before, .bar-message .learn-more:after {
      right: -20px;
      width: 20px; }
    .bar-message .learn-more a {
      font-size: 23px;
      letter-spacing: 2px;
      line-height: 29px;
      padding: 36px;
      width: 174px; }

.hentry.welcome {
  position: relative;
  margin-bottom: 3px; }
  .hentry.welcome.cover-1 > a {
    height: calc( 100vw * 441 / 585); }
    .hentry.welcome.cover-1 > a:after {
      height: 300px; }
  .hentry.welcome.cover-2 > a, .hentry.welcome.cover-3 > a, .hentry.welcome.cover-4 > a {
    height: calc( 100vw * 241 / 585); }
  .hentry.welcome a {
    line-height: 0;
    display: block; }
  .hentry.welcome h2 {
    font-size: 21px;
    line-height: 24px; }
    .hentry.welcome h2 .podcast {
      margin-top: 18px;
      font-size: 32px;
      line-height: 44px; }
    .hentry.welcome h2 .number {
      font-size: 80px;
      line-height: 98px;
      font-weight: 300; }
    .hentry.welcome h2 .featuring {
      font-size: 14px;
      text-transform: uppercase;
      line-height: 28px; }
    .hentry.welcome h2 .author {
      font-size: 33px;
      line-height: 39px; }
  .hentry.welcome h6 {
    padding: 20px; }
    .hentry.welcome h6 .post-categories li {
      margin-top: 14px;
      margin-right: 14px;
      -webkit-box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.15);
      -moz-box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.15);
      box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.15); }
      .hentry.welcome h6 .post-categories li a {
        font-size: 14px;
        line-height: 32px;
        font-weight: 600;
        letter-spacing: 1px; }

.hentry > a > .image {
  height: calc(100vw / 1.91467); }

.hentry header .image.old.podcasts.player .inner-image {
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.1);
  width: calc(100vw - (26px * 2 + 10px));
  height: calc((100vw - (26px * 2 + 10px)) * 306 / 585);
  margin: 26px 0 26px 26px;
  position: relative; }

.hentry header .image.old.podcasts.player h6 {
  bottom: 0; }
  .hentry header .image.old.podcasts.player h6 .post-categories {
    padding: 0 10px;
    margin: 0; }
    .hentry header .image.old.podcasts.player h6 .post-categories li a {
      font-size: inherit;
      line-height: 28px; }

.hentry header .image.old .inner-image.old {
  -webkit-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
  margin: 26px 0 26px 26px; }

.hentry header .image.old .store-link {
  height: 85px;
  width: calc(100vw - 26px);
  margin: 15px auto 30px 0;
  padding: 0;
  background: none; }
  .hentry header .image.old .store-link .text {
    text-align: left;
    font-size: 21px;
    line-height: 28px;
    font-weight: 300;
    max-width: none;
    margin: 0;
    padding: 18px 26px;
    display: inline-block;
    font-weight: 300;
    width: calc((100% - 240px));
    height: 100%;
    background: #0a0039;
    background: -moz-linear-gradient(left, #0a0039 0%, #0a0039 3%, #3e3b9c 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #0a0039), color-stop(3%, #0a0039), color-stop(100%, #3e3b9c));
    background: -webkit-linear-gradient(left, #0a0039 0%, #0a0039 3%, #3e3b9c 100%);
    background: -o-linear-gradient(left, #0a0039 0%, #0a0039 3%, #3e3b9c 100%);
    background: -ms-linear-gradient(left, #0a0039 0%, #0a0039 3%, #3e3b9c 100%);
    background: linear-gradient(to right, #0a0039 0%, #0a0039 3%, #3e3b9c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a0039', endColorstr='#3e3b9c', GradientType=1 ); }
    .hentry header .image.old .store-link .text .mu {
      font-weight: 500; }
    .hentry header .image.old .store-link .text > div {
      display: table;
      height: 50px; }
    .hentry header .image.old .store-link .text > div > div {
      display: table-cell;
      vertical-align: middle; }
  .hentry header .image.old .store-link .button {
    display: inline-block;
    position: relative;
    height: 100%;
    margin: 0 0 0 -4px;
    line-height: 85px;
    vertical-align: top; }
  .hentry header .image.old .store-link .button:before, .hentry header .image.old .store-link .button:after {
    display: block;
    content: "";
    width: 20px;
    height: 100%;
    background: inherit;
    -webkit-transform-origin: 0 100% 0;
    -ms-transform-origin: 0 100% 0;
    transform-origin: 0 100% 0;
    -webkit-transform: skew(189deg);
    -ms-transform: skew(189deg);
    transform: skew(189deg);
    position: absolute;
    top: 0; }
  .hentry header .image.old .store-link .button:before {
    left: -2px; }
  .hentry header .image.old .store-link .button:after {
    right: -14px; }

.hentry header .image .inner-image {
  margin: 26px auto;
  width: calc( 100vw - ( 26px * 2 + 10px));
  height: calc( ( 100vw - ( 26px * 2 + 10px) ) * 306 / 585); }

.hentry header .image .post-categories {
  margin: 37px auto calc(35px - 14px);
  width: 604px; }
  .hentry header .image .post-categories li {
    margin: 0 7px 14px; }
    .hentry header .image .post-categories li a {
      font-size: 17px;
      line-height: 33px;
      padding: 0 10px 0;
      letter-spacing: 1px; }

.hentry header h1 {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 2px;
  padding: 32px 32px 5px; }

.hentry header h2.single-title .number {
  font-size: 112px;
  letter-spacing: -4px;
  line-height: 112px; }

.hentry header h2.single-title .author {
  font-size: 30px;
  line-height: 30px; }

.hentry header h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 30px; }
  .hentry header h2 a {
    color: #1A1A1A; }

.hentry header h6 {
  margin: 8px 0 12px;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px; }

.hentry header .vcard {
  margin-bottom: 45px; }

.hentry header .single.vcard {
  margin-left: 34px;
  margin-right: 34px; }

.hentry header .entry-author {
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 1px;
  margin-top: 14px; }

.hentry header .entry-time {
  font-size: 18px; }

.hentry header .single .entry-author {
  font-weight: 400;
  letter-spacing: 1px; }

.hentry header .single .entry-author {
  font-size: 21px;
  line-height: 18px; }

.hentry header .single .entry-time {
  font-size: 18px;
  line-height: 35px; }

.hentry header .social-links {
  text-align: left;
  margin: 0 0 0 33px; }
  .hentry header .social-links li {
    display: inline-block;
    border-radius: 2px;
    margin-right: 7px; }
    .hentry header .social-links li.facebook {
      background: #3B5998; }
    .hentry header .social-links li.twitter {
      background: #36D8FF; }
    .hentry header .social-links li.google {
      background: #D34836; }
    .hentry header .social-links li a {
      display: inline-block;
      text-align: center;
      font-weight: bold;
      font-size: 10px;
      line-height: 30px;
      width: 125px; }
      .hentry header .social-links li a span {
        width: 14px;
        height: 14px;
        font-size: 14px;
        top: 6px;
        left: 14px; }

.hentry header h2 a {
  font-weight: 600; }

body.single.store-link .hentry header .image h6 {
  margin: -13px 0 -10px; }

/* entry content */
.entry-content, .entry-content:not(.no-rainbow) {
  padding: 28px 32px 0;
  /* at this larger size, we can start to align images */ }
  .entry-content h2, .entry-content h3, .entry-content:not(.no-rainbow) h2, .entry-content:not(.no-rainbow) h3 {
    font-size: 24px;
    line-height: 27px;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 36px 0 18px; }
  .entry-content h3, .entry-content:not(.no-rainbow) h3 {
    font-size: 28px;
    margin: 36px 0 12px;
    font-weight: 500; }
  .entry-content p, .entry-content:not(.no-rainbow) p {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 1px; }
  .entry-content > p:first-child, .entry-content > p:first-child strong, .entry-content:not(.no-rainbow) > p:first-child, .entry-content:not(.no-rainbow) > p:first-child strong {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500; }
  .entry-content ul li, .entry-content:not(.no-rainbow) ul li {
    line-height: 21px;
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    padding-left: 22px; }
  .entry-content h3.sponsors, .entry-content:not(.no-rainbow) h3.sponsors {
    font-size: 21px;
    padding: 26px 0 22px;
    margin-bottom: 0;
    letter-spacing: 0; }
    .entry-content h3.sponsors + ul, .entry-content:not(.no-rainbow) h3.sponsors + ul {
      margin-top: 0;
      margin-bottom: 22px;
      padding-bottom: 14px; }
      .entry-content h3.sponsors + ul li, .entry-content:not(.no-rainbow) h3.sponsors + ul li {
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 21px;
        letter-spacing: 0; }
        .entry-content h3.sponsors + ul li:before, .entry-content:not(.no-rainbow) h3.sponsors + ul li:before {
          left: -18px; }
        .entry-content h3.sponsors + ul li a, .entry-content:not(.no-rainbow) h3.sponsors + ul li a {
          color: #0071BC;
          text-decoration: none; }
  .entry-content h3.extension, .entry-content:not(.no-rainbow) h3.extension {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 8px; }
    .entry-content h3.extension + h3, .entry-content:not(.no-rainbow) h3.extension + h3 {
      font-size: 21px;
      line-height: 24px;
      font-weight: 400;
      margin-top: 8px; }
      .entry-content h3.extension + h3 a, .entry-content:not(.no-rainbow) h3.extension + h3 a {
        color: #0071BC; }
  .entry-content .alignleft, .entry-content img.alignleft, .entry-content:not(.no-rainbow) .alignleft, .entry-content:not(.no-rainbow) img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left; }
  .entry-content .alignright, .entry-content img.alignright, .entry-content:not(.no-rainbow) .alignright, .entry-content:not(.no-rainbow) img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right; }
  .entry-content .aligncenter, .entry-content img.aligncenter, .entry-content:not(.no-rainbow) .aligncenter, .entry-content:not(.no-rainbow) img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both; }

/* end .entry-content */
.article-footer {
  padding: 0 16px; }

.tags .tags-title {
  margin: 20px 0 10px; }

.tags a {
  font-size: 14px;
  padding: 5px 10px;
  letter-spacing: 1px;
  margin: 6px 9px 4px 0;
  display: inline-block; }

.author-meta {
  padding: 30px 16px 65px;
  display: table; }
  .author-meta .avatar-cell {
    display: table-cell;
    vertical-align: top; }
  .author-meta .avatar {
    border-radius: 50%;
    margin-right: 26px;
    margin-bottom: 0; }
  .author-meta .desc-cell {
    display: table-cell;
    vertical-align: middle; }
  .author-meta .desc {
    padding-top: 6px; }
  .author-meta .desc, .author-meta .author-social {
    margin-top: 0;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 22px; }
    .author-meta .desc strong, .author-meta .desc b, .author-meta .author-social strong, .author-meta .author-social b {
      font-size: 21px; }
  .author-meta .author-social {
    margin-top: 10px; }
    .author-meta .author-social a {
      margin-left: 10px;
      float: none; }
  .author-meta .and {
    display: inline-block;
    margin-left: 10px; }

#disqus_thread {
  padding: 32px;
  clear: both; }

.page-template-page-fullpage, .page-template-page-upgrade-membership {
  /* Alert Pages */ }
  .page-template-page-fullpage .hentry header, .page-template-page-upgrade-membership .hentry header {
    margin: 15px 0 0; }
    .page-template-page-fullpage .hentry header h1, .page-template-page-upgrade-membership .hentry header h1 {
      font-size: 36px; }
  .page-template-page-fullpage .hentry.post-3052 h6, .page-template-page-upgrade-membership .hentry.post-3052 h6 {
    font-size: 21px;
    margin: 45px 0 18px; }
  .page-template-page-fullpage .hentry.post-3256 p + h3, .page-template-page-upgrade-membership .hentry.post-3256 p + h3 {
    margin: 60px 0 20px; }
  .page-template-page-fullpage .hentry.post-3256 h3 + h6, .page-template-page-upgrade-membership .hentry.post-3256 h3 + h6 {
    margin: 32px 0 18px; }
  .page-template-page-fullpage .hentry.post-3256 h6, .page-template-page-upgrade-membership .hentry.post-3256 h6 {
    font-size: 21px;
    margin: 45px 0 18px; }
  .page-template-page-fullpage.page-terms-conditions .hentry .header-image, .page-template-page-upgrade-membership.page-terms-conditions .hentry .header-image {
    height: 275px; }
  .page-template-page-fullpage.page-advertisers .hentry .header-image, .page-template-page-upgrade-membership.page-advertisers .hentry .header-image {
    height: 310px;
    margin-bottom: -10px; }
  .page-template-page-fullpage.page-privacy-policy .hentry .header-image, .page-template-page-upgrade-membership.page-privacy-policy .hentry .header-image {
    height: 405px;
    margin-bottom: 0; }
  .page-template-page-fullpage.page-mu-app-version .hentry .header-image, .page-template-page-upgrade-membership.page-mu-app-version .hentry .header-image {
    height: 350px;
    margin-bottom: -10px; }
  .page-template-page-fullpage.page-about .hentry .header-image, .page-template-page-upgrade-membership.page-about .hentry .header-image {
    height: 325px; }
  .page-template-page-fullpage.page-account-cancelled .hentry header,
  .page-template-page-fullpage.page-membership-expired .hentry header,
  .page-template-page-fullpage.page-oops-this-content-is-members-only .hentry header,
  .page-template-page-fullpage.page-thanks-for-joining .hentry header,
  .page-template-page-fullpage.page-you-are-a-contributor .hentry header,
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry header, .page-template-page-upgrade-membership.page-account-cancelled .hentry header,
  .page-template-page-upgrade-membership.page-membership-expired .hentry header,
  .page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry header,
  .page-template-page-upgrade-membership.page-thanks-for-joining .hentry header,
  .page-template-page-upgrade-membership.page-you-are-a-contributor .hentry header,
  .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry header {
    margin-top: 0; }
    .page-template-page-fullpage.page-account-cancelled .hentry header h1,
    .page-template-page-fullpage.page-membership-expired .hentry header h1,
    .page-template-page-fullpage.page-oops-this-content-is-members-only .hentry header h1,
    .page-template-page-fullpage.page-thanks-for-joining .hentry header h1,
    .page-template-page-fullpage.page-you-are-a-contributor .hentry header h1,
    .page-template-page-fullpage.page-oops-wrong-membership-level .hentry header h1, .page-template-page-upgrade-membership.page-account-cancelled .hentry header h1,
    .page-template-page-upgrade-membership.page-membership-expired .hentry header h1,
    .page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry header h1,
    .page-template-page-upgrade-membership.page-thanks-for-joining .hentry header h1,
    .page-template-page-upgrade-membership.page-you-are-a-contributor .hentry header h1,
    .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry header h1 {
      font-size: 36px;
      line-height: 42px; }
  .page-template-page-fullpage.page-account-cancelled .hentry h4,
  .page-template-page-fullpage.page-membership-expired .hentry h4,
  .page-template-page-fullpage.page-oops-this-content-is-members-only .hentry h4,
  .page-template-page-fullpage.page-thanks-for-joining .hentry h4,
  .page-template-page-fullpage.page-you-are-a-contributor .hentry h4,
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry h4, .page-template-page-upgrade-membership.page-account-cancelled .hentry h4,
  .page-template-page-upgrade-membership.page-membership-expired .hentry h4,
  .page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry h4,
  .page-template-page-upgrade-membership.page-thanks-for-joining .hentry h4,
  .page-template-page-upgrade-membership.page-you-are-a-contributor .hentry h4,
  .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry h4 {
    line-height: 32px;
    font-size: 24px;
    font-weight: 400; }
  .page-template-page-fullpage.page-account-cancelled .hentry .entry-content p,
  .page-template-page-fullpage.page-membership-expired .hentry .entry-content p,
  .page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .entry-content p,
  .page-template-page-fullpage.page-thanks-for-joining .hentry .entry-content p,
  .page-template-page-fullpage.page-you-are-a-contributor .hentry .entry-content p,
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .entry-content p, .page-template-page-upgrade-membership.page-account-cancelled .hentry .entry-content p,
  .page-template-page-upgrade-membership.page-membership-expired .hentry .entry-content p,
  .page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .entry-content p,
  .page-template-page-upgrade-membership.page-thanks-for-joining .hentry .entry-content p,
  .page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .entry-content p,
  .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .entry-content p {
    font-size: 24px;
    line-height: 32px; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .entry-content h3, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .entry-content h3 {
    font-size: 28px;
    line-height: 36px; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans h4, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans h4 {
    font-size: 48px;
    padding-top: 100px;
    margin-bottom: 50px; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .popular, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .popular {
    font-size: 24px;
    width: 420px;
    left: 0;
    padding-top: 12px;
    padding-left: 0; }
    .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .popular:before, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .popular:after, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .popular:before, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .popular:after {
      display: none; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans ul, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans ul {
    margin: 0 auto;
    padding-bottom: 127px;
    width: 420px; }
    .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans ul li, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans ul li {
      margin-bottom: 45px;
      padding-bottom: 0; }
      .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans ul li a, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans ul li a {
        text-decoration: none;
        text-align: center;
        color: #fff; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .frequency, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .currency, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .price, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .sep, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .time, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .renew, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .reoccuring, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .free, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .signup, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .frequency, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .currency, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .price, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .sep, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .time, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .renew, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .reoccuring, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .free, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .signup {
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .frequency, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .frequency {
    font-size: 36px; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .currency, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .price, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .sep, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .time, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .currency, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .price, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .sep, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .time {
    font-size: 24px; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .renew, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .reoccuring, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .renew, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .reoccuring {
    font-size: 21px;
    margin-bottom: 8px;
    font-weight: 300; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .reoccuring, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .reoccuring {
    margin-bottom: 50px; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .free, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .free {
    width: 356px;
    font-size: 22px;
    margin-top: 22px; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .signup, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .signup {
    font-size: 28px;
    margin-top: 36px;
    width: 100%; }
  .page-template-page-fullpage .entry-content, .page-template-page-upgrade-membership .entry-content {
    padding: 40px 100px 75px; }
    .page-template-page-fullpage .entry-content h3, .page-template-page-upgrade-membership .entry-content h3 {
      font-size: 28px;
      line-height: 32px; }
    .page-template-page-fullpage .entry-content h5, .page-template-page-upgrade-membership .entry-content h5 {
      font-size: 24px;
      line-height: 24px; }
    .page-template-page-fullpage .entry-content h6, .page-template-page-upgrade-membership .entry-content h6 {
      font-size: 21px;
      line-height: 21px;
      margin: 46px 0 20px; }
    .page-template-page-fullpage .entry-content p, .page-template-page-fullpage .entry-content div, .page-template-page-fullpage .entry-content ul li, .page-template-page-fullpage .entry-content ol li, .page-template-page-upgrade-membership .entry-content p, .page-template-page-upgrade-membership .entry-content div, .page-template-page-upgrade-membership .entry-content ul li, .page-template-page-upgrade-membership .entry-content ol li {
      font-size: 18px;
      line-height: 24px; }
    .page-template-page-fullpage .entry-content p:first-child, .page-template-page-upgrade-membership .entry-content p:first-child {
      font-weight: 400; }
    .page-template-page-fullpage .entry-content ul li, .page-template-page-upgrade-membership .entry-content ul li {
      font-size: 18px;
      line-height: 24px; }
      .page-template-page-fullpage .entry-content ul li:before, .page-template-page-upgrade-membership .entry-content ul li:before {
        margin: -1px 20px 0 2px; }

/* Log in Page */
body.mu_login_form #main .page-title,
body.mu_password_lost_form #main .page-title,
body.mu_password_change_form #main .page-title,
body.mu_password_lost_reset_form #main .page-title,
body.mu_check_your_email #main .page-title,
body.mu_password_lost_reset_form #main .page-title {
  font-size: 36px;
  margin: 30px auto 0;
  width: 100%;
  line-height: 36px; }

body.mu_login_form #main .mu_form,
body.mu_password_lost_form #main .mu_form,
body.mu_password_change_form #main .mu_form,
body.mu_password_lost_reset_form #main .mu_form,
body.mu_check_your_email #main .mu_form,
body.mu_password_lost_reset_form #main .mu_form {
  margin: 80px auto 36px;
  width: 460px; }

body.mu_login_form #main .login-remember label, body.mu_login_form #main .login-submit, body.mu_login_form #main .forgot-password, body.mu_login_form #main .membership,
body.mu_password_lost_form #main .login-remember label,
body.mu_password_lost_form #main .login-submit,
body.mu_password_lost_form #main .forgot-password,
body.mu_password_lost_form #main .membership,
body.mu_password_change_form #main .login-remember label,
body.mu_password_change_form #main .login-submit,
body.mu_password_change_form #main .forgot-password,
body.mu_password_change_form #main .membership,
body.mu_password_lost_reset_form #main .login-remember label,
body.mu_password_lost_reset_form #main .login-submit,
body.mu_password_lost_reset_form #main .forgot-password,
body.mu_password_lost_reset_form #main .membership,
body.mu_check_your_email #main .login-remember label,
body.mu_check_your_email #main .login-submit,
body.mu_check_your_email #main .forgot-password,
body.mu_check_your_email #main .membership,
body.mu_password_lost_reset_form #main .login-remember label,
body.mu_password_lost_reset_form #main .login-submit,
body.mu_password_lost_reset_form #main .forgot-password,
body.mu_password_lost_reset_form #main .membership {
  font-size: 16px; }
  body.mu_login_form #main .login-remember label a, body.mu_login_form #main .login-submit a, body.mu_login_form #main .forgot-password a, body.mu_login_form #main .membership a,
  body.mu_password_lost_form #main .login-remember label a,
  body.mu_password_lost_form #main .login-submit a,
  body.mu_password_lost_form #main .forgot-password a,
  body.mu_password_lost_form #main .membership a,
  body.mu_password_change_form #main .login-remember label a,
  body.mu_password_change_form #main .login-submit a,
  body.mu_password_change_form #main .forgot-password a,
  body.mu_password_change_form #main .membership a,
  body.mu_password_lost_reset_form #main .login-remember label a,
  body.mu_password_lost_reset_form #main .login-submit a,
  body.mu_password_lost_reset_form #main .forgot-password a,
  body.mu_password_lost_reset_form #main .membership a,
  body.mu_check_your_email #main .login-remember label a,
  body.mu_check_your_email #main .login-submit a,
  body.mu_check_your_email #main .forgot-password a,
  body.mu_check_your_email #main .membership a,
  body.mu_password_lost_reset_form #main .login-remember label a,
  body.mu_password_lost_reset_form #main .login-submit a,
  body.mu_password_lost_reset_form #main .forgot-password a,
  body.mu_password_lost_reset_form #main .membership a {
    font-size: 16px; }

body.mu_login_form #main .login-password,
body.mu_password_lost_form #main .login-password,
body.mu_password_change_form #main .login-password,
body.mu_password_lost_reset_form #main .login-password,
body.mu_check_your_email #main .login-password,
body.mu_password_lost_reset_form #main .login-password {
  margin-bottom: 0; }

body.mu_login_form #main .login-remember,
body.mu_password_lost_form #main .login-remember,
body.mu_password_change_form #main .login-remember,
body.mu_password_lost_reset_form #main .login-remember,
body.mu_check_your_email #main .login-remember,
body.mu_password_lost_reset_form #main .login-remember {
  text-align: left;
  margin-top: 0;
  float: left; }

body.mu_login_form #main .submit,
body.mu_password_lost_form #main .submit,
body.mu_password_change_form #main .submit,
body.mu_password_lost_reset_form #main .submit,
body.mu_check_your_email #main .submit,
body.mu_password_lost_reset_form #main .submit {
  margin-top: 55px; }

body.mu_login_form #main .forgot-password,
body.mu_password_lost_form #main .forgot-password,
body.mu_password_change_form #main .forgot-password,
body.mu_password_lost_reset_form #main .forgot-password,
body.mu_check_your_email #main .forgot-password,
body.mu_password_lost_reset_form #main .forgot-password {
  width: auto;
  margin: 0 auto;
  float: right; }
  body.mu_login_form #main .forgot-password a,
  body.mu_password_lost_form #main .forgot-password a,
  body.mu_password_change_form #main .forgot-password a,
  body.mu_password_lost_reset_form #main .forgot-password a,
  body.mu_check_your_email #main .forgot-password a,
  body.mu_password_lost_reset_form #main .forgot-password a {
    text-align: right; }

body.mu_login_form #main .membership,
body.mu_password_lost_form #main .membership,
body.mu_password_change_form #main .membership,
body.mu_password_lost_reset_form #main .membership,
body.mu_check_your_email #main .membership,
body.mu_password_lost_reset_form #main .membership {
  margin-top: 0px;
  margin-bottom: 70px; }
  body.mu_login_form #main .membership a,
  body.mu_password_lost_form #main .membership a,
  body.mu_password_change_form #main .membership a,
  body.mu_password_lost_reset_form #main .membership a,
  body.mu_check_your_email #main .membership a,
  body.mu_password_lost_reset_form #main .membership a {
    display: inline-block; }

body.mu_password_lost_form #main .page-title,
body.mu_password_change_form #main .page-title,
body.mu_password_lost_reset_form #main .page-title,
body.mu_check_your_email #main .page-title {
  width: inherit; }

body.mu_password_lost_form #main .lost_password_intro, body.mu_password_lost_form #main .change_password_intro, body.mu_password_lost_form #main .check_your_email_notice,
body.mu_password_change_form #main .lost_password_intro,
body.mu_password_change_form #main .change_password_intro,
body.mu_password_change_form #main .check_your_email_notice,
body.mu_password_lost_reset_form #main .lost_password_intro,
body.mu_password_lost_reset_form #main .change_password_intro,
body.mu_password_lost_reset_form #main .check_your_email_notice,
body.mu_check_your_email #main .lost_password_intro,
body.mu_check_your_email #main .change_password_intro,
body.mu_check_your_email #main .check_your_email_notice {
  font-size: 21px;
  line-height: 25px;
  letter-spacing: 1px;
  font-weight: 300; }
  body.mu_password_lost_form #main .lost_password_intro b, body.mu_password_lost_form #main .change_password_intro b, body.mu_password_lost_form #main .check_your_email_notice b,
  body.mu_password_change_form #main .lost_password_intro b,
  body.mu_password_change_form #main .change_password_intro b,
  body.mu_password_change_form #main .check_your_email_notice b,
  body.mu_password_lost_reset_form #main .lost_password_intro b,
  body.mu_password_lost_reset_form #main .change_password_intro b,
  body.mu_password_lost_reset_form #main .check_your_email_notice b,
  body.mu_check_your_email #main .lost_password_intro b,
  body.mu_check_your_email #main .change_password_intro b,
  body.mu_check_your_email #main .check_your_email_notice b {
    color: #1A1A1A;
    font-weight: 600; }

body.mu_password_lost_form #main .mu_form,
body.mu_password_change_form #main .mu_form,
body.mu_password_lost_reset_form #main .mu_form,
body.mu_check_your_email #main .mu_form {
  margin-top: 40px; }

body.mu_password_lost_form #main .submit,
body.mu_password_change_form #main .submit,
body.mu_password_lost_reset_form #main .submit,
body.mu_check_your_email #main .submit {
  margin-top: 20px; }

body.mu_password_lost_form #main .email,
body.mu_password_change_form #main .email,
body.mu_password_lost_reset_form #main .email,
body.mu_check_your_email #main .email {
  font-size: 28px;
  margin: 60px 0; }

/* Dashboard*/
#content.dashboard, #content.faq {
  padding-top: 70px; }
  #content.dashboard .entry-content, #content.faq .entry-content {
    padding: 8px 18px; }
  #content.dashboard .article-header, #content.faq .article-header {
    min-height: 0;
    background: #F2E6FF;
    padding-top: 36px;
    position: relative; }
    #content.dashboard .article-header:after, #content.faq .article-header:after {
      display: block;
      content: "";
      width: 100vw;
      height: 245px;
      background: #F2E6FF;
      position: absolute;
      bottom: -65;
      left: 0;
      z-index: -1; }
    #content.dashboard .article-header .welcome-notice, #content.faq .article-header .welcome-notice {
      padding: 0 20px;
      font-size: 18px;
      line-height: 70px;
      margin: 0 0 36px 18px;
      padding-right: 40px;
      width: calc(100% - 18px);
      height: 70px; }
      #content.dashboard .article-header .welcome-notice .close, #content.faq .article-header .welcome-notice .close {
        top: 0;
        right: 8px; }
        #content.dashboard .article-header .welcome-notice .close:after, #content.faq .article-header .welcome-notice .close:after {
          width: 48px;
          height: 48px;
          margin-top: -2px;
          font-size: 20px;
          padding: 16px 0 16px 1px; }
    #content.dashboard .article-header .container, #content.faq .article-header .container {
      padding: 0 36px;
      position: relative; }
    #content.dashboard .article-header h5, #content.faq .article-header h5 {
      font-size: 21px;
      margin: 0;
      line-height: 21px; }
    #content.dashboard .article-header p, #content.faq .article-header p {
      font-size: 16px;
      color: #666666;
      letter-spacing: 1px;
      font-weight: 300;
      margin: 0; }
    #content.dashboard .article-header .settings, #content.dashboard .article-header .logout, #content.faq .article-header .settings, #content.faq .article-header .logout {
      display: none; }
  #content.dashboard .entry-content > p:first-child, #content.faq .entry-content > p:first-child {
    padding: 0 18px; }
    #content.dashboard .entry-content > p:first-child strong, #content.faq .entry-content > p:first-child strong {
      font-weight: normal;
      color: #666666;
      font-size: 16px;
      line-height: 21px; }
      #content.dashboard .entry-content > p:first-child strong:nth-child(2), #content.faq .entry-content > p:first-child strong:nth-child(2) {
        display: none; }
      #content.dashboard .entry-content > p:first-child strong span, #content.faq .entry-content > p:first-child strong span {
        display: block;
        color: #1A1A1A; }
  #content.dashboard .links, #content.faq .links {
    font-size: 18px;
    margin: 0;
    color: #1A1A1A;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
    font-size: 400;
    width: 100%;
    margin-bottom: 25px; }
    #content.dashboard .links:nth-of-type(2):before, #content.faq .links:nth-of-type(2):before {
      margin: 40px 0 40px; }
    #content.dashboard .links span, #content.faq .links span {
      text-align: left;
      margin-bottom: 2px;
      font-size: 21px; }
    #content.dashboard .links input, #content.faq .links input {
      font-size: 18px;
      background: rgba(144, 99, 214, 0.08);
      text-align: left;
      margin-bottom: 6px;
      padding: 14px 8px 14px 16px;
      margin-left: -4px;
      width: calc(100% - 103px); }
    #content.dashboard .links .copy-btn, #content.faq .links .copy-btn {
      width: 103px;
      height: 46px;
      font-size: 20px;
      margin-top: -5px; }
  #content.dashboard .itunes-button, #content.faq .itunes-button {
    display: inline-block;
    margin: 16px 0 0; }
    #content.dashboard .itunes-button span, #content.faq .itunes-button span {
      font-size: 43px;
      line-height: 22px;
      margin: 4px auto;
      vertical-align: middle; }
  #content.dashboard .links + span, #content.faq .links + span {
    display: inline;
    vertical-align: -5px;
    padding-right: 20px; }
  #content.dashboard .itunes-button + span, #content.faq .itunes-button + span {
    margin: 0 20px; }
  #content.dashboard .help-me, #content.faq .help-me {
    height: 78px;
    line-height: 78px;
    width: 195px;
    margin: 70px auto 60px;
    font-size: 18px; }
  #content.dashboard h4, #content.faq h4 {
    margin: 0;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 36px; }
    #content.dashboard h4 a, #content.faq h4 a {
      color: #1A1A1A; }
  #content.dashboard .left, #content.faq .left {
    position: relative; }
    #content.dashboard .left h4 a:after, #content.faq .left h4 a:after {
      display: inline-block;
      content: "( Extended Episodes )";
      color: #808080;
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 0;
      padding-left: 5px; }
  #content.dashboard .right, #content.faq .right {
    position: relative; }
    #content.dashboard .right h4, #content.faq .right h4 {
      padding-top: 50px;
      margin-bottom: 20px; }
  #content.dashboard .left, #content.dashboard .right, #content.faq .left, #content.faq .right {
    clear: both; }
    #content.dashboard .left h5, #content.dashboard .right h5, #content.faq .left h5, #content.faq .right h5 {
      font-size: 13px;
      top: -21px; }
  #content.dashboard h4 + .episodes, #content.faq h4 + .episodes {
    margin: 0;
    width: 100%; }
    #content.dashboard h4 + .episodes ul, #content.faq h4 + .episodes ul {
      margin: 0; }
    #content.dashboard h4 + .episodes li, #content.faq h4 + .episodes li {
      float: left;
      width: 100%;
      padding: 0 0 0 0;
      height: 75px;
      line-height: 75px;
      margin: 0;
      position: relative; }
      #content.dashboard h4 + .episodes li:before, #content.dashboard h4 + .episodes li:after, #content.faq h4 + .episodes li:before, #content.faq h4 + .episodes li:after {
        width: calc(100% + 16px *2);
        left: -16px; }
      #content.dashboard h4 + .episodes li p, #content.faq h4 + .episodes li p {
        float: left;
        font-size: 18px;
        margin: 0;
        line-height: inherit; }
        #content.dashboard h4 + .episodes li p .title, #content.faq h4 + .episodes li p .title {
          display: inline-block;
          margin-left: 36px; }
        #content.dashboard h4 + .episodes li p .number, #content.dashboard h4 + .episodes li p .title, #content.faq h4 + .episodes li p .number, #content.faq h4 + .episodes li p .title {
          font-weight: 400; }
      #content.dashboard h4 + .episodes li .view-button:after, #content.dashboard h4 + .episodes li .download-button:after, #content.faq h4 + .episodes li .view-button:after, #content.faq h4 + .episodes li .download-button:after {
        width: 56px;
        height: 42px; }

#content.faq .hentry header h1 {
  font-size: 36px;
  padding: 0 0 36px;
  font-weight: 500; }

#content.faq .ufaq-faq-list {
  margin: 0 auto;
  max-width: 600px; }

#content.faq .ufaq-faq-category {
  margin-bottom: 42px; }

#content.faq .ufaq-faq-div {
  margin: -10px 0 0; }

#content.faq .ufaq-faq-category-title h4 {
  font-size: 24px;
  margin-bottom: 23px; }

#content.faq .ufaq-faq-title-text h4 {
  font-size: 21px;
  width: 100%;
  font-weight: 400;
  margin: 0 !important; }

#content.faq .ufaq-faq-body p {
  font-size: 18px;
  line-height: 21px; }

#content.faq .ufaq-faq-body .size-full, #content.faq .ufaq-faq-body .size-large {
  max-width: 100%;
  margin-left: 0;
  width: auto; }

#content.faq .help {
  margin-bottom: 118px; }
  #content.faq .help h4 {
    font-size: 24px; }

#content.faq #tab-content6 {
  top: 30px; }

#content.faq #ufaq-ajax-results {
  min-height: 360px; }
  #content.faq #ufaq-ajax-results:after {
    top: 110px; }

.entry-content .mu-tabs {
  margin: 48px 0 0; }
  .entry-content .mu-tabs:before {
    display: block;
    content: "";
    width: 100%;
    background: #fff;
    height: 68px;
    z-index: -1;
    position: absolute; }
  .entry-content .mu-tabs:after {
    display: block;
    content: "";
    width: 200vw;
    left: -100vw;
    background: #fff;
    height: 200px;
    z-index: -1;
    position: absolute;
    top: 54px; }
  .entry-content .mu-tabs li {
    float: left;
    display: block; }
  .entry-content .mu-tabs input[type="radio"] {
    position: absolute;
    top: 0;
    left: -9999px; }
  .entry-content .mu-tabs label {
    padding: 22px 0 0 0;
    margin-right: 32px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    height: 43px; }
    .entry-content .mu-tabs label:active:before, .entry-content .mu-tabs label:hover:before {
      width: calc(100%);
      height: 1px;
      bottom: -5px;
      margin: 0; }
  .entry-content .mu-tabs .tab-content {
    z-index: 2;
    display: none;
    overflow: visible;
    width: 100%;
    font-size: 17px;
    line-height: 25px;
    padding: 32px 20px;
    position: absolute;
    top: 68px;
    left: 0;
    background: #fff; }
  .entry-content .mu-tabs [id^="tab"]:checked + label {
    color: #45318C;
    position: relative; }
    .entry-content .mu-tabs [id^="tab"]:checked + label:before {
      width: calc(100%);
      height: 1px;
      bottom: -5px;
      margin: 0; }
  .entry-content .mu-tabs [id^="tab"]:checked ~ [id^="tab-content"] {
    display: block; }

#content.dashboard .entry-content .mu-tabs #tab-content1 {
  top: 50px; }

#content.dashboard .entry-content .mu-tabs #tab-content2, #content.dashboard .entry-content .mu-tabs #tab-content3 {
  padding-top: 20px; }

#content.dashboard .entry-content .mu-tabs label, #content.dashboard .entry-content .mu-tabs [id^="tab"]:checked + label {
  white-space: nowrap;
  font-size: 18px;
  margin-right: 22px; }
  #content.dashboard .entry-content .mu-tabs label:before, #content.dashboard .entry-content .mu-tabs [id^="tab"]:checked + label:before {
    bottom: -5px; }
  #content.dashboard .entry-content .mu-tabs label:after, #content.dashboard .entry-content .mu-tabs [id^="tab"]:checked + label:after {
    display: none; }

#content.dashboard .entry-content .mu-tabs #tab1 + label {
  margin-left: 18px; }

#content.dashboard .entry-content .mu-tabs #tab1 + label, #content.dashboard .entry-content .mu-tabs #tab2 + label, #content.dashboard .entry-content .mu-tabs #tab3 + label {
  font-size: 18px;
  width: auto; }

#content.dashboard .entry-content .mu-tabs #tab3 + label {
  margin-right: 0; }

#content.faq .entry-content .mu-tabs {
  margin-top: 0; }
  #content.faq .entry-content .mu-tabs > li:nth-of-type(1) label {
    top: 0; }
  #content.faq .entry-content .mu-tabs > li:nth-of-type(2) label {
    left: 16.66%; }
  #content.faq .entry-content .mu-tabs > li:nth-of-type(3) label {
    left: 33.33%; }
  #content.faq .entry-content .mu-tabs > li:nth-of-type(4) label {
    left: 49.98%; }
  #content.faq .entry-content .mu-tabs > li:nth-of-type(5) label {
    left: 66.66%; }
  #content.faq .entry-content .mu-tabs > li:nth-of-type(6) label {
    left: 83.33%; }
  #content.faq .entry-content .mu-tabs > li:nth-of-type(n+3) label, #content.faq .entry-content .mu-tabs > li:nth-of-type(n+4) label {
    top: 0; }
  #content.faq .entry-content .mu-tabs label {
    width: 16.66%;
    padding-top: 0;
    margin-top: -4px; }
  #content.faq .entry-content .mu-tabs .tab-content {
    padding-top: 106px; }

/* Plus */
.page-plus #main:before {
  background-image: url("../images/plus/top-graphic-640-320.png");
  top: -6px;
  left: 0; }

.page-plus .hentry {
  padding-top: 345px; }
  .page-plus .hentry h1, .page-plus .hentry h2, .page-plus .hentry h3, .page-plus .hentry h4, .page-plus .hentry h5, .page-plus .hentry h6 {
    padding: 0 12px; }
  .page-plus .hentry h1 {
    font-size: 54px;
    margin-bottom: 10px; }
  .page-plus .hentry h2 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 300;
    margin: 0 auto 18px;
    max-width: 550px; }
    .page-plus .hentry h2:nth-of-type(2) {
      font-size: 30px;
      line-height: 38px; }
  .page-plus .hentry h4 {
    font-size: 48px;
    line-height: 50px; }
  .page-plus .hentry h5 {
    font-size: 36px; }
  .page-plus .hentry p {
    font-size: 21px;
    line-height: 25px;
    padding: 0 10%; }

.page-plus .included {
  margin-top: 76px; }

.page-plus .included .row h5 {
  line-height: 56px; }

.page-plus .included .row .image-retina {
  width: 400px;
  left: calc(50% - 70px); }

.page-plus .devices {
  margin-top: 136px;
  padding: 0 calc((100vw - 445px) / 2); }
  .page-plus .devices h4 {
    margin: 0 auto 130px;
    width: 385px; }
  .page-plus .devices .ios, .page-plus .devices .android {
    height: 210px;
    padding-top: 182px; }
  .page-plus .devices .laptop {
    height: 216px;
    margin: 200px 0 200px;
    padding-top: 180px; }
    .page-plus .devices .laptop .image {
      background-size: 855px auto;
      right: calc(50% - 255px); }
  .page-plus .devices .image {
    background: transparent url("") no-repeat scroll right bottom/655px auto;
    right: calc(50% - 74px);
    bottom: -20px; }
  .page-plus .devices h6 {
    font-size: 36px;
    margin: 80px 0 13px; }
  .page-plus .devices p {
    margin-top: -4px;
    padding: 0;
    margin-bottom: 17px;
    font-size: 18px; }
  .page-plus .devices .button {
    width: 173px;
    height: 50px; }
    .page-plus .devices .button span:before {
      font-size: 34px;
      line-height: 51px; }
  .page-plus .devices .laptop {
    margin: 130px 0 220px; }

.page-plus .testimonials {
  height: 490px; }
  .page-plus .testimonials .slides {
    padding: 0 30px;
    margin-top: 20px; }
    .page-plus .testimonials .slides:before, .page-plus .testimonials .slides:after {
      font-size: 62px;
      width: 48px;
      height: 94px;
      top: 24px; }
    .page-plus .testimonials .slides:before {
      left: 15px; }
    .page-plus .testimonials .slides:after {
      right: 15px;
      top: -46px; }
    .page-plus .testimonials .slides p {
      font-size: 18px;
      margin-top: 0;
      padding: 0 50px; }
    .page-plus .testimonials .slides .author {
      font-size: 24px;
      letter-spacing: 2px; }
  .page-plus .testimonials .flex-control-nav {
    bottom: 120px; }

.page-plus .plans h4 {
  font-size: 48px;
  padding-top: 100px;
  margin-bottom: 50px; }

.page-plus .plans .popular {
  font-size: 24px;
  width: 420px;
  left: 0;
  padding-top: 12px;
  padding-left: 0; }
  .page-plus .plans .popular:before, .page-plus .plans .popular:after {
    display: none; }

.page-plus .plans ul {
  margin: 0 auto;
  padding-bottom: 127px;
  width: 420px; }
  .page-plus .plans ul li {
    margin-bottom: 45px;
    padding-bottom: 0; }
    .page-plus .plans ul li a {
      text-decoration: none;
      text-align: center;
      color: #fff; }

.page-plus .plans .frequency, .page-plus .plans .currency, .page-plus .plans .price, .page-plus .plans .sep, .page-plus .plans .time, .page-plus .plans .renew, .page-plus .plans .reoccuring, .page-plus .plans .free, .page-plus .plans .signup {
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px; }

.page-plus .plans .frequency {
  font-size: 36px; }

.page-plus .plans .currency, .page-plus .plans .price, .page-plus .plans .sep, .page-plus .plans .time {
  font-size: 24px; }

.page-plus .plans .renew, .page-plus .plans .reoccuring {
  font-size: 21px;
  margin-bottom: 8px;
  font-weight: 300; }

.page-plus .plans .reoccuring {
  margin-bottom: 50px; }

.page-plus .plans .free {
  width: 356px;
  font-size: 22px;
  margin-top: 22px; }

.page-plus .plans .signup {
  font-size: 28px;
  margin-top: 36px;
  width: 100%; }

.page-template-page-mu-plus-plans #main:before {
  top: 12px; }

.page-template-page-mu-plus-plans #main:after {
  background-size: auto;
  right: 15px;
  top: 18px; }

.page-template-page-mu-plus-plans #main h1 {
  font-size: 48px;
  line-height: 52px;
  width: 100%;
  margin: 180px auto 14px; }

.page-template-page-mu-plus-plans.page-plan-one form.paypal-form:nth-of-type(1) {
  position: relative;
  bottom: auto;
  margin-top: 20px;
  left: auto; }

.page-template-page-mu-plus-plans .article-header .popular {
  font-size: 24px;
  margin: -14px auto 18px;
  height: 55px;
  line-height: 55px;
  width: 340px;
  padding-top: 4px; }

.page-template-page-mu-plus-plans .entry-content {
  padding: 0 0 150px;
  min-height: 303px; }

.page-template-page-mu-plus-plans .currency, .page-template-page-mu-plus-plans .price, .page-template-page-mu-plus-plans .sep, .page-template-page-mu-plus-plans .time {
  font-size: 28px;
  line-height: 48px;
  margin: 0 auto 26px; }

.page-template-page-mu-plus-plans .free {
  height: 55px;
  font-size: 21px;
  line-height: 55px; }
  .page-template-page-mu-plus-plans .free:before {
    width: 420px;
    left: calc(35px + (100vw - 585px) / 2); }
  .page-template-page-mu-plus-plans .free:after {
    width: 12px;
    -webkit-transform: skew(-190deg);
    -ms-transform: skew(-190deg);
    transform: skew(-190deg);
    left: calc( 420px + (100vw - 585px) / 2 + 23px); }

.page-template-page-mu-plus-plans h4 {
  font-size: 21px;
  margin: 30px 0 50px; }

.page-template-page-mu-plus-plans .paypal-form {
  padding: 0 50px 26px;
  background: rgba(255, 255, 255, 0.08);
  width: 416px;
  margin: 0 auto; }
  .page-template-page-mu-plus-plans .paypal-form:nth-of-type(1) {
    margin-top: 20px; }
  .page-template-page-mu-plus-plans .paypal-form + p {
    height: 80px;
    line-height: 80px; }
  .page-template-page-mu-plus-plans .paypal-form .container {
    height: 60px;
    margin-top: 98px;
    width: 316px; }
    .page-template-page-mu-plus-plans .paypal-form .container input {
      height: 60px; }
    .page-template-page-mu-plus-plans .paypal-form .container:before {
      width: 316px;
      left: 0; }
    .page-template-page-mu-plus-plans .paypal-form .container:after {
      line-height: 60px;
      top: 0;
      left: 0;
      width: 316px;
      height: 60px; }

.page-template-page-mu-plus-plans .type {
  font-size: 28px;
  padding: 40px 0 20px; }

.page-template-page-mu-plus-plans .desc {
  font-size: 21px;
  line-height: 25px; }
  .page-template-page-mu-plus-plans .desc strong {
    font-weight: 400; }

.page-app #main {
  padding-bottom: 125px; }
  .page-app #main h1 {
    font-size: 72px;
    line-height: 42px;
    margin: 55px auto 0;
    padding: 32px 0 5px; }
  .page-app #main h4 {
    font-size: 54px; }
  .page-app #main h5 {
    font-size: 28px; }
  .page-app #main p {
    font-size: 24px;
    line-height: 32px; }
  .page-app #main .phone {
    height: 737px;
    margin-top: 75px; }
    .page-app #main .phone .image {
      height: 200vh;
      background: transparent url("../images/app/phone-640.png") no-repeat scroll left bottom/auto;
      left: calc(50% - 181px); }
  .page-app #main .features h4 {
    margin: 120px 0 78px; }
  .page-app #main .features .row {
    padding-top: 125px;
    padding: 125px 12px 50px; }
    .page-app #main .features .row h5 {
      margin: 26px 0 4px; }
    .page-app #main .features .row .image-retina {
      top: calc(118px - 100vh);
      background-size: 378px auto;
      left: calc(50% - 57px); }
    .page-app #main .features .row p {
      font-size: 21px;
      line-height: 25px;
      max-width: 446px;
      display: inline-block;
      margin: 0 auto; }
  .page-app #main .available h4 {
    font-size: 36px;
    margin-top: 55px;
    margin-bottom: 52px; }
  .page-app #main .available .button {
    width: 354px;
    height: 104px;
    margin-bottom: 26px; }
    .page-app #main .available .button span:before {
      font-size: 80px;
      line-height: 107px; }
  .page-app #main .available .android .button span:before {
    font-size: 72px; }
  .page-app #main .version-notes {
    margin-top: 45px; }
    .page-app #main .version-notes a {
      font-size: 18px; }

/* CONTACT PAGE */
.page-contact-us .hentry header {
  margin-top: 26px; }
  .page-contact-us .hentry header h1 {
    padding-bottom: 50px; }

.page-contact-us .entry-content .contact-form-intro {
  width: 100vw;
  left: calc((100% - 100vw) / 2);
  position: relative;
  padding: 30px 32px; }
  .page-contact-us .entry-content .contact-form-intro p {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px; }

.page-contact-us .entry-content .gform_body, .page-contact-us .entry-content .gform_footer {
  width: 468px;
  margin: 0 auto;
  padding: 0; }

.page-contact-us .entry-content .gform_body {
  margin-top: 30px; }

.page-contact-us .entry-content .gform_footer {
  margin-top: 4px; }

/* 404 */
.error404 #inner-content:before {
  display: none; }

.error404 .hentry header h1 {
  font-size: 242px;
  line-height: 166px;
  letter-spacing: 27px; }

.error404 .hentry section h4 {
  margin-bottom: 35px; }

.error404 .hentry section .image {
  height: 130px;
  margin-bottom: 50px;
  background-image: url("../images/404/aliens-1000-585.png"); }

.error404 .hentry section p {
  font-size: 24px;
  line-height: 28px;
  width: 425px;
  margin: 0 auto;
  letter-spacing: 2px;
  font-weight: 200; }

.error404 .hentry .search {
  width: 400px;
  margin: 42px auto 100px; }

.error404 .hentry #searchform {
  margin: 30px auto 80px; }
  .error404 .hentry #searchform > div {
    max-width: 390px; }

/*********************
SIDEBARS & ASIDES
*********************/
.home-320-area-2-sidebar {
  display: none !important; }

.home-585-area-1-sidebar {
  display: block !important; }

.home-320-area-3-sidebar {
  padding: 0 18px; }

.widgettitle {
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding: 0; }

.widget ul {
  margin-top: 0; }
  .widget ul li {
    /* deep nesting */ }
    .widget ul li a {
      color: #1A1A1A; }

.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em; }

.widget_join_plus {
  margin-bottom: 64px;
  width: 100vw; }
  .widget_join_plus .content {
    height: 207px; }
  .widget_join_plus .text {
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 1px;
    width: calc(100vw - 222px - 72px);
    margin: 0 36px;
    position: absolute;
    top: 34px;
    right: 0; }
  .widget_join_plus .button {
    width: calc(100vw - 222px - 72px);
    bottom: 34px;
    right: 0; }
    .widget_join_plus .button a {
      font-size: 20px; }

.sidebar2 {
  margin: 0 0 20px; }

.sidebar2 .widget_join_plus .content {
  background-position: 0px -38px; }

.widget_recent_posts_with_thumbs ul li h5 {
  font-size: 24px;
  line-height: 30px;
  margin: 8px 0 36px; }

.widget_related_posts {
  padding: 30px 32px 0; }
  .widget_related_posts ul li:first-child h5 {
    font-size: 24px;
    line-height: 30px; }
  .widget_related_posts ul li:first-child .thumb {
    margin-right: 0;
    padding-bottom: 5px;
    width: 100%; }
    .widget_related_posts ul li:first-child .thumb a {
      height: calc( (100vw - 64px ) * 540 / 999); }
    .widget_related_posts ul li:first-child .thumb img {
      width: 100%;
      height: auto;
      margin-bottom: 0; }
  .widget_related_posts ul li .thumb {
    margin-right: 8px;
    width: 140px; }
    .widget_related_posts ul li .thumb a {
      height: calc( 140px * 540 / 999); }
    .widget_related_posts ul li .thumb img {
      width: 140px; }
  .widget_related_posts ul li h5 {
    font-size: 21px;
    line-height: 25px;
    width: calc(100% - 160px);
    min-height: 40px; }

/* Google Ads */
.home-585-area-1-sidebar, .home-585-area-3-sidebar {
  clear: both; }
  .home-585-area-1-sidebar .widget, .home-585-area-3-sidebar .widget {
    background: #F1EEFF;
    padding: 40px 0;
    margin: 0 0 25px;
    position: relative;
    height: 140px;
    text-align: center; }
    .home-585-area-1-sidebar .widget:before, .home-585-area-1-sidebar .widget:after, .home-585-area-3-sidebar .widget:before, .home-585-area-3-sidebar .widget:after {
      content: "";
      display: block;
      background: #F1EEFF;
      position: absolute;
      top: 0;
      height: 140px;
      width: 36px; }
    .home-585-area-1-sidebar .widget:before, .home-585-area-3-sidebar .widget:before {
      left: -36px; }
    .home-585-area-1-sidebar .widget:after, .home-585-area-3-sidebar .widget:after {
      right: -36px; }

.home-585-area-3-sidebar .widget {
  height: 689px; }
  .home-585-area-3-sidebar .widget:before, .home-585-area-3-sidebar .widget:after {
    height: 689px; }

.mu-banner-ad.home-after-cover, .mu-banner-ad.archive-after-header {
  margin: -2px 0 0; }

.entry-content div[id|="div-gpt-ad"] {
  margin: 30px 0 30px -32px; }

/*********************
FOOTER STYLES
*********************/
.footer {
  background: #ff002c;
  background: -moz-linear-gradient(-45deg, #ff002c 0%, #380091 59%, #160036 100%);
  background: -webkit-gradient(left top, right bottom, color-stop(0%, #ff002c), color-stop(59%, #380091), color-stop(100%, #160036));
  background: -webkit-linear-gradient(-45deg, #ff002c 0%, #380091 59%, #160036 100%);
  background: -o-linear-gradient(-45deg, #ff002c 0%, #380091 59%, #160036 100%);
  background: -ms-linear-gradient(-45deg, #ff002c 0%, #380091 59%, #160036 100%);
  background: linear-gradient(135deg, #ff002c 0%, #380091 59%, #160036 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff002c', endColorstr='#160036', GradientType=1 ); }
  .footer #inner-footer {
    padding: 16px 0 0; }
  .footer .block.left {
    width: 50%;
    padding-left: 32px;
    float: left; }
    .footer .block.left h3 {
      text-align: left; }
  .footer h3, .footer h5 {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 20px; }
  .footer nav {
    text-align: left; }
    .footer nav a {
      font-size: 18px;
      margin-bottom: 5px; }
  .footer .socials {
    position: absolute;
    bottom: 24px;
    right: 30px;
    z-index: 1; }
    .footer .socials a {
      width: 40px;
      height: 40px;
      margin: 0 8px; }
      .footer .socials a span {
        font-size: 33px; }
    .footer .socials a.twitter-link span {
      font-size: 38px; }
  .footer .callus {
    margin-top: 27px;
    width: 50%;
    float: right;
    padding-right: 16px; }
    .footer .callus h3.short {
      display: block;
      font-size: 21px; }
    .footer .callus h3.long {
      display: none; }
    .footer .callus .call {
      margin: 25px auto;
      width: 220px; }
      .footer .callus .call ul li {
        display: block;
        text-align: left; }
        .footer .callus .call ul li .id {
          font-size: 18px; }
        .footer .callus .call ul li .or {
          text-align: center;
          top: 0;
          width: 100%;
          margin: 15px 0; }
          .footer .callus .call ul li .or .title {
            font-size: 16px; }
        .footer .callus .call ul li .voicemail, .footer .callus .call ul li .skype {
          display: inline-block;
          position: relative;
          padding-left: 65px; }
          .footer .callus .call ul li .voicemail span, .footer .callus .call ul li .skype span {
            text-align: left;
            display: inline-block;
            position: absolute;
            left: 0;
            top: 4px; }
  .footer .buy {
    max-width: none;
    clear: both;
    padding: 50px 0 20px;
    position: relative;
    margin: 36px 25px 45px; }
    .footer .buy h5 {
      width: 100%;
      text-align: left;
      margin-left: 8px; }
    .footer .buy h6 {
      width: calc(100% - 155px);
      font-size: 18px;
      line-height: 24px; }
      .footer .buy h6 img {
        float: left;
        margin-right: 16px;
        width: 178px; }
    .footer .buy p {
      font-size: 18px;
      line-height: 24px;
      width: calc(100% - 155px); }
    .footer .buy .price {
      width: 149px;
      position: absolute;
      right: 0;
      top: 110px; }
      .footer .buy .price span, .footer .buy .price a {
        display: block;
        height: 53px;
        line-height: 53px; }
      .footer .buy .price span {
        float: none;
        height: 69px;
        width: 100%;
        font-size: 30px;
        line-height: 69px; }
      .footer .buy .price a {
        width: 100%;
        float: none;
        font-size: 18px;
        font-weight: 600; }
  .footer .copyright {
    font-size: 16px;
    line-height: 24px;
    padding: 27px 180px 0 32px;
    height: 98px; }

/*
	if you checked out the link above:
	http://www.alistapart.com/articles/organizing-mobile/
	you'll want to style the footer nav
	a bit more in-depth. Remember to keep
	it simple because you'll have to
	override these styles for the desktop
	view.
	*/
/* end .footer-links */
.hentry > a > .image {
  height: calc(((100vw - 18px * 2 - 324px) - 24px) * 187 / 351); }

/*********************
SIDEBARS & ASIDES
*********************/
.home-1000-area-1-sidebar {
  display: block !important; }

.home-1000-area-2-sidebar {
  display: block !important; }

.home-1000-area-3-sidebar {
  display: block !important; }

.home-1000-area-4-sidebar {
  display: block !important; }

.home-1000-area-5-sidebar {
  display: block !important; }

.sidebar .widget_join_plus {
  margin-bottom: 32px;
  width: 100%;
  padding: 0 28px; }
  .sidebar .widget_join_plus .content {
    height: 377px;
    width: 100%;
    position: relative; }
  .sidebar .widget_join_plus .text {
    font-size: 23px;
    line-height: 23px;
    width: 100%;
    margin: 0;
    top: auto;
    bottom: 110px;
    text-align: left; }
  .sidebar .widget_join_plus .button {
    width: 100%;
    margin: 0 28px;
    bottom: 28px;
    right: -28px;
    height: 62px; }
    .sidebar .widget_join_plus .button a {
      line-height: 62px; }

.widget_recent_posts_with_thumbs {
  margin-top: 80px;
  padding: 0; }
  .widget_recent_posts_with_thumbs .widgettitle {
    margin-bottom: 22px;
    font-weight: 600; }
  .widget_recent_posts_with_thumbs ul {
    margin-bottom: 100px; }
    .widget_recent_posts_with_thumbs ul li {
      min-height: 75px;
      width: 100%; }
      .widget_recent_posts_with_thumbs ul li:first-child {
        width: 100%; }
        .widget_recent_posts_with_thumbs ul li:first-child h5 {
          font-size: 21px;
          line-height: 24px;
          margin: 0 0 35px;
          width: 100%; }
          .widget_recent_posts_with_thumbs ul li:first-child h5 a {
            font-weight: 600; }
        .widget_recent_posts_with_thumbs ul li:first-child .thumb {
          margin-right: 0; }
          .widget_recent_posts_with_thumbs ul li:first-child .thumb a {
            height: calc(300px * 540 / 999); }
          .widget_recent_posts_with_thumbs ul li:first-child .thumb img {
            width: 100%;
            height: auto;
            margin-bottom: 10px; }
      .widget_recent_posts_with_thumbs ul li:nth-of-type(3n+1) {
        display: block; }
      .widget_recent_posts_with_thumbs ul li .thumb {
        margin-right: 15px;
        position: relative;
        float: left; }
        .widget_recent_posts_with_thumbs ul li .thumb a {
          height: calc(120px * 540 / 999); }
        .widget_recent_posts_with_thumbs ul li .thumb img {
          width: 120px;
          height: auto;
          margin-bottom: 7px; }
      .widget_recent_posts_with_thumbs ul li:nth-of-type(n+2) .thumb.ribbon:before {
        background-image: url("../images/plus-label-mini.png");
        width: 30px;
        height: 30px; }
      .widget_recent_posts_with_thumbs ul li h5 {
        text-transform: none;
        font-size: 18px;
        line-height: 21px;
        font-weight: 400;
        margin: 0 0 14px 0;
        width: calc(100% - 136px);
        float: right;
        letter-spacing: 1px; }
        .widget_recent_posts_with_thumbs ul li h5 a {
          font-weight: 500; }

.home-1000-area-2-sidebar .widget {
  margin-bottom: 0; }

/* Google Ads */
.mu-banner-ad.home-in-articles:before, .mu-banner-ad.home-in-articles:after {
  content: "";
  display: block;
  background: #F1EEFF;
  position: absolute;
  top: 0;
  height: 100%; }

.mu-banner-ad.home-in-articles:before {
  width: 100vw;
  left: -100vw; }

.mu-banner-ad.home-in-articles:after {
  background: #fff;
  right: -34px;
  width: 34px;
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: skew(-7deg);
  -ms-transform: skew(-7deg);
  transform: skew(-7deg); }

.mu-banner-ad.home-in-articles.second:after {
  background: #fff;
  right: -1px;
  width: 36px;
  -webkit-transform: skew(7deg);
  -ms-transform: skew(7deg);
  transform: skew(7deg); }

.home-1000-area-1-sidebar {
  clear: both; }
  .home-1000-area-1-sidebar .widget {
    background: #F1EEFF;
    padding: 0 22px;
    margin: 0 0 38px;
    position: relative;
    height: 169px;
    width: calc(100% - 26px);
    padding-left: 0; }
    .home-1000-area-1-sidebar .widget .textwidget {
      text-align: center; }
    .home-1000-area-1-sidebar .widget:before, .home-1000-area-1-sidebar .widget:after {
      content: "";
      display: block;
      background: #F1EEFF;
      position: absolute;
      top: 0;
      height: 100%; }
    .home-1000-area-1-sidebar .widget:before {
      width: 100vw;
      left: -100vw; }
    .home-1000-area-1-sidebar .widget:after {
      right: -26px;
      width: 26px;
      -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
      transform-origin: 100% 0;
      -webkit-transform: skew(-7deg);
      -ms-transform: skew(-7deg);
      transform: skew(-7deg); }

.home-1000-area-3-sidebar, .home-1000-area-5-sidebar, .single-post-sidebar {
  clear: both;
  margin-bottom: 60px; }
  .home-1000-area-3-sidebar .widget_text, .home-1000-area-3-sidebar .ai-sticky, .home-1000-area-5-sidebar .widget_text, .home-1000-area-5-sidebar .ai-sticky, .single-post-sidebar .widget_text, .single-post-sidebar .ai-sticky {
    background: #F1EEFF;
    padding: 30px 0;
    margin: 0 0 25px;
    position: relative;
    text-align: center; }
    .home-1000-area-3-sidebar .widget_text:before, .home-1000-area-3-sidebar .widget_text:after, .home-1000-area-3-sidebar .ai-sticky:before, .home-1000-area-3-sidebar .ai-sticky:after, .home-1000-area-5-sidebar .widget_text:before, .home-1000-area-5-sidebar .widget_text:after, .home-1000-area-5-sidebar .ai-sticky:before, .home-1000-area-5-sidebar .ai-sticky:after, .single-post-sidebar .widget_text:before, .single-post-sidebar .widget_text:after, .single-post-sidebar .ai-sticky:before, .single-post-sidebar .ai-sticky:after {
      content: "";
      display: block;
      background: #F1EEFF;
      position: absolute;
      top: 0; }
    .home-1000-area-3-sidebar .widget_text:after, .home-1000-area-3-sidebar .ai-sticky:after, .home-1000-area-5-sidebar .widget_text:after, .home-1000-area-5-sidebar .ai-sticky:after, .single-post-sidebar .widget_text:after, .single-post-sidebar .ai-sticky:after {
      bottom: -32px;
      top: auto;
      left: 0;
      height: 32px;
      width: 100%;
      -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
      transform-origin: right bottom;
      -webkit-transform: skewY(5deg);
      -ms-transform: skewY(5deg);
      transform: skewY(5deg); }
    .home-1000-area-3-sidebar .widget_text .widget, .home-1000-area-3-sidebar .ai-sticky .widget, .home-1000-area-5-sidebar .widget_text .widget, .home-1000-area-5-sidebar .ai-sticky .widget, .single-post-sidebar .widget_text .widget, .single-post-sidebar .ai-sticky .widget {
      margin: 0; }
  .home-1000-area-3-sidebar .widget_text, .home-1000-area-5-sidebar .widget_text, .single-post-sidebar .widget_text {
    width: 100%; }
  .home-1000-area-3-sidebar .ai-sticky, .home-1000-area-5-sidebar .ai-sticky, .single-post-sidebar .ai-sticky {
    padding: 32px 0 30px; }
  .home-1000-area-3-sidebar div[id|="div-gpt-ad"], .home-1000-area-5-sidebar div[id|="div-gpt-ad"], .single-post-sidebar div[id|="div-gpt-ad"] {
    margin: auto; }
  .home-1000-area-3-sidebar #div-gpt-ad-1500211308409-5, .home-1000-area-5-sidebar #div-gpt-ad-1500211308409-5, .single-post-sidebar #div-gpt-ad-1500211308409-5 {
    margin-top: 30px; }

.home-1000-area-3-sidebar .textwidget > p {
  display: none; }

.single-post-sidebar .ai-sticky:before {
  height: 32px;
  left: 0;
  top: 0px;
  -webkit-transform: skewY(5deg);
  -ms-transform: skewY(5deg);
  transform: skewY(5deg);
  -webkit-transform-origin: right bottom 0;
  -ms-transform-origin: right bottom 0;
  transform-origin: right bottom 0;
  width: 100%; }

.single-post-sidebar .widget_join_plus {
  margin-bottom: 0; }

.single-post-sidebar .widget_text + .widget_recent_posts_with_thumbs {
  margin-top: 60px; }

.single-post-sidebar .widget_recent_posts_with_thumbs {
  margin: 0 0 100px; }

.single-post-sidebar .widget_recent_posts_with_thumbs + .widget_text {
  margin-top: 60px;
  display: inline-block; }

.single-post-sidebar > div:nth-of-type(4) {
  margin-bottom: 0;
  padding-bottom: 76px; }
  .single-post-sidebar > div:nth-of-type(4):before, .single-post-sidebar > div:nth-of-type(4):after {
    content: "";
    display: block;
    background: #F1EEFF;
    position: absolute;
    top: 0; }
  .single-post-sidebar > div:nth-of-type(4):before {
    top: -32px;
    left: 0;
    height: 36px;
    width: 100%;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: skewY(-5deg);
    -ms-transform: skewY(-5deg);
    transform: skewY(-5deg); }
  .single-post-sidebar > div:nth-of-type(4):after {
    background: #fff;
    bottom: 0;
    top: auto;
    left: 0;
    height: 2px;
    width: 100%;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: skewY(5deg);
    -ms-transform: skewY(5deg);
    transform: skewY(5deg); }

.single-post-sidebar > div:nth-of-type(5) {
  padding-top: 20px;
  padding-bottom: 0;
  min-height: 100px;
  margin-bottom: 33px; }
  .single-post-sidebar > div:nth-of-type(5):before, .single-post-sidebar > div:nth-of-type(5):after {
    content: "";
    display: block;
    background: #F1EEFF;
    position: absolute;
    top: 0; }
  .single-post-sidebar > div:nth-of-type(5):after {
    bottom: -32px;
    top: auto;
    left: 0;
    height: 32px;
    width: 100%;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: skewY(5deg);
    -ms-transform: skewY(5deg);
    transform: skewY(5deg); }
  .single-post-sidebar > div:nth-of-type(5) > p {
    display: none; }
  .single-post-sidebar > div:nth-of-type(5) .rev-web {
    float: left;
    font-size: 20px;
    font-weight: bold;
    padding-left: 20px; }
  .single-post-sidebar > div:nth-of-type(5) .rev-rev {
    color: gray;
    float: right;
    font-size: 12px;
    line-height: 20px;
    padding: 5px 20px 5px 0;
    clear: right; }
  .single-post-sidebar > div:nth-of-type(5) #rcjsload_bf58d9 {
    clear: both;
    display: inline-block;
    margin: -12px 0 32px;
    min-height: 100px;
    width: 100%; }

.single-post-sidebar > div:nth-of-type(6) {
  padding-bottom: 40px; }

.home-1000-area-4-sidebar {
  overflow: hidden; }
  .home-1000-area-4-sidebar .widget_recent_posts_with_thumbs {
    margin-top: 0; }

.home-1000-area-5-sidebar .widget_text:before, .home-1000-area-5-sidebar .ai-sticky:before {
  top: -32px;
  bottom: auto;
  left: 0;
  height: 32px;
  width: 100%;
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: skewY(-5deg);
  -ms-transform: skewY(-5deg);
  transform: skewY(-5deg); }

.home-1000-area-5-sidebar {
  margin-top: 30px; }

/*********************
POSTS & CONTENT STYLES
*********************/
.hentry header .image {
  width: 100vw;
  padding-left: calc((100vw - 1366px) / 2);
  padding-right: calc((100vw - 1366px) / 2); }

.hentry header .image:not(.podcast) .post-categories {
  height: 47px;
  overflow: hidden; }

.hentry header h1 {
  padding: 32px 20px 5px; }

.hentry header .single.vcard {
  margin-left: 20px; }

.hentry header .social-links {
  margin: 0 0 0 20px; }

.single .hentry {
  min-height: 3400px; }

.entry-content, .entry-content:not(.no-rainbow) {
  padding: 28px 0 0 20px; }

.entry-content h3.sponsors, .entry-content h3.sponsors + ul, .entry-content:not(.no-rainbow) h3.sponsors, .entry-content:not(.no-rainbow) h3.sponsors + ul {
  padding-right: 20px; }
  .entry-content h3.sponsors:before, .entry-content h3.sponsors + ul:before, .entry-content:not(.no-rainbow) h3.sponsors:before, .entry-content:not(.no-rainbow) h3.sponsors + ul:before {
    left: auto;
    right: 0; }

.single .ribbon::before {
  display: none; }

.ribbon .image.full:after {
  top: 0; }

.tags {
  margin: 0 0 28px; }

.author-meta {
  padding: 30px 0 65px; }

/*********************
SIDEBARS & ASIDES
*********************/
.single .bar-message {
  display: none; }

.single-post-sidebar {
  display: block !important; }

.widget_related_posts {
  margin-top: 60px;
  padding: 0 20px; }
  .widget_related_posts .widgettitle {
    display: none; }
  .widget_related_posts h4 {
    margin-top: 0; }
  .widget_related_posts ul {
    margin-bottom: 100px; }
    .widget_related_posts ul li {
      min-height: 175px;
      width: calc( ( 100% - 20px ) / 2);
      float: left;
      margin-right: 20px; }
      .widget_related_posts ul li:first-child {
        width: calc( ( 100% - 20px ) / 2);
        margin-right: 20px; }
        .widget_related_posts ul li:first-child .thumb a {
          height: calc( ( 100vw - 20px * 2 - 20px ) / 2 * 310 / 442);
          margin: 0;
          padding-bottom: 12px; }
        .widget_related_posts ul li:first-child h5 {
          font-size: 18px;
          margin: 0 0 12px;
          line-height: 24px;
          min-height: 0; }
      .widget_related_posts ul li:nth-of-type(n+2) .thumb.ribbon:before {
        background-image: url("../images/plus-label.png");
        width: 60px;
        height: 60px; }
      .widget_related_posts ul li:nth-of-type(2n) {
        margin-right: 0; }
      .widget_related_posts ul li:nth-of-type(n+3) {
        display: none; }
      .widget_related_posts ul li .thumb {
        margin: 0;
        width: 100%;
        padding-bottom: 7px; }
        .widget_related_posts ul li .thumb a {
          height: calc( ( 100vw - 20px * 2 - 20px ) / 2 * 310 / 442); }
        .widget_related_posts ul li .thumb img {
          width: 100%; }
      .widget_related_posts ul li h5 {
        font-size: 18px;
        line-height: 22px;
        width: 100%;
        margin: 0 0 18px;
        min-height: 0; }
        .widget_related_posts ul li h5 a {
          font-weight: 600; }
      .widget_related_posts ul li h6, .widget_related_posts ul li .byline {
        display: block; }
      .widget_related_posts ul li h6 {
        clear: both; }
        .widget_related_posts ul li h6 a {
          color: #1a1a1a;
          font-size: 14px;
          font-weight: 600;
          line-height: 18px;
          background: #efefef;
          padding: 4px 10px;
          letter-spacing: 1px;
          margin: 1px 0 4px;
          text-decoration: none;
          display: inline-block; }
          .widget_related_posts ul li h6 a:active, .widget_related_posts ul li h6 a:hover {
            color: #662d91;
            background-color: #eee6f5; }
      .widget_related_posts ul li .byline {
        margin: 0;
        line-height: 21px;
        font-size: 15px;
        letter-spacing: 1px; }
        .widget_related_posts ul li .byline .author {
          display: block; }
          .widget_related_posts ul li .byline .author a {
            text-decoration: none; }
            .widget_related_posts ul li .byline .author a:active, .widget_related_posts ul li .byline .author a:hover {
              color: #EE1F34; }
        .widget_related_posts ul li .byline .entry-time {
          margin-top: 3px; }
          .widget_related_posts ul li .byline .entry-time a {
            color: #666666;
            text-decoration: none; }
            .widget_related_posts ul li .byline .entry-time a:active, .widget_related_posts ul li .byline .entry-time a:hover {
              color: #1B75BC; }

/* Google Ads */
.entry-content div[id|="div-gpt-ad"] {
  width: 100%;
  margin: 30px 0; }
  .entry-content div[id|="div-gpt-ad"]:before, .entry-content div[id|="div-gpt-ad"]:after {
    content: "";
    display: block;
    background: #F1EEFF;
    position: absolute;
    top: 0;
    height: 100%; }
  .entry-content div[id|="div-gpt-ad"]:before {
    width: 100vw;
    left: -100vw; }
  .entry-content div[id|="div-gpt-ad"]:after {
    background: white;
    right: -44px;
    width: 45px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: skew(-7deg);
    -ms-transform: skew(-7deg);
    transform: skew(-7deg); }

.entry-content div[id|="div-gpt-ad"].second:after {
  right: 0;
  -webkit-transform: skew(7deg);
  -ms-transform: skew(7deg);
  transform: skew(7deg); }

.ai-sticky.sticky, .ai-sticky.sticky_bottom, .home-1000-area-5-sidebar.sticky, .home-1000-area-5-sidebar.sticky_to_bottom {
  position: fixed;
  top: calc(32px + 32px + 38px + 30px); }

.ai-sticky.sticky_to_bottom, .home-1000-area-5-sidebar.sticky_to_bottom {
  position: absolute; }

.home-1000-area-5-sidebar.sticky {
  top: calc(32px + 32px + 38px - 30px); }

/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/*********************
GENERAL STYLES
*********************/
html #wpadminbar {
  top: 0; }

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  padding: 0 38px; }

.home #content header,
.page-latest #content header,
.archive #content header,
.search-results #content header,
.search-no-results #content header {
  padding: 0; }

#content {
  padding-top: calc(70px + 38px); }

/*********************
POSTS & CONTENT STYLES
*********************/
.ribbon .image.full:after {
  top: 70px; }

.archive #content, .page-latest #content, .search-results #content, .search-no-results #content {
  padding-top: calc(70px); }

.archive .archive-title, .page-latest .archive-title, .search-results .archive-title, .search-no-results .archive-title {
  font-size: 58px;
  line-height: 80px;
  height: 160px;
  padding: 34px 68px 34px 60px;
  letter-spacing: 2px;
  position: relative;
  width: calc(100% + (100vw - 100%) / 2);
  display: inline-block; }
  .archive .archive-title:not(.podcasts):before, .page-latest .archive-title:not(.podcasts):before, .search-results .archive-title:not(.podcasts):before, .search-no-results .archive-title:not(.podcasts):before {
    display: inline-block;
    content: "";
    background: #fff;
    height: 100%;
    width: 30px;
    position: absolute;
    top: 0;
    left: -10px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: skew(-7deg);
    -ms-transform: skew(-7deg);
    transform: skew(-7deg);
    z-index: 1; }
  .archive .archive-title .posts, .page-latest .archive-title .posts, .search-results .archive-title .posts, .search-no-results .archive-title .posts {
    font-size: 44px;
    padding-left: 20px;
    display: inline-block; }

.page-latest .archive-title {
  line-height: 91px; }
  .page-latest .archive-title:before {
    left: -30px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: skew(7deg);
    -ms-transform: skew(7deg);
    transform: skew(7deg); }

.archive .archive-title .archive-type {
  padding-left: 3px; }

.archive .archive-title .posts {
  display: inline-block;
  font-size: 44px;
  line-height: 44px; }

.archive.author .archive-title {
  height: 161px;
  line-height: 80px;
  font-size: 58px;
  padding-left: 60px; }
  .archive.author .archive-title:before {
    height: calc(100% + 90px);
    width: 56px;
    left: 0; }
  .archive.author .archive-title .content {
    padding-top: 0;
    padding-left: 72px;
    margin-top: 0; }
  .archive.author .archive-title .archive-type {
    font-size: 21px; }
  .archive.author .archive-title .posts {
    font-size: 44px; }

.archive.author .avatar {
  width: 106px;
  height: 106px;
  top: 27px;
  left: 32px; }
  .archive.author .avatar:after {
    bottom: -5px;
    right: -5px;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: #1A1A1A;
    opacity: 0.25;
    border-radius: 50%;
    position: absolute;
    z-index: -1; }
  .archive.author .avatar span:before {
    font-size: 68px;
    line-height: 106px; }
  .archive.author .avatar span:after {
    height: 78px;
    left: 14px;
    top: 14px;
    width: 78px; }

.archive.author .author-meta {
  background: #ff002c;
  width: 100%;
  position: relative;
  display: table;
  padding: 16px 0; }
  .archive.author .author-meta:before {
    display: inline-block;
    content: "";
    background: #fff;
    height: 101%;
    width: 30px;
    position: absolute;
    top: 0;
    left: 6px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: skew(-7deg);
    -ms-transform: skew(-7deg);
    transform: skew(-7deg);
    z-index: 1; }
  .archive.author .author-meta:after {
    display: block;
    content: "";
    top: 0;
    height: 100%;
    background: #ff002c;
    position: absolute;
    z-index: -1;
    right: calc((100vw - 100%) / 2 * -1);
    width: calc((100vw - 100%) / 2); }

.archive.author .author-desc, .archive.author .author-social {
  padding: 0 11px 0 12px;
  min-height: calc(90px - 16px * 2);
  box-sizing: border-box;
  display: table-cell;
  vertical-align: middle; }

.archive.author .author-desc {
  width: 66%;
  padding-left: calc(60px + 72px + 5px);
  padding-right: calc(14% - 137px);
  z-index: -1; }
  .archive.author .author-desc b {
    font-size: 21px;
    font-weight: 400; }
  .archive.author .author-desc + .author-social {
    padding-top: 0;
    width: 39%; }

.archive.author .author-social {
  width: calc(100%);
  padding-top: 0px;
  margin-bottom: 0;
  text-align: right;
  line-height: 90px;
  z-index: 0; }
  .archive.author .author-social a {
    line-height: 33px; }

.search-results .archive-title, .search-no-results .archive-title {
  padding-left: calc(70px + 58px + 30px);
  line-height: 92px; }
  .search-results .archive-title:after, .search-no-results .archive-title:after {
    height: 58px;
    width: 58px;
    top: calc(50% - 58px / 2);
    left: 70px;
    z-index: 1;
    font-size: 58px;
    line-height: 58px; }

.cover {
  overflow: hidden; }

.bar-message {
  height: 96px;
  margin: 38px 38px 38px -38px; }
  .bar-message .message {
    font-size: 21px;
    height: 96px;
    padding: 0 38px;
    width: 672px;
    line-height: 31px; }
    .bar-message .message div {
      max-width: none; }
      .bar-message .message div > div {
        display: table;
        height: 96px; }
      .bar-message .message div > div > div {
        display: table-cell;
        vertical-align: middle; }
    .bar-message .message a:after {
      bottom: -1px;
      height: 2px;
      opacity: 0.5; }
  .bar-message .learn-more {
    height: 96px;
    width: calc(100vw - 672px - 38px);
    margin-left: 0; }
    .bar-message .learn-more:before, .bar-message .learn-more:after {
      right: -16px;
      width: 16px; }
    .bar-message .learn-more a {
      width: 100%;
      font-size: 23px;
      line-height: 98px;
      padding: 0; }

.single #content {
  padding-top: 0; }

.single .hentry {
  width: 100%; }

#post-not-found.hentry {
  width: 100%; }

.hentry {
  width: calc(50% - 15px);
  vertical-align: top;
  display: inline-block; }
  .hentry:nth-child(2n) {
    margin-left: 12px; }
  .hentry:nth-child(2n+1) {
    margin-right: 12px; }
  .hentry.welcome {
    width: auto;
    float: none; }
    .hentry.welcome:nth-child(2n), .hentry.welcome:nth-child(2n+1) {
      margin-left: 0;
      margin-right: 0; }
    .hentry.welcome.cover-1 > a {
      height: calc( (100vw - 38px * 2) * 460 / 923); }
    .hentry.welcome.cover-2 {
      margin-bottom: 2px; }
      .hentry.welcome.cover-2 > a {
        height: calc( (100vw - 38px * 2) * 252 / 923); }
    .hentry.welcome.cover-3, .hentry.welcome.cover-4 {
      width: calc(50% - 1px);
      float: left; }
    .hentry.welcome.cover-3 {
      margin-right: 2px; }
    .hentry.welcome img {
      width: 100%;
      height: auto; }
      .hentry.welcome img.long {
        display: block; }
      .hentry.welcome img.first.small {
        display: none; }
    .hentry.welcome h2 {
      font-size: 21px;
      line-height: 21px; }
  .hentry.welcome.cover-1, .hentry.welcome.cover-2 {
    width: calc(50% - 1px);
    float: left; }
  .hentry.welcome.cover-1 {
    margin-right: 2px; }
    .hentry.welcome.cover-1 > a {
      height: calc( (100vw / 2 - 38px - 2px ) * 440 / 518); }
  .hentry.welcome.cover-2 > a, .hentry.welcome.cover-3 > a, .hentry.welcome.cover-4 > a {
    height: calc( ( (100vw / 2 - 38px - 2px ) * 440 / 518 / 2 ) - 1px); }
  .hentry.welcome.cover-3, .hentry.welcome.cover-4 {
    width: calc(25% - 2px);
    float: left; }
    .hentry.welcome.cover-3 h6 .post-categories li, .hentry.welcome.cover-4 h6 .post-categories li {
      display: none; }
      .hentry.welcome.cover-3 h6 .post-categories li:first-child, .hentry.welcome.cover-4 h6 .post-categories li:first-child {
        display: block; }
  .hentry.welcome.cover-1, .hentry.welcome.cover-3, .hentry.welcome.cover-4 {
    margin-bottom: 0; }
  .hentry.welcome img {
    width: 100%;
    height: auto; }
    .hentry.welcome img.long {
      display: block; }
    .hentry.welcome img.first.small {
      display: none; }
  .hentry.welcome h2 {
    font-size: 18px;
    line-height: 21px; }
  .hentry.welcome h4 {
    font-size: 21px;
    line-height: 21px; }
  .hentry.welcome h6 .post-categories li a {
    line-height: 28px; }
  .hentry > a > .image {
    height: calc(((100vw - 38px * 2 - 324px) / 2 - 24px ) * 187 / 351); }
  .hentry header .image.old.podcasts {
    padding-bottom: 0; }
    .hentry header .image.old.podcasts.player .inner-image {
      box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.1);
      width: 585px;
      height: 306px;
      margin: calc(38px) 0 56px calc((100vw - 1000px) / 2);
      position: relative; }
    .hentry header .image.old.podcasts.player h6 {
      bottom: 0; }
      .hentry header .image.old.podcasts.player h6 .post-categories {
        padding: 0 10px;
        margin: 0; }
        .hentry header .image.old.podcasts.player h6 .post-categories li a {
          font-size: inherit;
          line-height: 28px; }
  .hentry header .image.old .inner-image.old {
    -webkit-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
    margin: 38px auto 26px; }
  .hentry header .image.old .store-link {
    height: 68px;
    width: calc(100vw - 41px);
    margin: 0 auto 46px 0; }
    .hentry header .image.old .store-link .text {
      width: calc((100% - 240px));
      padding: 0 26px;
      font-size: 24px; }
      .hentry header .image.old .store-link .text > div {
        height: 68px; }
    .hentry header .image.old .store-link .button {
      font-size: 24px;
      line-height: 68px; }
  .hentry header .image {
    padding-top: 70px; }
    .hentry header .image .inner-image {
      width: 585px;
      margin: 38px auto 26px;
      height: 306px; }
    .hentry header .image .post-categories {
      margin: 35px auto calc(35px - 14px);
      width: 604px; }
      .hentry header .image .post-categories li {
        -webkit-box-shadow: 7px 7px 0px 0px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 7px 7px 0px 0px rgba(0, 0, 0, 0.15);
        box-shadow: 7px 7px 0px 0px rgba(0, 0, 0, 0.15); }
        .hentry header .image .post-categories li a {
          font-size: 17px;
          line-height: 33px;
          padding: 0 10px 0;
          letter-spacing: 1px; }
  .hentry header h1 {
    padding: 32px 38px 5px; }
  .hentry header .single.vcard {
    margin-left: 38px; }
  .hentry header .header-bottom .byline.entry-meta.vcard {
    margin-top: 16px;
    margin-bottom: 16px; }
  .hentry header h6 {
    margin: 12px 0; }
    .hentry header h6 a {
      background-color: #efefef;
      padding: 8px 12px;
      font-size: 14px;
      margin-left: 1px;
      margin-right: 4px; }
      .hentry header h6 a:hover {
        color: #662d91;
        background-color: #eee6f5; }
  .hentry header .byline.entry-meta.vcard {
    margin-top: 22px;
    margin-bottom: 32px; }
  .hentry header .entry-author, .hentry header .entry-time {
    line-height: 31px; }
  .hentry header .entry-author {
    margin-top: -5px; }
  .hentry header .social-links {
    margin: 0 0 0 38px; }
    .hentry header .social-links li a:before {
      width: 14px;
      height: 14px;
      position: absolute;
      top: 8px;
      background: #fff;
      left: 12px; }
  .hentry header h2.entry-title {
    letter-spacing: 1px; }

body.single.store-link .hentry header .image h6 {
  margin: 0 0 -14px; }

/* entry content */
.entry-content, .entry-content:not(.no-rainbow) {
  padding: 32px 0 0 38px;
  margin: 0 auto; }
  .entry-content h3.sponsors, .entry-content:not(.no-rainbow) h3.sponsors {
    letter-spacing: 1px; }
  .entry-content h3.sponsors + ul li, .entry-content:not(.no-rainbow) h3.sponsors + ul li {
    letter-spacing: 1px; }

.article-footer {
  padding: 10px 38px 0;
  width: 640px;
  margin: 0; }
  .article-footer .tags {
    margin: 0 0 50px; }
  .article-footer .author-meta {
    padding: 0 0 70px; }

#disqus_thread {
  width: 580px;
  padding: 65px auto 100px; }

.page-template-page-fullpage .hentry, .page-template-page-fullpage .entry-content, .page-template-page-upgrade-membership .hentry, .page-template-page-upgrade-membership .entry-content {
  width: 680px;
  margin: 0 auto;
  float: none; }

.page-template-page-fullpage.page-terms-conditions .hentry,
.page-template-page-fullpage.page-advertisers .hentry,
.page-template-page-fullpage.page-privacy-policy .hentry,
.page-template-page-fullpage.page-mu-app-version .hentry,
.page-template-page-fullpage.page-about .hentry,
.page-template-page-fullpage.page-account-cancelled .hentry,
.page-template-page-fullpage.page-membership-expired .hentry,
.page-template-page-fullpage.page-oops-this-content-is-members-only .hentry,
.page-template-page-fullpage.page-thanks-for-joining .hentry,
.page-template-page-fullpage.page-you-are-a-contributor .hentry,
.page-template-page-fullpage.page-oops-wrong-membership-level .hentry, .page-template-page-upgrade-membership.page-terms-conditions .hentry,
.page-template-page-upgrade-membership.page-advertisers .hentry,
.page-template-page-upgrade-membership.page-privacy-policy .hentry,
.page-template-page-upgrade-membership.page-mu-app-version .hentry,
.page-template-page-upgrade-membership.page-about .hentry,
.page-template-page-upgrade-membership.page-account-cancelled .hentry,
.page-template-page-upgrade-membership.page-membership-expired .hentry,
.page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry,
.page-template-page-upgrade-membership.page-thanks-for-joining .hentry,
.page-template-page-upgrade-membership.page-you-are-a-contributor .hentry,
.page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry {
  width: 680px;
  position: relative;
  padding-left: calc( (100vw - 1000px) / 2 + 320px - 38px - 20px); }
  .page-template-page-fullpage.page-terms-conditions .hentry header h1,
  .page-template-page-fullpage.page-advertisers .hentry header h1,
  .page-template-page-fullpage.page-privacy-policy .hentry header h1,
  .page-template-page-fullpage.page-mu-app-version .hentry header h1,
  .page-template-page-fullpage.page-about .hentry header h1,
  .page-template-page-fullpage.page-account-cancelled .hentry header h1,
  .page-template-page-fullpage.page-membership-expired .hentry header h1,
  .page-template-page-fullpage.page-oops-this-content-is-members-only .hentry header h1,
  .page-template-page-fullpage.page-thanks-for-joining .hentry header h1,
  .page-template-page-fullpage.page-you-are-a-contributor .hentry header h1,
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry header h1, .page-template-page-upgrade-membership.page-terms-conditions .hentry header h1,
  .page-template-page-upgrade-membership.page-advertisers .hentry header h1,
  .page-template-page-upgrade-membership.page-privacy-policy .hentry header h1,
  .page-template-page-upgrade-membership.page-mu-app-version .hentry header h1,
  .page-template-page-upgrade-membership.page-about .hentry header h1,
  .page-template-page-upgrade-membership.page-account-cancelled .hentry header h1,
  .page-template-page-upgrade-membership.page-membership-expired .hentry header h1,
  .page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry header h1,
  .page-template-page-upgrade-membership.page-thanks-for-joining .hentry header h1,
  .page-template-page-upgrade-membership.page-you-are-a-contributor .hentry header h1,
  .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry header h1 {
    font-size: 48px;
    line-height: 60px;
    padding-left: 20px;
    text-align: left; }
  .page-template-page-fullpage.page-terms-conditions .hentry .header-image,
  .page-template-page-fullpage.page-advertisers .hentry .header-image,
  .page-template-page-fullpage.page-privacy-policy .hentry .header-image,
  .page-template-page-fullpage.page-mu-app-version .hentry .header-image,
  .page-template-page-fullpage.page-about .hentry .header-image,
  .page-template-page-fullpage.page-account-cancelled .hentry .header-image,
  .page-template-page-fullpage.page-membership-expired .hentry .header-image,
  .page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .header-image,
  .page-template-page-fullpage.page-thanks-for-joining .hentry .header-image,
  .page-template-page-fullpage.page-you-are-a-contributor .hentry .header-image,
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .header-image, .page-template-page-upgrade-membership.page-terms-conditions .hentry .header-image,
  .page-template-page-upgrade-membership.page-advertisers .hentry .header-image,
  .page-template-page-upgrade-membership.page-privacy-policy .hentry .header-image,
  .page-template-page-upgrade-membership.page-mu-app-version .hentry .header-image,
  .page-template-page-upgrade-membership.page-about .hentry .header-image,
  .page-template-page-upgrade-membership.page-account-cancelled .hentry .header-image,
  .page-template-page-upgrade-membership.page-membership-expired .hentry .header-image,
  .page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .header-image,
  .page-template-page-upgrade-membership.page-thanks-for-joining .hentry .header-image,
  .page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .header-image,
  .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .header-image {
    overflow: visible;
    position: fixed;
    width: 295px;
    left: calc( (100vw - 1000px) / 2 + 320px - 38px - 20px - 295px - 26px); }
    .page-template-page-fullpage.page-terms-conditions .hentry .header-image .image,
    .page-template-page-fullpage.page-advertisers .hentry .header-image .image,
    .page-template-page-fullpage.page-privacy-policy .hentry .header-image .image,
    .page-template-page-fullpage.page-mu-app-version .hentry .header-image .image,
    .page-template-page-fullpage.page-about .hentry .header-image .image,
    .page-template-page-fullpage.page-account-cancelled .hentry .header-image .image,
    .page-template-page-fullpage.page-membership-expired .hentry .header-image .image,
    .page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .header-image .image,
    .page-template-page-fullpage.page-thanks-for-joining .hentry .header-image .image,
    .page-template-page-fullpage.page-you-are-a-contributor .hentry .header-image .image,
    .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .header-image .image, .page-template-page-upgrade-membership.page-terms-conditions .hentry .header-image .image,
    .page-template-page-upgrade-membership.page-advertisers .hentry .header-image .image,
    .page-template-page-upgrade-membership.page-privacy-policy .hentry .header-image .image,
    .page-template-page-upgrade-membership.page-mu-app-version .hentry .header-image .image,
    .page-template-page-upgrade-membership.page-about .hentry .header-image .image,
    .page-template-page-upgrade-membership.page-account-cancelled .hentry .header-image .image,
    .page-template-page-upgrade-membership.page-membership-expired .hentry .header-image .image,
    .page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .header-image .image,
    .page-template-page-upgrade-membership.page-thanks-for-joining .hentry .header-image .image,
    .page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .header-image .image,
    .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .header-image .image {
      bottom: 18px; }

.page-template-page-fullpage.page-terms-conditions .hentry .header-image, .page-template-page-upgrade-membership.page-terms-conditions .hentry .header-image {
  height: 238px; }
  .page-template-page-fullpage.page-terms-conditions .hentry .header-image .image, .page-template-page-upgrade-membership.page-terms-conditions .hentry .header-image .image {
    right: calc(50% - 170px); }

.page-template-page-fullpage.page-terms-conditions .hentry header, .page-template-page-upgrade-membership.page-terms-conditions .hentry header {
  width: 680px; }

.page-template-page-fullpage.page-advertisers .hentry .header-image, .page-template-page-upgrade-membership.page-advertisers .hentry .header-image {
  height: 284px; }
  .page-template-page-fullpage.page-advertisers .hentry .header-image .image, .page-template-page-upgrade-membership.page-advertisers .hentry .header-image .image {
    right: calc(50% - 180px); }

.page-template-page-fullpage.page-privacy-policy .hentry .header-image, .page-template-page-upgrade-membership.page-privacy-policy .hentry .header-image {
  height: 367px; }
  .page-template-page-fullpage.page-privacy-policy .hentry .header-image .image, .page-template-page-upgrade-membership.page-privacy-policy .hentry .header-image .image {
    right: calc(50% - 184px); }

.page-template-page-fullpage.page-mu-app-version .hentry .header-image, .page-template-page-upgrade-membership.page-mu-app-version .hentry .header-image {
  height: 314px; }
  .page-template-page-fullpage.page-mu-app-version .hentry .header-image .image, .page-template-page-upgrade-membership.page-mu-app-version .hentry .header-image .image {
    right: -200px;
    width: 658px;
    bottom: 24px; }

.page-template-page-fullpage.page-mu-app-version .hentry header, .page-template-page-upgrade-membership.page-mu-app-version .hentry header {
  width: 680px; }

.page-template-page-fullpage.page-about .hentry .header-image, .page-template-page-upgrade-membership.page-about .hentry .header-image {
  height: 295px; }
  .page-template-page-fullpage.page-about .hentry .header-image .image, .page-template-page-upgrade-membership.page-about .hentry .header-image .image {
    right: calc(50% - 184px); }

.page-template-page-fullpage.page-account-cancelled .hentry .header-image,
.page-template-page-fullpage.page-membership-expired .hentry .header-image,
.page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .header-image,
.page-template-page-fullpage.page-thanks-for-joining .hentry .header-image,
.page-template-page-fullpage.page-you-are-a-contributor .hentry .header-image,
.page-template-page-fullpage.page-oops-wrong-membership-level .hentry .header-image, .page-template-page-upgrade-membership.page-account-cancelled .hentry .header-image,
.page-template-page-upgrade-membership.page-membership-expired .hentry .header-image,
.page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .header-image,
.page-template-page-upgrade-membership.page-thanks-for-joining .hentry .header-image,
.page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .header-image,
.page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .header-image {
  height: 405px; }
  .page-template-page-fullpage.page-account-cancelled .hentry .header-image .image,
  .page-template-page-fullpage.page-membership-expired .hentry .header-image .image,
  .page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .header-image .image,
  .page-template-page-fullpage.page-thanks-for-joining .hentry .header-image .image,
  .page-template-page-fullpage.page-you-are-a-contributor .hentry .header-image .image,
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .header-image .image, .page-template-page-upgrade-membership.page-account-cancelled .hentry .header-image .image,
  .page-template-page-upgrade-membership.page-membership-expired .hentry .header-image .image,
  .page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .header-image .image,
  .page-template-page-upgrade-membership.page-thanks-for-joining .hentry .header-image .image,
  .page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .header-image .image,
  .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .header-image .image {
    background-size: 660px auto;
    right: calc(50% - 180px); }

.page-template-page-fullpage.page-account-cancelled .hentry .article-header,
.page-template-page-fullpage.page-membership-expired .hentry .article-header,
.page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .article-header,
.page-template-page-fullpage.page-thanks-for-joining .hentry .article-header,
.page-template-page-fullpage.page-you-are-a-contributor .hentry .article-header,
.page-template-page-fullpage.page-oops-wrong-membership-level .hentry .article-header, .page-template-page-upgrade-membership.page-account-cancelled .hentry .article-header,
.page-template-page-upgrade-membership.page-membership-expired .hentry .article-header,
.page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .article-header,
.page-template-page-upgrade-membership.page-thanks-for-joining .hentry .article-header,
.page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .article-header,
.page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .article-header {
  width: 680px; }

.page-template-page-fullpage.page-account-cancelled .hentry .entry-content,
.page-template-page-fullpage.page-membership-expired .hentry .entry-content,
.page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .entry-content,
.page-template-page-fullpage.page-thanks-for-joining .hentry .entry-content,
.page-template-page-fullpage.page-you-are-a-contributor .hentry .entry-content,
.page-template-page-fullpage.page-oops-wrong-membership-level .hentry .entry-content, .page-template-page-upgrade-membership.page-account-cancelled .hentry .entry-content,
.page-template-page-upgrade-membership.page-membership-expired .hentry .entry-content,
.page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .entry-content,
.page-template-page-upgrade-membership.page-thanks-for-joining .hentry .entry-content,
.page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .entry-content,
.page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .entry-content {
  text-align: left; }

.page-template-page-fullpage.page-oops-wrong-membership-level .hentry .entry-content h3, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .entry-content h3 {
  margin: 15px 0 50px; }

.page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans {
  position: relative;
  width: 100vw;
  padding: 0 calc((100vw - 872px) / 2) 40px;
  margin-left: calc( -1 * ((100vw - 1000px) / 2 + 320px - 20px)); }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans h4, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans h4 {
    font-size: 48px;
    padding-top: 60px;
    margin-bottom: 50px; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .popular, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .popular {
    font-size: 24px;
    width: 290px;
    left: 0;
    padding-top: 12px;
    padding-left: 0; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans ul, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans ul {
    margin: 0 auto 70px;
    padding-bottom: 127px;
    width: 420px;
    position: relative;
    height: 500px; }
    .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans ul li, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans ul li {
      margin-bottom: 45px;
      width: 290px;
      position: absolute;
      top: 0;
      height: 466px; }
      .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans ul li:nth-of-type(1), .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans ul li:nth-of-type(1) {
        left: calc(50% - 290px / 2); }
      .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans ul li:nth-of-type(2), .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans ul li:nth-of-type(2) {
        left: calc(50% - 290px - 290px / 2 - 2px); }
      .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans ul li:nth-of-type(3), .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans ul li:nth-of-type(3) {
        left: calc(50% + 290px / 2 + 2px); }
      .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans ul li a, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans ul li a {
        text-decoration: none;
        text-align: center;
        color: #fff; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .frequency, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .currency, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .price, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .sep, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .time, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .renew, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .reoccuring, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .free, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .signup, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .frequency, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .currency, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .price, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .sep, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .time, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .renew, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .reoccuring, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .free, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .signup {
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .frequency, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .frequency {
    font-size: 36px; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .currency, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .price, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .sep, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .time, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .currency, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .price, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .sep, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .time {
    font-size: 24px; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .renew, .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .reoccuring, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .renew, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .reoccuring {
    font-size: 21px;
    margin-bottom: 8px;
    font-weight: 300; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .free, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .free {
    width: 232px;
    font-size: 21px;
    margin: 44px auto -18px; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans .signup, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans .signup {
    font-size: 28px;
    margin-top: 50px;
    position: absolute;
    bottom: 0; }

.page-template-page-fullpage.page-oops-wrong-membership-level .hentry .article-footer, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .article-footer {
  display: none; }

.page-template-page-fullpage .hentry header, .page-template-page-upgrade-membership .hentry header {
  min-height: 0;
  margin: 0 0; }
  .page-template-page-fullpage .hentry header h1, .page-template-page-upgrade-membership .hentry header h1 {
    font-size: 36px;
    line-height: 74px;
    padding: 8px 0 0; }

.page-template-page-fullpage .hentry.post-3052 h6, .page-template-page-upgrade-membership .hentry.post-3052 h6 {
  font-size: 24px;
  margin: 55px 0 20px; }

.page-template-page-fullpage .hentry.post-3256 h3, .page-template-page-upgrade-membership .hentry.post-3256 h3 {
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 0; }

.page-template-page-fullpage .hentry.post-3256 p + h3, .page-template-page-upgrade-membership .hentry.post-3256 p + h3 {
  margin: 70px 0 20px; }

.page-template-page-fullpage .hentry.post-3256 h3 + h6, .page-template-page-upgrade-membership .hentry.post-3256 h3 + h6 {
  margin-top: 45px; }

.page-template-page-fullpage .hentry.post-3256 h6, .page-template-page-upgrade-membership .hentry.post-3256 h6 {
  font-size: 24px;
  margin: 55px 0 20px; }

.page-template-page-fullpage .entry-content, .page-template-page-fullpage .entry-content:not(.no-rainbow), .page-template-page-upgrade-membership .entry-content, .page-template-page-upgrade-membership .entry-content:not(.no-rainbow) {
  padding: 60px 20px 100px; }
  .page-template-page-fullpage .entry-content h5, .page-template-page-fullpage .entry-content:not(.no-rainbow) h5, .page-template-page-upgrade-membership .entry-content h5, .page-template-page-upgrade-membership .entry-content:not(.no-rainbow) h5 {
    font-size: 28px;
    line-height: 28px; }
  .page-template-page-fullpage .entry-content h6, .page-template-page-fullpage .entry-content:not(.no-rainbow) h6, .page-template-page-upgrade-membership .entry-content h6, .page-template-page-upgrade-membership .entry-content:not(.no-rainbow) h6 {
    margin: 40px 0 20px; }
  .page-template-page-fullpage .entry-content p, .page-template-page-fullpage .entry-content div, .page-template-page-fullpage .entry-content ul li, .page-template-page-fullpage .entry-content ol li, .page-template-page-fullpage .entry-content:not(.no-rainbow) p, .page-template-page-fullpage .entry-content:not(.no-rainbow) div, .page-template-page-fullpage .entry-content:not(.no-rainbow) ul li, .page-template-page-fullpage .entry-content:not(.no-rainbow) ol li, .page-template-page-upgrade-membership .entry-content p, .page-template-page-upgrade-membership .entry-content div, .page-template-page-upgrade-membership .entry-content ul li, .page-template-page-upgrade-membership .entry-content ol li, .page-template-page-upgrade-membership .entry-content:not(.no-rainbow) p, .page-template-page-upgrade-membership .entry-content:not(.no-rainbow) div, .page-template-page-upgrade-membership .entry-content:not(.no-rainbow) ul li, .page-template-page-upgrade-membership .entry-content:not(.no-rainbow) ol li {
    font-size: 18px;
    line-height: 24px; }
  .page-template-page-fullpage .entry-content ul li:before, .page-template-page-fullpage .entry-content:not(.no-rainbow) ul li:before, .page-template-page-upgrade-membership .entry-content ul li:before, .page-template-page-upgrade-membership .entry-content:not(.no-rainbow) ul li:before {
    margin: 0 20px 0 2px; }

/* Log in Pages */
body.mu_login_form #main section,
body.mu_password_lost_form #main section,
body.mu_password_change_form #main section,
body.mu_password_lost_reset_form #main section,
body.mu_check_your_email #main section,
body.mu_password_lost_reset_form #main section {
  max-width: calc(478px + 24px * 2);
  margin: 0 auto; }

body.mu_login_form #main .mu_form,
body.mu_password_lost_form #main .mu_form,
body.mu_password_change_form #main .mu_form,
body.mu_password_lost_reset_form #main .mu_form,
body.mu_check_your_email #main .mu_form,
body.mu_password_lost_reset_form #main .mu_form {
  margin-bottom: 120px; }

body.mu_login_form #main .email,
body.mu_password_lost_form #main .email,
body.mu_password_change_form #main .email,
body.mu_password_lost_reset_form #main .email,
body.mu_check_your_email #main .email,
body.mu_password_lost_reset_form #main .email {
  left: calc(486px / 2 - 50vw);
  position: relative;
  width: 100vw; }

body.mu_password_change_form #main #password-strength-text,
body.mu_password_lost_reset_form #main #password-strength-text {
  position: relative;
  margin: -59px -180px 50px auto;
  right: 0;
  width: 170px;
  -webkit-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in; }

body.mu_password_change_form #main #password-match-text,
body.mu_password_lost_reset_form #main #password-match-text {
  width: 456px;
  margin: -12px auto -32px; }
  body.mu_password_change_form #main #password-match-text.match:before, body.mu_password_change_form #main #password-match-text.dont-match:before,
  body.mu_password_lost_reset_form #main #password-match-text.match:before,
  body.mu_password_lost_reset_form #main #password-match-text.dont-match:before {
    display: none; }

@keyframes blink-discount {
  0%, 49% {
    background: #d5e5d0; }
  50%, 100% {
    background: rgba(213, 229, 208, 0); } }

/* Dashboard*/
#content.dashboard .article-header:after, #content.faq .article-header:after {
  display: block;
  content: "";
  width: 200vw;
  height: 363px;
  background: #F2E6FF;
  position: absolute;
  bottom: auto;
  top: 0;
  left: -50vw;
  z-index: -1; }

#content.dashboard .article-header .welcome-notice, #content.faq .article-header .welcome-notice {
  font-size: 21px;
  line-height: 70px;
  margin: 0 0 36px 0;
  padding-right: 40px;
  width: calc(100%);
  height: 70px;
  text-align: center;
  font-weight: 300; }
  #content.dashboard .article-header .welcome-notice .close, #content.faq .article-header .welcome-notice .close {
    top: 0;
    right: 14px; }

#content.dashboard .article-header .container, #content.faq .article-header .container {
  padding: 0 38px; }

#content.dashboard .article-header h5, #content.faq .article-header h5 {
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: none;
  margin: 0 0 56px;
  line-height: 22px; }

#content.dashboard .article-header h5 + p, #content.faq .article-header h5 + p {
  margin-top: -46px; }

#content.dashboard .article-header p, #content.faq .article-header p {
  font-size: 18px;
  color: #666666;
  letter-spacing: 1px;
  font-weight: 300;
  margin: 0; }

#content.dashboard .article-header .settings, #content.dashboard .article-header .discount, #content.dashboard .article-header .logout, #content.faq .article-header .settings, #content.faq .article-header .discount, #content.faq .article-header .logout {
  font-size: 18px;
  color: #4D4D4D;
  text-decoration: none;
  display: inline-block;
  position: absolute;
  right: 0;
  line-height: 24px;
  letter-spacing: 1px;
  padding: 9px;
  right: 14px;
  width: 225px; }
  #content.dashboard .article-header .settings span, #content.dashboard .article-header .discount span, #content.dashboard .article-header .logout span, #content.faq .article-header .settings span, #content.faq .article-header .discount span, #content.faq .article-header .logout span {
    display: inline-block;
    opacity: 0.5;
    height: 24px;
    width: 24px;
    vertical-align: middle;
    margin-right: 14px;
    font-size: 24px;
    color: #1A1A1A; }

#content.dashboard .article-header .logout span, #content.faq .article-header .logout span {
  margin-left: 5px; }

#content.dashboard .article-header .settings, #content.dashboard .article-header .discount, #content.faq .article-header .settings, #content.faq .article-header .discount {
  top: 3px; }
  #content.dashboard .article-header .settings:active, #content.dashboard .article-header .settings:hover, #content.dashboard .article-header .discount:active, #content.dashboard .article-header .discount:hover, #content.faq .article-header .settings:active, #content.faq .article-header .settings:hover, #content.faq .article-header .discount:active, #content.faq .article-header .discount:hover {
    background: rgba(255, 255, 255, 0.49);
    color: #1a1a1a; }

#content.dashboard .article-header .discount span, #content.faq .article-header .discount span {
  font-size: 15px;
  line-height: 22px;
  margin-left: -2px; }

#content.dashboard .article-header .logout, #content.faq .article-header .logout {
  top: 82px; }
  #content.dashboard .article-header .logout:active, #content.dashboard .article-header .logout:hover, #content.faq .article-header .logout:active, #content.faq .article-header .logout:hover {
    background: rgba(252, 155, 0, 0.1);
    color: #1a1a1a; }
  #content.dashboard .article-header .logout span, #content.faq .article-header .logout span {
    margin-right: 7px; }

#content.dashboard .article-header .settings-dropdown, #content.dashboard .article-header .discount-dropdown, #content.faq .article-header .settings-dropdown, #content.faq .article-header .discount-dropdown {
  display: block;
  width: 250px;
  position: absolute;
  right: 0;
  top: -13px;
  height: 48px; }
  #content.dashboard .article-header .settings-dropdown ul, #content.dashboard .article-header .discount-dropdown ul, #content.faq .article-header .settings-dropdown ul, #content.faq .article-header .discount-dropdown ul {
    margin-top: 54px;
    height: 0;
    overflow: hidden; }
    #content.dashboard .article-header .settings-dropdown ul li, #content.dashboard .article-header .discount-dropdown ul li, #content.faq .article-header .settings-dropdown ul li, #content.faq .article-header .discount-dropdown ul li {
      height: 45px; }
      #content.dashboard .article-header .settings-dropdown ul li:active, #content.dashboard .article-header .settings-dropdown ul li:hover, #content.dashboard .article-header .discount-dropdown ul li:active, #content.dashboard .article-header .discount-dropdown ul li:hover, #content.faq .article-header .settings-dropdown ul li:active, #content.faq .article-header .settings-dropdown ul li:hover, #content.faq .article-header .discount-dropdown ul li:active, #content.faq .article-header .discount-dropdown ul li:hover {
        background: #F0EDFF; }
        #content.dashboard .article-header .settings-dropdown ul li:active a, #content.dashboard .article-header .settings-dropdown ul li:hover a, #content.dashboard .article-header .discount-dropdown ul li:active a, #content.dashboard .article-header .discount-dropdown ul li:hover a, #content.faq .article-header .settings-dropdown ul li:active a, #content.faq .article-header .settings-dropdown ul li:hover a, #content.faq .article-header .discount-dropdown ul li:active a, #content.faq .article-header .discount-dropdown ul li:hover a {
          color: #1A1A1A; }
      #content.dashboard .article-header .settings-dropdown ul li:last-child:active, #content.dashboard .article-header .settings-dropdown ul li:last-child:hover, #content.dashboard .article-header .discount-dropdown ul li:last-child:active, #content.dashboard .article-header .discount-dropdown ul li:last-child:hover, #content.faq .article-header .settings-dropdown ul li:last-child:active, #content.faq .article-header .settings-dropdown ul li:last-child:hover, #content.faq .article-header .discount-dropdown ul li:last-child:active, #content.faq .article-header .discount-dropdown ul li:last-child:hover {
        background: #FFE3E3; }
        #content.dashboard .article-header .settings-dropdown ul li:last-child:active a, #content.dashboard .article-header .settings-dropdown ul li:last-child:hover a, #content.dashboard .article-header .discount-dropdown ul li:last-child:active a, #content.dashboard .article-header .discount-dropdown ul li:last-child:hover a, #content.faq .article-header .settings-dropdown ul li:last-child:active a, #content.faq .article-header .settings-dropdown ul li:last-child:hover a, #content.faq .article-header .discount-dropdown ul li:last-child:active a, #content.faq .article-header .discount-dropdown ul li:last-child:hover a {
          color: #DD2A2A; }
      #content.dashboard .article-header .settings-dropdown ul li a, #content.dashboard .article-header .discount-dropdown ul li a, #content.faq .article-header .settings-dropdown ul li a, #content.faq .article-header .discount-dropdown ul li a {
        color: #4D4D4D;
        font-size: 15px;
        text-decoration: none;
        line-height: 45px;
        padding-left: 54px;
        display: block; }

#content.dashboard .article-header .discount-dropdown, #content.faq .article-header .discount-dropdown {
  top: 33px !important; }
  #content.dashboard .article-header .discount-dropdown .content, #content.faq .article-header .discount-dropdown .content {
    padding: 42px 12px 0;
    height: 0;
    overflow: hidden; }
    #content.dashboard .article-header .discount-dropdown .content p, #content.faq .article-header .discount-dropdown .content p {
      font-size: 14px;
      line-height: 16px;
      color: #4D4D4D;
      padding: 0 9px;
      font-weight: 400; }
    #content.dashboard .article-header .discount-dropdown .content h6, #content.faq .article-header .discount-dropdown .content h6 {
      font-size: 12px;
      color: #808080;
      padding: 0 9px;
      font-weight: 400;
      margin: 10px 0 12px; }
    #content.dashboard .article-header .discount-dropdown .content input, #content.faq .article-header .discount-dropdown .content input {
      width: 100%;
      color: #154F1A;
      font-size: 21px;
      letter-spacing: 2px;
      text-transform: uppercase;
      line-height: 42px;
      text-align: center;
      font-weight: 600;
      border: none;
      margin: 0 0 10px; }
      #content.dashboard .article-header .discount-dropdown .content input.copied, #content.faq .article-header .discount-dropdown .content input.copied {
        animation-delay: 0.2s;
        animation-duration: 2s;
        animation-iteration-count: 1;
        animation-name: blink-discount; }
    #content.dashboard .article-header .discount-dropdown .content .copy-btn, #content.faq .article-header .discount-dropdown .content .copy-btn {
      width: calc(100% + 24px);
      margin-left: -12px;
      background: #58B063;
      color: #fff;
      font-size: 22px;
      height: 50px;
      outline: 0;
      border: 0;
      line-height: 50px;
      text-transform: uppercase;
      letter-spacing: 1px; }
      #content.dashboard .article-header .discount-dropdown .content .copy-btn:active, #content.dashboard .article-header .discount-dropdown .content .copy-btn:hover, #content.faq .article-header .discount-dropdown .content .copy-btn:active, #content.faq .article-header .discount-dropdown .content .copy-btn:hover {
        background: #42854B; }

#content.dashboard .article-header .settings-dropdown.open, #content.dashboard .article-header .discount-dropdown.open, #content.faq .article-header .settings-dropdown.open, #content.faq .article-header .discount-dropdown.open {
  background: #fff;
  z-index: 20;
  padding: 0;
  height: 202px;
  -webkit-box-shadow: 0px 3px 10px 0px #a3a3a3;
  -moz-box-shadow: 0px 3px 10px 0px #a3a3a3;
  box-shadow: 0px 3px 10px 0px #a3a3a3;
  transition: height .25s ease-in-out;
  -webkit-transition: height .25s ease-in-out; }
  #content.dashboard .article-header .settings-dropdown.open:before, #content.dashboard .article-header .discount-dropdown.open:before, #content.faq .article-header .settings-dropdown.open:before, #content.faq .article-header .discount-dropdown.open:before {
    display: block;
    content: "";
    width: 200vw;
    height: 200vw;
    position: absolute;
    top: -100vw;
    left: -100vw;
    z-index: -1; }
  #content.dashboard .article-header .settings-dropdown.open ul, #content.dashboard .article-header .discount-dropdown.open ul, #content.faq .article-header .settings-dropdown.open ul, #content.faq .article-header .discount-dropdown.open ul {
    height: 133px;
    transition: height .25s ease-in-out;
    -webkit-transition: height .25s ease-in-out; }

#content.dashboard .article-header .discount-dropdown.open, #content.faq .article-header .discount-dropdown.open {
  height: 234px; }
  #content.dashboard .article-header .discount-dropdown.open .content, #content.faq .article-header .discount-dropdown.open .content {
    height: 234px;
    transition: height .25s ease-in-out;
    -webkit-transition: height .25s ease-in-out; }

#content.dashboard .entry-content, #content.dashboard .entry-content:not(.no-rainbow), #content.faq .entry-content, #content.faq .entry-content:not(.no-rainbow) {
  padding: 8px 0; }

#content.dashboard .entry-content > p:first-child, #content.faq .entry-content > p:first-child {
  padding: 0 38px;
  min-height: 66px; }

#content.dashboard .links, #content.faq .links {
  width: calc(100% - 298px);
  margin-bottom: 5px; }
  #content.dashboard .links:nth-of-type(2):before, #content.faq .links:nth-of-type(2):before {
    margin: 13px 0 40px;
    left: -38px;
    width: calc(100vw - 48px * 2); }
  #content.dashboard .links:nth-of-type(2) + .itunes-button, #content.faq .links:nth-of-type(2) + .itunes-button {
    margin-left: -6px; }
  #content.dashboard .links span, #content.faq .links span {
    text-align: left;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600; }
  #content.dashboard .links input, #content.faq .links input {
    font-size: 18px;
    margin-bottom: 6px;
    padding: 0 8px;
    margin-right: 0;
    margin-left: -18px;
    height: 42px;
    line-height: 42px;
    vertical-align: middle;
    width: calc(100% - 90px); }
  #content.dashboard .links .copy-btn, #content.faq .links .copy-btn {
    width: 91px;
    height: 42px;
    font-size: 20px;
    line-height: 42px;
    vertical-align: middle;
    margin-top: -7px; }

#content.dashboard .itunes-button, #content.faq .itunes-button {
  margin: 0;
  text-align: right;
  vertical-align: middle; }
  #content.dashboard .itunes-button span, #content.faq .itunes-button span {
    height: 42px;
    width: 42px;
    line-height: 32px; }

#content.dashboard .links + span, #content.faq .links + span {
  display: inline;
  vertical-align: middle;
  padding-right: 16px;
  margin-left: 24px; }

#content.dashboard .itunes-button + span, #content.faq .itunes-button + span {
  margin: 0 16px;
  vertical-align: middle; }

#content.dashboard .help-me, #content.faq .help-me {
  height: 42px;
  line-height: 42px;
  width: 155px;
  margin: 70px -30px 30px auto;
  font-size: 18px; }

#content.dashboard h4, #content.faq h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin: 0 0 36px; }
  #content.dashboard h4 a, #content.faq h4 a {
    color: #1A1A1A; }

#content.dashboard .left, #content.faq .left {
  position: relative; }
  #content.dashboard .left h4 a:after, #content.faq .left h4 a:after {
    display: inline-block;
    content: "( Extended Episodes )";
    color: #808080;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0;
    padding-left: 5px; }

#content.dashboard .right, #content.faq .right {
  position: relative; }
  #content.dashboard .right h4, #content.faq .right h4 {
    padding-top: 50px;
    margin-bottom: 20px; }

#content.dashboard .left h4, #content.dashboard .right h4, #content.faq .left h4, #content.faq .right h4 {
  font-size: 24px;
  line-height: 30px; }
  #content.dashboard .left h4 a:after, #content.dashboard .right h4 a:after, #content.faq .left h4 a:after, #content.faq .right h4 a:after {
    font-size: 16px;
    letter-spacing: 1px; }

#content.dashboard .left, #content.faq .left {
  width: 50%;
  float: left;
  clear: left;
  position: relative; }
  #content.dashboard .left h4, #content.faq .left h4 {
    padding-right: 30px; }
  #content.dashboard .left h4 + .episodes, #content.faq .left h4 + .episodes {
    top: 11px; }
  #content.dashboard .left h4 + .episodes li, #content.dashboard .left h4 + .episodes li:last-child, #content.faq .left h4 + .episodes li, #content.faq .left h4 + .episodes li:last-child {
    border-right: 1px solid #cccccc; }

#content.dashboard .right, #content.faq .right {
  width: 50%;
  float: right;
  clear: right;
  position: relative; }
  #content.dashboard .right h4, #content.faq .right h4 {
    padding-left: 30px;
    padding-top: 0; }
  #content.dashboard .right h5, #content.faq .right h5 {
    padding-left: 30px; }
  #content.dashboard .right h4 + .episodes, #content.faq .right h4 + .episodes {
    top: 11px; }

#content.dashboard .left h4, #content.dashboard .right h4, #content.faq .left h4, #content.faq .right h4 {
  margin-bottom: 20px; }

#content.dashboard h4 + .episodes, #content.faq h4 + .episodes {
  margin: 0;
  width: 100%;
  position: relative;
  top: 70px; }
  #content.dashboard h4 + .episodes ul, #content.faq h4 + .episodes ul {
    margin: 0; }
  #content.dashboard h4 + .episodes li, #content.faq h4 + .episodes li {
    float: left;
    width: 100%;
    margin: 0;
    position: relative;
    border-bottom: 1px solid #cccccc;
    padding: 0 16px 0 18px;
    height: 74px;
    line-height: 74px; }
    #content.dashboard h4 + .episodes li:before, #content.dashboard h4 + .episodes li:after, #content.faq h4 + .episodes li:before, #content.faq h4 + .episodes li:after {
      display: none; }
    #content.dashboard h4 + .episodes li:last-child, #content.faq h4 + .episodes li:last-child {
      border: none; }
    #content.dashboard h4 + .episodes li p, #content.faq h4 + .episodes li p {
      float: left;
      font-size: 18px;
      margin: 0;
      line-height: inherit; }
      #content.dashboard h4 + .episodes li p .title, #content.faq h4 + .episodes li p .title {
        display: inline-block;
        margin-left: 36px; }
      #content.dashboard h4 + .episodes li p .number, #content.dashboard h4 + .episodes li p .title, #content.faq h4 + .episodes li p .number, #content.faq h4 + .episodes li p .title {
        font-weight: 400; }
    #content.dashboard h4 + .episodes li .view-button, #content.dashboard h4 + .episodes li .download-button, #content.faq h4 + .episodes li .view-button, #content.faq h4 + .episodes li .download-button {
      margin-left: 14px; }

#content.faq .entry-content {
  margin: 0 auto 0;
  width: 800px; }

#content.faq .ufaq-faq-div:before, #content.faq .ufaq-faq-div:after {
  margin-left: 0;
  width: 100%; }

#content.faq #ufaq-ajax-results .ufaq-faq-div {
  margin: -15px 0; }

.entry-content .mu-tabs {
  margin: 42px 0 0; }
  .entry-content .mu-tabs:after {
    top: 68px; }
  .entry-content .mu-tabs label {
    padding: 28px 0 0;
    margin: 0 40px 0 0;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    height: 48px; }
    .entry-content .mu-tabs label:active:before, .entry-content .mu-tabs label:hover:before {
      height: 1px;
      bottom: -10px; }
  .entry-content .mu-tabs .tab-content {
    z-index: 2;
    display: none;
    overflow: visible;
    width: 100%;
    font-size: 17px;
    line-height: 25px;
    padding: 32px 38px;
    position: absolute;
    top: 68px;
    left: 0;
    background: #fff; }
  .entry-content .mu-tabs [id^="tab"]:checked + label:before {
    height: 1px;
    bottom: -10px; }

#content.dashboard .entry-content .mu-tabs #tab-content1 {
  padding-top: 0px;
  margin-top: 70px; }

#content.dashboard .entry-content .mu-tabs #tab-content2, #content.dashboard .entry-content .mu-tabs #tab-content3 {
  padding-top: 0px;
  margin-top: 50px; }

#content.dashboard .entry-content .mu-tabs #tab1 + label {
  margin-left: 36px; }

#content.dashboard .entry-content .mu-tabs #tab1 + label, #content.dashboard .entry-content .mu-tabs #tab2 + label, #content.dashboard .entry-content .mu-tabs #tab3 + label {
  font-size: 24px; }

#content.faq .entry-content .mu-tabs {
  margin-top: 0; }
  #content.faq .entry-content .mu-tabs .tab-content {
    padding-top: 138px; }

/* Plus */
/* App */
.page-app #main {
  background: none; }

.page-plus #main:before {
  background-image: url("../images/plus/top-graphic-1366-1000.png");
  top: -28px; }

.page-plus .hentry {
  width: 100%;
  padding-top: 320px; }
  .page-plus .hentry:nth-child(2n+1) {
    margin-right: 12px; }
  .page-plus .hentry .entry-content {
    width: 100%;
    text-align: center;
    max-width: 910px;
    padding-top: 20px; }
  .page-plus .hentry h1, .page-plus .hentry h2, .page-plus .hentry h3, .page-plus .hentry h4, .page-plus .hentry h5, .page-plus .hentry h6, .page-plus .hentry p {
    padding: 0 12px; }
  .page-plus .hentry h1 {
    font-size: 72px;
    margin-bottom: 10px; }
  .page-plus .hentry h2 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 300;
    display: inline;
    padding: 0;
    letter-spacing: 2px; }
    .page-plus .hentry h2:nth-of-type(2) {
      font-size: 36px;
      line-height: 48px;
      padding-left: 16px; }
  .page-plus .hentry h4 {
    font-size: 48px;
    line-height: 50px; }
  .page-plus .hentry h5 {
    font-size: 36px; }
  .page-plus .hentry p {
    font-size: 18px;
    line-height: 21px;
    padding: 0 10px; }

.page-plus .included {
  margin-top: 50px; }

.page-plus .included .row {
  width: 33.33%;
  float: left;
  padding-top: 105px; }
  .page-plus .included .row h5 {
    font-size: 22px;
    line-height: 29px; }
  .page-plus .included .row .image-retina {
    width: 200px;
    top: calc(100px - 400px);
    left: calc(50% - 35px);
    height: 400px; }

.page-plus .devices {
  margin-top: 105px;
  padding: 0 calc((100vw - 1000px) / 2);
  width: 100vw;
  margin-left: -38px; }
  .page-plus .devices h4 {
    margin: 0 auto 190px;
    width: 100%; }
  .page-plus .devices .ios, .page-plus .devices .android, .page-plus .devices .laptop {
    height: 133px;
    padding-top: 104px;
    width: 216px;
    display: inline-block; }
  .page-plus .devices .laptop {
    margin: 0;
    width: 558px;
    top: -70px; }
  .page-plus .devices .button {
    width: 173px;
    height: 50px;
    background-size: 143px auto; }

.page-plus .testimonials {
  margin-top: 50px; }
  .page-plus .testimonials .slides .author {
    opacity: 0.9; }
  .page-plus .testimonials .flex-control-nav {
    bottom: 120px; }

.page-plus .plans {
  position: relative;
  width: 100vw;
  padding: 0 calc((100vw - 872px) / 2);
  left: -38px; }
  .page-plus .plans h4 {
    font-size: 48px;
    padding-top: 100px;
    margin-bottom: 50px; }
  .page-plus .plans .popular {
    font-size: 24px;
    width: 290px;
    left: 0;
    padding-top: 12px;
    padding-left: 0; }
  .page-plus .plans ul {
    margin: 0 auto 70px;
    padding-bottom: 127px;
    width: 420px;
    position: relative;
    height: 500px; }
    .page-plus .plans ul li {
      margin-bottom: 45px;
      width: 290px;
      position: absolute;
      top: 0;
      height: 466px; }
      .page-plus .plans ul li:nth-of-type(1) {
        left: calc(50% - 290px / 2); }
      .page-plus .plans ul li:nth-of-type(2) {
        left: calc(50% - 290px - 290px / 2 - 2px); }
      .page-plus .plans ul li:nth-of-type(3) {
        left: calc(50% + 290px / 2 + 2px); }
      .page-plus .plans ul li a {
        text-decoration: none;
        text-align: center;
        color: #fff; }
  .page-plus .plans .frequency, .page-plus .plans .currency, .page-plus .plans .price, .page-plus .plans .sep, .page-plus .plans .time, .page-plus .plans .renew, .page-plus .plans .reoccuring, .page-plus .plans .free, .page-plus .plans .signup {
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px; }
  .page-plus .plans .frequency {
    font-size: 36px; }
  .page-plus .plans .currency, .page-plus .plans .price, .page-plus .plans .sep, .page-plus .plans .time {
    font-size: 24px; }
  .page-plus .plans .renew, .page-plus .plans .reoccuring {
    font-size: 21px;
    margin-bottom: 8px;
    font-weight: 300; }
  .page-plus .plans .free {
    width: 232px;
    font-size: 21px;
    margin: 44px auto -18px; }
  .page-plus .plans .signup {
    font-size: 28px;
    margin-top: 50px;
    position: absolute;
    bottom: 0; }

.page-template-page-mu-plus-plans #content {
  padding-top: calc(36px + 38px); }

.page-template-page-mu-plus-plans #inner-content {
  padding: 0; }

.page-template-page-mu-plus-plans #main:after {
  right: 39px;
  top: 32px; }

.page-template-page-mu-plus-plans #main h1 {
  padding: 32px 0 5px; }

.page-template-page-mu-plus-plans .hentry:nth-child(2n+1) {
  margin-right: 0;
  width: 100%; }

.page-template-page-mu-plus-plans .entry-content, .page-template-page-mu-plus-plans .entry-content:not(.no-rainbow) {
  padding: 0 0 90px;
  width: 100%;
  position: relative; }

.page-template-page-mu-plus-plans .currency, .page-template-page-mu-plus-plans .price, .page-template-page-mu-plus-plans .sep, .page-template-page-mu-plus-plans .time {
  font-weight: 400; }

.page-template-page-mu-plus-plans .free:before {
  left: calc((100vw - 585px) / 2 - 35px); }

.page-template-page-mu-plus-plans .free:after {
  width: 12px;
  left: calc( 420px + (100vw - 585px) / 2 - 46px); }

.page-template-page-mu-plus-plans h4 {
  font-size: 24px; }

.page-template-page-mu-plus-plans .type {
  padding: 30px 0 6px; }

.page-template-page-mu-plus-plans form.paypal-form {
  padding: 0 50px;
  background: rgba(255, 255, 255, 0.08);
  width: 416px;
  margin: 0 auto;
  position: absolute;
  bottom: 105px;
  height: 303px; }
  .page-template-page-mu-plus-plans form.paypal-form:nth-of-type(1) {
    margin-top: 0;
    left: calc(50% - 416px - 48px); }
  .page-template-page-mu-plus-plans form.paypal-form:nth-of-type(2) {
    left: calc(50% + 48px); }
  .page-template-page-mu-plus-plans form.paypal-form + p {
    height: 303px;
    line-height: 303px; }
  .page-template-page-mu-plus-plans form.paypal-form .container {
    position: absolute;
    bottom: 20px; }

.page-app .sticky-wrapper {
  position: relative;
  z-index: 1; }

.page-app #main {
  padding-bottom: 90px;
  padding-bottom: 950px; }
  .page-app #main .hentry:nth-child(2n+1), .page-app #main .entry-content {
    margin-right: 0;
    width: 100%;
    position: relative; }
  .page-app #main .entry-content {
    padding: 32px calc((100% - 1000px) / 2); }
    .page-app #main .entry-content p {
      width: 540px; }
  .page-app #main h1 {
    margin: 56px auto 0;
    padding: 32px calc((100% - 1000px) / 2) 5px;
    text-align: left; }
  .page-app #main h4 {
    font-size: 36px;
    text-align: left;
    padding: 0; }
  .page-app #main h5 {
    font-size: 24px;
    text-align: left; }
  .page-app #main p {
    font-size: 23px;
    line-height: 32px;
    text-align: left; }
  .page-app #main .phone {
    height: 737px;
    margin-top: 0;
    position: absolute;
    top: -62px;
    left: 25px; }
    .page-app #main .phone .image {
      height: 200vh;
      width: 200vw;
      background: transparent url("../images/app/phone-640.png") no-repeat scroll left bottom/auto;
      left: calc((50% + 91px)); }
  .page-app #main .features {
    width: calc( (100vw - 1000px) / 2 + 385px + 125px);
    position: absolute;
    padding-left: calc((100vw - 1000px) / 2 + 125px); }
    .page-app #main .features h4 {
      margin: 34px 0 0; }
    .page-app #main .features .row {
      padding: 0 0 55px 60px; }
      .page-app #main .features .row h5 {
        margin: 26px 0 0; }
      .page-app #main .features .row .image-retina {
        background-size: 190px auto;
        left: -13px;
        top: calc(65px - 100vh);
        width: 190px; }
      .page-app #main .features .row p {
        font-size: 18px;
        line-height: 22px;
        max-width: 446px;
        display: inline-block;
        margin: 0 auto; }
  .page-app #main .available {
    position: absolute;
    top: 780px;
    right: calc((100vw - 1000px) / 2 + 8px);
    width: 309px; }
    .page-app #main .available h4 {
      font-size: 36px;
      margin-top: 102px;
      padding: 0;
      text-align: center;
      margin-bottom: 45px; }
    .page-app #main .available .button {
      width: 309px;
      height: 91px;
      margin-bottom: 26px; }
      .page-app #main .available .button span:before {
        font-size: 69px;
        line-height: 93px; }
    .page-app #main .available .android .button span:before {
      font-size: 61px; }
  .page-app #main .version-notes {
    margin-top: 20px;
    top: 800px;
    right: 0; }
    .page-app #main .version-notes a {
      font-size: 18px; }

.page-app .footer {
  position: relative;
  z-index: 1; }

/* CONTACT PAGE */
.page-contact-us .hentry header {
  margin-top: -22px; }

.page-contact-us .hentry, .page-contact-us .entry-content {
  width: 100%; }

.page-contact-us .entry-content {
  padding-bottom: 45px; }
  .page-contact-us .entry-content .contact-form-intro {
    width: 100vw;
    left: calc((100% - 100vw) / 2);
    position: relative;
    padding: 30px 32px; }
    .page-contact-us .entry-content .contact-form-intro p {
      display: block;
      margin: 0 auto;
      max-width: 649px;
      text-align: left; }
  .page-contact-us .entry-content .gform_body {
    margin-top: 48px; }

/* 404 */
.error404 #content {
  padding-top: 70px; }

.error404 #inner-content {
  padding-left: 0;
  padding-right: 0; }

.error404 .hentry header h1 {
  font-size: 242px;
  line-height: 166px;
  letter-spacing: 27px; }

.error404 .hentry .entry-content {
  width: 100%;
  padding-left: 0;
  padding-right: 0; }

.error404 .hentry section h4 {
  margin-bottom: 20px; }

.error404 .hentry section .image {
  height: 155px;
  margin-bottom: 35px;
  margin-top: 25px;
  background-image: url("../images/404/aliens-1366-1000.png"); }

.error404 .hentry section p {
  font-size: 24px;
  line-height: 28px;
  width: 425px;
  margin: 0 auto; }

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 36px 0 -20px; }

.pagination {
  min-width: 602px; }
  .pagination.hide-prev-next-text .page-numbers .prev, .pagination.hide-prev-next-text .page-numbers .next {
    font-size: 20px;
    width: 100px; }
  .pagination ul.mobile.hide-start, .pagination ul.mobile.hide-end {
    display: block; }
  .pagination ul.mobile li .page-numbers {
    display: none; }
  .pagination ul:not(.mobile) li:first-child .current, .pagination ul:not(.mobile) li:last-child .current {
    display: block; }
  .pagination li {
    margin-right: 2px; }
    .pagination li .page-numbers {
      display: block;
      font-size: 20px;
      font-weight: normal; }
      .pagination li .page-numbers.prev, .pagination li .page-numbers.next {
        width: 100px;
        position: relative;
        margin: 0; }
        .pagination li .page-numbers.prev:after, .pagination li .page-numbers.next:after {
          height: 14px;
          width: 14px;
          border-top: 1px solid;
          border-left: 1px solid;
          top: calc(50% - 7px); }
      .pagination li .page-numbers.prev {
        padding: 0 0 0 20px; }
        .pagination li .page-numbers.prev:after {
          transform: rotate(-45deg);
          -webkit-transform: rotate(-45deg);
          left: 16px; }
      .pagination li .page-numbers.next {
        padding: 0 20px 0 0; }
        .pagination li .page-numbers.next:after {
          transform: rotate(135deg);
          -webkit-transform: rotate(135deg);
          right: 16px; }
      .pagination li .page-numbers.current {
        background: #CECFD1; }
  .pagination .current {
    cursor: default;
    color: #5c6b80; }

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left; }

.wp-prev-next .next-link {
  float: right; }

/* end .wp-prev-next */
/*********************
SIDEBARS & ASIDES
*********************/
.home-320-area-3-sidebar {
  display: none !important; }

.home-585-area-1-sidebar {
  display: none !important; }

.widgettitle {
  font-size: 28px; }

.widget {
  margin: 0 auto 2.2em; }
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */ }
    .widget ul li ul {
      margin-top: 0.75em;
      padding-left: 1em; }

.sidebar2 .widget_join_plus {
  width: 100vw;
  left: -38px;
  padding: 0 calc((100vw - 650px) / 2); }
  .sidebar2 .widget_join_plus .content {
    background-position: -34px -40px;
    height: 207px; }
  .sidebar2 .widget_join_plus .text {
    left: 196px;
    letter-spacing: 2px;
    line-height: 24px;
    position: relative;
    right: auto;
    text-align: left;
    top: 38px;
    width: 414px; }
  .sidebar2 .widget_join_plus .button {
    left: 193px;
    position: relative;
    right: auto;
    top: 54px;
    width: 418px; }

.widget_related_posts {
  margin-top: 60px;
  padding: 0; }
  .widget_related_posts h4 {
    margin-top: 0; }
  .widget_related_posts ul {
    margin-bottom: 100px; }
    .widget_related_posts ul li {
      min-height: 175px;
      width: calc( ( 100% - 20px * 2 ) / 3);
      float: left;
      margin-right: 20px; }
      .widget_related_posts ul li:first-child {
        width: calc( ( 100% - 20px * 2 ) / 3);
        margin-right: 20px; }
        .widget_related_posts ul li:first-child .thumb a {
          height: calc( ( 100vw - 38px * 2 - 20px * 2 ) / 3 * 218 / 305);
          margin: 0;
          padding-bottom: 12px; }
        .widget_related_posts ul li:first-child h5 {
          font-size: 18px;
          margin: 0 0 12px;
          line-height: 24px;
          min-height: 0; }
      .widget_related_posts ul li:nth-of-type(n+2) {
        margin-right: 20px; }
        .widget_related_posts ul li:nth-of-type(n+2) .thumb.ribbon:before {
          background-image: url("../images/plus-label.png");
          width: 60px;
          height: 60px; }
      .widget_related_posts ul li:nth-of-type(3n) {
        display: block;
        margin-right: 0; }
      .widget_related_posts ul li:nth-of-type(n+4) {
        display: none; }
      .widget_related_posts ul li .thumb {
        margin: 0;
        width: 100%;
        padding-bottom: 7px; }
        .widget_related_posts ul li .thumb a {
          height: calc( ( 100vw - 38px * 2 - 20px * 2 ) / 3 * 218 / 305); }
        .widget_related_posts ul li .thumb img {
          width: 100%; }
      .widget_related_posts ul li h5 {
        font-size: 18px;
        line-height: 22px;
        width: 100%;
        margin: 0 0 18px;
        min-height: 0; }
        .widget_related_posts ul li h5 a {
          font-weight: 600; }
      .widget_related_posts ul li h6, .widget_related_posts ul li .byline {
        display: block; }
      .widget_related_posts ul li h6 {
        clear: both; }
        .widget_related_posts ul li h6 a {
          color: #1a1a1a;
          font-size: 14px;
          font-weight: 600;
          line-height: 18px;
          background: #efefef;
          padding: 4px 10px;
          letter-spacing: 1px;
          margin: 1px 0 4px;
          text-decoration: none;
          display: inline-block; }
          .widget_related_posts ul li h6 a:active, .widget_related_posts ul li h6 a:hover {
            color: #662d91;
            background-color: #eee6f5; }
      .widget_related_posts ul li .byline {
        margin: 0;
        line-height: 21px;
        font-size: 15px;
        letter-spacing: 1px; }
        .widget_related_posts ul li .byline .author {
          display: block; }
          .widget_related_posts ul li .byline .author a {
            text-decoration: none; }
            .widget_related_posts ul li .byline .author a:active, .widget_related_posts ul li .byline .author a:hover {
              color: #EE1F34; }
        .widget_related_posts ul li .byline .entry-time {
          margin-top: 3px; }
          .widget_related_posts ul li .byline .entry-time a {
            color: #666666;
            text-decoration: none; }
            .widget_related_posts ul li .byline .entry-time a:active, .widget_related_posts ul li .byline .entry-time a:hover {
              color: #1B75BC; }

/* Google Ads */
.mu-banner-ad.home-after-cover, .mu-banner-ad.archive-after-header {
  margin: 0; }
  .mu-banner-ad.home-after-cover:before, .mu-banner-ad.home-after-cover:after, .mu-banner-ad.archive-after-header:before, .mu-banner-ad.archive-after-header:after {
    content: "";
    display: block;
    background: #fff;
    position: absolute;
    top: 0;
    height: 100%; }
  .mu-banner-ad.home-after-cover:before, .mu-banner-ad.archive-after-header:before {
    left: -32px;
    width: 32px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: skew(7deg);
    -ms-transform: skew(7deg);
    transform: skew(7deg); }
  .mu-banner-ad.home-after-cover:after, .mu-banner-ad.archive-after-header:after {
    right: -31px;
    width: 32px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: skew(-7deg);
    -ms-transform: skew(-7deg);
    transform: skew(-7deg); }

.mu-banner-ad.archive-after-header:after {
  background: #F1EEFF;
  right: calc((100vw - 100%) / -2);
  width: calc((100vw - 100%) / 2);
  -webkit-transform: none;
  -ms-transform: none;
  transform: none; }

.archive-title.podcasts + .mu-banner-ad.archive-after-header {
  margin: -8px 0 0; }

.sidebar2 .single-post-footer .widget_text {
  width: 100vw;
  margin-left: -38px; }

.mu-banner-ad.home-in-articles::after {
  right: -42px;
  width: 42px; }

.mu-banner-ad.home-in-articles.second::after {
  width: 42px; }

/*********************
FOOTER STYLES
*********************/
.footer:after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.56);
  height: 64px; }

.footer #inner-footer {
  padding: 48px 0 0; }

.footer .block.left {
  width: calc( (100% - 390px) / 2);
  float: left;
  margin-bottom: 90px;
  padding: 0; }
  .footer .block.left h3 {
    text-align: left;
    margin: 0 auto 14px;
    width: 200px; }
  .footer .block.left nav {
    width: 200px; }

.footer h3, .footer h5 {
  font-size: 21px;
  letter-spacing: 1px;
  margin-top: 0; }

.footer nav {
  text-align: left; }
  .footer nav a {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0; }

.footer .socials {
  display: inline-flex;
  height: 40px;
  left: calc((100% - 390px) / 2 / 2 - 115px);
  position: absolute;
  bottom: 50px; }
  .footer .socials a {
    width: 40px;
    height: 40px; }

.footer .callus {
  margin-top: 0;
  width: calc( (100% - 390px) / 2);
  float: right; }
  .footer .callus h3 {
    text-align: left;
    width: 200px;
    margin: 0 auto; }
  .footer .callus .call {
    margin: 25px auto;
    width: 205px; }
    .footer .callus .call ul li {
      display: block;
      text-align: left; }
      .footer .callus .call ul li .id, .footer .callus .call ul li .title {
        font-size: 16px; }
      .footer .callus .call ul li .or {
        text-align: center;
        top: 0;
        width: 100%;
        margin: 15px 0; }
        .footer .callus .call ul li .or .title {
          font-size: 14px; }

.footer .buy {
  clear: both;
  padding-top: 0;
  position: absolute;
  width: 390px;
  top: 0;
  left: calc(50% - 195px - 32px);
  margin-top: 48px; }
  .footer .buy h5 {
    margin-left: 0; }
  .footer .buy h6 {
    width: 100%;
    font-size: 16px;
    line-height: 24px; }
    .footer .buy h6 img {
      float: left;
      margin-top: -5px; }
  .footer .buy p {
    font-size: 16px;
    line-height: 24px;
    width: 100%; }
  .footer .buy .price {
    width: 100%;
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
    clear: both; }
    .footer .buy .price span, .footer .buy .price a {
      display: block;
      height: 58px;
      line-height: 58px; }
    .footer .buy .price span {
      float: left;
      height: 58px;
      width: 50%;
      font-size: 36px;
      line-height: 58px; }
    .footer .buy .price a {
      width: 50%;
      float: right;
      font-size: 18px;
      font-weight: 600; }

.footer .copyright {
  background: none;
  font-size: 16px;
  line-height: 64px;
  padding: 0;
  padding-left: calc((100% - 390px) / 2 / 2 - 110px + 11px);
  clear: both;
  position: absolute;
  bottom: -64px;
  height: 64px; }

/*
	if you checked out the link above:
	http://www.alistapart.com/articles/organizing-mobile/
	you'll want to style the footer nav
	a bit more in-depth. Remember to keep
	it simple because you'll have to
	override these styles for the desktop
	view.
	*/
/* end .footer-links */
/******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  padding: 0 38px; }

/*********************
NAVIGATION STYLES
*********************/
/*********************
POSTS & CONTENT STYLES
*********************/
.bar-message {
  margin: 38px 0 38px -38px; }
  .bar-message .message {
    width: 75%; }
  .bar-message .learn-more {
    width: 25%; }
    .bar-message .learn-more a {
      font-size: 24px; }

.hentry.welcome.cover-1 > a {
  height: calc( (100vw / 2 - 38px - 2px ) * 440 / 594); }

.hentry.welcome.cover-2 > a {
  height: calc( (100vw / 2 - 38px - 2px ) * 219 / 598); }

.hentry.welcome.cover-3 > a, .hentry.welcome.cover-4 > a {
  height: calc((100vw / 2 - 38px) * 219 / 298 / 2 + 2px); }

/*********************
SIDEBARS & ASIDES
*********************/
/* search widget */
/* Google Ads */
/******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  padding: 0 38px; }

/*********************
POSTS & CONTENT STYLES
*********************/
.bar-message {
  margin: 38px 0 38px -38px; }
  .bar-message .message {
    width: 75%; }
  .bar-message .learn-more {
    width: 25%; }
    .bar-message .learn-more a {
      font-size: 24px; }

/*********************
SIDEBARS & ASIDES
*********************/
.widget_join_plus {
  padding: 0 26px; }
  .widget_join_plus .content {
    height: 426px; }
  .widget_join_plus .text {
    font-size: 24px;
    line-height: 28px;
    bottom: 120px; }
  .widget_join_plus .button {
    bottom: 26px; }

.widget_recent_posts_with_thumbs ul li:first-child .thumb a {
  height: calc(360px * 540 / 999); }

/* Google Ads */
.home-1080-area-2-sidebar .widget {
  padding-left: 30px; }

.home-1000-area-4-sidebar {
  margin-bottom: -60px; }

.home-1000-area-5-sidebar .widget_text {
  padding: 30px 30px; }
  .home-1000-area-5-sidebar .widget_text:before {
    top: -33px;
    height: 33px; }
  .home-1000-area-5-sidebar .widget_text:after {
    bottom: -35px;
    height: 35px; }
  .home-1000-area-5-sidebar .widget_text .textwidget > p {
    display: none; }

.mu-banner-ad.home-in-articles div[id*="google_ads_iframe_"] {
  margin: 38px auto; }

/******************************************************************
Site Name:
Author:

Stylesheet: Super Large Monitor Stylesheet

You can add some advanced styles here if you like. This kicks in
on larger screens.

******************************************************************/
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 1366px; }

/*********************
POSTS & CONTENT STYLES
*********************/
.archive.author .author-social:after {
  left: -10px;
  width: 200vw; }

.bar-message {
  margin: 38px 0 38px calc((100vw - 1366px) / 2 * -1 - 38px);
  height: 70px; }
  .bar-message .message {
    width: calc(927px + ((100vw - 1366px) / 2 + 38px));
    padding-left: calc((100vw - 1366px) / 2 + 38px + 32px);
    padding-top: 0;
    padding-bottom: 0;
    height: 70px; }
    .bar-message .message div > div {
      display: table;
      height: 70px; }
    .bar-message .message a {
      line-height: 70px; }
      .bar-message .message a:after {
        bottom: 16px; }
  .bar-message .learn-more {
    width: calc(1366px - 967px - 36px);
    height: 70px; }
    .bar-message .learn-more:before, .bar-message .learn-more:after {
      right: -16px;
      width: 16px; }
    .bar-message .learn-more a {
      font-size: 23px;
      line-height: 70px;
      letter-spacing: 1px; }

.hentry {
  width: calc(50% - 21px); }
  .hentry:nth-child(2n) {
    margin-left: 18px; }
  .hentry:nth-child(2n+1) {
    margin-right: 18px; }
  .hentry.welcome.cover-1 > a {
    height: 440px; }
  .hentry.welcome.cover-1, .hentry.welcome.cover-2 {
    width: 644px;
    float: left; }
  .hentry.welcome.cover-2 > a, .hentry.welcome.cover-3 > a, .hentry.welcome.cover-4 > a {
    height: 219px; }
  .hentry.welcome.cover-3, .hentry.welcome.cover-4 {
    width: calc( 644px / 2 - 1px);
    float: left; }
  .hentry.welcome img {
    width: 100%;
    height: auto; }
    .hentry.welcome img.long {
      display: block; }
    .hentry.welcome img.first.small {
      display: none; }
  .hentry.welcome h4 {
    font-size: 21px;
    line-height: 21px; }
  .hentry > a > .image {
    height: calc(((1366px - 38px * 2 - 324px) / 2 - 24px ) * 187 / 351); }
  .hentry header .image.old.podcasts.player .inner-image {
    margin-left: calc(168px + 26px);
    position: absolute; }
  .hentry header .image.old .inner-image.old {
    margin-left: calc(168px + 26px); }
  .hentry header .image.old .store-link {
    height: 86px;
    width: calc((100vw - 1366px) / 2 + 168px + 660px + 230px);
    margin: -8px auto 46px calc((100vw - 1366px) / -2); }
    .hentry header .image.old .store-link .text {
      width: calc((100% - 240px));
      padding: 0 26px 0 calc((100vw - 1366px) / 2 + 168px);
      font-size: 24px;
      letter-spacing: 1px; }
      .hentry header .image.old .store-link .text > div {
        height: 86px; }
    .hentry header .image.old .store-link .button {
      font-size: 24px;
      line-height: 86px; }
  .hentry header .image {
    margin-left: calc((100vw - 1366px) / -2); }
    .hentry header .image .inner-image {
      margin-left: calc(168px + 26px); }
    .hentry header .image .post-categories {
      width: calc((1366px - 1030px) / 2 + 360px); }
  .hentry header .header-bottom .byline.entry-meta.vcard {
    margin-top: 16px;
    margin-bottom: 16px; }

body.single.store-link .hentry header .image h6 {
  margin: 0 0 4px; }

body.single.store-link .hentry header .image .post-categories {
  bottom: -190px;
  margin-left: calc(168px + 26px);
  width: 585px; }

.entry-content, .entry-content:not(.no-rainbow), .article-footer {
  margin-left: auto;
  margin-right: 0;
  padding: 38px 38px 0 38px; }
  .entry-content h3.sponsors:before, .entry-content h3.sponsors + ul:before, .entry-content:not(.no-rainbow) h3.sponsors:before, .entry-content:not(.no-rainbow) h3.sponsors + ul:before, .article-footer h3.sponsors:before, .article-footer h3.sponsors + ul:before {
    left: auto;
    right: -44px; }

.page-template-page-fullpage .hentry:nth-child(2n+1), .page-template-page-upgrade-membership .hentry:nth-child(2n+1) {
  margin-right: auto; }

.page-template-page-fullpage.page-terms-conditions .hentry,
.page-template-page-fullpage.page-advertisers .hentry,
.page-template-page-fullpage.page-privacy-policy .hentry,
.page-template-page-fullpage.page-mu-app-version .hentry,
.page-template-page-fullpage.page-about .hentry,
.page-template-page-fullpage.page-account-cancelled .hentry,
.page-template-page-fullpage.page-membership-expired .hentry,
.page-template-page-fullpage.page-oops-this-content-is-members-only .hentry,
.page-template-page-fullpage.page-thanks-for-joining .hentry,
.page-template-page-fullpage.page-you-are-a-contributor .hentry,
.page-template-page-fullpage.page-oops-wrong-membership-level .hentry, .page-template-page-upgrade-membership.page-terms-conditions .hentry,
.page-template-page-upgrade-membership.page-advertisers .hentry,
.page-template-page-upgrade-membership.page-privacy-policy .hentry,
.page-template-page-upgrade-membership.page-mu-app-version .hentry,
.page-template-page-upgrade-membership.page-about .hentry,
.page-template-page-upgrade-membership.page-account-cancelled .hentry,
.page-template-page-upgrade-membership.page-membership-expired .hentry,
.page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry,
.page-template-page-upgrade-membership.page-thanks-for-joining .hentry,
.page-template-page-upgrade-membership.page-you-are-a-contributor .hentry,
.page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry {
  padding-left: 380px; }
  .page-template-page-fullpage.page-terms-conditions .hentry .header-image,
  .page-template-page-fullpage.page-advertisers .hentry .header-image,
  .page-template-page-fullpage.page-privacy-policy .hentry .header-image,
  .page-template-page-fullpage.page-mu-app-version .hentry .header-image,
  .page-template-page-fullpage.page-about .hentry .header-image,
  .page-template-page-fullpage.page-account-cancelled .hentry .header-image,
  .page-template-page-fullpage.page-membership-expired .hentry .header-image,
  .page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .header-image,
  .page-template-page-fullpage.page-thanks-for-joining .hentry .header-image,
  .page-template-page-fullpage.page-you-are-a-contributor .hentry .header-image,
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .header-image, .page-template-page-upgrade-membership.page-terms-conditions .hentry .header-image,
  .page-template-page-upgrade-membership.page-advertisers .hentry .header-image,
  .page-template-page-upgrade-membership.page-privacy-policy .hentry .header-image,
  .page-template-page-upgrade-membership.page-mu-app-version .hentry .header-image,
  .page-template-page-upgrade-membership.page-about .hentry .header-image,
  .page-template-page-upgrade-membership.page-account-cancelled .hentry .header-image,
  .page-template-page-upgrade-membership.page-membership-expired .hentry .header-image,
  .page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .header-image,
  .page-template-page-upgrade-membership.page-thanks-for-joining .hentry .header-image,
  .page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .header-image,
  .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .header-image {
    left: calc( (100vw - 1366px) / 2 + 16px); }

.page-template-page-fullpage.page-account-cancelled .hentry .header-image,
.page-template-page-fullpage.page-membership-expired .hentry .header-image,
.page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .header-image,
.page-template-page-fullpage.page-thanks-for-joining .hentry .header-image,
.page-template-page-fullpage.page-you-are-a-contributor .hentry .header-image,
.page-template-page-fullpage.page-oops-wrong-membership-level .hentry .header-image, .page-template-page-upgrade-membership.page-account-cancelled .hentry .header-image,
.page-template-page-upgrade-membership.page-membership-expired .hentry .header-image,
.page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .header-image,
.page-template-page-upgrade-membership.page-thanks-for-joining .hentry .header-image,
.page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .header-image,
.page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .header-image {
  height: 405px; }
  .page-template-page-fullpage.page-account-cancelled .hentry .header-image .image,
  .page-template-page-fullpage.page-membership-expired .hentry .header-image .image,
  .page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .header-image .image,
  .page-template-page-fullpage.page-thanks-for-joining .hentry .header-image .image,
  .page-template-page-fullpage.page-you-are-a-contributor .hentry .header-image .image,
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .header-image .image, .page-template-page-upgrade-membership.page-account-cancelled .hentry .header-image .image,
  .page-template-page-upgrade-membership.page-membership-expired .hentry .header-image .image,
  .page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .header-image .image,
  .page-template-page-upgrade-membership.page-thanks-for-joining .hentry .header-image .image,
  .page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .header-image .image,
  .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .header-image .image {
    background-size: 660px auto;
    right: calc(50% - 155px); }

.page-template-page-fullpage.page-account-cancelled .hentry .article-header,
.page-template-page-fullpage.page-membership-expired .hentry .article-header,
.page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .article-header,
.page-template-page-fullpage.page-thanks-for-joining .hentry .article-header,
.page-template-page-fullpage.page-you-are-a-contributor .hentry .article-header,
.page-template-page-fullpage.page-oops-wrong-membership-level .hentry .article-header, .page-template-page-upgrade-membership.page-account-cancelled .hentry .article-header,
.page-template-page-upgrade-membership.page-membership-expired .hentry .article-header,
.page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .article-header,
.page-template-page-upgrade-membership.page-thanks-for-joining .hentry .article-header,
.page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .article-header,
.page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .article-header {
  width: 960px;
  margin: 10px 0 40px; }

.page-template-page-fullpage.page-account-cancelled .hentry .entry-content,
.page-template-page-fullpage.page-membership-expired .hentry .entry-content,
.page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .entry-content,
.page-template-page-fullpage.page-thanks-for-joining .hentry .entry-content,
.page-template-page-fullpage.page-you-are-a-contributor .hentry .entry-content,
.page-template-page-fullpage.page-oops-wrong-membership-level .hentry .entry-content, .page-template-page-upgrade-membership.page-account-cancelled .hentry .entry-content,
.page-template-page-upgrade-membership.page-membership-expired .hentry .entry-content,
.page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .entry-content,
.page-template-page-upgrade-membership.page-thanks-for-joining .hentry .entry-content,
.page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .entry-content,
.page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .entry-content {
  width: 740px; }
  .page-template-page-fullpage.page-account-cancelled .hentry .entry-content p,
  .page-template-page-fullpage.page-membership-expired .hentry .entry-content p,
  .page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .entry-content p,
  .page-template-page-fullpage.page-thanks-for-joining .hentry .entry-content p,
  .page-template-page-fullpage.page-you-are-a-contributor .hentry .entry-content p,
  .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .entry-content p, .page-template-page-upgrade-membership.page-account-cancelled .hentry .entry-content p,
  .page-template-page-upgrade-membership.page-membership-expired .hentry .entry-content p,
  .page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .entry-content p,
  .page-template-page-upgrade-membership.page-thanks-for-joining .hentry .entry-content p,
  .page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .entry-content p,
  .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .entry-content p {
    font-size: 28px;
    line-height: 40px; }

.page-template-page-fullpage.page-oops-wrong-membership-level .hentry .plans, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .plans {
  margin-left: calc(-1 * (100vw - 1366px) / 2 - 380px - (100vw - 1366px) / 2 - 38px); }

/* Dashboard */
@keyframes blink-copied-message {
  49%, 50% {
    opacity: 1; }
  0%, 100% {
    opacity: 0; } }

#content.dashboard .article-header .welcome-notice, #content.dashboard .article-header #copied-message, #content.faq .article-header .welcome-notice, #content.faq .article-header #copied-message {
  font-weight: 300; }

#content.dashboard .article-header #copied-message, #content.faq .article-header #copied-message {
  display: block;
  background: #3E7AFF;
  letter-spacing: 1px;
  height: 65px;
  line-height: 65px;
  color: #fff;
  padding: 0 26px;
  font-size: 21px;
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 18px 0 0 30px;
  opacity: 0;
  white-space: nowrap;
  animation-name: blink-copied-message;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-delay: 0.5s; }

#content.dashboard #tab-content1, #content.faq #tab-content1 {
  text-align: left; }

#content.dashboard .links, #content.faq .links {
  height: 85px;
  line-height: 86px;
  font-size: 18px;
  margin: 0 0 0 20px;
  color: #6B37D1;
  display: inline-block;
  width: 800px;
  box-sizing: border-box; }
  #content.dashboard .links:nth-of-type(1), #content.faq .links:nth-of-type(1) {
    border-bottom: 1px solid #CCCCCC;
    margin-top: 26px; }
  #content.dashboard .links:nth-of-type(2), #content.faq .links:nth-of-type(2) {
    margin-right: -5px; }
    #content.dashboard .links:nth-of-type(2):before, #content.faq .links:nth-of-type(2):before {
      display: none; }
  #content.dashboard .links span, #content.faq .links span {
    border-right: 1px solid #CCCCCC;
    font-size: 21px;
    font-weight: bold;
    height: 100%;
    display: inline-block;
    width: 244px;
    text-align: right;
    padding: 0 20px 0 0;
    margin-right: 20px;
    background: #fff;
    color: #1A1A1A;
    line-height: 84px;
    vertical-align: middle; }
  #content.dashboard .links input, #content.faq .links input {
    width: 435px;
    margin-left: 0; }

#content.dashboard .itunes-button, #content.faq .itunes-button {
  display: inline-block;
  line-height: 78px;
  height: 78px;
  font-size: 0;
  vertical-align: middle;
  padding-left: 30px;
  box-sizing: border-box;
  margin: 0;
  padding-left: 20px;
  padding-right: 20px; }
  #content.dashboard .itunes-button:nth-of-type(1), #content.dashboard .itunes-button:nth-of-type(2), #content.faq .itunes-button:nth-of-type(1), #content.faq .itunes-button:nth-of-type(2) {
    border-bottom: 1px solid #CCCCCC; }
  #content.dashboard .itunes-button:nth-of-type(2), #content.dashboard .itunes-button:nth-of-type(4), #content.faq .itunes-button:nth-of-type(2), #content.faq .itunes-button:nth-of-type(4) {
    padding-right: 50px; }
  #content.dashboard .itunes-button:before, #content.faq .itunes-button:before {
    font-weight: 400;
    color: #1A1A1A; }
  #content.dashboard .itunes-button:after, #content.faq .itunes-button:after {
    margin-right: 38px; }

#content.dashboard .links + span, #content.faq .links + span {
  margin: 0;
  padding: 29px 0 30px 62px; }
  #content.dashboard .links + span:nth-of-type(1), #content.faq .links + span:nth-of-type(1) {
    border-bottom: 1px solid #CCCCCC; }

#content.dashboard .itunes-button + span, #content.faq .itunes-button + span {
  margin: 0;
  padding: 29px 0 30px; }
  #content.dashboard .itunes-button + span:nth-of-type(2), #content.faq .itunes-button + span:nth-of-type(2) {
    border-bottom: 1px solid #CCCCCC; }

#content.dashboard .help-me, #content.faq .help-me {
  margin-right: 38px;
  margin-bottom: 0;
  margin-top: 45px; }

#content.dashboard h4, #content.faq h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 27px;
  margin: 0 0 36px; }

#content.faq .entry-content {
  width: 978px; }

.entry-content .mu-tabs label {
  padding: 26px 14px 26px 38px;
  margin: 0;
  font-size: 28px;
  height: 52px; }
  .entry-content .mu-tabs label:active:before, .entry-content .mu-tabs label:hover:before {
    width: calc(100% - 27px * 2);
    height: 1px;
    margin: 0 38px; }

.entry-content .mu-tabs #tab-content1 {
  padding-bottom: 0; }

.entry-content .mu-tabs [id^="tab"]:checked + label:before {
  width: calc(100% - 27px * 2);
  height: 1px;
  margin: 0 38px; }

#content.dashboard .entry-content .mu-tabs label {
  padding: 28px 0 26px; }

#content.dashboard .entry-content .mu-tabs #tab1 + label {
  margin-left: 36px; }

#content.dashboard .entry-content .mu-tabs #tab1 + label, #content.dashboard .entry-content .mu-tabs #tab2 + label, #content.dashboard .entry-content .mu-tabs #tab3 + label {
  margin-left: 30px;
  margin-right: 10px;
  font-size: 28px; }

#content.dashboard .entry-content .mu-tabs #tab-content1 {
  padding-top: 0px;
  margin-top: 20px; }

#content.faq .entry-content .mu-tabs {
  margin: 0 auto; }
  #content.faq .entry-content .mu-tabs > li:nth-of-type(1) label {
    left: 90px; }
  #content.faq .entry-content .mu-tabs > li:nth-of-type(2) label {
    left: calc((978px - 180px) / 6 * 1 + 90px); }
  #content.faq .entry-content .mu-tabs > li:nth-of-type(3) label {
    left: calc((978px - 180px) / 6 * 2 + 90px); }
  #content.faq .entry-content .mu-tabs > li:nth-of-type(4) label {
    left: calc((978px - 180px) / 6 * 3 + 90px); }
  #content.faq .entry-content .mu-tabs > li:nth-of-type(5) label {
    left: calc((978px - 180px) / 6 * 4 + 90px); }
  #content.faq .entry-content .mu-tabs > li:nth-of-type(6) label {
    left: calc((978px - 180px) / 6 * 5 + 90px); }
  #content.faq .entry-content .mu-tabs label {
    padding: 0; }

.page-plus #inner-content, .page-app #inner-content {
  overflow: visible; }

/* Plus */
.page-plus .entry-content {
  margin: 0 auto; }

.page-plus .devices {
  padding: 0 calc((1366px - 1076px) / 2);
  margin-left: 0;
  width: 100%; }

.page-plus .plans {
  left: calc((100vw - 1366px) / 2 * -1 - 38px);
  padding: 0 calc((100vw - 1366px) / 2);
  position: relative;
  width: 100vw; }

.page-template-page-mu-plus-plans #main:after {
  right: calc((100vw - 100%) / -2 + 32px); }

/* App */
.page-app #main {
  padding-bottom: 90px;
  padding-bottom: 22px; }
  .page-app #main .hentry:nth-child(2n+1), .page-app #main .entry-content {
    margin-right: 0;
    width: 100%; }
  .page-app #main .entry-content {
    padding: 32px 58px; }
    .page-app #main .entry-content p {
      width: 735px; }
  .page-app #main h1 {
    margin: 56px auto 0;
    padding: 32px 58px 5px;
    text-align: left; }
  .page-app #main h4 {
    font-size: 36px;
    text-align: left;
    padding: 0 calc((100vw - 970px) / 2 + 80px) 0; }
  .page-app #main h5 {
    font-size: 24px;
    text-align: left; }
  .page-app #main p {
    font-size: 23px;
    line-height: 32px;
    text-align: left; }
  .page-app #main .phone {
    height: 737px;
    margin-top: 0;
    position: absolute;
    top: -60px;
    left: 0; }
    .page-app #main .phone .image {
      height: 200vh;
      width: 200vw;
      background: transparent url("../images/app/phone-1366.png") no-repeat scroll left top/auto;
      left: calc(50% + 246px);
      top: 0;
      bottom: auto; }
  .page-app #main .features {
    width: 900px;
    position: relative;
    padding: 0 58px;
    height: 400px; }
    .page-app #main .features h4 {
      margin: 18px 0 0;
      padding: 0; }
    .page-app #main .features .row {
      padding: 0 0 55px 70px;
      float: left;
      width: calc(49% - 15px); }
      .page-app #main .features .row:nth-of-type(2n+1) {
        margin-right: 30px; }
      .page-app #main .features .row h5 {
        margin: 26px 0 0; }
      .page-app #main .features .row .image-retina {
        width: 240px;
        top: calc(85px - 100vh);
        left: 0; }
  .page-app #main .available {
    position: relative;
    top: 0;
    right: auto;
    width: 100%;
    text-align: center; }
    .page-app #main .available h4 {
      font-size: 36px;
      margin-top: 150px;
      margin-bottom: 53px; }
    .page-app #main .available div {
      display: inline-block;
      width: 358px; }
    .page-app #main .available .button {
      width: 309px;
      height: 91px;
      background-size: 262px auto;
      margin-bottom: 26px; }
  .page-app #main div.version-notes {
    margin-top: 20px;
    top: 800px;
    right: 0;
    text-align: center;
    width: 100%;
    display: block; }
    .page-app #main div.version-notes a {
      font-size: 18px; }

/* 404 */
.error404 #inner-content {
  width: 100%; }

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar2 .widget_join_plus {
  display: none; }

.sidebar2 .single-post-footer .widget_text {
  margin-left: calc((100vw - 100%) / -2); }

.widget_related_posts ul li {
  width: calc( ( 100% - 20px * 3 ) / 4); }
  .widget_related_posts ul li:first-child {
    width: calc( ( 100% - 20px * 3 ) / 4); }
    .widget_related_posts ul li:first-child .thumb a {
      height: 180px; }
    .widget_related_posts ul li:first-child h5 {
      font-size: 18px;
      line-height: 21px;
      min-height: 0; }
  .widget_related_posts ul li:nth-of-type(3n) {
    margin-right: 20px; }
  .widget_related_posts ul li:nth-of-type(n+4) {
    display: block;
    margin-right: 0; }
  .widget_related_posts ul li:nth-of-type(n+5) {
    display: none; }
  .widget_related_posts ul li .thumb a {
    height: 180px;
    padding-bottom: 12px; }
  .widget_related_posts ul li h5 {
    font-size: 18px;
    line-height: 21px;
    width: 100%;
    margin: 0 0 12px;
    min-height: 0; }
  .widget_related_posts ul li h6, .widget_related_posts ul li .byline {
    display: block; }
  .widget_related_posts ul li h6 {
    clear: both; }
    .widget_related_posts ul li h6 a {
      color: #1a1a1a;
      font-size: 14px;
      font-weight: 600;
      line-height: 16px;
      letter-spacing: 1px;
      text-decoration: none; }
  .widget_related_posts ul li .byline {
    margin: 0;
    line-height: 21px;
    font-size: 15px;
    letter-spacing: 1px; }
    .widget_related_posts ul li .byline .author a {
      text-decoration: none;
      display: block; }
    .widget_related_posts ul li .byline .entry-time {
      color: #666666; }

.widget_join_plus .content {
  background-position: center -45px; }

.single-post-sidebar .widget_join_plus {
  margin-bottom: 0; }

.single-post-sidebar .widget_text {
  margin-bottom: 60px; }

/* Google Ads */
.home-1000-area-3-sidebar, .single-post-sidebar {
  clear: both;
  margin-bottom: 60px; }
  .home-1000-area-3-sidebar .widget_text, .single-post-sidebar .widget_text {
    padding: 30px; }
    .home-1000-area-3-sidebar .widget_text:after, .single-post-sidebar .widget_text:after {
      bottom: -40px;
      height: 40px; }

/* search widget */
/*********************
FOOTER STYLES
*********************/
.footer .copyright {
  background: none; }

@media only screen and (min-width: 601px) {
  html #wpadminbar {
    top: 0; } }

@media only screen and (min-width: 374px) {
  #ufaq-ajax-text-input {
    max-width: 284px; } }

@media only screen and (min-width: 374px) and (max-width: 479px) {
  #content.faq #ufaq-ajax-results {
    min-height: 330px; }
    #content.faq #ufaq-ajax-results:after {
      top: 80px; } }

@media only screen and (min-width: 480px) and (max-width: 639px) {
  #content.faq .hentry header h1 {
    font-size: 36px;
    padding: 27px 0 40px;
    font-weight: 500; }
  #content.faq #content.faq #tab-content6 {
    padding-top: 240px; }
  #content.faq .ufaq-faq-category {
    margin-bottom: 42px; }
  #content.faq .ufaq-faq-div {
    margin: -10px 0 0; }
  #content.faq .ufaq-faq-category-title h4 {
    font-size: 24px;
    margin-bottom: 20px; }
  #content.faq .ufaq-faq-title-text h4 {
    font-size: 21px;
    width: 100%;
    font-weight: 400;
    margin: 0 !important; }
  #content.faq .ufaq-faq-body p {
    font-size: 18px;
    line-height: 21px; }
  #content.faq .ufaq-faq-body .size-full, #content.faq .ufaq-faq-body .size-large {
    max-width: 100%;
    margin-left: 0;
    width: auto; }
  #content.faq .help {
    margin-bottom: 118px; }
    #content.faq .help h4 {
      font-size: 24px; }
  #content.faq .entry-content .mu-tabs {
    margin-top: -5px; }
    #content.faq .entry-content .mu-tabs > li:nth-of-type(2n) label {
      left: 0; }
    #content.faq .entry-content .mu-tabs > li:nth-of-type(3n+2) label {
      left: 33.33%; }
    #content.faq .entry-content .mu-tabs > li:nth-of-type(3n+3) label {
      left: 66.66%; }
    #content.faq .entry-content .mu-tabs > li:nth-of-type(n) label {
      top: 0; }
    #content.faq .entry-content .mu-tabs > li:nth-of-type(n+4) label {
      top: 102px; }
    #content.faq .entry-content .mu-tabs label {
      padding: 0;
      width: 33.33%; }
    #content.faq .entry-content .mu-tabs .tab-content {
      padding-top: 236px; }
    #content.faq .entry-content .mu-tabs #tab-content6 {
      top: 25px; }
  #content.faq #ufaq-ajax-results:after {
    top: 90px; } }

@media only screen and (min-width: 480px) {
  #content.faq .ufaq-faq-div:before, #content.faq .ufaq-faq-div:after {
    top: 6px; }
  #content.faq .ufaq-faq-div:after {
    top: 3px; } }

@media only screen and (min-width: 830px) {
  #content.faq .hentry header h1 {
    font-size: 36px;
    padding: 19px 0 48px;
    font-weight: 500; } }

@media only screen and (min-width: 670px) and (max-width: 1000px) {
  .bar-message .learn-more a {
    line-height: 58px;
    width: 100%; } }

@media only screen and (min-width: 1000px) and (max-width: 1130px) {
  #content.dashboard h4 + .episodes li p .title {
    margin-left: 26px; }
  #content.dashboard h4 + .episodes li .duration {
    display: none; } }

@media only screen and (min-width: 1000px) and (max-width: 1100px) {
  #content.dashboard .left h4 a::after, #content.faq .left h4 a::after {
    font-size: 13px;
    letter-spacing: 0; } }

@media only screen and (min-width: 1100px) {
  .hentry header .image {
    padding-bottom: 145px; }
    .hentry header .image:not(.podcast) .post-categories {
      height: auto;
      overflow: visible; }
  .single .entry-content, .single .entry-content:not(.no-rainbow) {
    padding: 28px 38px 0; }
  .single .entry-content, .single .entry-content:not(.no-rainbow) {
    width: 640px;
    margin-left: calc((100vw - 38px * 2 - 640px - 300px - 38px ) / 2 + 38px); }
  .single:not(.single-podcast) .hentry header .image h6 {
    height: 26px;
    position: relative;
    top: 138px; }
  .single:not(.single-podcast) .hentry header .image .post-categories {
    position: absolute;
    right: 0;
    width: calc((100vw - 38px * 2 - 640px - 300px - 38px ) / 2 + 300px + 38px + 5px);
    margin: 0;
    bottom: 0;
    box-sizing: border-box;
    text-align: left;
    padding-left: 0px;
    padding-right: 38px;
    padding-right: calc((100vw - 38px * 2 - 640px - 300px - 38px ) / 2 + 38px); }
    .single:not(.single-podcast) .hentry header .image .post-categories li {
      margin: 0 5px 14px; }
  .single:not(.single-podcast) .header-bottom {
    width: 640px;
    margin: -160px auto 0;
    background: white;
    position: relative;
    z-index: 1;
    padding: 0;
    -webkit-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1); }
    .single:not(.single-podcast) .header-bottom:before {
      display: block;
      content: "";
      background: #fff;
      position: absolute;
      top: 160px;
      width: 20px;
      z-index: -1;
      right: -20px;
      height: calc(100% - 160px); }
    .single:not(.single-podcast) .header-bottom:after {
      display: block;
      content: "";
      background: #fff;
      height: 20px;
      position: absolute;
      width: 660px;
      z-index: 2; }
  .single:not(.single-podcast) .header-bottom, .single .header-bottom {
    margin-left: calc((100vw - 38px * 2 - 640px - 300px - 38px ) / 2 + 38px); }
  .article-footer {
    margin-left: calc((100vw - 38px * 2 - 640px - 300px - 38px) / 2 + 38px); }
  .widget_related_posts .widgettitle {
    display: block; } }

@media only screen and (min-width: 1200px) {
  .single .entry-content, .single .entry-content:not(.no-rainbow) {
    margin-left: calc((100vw - 76px * 2 - 640px - 360px - 76px ) / 2 + 76px); }
  .single:not(.single-podcast) .header-bottom, .single .header-bottom {
    margin-left: calc((100vw - 76px * 2 - 640px - 360px - 76px ) / 2 + 76px); }
  .single:not(.single-podcast) .hentry header .image .post-categories {
    width: calc((100vw - 38px * 2 - 640px - 300px - 38px ) / 2 + 360px + 32px);
    padding-right: calc((100vw - 76px * 2 - 640px - 360px - 76px ) / 2 + 76px + 38px); }
  .article-footer {
    margin-left: calc((100vw - 76px * 2 - 640px - 360px - 76px) / 2 + 76px); }
  .sidebar2 .widget_related_posts {
    padding: 0 38px; }
  .single-post-sidebar .widget_recent_posts_with_thumbs {
    margin-bottom: -90px; } }

@media only screen and (min-width: 1366px) {
  .single .entry-content, .single .entry-content:not(.no-rainbow) {
    margin-left: 145px; }
  .single:not(.single-podcast) .header-bottom, .single .header-bottom {
    margin-left: 145px; }
  .single:not(.single-podcast) .hentry header .image .post-categories {
    padding-right: 183px;
    width: 548px; } }

@media only screen and (min-width: 640px) and (max-width: 999px) {
  .cover {
    overflow: hidden; }
  .hentry.welcome.cover-3, .hentry.welcome.cover-4 {
    float: left;
    width: calc((50%) - 1px); }
  .hentry.welcome.cover-3 {
    margin-right: 2px; } }

/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
