@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto; }

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none; }

small, .small {
  font-size: 75%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

ol,
ul {
  padding: 0;
  list-style-type: none; }

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .cf:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after {
    clear: both; }

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/******************************************************************
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: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
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: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 639px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; } }

/* Portrait tablet to landscape */
@media (min-width: 640px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; } }

/* Earlier sidebar for ads */
@media (min-width: 750px) {
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 300px; }
  .d-2of7.sidebar {
    margin-left: 24px; }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: calc(100% - 324px - 18px);
    padding-right: 0;
    padding-left: 0; }
  body:not(.single) #main {
    padding-left: 18px; }
  body:not(.single) #sidebar1 {
    padding-right: 18px; }
  .single .d-2of7.sidebar {
    display: none; }
  .single .d-5of7 {
    width: 100%; } }

/* Earlier sidebar for ads */
@media (min-width: 935px) {
  .single .d-5of7 {
    float: left;
    float: left;
    padding-right: 0.75em;
    width: calc(100% - 300px - 40px);
    padding-right: 0;
    padding-left: 0; }
  .single .d-2of7.sidebar {
    display: block;
    margin-top: calc(590px + 38px);
    width: 300px;
    position: relative;
    z-index: 1;
    margin-left: 20px; }
    .single .d-2of7.sidebar .single-post-sidebar {
      display: block; }
  .ai-sticky {
    width: 300px; }
  .single.small-podcast-image.podcast-has-player .d-2of7.sidebar {
    margin-top: calc(590px + 287px + 38px); }
  .single.small-podcast-image.store-link .d-2of7.sidebar {
    margin-top: calc((100vw - (26px * 2 + 10px)) * 306 / 585 + 223px + 38px); }
  .single.fullwidth-podcast-image.podcast-has-player .d-2of7.sidebar {
    margin-top: calc(590px - 170px + 38px); } }

/* Landscape to small desktop */
@media (min-width: 1000px) {
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: calc(100% - 324px); }
  body:not(.single) #main {
    padding-left: 0; }
  body:not(.single) #sidebar1 {
    padding-right: 0; }
  .single .d-5of7 {
    width: calc(100% - 300px - 76px); }
  .single .d-2of7.sidebar {
    margin-left: 38px;
    margin-top: calc(590px - 73px + 38px); }
  .single.small-podcast-image.podcast-has-player .d-2of7.sidebar, .single.fullwidth-podcast-image.podcast-has-player .d-2of7.sidebar {
    margin-top: calc(590px - 40px + 38px); }
  .single.small-podcast-image.store-link .d-2of7.sidebar {
    margin-top: calc(590px + 26px + 38px); } }

/* Landscape to small desktop */
@media (min-width: 1100px) {
  .single .d-5of7 {
    width: calc((100vw - 38px * 2 - 640px - 300px - 38px ) / 2 + 640px + 38px); }
  .single .d-2of7.sidebar, .single.small-podcast-image .d-2of7.sidebar {
    margin-top: calc(590px + 25px + 38px); } }

/* Landscape to small desktop */
@media (min-width: 1200px) {
  .single .d-5of7 {
    width: calc((100vw - 76px * 2 - 640px - 360px - 76px ) / 2 + 640px + 76px); }
  .single .d-2of7.sidebar, .single .single-post-sidebar .ai-sticky {
    width: 360px; } }

/* Landscape to small desktop */
@media (min-width: 1328px) {
  .d-2of7, .ai-sticky {
    float: left;
    padding-right: 0.75em;
    width: 360px; }
  .d-2of7.sidebar {
    margin-left: 24px; }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: calc(100% - 384px);
    padding-right: 0; } }

/* Landscape to small desktop */
@media (min-width: 1366px) {
  .d-2of7.sidebar {
    margin-left: 38px; }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: calc(100% - 398px);
    padding-right: 0; }
  .single .d-5of7 {
    width: 785px; }
  .single.small-podcast-image.store-link .d-2of7.sidebar {
    margin-top: calc(590px + 51px + 38px); } }

[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"; }

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/* 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; } }

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
html {
  touch-action: manipulation; }
  html #wpadminbar {
    top: -46px; }

body {
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #1A1A1A;
  background-color: #fff;
  position: relative; }

#content {
  overflow: hidden; }

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 100%;
  margin: 0 auto; }

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

#container {
  position: relative;
  z-index: 0; }

#content {
  padding-top: calc(50px);
  position: relative;
  z-index: -1; }

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #D2D2D2;
  outline: none;
  transition: color .25s ease-in-out;
  -moz-transition: color .25s ease-in-out;
  -webkit-transition: color .25s ease-in-out;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:hover, a:focus, a:visited:hover, a:visited:focus {
    color: #D2D2D2;
    outline: none; }
  a:active, a:visited:active {
    outline: none; }
  a:link, a:visited:link {
    /*
		this highlights links on iPhones/iPads.
		so it basically works like the :hover selector
		for mobile devices.
		*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
    outline: none; }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
	if you're going to use webfonts, be sure to check your weights
	http://css-tricks.com/watch-your-font-weight/
	*/
  /* removing text decoration from all headline links */ }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none; }

h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em;
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif; }

h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em;
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif; }

h3, .h3 {
  font-size: 1.125em;
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif; }

h4, .h4 {
  font-size: 1.1em;
  font-weight: 700;
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif; }

h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif; }

h6 {
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif; }

p {
  -webkit-hyphens: initial;
  -epub-hyphens: initial;
  -moz-hyphens: initial;
  hyphens: initial; }

/*********************
POSTS & CONTENT STYLES
*********************/
.archive-title {
  margin: 0;
  display: block;
  height: 100px;
  line-height: 100px;
  background-color: #0A0039;
  color: #fff;
  font-size: 31px;
  font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 0 0 0 22px;
  margin-bottom: -3px;
  background-position: center;
  background-size: cover;
  position: relative; }
  .archive-title:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(39, 0, 120, 0.49);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0; }
  .archive-title .content {
    z-index: 1;
    position: relative; }
  .archive-title .posts {
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 300;
    padding-left: 32px; }

.ribbon .inner-image.old, .thumb.ribbon, article.ribbon {
  position: relative; }

.ribbon:not(.podcasts):before,
.ribbon.podcasts:after,
.ribbon .inner-image.old:after,
.ribbon .image.full:after,
.thumb.ribbon:before {
  content: "";
  display: block;
  right: 0;
  width: 62px;
  height: 62px;
  background-image: url("../images/plus-label.png");
  position: absolute;
  z-index: 2;
  background-color: transparent;
  left: auto; }

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

.page-latest .archive-title {
  background-image: url("../images/search.png"); }

.archive.date .archive-title {
  background-image: url("../images/datetime.png"); }

.archive.tag .archive-title {
  background-image: url("../images/tags.png"); }

.search-results:after, .search-no-results:after {
  display: none; }

.search-results .archive-title, .search-no-results .archive-title {
  background-image: url("../images/search.png"); }

.seasons .archive-title {
  background-image: url("../images/seasons.png"); }

.archive .archive-title {
  padding: 16px;
  font-size: 24px;
  line-height: 40px; }
  .archive .archive-title .content {
    display: inline-block; }
  .archive .archive-title .archive-type {
    font-size: 16px;
    line-height: 14px;
    display: block; }
  .archive .archive-title .posts {
    font-size: 18px;
    line-height: 18px;
    display: block;
    padding: 0;
    margin-right: -8px;
    text-align: right; }

.archive.author #inner-content {
  position: relative; }

.archive.author .archive-title {
  height: 84px;
  line-height: 30px; }
  .archive.author .archive-title .content {
    margin-top: -5px;
    padding-left: 62px; }
  .archive.author .archive-title .posts {
    margin-top: 2px; }

.archive.author .avatar {
  border-radius: 50%;
  display: block;
  height: 48px;
  left: 16px;
  position: absolute;
  top: 8px;
  width: 48px;
  z-index: 2; }
  .archive.author .avatar img {
    top: 0;
    left: 0;
    margin: 0; }
  .archive.author .avatar .base {
    background-color: #e5d9ed;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%; }
  .archive.author .avatar span:before {
    color: #e5d9ed;
    display: inline-block;
    font-size: 29px;
    line-height: 48px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 1; }
  .archive.author .avatar span:after {
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 34px;
    left: 7px;
    position: absolute;
    top: 7px;
    width: 34px;
    background: #160036;
    background: -moz-linear-gradient(left, #160036 0%, #380091 41%, #ff002b 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #160036), color-stop(41%, #380091), color-stop(100%, #ff002b));
    background: -webkit-linear-gradient(left, #160036 0%, #380091 41%, #ff002b 100%);
    background: -o-linear-gradient(left, #160036 0%, #380091 41%, #ff002b 100%);
    background: -ms-linear-gradient(left, #160036 0%, #380091 41%, #ff002b 100%);
    background: linear-gradient(to right, #160036 0%, #380091 41%, #ff002b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#160036', endColorstr='#ff002b', GradientType=1 ); }
  .archive.author .avatar img {
    width: 100%; }

.archive.author .author-meta {
  padding: 0; }

.archive.author .author-desc, .archive.author .author-social {
  background: #FF002C;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  padding: 16px 16px;
  font-weight: 300;
  letter-spacing: 1px; }

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

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

.archive.author .author-desc a {
  color: #ffffff;
  text-decoration: none;
  padding: 5px 0px 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6); }
  .archive.author .author-desc a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid #ffffff; }

.archive.author .author-social {
  padding-top: 20px;
  margin-top: 0;
  margin-bottom: -6px;
  font-size: 18px;
  vertical-align: middle; }
  .archive.author .author-social a {
    text-decoration: none;
    font-size: 0;
    display: inline-block;
    width: 34px;
    height: 34px;
    vertical-align: middle;
    margin-left: 12px;
    margin-right: 6px; }
    .archive.author .author-social a:active span, .archive.author .author-social a:hover span {
      color: #ddc9ea;
      opacity: 1; }
    .archive.author .author-social a:first-child span {
      font-size: 40px; }
    .archive.author .author-social a span {
      display: inline-block;
      opacity: 0.71;
      color: #fff;
      font-size: 33px;
      line-height: 28px; }
  .archive.author .author-social .and {
    display: none; }

.search-results .archive-title, .search-no-results .archive-title {
  padding-left: calc(16px * 2 + 32px);
  position: relative; }
  .search-results .archive-title:after, .search-no-results .archive-title:after {
    display: block;
    content: "";
    background: none;
    font-family: "Icons";
    color: #fff;
    height: 32px;
    width: 32px;
    position: absolute;
    top: calc(50% - 16px);
    left: 16px;
    font-size: 32px;
    line-height: 32px; }
  .search-results .archive-title .content, .search-no-results .archive-title .content {
    line-height: 68px; }

.bar-message {
  height: 60px;
  position: relative;
  margin: 20px 0;
  z-index: 1;
  display: none; }
  .bar-message .message {
    color: #fff;
    display: inline-block;
    font-size: 18px;
    height: 60px;
    padding: 11px 13px;
    position: relative;
    width: 198px;
    line-height: 22px;
    background: #221a50;
    background: -moz-linear-gradient(23deg, #221a50 0%, #3e3b9c 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, #221a50), color-stop(100%, #3e3b9c));
    background: -webkit-linear-gradient(23deg, #221a50 0%, #3e3b9c 100%);
    background: -o-linear-gradient(23deg, #221a50 0%, #3e3b9c 100%);
    background: -ms-linear-gradient(23deg, #221a50 0%, #3e3b9c 100%);
    background: linear-gradient(23deg, #221a50 0%, #3e3b9c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#221a50', endColorstr='#3e3b9c', GradientType=1 ); }
    .bar-message .message:before {
      background: #fff;
      content: "";
      height: 50%;
      position: absolute;
      right: -2px;
      top: 0;
      width: 2px;
      z-index: 1;
      -webkit-transform-origin: 0 100% 0;
      -ms-transform-origin: 0 100% 0;
      transform-origin: 0 100% 0;
      -webkit-transform: skew(198deg);
      -ms-transform: skew(198deg);
      transform: skew(198deg);
      z-index: 1; }
    .bar-message .message:after {
      background: #fff;
      bottom: 0;
      content: "";
      height: 50%;
      position: absolute;
      right: -2px;
      width: 2px;
      z-index: 1;
      -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
      transform-origin: 100% 0;
      -webkit-transform: skew(-18deg);
      -ms-transform: skew(-18deg);
      transform: skew(-18deg);
      z-index: 1; }
    .bar-message .message div:before {
      background: #58B063;
      content: "";
      height: 50%;
      position: absolute;
      right: -16px;
      top: 0;
      width: 14px;
      z-index: 1;
      -webkit-transform-origin: 0 100% 0;
      -ms-transform-origin: 0 100% 0;
      transform-origin: 0 100% 0;
      -webkit-transform: skew(198deg);
      -ms-transform: skew(198deg);
      transform: skew(198deg);
      z-index: 1; }
    .bar-message .message div:after {
      background: #58B063;
      bottom: 0;
      content: "";
      height: 50%;
      position: absolute;
      right: -15px;
      width: 14px;
      z-index: 1;
      -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
      transform-origin: 100% 0;
      -webkit-transform: skew(-18deg);
      -ms-transform: skew(-18deg);
      transform: skew(-18deg);
      z-index: 1; }
    .bar-message .message.hover div:before, .bar-message .message.hover div:after {
      background-color: #2fab81; }
  .bar-message .learn-more {
    background: #58B063;
    height: 60px;
    display: inline-block;
    position: absolute;
    z-index: -1;
    margin-left: -15px;
    width: calc(100vw - 198px + 4px); }
    .bar-message .learn-more:active, .bar-message .learn-more:hover {
      background-color: #2fab81; }
    .bar-message .learn-more:before {
      background: #fff;
      content: "";
      height: 50%;
      position: absolute;
      right: -16px;
      top: 0;
      width: 16px;
      z-index: 1;
      -webkit-transform-origin: 0 100% 0;
      -ms-transform-origin: 0 100% 0;
      transform-origin: 0 100% 0;
      -webkit-transform: skew(198deg);
      -ms-transform: skew(198deg);
      transform: skew(198deg);
      z-index: 1; }
    .bar-message .learn-more:after {
      background: #fff;
      bottom: 0;
      content: "";
      height: 50%;
      position: absolute;
      right: -16px;
      width: 16px;
      z-index: 1;
      -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
      transform-origin: 100% 0;
      -webkit-transform: skew(-18deg);
      -ms-transform: skew(-18deg);
      transform: skew(-18deg);
      z-index: 1; }
    .bar-message .learn-more a {
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      width: 100%;
      text-align: center;
      line-height: 60px;
      display: inline-block;
      padding-left: 10px; }

.hentry.welcome {
  position: relative;
  margin-bottom: 2px; }
  .hentry.welcome a {
    line-height: 0;
    display: block;
    position: relative; }
  .hentry.welcome > a {
    width: 100%;
    height: calc(100vw * 205 / 319);
    background-size: cover; }
    .hentry.welcome > a:after {
      display: block;
      content: "";
      width: 100%;
      height: 40%;
      position: absolute;
      top: 0;
      left: 0;
      background: transparent;
      background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
      background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.7)), color-stop(100%, rgba(255, 255, 255, 0)));
      background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
      background: -o-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
      background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff', GradientType=0 ); }
  .hentry.welcome.cover-1 > a {
    height: calc(100vw * 219 / 319); }
    .hentry.welcome.cover-1 > a:after {
      height: 180px; }
  .hentry.welcome.cover-2 > a:after {
    height: 30%; }
  .hentry.welcome h2 {
    position: absolute;
    top: 0;
    font-weight: 600;
    padding: 15px;
    line-height: 26px;
    font-size: 22px;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    width: 100%;
    z-index: 1; }
    .hentry.welcome h2 > div {
      font-weight: 300;
      font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-align: center;
      width: 100%;
      display: inline-block; }
    .hentry.welcome h2 .podcast {
      margin-top: 8px;
      font-size: 24px;
      font-weight: 500; }
    .hentry.welcome h2 .number {
      font-size: 50px;
      line-height: 70px;
      font-weight: 300; }
    .hentry.welcome h2 .featuring {
      font-size: 16px;
      text-transform: uppercase;
      font-weight: 300; }
    .hentry.welcome h2 .author {
      font-size: 22px;
      line-height: 28px; }
  .hentry.welcome h6 {
    position: absolute;
    bottom: 0;
    color: #fff;
    padding: 15px;
    margin: 0; }
    .hentry.welcome h6 .post-categories li {
      float: left;
      margin-top: 10px;
      margin-right: 10px;
      -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.15);
      -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.15);
      box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.15); }
      .hentry.welcome h6 .post-categories li a {
        font-size: 16px;
        line-height: 28px;
        padding: 0 10px;
        background: #fff;
        text-decoration: none;
        color: #1A1A1A; }
        .hentry.welcome h6 .post-categories li a:active, .hentry.welcome h6 .post-categories li a:hover {
          color: #662D91;
          background: #FFFEF1; }

.hentry > a {
  display: block;
  position: relative; }
  .hentry > a > .image {
    height: calc(100vw / 1.91616);
    background-position: center center;
    background-size: cover;
    position: relative; }
    .hentry > a > .image:after {
      content: "";
      display: block;
      background: #662D91;
      opacity: 0;
      position: absolute;
      z-index: 1;
      width: 100%;
      height: 100%;
      top: 0;
      transition: all .25s ease-in-out;
      -webkit-transition: all .25s ease-in-out; }
    .hentry > a > .image:active:after, .hentry > a > .image:hover:after {
      opacity: 0.1; }
  .hentry > a > .image_number {
    display: block;
    height: 100%;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%; }
    .hentry > a > .image_number .number {
      font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 76px;
      font-weight: 100;
      color: #fff;
      top: 50%;
      position: relative;
      line-height: 76px;
      margin-top: -32px; }
  .hentry > a:active + .article-header .entry-title a, .hentry > a:hover + .article-header .entry-title a {
    color: #662D91; }

.hentry header .image.old {
  background: #bbc7b3;
  background: -moz-linear-gradient(left, #bbc7b3 0%, #e0bfd8 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #bbc7b3), color-stop(100%, #e0bfd8));
  background: -webkit-linear-gradient(left, #bbc7b3 0%, #e0bfd8 100%);
  background: -o-linear-gradient(left, #bbc7b3 0%, #e0bfd8 100%);
  background: -ms-linear-gradient(left, #bbc7b3 0%, #e0bfd8 100%);
  background: linear-gradient(to right, #bbc7b3 0%, #e0bfd8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bbc7b3', endColorstr='#e0bfd8', GradientType=1 );
  overflow: hidden; }
  .hentry header .image.old.podcasts {
    background: #DCF0FF; }
    .hentry header .image.old.podcasts.player .inner-image {
      box-shadow: none;
      width: 100%;
      height: calc(100vw * 168 / 320);
      margin: 0 0 56px;
      position: relative; }
    .hentry header .image.old.podcasts.player h6 {
      position: absolute;
      bottom: -60px;
      right: 0;
      width: 100%; }
      .hentry header .image.old.podcasts.player h6 .post-categories {
        padding: 0 10px;
        text-align: center;
        width: 100%; }
  .hentry header .image.old .inner-image.old {
    background-position: center center;
    background-size: cover;
    -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.old .store-link {
    height: 150px;
    width: 100%;
    margin: 15px auto 40px;
    padding: 18px 20px;
    background: #3e3b9c;
    background: -moz-linear-gradient(left, #3e3b9c 0%, #0a0039 96%, #0a0039 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #3e3b9c), color-stop(96%, #0a0039), color-stop(100%, #0a0039));
    background: -webkit-linear-gradient(left, #3e3b9c 0%, #0a0039 96%, #0a0039 100%);
    background: -o-linear-gradient(left, #3e3b9c 0%, #0a0039 96%, #0a0039 100%);
    background: -ms-linear-gradient(left, #3e3b9c 0%, #0a0039 96%, #0a0039 100%);
    background: linear-gradient(to right, #3e3b9c 0%, #0a0039 96%, #0a0039 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3e3b9c', endColorstr='#0a0039', GradientType=1 ); }
    .hentry header .image.old .store-link .text {
      text-align: center;
      color: #fff;
      font-size: 18px;
      line-height: 24px;
      letter-spacing: 1px;
      font-weight: 300;
      max-width: 280px;
      margin: 0 auto; }
    .hentry header .image.old .store-link .button {
      display: block;
      width: 228px;
      height: 50px;
      background: #32BA93;
      color: #fff;
      font-size: 21px;
      line-height: 50px;
      text-align: center;
      text-decoration: none;
      letter-spacing: 2px;
      margin: 16px auto;
      font-weight: 600; }

.hentry header .image.full {
  overflow: hidden; }

.hentry header .image {
  background-position: center center;
  background-size: cover;
  position: relative; }
  .hentry header .image .inner-image {
    margin-bottom: 15px;
    width: calc( 100vw);
    height: calc( ( 100vw - (15px * 2 + 5px) ) * 147 / 282); }
  .hentry header .image h6 {
    margin: 0 0 4px; }
  .hentry header .image .post-categories {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    margin: 0; }
    .hentry header .image .post-categories li {
      display: inline-block;
      margin: 0 6px 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 .post-categories li a {
        font-size: 16px;
        line-height: 28px;
        display: block;
        padding: 0 14px 0;
        background: #fff;
        text-decoration: none;
        color: #1A1A1A;
        margin: 0; }
        .hentry header .image .post-categories li a:active, .hentry header .image .post-categories li a:hover {
          color: #662D91;
          background: #FFFEF1; }

.hentry header h1 {
  font-size: 26px;
  line-height: 30px;
  padding: 21px 16px 12px;
  letter-spacing: 1px;
  font-weight: 700;
  letter-spacing: 1px; }

.hentry header h2 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px; }
  .hentry header h2 a {
    color: #1A1A1A; }
    .hentry header h2 a:active, .hentry header h2 a:hover {
      color: #662D91; }

.hentry header h2.single-title {
  color: #fff;
  font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  vertical-align: middle;
  text-align: center;
  font-weight: 200;
  line-height: 52px;
  display: none; }
  .hentry header h2.single-title .number {
    font-size: 52px; }
  .hentry header h2.single-title .author {
    font-size: 16px;
    line-height: 20px; }

.hentry header h6 {
  margin: 7px 0 8px;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px; }
  .hentry header h6 a {
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    line-height: 20px;
    padding: 6px 12px;
    background: #efefef;
    margin-right: 5px;
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 9px; }
    .hentry header h6 a:active, .hentry header h6 a:hover {
      color: #662d91;
      background-color: #eee6f5; }

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

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

.hentry header .entry-author {
  color: #1A1A1A;
  font-size: 16px;
  display: block;
  line-height: 20px;
  letter-spacing: 1px;
  margin-top: 0;
  font-weight: 400; }
  .hentry header .entry-author a {
    color: #1A1A1A;
    text-decoration: none; }
    .hentry header .entry-author a:active, .hentry header .entry-author a:hover {
      color: #EE1F34; }

.hentry header .entry-time {
  font-size: 16px;
  color: #666666;
  display: inline-block;
  letter-spacing: 1px;
  margin-top: 3px; }
  .hentry header .entry-time a {
    text-decoration: none;
    color: #999999; }
    .hentry header .entry-time a:active, .hentry header .entry-time a:hover {
      color: #1B75BC; }

.hentry header .single .entry-author, .hentry header .single .entry-time {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 20px; }

.hentry header .social-links {
  text-align: center;
  margin: 0; }
  .hentry header .social-links li {
    display: inline-block;
    border-radius: 2px; }
    .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: block;
      color: #fff;
      font-size: 16px;
      line-height: 24px;
      text-transform: uppercase;
      text-decoration: none;
      width: calc( ( 100vw - 32px ) / 3);
      padding-left: 10px;
      position: relative;
      vertical-align: middle;
      vertical-align: -moz-middle-with-baseline; }
      .hentry header .social-links li a span {
        display: block;
        content: "";
        border-radius: 1px;
        width: 12px;
        height: 12px;
        font-size: 16px;
        position: absolute;
        top: 4px;
        color: #fff;
        left: calc( ( 100vw - 32px ) / 3 / 8); }

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0; }

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
.center {
  text-align: center; }

/* post meta */
.single .byline {
  margin: 0 16px; }

/* entry content */
.entry-content, .entry-content:not(.no-rainbow) {
  padding: 22px 16px 0;
  /*
			image alignment on a screen this size may be
			a bit difficult. It's set to start aligning
			and floating images at the next breakpoint,
			but it's up to you. Feel free to change it up.
			*/ }
  .entry-content h2, .entry-content h3, .entry-content:not(.no-rainbow) h2, .entry-content:not(.no-rainbow) h3 {
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 1px;
    font-weight: 600; }
  .entry-content p, .entry-content:not(.no-rainbow) p {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: 1px; }
    .entry-content p:first-child strong, .entry-content:not(.no-rainbow) p:first-child strong {
      font-size: 16px;
      line-height: 20px; }
    .entry-content p + a img, .entry-content:not(.no-rainbow) p + a img {
      margin-bottom: 20px; }
    .entry-content p strong a, .entry-content:not(.no-rainbow) p strong a {
      font-weight: bold; }
  .entry-content ol, .entry-content:not(.no-rainbow) ol {
    list-style: none;
    counter-reset: li-counter;
    padding-left: 25px; }
    .entry-content ol > li, .entry-content:not(.no-rainbow) ol > li {
      padding-left: 16px;
      letter-spacing: 1px; }
      .entry-content ol > li:before, .entry-content:not(.no-rainbow) ol > li:before {
        position: absolute;
        top: -2px;
        left: -23px;
        width: 27px;
        height: 27px;
        line-height: 29px;
        text-align: center;
        border-radius: 50%;
        background-color: #DBC0FF;
        font-weight: 600;
        padding-left: 1px;
        box-sizing: border-box;
        content: counter(li-counter);
        counter-increment: li-counter; }
  .entry-content ul li, .entry-content:not(.no-rainbow) ul li {
    line-height: 20px;
    font-size: 16px;
    margin-bottom: 4px;
    letter-spacing: 1px;
    position: relative;
    padding-left: 18px; }
    .entry-content ul li a, .entry-content:not(.no-rainbow) ul li a {
      color: #0071BC;
      text-decoration: none;
      line-height: 24px; }
    .entry-content ul li:before, .entry-content:not(.no-rainbow) ul li:before {
      content: "";
      display: block;
      position: absolute;
      top: 7px;
      left: 0;
      background: #4D4D4D;
      border-radius: 50%;
      width: 7px;
      height: 7px;
      margin: 0 8px 0 0;
      vertical-align: middle; }
  .entry-content h3.sponsors, .entry-content h3.sponsors + ul, .entry-content:not(.no-rainbow) h3.sponsors, .entry-content:not(.no-rainbow) h3.sponsors + ul {
    background: #FFF2E6;
    position: relative;
    z-index: 1; }
    .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 {
      display: block;
      content: "";
      background: #FFF2E6;
      position: absolute;
      top: 0;
      height: 100%;
      width: 100vw;
      z-index: -1;
      left: calc((100% - 100vw) / 2); }
  .entry-content h3.sponsors, .entry-content:not(.no-rainbow) h3.sponsors {
    font-size: 16px;
    line-height: 20px;
    padding: 16px 0;
    margin-bottom: 0;
    letter-spacing: 0; }
    .entry-content h3.sponsors + ul, .entry-content:not(.no-rainbow) h3.sponsors + ul {
      font-size: 16px;
      margin-top: 0;
      margin-bottom: 22px;
      padding-bottom: 6px; }
      .entry-content h3.sponsors + ul li, .entry-content:not(.no-rainbow) h3.sponsors + ul li {
        margin-bottom: 10px;
        font-size: 16px;
        letter-spacing: 0;
        padding: 0;
        display: inline-block;
        position: relative; }
        .entry-content h3.sponsors + ul li:before, .entry-content:not(.no-rainbow) h3.sponsors + ul li:before {
          transition: opacity .25s ease-in-out;
          -moz-transition: opacity .25s ease-in-out;
          -webkit-transition: opacity .25s ease-in-out;
          display: none;
          content: "";
          width: 3px;
          height: 100%;
          position: absolute;
          left: -10px;
          top: 0;
          border-radius: 0;
          opacity: 0;
          background: #ec1d31;
          background: -moz-linear-gradient(top, #ec1d31 0%, #3f2d86 100%);
          background: -webkit-gradient(left top, left bottom, color-stop(0%, #ec1d31), color-stop(100%, #3f2d86));
          background: -webkit-linear-gradient(top, #ec1d31 0%, #3f2d86 100%);
          background: -o-linear-gradient(top, #ec1d31 0%, #3f2d86 100%);
          background: -ms-linear-gradient(top, #ec1d31 0%, #3f2d86 100%);
          background: linear-gradient(to bottom, #ec1d31 0%, #3f2d86 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec1d31', endColorstr='#3f2d86', GradientType=0 ); }
        .entry-content h3.sponsors + ul li:active:before, .entry-content h3.sponsors + ul li:hover:before, .entry-content:not(.no-rainbow) h3.sponsors + ul li:active:before, .entry-content:not(.no-rainbow) h3.sponsors + ul li:hover:before {
          opacity: 1; }
        .entry-content h3.sponsors + ul li:active a:after, .entry-content h3.sponsors + ul li:hover a:after, .entry-content:not(.no-rainbow) h3.sponsors + ul li:active a:after, .entry-content:not(.no-rainbow) h3.sponsors + ul li:hover a:after {
          display: none; }
        .entry-content h3.sponsors + ul li:active a:active, .entry-content h3.sponsors + ul li:active a:hover, .entry-content h3.sponsors + ul li:hover a:active, .entry-content h3.sponsors + ul li:hover a:hover, .entry-content:not(.no-rainbow) h3.sponsors + ul li:active a:active, .entry-content:not(.no-rainbow) h3.sponsors + ul li:active a:hover, .entry-content:not(.no-rainbow) h3.sponsors + ul li:hover a:active, .entry-content:not(.no-rainbow) h3.sponsors + ul li:hover a:hover {
          color: #2D4D9F; }
        .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: 18px;
      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 h3.extension + h3 a:after, .entry-content:not(.no-rainbow) h3.extension + h3 a:after {
          display: inline-block;
          content: "";
          width: 100%;
          height: 2px;
          position: absolute;
          left: 0;
          bottom: 0;
          transition: opacity .25s ease-in-out;
          -moz-transition: opacity .25s ease-in-out;
          -webkit-transition: opacity .25s ease-in-out;
          opacity: 0;
          background: #ec1d31;
          background: -moz-linear-gradient(left, #ec1d31 0%, #3f2d86 100%);
          background: -webkit-gradient(left top, right top, color-stop(0%, #ec1d31), color-stop(100%, #3f2d86));
          background: -webkit-linear-gradient(left, #ec1d31 0%, #3f2d86 100%);
          background: -o-linear-gradient(left, #ec1d31 0%, #3f2d86 100%);
          background: -ms-linear-gradient(left, #ec1d31 0%, #3f2d86 100%);
          background: linear-gradient(to right, #ec1d31 0%, #3f2d86 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec1d31', endColorstr='#3f2d86', GradientType=1 ); }
        .entry-content h3.extension + h3 a:active, .entry-content h3.extension + h3 a:hover, .entry-content:not(.no-rainbow) h3.extension + h3 a:active, .entry-content:not(.no-rainbow) h3.extension + h3 a:hover {
          text-decoration: none;
          display: inline-block;
          position: relative; }
          .entry-content h3.extension + h3 a:active:after, .entry-content h3.extension + h3 a:hover:after, .entry-content:not(.no-rainbow) h3.extension + h3 a:active:after, .entry-content:not(.no-rainbow) h3.extension + h3 a:hover:after {
            opacity: 1; }
  .entry-content table, .entry-content:not(.no-rainbow) table {
    width: 100%;
    border: 1px solid #D2D2D2;
    margin-bottom: 1.5em; }
    .entry-content table caption, .entry-content:not(.no-rainbow) table caption {
      margin: 0 0 7px;
      font-size: 0.75em;
      color: #9fa6b4;
      text-transform: uppercase;
      letter-spacing: 1px; }
  .entry-content tr, .entry-content:not(.no-rainbow) tr {
    border-bottom: 1px solid #D2D2D2; }
    .entry-content tr:nth-child(even), .entry-content:not(.no-rainbow) tr:nth-child(even) {
      background-color: #F2F2F2; }
  .entry-content td, .entry-content:not(.no-rainbow) td {
    padding: 7px;
    border-right: 1px solid #D2D2D2; }
    .entry-content td:last-child, .entry-content:not(.no-rainbow) td:last-child {
      border-right: 0; }
  .entry-content th, .entry-content:not(.no-rainbow) th {
    background-color: #F2F2F2;
    border-bottom: 1px solid #D2D2D2;
    border-right: 1px solid #D2D2D2; }
    .entry-content th:last-child, .entry-content:not(.no-rainbow) th:last-child {
      border-right: 0; }
  .entry-content blockquote, .entry-content:not(.no-rainbow) blockquote {
    margin: 0 0 30px;
    padding: 3px 0 0 18px;
    border-left: 3px solid #AE6ECC;
    color: #4D4D4D;
    font-weight: 300;
    font-style: normal;
    font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    .entry-content blockquote:before, .entry-content blockquote:after, .entry-content:not(.no-rainbow) blockquote:before, .entry-content:not(.no-rainbow) blockquote:after {
      content: ""; }
    .entry-content blockquote p, .entry-content:not(.no-rainbow) blockquote p {
      margin: 0;
      display: inline-block; }
  .entry-content dd, .entry-content:not(.no-rainbow) dd {
    margin-left: 0;
    font-size: 0.9em;
    color: #787878;
    margin-bottom: 1.5em; }
  .entry-content img, .entry-content:not(.no-rainbow) img {
    margin: 0 0 1.5em 0;
    max-width: 100%;
    height: auto; }
  .entry-content > a > img, .entry-content:not(.no-rainbow) > a > img {
    margin-bottom: 20px !important; }
  .entry-content a, .entry-content:not(.no-rainbow) a {
    color: #0071BC;
    text-decoration: none;
    position: relative; }
    .entry-content a:active, .entry-content a:hover, .entry-content:not(.no-rainbow) a:active, .entry-content:not(.no-rainbow) a:hover {
      color: #2B4C9F; }
    .entry-content a img, .entry-content:not(.no-rainbow) a img {
      margin-bottom: 0; }
      .entry-content a img[src*='buynow.jpg'], .entry-content:not(.no-rainbow) a img[src*='buynow.jpg'] {
        display: none; }
  .entry-content .size-auto,
  .entry-content .size-full,
  .entry-content .size-large,
  .entry-content .size-medium,
  .entry-content .size-thumbnail, .entry-content:not(.no-rainbow) .size-auto,
  .entry-content:not(.no-rainbow) .size-full,
  .entry-content:not(.no-rainbow) .size-large,
  .entry-content:not(.no-rainbow) .size-medium,
  .entry-content:not(.no-rainbow) .size-thumbnail {
    max-width: 100%;
    height: auto; }
  .entry-content pre, .entry-content:not(.no-rainbow) pre {
    background: #1A1A1A;
    color: #F2F2F2;
    font-size: 0.9em;
    padding: 1.5em;
    margin: 0 0 1.5em;
    border-radius: 3px; }

/* end .entry-content */
.entry-content:not(.no-rainbow) a {
  transition: background-image .25s ease-in-out;
  -moz-transition: background-image .25s ease-in-out;
  -webkit-transition: background-image .25s ease-in-out;
  padding-bottom: 3px;
  background-image: ""; }
  .entry-content:not(.no-rainbow) a:active, .entry-content:not(.no-rainbow) a:hover {
    background: #ec1d31;
    background: -moz-linear-gradient(left, #ec1d31 0%, #7e37dc 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #7e37dc), color-stop(100%, #3f2d86));
    background: -webkit-linear-gradient(left, #ec1d31 0%, #7e37dc 100%);
    background: -o-linear-gradient(left, #ec1d31 0%, #7e37dc 100%);
    background: -ms-linear-gradient(left, #ec1d31 0%, #7e37dc 100%);
    background: linear-gradient(to right, #ec1d31 0%, #7e37dc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec1d31', endColorstr='#3f2d86', GradientType=1 );
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: 0 100%; }
  .entry-content:not(.no-rainbow) a img {
    margin-bottom: -2px;
    position: relative;
    z-index: 1; }

.rainbow a:not(.no-rainbow) {
  transition: background-image .25s ease-in-out;
  -moz-transition: background-image .25s ease-in-out;
  -webkit-transition: background-image .25s ease-in-out;
  padding-bottom: 3px;
  background-image: ""; }
  .rainbow a:not(.no-rainbow):active, .rainbow a:not(.no-rainbow):hover {
    background: #ec1d31;
    background: -moz-linear-gradient(left, #ec1d31 0%, #3f2d86 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #ec1d31), color-stop(100%, #3f2d86));
    background: -webkit-linear-gradient(left, #ec1d31 0%, #3f2d86 100%);
    background: -o-linear-gradient(left, #ec1d31 0%, #3f2d86 100%);
    background: -ms-linear-gradient(left, #ec1d31 0%, #3f2d86 100%);
    background: linear-gradient(to right, #ec1d31 0%, #3f2d86 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec1d31', endColorstr='#3f2d86', GradientType=1 );
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: 0 100%; }
  .rainbow a:not(.no-rainbow) img {
    margin-bottom: -2px;
    position: relative;
    z-index: 1; }

.entry-content, .entry-content:not(.no-rainbow) {
  /* end .wp-caption */ }
  .entry-content .wp-caption, .entry-content:not(.no-rainbow) .wp-caption {
    max-width: 100%;
    /* images inside wp-caption */ }
    .entry-content .wp-caption img, .entry-content:not(.no-rainbow) .wp-caption img {
      max-width: 100%;
      margin-bottom: 0;
      width: 100%; }
    .entry-content .wp-caption p.wp-caption-text, .entry-content:not(.no-rainbow) .wp-caption p.wp-caption-text {
      font-size: 16px;
      font-weight: 400;
      line-height: 20px;
      margin: 4px 0 28px;
      text-align: left;
      color: #888888; }
  .entry-content a.fancybox, .entry-content:not(.no-rainbow) a.fancybox {
    margin: 0 auto 21px;
    display: block; }
    .entry-content a.fancybox:after, .entry-content:not(.no-rainbow) a.fancybox:after {
      display: none; }
  .entry-content a.fancybox + p.wp-caption-text, .entry-content:not(.no-rainbow) a.fancybox + p.wp-caption-text {
    margin-top: -17px; }

/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0 16px 28px;
  font-size: 18px;
  font-weight: 600; }
  .tags .tags-title {
    display: block;
    margin: 10px 0; }
  .tags a {
    text-decoration: none;
    background: #DEEAFF;
    color: #2D44C9;
    font-size: 16px;
    padding: 5px 10px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 2px 1px 3px 0;
    display: inline-block;
    white-space: nowrap; }
    .tags a:active, .tags a:hover {
      color: #662D91;
      background: #E6DFED; }

.author-meta {
  padding: 0 16px 28px; }
  .author-meta .avatar {
    border-radius: 50%;
    display: block;
    height: calc(106px + 10px);
    width: calc(106px + 10px);
    height: calc(85px + 10px);
    width: calc(85px + 10px);
    position: relative;
    margin: 0 auto 16px; }
    .author-meta .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; }
    .author-meta .avatar:before {
      display: block;
      content: "";
      position: absolute;
      border: 5px solid #EE1F34;
      width: 85px;
      height: 85px;
      border-radius: 50%;
      left: 0;
      top: 0;
      z-index: 1;
      opacity: 0;
      -webkit-transition: opacity 0.25s ease;
      transition: opacity 0.25s ease; }
    .author-meta .avatar span:before {
      color: #e5d9ed;
      display: inline-block;
      font-size: 85px;
      line-height: 96px;
      position: relative;
      text-align: center;
      width: 100%;
      z-index: 1; }
    .author-meta .avatar span:after {
      border-radius: 50%;
      content: "";
      display: inline-block;
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%;
      background: #160036;
      background: -moz-linear-gradient(left, #160036 0%, #380091 41%, #ff002b 100%);
      background: -webkit-gradient(left top, right top, color-stop(0%, #160036), color-stop(41%, #380091), color-stop(100%, #ff002b));
      background: -webkit-linear-gradient(left, #160036 0%, #380091 41%, #ff002b 100%);
      background: -o-linear-gradient(left, #160036 0%, #380091 41%, #ff002b 100%);
      background: -ms-linear-gradient(left, #160036 0%, #380091 41%, #ff002b 100%);
      background: linear-gradient(to right, #160036 0%, #380091 41%, #ff002b 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#160036', endColorstr='#ff002b', GradientType=1 ); }
    .author-meta .avatar:active:before, .author-meta .avatar:hover:before {
      opacity: 1; }
  .author-meta img {
    border-radius: 50%;
    font-size: 85px; }
    .author-meta img:active, .author-meta img:hover {
      border: 5px solid #EE1F34;
      width: 105px;
      height: auto;
      position: relative;
      top: -5px;
      left: -5px;
      margin-right: 10px;
      margin-bottom: -10px; }
  .author-meta b {
    font-weight: 600; }
  .author-meta .desc, .author-meta .author-social {
    margin-top: 10px;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 21px; }
    .author-meta .desc strong, .author-meta .desc b, .author-meta .author-social strong, .author-meta .author-social b {
      font-size: 18px; }
  .author-meta .desc a {
    color: #0071BC;
    text-decoration: none; }
    .author-meta .desc a:hover {
      border-bottom: 1px solid rgba(43, 76, 159, 0.6);
      padding: 0 0 3px;
      color: #2B4C9F; }
    .author-meta .desc a .author-social a {
      color: rgba(0, 113, 188, 0.4); }
      .author-meta .desc a .author-social a:hover {
        color: rgba(0, 113, 188, 0.7); }
  .author-meta .author-social {
    line-height: 40px; }
    .author-meta .author-social a {
      text-decoration: none;
      font-size: 0;
      display: inline-block;
      width: 40px;
      height: 40px;
      vertical-align: middle;
      margin-left: 12px; }
      .author-meta .author-social a:active span, .author-meta .author-social a:hover span {
        color: #ddc9ea; }
      .author-meta .author-social a span.icon-twitter {
        font-size: 40px; }
      .author-meta .author-social a span {
        display: inline-block;
        width: 100%;
        height: 100%;
        color: #E5D9ED;
        font-size: 33px;
        line-height: 40px; }
  .author-meta .and {
    display: none; }

#disqus_thread {
  padding: 26px 16px 26px;
  clear: both;
  margin: 0 auto; }

.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: 40px 0 10px; }
    .page-template-page-fullpage .hentry header h1, .page-template-page-upgrade-membership .hentry header h1 {
      font-size: 36px;
      line-height: 38px;
      font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-align: center;
      font-weight: 500; }
  .page-template-page-fullpage .hentry.post-3052 h6, .page-template-page-upgrade-membership .hentry.post-3052 h6 {
    font-size: 26px;
    line-height: 30px;
    margin: 60px 0 18px; }
  .page-template-page-fullpage .hentry.post-3256 h3, .page-template-page-upgrade-membership .hentry.post-3256 h3 {
    line-height: 27px;
    font-weight: 500;
    margin: 30px 0 18px; }
  .page-template-page-fullpage .hentry.post-3256 p + h3, .page-template-page-upgrade-membership .hentry.post-3256 p + h3 {
    margin: 60px 0 18px; }
  .page-template-page-fullpage .hentry.post-3256 h6, .page-template-page-upgrade-membership .hentry.post-3256 h6 {
    font-size: 22px;
    line-height: 22px;
    margin: 60px 0 18px; }
  .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-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 {
    width: 100vw;
    height: 245px;
    position: relative;
    z-index: -1;
    overflow: hidden; }
    .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-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 {
      height: 100vh;
      position: absolute;
      bottom: 0;
      width: 100vw;
      background: transparent no-repeat scroll right bottom/537px auto;
      right: calc(50% - 140px); }
  .page-template-page-fullpage.page-terms-conditions .hentry .header-image .image, .page-template-page-upgrade-membership.page-terms-conditions .hentry .header-image .image {
    background-image: url("../images/info/terms-and-conditions.png"); }
  .page-template-page-fullpage.page-advertisers .hentry .header-image, .page-template-page-upgrade-membership.page-advertisers .hentry .header-image {
    height: 300px;
    margin-bottom: -20px; }
    .page-template-page-fullpage.page-advertisers .hentry .header-image .image, .page-template-page-upgrade-membership.page-advertisers .hentry .header-image .image {
      background-image: url("../images/info/advertisers.png");
      background-size: 512px auto; }
  .page-template-page-fullpage.page-privacy-policy .hentry .header-image, .page-template-page-upgrade-membership.page-privacy-policy .hentry .header-image {
    height: 388px;
    margin-bottom: -10px; }
    .page-template-page-fullpage.page-privacy-policy .hentry .header-image .image, .page-template-page-upgrade-membership.page-privacy-policy .hentry .header-image .image {
      background-image: url("../images/info/privacy-policy.png");
      background-size: 544px auto;
      right: calc(50% - 130px);
      width: 200vw; }
  .page-template-page-fullpage.page-mu-app-version .hentry .header-image, .page-template-page-upgrade-membership.page-mu-app-version .hentry .header-image {
    margin-bottom: -28px; }
    .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 {
      background-image: url("../images/info/mu-app-version.png");
      background-position: center bottom;
      background-size: 658px auto;
      right: calc(-38%);
      width: 200vw; }
  .page-template-page-fullpage.page-about .hentry .header-image .image, .page-template-page-upgrade-membership.page-about .hentry .header-image .image {
    background-image: url("../images/info/about.png");
    background-size: 512px auto;
    right: calc(50% - 130px); }
  .page-template-page-fullpage.page-mu-app-version .hentry .header-image,
  .page-template-page-fullpage.page-about .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 {
    height: 320px; }
  .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: 12px; }
  .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: center; }
    .page-template-page-fullpage.page-account-cancelled .hentry .entry-content h4,
    .page-template-page-fullpage.page-membership-expired .hentry .entry-content h4,
    .page-template-page-fullpage.page-oops-this-content-is-members-only .hentry .entry-content h4,
    .page-template-page-fullpage.page-thanks-for-joining .hentry .entry-content h4,
    .page-template-page-fullpage.page-you-are-a-contributor .hentry .entry-content h4,
    .page-template-page-fullpage.page-oops-wrong-membership-level .hentry .entry-content h4, .page-template-page-upgrade-membership.page-account-cancelled .hentry .entry-content h4,
    .page-template-page-upgrade-membership.page-membership-expired .hentry .entry-content h4,
    .page-template-page-upgrade-membership.page-oops-this-content-is-members-only .hentry .entry-content h4,
    .page-template-page-upgrade-membership.page-thanks-for-joining .hentry .entry-content h4,
    .page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .entry-content h4,
    .page-template-page-upgrade-membership.page-oops-wrong-membership-level .hentry .entry-content 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: 21px;
      line-height: 30px; }
  .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 {
    width: 100vw;
    height: 320px;
    position: relative;
    z-index: -1;
    overflow: hidden; }
    .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 {
      height: 100vh;
      position: absolute;
      bottom: 0;
      width: 100vw;
      background: transparent no-repeat scroll right bottom/475px auto;
      right: calc(50% - 95px); }
  .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-oops-wrong-membership-level .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-oops-wrong-membership-level .hentry .header-image .image {
    background-image: url("../images/alert/member.png"); }
  .page-template-page-fullpage.page-membership-expired .hentry .header-image .image, .page-template-page-upgrade-membership.page-membership-expired .hentry .header-image .image {
    background-image: url("../images/alert/non-member.png"); }
  .page-template-page-fullpage.page-account-cancelled .hentry .header-image .image, .page-template-page-upgrade-membership.page-account-cancelled .hentry .header-image .image {
    background-image: url("../images/alert/sad-person.png"); }
  .page-template-page-fullpage.page-you-are-a-contributor .hentry .header-image .image, .page-template-page-upgrade-membership.page-you-are-a-contributor .hentry .header-image .image {
    background-image: url("../images/alert/author.png"); }
  .page-template-page-fullpage.page-oops-wrong-membership-level .entry-content h3, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .entry-content h3 {
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 40px;
    font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .page-template-page-fullpage.page-oops-wrong-membership-level .plans, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans {
    margin-top: -55px;
    background-color: #F2E6FF; }
    .page-template-page-fullpage.page-oops-wrong-membership-level .plans h4, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans h4 {
      font-size: 30px;
      padding-top: 50px;
      margin-bottom: 45px;
      text-align: center;
      font-weight: 300;
      font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    .page-template-page-fullpage.page-oops-wrong-membership-level .plans .popular, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .popular {
      color: #350061;
      font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 21px;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-align: center;
      display: block;
      background: #FAFF61;
      text-decoration: none;
      margin: 0 auto;
      height: 55px;
      width: 230px;
      position: relative;
      left: -5px;
      padding-top: 16px;
      padding-left: 5px; }
      .page-template-page-fullpage.page-oops-wrong-membership-level .plans .popular:before, .page-template-page-fullpage.page-oops-wrong-membership-level .plans .popular:after, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .popular:before, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .popular:after {
        content: "";
        display: block;
        width: 20px;
        height: 100%;
        background: #FAFF61;
        -webkit-transform-origin: 0 100% 0;
        -ms-transform-origin: 0 100% 0;
        transform-origin: 0 100% 0;
        -webkit-transform: skew(-188deg);
        -ms-transform: skew(-188deg);
        transform: skew(-188deg);
        position: absolute;
        top: 0; }
      .page-template-page-fullpage.page-oops-wrong-membership-level .plans .popular:before, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .popular:before {
        left: -10px; }
      .page-template-page-fullpage.page-oops-wrong-membership-level .plans .popular:after, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .popular:after {
        right: -10px; }
    .page-template-page-fullpage.page-oops-wrong-membership-level .plans ul, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans ul {
      margin: 0;
      padding-bottom: 78px; }
      .page-template-page-fullpage.page-oops-wrong-membership-level .plans ul li, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans ul li {
        background: #fff;
        margin-bottom: 35px;
        padding-bottom: 25px; }
        .page-template-page-fullpage.page-oops-wrong-membership-level .plans ul li a, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans ul li a {
          text-decoration: none;
          text-align: center;
          color: #fff; }
    .page-template-page-fullpage.page-oops-wrong-membership-level .plans .frequency, .page-template-page-fullpage.page-oops-wrong-membership-level .plans .currency, .page-template-page-fullpage.page-oops-wrong-membership-level .plans .price, .page-template-page-fullpage.page-oops-wrong-membership-level .plans .sep, .page-template-page-fullpage.page-oops-wrong-membership-level .plans .time, .page-template-page-fullpage.page-oops-wrong-membership-level .plans .renew, .page-template-page-fullpage.page-oops-wrong-membership-level .plans .reoccuring, .page-template-page-fullpage.page-oops-wrong-membership-level .plans .free, .page-template-page-fullpage.page-oops-wrong-membership-level .plans .signup, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .frequency, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .currency, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .price, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .sep, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .time, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .renew, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .reoccuring, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .free, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .signup {
      text-align: center;
      font-size: 18px;
      letter-spacing: 1px;
      color: #4D4D4D; }
    .page-template-page-fullpage.page-oops-wrong-membership-level .plans .frequency, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .frequency {
      font-size: 22px;
      font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
      color: #1A1A1A;
      text-transform: uppercase;
      font-weight: 500;
      padding: 40px 0 20px; }
    .page-template-page-fullpage.page-oops-wrong-membership-level .plans .title, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .title {
      text-align: center;
      width: 100%; }
    .page-template-page-fullpage.page-oops-wrong-membership-level .plans .currency, .page-template-page-fullpage.page-oops-wrong-membership-level .plans .price, .page-template-page-fullpage.page-oops-wrong-membership-level .plans .sep, .page-template-page-fullpage.page-oops-wrong-membership-level .plans .time, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .currency, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .price, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .sep, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .time {
      display: inline-block;
      font-size: 21px;
      margin: 0 auto 45px;
      font-weight: 300; }
    .page-template-page-fullpage.page-oops-wrong-membership-level .plans .free, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .free {
      text-transform: uppercase;
      color: #1A1A1A;
      font-size: 21px;
      display: block;
      width: 270px;
      height: 55px;
      background: rgba(0, 0, 0, 0.14);
      font-weight: 300;
      margin: 15px auto -8px;
      line-height: 55px;
      letter-spacing: 1px; }
    .page-template-page-fullpage.page-oops-wrong-membership-level .plans .signup, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .signup {
      background: #58B063;
      color: #fff;
      height: 69px;
      width: 250px;
      line-height: 69px;
      font-size: 28px;
      text-transform: uppercase;
      margin: 0 auto;
      margin-top: 32px;
      position: relative;
      z-index: 1; }
      .page-template-page-fullpage.page-oops-wrong-membership-level .plans .signup:active, .page-template-page-fullpage.page-oops-wrong-membership-level .plans .signup:hover, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .signup:active, .page-template-page-upgrade-membership.page-oops-wrong-membership-level .plans .signup:hover {
        background: #42854B; }
  .page-template-page-fullpage .entry-content, .page-template-page-upgrade-membership .entry-content {
    padding-bottom: 75px; }
    .page-template-page-fullpage .entry-content h3, .page-template-page-upgrade-membership .entry-content h3 {
      font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 26px;
      line-height: 28px;
      font-weight: 400;
      margin-top: 0;
      margin-bottom: 8px; }
    .page-template-page-fullpage .entry-content h4, .page-template-page-upgrade-membership .entry-content h4 {
      font-size: 16px;
      font-weight: 400;
      margin-top: 8px;
      letter-spacing: 1px;
      line-height: 21px; }
    .page-template-page-fullpage .entry-content h5, .page-template-page-upgrade-membership .entry-content h5 {
      font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 26px;
      line-height: 28px;
      text-transform: none;
      margin-top: 65px;
      letter-spacing: 1px; }
    .page-template-page-fullpage .entry-content h6, .page-template-page-upgrade-membership .entry-content h6 {
      font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 20px;
      line-height: 24px;
      font-weight: 500;
      margin: 40px 0 20px;
      letter-spacing: 1px; }
    .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;
      font-weight: 400; }
      .page-template-page-fullpage .entry-content p a, .page-template-page-fullpage .entry-content div a, .page-template-page-fullpage .entry-content ul li a, .page-template-page-fullpage .entry-content ol li a, .page-template-page-upgrade-membership .entry-content p a, .page-template-page-upgrade-membership .entry-content div a, .page-template-page-upgrade-membership .entry-content ul li a, .page-template-page-upgrade-membership .entry-content ol li a {
        color: #0071BC;
        text-decoration: none;
        display: inline-block;
        position: relative; }
        .page-template-page-fullpage .entry-content p a:after, .page-template-page-fullpage .entry-content div a:after, .page-template-page-fullpage .entry-content ul li a:after, .page-template-page-fullpage .entry-content ol li a:after, .page-template-page-upgrade-membership .entry-content p a:after, .page-template-page-upgrade-membership .entry-content div a:after, .page-template-page-upgrade-membership .entry-content ul li a:after, .page-template-page-upgrade-membership .entry-content ol li a:after {
          display: inline-block;
          content: "";
          width: 100%;
          height: 1px;
          position: absolute;
          left: 0;
          bottom: 0;
          transition: opacity .25s ease-in-out;
          -moz-transition: opacity .25s ease-in-out;
          -webkit-transition: opacity .25s ease-in-out;
          opacity: 0;
          background: #ec1d31;
          background: -moz-linear-gradient(left, #ec1d31 0%, #3f2d86 100%);
          background: -webkit-gradient(left top, right top, color-stop(0%, #ec1d31), color-stop(100%, #3f2d86));
          background: -webkit-linear-gradient(left, #ec1d31 0%, #3f2d86 100%);
          background: -o-linear-gradient(left, #ec1d31 0%, #3f2d86 100%);
          background: -ms-linear-gradient(left, #ec1d31 0%, #3f2d86 100%);
          background: linear-gradient(to right, #ec1d31 0%, #3f2d86 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec1d31', endColorstr='#3f2d86', GradientType=1 ); }
        .page-template-page-fullpage .entry-content p a:active:after, .page-template-page-fullpage .entry-content p a:hover:after, .page-template-page-fullpage .entry-content div a:active:after, .page-template-page-fullpage .entry-content div a:hover:after, .page-template-page-fullpage .entry-content ul li a:active:after, .page-template-page-fullpage .entry-content ul li a:hover:after, .page-template-page-fullpage .entry-content ol li a:active:after, .page-template-page-fullpage .entry-content ol li a:hover:after, .page-template-page-upgrade-membership .entry-content p a:active:after, .page-template-page-upgrade-membership .entry-content p a:hover:after, .page-template-page-upgrade-membership .entry-content div a:active:after, .page-template-page-upgrade-membership .entry-content div a:hover:after, .page-template-page-upgrade-membership .entry-content ul li a:active:after, .page-template-page-upgrade-membership .entry-content ul li a:hover:after, .page-template-page-upgrade-membership .entry-content ol li a:active:after, .page-template-page-upgrade-membership .entry-content ol li a:hover:after {
          opacity: 1; }
    .page-template-page-fullpage .entry-content div:last-of-type, .page-template-page-upgrade-membership .entry-content div:last-of-type {
      margin-bottom: 20px; }
    .page-template-page-fullpage .entry-content ul, .page-template-page-upgrade-membership .entry-content ul {
      margin: 32px 0; }
      .page-template-page-fullpage .entry-content ul li, .page-template-page-upgrade-membership .entry-content ul li {
        padding-left: 36px;
        position: relative;
        margin-bottom: 23px; }
        .page-template-page-fullpage .entry-content ul li:before, .page-template-page-upgrade-membership .entry-content ul li:before {
          background: #1A1A1A;
          width: 9px;
          height: 9px;
          margin: 1px 20px 0 2px;
          position: absolute;
          left: 0; }
    .page-template-page-fullpage .entry-content ul + h3, .page-template-page-upgrade-membership .entry-content ul + h3 {
      margin-top: 65px; }
    .page-template-page-fullpage .entry-content ol li, .page-template-page-upgrade-membership .entry-content ol li {
      position: relative;
      margin-bottom: 23px; }
    .page-template-page-fullpage .entry-content .login-message, .page-template-page-upgrade-membership .entry-content .login-message {
      margin: 60px 0 10px; }

/* Log in Page */
body.mu_login_form header.article-header, body.mu_login_form section,
body.mu_password_lost_form header.article-header,
body.mu_password_lost_form section,
body.mu_password_change_form header.article-header,
body.mu_password_change_form section,
body.mu_check_your_email header.article-header,
body.mu_check_your_email section,
body.mu_password_lost_reset_form header.article-header,
body.mu_password_lost_reset_form section {
  padding: 0;
  margin: 0; }

body.mu_login_form #main,
body.mu_password_lost_form #main,
body.mu_password_change_form #main,
body.mu_check_your_email #main,
body.mu_password_lost_reset_form #main {
  padding: 16px;
  text-align: center; }
  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_check_your_email #main .page-title,
  body.mu_password_lost_reset_form #main .page-title {
    font-size: 30px;
    line-height: 38px;
    font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    margin: 4px auto 0;
    width: 100%;
    text-align: center;
    letter-spacing: 1px;
    padding: 0 0 16px; }
  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_check_your_email #main .mu_form,
  body.mu_password_lost_reset_form #main .mu_form {
    margin: 64px 0 36px; }
  body.mu_login_form #main .mu_message, body.mu_login_form #main .mu_errors, body.mu_login_form #main .auth-message,
  body.mu_password_lost_form #main .mu_message,
  body.mu_password_lost_form #main .mu_errors,
  body.mu_password_lost_form #main .auth-message,
  body.mu_password_change_form #main .mu_message,
  body.mu_password_change_form #main .mu_errors,
  body.mu_password_change_form #main .auth-message,
  body.mu_check_your_email #main .mu_message,
  body.mu_check_your_email #main .mu_errors,
  body.mu_check_your_email #main .auth-message,
  body.mu_password_lost_reset_form #main .mu_message,
  body.mu_password_lost_reset_form #main .mu_errors,
  body.mu_password_lost_reset_form #main .auth-message {
    text-align: center;
    width: 100%; }
  body.mu_login_form #main .mu_errors,
  body.mu_password_lost_form #main .mu_errors,
  body.mu_password_change_form #main .mu_errors,
  body.mu_check_your_email #main .mu_errors,
  body.mu_password_lost_reset_form #main .mu_errors {
    text-align: center;
    background: #FFE3E3;
    color: #DD2A2A;
    padding: 10px;
    font-size: 21px;
    height: 62px;
    display: table; }
    body.mu_login_form #main .mu_errors span,
    body.mu_password_lost_form #main .mu_errors span,
    body.mu_password_change_form #main .mu_errors span,
    body.mu_check_your_email #main .mu_errors span,
    body.mu_password_lost_reset_form #main .mu_errors span {
      display: table-cell;
      vertical-align: middle;
      height: 62px; }
    body.mu_login_form #main .mu_errors strong,
    body.mu_password_lost_form #main .mu_errors strong,
    body.mu_password_change_form #main .mu_errors strong,
    body.mu_check_your_email #main .mu_errors strong,
    body.mu_password_lost_reset_form #main .mu_errors strong {
      font-weight: 300; }
    body.mu_login_form #main .mu_errors + .change_password_intro,
    body.mu_password_lost_form #main .mu_errors + .change_password_intro,
    body.mu_password_change_form #main .mu_errors + .change_password_intro,
    body.mu_check_your_email #main .mu_errors + .change_password_intro,
    body.mu_password_lost_reset_form #main .mu_errors + .change_password_intro {
      margin-top: 40px; }
  body.mu_login_form #main .password-field,
  body.mu_password_lost_form #main .password-field,
  body.mu_password_change_form #main .password-field,
  body.mu_check_your_email #main .password-field,
  body.mu_password_lost_reset_form #main .password-field {
    position: relative; }
    body.mu_login_form #main .password-field:after,
    body.mu_password_lost_form #main .password-field:after,
    body.mu_password_change_form #main .password-field:after,
    body.mu_check_your_email #main .password-field:after,
    body.mu_password_lost_reset_form #main .password-field:after {
      content: "";
      font-family: "Icons";
      display: block;
      position: absolute;
      right: 0;
      top: 15px;
      cursor: pointer;
      z-index: 1;
      font-size: 18px;
      transition: content .25s ease-in-out;
      -moz-transition: content .25s ease-in-out;
      -webkit-transition: content .25s ease-in-out; }
  body.mu_login_form #main .password-field.crossed-out-eye:after,
  body.mu_password_lost_form #main .password-field.crossed-out-eye:after,
  body.mu_password_change_form #main .password-field.crossed-out-eye:after,
  body.mu_check_your_email #main .password-field.crossed-out-eye:after,
  body.mu_password_lost_reset_form #main .password-field.crossed-out-eye:after {
    content: "";
    top: 15px;
    font-size: 20px; }
  body.mu_login_form #main .login-remember, 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,
  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,
  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_check_your_email #main .login-remember,
  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,
  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 {
    text-align: center;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 21px; }
    body.mu_login_form #main .login-remember a, body.mu_login_form #main .login-remember label, body.mu_login_form #main .login-submit a, body.mu_login_form #main .login-submit label, body.mu_login_form #main .forgot-password a, body.mu_login_form #main .forgot-password label, body.mu_login_form #main .membership a, body.mu_login_form #main .membership label,
    body.mu_password_lost_form #main .login-remember a,
    body.mu_password_lost_form #main .login-remember label,
    body.mu_password_lost_form #main .login-submit a,
    body.mu_password_lost_form #main .login-submit label,
    body.mu_password_lost_form #main .forgot-password a,
    body.mu_password_lost_form #main .forgot-password label,
    body.mu_password_lost_form #main .membership a,
    body.mu_password_lost_form #main .membership label,
    body.mu_password_change_form #main .login-remember a,
    body.mu_password_change_form #main .login-remember label,
    body.mu_password_change_form #main .login-submit a,
    body.mu_password_change_form #main .login-submit label,
    body.mu_password_change_form #main .forgot-password a,
    body.mu_password_change_form #main .forgot-password label,
    body.mu_password_change_form #main .membership a,
    body.mu_password_change_form #main .membership label,
    body.mu_check_your_email #main .login-remember a,
    body.mu_check_your_email #main .login-remember label,
    body.mu_check_your_email #main .login-submit a,
    body.mu_check_your_email #main .login-submit label,
    body.mu_check_your_email #main .forgot-password a,
    body.mu_check_your_email #main .forgot-password label,
    body.mu_check_your_email #main .membership a,
    body.mu_check_your_email #main .membership label,
    body.mu_password_lost_reset_form #main .login-remember a,
    body.mu_password_lost_reset_form #main .login-remember label,
    body.mu_password_lost_reset_form #main .login-submit a,
    body.mu_password_lost_reset_form #main .login-submit label,
    body.mu_password_lost_reset_form #main .forgot-password a,
    body.mu_password_lost_reset_form #main .forgot-password label,
    body.mu_password_lost_reset_form #main .membership a,
    body.mu_password_lost_reset_form #main .membership label {
      font-size: 18px;
      line-height: 22px;
      text-align: center;
      text-decoration: none; }
    body.mu_login_form #main .login-remember 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 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 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_check_your_email #main .login-remember 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 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 {
      color: #1382BF; }
  body.mu_login_form #main .login-remember label,
  body.mu_password_lost_form #main .login-remember label,
  body.mu_password_change_form #main .login-remember label,
  body.mu_check_your_email #main .login-remember label,
  body.mu_password_lost_reset_form #main .login-remember label {
    color: #666666; }
  body.mu_login_form #main .submit,
  body.mu_password_lost_form #main .submit,
  body.mu_password_change_form #main .submit,
  body.mu_check_your_email #main .submit,
  body.mu_password_lost_reset_form #main .submit {
    margin-top: 30px; }
    body.mu_login_form #main .submit .button,
    body.mu_password_lost_form #main .submit .button,
    body.mu_password_change_form #main .submit .button,
    body.mu_check_your_email #main .submit .button,
    body.mu_password_lost_reset_form #main .submit .button {
      width: 100%;
      height: 61px;
      border-radius: 3px;
      background: #cccccc;
      border: none;
      color: #fff;
      font-size: 30px;
      letter-spacing: 1px; }
      body.mu_login_form #main .submit .button:hover, body.mu_login_form #main .submit .button:focus,
      body.mu_password_lost_form #main .submit .button:hover,
      body.mu_password_lost_form #main .submit .button:focus,
      body.mu_password_change_form #main .submit .button:hover,
      body.mu_password_change_form #main .submit .button:focus,
      body.mu_check_your_email #main .submit .button:hover,
      body.mu_check_your_email #main .submit .button:focus,
      body.mu_password_lost_reset_form #main .submit .button:hover,
      body.mu_password_lost_reset_form #main .submit .button:focus {
        background: #58B063;
        -webkit-transition: background 0.25s ease 0.25s;
        transition: background 0.25s ease 0.25s; }
  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_check_your_email #main .forgot-password,
  body.mu_password_lost_reset_form #main .forgot-password {
    position: relative;
    margin: 20px 0 0; }
    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_check_your_email #main .forgot-password a,
    body.mu_password_lost_reset_form #main .forgot-password a {
      font-size: 16px;
      line-height: 19px; }
  body.mu_login_form #main .membership,
  body.mu_password_lost_form #main .membership,
  body.mu_password_change_form #main .membership,
  body.mu_check_your_email #main .membership,
  body.mu_password_lost_reset_form #main .membership {
    margin-top: -20px;
    margin-bottom: 20px; }
    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_check_your_email #main .membership a,
    body.mu_password_lost_reset_form #main .membership a {
      display: block; }

body.mu_login_form #main .page-title {
  width: 250px;
  font-size: 30px;
  line-height: 38px; }

body.mu_login_form #main .mu_form.touched .button {
  background: #58B063; }

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 {
  color: #666666;
  font-size: 16px;
  text-align: center;
  line-height: 22px; }
  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 .lost_password_intro .twelve, body.mu_password_lost_form #main .lost_password_intro .symbols, body.mu_password_lost_form #main .change_password_intro .twelve, body.mu_password_lost_form #main .change_password_intro .symbols, body.mu_password_lost_form #main .check_your_email_notice .twelve, body.mu_password_lost_form #main .check_your_email_notice .symbols,
  body.mu_password_change_form #main .lost_password_intro .twelve,
  body.mu_password_change_form #main .lost_password_intro .symbols,
  body.mu_password_change_form #main .change_password_intro .twelve,
  body.mu_password_change_form #main .change_password_intro .symbols,
  body.mu_password_change_form #main .check_your_email_notice .twelve,
  body.mu_password_change_form #main .check_your_email_notice .symbols,
  body.mu_password_lost_reset_form #main .lost_password_intro .twelve,
  body.mu_password_lost_reset_form #main .lost_password_intro .symbols,
  body.mu_password_lost_reset_form #main .change_password_intro .twelve,
  body.mu_password_lost_reset_form #main .change_password_intro .symbols,
  body.mu_password_lost_reset_form #main .check_your_email_notice .twelve,
  body.mu_password_lost_reset_form #main .check_your_email_notice .symbols,
  body.mu_check_your_email #main .lost_password_intro .twelve,
  body.mu_check_your_email #main .lost_password_intro .symbols,
  body.mu_check_your_email #main .change_password_intro .twelve,
  body.mu_check_your_email #main .change_password_intro .symbols,
  body.mu_check_your_email #main .check_your_email_notice .twelve,
  body.mu_check_your_email #main .check_your_email_notice .symbols {
    color: #662D91;
    font-weight: 600; }

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: 0; }

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: 18px;
  margin: 50px 0;
  color: #1A1A1A;
  word-wrap: break-word; }
  body.mu_password_lost_form #main .email:after,
  body.mu_password_change_form #main .email:after,
  body.mu_password_lost_reset_form #main .email:after,
  body.mu_check_your_email #main .email:after {
    display: block;
    content: "";
    height: 43px;
    width: 78px;
    background: url("../images/email-envelope.png");
    margin: 16px auto; }

body.mu_password_lost_form #main .mu_form.touched .button,
body.mu_password_change_form #main .mu_form.touched .button,
body.mu_password_lost_reset_form #main .mu_form.touched .button,
body.mu_check_your_email #main .mu_form.touched .button {
  background: #58B063; }

body.mu_password_change_form #main #mu_password_change_form.invalid input[type="password"],
body.mu_password_lost_reset_form #main #mu_password_change_form.invalid input[type="password"] {
  color: #DD2A2A;
  border-bottom-color: #DD2A2A; }

body.mu_password_change_form #main .mu_form.touched .button,
body.mu_password_lost_reset_form #main .mu_form.touched .button {
  background: #58B063; }

body.mu_password_change_form #main #password-strength-text,
body.mu_password_lost_reset_form #main #password-strength-text {
  display: block;
  text-transform: uppercase;
  text-align: center;
  height: 39px;
  line-height: 39px;
  font-size: 18px;
  margin-top: -20px;
  font-weight: bold;
  letter-spacing: 1px;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in; }
  body.mu_password_change_form #main #password-strength-text.weak,
  body.mu_password_lost_reset_form #main #password-strength-text.weak {
    color: #BF6325;
    background: #FFDBC0; }
  body.mu_password_change_form #main #password-strength-text.medium,
  body.mu_password_lost_reset_form #main #password-strength-text.medium {
    color: #9E993B;
    background: #FFFDB8; }
  body.mu_password_change_form #main #password-strength-text.strong,
  body.mu_password_lost_reset_form #main #password-strength-text.strong {
    color: #46894D;
    background: #BFFFB6; }
  body.mu_password_change_form #main #password-strength-text.weak, body.mu_password_change_form #main #password-strength-text.medium, body.mu_password_change_form #main #password-strength-text.strong,
  body.mu_password_lost_reset_form #main #password-strength-text.weak,
  body.mu_password_lost_reset_form #main #password-strength-text.medium,
  body.mu_password_lost_reset_form #main #password-strength-text.strong {
    opacity: 1; }

body.mu_password_change_form #main #password-match-text,
body.mu_password_lost_reset_form #main #password-match-text {
  font-size: 21px;
  letter-spacing: 1px;
  display: block;
  height: 0;
  line-height: 62px;
  text-align: center;
  margin: -12px 0 8px;
  -webkit-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
  opacity: 0; }
  body.mu_password_change_form #main #password-match-text.match,
  body.mu_password_lost_reset_form #main #password-match-text.match {
    color: #46894D;
    background: #DAFFD4; }
    body.mu_password_change_form #main #password-match-text.match:before,
    body.mu_password_lost_reset_form #main #password-match-text.match:before {
      background: #DAFFD4; }
  body.mu_password_change_form #main #password-match-text.dont-match,
  body.mu_password_lost_reset_form #main #password-match-text.dont-match {
    color: #DD2A2A;
    background: #FFE3E3; }
    body.mu_password_change_form #main #password-match-text.dont-match:before,
    body.mu_password_lost_reset_form #main #password-match-text.dont-match:before {
      background: #FFE3E3; }
  body.mu_password_change_form #main #password-match-text.match, body.mu_password_change_form #main #password-match-text.dont-match,
  body.mu_password_lost_reset_form #main #password-match-text.match,
  body.mu_password_lost_reset_form #main #password-match-text.dont-match {
    position: relative;
    opacity: 1;
    height: 62px; }
    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: block;
      content: "";
      width: 200vw;
      height: 100%;
      position: absolute;
      top: 0;
      left: -50vw;
      z-index: -1; }

/* Dashboard */
@keyframes blink {
  49%, 50% {
    background: #edf1ff;
    color: #6B37D1; }
  0%, 100% {
    background: rgba(237, 241, 255, 0);
    color: #1A1A1A; } }

#content.dashboard, #content.faq {
  position: relative;
  padding-top: 50px;
  overflow: hidden; }
  #content.dashboard .wrap, #content.faq .wrap {
    position: static; }
  #content.dashboard article, #content.dashboard .entry-content, #content.faq article, #content.faq .entry-content {
    width: 100%;
    margin: 0; }
  #content.dashboard .entry-content, #content.faq .entry-content {
    padding-top: 8px; }
  #content.dashboard .article-header, #content.faq .article-header {
    min-height: 0;
    background: #F2E6FF;
    padding-top: 16px;
    position: relative; }
    #content.dashboard .article-header:after, #content.faq .article-header:after {
      display: block;
      content: "";
      width: 100vw;
      height: 65px;
      background: #F2E6FF;
      position: absolute;
      bottom: -65;
      left: 0;
      z-index: -1; }
    #content.dashboard .article-header #copied-message, #content.faq .article-header #copied-message {
      display: none; }
    #content.dashboard .article-header .welcome-notice, #content.faq .article-header .welcome-notice {
      text-align: left;
      padding: 14px;
      background: #9A97C9;
      color: #fff;
      font-size: 14px;
      line-height: 18px;
      font-weight: 300;
      position: relative;
      letter-spacing: 1px;
      margin: 0 0 14px 16px;
      padding-right: 55px;
      width: calc(100% - 16px);
      height: 62px; }
      #content.dashboard .article-header .welcome-notice .close, #content.faq .article-header .welcome-notice .close {
        display: inline-block;
        position: absolute;
        top: 11px;
        right: 16px;
        cursor: pointer; }
        #content.dashboard .article-header .welcome-notice .close:after, #content.faq .article-header .welcome-notice .close:after {
          content: "";
          font-family: "Icons";
          display: inline-block;
          width: 36px;
          height: 36px;
          vertical-align: middle;
          padding: 10px;
          text-align: center;
          box-sizing: border-box;
          margin-top: 1px;
          font-size: 16px;
          line-height: 18px;
          border-radius: 50%; }
        #content.dashboard .article-header .welcome-notice .close:hover:after, #content.dashboard .article-header .welcome-notice .close:active:after, #content.faq .article-header .welcome-notice .close:hover:after, #content.faq .article-header .welcome-notice .close:active:after {
          background: rgba(255, 255, 255, 0.1); }
    #content.dashboard .article-header .container, #content.faq .article-header .container {
      padding: 0 16px 0;
      position: relative; }
    #content.dashboard .article-header h5, #content.faq .article-header h5 {
      font-size: 18px;
      letter-spacing: 1px;
      text-transform: none;
      margin: 0;
      line-height: 20px; }
    #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 .discount, #content.dashboard .article-header .logout, #content.dashboard .article-header .settings-dropdown, #content.dashboard .article-header .discount-dropdown, #content.faq .article-header .settings, #content.faq .article-header .discount, #content.faq .article-header .logout, #content.faq .article-header .settings-dropdown, #content.faq .article-header .discount-dropdown {
      display: none;
      outline: none; }
  #content.dashboard .entry-content > p:first-child, #content.faq .entry-content > p:first-child {
    padding: 5px 0;
    min-height: 56px; }
    #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: 22px; }
      #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 #tab-content1, #content.faq #tab-content1 {
    text-align: center; }
  #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: 10px; }
    #content.dashboard .links:nth-of-type(2):before, #content.faq .links:nth-of-type(2):before {
      content: "";
      display: block;
      width: 200vw;
      height: 1px;
      background: #cccccc;
      margin: 30px 0;
      position: relative;
      left: -50vw; }
    #content.dashboard .links input, #content.faq .links input {
      font-size: 18px;
      border: none;
      height: auto;
      text-align: center;
      margin-bottom: 14px;
      padding: 8px;
      box-sizing: border-box;
      vertical-align: middle;
      letter-spacing: 1px;
      width: 100%; }
      #content.dashboard .links input.copied, #content.faq .links input.copied {
        animation-name: blink;
        animation-duration: 2s;
        animation-iteration-count: 1;
        animation-delay: 0s; }
    #content.dashboard .links .copy-btn, #content.faq .links .copy-btn {
      width: 102px;
      height: 46px;
      background: #9063D6;
      font-size: 22px;
      letter-spacing: 2px;
      text-align: center;
      line-height: 46px;
      color: #fff;
      text-transform: uppercase;
      border: 0;
      box-sizing: border-box;
      vertical-align: middle;
      padding: 0; }
      #content.dashboard .links .copy-btn:hover, #content.dashboard .links .copy-btn:active, #content.faq .links .copy-btn:hover, #content.faq .links .copy-btn:active {
        background: #6B37D1; }
    #content.dashboard .links span, #content.faq .links span {
      font-weight: 600;
      height: 100%;
      display: block;
      background: #fff;
      color: #1A1A1A;
      margin-bottom: 8px; }
  #content.dashboard .itunes-button, #content.faq .itunes-button {
    display: inline-block;
    font-size: 0;
    box-sizing: border-box;
    text-align: center;
    margin: 10px 0 0; }
    #content.dashboard .itunes-button:active, #content.dashboard .itunes-button:hover, #content.faq .itunes-button:active, #content.faq .itunes-button:hover {
      text-decoration: none; }
      #content.dashboard .itunes-button:active span, #content.dashboard .itunes-button:hover span, #content.faq .itunes-button:active span, #content.faq .itunes-button:hover span {
        opacity: 1; }
    #content.dashboard .itunes-button span, #content.faq .itunes-button span {
      color: #9063D6;
      font-size: 32px;
      display: inline-block;
      height: 32px;
      text-indent: 0;
      vertical-align: middle;
      width: 32px;
      pointer: cursor;
      margin: 10px auto;
      opacity: 0.55; }
  #content.dashboard .links + span, #content.faq .links + span {
    text-align: center;
    display: inline-block;
    width: 100%;
    margin-top: 20px; }
  #content.dashboard .itunes-button + span, #content.faq .itunes-button + span {
    margin: 0 10px;
    vertical-align: -5px; }
  #content.dashboard .help-me, #content.faq .help-me {
    background: #FFEB99;
    display: block;
    height: 43px;
    width: 100%;
    margin: 50px auto 0;
    line-height: 43px;
    text-align: center;
    color: black;
    font-size: 18px; }
    #content.dashboard .help-me:before, #content.faq .help-me:before {
      content: "";
      font-family: "Icons";
      display: inline-block;
      height: 100%;
      text-indent: 0;
      width: 40px;
      pointer: cursor;
      margin-left: -18px;
      margin-right: 5px;
      vertical-align: middle; }
    #content.dashboard .help-me:hover, #content.dashboard .help-me:active, #content.faq .help-me:hover, #content.faq .help-me:active {
      background: #FFE05F;
      text-decoration: none; }
  #content.dashboard h4, #content.faq h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 1px;
    margin: 0 0 20px; }
    #content.dashboard h4 a, #content.faq h4 a {
      color: #1A1A1A;
      font-weight: 600; }
  #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: 16px;
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 0;
      padding-left: 10px; }
  #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 {
      color: #df3636;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 1px;
      margin: 0 0 -6px;
      position: absolute;
      top: -16px; }
  #content.dashboard .left h5, #content.faq .left h5 {
    top: -25px; }
  #content.dashboard .right h5, #content.faq .right h5 {
    top: 20px; }
  #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: 60px;
      line-height: 60px;
      margin: 0;
      position: relative; }
      #content.dashboard h4 + .episodes li:before, #content.faq h4 + .episodes li:before {
        content: "";
        display: block;
        width: 200vw;
        height: 100%;
        position: absolute;
        left: -50vw;
        border-radius: 0;
        z-index: -1;
        background: #fff;
        top: 0; }
      #content.dashboard h4 + .episodes li:after, #content.faq h4 + .episodes li:after {
        content: "";
        display: block;
        width: 200vw;
        height: 1px;
        background: #cccccc;
        position: relative;
        left: -50vw;
        bottom: 0;
        z-index: 1; }
      #content.dashboard h4 + .episodes li:last-child:after, #content.faq h4 + .episodes li:last-child:after {
        display: none; }
      #content.dashboard h4 + .episodes li:hover, #content.dashboard h4 + .episodes li:active, #content.faq h4 + .episodes li:hover, #content.faq h4 + .episodes li:active {
        background: #F8FCFF; }
        #content.dashboard h4 + .episodes li:hover:before, #content.dashboard h4 + .episodes li:active:before, #content.faq h4 + .episodes li:hover:before, #content.faq h4 + .episodes li:active:before {
          background: #F8FCFF; }
      #content.dashboard h4 + .episodes li p, #content.faq h4 + .episodes li p {
        float: left;
        font-size: 18px;
        font-weight: 300;
        margin: 0;
        line-height: inherit; }
      #content.dashboard h4 + .episodes li span.date, #content.dashboard h4 + .episodes li span.title, #content.faq h4 + .episodes li span.date, #content.faq h4 + .episodes li span.title {
        display: none; }
      #content.dashboard h4 + .episodes li .title, #content.faq h4 + .episodes li .title {
        margin-left: 26px; }
      #content.dashboard h4 + .episodes li .duration, #content.faq h4 + .episodes li .duration {
        display: inline-block;
        color: #808080;
        margin-left: 40px; }
      #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 {
        float: right;
        font-size: 0;
        line-height: inherit;
        margin-left: 7px;
        position: relative;
        z-index: 2; }
        #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: 52px;
          height: 39px;
          display: inline-block;
          content: "";
          background: rgba(144, 99, 214, 0.25);
          cursor: pointer;
          vertical-align: middle;
          font-family: "Icons";
          color: #45318C;
          font-size: 20px;
          text-align: center;
          line-height: 41px; }
        #content.dashboard h4 + .episodes li .view-button:active, #content.dashboard h4 + .episodes li .view-button:hover, #content.dashboard h4 + .episodes li .download-button:active, #content.dashboard h4 + .episodes li .download-button:hover, #content.faq h4 + .episodes li .view-button:active, #content.faq h4 + .episodes li .view-button:hover, #content.faq h4 + .episodes li .download-button:active, #content.faq h4 + .episodes li .download-button:hover {
          text-decoration: none; }
          #content.dashboard h4 + .episodes li .view-button:active:after, #content.dashboard h4 + .episodes li .view-button:hover:after, #content.dashboard h4 + .episodes li .download-button:active:after, #content.dashboard h4 + .episodes li .download-button:hover:after, #content.faq h4 + .episodes li .view-button:active:after, #content.faq h4 + .episodes li .view-button:hover:after, #content.faq h4 + .episodes li .download-button:active:after, #content.faq h4 + .episodes li .download-button:hover:after {
            background-color: rgba(144, 99, 214, 0.4); }
      #content.dashboard h4 + .episodes li .view-button:after, #content.faq h4 + .episodes li .view-button:after {
        content: ""; }
      #content.dashboard h4 + .episodes li .download-button:after, #content.faq h4 + .episodes li .download-button:after {
        content: ""; }
      #content.dashboard h4 + .episodes li .download-button[href=""], #content.faq h4 + .episodes li .download-button[href=""] {
        display: none; }
  #content.dashboard p.link, #content.faq p.link {
    clear: both;
    margin: 380px 0 0 15px; }
    #content.dashboard p.link a, #content.faq p.link a {
      text-transform: uppercase;
      text-decoration: none;
      display: inline-block;
      color: #fff;
      padding: 5px 10px;
      margin: 0 5px;
      -webkit-transition: all 0.2s ease-in;
      transition: all 0.2s ease-in; }

#content.faq .hentry header h1 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
  text-align: center;
  font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 4px 0 16px; }

#content.faq .entry-content {
  background: #fff; }

#content.faq .ufaq-faq-title {
  text-align: left;
  padding: 14px 0 0; }

#content.faq .ewd-ufaq-post-margin, #content.faq .ufaq-faq-title-text {
  width: 100%; }

#content.faq .ufaq-faq-category-title h4 {
  font-size: 26px;
  line-height: 28px;
  text-align: left;
  margin-bottom: 26px;
  font-weight: 400; }

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

#content.faq .ufaq-faq-div {
  margin: -26px 0; }
  #content.faq .ufaq-faq-div:before, #content.faq .ufaq-faq-div:after {
    display: block;
    content: "";
    position: relative;
    border-top: 1px dashed #FF002C;
    padding: 1px;
    top: 13px;
    margin-left: calc((100% - 100vw) / 2);
    width: 100vw;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in; }
  #content.faq .ufaq-faq-div:after {
    top: -6px; }

#content.faq .ewd-ufaq-post-active:before, #content.faq .ewd-ufaq-post-active:after {
  opacity: 1; }

#content.faq .ewd-ufaq-post-active .ufaq-faq-title-text {
  position: relative; }
  #content.faq .ewd-ufaq-post-active .ufaq-faq-title-text:before {
    opacity: 1; }
  #content.faq .ewd-ufaq-post-active .ufaq-faq-title-text h4 {
    color: #FF002C; }

#content.faq .ewd-ufaq-post-margin-symbol, #content.faq .ewd-ufaq-post-margin:before, #content.faq .ewd-ufaq-post-margin:after {
  display: none; }

#content.faq .ufaq-faq-title-text:before {
  content: "";
  display: block;
  position: absolute;
  font-family: "Icons";
  color: #ff002c;
  left: -58px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in; }

#content.faq .ufaq-faq-title-text:active:before, #content.faq .ufaq-faq-title-text:hover:before {
  color: #562D91; }

#content.faq .ufaq-faq-title-text h4 {
  font-size: 20px;
  text-align: left;
  width: 100%;
  font-weight: 400;
  margin: 0 !important; }
  #content.faq .ufaq-faq-title-text h4:active, #content.faq .ufaq-faq-title-text h4:hover {
    color: #562D91; }

#content.faq .ufaq-faq-body {
  padding: 20px 0;
  text-align: left; }
  #content.faq .ufaq-faq-body p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400; }
    #content.faq .ufaq-faq-body p:last-child {
      margin: 0; }
  #content.faq .ufaq-faq-body .size-full, #content.faq .ufaq-faq-body .size-large {
    height: auto;
    margin: 0 0 24px calc((100% - 100vw) / 2);
    max-width: none;
    width: 100vw; }
  #content.faq .ufaq-faq-body .size-auto, #content.faq .ufaq-faq-body .size-full, #content.faq .ufaq-faq-body .size-large, #content.faq .ufaq-faq-body .size-medium, #content.faq .ufaq-faq-body .size-thumbnail {
    border: medium none !important;
    margin-bottom: 24px; }
  #content.faq .ufaq-faq-body li {
    float: none;
    width: 100%; }
    #content.faq .ufaq-faq-body li:before {
      display: block; }
    #content.faq .ufaq-faq-body li:first-child {
      margin-left: 0; }

#content.faq .entry-content .mu-tabs .ufaq-faq-body h1 {
  font-size: 30px;
  font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 1px; }

#content.faq .entry-content .mu-tabs .ufaq-faq-body h2 {
  font-size: 24px;
  font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 32px; }

#content.faq .entry-content .mu-tabs .ufaq-faq-body p, #content.faq .entry-content .mu-tabs .ufaq-faq-body li {
  line-height: 24px; }

#content.faq .entry-content .mu-tabs .ufaq-faq-body ol, #content.faq .entry-content .mu-tabs .ufaq-faq-body ul {
  counter-reset: li-counter;
  list-style: outside none none;
  padding-left: 25px; }

#content.faq .entry-content .mu-tabs .ufaq-faq-body li {
  float: none;
  width: 100%;
  text-align: left;
  position: relative;
  margin-bottom: 23px;
  padding-left: 16px; }
  #content.faq .entry-content .mu-tabs .ufaq-faq-body li:before {
    background-color: #dbc0ff;
    border-radius: 50%;
    box-sizing: border-box;
    content: counter(li-counter, decimal);
    counter-increment: li-counter;
    font-weight: 500;
    height: 27px;
    left: -23px;
    line-height: 29px;
    padding-left: 1px;
    position: absolute;
    text-align: center;
    top: -2px;
    width: 27px;
    display: block; }
  #content.faq .entry-content .mu-tabs .ufaq-faq-body li:first-child {
    margin-left: 0; }

#content.faq .help {
  text-align: center;
  margin-top: 90px;
  margin-bottom: 88px; }
  #content.faq .help h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 32px; }
  #content.faq .help span {
    color: #BDACCC;
    font-size: 32px;
    display: block;
    margin-bottom: 20px; }
  #content.faq .help a {
    font-size: 18px;
    background: #FFEB99;
    display: block;
    width: 156px;
    height: 52px;
    color: #1A1A1A;
    line-height: 52px;
    margin: 0 auto; }
    #content.faq .help a:active, #content.faq .help a:hover {
      background: #FFE05F; }

#content.faq #ufaq-ajax-search-lbl, #content.faq #ufaq-ajax-search-btn {
  display: none; }

#content.faq #ufaq-ajax-text-input {
  border-bottom: 1px solid #999999;
  color: #000000;
  font-size: 18px;
  margin: 0 !important;
  -webkit-transition: border 0.2s ease-in;
  transition: border 0.2s ease-in; }
  #content.faq #ufaq-ajax-text-input:focus {
    border-bottom: 2px solid #0071BC; }
  #content.faq #ufaq-ajax-text-input.touched {
    border-bottom: 1px solid #808080; }

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

#content.faq #ufaq-ajax-results {
  min-height: 280px;
  position: relative; }
  #content.faq #ufaq-ajax-results:after {
    content: "";
    font-family: "Icons";
    display: block;
    font-size: 240px;
    line-height: 240px;
    position: absolute;
    top: 50px;
    width: 100%;
    z-index: -1;
    color: #F2F2F2; }
  #content.faq #ufaq-ajax-results h3, #content.faq #ufaq-ajax-results .ewd-ufaq-no-results {
    font-size: 24px;
    font-weight: 400;
    color: #4D4D4D;
    margin-top: 0; }
  #content.faq #ufaq-ajax-results h3 {
    margin-top: 58px; }
  #content.faq #ufaq-ajax-results .ewd-ufaq-no-results {
    font-size: 21px; }
  #content.faq #ufaq-ajax-results .ufaq-faq-list {
    margin-top: 58px;
    background: #fff;
    min-height: 350px; }

.entry-content .mu-tabs {
  width: 100%;
  float: none;
  list-style: none;
  position: relative;
  margin: 0 0 0;
  text-align: left;
  z-index: 0; }
  .entry-content .mu-tabs li {
    float: left;
    display: block;
    padding-left: 0;
    position: static; }
    .entry-content .mu-tabs li:before {
      display: none; }
  .entry-content .mu-tabs input[type="radio"] {
    position: absolute;
    top: 0;
    left: -9999px; }
  .entry-content .mu-tabs label {
    display: block;
    padding: 6px 0 0px 0;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    color: #a5a5a5;
    outline: none;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .entry-content .mu-tabs label:active, .entry-content .mu-tabs label:hover {
      color: rgba(69, 49, 140, 0.75); }
      .entry-content .mu-tabs label:active:before, .entry-content .mu-tabs label:hover:before {
        display: block;
        content: "";
        width: calc(100% - 11px);
        height: 1px;
        background: rgba(116, 105, 178, 0.5);
        position: absolute;
        bottom: 2px;
        left: 0;
        margin: 0 0 0 10px;
        box-sizing: border-box; }
  .entry-content .mu-tabs .tab-content {
    z-index: 2;
    visibility: hidden;
    width: 100%;
    font-size: 17px;
    line-height: 25px;
    padding: 16px 0;
    position: absolute;
    top: 45px;
    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 {
      display: block;
      content: "";
      width: calc(100% - 11px);
      height: 2px;
      background: #45318C;
      position: absolute;
      bottom: 2px;
      left: 0;
      margin: 0 0 0 10px;
      box-sizing: border-box; }
  .entry-content .mu-tabs [id^="tab"]:checked ~ [id^="tab-content"] {
    display: block;
    visibility: visible; }

#content.dashboard .entry-content .mu-tabs label, #content.dashboard .entry-content .mu-tabs [id^="tab"]:checked + label {
  margin-right: 10px;
  font-weight: 500;
  color: #180e3a;
  font-size: 0;
  display: inline-block; }
  #content.dashboard .entry-content .mu-tabs label:before, #content.dashboard .entry-content .mu-tabs [id^="tab"]:checked + label:before {
    width: calc(100%);
    margin: 0;
    height: 1px;
    position: absolute;
    bottom: 1px; }
  #content.dashboard .entry-content .mu-tabs label:after, #content.dashboard .entry-content .mu-tabs [id^="tab"]:checked + label:after {
    display: inline-block;
    left: 0;
    position: absolute;
    top: 0;
    white-space: nowrap;
    font-size: 14px;
    margin: 0; }

#content.dashboard .entry-content .mu-tabs #tab1 + label {
  width: 42px; }
  #content.dashboard .entry-content .mu-tabs #tab1 + label:after {
    content: "Feeds"; }

#content.dashboard .entry-content .mu-tabs #tab2 + label {
  width: 110px; }
  #content.dashboard .entry-content .mu-tabs #tab2 + label:after {
    content: "Current Season"; }

#content.dashboard .entry-content .mu-tabs #tab3 + label {
  width: 118px; }
  #content.dashboard .entry-content .mu-tabs #tab3 + label:after {
    content: "Previous Season"; }

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

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

#content.faq .entry-content .mu-tabs {
  margin-top: -12px;
  min-height: 100vh; }
  #content.faq .entry-content .mu-tabs > li {
    width: 100%;
    text-align: center;
    float: none;
    top: 0;
    margin: 0; }
    #content.faq .entry-content .mu-tabs > li:before {
      display: none; }
    #content.faq .entry-content .mu-tabs > li:nth-of-type(1) label {
      top: 204px; }
    #content.faq .entry-content .mu-tabs > li:nth-of-type(3) label {
      top: 0;
      left: 50%; }
    #content.faq .entry-content .mu-tabs > li:nth-of-type(5) label {
      left: 50%; }
    #content.faq .entry-content .mu-tabs > li:nth-of-type(n+4) label {
      top: 102px; }
    #content.faq .entry-content .mu-tabs > li:nth-of-type(6) label {
      top: 204px;
      left: 50%; }
  #content.faq .entry-content .mu-tabs label {
    font-size: 20px;
    position: absolute;
    top: 0;
    width: 50%;
    z-index: 4; }
    #content.faq .entry-content .mu-tabs label:before {
      display: none; }
    #content.faq .entry-content .mu-tabs label span {
      line-height: 42px;
      display: block;
      padding-bottom: 10px;
      padding-top: 28px; }
    #content.faq .entry-content .mu-tabs label .icon-FAQ-popular {
      font-size: 43px; }
    #content.faq .entry-content .mu-tabs label .icon-FAQ-tab-podcast, #content.faq .entry-content .mu-tabs label .icon-FAQ-tab-plus {
      font-size: 39px; }
    #content.faq .entry-content .mu-tabs label .icon-FAQ-tab-payments {
      font-size: 38px; }
    #content.faq .entry-content .mu-tabs label .icon-FAQ-tab-account {
      font-size: 42px; }
    #content.faq .entry-content .mu-tabs label .icon-FAQ-search {
      font-size: 39px; }
  #content.faq .entry-content .mu-tabs .tab-content {
    padding-top: 342px;
    position: relative;
    display: none; }
  #content.faq .entry-content .mu-tabs [id^="tab"]:checked ~ [id^="tab-content"] {
    display: block; }
  #content.faq .entry-content .mu-tabs [id^="tab"]:checked + label {
    color: #562D91; }
    #content.faq .entry-content .mu-tabs [id^="tab"]:checked + label:before {
      display: none; }

.page-plus #container, .page-app #container {
  overflow: hidden; }

/* Plus */
.page-plus #content {
  background: #050019;
  background: -moz-linear-gradient(top, #050019 0%, #050019 1%, #3d1a75 94%, #3d1a75 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #050019), color-stop(1%, #050019), color-stop(94%, #3d1a75), color-stop(100%, #3d1a75));
  background: -webkit-linear-gradient(top, #050019 0%, #050019 1%, #3d1a75 94%, #3d1a75 100%);
  background: -o-linear-gradient(top, #050019 0%, #050019 1%, #3d1a75 94%, #3d1a75 100%);
  background: -ms-linear-gradient(top, #050019 0%, #050019 1%, #3d1a75 94%, #3d1a75 100%);
  background: linear-gradient(to bottom, #050019 0%, #050019 1%, #3d1a75 94%, #3d1a75 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#050019', endColorstr='#3d1a75', GradientType=0 ); }

.page-plus #main {
  color: #fff; }
  .page-plus #main:before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: transparent url("../images/plus/top-graphic-320.png") no-repeat scroll center top;
    position: absolute;
    top: 6px; }

.page-plus .hentry {
  padding-top: 190px; }
  .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 {
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 0 12px; }
  .page-plus .hentry h1 {
    font-size: 36px;
    line-height: 42px;
    padding-bottom: 0;
    font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .page-plus .hentry h2 {
    font-size: 20px;
    line-height: 24px;
    margin-top: 0; }
    .page-plus .hentry h2:nth-of-type(2) {
      color: #FFE969;
      font-size: 22px;
      font-weight: 400;
      line-height: 29px;
      font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .page-plus .hentry h4 {
    font-size: 30px;
    line-height: 34px;
    font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .page-plus .hentry h5 {
    font-size: 26px;
    text-transform: none; }
  .page-plus .hentry p {
    font-size: 20px;
    line-height: 26px;
    opacity: 0.6; }

.page-plus .included h4 {
  margin: 30px 0 0; }

.page-plus .included .row {
  background-repeat: none;
  padding-top: 157px;
  position: relative; }
  .page-plus .included .row h5 {
    margin: 26px 0 0;
    font-size: 24px; }
  .page-plus .included .row .image-retina {
    width: 320px;
    height: 100vh;
    position: absolute;
    top: calc(157px - 100vh);
    background-position: 0 bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    left: calc(50% - 55px); }

.page-plus .devices {
  margin-top: 120px; }
  .page-plus .devices h4 {
    margin-bottom: 100px;
    font-size: 32px; }
  .page-plus .devices .ios, .page-plus .devices .android {
    width: 49%;
    display: inline-block;
    height: 210px;
    position: relative;
    padding-top: 182px; }
  .page-plus .devices .laptop {
    width: 100%;
    position: relative;
    height: 216px;
    margin: 60px 0 200px;
    padding-top: 180px; }
  .page-plus .devices .image {
    height: 100vh;
    position: absolute;
    bottom: 0;
    width: 100vw;
    background: transparent url("") no-repeat scroll right bottom/460px auto;
    right: calc(50% - 49px); }
  .page-plus .devices h6 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 61px; }
  .page-plus .devices p {
    margin-top: -4px; }
  .page-plus .devices .button {
    width: 128px;
    height: 38px;
    background-color: rgba(0, 0, 0, 0.28);
    margin: 0 auto;
    border-radius: 3px;
    display: block;
    text-decoration: none;
    color: #fff;
    position: relative;
    z-index: 1; }
    .page-plus .devices .button:active, .page-plus .devices .button:hover {
      background-color: rgba(0, 0, 0, 0.4); }
    .page-plus .devices .button span {
      width: 100%;
      display: block;
      text-align: center; }
      .page-plus .devices .button span:before {
        font-size: 26px;
        line-height: 40px; }
  .page-plus .devices .ios .image {
    background-image: url("../images/plus/iphone.png");
    z-index: 2; }
  .page-plus .devices .android .image {
    background-image: url("../images/plus/android-phone.png"); }
  .page-plus .devices .laptop {
    margin-top: 8px; }
    .page-plus .devices .laptop .image {
      background-image: url("../images/plus/laptop.png");
      background-size: 504px;
      right: calc(50% - 150px); }

.page-plus .testimonials {
  overflow: hidden;
  height: 450px;
  position: relative; }
  .page-plus .testimonials h5 {
    font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
    opacity: 0.8;
    font-size: 30px; }
  .page-plus .testimonials .slides {
    overflow: hidden;
    position: relative;
    max-width: 700px;
    margin: -16px auto; }
    .page-plus .testimonials .slides:before, .page-plus .testimonials .slides:after {
      content: "";
      font-family: "Icons";
      color: #4f4171;
      display: block;
      position: absolute;
      width: 39px;
      height: 75px;
      font-size: 50px;
      top: 26px;
      z-index: -1; }
    .page-plus .testimonials .slides:before {
      left: 12px; }
    .page-plus .testimonials .slides:after {
      top: -23px;
      right: 1px;
      -ms-transform: rotate(180deg);
      /* IE 9 */
      -ms-transform-origin: center;
      /* IE 9 */
      -webkit-transform: rotate(180deg);
      /* Chrome, Safari, Opera */
      -webkit-transform-origin: center;
      /* Chrome, Safari, Opera */
      transform: rotate(180deg);
      transform-origin: center; }
    .page-plus .testimonials .slides li {
      display: none; }
    .page-plus .testimonials .slides p {
      margin-top: 10px;
      padding: 0 45px; }
    .page-plus .testimonials .slides .author {
      font-size: 18px;
      font-weight: 400;
      margin-top: 35px; }
  .page-plus .testimonials .flex-control-nav {
    bottom: 0px;
    position: absolute;
    text-align: center;
    width: 100%; }
  .page-plus .testimonials .flex-control-nav li {
    display: inline-block;
    margin: 0 2px 0 3px; }
  .page-plus .testimonials .flex-control-paging li a {
    background: #4f4171;
    cursor: pointer;
    display: block;
    height: 22px;
    text-indent: -9999px;
    width: 40px;
    position: relative;
    box-shadow: none; }
    .page-plus .testimonials .flex-control-paging li a:before, .page-plus .testimonials .flex-control-paging li a:after {
      content: "";
      display: block;
      background: inherit;
      position: absolute;
      top: 0;
      height: 100%;
      width: 4px; }
    .page-plus .testimonials .flex-control-paging li a:before {
      left: 0;
      -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); }
    .page-plus .testimonials .flex-control-paging li a:after {
      right: -3px;
      -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); }
  .page-plus .testimonials .flex-control-paging li a.flex-active {
    background: #c9c4d5;
    cursor: default; }

.page-plus .plans {
  background: rgba(0, 0, 0, 0.2);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.2)), color-stop(100%, transparent));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 ); }
  .page-plus .plans h4 {
    font-size: 30px;
    padding-top: 80px;
    margin-bottom: 45px; }
  .page-plus .plans .popular {
    color: #350061;
    font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    display: block;
    background: #FAFF61;
    text-decoration: none;
    margin: 0 auto;
    height: 55px;
    width: 230px;
    position: relative;
    left: -5px;
    padding-top: 16px;
    padding-left: 5px; }
    .page-plus .plans .popular:before, .page-plus .plans .popular:after {
      content: "";
      display: block;
      width: 20px;
      height: 100%;
      background: #FAFF61;
      -webkit-transform-origin: 0 100% 0;
      -ms-transform-origin: 0 100% 0;
      transform-origin: 0 100% 0;
      -webkit-transform: skew(-188deg);
      -ms-transform: skew(-188deg);
      transform: skew(-188deg);
      position: absolute;
      top: 0; }
    .page-plus .plans .popular:before {
      left: -10px; }
    .page-plus .plans .popular:after {
      right: -10px; }
  .page-plus .plans ul {
    margin: 0;
    padding-bottom: 78px; }
    .page-plus .plans ul li {
      background: rgba(255, 255, 255, 0.08);
      margin-bottom: 35px;
      padding-bottom: 25px; }
      .page-plus .plans ul li a {
        text-decoration: none;
        text-align: center;
        color: #fff;
        display: block; }
  .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: 32px;
    font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #FFE969;
    text-transform: uppercase;
    font-weight: 300;
    padding: 40px 0 20px; }
  .page-plus .plans .title {
    text-align: center;
    width: 100%; }
  .page-plus .plans .currency, .page-plus .plans .price, .page-plus .plans .sep, .page-plus .plans .time {
    display: inline-block;
    font-size: 21px;
    margin: 0 auto 45px;
    font-weight: 300; }
  .page-plus .plans .free {
    text-transform: uppercase;
    font-size: 21px;
    display: block;
    width: 270px;
    height: 55px;
    background: rgba(0, 0, 0, 0.14);
    font-weight: 300;
    margin: 15px auto -8px;
    line-height: 55px;
    letter-spacing: 1px; }
  .page-plus .plans .signup {
    background: #58B063;
    color: #fff;
    height: 69px;
    width: 250px;
    line-height: 69px;
    font-size: 28px;
    text-transform: uppercase;
    margin: 0 auto;
    margin-top: 32px;
    position: relative;
    z-index: 1; }
    .page-plus .plans .signup:active, .page-plus .plans .signup:hover {
      background: #42854B; }

.page-template-page-mu-plus-plans #content {
  background: #050019;
  background: -moz-linear-gradient(top, #050019 0%, #050019 1%, #3d1a75 94%, #3d1a75 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #050019), color-stop(1%, #050019), color-stop(94%, #3d1a75), color-stop(100%, #3d1a75));
  background: -webkit-linear-gradient(top, #050019 0%, #050019 1%, #3d1a75 94%, #3d1a75 100%);
  background: -o-linear-gradient(top, #050019 0%, #050019 1%, #3d1a75 94%, #3d1a75 100%);
  background: -ms-linear-gradient(top, #050019 0%, #050019 1%, #3d1a75 94%, #3d1a75 100%);
  background: linear-gradient(to bottom, #050019 0%, #050019 1%, #3d1a75 94%, #3d1a75 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#050019', endColorstr='#3d1a75', GradientType=0 ); }

.page-template-page-mu-plus-plans #main {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 300; }
  .page-template-page-mu-plus-plans #main:before, .page-template-page-mu-plus-plans #main:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute; }
  .page-template-page-mu-plus-plans #main:before {
    background: transparent url("../images/plan/plan-page-plus-icon.png") no-repeat scroll center top;
    top: 50px; }
  .page-template-page-mu-plus-plans #main:after {
    background: transparent url("../images/plan/lock-icon.png") no-repeat scroll right top/15px auto;
    opacity: 0.15;
    right: 9px;
    top: 62px; }
  .page-template-page-mu-plus-plans #main h1 {
    font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 42px;
    width: 200px;
    margin: 176px auto 5px; }

.page-template-page-mu-plus-plans.page-plan-two #main h1 {
  width: 100%;
  padding-left: 0;
  padding-right: 0; }

.page-template-page-mu-plus-plans .article-header .popular {
  font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #350061;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  display: block;
  background: #FAFF61;
  text-decoration: none;
  margin: -14px auto 12px;
  height: 45px;
  line-height: 45px;
  width: 254px;
  position: relative;
  padding-top: 4px; }

.page-template-page-mu-plus-plans .entry-content {
  padding: 0 0 125px; }

.page-template-page-mu-plus-plans .title {
  text-align: center;
  width: 100%; }

.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 {
  display: inline-block;
  font-size: 21px;
  margin: 0 auto 26px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px; }

.page-template-page-mu-plus-plans .free {
  width: 100%;
  height: 45px;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 45px;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  z-index: 1; }
  .page-template-page-mu-plus-plans .free:before, .page-template-page-mu-plus-plans .free:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    z-index: -1; }
  .page-template-page-mu-plus-plans .free:before {
    width: 270px;
    left: calc((100vw - 170px) / 2 - 92px);
    background: #160036;
    background: -moz-linear-gradient(left, rgba(22, 0, 54, 0) 0%, #380091 41%, #80006c 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(22, 0, 54, 0)), color-stop(41%, #380091), color-stop(100%, #80006c));
    background: -webkit-linear-gradient(left, rgba(22, 0, 54, 0) 0%, #380091 41%, #80006c 100%);
    background: -o-linear-gradient(left, rgba(22, 0, 54, 0) 0%, #380091 41%, #80006c 100%);
    background: -ms-linear-gradient(left, rgba(22, 0, 54, 0) 0%, #380091 41%, #80006c 100%);
    background: linear-gradient(to right, rgba(22, 0, 54, 0) 0%, #380091 41%, #80006c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#160036', endColorstr='#80006c', GradientType=1 ); }
  .page-template-page-mu-plus-plans .free:after {
    width: 10px;
    background: #80006C;
    -webkit-transform-origin: 0 100% 0;
    -ms-transform-origin: 0 100% 0;
    transform-origin: 0 100% 0;
    -webkit-transform: skew(-188deg);
    -ms-transform: skew(-188deg);
    transform: skew(-188deg);
    top: 0;
    left: calc( 170px + (100vw - 170px) / 2); }

.page-template-page-mu-plus-plans h4 {
  font-size: 21px;
  font-weight: 400;
  font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 28px 0 50px;
  letter-spacing: 1px; }

.page-template-page-mu-plus-plans br {
  display: flex; }

.page-template-page-mu-plus-plans .paypal-form {
  padding: 0 18px 26px;
  background: rgba(255, 255, 255, 0.08); }
  .page-template-page-mu-plus-plans .paypal-form:nth-of-type(1) {
    margin-top: 10px; }
  .page-template-page-mu-plus-plans .paypal-form + p {
    height: 60px;
    margin: 0;
    line-height: 60px;
    font-size: 18px;
    font-weight: 300;
    font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .page-template-page-mu-plus-plans .paypal-form img {
    display: none; }
  .page-template-page-mu-plus-plans .paypal-form .container {
    z-index: 1;
    position: relative;
    display: block;
    height: 69px;
    margin-top: 105px; }
    .page-template-page-mu-plus-plans .paypal-form .container input {
      opacity: 0;
      width: 100%;
      height: 69px; }
    .page-template-page-mu-plus-plans .paypal-form .container:before, .page-template-page-mu-plus-plans .paypal-form .container:after {
      content: "";
      display: block;
      height: 100%;
      position: absolute;
      z-index: -1; }
    .page-template-page-mu-plus-plans .paypal-form .container:before {
      background-image: url("../images/plan/paypal-credit-cards.png");
      background-repeat: no-repeat;
      background-position: center;
      width: 100vw;
      top: -52px;
      left: -18px;
      height: 28px; }
    .page-template-page-mu-plus-plans .paypal-form .container:after {
      content: "PAY VIA PAYPAL";
      background: #58B063;
      font-size: 24px;
      line-height: 69px;
      top: 0;
      left: calc((100% - 250px) / 2);
      text-align: center;
      width: 250px;
      font-weight: 400;
      padding-top: 4px;
      height: 69px; }
    .page-template-page-mu-plus-plans .paypal-form .container.hover:after {
      background: #42854B; }

.page-template-page-mu-plus-plans .type {
  font-size: 24px;
  font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #FFE969;
  text-transform: uppercase;
  font-weight: 300;
  padding: 40px 0 20px;
  display: block; }

.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 #content {
  background: #050019;
  background: -moz-linear-gradient(top, #050019 0%, #0a0039 39%, #5d3382 94%, #5d3382 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #050019), color-stop(39%, #0a0039), color-stop(94%, #5d3382), color-stop(100%, #5d3382));
  background: -webkit-linear-gradient(top, #050019 0%, #0a0039 39%, #5d3382 94%, #5d3382 100%);
  background: -o-linear-gradient(top, #050019 0%, #0a0039 39%, #5d3382 94%, #5d3382 100%);
  background: -ms-linear-gradient(top, #050019 0%, #0a0039 39%, #5d3382 94%, #5d3382 100%);
  background: linear-gradient(to bottom, #050019 0%, #0a0039 39%, #5d3382 94%, #5d3382 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#050019', endColorstr='#5d3382', GradientType=0 ); }

.page-app #main {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 300;
  padding-bottom: 105px; }
  .page-app #main h1 {
    font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 42px;
    width: 100%;
    margin: 26px auto 0; }
  .page-app #main h4 {
    font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 36px;
    font-weight: 400; }
  .page-app #main h5 {
    font-size: 26px;
    text-transform: none; }
  .page-app #main h4, .page-app #main h5, .page-app #main p {
    letter-spacing: 1px;
    text-align: center; }
  .page-app #main h5, .page-app #main p {
    font-weight: 300; }
  .page-app #main p {
    font-size: 22px;
    line-height: 28px;
    opacity: 0.85; }
  .page-app #main .phone {
    width: 100%;
    position: relative;
    height: 490px;
    margin-top: 45px; }
    .page-app #main .phone .image {
      height: 200vh;
      position: absolute;
      bottom: 0;
      width: 100vw;
      background: transparent url("../images/app/phone-640.png") no-repeat scroll left bottom/860px auto;
      left: calc(50% - 120px); }
  .page-app #main .features h4 {
    margin: 80px 0 0; }
  .page-app #main .features .row {
    background-repeat: none;
    padding-top: 125px;
    position: relative;
    padding: 125px 12px 0; }
    .page-app #main .features .row h5 {
      margin: 26px 0 0;
      letter-spacing: 1px; }
    .page-app #main .features .row .image-retina {
      width: 378px;
      height: 100vh;
      position: absolute;
      top: calc(125px - 100vh);
      background-position: 0 bottom;
      background-repeat: no-repeat;
      background-size: 280px auto;
      left: calc(50% - 42px); }
    .page-app #main .features .row p {
      font-size: 20px;
      line-height: 26px; }
  .page-app #main .available h4 {
    font-size: 36px;
    margin-top: 45px;
    margin-bottom: 35px; }
  .page-app #main .available .button {
    width: 246px;
    height: 72px;
    margin: 0 auto;
    display: block;
    background-color: rgba(0, 0, 0, 0.28);
    border-radius: 7px;
    margin-bottom: 18px;
    text-decoration: none; }
    .page-app #main .available .button:active, .page-app #main .available .button:hover {
      background-color: rgba(0, 0, 0, 0.4); }
    .page-app #main .available .button span:before {
      font-size: 49px;
      line-height: 72px;
      color: #fff; }
  .page-app #main .version-notes {
    margin-top: 45px; }
    .page-app #main .version-notes a {
      color: #61C0FF;
      text-decoration: none;
      font-size: 18px; }

/* CONTACT PAGE */
.page-contact-us .hentry header {
  margin-top: 18px; }
  .page-contact-us .hentry header h1 {
    padding: 12px 0 30px; }

.page-contact-us .entry-content {
  padding: 0; }
  .page-contact-us .entry-content .gform_confirmation_message_1.gform_confirmation_message {
    font-size: 19px;
    line-height: 26px;
    margin: 70px 0 200px;
    text-align: center; }

.page-contact-us .entry-content .gform_title {
  display: none; }

.page-contact-us .entry-content .contact-form-intro {
  background: #FFFCBB;
  padding: 20px 24px; }
  .page-contact-us .entry-content .contact-form-intro p {
    font-size: 16px;
    line-height: 20px;
    color: #808080;
    text-align: center;
    margin: 0; }
  .page-contact-us .entry-content .contact-form-intro a {
    color: #0071BC; }

.page-contact-us .entry-content .validation_error {
  color: red;
  text-align: center;
  padding: 15px 0 0; }

.page-contact-us .entry-content .gform_body {
  padding: 0 16px;
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  margin-top: 26px; }
  .page-contact-us .entry-content .gform_body ul.gform_fields {
    margin: 0; }
    .page-contact-us .entry-content .gform_body ul.gform_fields li.gfield.mdl-textfield {
      padding-bottom: 0;
      margin-bottom: 20px;
      width: 100%; }
    .page-contact-us .entry-content .gform_body ul.gform_fields .gfield_error .validation_message {
      color: red !important;
      font-size: 14px !important;
      position: absolute !important; }
  .page-contact-us .entry-content .gform_body li:before {
    display: none; }

.page-contact-us .entry-content .gfield_required {
  display: none; }

.page-contact-us .entry-content input, .page-contact-us .entry-content textarea {
  color: #000000;
  font-weight: 400;
  border: 0 !important;
  font-size: 18px !important;
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif !important; }

.page-contact-us .entry-content textarea#input_1_3 {
  line-height: 24px; }

.page-contact-us .entry-content .ginput_container {
  margin: 0 !important; }

.page-contact-us .entry-content .mdl-textfield__label {
  top: 33px !important; }

.page-contact-us .entry-content #gform_wrapper_1 .mdl-textfield__label::after {
  background-color: #808080;
  bottom: 7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition-duration: 0;
  transition-timing-function: none;
  visibility: visible;
  width: 100%;
  -webkit-transition: all 0.25 ease-in;
  transition: all 0.25 ease-in; }

.page-contact-us .entry-content .mdl-textfield--floating-label.is-focused .mdl-textfield__label,
.page-contact-us .entry-content .mdl-textfield--floating-label.is-dirty .mdl-textfield__label,
.page-contact-us .entry-content .mdl-textfield--floating-label.has-placeholder .mdl-textfield__label {
  color: #3f51b5;
  font-size: 14px !important;
  top: 4px !important;
  visibility: visible; }

.page-contact-us .entry-content .mdl-textfield--floating-label.is-focused .mdl-textfield__label:after {
  height: 2px !important;
  bottom: 6px !important;
  background-color: #0071BC !important; }

.page-contact-us .entry-content body #gform_wrapper_1 .gform_body .gform_fields .gfield select {
  font-size: 19px; }

.page-contact-us .entry-content #field_1_2 .validation_message {
  top: 63px !important; }

.page-contact-us .entry-content #field_1_5 {
  margin-bottom: 36px; }
  .page-contact-us .entry-content #field_1_5 label {
    display: none; }

.page-contact-us .entry-content #field_1_3 {
  position: relative;
  border-bottom: 1px solid #808080;
  height: auto !important; }
  .page-contact-us .entry-content #field_1_3 label:after {
    display: none; }
  .page-contact-us .entry-content #field_1_3 textarea {
    -webkit-transition: border 0.25s ease-in;
    transition: border 0.25s ease-in;
    -webkit-transition: height 0.25s ease-in;
    transition: height 0.25s ease-in;
    height: 45px;
    min-height: auto;
    font-size: 19px;
    border: none; }
  .page-contact-us .entry-content #field_1_3.is-focused, .page-contact-us .entry-content #field_1_3.is-dirty {
    border-bottom: 2px solid #0071BC !important; }
    .page-contact-us .entry-content #field_1_3.is-focused textarea, .page-contact-us .entry-content #field_1_3.is-dirty textarea {
      height: 120px !important; }
  .page-contact-us .entry-content #field_1_3:after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    width: 12px;
    height: 12px; }
  .page-contact-us .entry-content #field_1_3 .validation_message {
    top: 66px !important; }

.page-contact-us .entry-content .gform_footer {
  margin-top: -6px;
  padding: 0 14px 56px; }

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

.page-contact-us .entry-content #gform_submit_button_1 {
  width: 100%;
  height: 61px;
  border-radius: 3px;
  background: #cccccc;
  border: none;
  color: #fff;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: none;
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-transition: background 0.25s ease-in;
  transition: background 0.25s ease-in; }
  .page-contact-us .entry-content #gform_submit_button_1:after {
    display: inline-block;
    content: "SEND";
    text-indent: 0; }
  .page-contact-us .entry-content #gform_submit_button_1 span {
    display: none; }

.page-contact-us .entry-content #gform_1.touched #gform_submit_button_1 {
  background: #58B063; }

/* 404 */
.error404 {
  background-color: black;
  color: #fff; }
  .error404 #inner-content {
    position: relative;
    background-image: url("../images/404/background-404.png");
    background-size: cover;
    z-index: 1; }
  .error404 .hentry header h1 {
    font-size: 146px;
    font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    font-weight: 500;
    letter-spacing: 16px;
    line-height: 96px;
    margin: 28px 0 0; }
  .error404 .hentry section h4 {
    font-size: 48px;
    letter-spacing: 8px;
    font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    font-weight: 300;
    margin: -10px 0 0; }
  .error404 .hentry section .image {
    display: block;
    width: 100%;
    height: 110px;
    margin-bottom: 12px;
    margin-top: 10px;
    background-image: url("../images/404/aliens-585-320.png");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center; }
  .error404 .hentry section p {
    font-size: 20px;
    font-family: "Exo", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 26px;
    letter-spacing: 1px;
    font-weight: 300;
    text-align: center;
    width: 300px;
    margin: 0 auto; }
    .error404 .hentry section p .color {
      color: #ED1D33; }
      .error404 .hentry section p .color:active, .error404 .hentry section p .color:hover {
        color: #ED1D33; }
  .error404 .hentry .search {
    margin: 35px 0 56px;
    padding: 0 0 0 10px; }
  .error404 .hentry #searchform {
    margin: 30px auto 50px;
    width: 100%; }
    .error404 .hentry #searchform > div {
      width: calc(100vw - 10px);
      padding: 0; }
    .error404 .hentry #searchform label {
      font-size: 20px;
      padding-top: 7px;
      letter-spacing: 1px;
      opacity: 1;
      visibility: visible;
      -webkit-transition: opacity 0.25s ease-out 0s;
      transition: opacity 0.25s ease-out 0s; }
    .error404 .hentry #searchform #s {
      display: inline-block !important;
      font-size: 20px;
      letter-spacing: 1px;
      padding-bottom: 3px; }
    .error404 .hentry #searchform button {
      top: -8px;
      position: relative; }
      .error404 .hentry #searchform button:before {
        font-size: 37px;
        left: -1px; }

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 0 0;
  float: none;
  width: 100%; }

.pagination {
  text-align: center; }
  .pagination.hide-prev-next-text .page-numbers .prev, .pagination.hide-prev-next-text .page-numbers .next {
    font-size: 0;
    width: 48px; }
  .pagination ul {
    display: inline-block;
    background-color: #fff;
    white-space: nowrap;
    padding: 0;
    clear: both;
    text-align: center;
    margin-bottom: 54px; }
    .pagination ul.mobile.hide-start, .pagination ul.mobile.hide-end {
      display: none; }
    .pagination ul.mobile li .page-numbers {
      display: block; }
    .pagination ul:not(.mobile) li:first-child .current, .pagination ul:not(.mobile) li:last-child .current {
      display: none; }
  .pagination li {
    display: inline;
    margin: 0 auto;
    float: left; }
    .pagination li .page-numbers {
      display: none;
      font-size: 19px;
      color: #1A1A1A;
      height: 48px;
      background: #E6E6E6;
      line-height: 48px;
      padding: 1px 0 0;
      width: 48px;
      font-weight: 300;
      text-decoration: none; }
      .pagination li .page-numbers:hover, .pagination li .page-numbers:focus {
        background-color: #A6D8EA; }
      .pagination li .page-numbers.prev, .pagination li .page-numbers.next {
        display: block;
        width: 152px;
        position: relative; }
        .pagination li .page-numbers.prev:after, .pagination li .page-numbers.next:after {
          content: "";
          display: inline-block;
          height: 12px;
          width: 12px;
          border-top: 1px solid;
          border-left: 1px solid;
          position: absolute;
          top: calc(50% - 6px); }
      .pagination li .page-numbers.prev:after {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        left: 20px; }
      .pagination li .page-numbers.next:after {
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        right: 20px; }
      .pagination li .page-numbers.start, .pagination li .page-numbers.end {
        position: relative; }
        .pagination li .page-numbers.start:before, .pagination li .page-numbers.start:after, .pagination li .page-numbers.end:before, .pagination li .page-numbers.end:after {
          content: "";
          display: inline-block;
          height: 12px;
          width: 12px;
          border-top: 1px solid;
          border-left: 1px solid;
          position: absolute;
          top: calc(50% - 6px); }
      .pagination li .page-numbers.start:before, .pagination li .page-numbers.start:after {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        left: 20px; }
      .pagination li .page-numbers.start:after {
        left: 24px; }
      .pagination li .page-numbers.end:before, .pagination li .page-numbers.end:after {
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        right: 20px; }
      .pagination li .page-numbers.end:after {
        right: 24px; }
      .pagination li .page-numbers.current {
        display: block; }
      .pagination li .page-numbers.dots {
        background: transparent;
        cursor: default; }
        .pagination li .page-numbers.dots:active, .pagination li .page-numbers.dots:hover {
          background: transparent;
          color: #1A1A1A; }
  .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 */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
/*********************
SIDEBARS & ASIDES
*********************/
.sidebar {
  top: 0 !important; }

.sidebar2 {
  clear: both; }

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

.home-320-area-3-sidebar {
  display: block !important;
  padding: 0 9px; }

.widgettitle {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px; }

.widget ul li {
  /* deep nesting */ }

.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 {
  position: relative;
  background: #363795;
  background: -moz-linear-gradient(60deg, #363795 0%, #0a0039 64%, #0a0039 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #363795), color-stop(64%, #0a0039), color-stop(100%, #0a0039));
  background: -webkit-linear-gradient(60deg, #363795 0%, #0a0039 64%, #0a0039 100%);
  background: -o-linear-gradient(60deg, #363795 0%, #0a0039 64%, #0a0039 100%);
  background: -ms-linear-gradient(60deg, #363795 0%, #0a0039 64%, #0a0039 100%);
  background: linear-gradient(60deg, #363795 0%, #0a0039 64%, #0a0039 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#363795', endColorstr='#0a0039', GradientType=1 ); }
  .widget_join_plus .content {
    height: 354px;
    background: transparent url("../images/content/sidebar-plus-ad-graphic.png") no-repeat scroll center -49px; }
  .widget_join_plus .text {
    font-size: 20px;
    text-align: center;
    line-height: 24px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 300;
    width: calc(100vw - 72px);
    margin: 0 36px;
    position: absolute;
    top: 190px; }
  .widget_join_plus .button {
    width: calc(100vw - 72px);
    margin: 0 36px;
    background: #5154CF;
    position: absolute;
    bottom: 20px;
    height: 51px;
    text-align: center; }
    .widget_join_plus .button a {
      color: #fff;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 500;
      font-size: 17px;
      letter-spacing: 1px;
      line-height: 51px;
      display: block; }
      .widget_join_plus .button a:active, .widget_join_plus .button a:hover {
        background: #5033d3; }

.widget_recent_posts_with_thumbs ul {
  margin-bottom: 40px;
  margin-top: 0; }
  .widget_recent_posts_with_thumbs ul li {
    min-height: 75px;
    clear: both; }
    .widget_recent_posts_with_thumbs ul li h5 {
      font-size: 16px;
      line-height: 21px;
      margin: 0 0 20px;
      text-transform: none; }
      .widget_recent_posts_with_thumbs ul li h5 a {
        color: #1A1A1A;
        font-weight: 600;
        width: 100%;
        display: inline-block; }
        .widget_recent_posts_with_thumbs ul li h5 a:active, .widget_recent_posts_with_thumbs ul li h5 a:hover {
          color: #662D91; }
    .widget_recent_posts_with_thumbs ul li .thumb a {
      display: block;
      margin-bottom: 8px;
      max-height: calc( (100vw - 24px ) * 540 / 999);
      overflow: hidden; }
    .widget_recent_posts_with_thumbs ul li .thumb img {
      width: 100%;
      height: auto; }
    .widget_recent_posts_with_thumbs ul li .thumb:active + h5 a, .widget_recent_posts_with_thumbs ul li .thumb:hover + h5 a {
      color: #662D91; }

.widget_related_posts {
  margin-top: 0;
  padding: 0 16px;
  overflow: hidden; }
  .widget_related_posts .widgettitle {
    margin: 8px 0;
    font-size: 26px;
    font-weight: 600; }
  .widget_related_posts ul {
    margin-top: 0;
    margin-bottom: 20px; }
    .widget_related_posts ul li {
      width: 100%;
      min-height: 50px;
      overflow: hidden; }
      .widget_related_posts ul li:first-child {
        width: 100%; }
        .widget_related_posts ul li:first-child h5 {
          font-size: 20px;
          line-height: 24px;
          margin: 0 0 14px;
          width: 100%;
          font-weight: 600; }
        .widget_related_posts ul li:first-child .thumb {
          margin-right: 0;
          padding-bottom: 0;
          width: 100%; }
          .widget_related_posts ul li:first-child .thumb a {
            display: block;
            margin-bottom: 8px;
            height: calc( (100vw - 24px ) * 540 / 999);
            overflow: hidden;
            background-position: center; }
          .widget_related_posts ul li:first-child .thumb img {
            width: 100%;
            height: auto; }
      .widget_related_posts ul li:active h5 a, .widget_related_posts ul li:hover h5 a {
        color: #662D91; }
      .widget_related_posts ul li .thumb {
        float: left;
        margin-right: 8px;
        padding-bottom: 16px;
        width: 120px; }
        .widget_related_posts ul li .thumb a {
          display: block;
          position: relative;
          height: calc( 120px * 540 / 999);
          overflow: hidden;
          background-size: cover; }
          .widget_related_posts ul li .thumb a:after {
            content: "";
            display: block;
            background: #662D91;
            opacity: 0;
            position: absolute;
            z-index: 1;
            width: 100%;
            height: 100%;
            top: 0;
            transition: all .25s ease-in-out;
            -webkit-transition: all .25s ease-in-out; }
          .widget_related_posts ul li .thumb a:active:after, .widget_related_posts ul li .thumb a:hover:after {
            opacity: 0.1; }
        .widget_related_posts ul li .thumb img {
          width: 120px;
          height: auto; }
      .widget_related_posts ul li:nth-of-type(n+2) .thumb.ribbon:before {
        background-image: url("../images/plus-label-mini.png");
        width: 30px;
        height: 30px; }
      .widget_related_posts ul li h5 {
        text-transform: none;
        font-size: 18px;
        line-height: 22px;
        font-weight: 600;
        margin: 0 0 14px 0;
        width: calc(100% - 130px);
        float: right;
        letter-spacing: 1px;
        min-height: 40px; }
        .widget_related_posts ul li h5 a {
          color: #1A1A1A; }
          .widget_related_posts ul li h5 a:active, .widget_related_posts ul li h5 a:hover {
            color: #662D91; }
      .widget_related_posts ul li h6, .widget_related_posts ul li .byline {
        display: none; }

/* Google Ads */
.home-320-area-2-sidebar {
  clear: both; }
  .home-320-area-2-sidebar .widget {
    padding: 0;
    margin: 0 0 20px;
    position: relative;
    height: calc(100% * 300px / 250px);
    text-align: center; }

.sidebar2 .single-post-footer .widget_text, .mu-banner-ad.home-after-cover, .mu-banner-ad.archive-after-header, .mu-banner-ad.home-in-articles,
.mu-banner-ad.home-after-articles, .entry-content div[id|="div-gpt-ad"] {
  background: #F1EEFF;
  margin: 10px 0 30px;
  position: relative;
  text-align: center; }
  .sidebar2 .single-post-footer .widget_text div[id*="google_ads_iframe_"], .mu-banner-ad.home-after-cover div[id*="google_ads_iframe_"], .mu-banner-ad.archive-after-header div[id*="google_ads_iframe_"], .mu-banner-ad.home-in-articles div[id*="google_ads_iframe_"],
  .mu-banner-ad.home-after-articles div[id*="google_ads_iframe_"], .entry-content div[id|="div-gpt-ad"] div[id*="google_ads_iframe_"] {
    margin: 15px 0; }
  .sidebar2 .single-post-footer .widget_text .widget_join_plus, .mu-banner-ad.home-after-cover .widget_join_plus, .mu-banner-ad.archive-after-header .widget_join_plus, .mu-banner-ad.home-in-articles .widget_join_plus,
  .mu-banner-ad.home-after-articles .widget_join_plus, .entry-content div[id|="div-gpt-ad"] .widget_join_plus {
    margin-bottom: 26px; }

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

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

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

.entry-content div[id|="div-gpt-ad"] {
  margin: 30px 0 30px -16px;
  width: 100vw; }
  .entry-content div[id|="div-gpt-ad"] div[id*="google_ads_iframe_"] {
    margin: 38px auto; }

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background: #160036;
  background: -moz-linear-gradient(-45deg, #160036 0%, #380091 41%, #ff002c 100%);
  background: -webkit-gradient(left top, right bottom, color-stop(0%, #160036), color-stop(41%, #380091), color-stop(100%, #ff002c));
  background: -webkit-linear-gradient(-45deg, #160036 0%, #380091 41%, #ff002c 100%);
  background: -o-linear-gradient(-45deg, #160036 0%, #380091 41%, #ff002c 100%);
  background: -ms-linear-gradient(-45deg, #160036 0%, #380091 41%, #ff002c 100%);
  background: linear-gradient(135deg, #160036 0%, #380091 41%, #ff002c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#160036', endColorstr='#ff002c', GradientType=1 );
  min-height: 300px;
  -webkit-hyphens: initial;
  -epub-hyphens: initial;
  -moz-hyphens: initial;
  hyphens: initial;
  margin-bottom: -26px; }
  .footer #inner-footer {
    padding-top: 10px; }
  .footer h3, .footer h5 {
    color: #fff;
    text-align: center;
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 300;
    line-height: 26px;
    text-transform: none; }
  .footer nav {
    float: none;
    text-align: center;
    margin: 0 auto;
    display: block; }
    .footer nav ul {
      margin-top: 0; }
    .footer nav ul, .footer nav ol {
      font-size: 18px; }
    .footer nav a {
      color: #fff;
      opacity: 0.7;
      font-weight: 300;
      line-height: 34px;
      text-decoration: none;
      letter-spacing: 1px; }
      .footer nav a:active, .footer nav a:hover {
        color: #fff;
        opacity: 1; }
  .footer .socials {
    text-align: center; }
    .footer .socials ul {
      margin: 5px 0 0;
      height: 45px; }
    .footer .socials li {
      display: inline-block; }
    .footer .socials a {
      text-decoration: none;
      line-height: 0;
      height: 45px;
      width: 45px;
      opacity: 0.25;
      display: block;
      margin: 0 16px;
      color: #fff;
      font-size: 47px; }
      .footer .socials a.twitter-link {
        font-size: 56px;
        position: relative;
        top: 2px; }
    .footer .socials a.facebook-link:active, .footer .socials a.facebook-link:hover, .footer .socials a.twitter-link:active, .footer .socials a.twitter-link:hover {
      opacity: 0.9; }
  .footer .callus {
    margin-top: 60px; }
    .footer .callus h3 {
      width: 260px;
      margin: 0 auto;
      font-size: 24px;
      line-height: 26px; }
    .footer .callus h3.short {
      display: none; }
    .footer .callus .call {
      color: #fff;
      margin-top: 25px; }
      .footer .callus .call ul {
        text-align: center; }
        .footer .callus .call ul li {
          display: inline-block;
          position: relative; }
          .footer .callus .call ul li .title {
            opacity: 0.85;
            font-size: 22px;
            letter-spacing: 1px;
            font-weight: 300; }
          .footer .callus .call ul li .id {
            opacity: 0.6;
            font-size: 18px;
            font-weight: 300;
            line-height: 30px;
            letter-spacing: 1px; }
          .footer .callus .call ul li .or {
            width: 55px;
            position: relative;
            top: -45px;
            opacity: 0.5; }
            .footer .callus .call ul li .or .title {
              font-size: 16px; }
          .footer .callus .call ul li .voicemail span, .footer .callus .call ul li .skype span {
            display: block;
            width: 45px;
            height: 45px;
            font-size: 45px;
            color: #fff;
            opacity: 0.5;
            margin: 0 auto 8px; }
          .footer .callus .call ul li .voicemail a {
            text-decoration: none; }
  .footer .buy {
    margin: 50px auto 25px;
    padding: 0 10px;
    color: #fff;
    letter-spacing: 1px;
    max-width: 360px; }
    .footer .buy .powerpress_player, .footer .buy .powerpress_links {
      display: none; }
    .footer .buy h5 {
      width: 100%;
      margin: 0 auto; }
    .footer .buy h6 {
      font-weight: 300;
      font-size: 18px;
      margin-bottom: 10px;
      letter-spacing: 1px; }
      .footer .buy h6 a {
        position: relative;
        z-index: 1; }
      .footer .buy h6 img {
        float: right;
        margin-bottom: 15px;
        width: 132px;
        height: auto; }
    .footer .buy p {
      font-size: 16px;
      line-height: 18px;
      padding-right: 4px;
      font-weight: 300;
      margin: 0;
      opacity: 0.8;
      letter-spacing: 1px; }
    .footer .buy .price {
      width: 100%;
      text-align: center;
      border-radius: 2px;
      overflow: hidden; }
      .footer .buy .price span, .footer .buy .price a {
        display: block;
        height: 58px;
        line-height: 58px; }
      .footer .buy .price span {
        float: left;
        background: rgba(0, 0, 0, 0.15);
        font-size: 24px;
        width: calc(57%); }
      .footer .buy .price a {
        width: 43%;
        background: #5050D3;
        float: right;
        text-decoration: none;
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        font-weight: normal;
        color: #fff; }
        .footer .buy .price a:active, .footer .buy .price a:hover {
          background: #5033d3; }
  .footer .copyright {
    background: black;
    margin: 0;
    padding: 14px 12px;
    color: #fff;
    opacity: 0.56;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 1px;
    font-weight: 300; }

/*
	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 */
/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 640px) {
  /******************************************************************
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 */ }

@media only screen and (min-width: 750px) {
  .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; } }

@media only screen and (min-width: 935px) {
  /*********************
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); } }

/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1000px) {
  /******************************************************************
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 */ }

/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1270px) {
  /******************************************************************
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 */ }

/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1328px) {
  /******************************************************************
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; } }

/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1366px) {
  /******************************************************************
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; } }

/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
  .widget_related_posts ul li:nth-of-type(n+2) .thumb.ribbon::before {
    background-image: url("../images/@x2-plus-label-mini.png"); }
  /* Plus */
  .page-plus #content::before {
    background-image: url("../images/plus/@x2-top-graphic-320.png"); }
  .page-plus .devices .ios .image {
    background-image: url("../images/plus/@x2-iphone.png"); }
  .page-plus .devices .android .image {
    background-image: url("../images/plus/@x2-android-phone.png"); }
  .page-plus .devices .laptop .image {
    background-image: url("../images/plus/@x2-laptop.png"); }
  /* Plans */
  .page-template-page-mu-plus-plans #main::before {
    background-image: url("../images/plan/@x2-plan-page-plus-icon.png");
    background-size: 184px auto;
    background-position: center 20px; }
  .page-template-page-mu-plus-plans #main::after {
    background-image: url("../images/plan/@x2-lock-icon.png");
    background-size: 26px; }
  .page-template-page-mu-plus-plans .paypal-form .container::before {
    background-image: url("../images/plan/@x2-paypal-credit-cards.png");
    background-size: 296px auto; }
  /* App */
  .page-app #content .phone .image {
    background-image: url("../images/app/@x2-phone-640.png");
    background-size: 875px; }
  /* 404 */
  .error404 .hentry section .image {
    background-image: url("../images/404/@x2-aliens-585-320.png"); }
  .ribbon:before, .ribbon .inner-image.old:before, .ribbon .image.full:before, .thumb.ribbon:before {
    background-image: url("../images/@x2-plus-label.png"); } }

@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 640px), only screen and (min--moz-device-pixel-ratio: 1.5) and (min-width: 640px), only screen and (min-device-pixel-ratio: 1.5) and (min-width: 640px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
  /* App */
  .page-app #content .phone .image {
    background-size: 1270px;
    height: 1270px; }
  .page-plus #content::before {
    background-image: url("../images/plus/@x2-top-graphic-640-320.png"); }
  /* 404 */
  .error404 .hentry section .image {
    background-image: url("../images/404/@x2-aliens-1000-585.png"); } }

@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 1000px), only screen and (min--moz-device-pixel-ratio: 1.5) and (min-width: 1000px), only screen and (min-device-pixel-ratio: 1.5) and (min-width: 1000px) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
  .page-plus #content::before {
    background-image: url("../images/plus/@x2-top-graphic-1366-1000.png"); }
  .widget_recent_posts_with_thumbs ul li:nth-of-type(n+2) .thumb.ribbon::before {
    background-image: url("../images/@x2-plus-label-mini.png"); }
  .widget_related_posts ul li:nth-of-type(n+2) .thumb.ribbon::before {
    background-image: url("../images/@x2-plus-label.png"); }
  /* 404 */
  .error404 .hentry section .image {
    background-image: url("../images/404/@x2-aliens-1366-1000.png"); } }

@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 1366px), only screen and (min--moz-device-pixel-ratio: 1.5) and (min-width: 1366px), only screen and (min-device-pixel-ratio: 1.5) and (min-width: 1366px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
  .page-plus #content::before {
    background-image: url("../images/plus/@x2-top-graphic-1366-1000.png"); }
  .page-app #content .phone .image {
    background-image: url("../images/app/@x2-phone-1366.png");
    background-size: 1300px;
    height: 1300px; } }

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

/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
Site Name:
Author:

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. If you want to
though, go for it.

******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }
/* Added by Rena */
.category-podcasts #div-gpt-ad-1500210453292-0, .category-plus-podcasts #div-gpt-ad-1523538705660-0, .category-podcasts #div-gpt-ad-1523538705660-0{display:none;}

.entry-content .powerpress_player, .entry-content .powerpress_links {display:none; }

@media only screen and (max-width: 600px) {
    .not-mobile{display: none;}
}


