/*
Theme Name: RealRawYou
Theme URI: http://realrawyou.com/
Author: Carole Magouirk
Author URI: http://carolemagouirk.com/
Description: A collaborative, magazine-style blog theme for RealRawYou.com.
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: realrawyou
*/

/*
  OLD PINK:         FCD9DB
  Light Pink:       FFEFF2
  Dark Pink:        E0829D
  New Pink:         A9C4D9
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
5.1 Links
5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
10.1 Posts and pages
10.2 Asides
10.3 Comments
11.0 Infinite scroll
12.0 Media
12.1 Captions
12.2 Galleries
--------------------------------------------------------------*/

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 300;
  src: local('Ubuntu Light'), local('Ubuntu-Light'), url(http://fonts.gstatic.com/s/ubuntu/v7/_aijTyevf54tkVDLy-dlnD8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}

@font-face {
  font-family: 'Josefin Slab';
  font-style: normal;
  font-weight: 400;
  src: local('Josefin Slab'), local('JosefinSlab'), url(http://fonts.gstatic.com/s/josefinslab/v6/46aYWdgz-1oFX11flmyEfXhCUOGz7vYGh680lGh-uXM.woff) format('woff');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  src: local('Oswald Light'), local('Oswald-Light'), url(https://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-sh0Tus9C.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Homemade Apple';
  font-style: normal;
  font-weight: 400;
  src: local('Homemade Apple'), local('HomemadeApple'), url(http://fonts.gstatic.com/s/homemadeapple/v6/yg3UMEsefgZ8IHz_ryz86Kmk7U3V72hKgu0Yds_deA8.woff) format('woff');
}

@font-face { /* FONT FOR 'QUEST' IN THE NAV BAR */
  font-family: 'Shrik';
  font-style: normal;
  font-weight: 400;
  src: local('Shrikhand Regular'), local('Shrikhand-Regular'), url(https://fonts.gstatic.com/s/shrikhand/v3/a8IbNovtLWfR7T7bMJwrA4KR.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  scroll-behavior: smooth;
  
  min-width: 480px;
}

*,
*:before,
*:after {
  /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  -webkit-box-sizing: border-box;
  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  -moz-box-sizing: border-box;
  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing: border-box;
}

body {
  font-family: "Karla", "Helvetica", Arial, Sans-Serif;
  background: #A9C4D9;
  /* Fallback for when there is no custom background color defined. */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
}

blockquote,
q {
  quotes: "" "";
}

a:focus {
  outline: none;
}

coc a:hover,
a:active {
  outline: 0;
}

a img {
  border: 0;
}


/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/

body,
button,
input,
select,
textarea {
  color: #555;
  font-family: Georgia, serif;
  font-size: 18px;
  font-size: 1.6rem;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

b,
strong {
  font-weight: bold;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Monaco", Courier, monospace;
  font-size: 18px;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font: 15px "Karla", "Josefin Slab", Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #A9C4D9;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}


/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/

hr {
  background-color: #A9C4D9;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 0;
}

table {
  /*margin: 0 0 1.5em;*/
  width: 100%;
}

th {
  font-weight: bold;
}


/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/

button,
input,
select,
textarea {
  font-size: 100%;
  /* Corrects font size not being inherited in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline;
  /* Improves appearance and consistency in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* Improves usability and consistency of cursor style between image-type 'input' and others */
  -webkit-appearance: button;
  /* Corrects inability to style clickable 'input' types in iOS */
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
  -webkit-appearance: textfield;
  /* Addresses appearance set to searchfield in S5, Chrome */
  -webkit-box-sizing: content-box;
  /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
  border: 0;
  padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {}

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
}


/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/

/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/

a {
  color: #92a8D1;
  text-decoration: none;
}

a:visited {}

a:hover,
a:focus,
a:active {
  text-decoration: underline;
}


/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/

/* Text meant only for screen readers */

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 18px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
}


/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/

.alignleft {
  display: inline;
  float: left;
  margin: 0 1.5em 0 0;
  text-align: left;
}

.alignright {
  display: inline;
  float: right;
  margin: 0 0 0 1.5em;
  text-align: right;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}


/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: '';
  display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}


/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/

.widget {
  margin-bottom: 20px;
}


/* Make sure select elements fit in widgets */

.widget select {
  max-width: 100%;
}


/* Search widget */

.widget_search .search-submit {
  display: none;
}


/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/

/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/

.sticky {
  display: block;
}

.hentry {}

.byline,
.updated:not(.published) {
  display: none;
}

.single-post .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}


/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}


/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}


/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/

/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .paging-navigation,

/* Older / Newer Posts Navigation (always hidden) */

.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}


/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */

.infinity-end.neverending .site-footer {
  display: block;
}


/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/

.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}


/* Make sure embeds and iframes fit their containers */

embed,
iframe,
object {
  max-width: 100%;
}


/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/

.wp-caption {
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0 auto;
}

.wp-caption-text {
  font-size: 15px;
  color: #777;
}

.wp-caption .wp-caption-text {
  margin: 0.3em 0 0;
}


/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/

.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

body {
  background: #fbfbfb;
}

.margin {
  margin: 0 auto;
  position: relative;
}


/* ADS */

.ad-block {}

.ad-block img {
  display: block;
}

.header-ad {
  float: right;
  margin-top: 25px;
}

.content-ad {
  position: absolute;
  top: 464px;
}


/* HEADER */

.site-header {
  background-color: #fff;
}

.site-branding {
  text-align: center;
  padding: 0 20px;
}

.site-content,
.margin {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

#logo {
  height: 90px;
  display: inline-block;
  float: left;
}

#logo a,
#logo img {
  display: inline-block;
}

#nav-search {
  float: right;
  line-height: 90px;
}

#nav-search .search-field {
  color: #999;
  border: 0;
  border-radius: 20px;
  padding-left: 10px;
  width: 100px;
  height: 28px;
  background: #fbfbfb;
  font-size: 13px;
}

#nav-search .search-field:focus,
#nav-search .search-field:hover,
#nav-search .search-field:active {
  outline: none;
  border: none;
}

#nav-search .search-submit {
  display: none;
}

#nav-social {
  float: left;
  font-size: 18px;
  margin-left: 10px;
  line-height: 70px;
}

#nav-social a {
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 35px;
  padding: 0;
  height: 35px;
  display: inline-block;
  background: #fff;
  border-radius: 100px;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  color: #666;
  margin: 15px 3px 0;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #eaeaea;
  line-height: 35px;
  font-size: 16px;
}

#nav-social a:hover {
  color: #fff;
}

#nav-social a:hover.snapchat {
  background: #eafd07;
}

#nav-social a:hover.facebook {
  background: #3b5998;
}

#nav-social a:hover.twitter {
  background: #55acee;
}

#nav-social a:hover.pinterest {
  background: #cc2127;
}

#nav-social a:hover.instagram {
  background: #125688;
}


/* MAIN MENU */
.main-navigation {
  text-align: center;
      display: inline-block;
  position:relative;
}

#menu-main-menu {
  min-height: 50px;
  display: inline;
}

#menu-main-menu,
.sub-menu {
  list-style: none;
  font-family: "Karla", sans-serif, Arial, Helvetica;
}

#menu-main-menu > li {
  display: inline-block;
  position: relative;
}

#menu-main-menu li.quest a {
  font-family: 'shrik', "Karla", sans-serif, Arial, Helvetica;
  text-transform: capitalize;
  font-size: 20px;
  color: #777;
}

.sub-menu {
  float: left;
}

#menu-main-menu li a:hover {
  color: #A9C4D9;
}

#menu-main-menu .current-menu-item > a {
  color: #A9C4D9;
}

#menu-main-menu > li > a,
.sub-menu > li > a {
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  color: #555;
  font-size: 15px;
  padding: 0 15px;
  border-bottom: none;
  letter-spacing: 1px;
  height: 75px;
    line-height: 90px;
}


/*SUB MENU*/

#menu-main-menu li:hover .sub-menu {
  display: block;
}

#menu-main-menu .sub-menu,
#menu-main-menu .children {
  border: 0;
    position: absolute;
    border-top: 1px solid #ddd;
    top: 75px;
    z-index: 99999;
    background: #fff;
    display: none;
    min-width: 200px;
}

#menu-main-menu .sub-menu a {
      border: 0;
    height: 50px;
    padding: 5px 5px 5px 10px;
    line-height: 40px;
}


/* HEADER BANNER */

.home-banner {
  position: relative;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.home-banner-text {
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.home-banner h1,
.home-banner h2 {}

.home-banner h1 {
  color: #fcfcfc;
  font-size: 95px;
  font-family: Georgia, serif;
}

.home-banner h2 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 35px;
  font-family: Georgia, serif;
}

.home-banner img {}

/*#header-container {
  padding: 5px 0 0;
  height: 350px;
  position: relative;
  background: url("http://realrawyou.com/images/bg.png") bottom center no-repeat #C0D1DF;
}*/

.category-shop #header-container {
  background: url("http://realrawyou.com/images/header-shop.png") bottom center no-repeat #FFFFFF;
}

.category-podcasts #header-container {
  background: url("http://realrawyou.com/images/header-podcast.png") bottom center no-repeat #E6EAED;
  width: 100%;
  height: auto;
  padding-top: 250px;
}

.page-id-8908 #header-container {
  background: url("http://realrawyou.com/images/header-now.png") bottom center no-repeat #C0D1DF;
  width: 100%;
  height: auto;
}

#header {
  max-width: 1200px;
  margin: 0 auto;
}

#header img {
  margin-top: -4px;
  z-index: 0
}

.video-container {
  float: left;
  margin: 25px 0 23px 0;
  z-index: -9999;
}

.video {
  width: 561px;
  height: 323px
}

.optin {
  text-align: left;
  margin-right: 60px;
  margin-top: 10px;
  width: 300px;
  height: 325px;
  padding: 20px;
  float: right;
  background: rgba(200, 200, 200, 0.1);
  border-radius: 5px;
}

h1.header-title {
  font-size: 65px;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  color: black;
  font-weight: 200;
  line-height: 100%;
}

.header-desc {
  font-size: 18px;
  font-weight: normal;
  text-transform: uppercase;
  color: #000;
  margin-top: 25px;
}

h3.header-caption {
  width: 250px;
  float: right;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 3px;
}

@media screen and (max-width:900px) {
  #header-container,
  .category-shop #header-container,
  .category-podcasts #header-container,
  .page-id-8908 #header-container {
    padding-top: 20%;
    background-size: contain;
  }
  .optin {
    margin: auto;
    float: none;
  }
}

.form-container {}

.form-container .textboxes {
  border: 1px none #000;
}

.form-container .textboxes input[type=email] {
  color: #bbb;
  width: 100%;
  height: 35px;
  margin: 0 0 3px 0;
  font-size: 28px;
  padding-left: 5px;
}

.button {
  border: none;
  padding: 0 0 0 5px;
  text-shadow: 0 0 3px #fff, 0 0 6px #fc0;
  position: relative;
}

.button:hover {
  cursor: pointer;
}

.button:active {
  top: 2px
}


/*BUTTON*/

.button {
  position: relative;
  line-height: 1.2;
  text-decoration: none;
  display: inline-block;
  padding: 10px 0 10px 0;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 1px;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 1px 0px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.4);
  text-shadow: -1px -1px 0px rgba(0, 0, 0, 0.3);
  margin-top: 1px;
  margin-bottom: 3px;
  background: #A9C4D9;
}

.button a {
  text-decoration: none;
  color: #fff;
}

.button:hover {}

.button:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
  top: 1px;
}


/* SUBSCRIBE BANNER */

.subscribe-banner {
  background: #303031;
  color: #fff;
  padding: 10px 0;
  position: relative;
  z-index: 1;
  top: -1px;
  text-align: center;
}

.subscribe-banner > form {
  text-align: center;
  margin-right: 30px;
  display: inline;
}

.subscribe-text {
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 20px;
}

.subscribe-group {
  display: inline;
}

.subscribe-group > input[type=email] {
  border-radius: 5px 0 0 5px;
  border: 3px solid #fff;
  padding-left: 10px;
  height: 40px;
  font-size: 18px;
  color: #404041;
  width: 250px;
  /*box-shadow:inset 1px 3px 0 rgba(0,0,0,0.05)*/
}

.subscribe-group > .submit {
  background: #A9C4D9;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  height: 40px;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  border: 3px solid #A9C4D9;
  position: relative;
  left: -5px;
}

.submit-button {
  margin-top: 10px;
  width: 100%;
  height: 40px;
  color: #fff;
  background: #A9C4D9;
  border: 0;
}

.page-id-1000 .submit-button {
  height: auto;
}


/*Submit button on work with us page*/

/* 7 DAY CHALLENGE BANNER */

.challenge-container {
  background: #A9C4D9;
}

.challenge-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}

.challenge-content img {
  float: left;
  margin: 25px 20px 25px 0;
}

.challenge-content p {
  padding: 0 0 20px;
  margin: 0;
  font-size: 28px;
  font-weight: bold;
}

.challenge-content form {}

.challenge-content form .input-group {
  display: inline;
}

.challenge-content form .input-group-addon {
  width: 50px;
  height: 50px;
  background: #fff;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  border: 1px solid #aaa;
  margin-left: -5px;
  top: 0;
  position: relative;
  display: none;
  /*Because they never stay inline */
}

.challenge-content input {
  display: inline !important;
  text-align: left !important;
  width: 200px !important;
  height: 50px !important;
  padding: 10px 20px;
  font-size: 20px;
  border-radius: 0;
  box-shadow: none;
}

.challenge-content input[type=text] {}

.challenge-content input[type=email] + .input-group-addon {
  margin-left: -6px;
}

.challenge-content input[type=submit] {
  color: #fff;
  background: #333;
  border-color: #333;
  border: 0;
  font-weight: bold;
  letter-spacing: 1px;
}

.challenge-content input[type=submit] + .input-group-addon {
  background: #333;
  color: #fff;
  border-color: #111;
  top: -1px;
}


/* COMPANY PAGES - terms/privacy/advertising/submissions */

.page-template-page-legal-php article.page header {
  padding: 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.page-template-page-legal-php article.page > header > h1 {
  font-size: 36px;
  margin-left: 200px;
}

.page-template-page-legal-php article.page .entry-content {
  position: relative;
  margin-left: 200px;
}

.menu-legal-menu-container {
  position: absolute;
  left: -200px;
  top: 3px;
  width: 200px;
}

#menu-legal-menu li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin-right: 30px;
}

#menu-legal-menu a {
  color: #777;
}

#menu-legal-menu .current-menu-item a {
  color: #303031;
}


/* ALL PAGES */

article.page .entry-content h1,
article.page .entry-content h2 {
  font-weight: bold;
  font-size: 24px;
}


/* PAGES THAT CONTAIN POSTS */

.site-content {
  padding: 20px 0;
}

.module-container {
  position: relative;
  margin: 0 auto;
}

.author-container {
  max-width: 792px;
  margin: 0 auto;
}

.module-container .post-module,
.related-posts .post-module,
.recent-posts .post-module,
.author-container .post-module {
  width: 386px;
  float: left;
  margin: 0 20px 20px 0;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.22);
  background: #fff;
}

.related-posts .post-module {
  width: 300px;
  margin: 10px 10px 0 0;
}

.module-container .post-module:nth-of-type(3n) {
  margin-right: 0;
}

.author-container .post-module:nth-of-type(3n) {
  margin-right: 20px;
}

.related-posts .post-module:nth-of-type(2n),
.author-container .post-module:nth-of-type(2n) {
  margin-right: 0;
}

.recent-posts .post-module {
  margin-bottom: 20px;
  width: 300px;
}

.page-header {
  border-bottom: 1px solid #404041;
  margin-bottom: 20px;
}

.page-title,
.author .page-title,
.page .entry-title {
  border-bottom: 10px solid #404041;
  line-height: 100%;
  padding-top: 3px;
  text-align: center;
  font-size: 25px;
  letter-spacing: -1px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 20px;
  font-weight: bold;
  color: #404041;
  font-family: "Karla", "Josefin Slab", Arial, Helvetica, sans-serif;
}

.author .page-title {
  border: 0;
  background: #404041;
  color: #fff;
  padding-top: 20px;
  margin-bottom: 20px;
}

.page-title a {
  color: #fff;
  text-decoration: none;
}

.page-cat {
  list-style: none;
  padding: 10px 0;
  text-align: center;
}

.page-cat li {
  display: inline;
  text-transform: uppercase;
  padding-right: 7px;
  margin-right: 10px;
  border-right: 1px solid #ddd;
}

.page-cat li:last-of-type {
  padding: 0;
  margin: 0;
  border-right: 0;
}

.page-cat li a {
  text-decoration: none;
  color: #404041;
}

.related-image,
.widget-image {
  max-width: 386px;
  height: 280px;
  overflow: hidden;
}

.related-image {
  width: 150px;
  height: 150px;
}

.recent-posts .module-image {
  width: 300px;
  height: 218px;
}

.widget-image {
  width: 300px;
  height: 200px;
}

.cat-tag {
  font-family: "Karla", "Josefin Slab", Arial, Helvetica, sans-serif;
  background: none !important;
  text-transform: uppercase;
  padding: 0 0 8px 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.cat-tag a {
  text-decoration: none;
  color: #888;
}

.cat-tag a:hover {
  color: #A9C4D9;
}

.post-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-categories a {
  color: #fff;
  text-decoration: none;
}

.module-title {
  padding: 8px;
  margin: 0;
  display: table-cell;
  vertical-align: middle;
  width: 320px;
  height: 72px;
  position: relative;
  background: #fff;
  font-family: "Karla", sans-serif;
  border-radius: 0 0 6px 6px;
}

.module-title > a {
  font-size: 20px;
  text-decoration: none;
  color: #303031;
}

.module-title > a:hover {
  text-decoration: underline;
}


/* SINGLE POST PAGES - GLOBAL */

.single-post {
  background: #E6EAED;
}

.single-post .site-content {
    max-width: 100%;
    padding: 0;
}

.single-post .site-main {
    margin: 20px;
  max-width: 800px;
    float: right;
}

.offer .site-main {
  margin:0 auto;
  max-width: 100%;
  float: none;
}

.shop .site-main {
  background: #E6EAED;
  margin: 0!important;
  padding:0!important;
}

#breadcrumbs {
  font-size: 15px;
  color: #ccc;
}

.breadcrumb_last {
  color: #999;
}

#breadcrumbs a:link,
#breadcrumbs a:visited {
  color: #ccc;
}

#breadcrumbs a:hover,
#breadcrumbs a:active {
  color: #999;
}


/* Typography */

.single-post .entry-content h1 {
  margin: 1em 0 .3em;
  line-height: 1.1;
  font-weight: bold;
  font-family: "Karla", "Josefin Slab", serif;
}

.single-post .entry-content h1 {
  font-size: 65px;
}

.single-post .entry-content h2 {
  font-size: 28px;
  font-weight: bold;
  display: inline;
}

.single-post .entry-content h3 {
  font-weight: bold;
  font-size: 25px;
  display: inline;
}

.single-post .entry-content h3 a {
  color: #333;
  font-style: italic;
  font-weight: 100;
}

.single-post .entry-content h3 a:hover {
  text-decoration: underline;
}

.single-post .entry-content p .read-more {
  color: #666;
  border: 5px solid #fff;
  background: #A9C4D9;
  outline: 1px solid #888;
  padding: 5px 40px;
  margin-bottom: 60px;
  display: inline-block;
}

.single-post .entry-content p .read-more:hover {
  text-decoration: none;
  color: #fff;
  border: 5px solid #888;
  background: #888;
}

.single-post .entry-content ul,
.single-post .entry-content ol {
  margin-left: .3em;
  padding-left: 2em;
  margin-bottom: 1em;
}

.single-post .entry-content li {
  margin-bottom: .3em;
}

.single-post .entry-content li ul,
.single-post .entry-content li ol {
  margin-top: .3em;
  margin-bottom: 0;
}

.single-post .entry-content li li:last-of-type {
  margin-bottom: 0;
}

.single-post .entry-content blockquote,
.offer-test blockquote {
  font-family: Georgia, serif;
  font-style: italic;
  color: #89ABE3;
  font-size: 28px;
  margin: 1.5em 0;
  padding: 10px 20px;
  position: relative;
  border-left: 3px solid #89ABE3;
}

.single-post .entry-content blockquote p,
.offer-test blockquote p {
  margin: 0;
}

.single-post .entry-content strong,
.single-post .entry-content b {}

.single-post .entry-content a {}

.single-post .entry-content em {}


/* Single Primary */

.single-post #primary,
.author #primary {
  width: 100%;
  float: left;
  padding-right: 36%;
}

.core {
  border: 1px solid #ddd;
  background: #fff;
}

.post-data {
  margin-top: 5px;
}

.cat-tag-single {
  border-top: 3px solid #A9C4D9;
  color: #666;
  font-weight: bold;
  text-transform: uppercase;
  padding: 8px;
  font-family: "Josefin Slab", Arial, Helvetica, sans-serif;
}

.cat-tag-single a {
  color: #666;
}

.cat-tag-single a:hover {
  text-decoration: none;
}


/* Single Header */

.entry-header {
  padding: 4% 30px 20px;
      margin: 0 auto;
}

.entry-content .pinit-hover {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.single-post .entry-title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.3;
  padding: 0 0 22px;
  font-family: Georgia, "Times New Roman", Times, "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.header-meta {
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid #ddd;
}

.header-meta img {
  float: left;
  margin-right: 10px;
}

.author-meta {
  margin-top: 0px;
  padding-top: 8px;
  font-size: 10px;
  font-family: "Karla", "Josefin Slab", Arial, Helvetica, sans-serif;
  color: #999;
  display: inline-block;
}

.post-date,
.author-meta a {
  color: #333;
  text-transform: uppercase;
  text-decoration: none;
}

.author-meta em {
  font-family: Georgia, serif;
  text-transform: none;
}

.post-date {
  color: #666;
}

.author-meta a:hover {}

.author-meta .header-twitter {
  color: #999;
}


/* Single Content */

.single-post .entry-content,
.author .entry-content {
  font-size: 25px;
  font-family: Georgia, serif;
  padding: 0 30px 15px;
  line-height: 36px;
  position: relative;
}

.single-post .featured-img {
  display: block;
  margin: 0 auto;
  padding: 20px;
}

.single-post .wp-audio-shortcode {
  margin-bottom: 1.5em;
}

.single-post .content-editor {
  margin: 0 auto;
    padding: 0 10px;
    max-width: 600px;
  }

.powerpress_links {
  display: none !important;
}

.single-post .entry-content p a,
.single-post .entry-content ul a {
  color: #111;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid #111;
  transition: all ease 0.3s;
}

.single-post .entry-content p a:hover,
.single-post .entry-content ul a:hover {
  color: #89ABE3;
  border-bottom: 1px dotted #89ABE3;
}

.single-post .entry-content .addtoany_list a {
  border: none;
}


/* Product Box */

.product-container {
  margin: 0 0 1.7em;
  background-color: #fbfbfb;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 15px 20px 20px 25px;
  position: relative;
}

.action-cat {
  border-color: #bbb;
  max-width: 650px;
  margin: 0 auto 20px;
  padding: 0;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.product-img {
  display: block;
  border: 0;
  margin: 5px 0 0 20px;
  float: right;
}

.podcast-player {
  width: 100%;
}

.product-data {
  width: 70%;
}

.action-cat .product-data {
  width: 100%;
}

.action-cat .buy-btn {
  border-width: 1px;
  border-style: solid !important;
  border-color: #cba957 #bf942a #aa8326 !important;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.4);
  background: #f3d078;
  background: linear-gradient(to bottom, #fff384, #ffec23);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fff384', endColorstr='#ffec23', GradientType=0);
  *zoom: 1:;
  color: #111;
  white-space: nowrap;
  padding: 10px;
  font-size: 24px;
  font-family: "Karla", "Josefin Slab", Arial, sans-serif;
  text-decoration: none;
  color: #775815 !important;
  display: inline-block;
  width: 100%;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
}

.offer-container.top {
  margin-bottom: 1.5em;
}

.offer-container .buy-btn {
  display: block;
  position: relative;
  border: 0;
  background: #ffec23;
  background: linear-gradient(to bottom, #fff384, #ffec23);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fff384', endColorstr='#ffec23', GradientType=0);
  *zoom: 1;
  text-decoration: none;
  text-align: center;
  color: #63C;
  font-size: 26px;
  font-weight: bold;
  font-family: "Karla", "Josefin Slab", Arial, Helvetica, sans-serif;
  padding: 20px 0;
}

.offer-container .buy-btn::after {
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 28px;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  padding-top: 22px;
  background: rgba(150, 150, 150, 0.1);
}

.post-password-form p,
.offer-buy .offer-content {
  margin: 10px 0 0;
  padding: 0;
}


/* NAV */

#cooler-nav {
  padding: 10px;
}

#cooler-nav .nav-box:first-of-type {
  padding-right: 5px;
}

#cooler-nav .nav-box:nth-of-type(2) {
  padding-left: 5px;
}

#cooler-nav img {
  margin: 0 0 5px 0;
  max-width: 100%;
  height: auto;
}

#cooler-nav p {
  margin-bottom: 0;
}

#cooler-nav .previous,
#cooler-nav .next {
  max-width: 50%;
}

#cooler-nav .previous {
  float: left;
}

#cooler-nav .next {
  float: right;
}

#cooler-nav .next p {
  text-align: right;
}


/* OPTIN */

.entry-optin {
  background: #404041;
  color: #fff;
  text-align: center;
  padding: 40px 30px 20px;
}

.entry-optin h1 {
  font-family: Georgia, "Times New Roman", Times, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 75px;
  line-height: .9;
}

.entry-optin h2 {
  font-size: 45px;
  margin-bottom: 30px;
  text-transform: capitalize;
  font-family: Georgia, serif;
}

.entry-optin h3 {
  font-size: 28px;
  font-weight: bold;
}

.entry-optin ul {
  list-style: none;
  margin: 35px 0 55px;
}

.entry-optin li {
  float: left;
  max-width: 175px;
  text-align: center;
  margin-right: 10px;
  font-size: 14px;
}

.entry-optin li:last-of-type {
  margin-right: 0;
}

.entry-optin .subscribe-group > input[type=email] {
  width: 350px;
  height: 50px;
}

.entry-optin .subscribe-group > .submit {
  height: 50px;
  top: 1px;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  min-width: 200px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: -1px -1px 0px rgba(0, 0, 0, 0.3);
}

.single-post .entry-optin .subscribe-group > .submit {
  top: 4px;
}


.author-box {
  width: 25%;
  background: #eee;
  text-align: center;
  padding: 40px 20px;
  border-left: 1px solid #ddd;
  float: right;
}

.author-img img {
  border-radius: 50%;
}

.author-box a:nth-of-type(2) {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-box a:nth-of-type(2):hover {
  text-decoration: none;
  color: #777;
}


/* Single Secondary */

#secondary {
    display: block;
    width: 36%;
    margin-left: -36%;
    float: left;
    padding: 20px 0 0 0;
}

#secondary .sidebar {}

#secondary .widget ul {
  list-style: none;
}

#secondary .widget:last-of-type {
  margin-bottom: 0;
}

.widgettitle,
.widget-title {
  display: none;
}

#secondary .recent-posts article:last-of-type {
  margin: 0;
}


/* SUBSCRIBE WIDGET */

.subscribe-widget {
  background: #333;
  color: #fff;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.subscribe-widget p:empty {
  display: none;
}

.subscribe-widget fieldset + p {
  margin-bottom: 5px;
}

.subscribe-widget > form {
  text-align: center;
  padding: 0 5px;
}

.subscribe-widget > form .subscribe-text {
  text-transform: uppercase;
  font-weight: bold;
}

.subscribe-widget > form input {
  border-radius: 0;
  border: 0;
  padding-left: 10px;
  height: 40px;
  font-size: 16px;
  color: #666;
  width: 100%;
}

.subscribe-widget > form input + input {
  margin-top: 5px;
}

.subscribe-widget > form input:not([type=submit]) {
  box-shadow: inset 1px 3px 0 rgba(0, 0, 0, 0.05)
}

.subscribe-widget > form input[type=submit] {
  background: #f2c548;
  border-radius: 3px;
  cursor: pointer;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  margin: 5px 0 0;
  color: #fff;
  width: 100%;
  text-transform: uppercase;
  border: 0;
  text-shadow: 2px 1px 2px #333;
}


/* TOP POSTS */

.yarpp-related {
  margin: 0;
}

.top-header {
  border-bottom: 1px solid #ddd;
  margin: 20px 0;
  padding-bottom: 10px;
  color: #A9C4D9;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 25px;
  font-family: "Karla", "Josefin Slab", Arial, Helvetica, sans-serif;
  text-align: center;
}

.top-container {}

.top-post {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 25px;
}

.top-post img {
  margin-bottom: 5px;
}

.top-post p {
  margin: 0;
}

.top-cat-tag {
  font-family: "Karla", "Josefin Slab", Arial, Helvetica, sans-serif;
  background: none !important;
  text-transform: uppercase;
  padding: 15px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.top-cat-tag a {
  text-decoration: none;
  color: #888;
}

.top-cat-tag a:hover {
  color: #A9C4D9;
}

.single-post .core {
  background: #fff;
}

.single-post .post-data {
  display: none;
}

.single-post .entry-title {
  font-size: 32px;
  text-align: center;
  padding: 0;
}

.single-post .header-meta {
  padding: 0;
  border-top: 0;
}

.single-post .author-meta {
  margin-top: 0px;
  padding-top: 0px;
  font-size: 14px;
  max-width: 100%;
  display: block;
  text-align: center;
}

.single-post .share-tools-single {
  float: none;
  padding-top: 50px;
}

.single-post .entry-content {
  font-size: 16px;
}

.single-post .entry-content h1 {
  font-size: 30px;
}

/* special offer button */

.single-post .offer-container {
  margin-bottom:40px;
}

.single-post .offer-container .buy-btn {
  background: none;
  border: 1px solid #454545;
  margin-top: 20px;
  padding: 20px;
  color: #454545;
  font-size: 20px;
  transition: background .3s;
}

.single-post .offer-container .buy-btn::after {
  font-size: inherit;
  color: inherit;
  position: relative;
  top: 2px;
  right: 0;
  width: initial;
  height: initial;
  padding-top: 0;
  background: none;
}

.single-post .offer-container .buy-btn:hover {
  background: #fbfbfb;
}


/* AUTHOR PAGES */

.author .authors-box {
  margin: 30px 0 10px;
}

.author .authors-img img {
  border-radius: 50%;
  float: left;
}

.author .authors-social {
  float: left;
  clear: left;
  font-size: 30px;
  text-align: center;
}

.author .authors-social a {
  margin-right: 5px;
  color: #999;
}

.author .authors-meta {
  margin-left: 230px;
  font-size: 16px;
}

.author .authors-meta > .name {
  font-size: 30px;
  margin-bottom: 10px;
}


/* NOW PAGE */

.page-id-8908 {
  background: #fff;
}

.page-id-8908 .entry-content h1 {
  margin: 1em 0 .3em;
  line-height: 1.1;
  font-weight: bold;
  font-family: "Karla", "Josefin Slab", serif;
}

.page-id-8908 .entry-content h1 {
  font-size: 65px;
}

.page-id-8908 .entry-content h2 {
  font-size: 28px;
  font-weight: bold;
  display: inline;
}

.page-id-8908 .entry-content h3 {
  font-weight: bold;
  font-size: 25px;
  display: inline;
}

.page-id-8908 .entry-content h3 a {
  color: #333;
  font-style: italic;
  font-weight: 100;
}

.page-id-8908 .entry-content h3 a:hover {
  text-decoration: underline;
}

.page-id-8908 .entry-content p .read-more {
  color: #666;
  border: 5px solid #fff;
  background: #A9C4D9;
  outline: 1px solid #888;
  padding: 5px 40px;
  margin-bottom: 60px;
  display: inline-block;
}

.page-id-8908 .entry-content p .read-more:hover {
  text-decoration: none;
  color: #fff;
  border: 5px solid #888;
  background: #888;
}

.page-id-8908 .entry-content ul,
.page-id-8908 .entry-content ol {
  margin-left: .3em;
  padding-left: 2em;
  margin-bottom: 1em;
}

.page-id-8908 .entry-content li {
  margin-bottom: .3em;
}

.page-id-8908 .entry-content li ul,
.page-id-8908 .entry-content li ol {
  margin-top: .3em;
  margin-bottom: 0;
}

.page-id-8908 .entry-content li li:last-of-type {
  margin-bottom: 0;
}

.page-id-8908 .entry-content blockquote {
  font-family: Georgia, serif;
  font-style: italic;
  color: #89ABE3;
  font-size: 28px;
  margin: 1.5em 0;
  padding: 10px 20px;
  position: relative;
  border-left: 3px solid #89ABE3;
}

.page-id-8908 .entry-content blockquote p {
  margin: 0;
}

.page-id-8908 #primary {
  width: 100%;
  padding-right: 320px;
  float: left;
}

.page-id-8908 .entry-title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.3;
  padding: 0 0 22px;
  font-family: Georgia, "Times New Roman", Times, "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.page-id-8908 .entry-content {
  font-size: 25px;
  font-family: Georgia, serif;
  padding: 0 10px 15px;
  line-height: 36px;
  position: relative;
}

.page-id-8908 .featured-img {
  display: block;
  margin: 0 auto 20px;
}

.page-id-8908 .featured-img + .product-container {
  margin-top: 20px;
}

.page-id-8908 .featured-img + .content-editor {
  /*margin-top: 1.7em;*/
}

.page-id-8908 .wp-audio-shortcode {
  margin-bottom: 1.5em;
}

.page-id-8908 .content-editor {
  /*max-width: 650px;*/
  margin: 0 auto;
  padding: 0 20px;
}

.page-id-8908 .entry-content p a,
.page-id-8908 .entry-content ul a {
  color: #111;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid #111;
  transition: all ease 0.3s;
}

.page-id-8908 .entry-content p a:hover,
.page-id-8908 .entry-content ul a:hover {
  color: #89ABE3;
  border-bottom: 1px dotted #89ABE3;
}

.page-id-8908 .entry-content .addtoany_list a {
  border: none;
}

.page-id-8908 {
  background: #fff;
}

.page-id-8908 .site-content {
  max-width: 1140px;
}

.page-id-8908 #primary {
  padding-right: 380px;
}

.page-id-8908 .core {
  border: 1px solid #fff;
  background: transparent;
}

.page-id-8908 .post-data {
  display: none;
}

.page-id-8908 .entry-header {
  margin: 100px auto 15px;
}

.eyebrow {
  text-align: center;
}
.podcast-offer {
    padding: 10px;
    text-align: center;
    font-family: Georgia, serif;
    color: #333;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-decoration: none!important;
}
.podcast-offer:hover:after {
    content: "";
    height: 48px;
    top: 0px;
    opacity: .8;
    text-decoration: none;
}
.podcast-offer:after {
    content: "";
    background: #A9C4D9;
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
    top: 25px;
    z-index: -1;
    margin: 0 0 0 -10px;
    transition: all .6s ease;
    opacity: .6;
}

.page-id-8908 .entry-title,
 .entry-title {
  font-size: 40px;
  text-align: center;
  padding: 5% 10% 0;
  border-bottom: 0;
  text-transform: capitalize;
  letter-spacing: normal;
}

.page-id-8908 .header-meta > a,
.page-id-8908 .post-byline {
  display: none;
}

.page-id-8908 .header-meta {
  padding: 0;
  border-top: 0;
}

.page-id-8908 .author-meta,
.single-post .author-meta {
  margin-top: 0px;
  padding-top: 20px;
  font-size: 20px;
  max-width: 100%;
  display: block;
  text-align: center;
      text-transform: uppercase;
    font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, sans-serif;
    font-size: 90%;
    line-height: 1;
}

.page-id-8908 .share-tools-single,
.single-post .share-tools-single {
  float: none;
  padding-top 50px;
}

.page-id-8908 .entry-content,
.single-post .entry-content {
  font-size: 16px;
}

.page-id-8908 .entry-content h1,
.single-post .entry-content h1 {
  font-size: 30px;
}

.page-id-8908 .offer-container .buy-bt,
.single-post .offer-container .buy-btn {
  background: #ffec23;
  background: linear-gradient(to bottom, #fff384, #ffec23);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fff384', endColorstr='#ffec23', GradientType=0);
  border: 1px solid #454545;
  margin-top: 20px;
  padding: 20px;
  color: #454545;
  font-size: 20px;
}

.page-id-8908 .offer-container .buy-btn.free,
.single-post .offer-container .buy-btn.free {
  background: #bada55;
  background: linear-gradient(to bottom, #d0eb7c, #bada55);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#d0eb7c', endColorstr='#bada55', GradientType=0);
}

.page-id-8908 .offer-container .buy-btn::after,
.single-post .offer-container .buy-btn::after {
  font-size: inherit;
  color: inherit;
  position: relative;
  top: 2px;
  right: 0;
  width: initial;
  height: initial;
  padding-top: 0;
  background: none;
}

.page-id-8908 .offer-container .buy-btn:hover,
.single-post .offer-container .buy-btn:hover {
  background: #333;
  color: #fff;
}


/**************************************************************************************************************************** HOME PAGE */

/* REDESIGN OF HOMEPAGE - BULK REPLACE ".redesign" WITH ".home" WHEN READY TO LAUNCH */

.home {
  background: #f1f2f2;
}

.home .site-content {
  padding: 0;
  max-width: 100%;
}

.home [class$="-wrapper group"] {
  padding: 6%;
  background-size: cover;
    background-repeat: no-repeat;
}

.home [class$="-margin"] {
  margin: 0 auto;
  max-width: 1200px;
}

.home .about-content {
  max-width: 45%;
}

.home [class$="-title"] {
  font-size: 3em;
  line-height: 1.4;
  font-weight: 300;
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  text-transform: uppercase;
  margin: 0 auto .5em;
}

.home [class$="-subtitle"] {
  margin: .5em 0 1.5em;
  font-family: georgia, serif;
  font-size: 1.1em;
}

.home [class$="-button"] {
  color: #fff;
  background: #333;
  border: 0;
  display: inline-block;
  width: 180px;
  height: 50px;
  font-size: 16px;
  border-radius: 0;
  box-shadow: none;
  font-family: 'Oswald', sans-serif;
  cursor: pointer;
  position: relative;
  line-height: 30px;
  text-decoration: none;
  padding: 10px 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: -1px -1px 0px rgba(0, 0, 0, 0.3);
  margin-bottom: 3px;
  text-align: center;
}

.home .hero-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  width: 100%;
  height: auto !important;
  padding: 0;
  background-image: url(http://realrawyou.com/images/video-bg.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #e6e6e6;
}

.home .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  background: #e6e6e6;
  opacity: 0.6;
}

.home .video-bg {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  display: block;

  opacity: 1;

  -moz-animation: fade-out 3s ease-in forwards;
  /* Firefox */
  -webkit-animation: fade-out 3s ease-in forwards;
  /* Safari and Chrome */
  -o-animation: fade-out 3s ease-in forwards;
  /* Opera */
  animation: fade-out 3s ease-in forwards;
  -moz-animation-delay: 5s;
  -webkit-animation-delay: 5s;
  -o-animation-delay: 5s;
  animation-delay: 5s;
}

.home .hero-margin {
  bottom: 0px;
  height: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
}

.home .hero-content {
  background: transparent;
  position: relative;
  z-index: 3;
  padding: 10% 20px 10% 15%;
}

.home .hero-title {
  font-size: 6em;
  margin-bottom: 5%;
  font-weight: 100;
  letter-spacing: 2px;
  line-height: 1.34;
}

.home .first-line {
  display: inline-block;
  -moz-animation: fade-in 1s linear;
  -webkit-animation: fade-in 1s linear;
  -o-animation: fade-in 1s linear;
  animation: fade-in 1s linear;
  animation-fill-mode: both;
}

.home .second-line {
  -moz-animation: fade-in 1s linear;
  -webkit-animation: fade-in 1s linear;
  -o-animation: fade-in 1s linear;
  animation: fade-in 1s linear;
  animation-fill-mode: both;
  
  -moz-animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}

.home .third-line {
  position:relative;
  
  -moz-animation: fade-in 1s linear;
  -webkit-animation: fade-in 1s linear;
  -o-animation: fade-in 1s linear;
  animation: fade-in 1s linear;
  animation-fill-mode: both;
  
  -moz-animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
  -o-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.home .third-line::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 2px;
  bottom: 0;
  right: 16px;
  background-color: #555;
  
  -moz-animation: grow-left .7s linear;
  -webkit-animation: grow-left .7s linear;
  -o-animation: grow-left .7s linear;
  animation: grow-left .7s linear;
  animation-fill-mode: both;
  
  -moz-animation-delay: 1.9s;
  -webkit-animation-delay: 1.9s;
  -o-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

.home .start-button {
  -moz-animation: fade-in .9s linear;
  -webkit-animation: fade-in .9s linear;
  -o-animation: fade-in .9s linear;
  animation: fade-in .9s linear;
  animation-fill-mode: both;
  
  -moz-animation-delay: 2.2s;
  -webkit-animation-delay: 2.2s;
  -o-animation-delay: 2.2s;
  animation-delay: 2.2s;
  
  position: relative;
  line-height: 50px;
  text-decoration: none;
  display: inline-block;
  width: 260px;
  height: 50px;
  font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  margin-top: 1px;
  margin-bottom: 3px;
  background: #A9C4D9;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

.home .about-wrapper {
  
}

.home .about-content {
  background: #fff;
  float: left;
    max-width: 34%;
    padding: 5%;
}

/* Shop Spotlight on Homapage and Shop page */
.shop-wrapper {
  background: #fff;
  padding: 0;
}

.shop-margin,
.home .shop-margin {
  max-width: 1000px;
  margin:0 auto;
}

.shop-content {
  max-width: 100%;
  position: relative;
  padding: 0 5%;
  top: -50px;
  z-index: 2;
}

.shop-title {
  line-height: 1.4;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
    font-style: normal;
    text-transform: uppercase;
    margin: 0 auto .5em;
  font-size:16px!important;
  letter-spacing: 3px;
  position:absolute;
  top:0;
  left:0;
  
  -webkit-transform: translate(20px, 84px) rotate(90deg); 
    -moz-transform:    translate(20px, 84px) rotate(90deg);
    -ms-transform:     translate(20px, 84px) rotate(90deg);
    -o-transform:      translate(20px, 84px) rotate(90deg); 
    transform:         translate(20px, 84px) rotate(90deg); 
    -webkit-transform-origin: 0;
    -moz-transform-origin:    0;
    -ms-transform-origin:     0;
    -o-transform-origin:      0;
    transform-origin:         0;
}

.shop-item {
  display: inline-block;
  padding: 0 20px;
  text-decoration: none;
  position: relative;
}

.shop-item:hover {
  transform: translate(0,-10px);
  
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.shop-item img {
  display: block;
  -webkit-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -ms-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.shop-item:hover img {
  box-shadow: 0 20px 20px -10px rgba(0,0,0,0.15);
}

.shop-item span {
  font-size: 14px;
  max-width: 140px;
  text-align: right;
    display: block;
    line-height: 1.2;
    margin-top: 10px;
  font-weight: 300;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
  color:#454545;
}

.shop-arrow {
  font-size: .9em;
  text-decoration: none;
  position:absolute;
  top: 64%;
  right: -20px;
  color: #555;
}

.home .podcast-wrapper {
  
}

.home .podcast-content {
  background: transparent;
  float: right;
  max-width: 40%;
}

.home .podcast-title {
  font-size: 1.8em;
  padding: 30px;
  margin: 0;
  
  background: url(https://realrawyou.com/images/retreat/fabric_plaid.png);
  background-repeat: repeat;
  background-position: center;
  background-color: #f4f0df;
}

.home .podcast-subtitle {
  font-size: 1em;
  color: #777;
  padding: 20px 50px 20px 20px;
  margin: 0;
  position: relative;
  display: block;
  font-weight: 900;
  
  background: url(https://realrawyou.com/images/retreat/fabric_plaid.png);
  background-repeat: repeat;
  background-position: center;
  background-color: #f4f0df;
}

.home .podcast-subtitle:nth-of-type(odd){
  background: #fff;
}

.home .podcast-subtitle:hover {
  text-decoration: none;
  opacity: .8;
}

.home .podcast-arrow {
  font-size: .9em;
  text-decoration: none;
  color: #555;
  background: #fff;
  padding: 20px;
  display: inline-block;
  float: right;
}

/* $ANIMATIONS AND FLARE */

@keyframes grow-left {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@-moz-keyframes grow-left {
  /* Firefox */
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@-webkit-keyframes grow-left {
  /* Safari and Chrome */
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@-o-keyframes grow-left {
  /* Opera */
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes fade-in {
  /* Firefox */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  /* Safari and Chrome */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes fade-in {
  /* Opera */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-moz-keyframes fade-out {
  /* Firefox */
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes fade-out {
  /* Safari and Chrome */
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-o-keyframes fade-out {
  /* Opera */
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}



/**************************************************************************************************************************** ABOUT PAGE */

#about .margin {
  max-width: 1000px;
}

#about {
  font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, san-serif;
}

#about .intro {
  background: url("http://realrawyou.com/wp-content/themes/realrawyou/images/jeneth.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #000;
}

#about .intro-box {
  color: #fff;
  font-size: 22px;
  max-width: 600px;
  margin-left: 50px;
  padding: 50px 0 150px;
}

#about .welcome {
  background: #A9C4D9;
  color: #fff;
  padding: 50px 0 60px;
  text-align: center;
}

#about .welcome-box h1 {
  font-size: 80px;
  margin: 0;
  font-family: "Karla", "Josefin Slab", "Times New Roman", Times, "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

#about .welcome-box h2 {
  font-weight: 300;
  margin: 0;
  font-size: 40px;
  font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, san-serif;
  margin-top: -30px
}

#about .desc {
  border-bottom: 1px solid #ddd;
  background: #fff;
  padding-top: 50px;
}

#about .desc-box {
  max-width: 500px;
  height: auto;
  padding-bottom: 5%;
}

#about .left {
  float: left;
}

#about .right {
  float: right;
}

#about .desc-box h1 {
  font-size: 50px;
  color: #333;
}

#about .desc-box h2 {
  font-size: 30px;
  color: #555;
}

#about .desc-box p {
  font-size: 20px;
  color: #777;
}

#about .write {
  text-align: center;
  background-color: #fff;
  padding: 80px 0 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 40px;
}

#about .write p {
  margin-bottom: 20px;
}

#about blockquote {
  margin-top: 40px;
  font-size: 28px;
  color: #555;
  text-align: center;
}

#about .bio {}

.bio-box {
  padding: 0 100px;
}

.bio-box h1 {
  border-bottom: 6px solid #404041;
  line-height: 100%;
  padding-top: 50px;
  text-align: center;
  font-size: 20px;
  letter-spacing: -1px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 20px;
  font-weight: bold;
  color: #404041;
  margin-bottom: 20px;
}

#about .button {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 10px 20px 8px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 2;
}



/***************************************************************************************************************************** MEDIA PAGE*/

#testimonials {
  text-align: left;
}

#testimonials > div {
  background: #fff;
  padding: 20px 20px 1px;
  margin: 0 auto 50px;
}

section#testimonials {
  text-align: left;
  margin: 0 auto 100px;
  max-width: 900px;
}

.video-module-left,
.video-module-right {
  font-weight: bold;
  margin-bottom: 50px;
  background: #fff;
  border-color: #ffffe1;
  border-radius: 5px;
  box-shadow: inset 0 1px 1px hsla(0, 0%, 100%, .5), 3px 3px 0 hsla(0, 0%, 0%, .1)
}

.video-module-left img {
  float: left;
  border-radius: 5px 0 0 5px
}

.video-module-right img {
  float: right;
  border-radius: 0 5px 5px 0
}

.video-module-left div,
.video-module-right div {
  width: 400px;
  margin: 0;
  padding: 20px;
  background: url(images/quote.png) no-repeat top left;
  box-shadow: none;
  font-size: 28px;
}

.video-module-left div {
  float: right
}

.video-module-right div {
  float: left
}



/************************************************************************************************************************* CONTACT PAGE */

#contact {
  font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, san-serif;
}

.one.split-block .block {
  height: 300px;
}

.two.split-block .block {
  height: 360px;
}

.split-block .dark.block {
  background: #eee;
}

.split-block .light.block {}

.split-block .block {
  display: inline-block;
  float: left;
  position: relative;
  width: 50%;
}

.split-block .content {
  color: #444;
  height: 100%;
  padding: 65px 70px 55px;
  position: relative;
  text-align: center;
}

.content h1 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1em;
  cursor: default;
  font-family: "Karla", "Josefin Slab", "Ubuntu", Helvetica, Arial, sans-serif;
  letter-spacing: 2px;
  line-height: 1.5em;
  margin: 0;
  text-transform: uppercase;
}

.content > .text > a {
  color: #fff;
  text-decoration: underline;
}

.one.split-block .text {
  line-height: 25px;
}

.two.split-block .text,
.three.split-block .text {
  line-height: 29px;
}

.two.split-block .text {
  margin: 15px 0 75px;
}

.split-block .button-container {
  bottom: 65px;
  left: 0px;
  position: absolute;
  right: 0px;
}

.split-block .button-container a.button {}

.whole-block {
  background: #fff;
  float: left;
  position: relative;
  width: 100%;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.whole-block .content {
  border: 6px solid #A9C4D9;
  color: #A9C4D9;
  margin: 10px;
  padding: 35px;
  text-align: center;
}

.whole-block h1 {
  margin-bottom: 25px;
}

.whole-block ul {
  margin: 0;
  padding: 0;
}

.whole-block li:first-child {
  border-left: 0;
}

.whole-block li {
  border-left: 1px solid;
  display: inline-block;
  font-size: 18px;
  line-height: 19px;
  list-style: none;
  margin-left: 11px;
  padding-left: 13px;
}


/**********************************************************************************************************************************
                                                            $SHOP + $PODCAST ARCHIVE PAGES
***********************************************************************************************************************************/

body.page-template-page-retreat,
body.category-shop,
body.category-podcasts,
body.category-offer,
body.home {
  background: #E6EAED;
}

.category-shop .products-container { 
  border: 20px solid #E6EAED;
}
.category-shop .products-container {
  width: 100%;
  height: 100%;
  background: #fff;
  border-bottom: 0;
}

.category-shop .products-container .learn-more:hover a {
  background: #454545;
  color: #f2f2f2;
}

.category-shop .row {
  padding: 0;
  margin: 0 auto;
  position: relative;
  max-width: 1300px;
}

.category-shop .row.featured {
  padding: 8% 0;
  background: url(http://quest.jeneth.com/images/demo-intro.png) no-repeat;
  background-position: right center;
  background-size: 45%;
}

.category-shop .row.half {
  display: table;
  padding: 0 20px 20px;
}

.category-shop .row.half .cell {
  display: table-cell;
  padding: 5%;
}

.category-shop .row.half .cell {
  border-right: 10px solid #fff;
}

.category-shop .row.half .cell + .cell {
  border-left: 10px solid #fff;
  border-right: none;
}

.category-shop .cell {
  width: 50%;
  padding-left: 6%;
}

.category-shop .cell span {
  text-transform: uppercase;
  font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, sans-serif;
}

.category-shop .cell h2 {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 300;
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  text-transform: uppercase;
  margin: 0 auto .5em;
}

.category-shop .cell p {
  margin: .5em 0 1.5em;
  font-family: georgia, serif;
  font-size: 16px;
  line-height: 1.8;
  max-width: 84%;
}

.category-shop .row.half .cell p {
  max-width: 76%;
}

@media only screen and (max-width: 1224px) {
  .category-shop .row.featured {
    padding: 8% 4%;
    background-position: 120% center;
  }
  .category-shop .row.featured .cell {
    width: 70%;
  }
}

@media only screen and (max-width: 800px) {
  .category-shop .products-container {
    border: 10px solid #E6EAED;
    border-bottom: 0;
  }
  .category-shop .row.featured {
    background-position: 150% center;
    background-size: 60%;
  }
  .category-shop .cell {
    width: 100%;
  }
  .category-shop .row.featured > .cell + .cell {
    display: none;
  }
  .category-shop .row.half {
    display: block;
    padding: 0 10px 10px;
  }
  .category-shop .row.half > .cell {
    border-bottom: 5px solid #fff;
    display: block;
    border: none;
  }
  .category-shop .row.half > .cell + .cell {
    border-top: 5px solid #fff;
    border: none;
  }
  .category-shop .row.featured .cell p,
  .category-shop .row.half .cell p {
    max-width: 90%;
  }
}

@media only screen and (max-width: 700px) {
  .category-shop .row.featured {
    background: none;
    padding: 10px;
  }
  .category-shop .row.featured .cell {
    background: linear-gradient(to right, rgba(86, 56, 53, 0.5) 0%, rgba(213, 110, 19, 0.6) 50%, rgba(151, 1, 3, 0.4) 100%);
    width: 100%;
    padding: 5%;
  }
  .category-shop .cell h2 {
    font-size: 50px;
  }
  .category-shop .cell p {
    font-size: 14px;
  }
}

/* SHOP PODCAST AND BLOG GRID */

.category-offer .module-container,
.category-shop .module-container,
.category-podcasts .module-container.replay-posts,
.home .module-container {
  -webkit-column-width: 20em;
  -moz-column-width: 20em;
  column-width: 20em;

  -webkit-column-gap: .25em;
  -moz-column-gap: .25em;
  column-gap: .25em;

  /*-webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;*/
}

.category-offer .module-container > article,
.category-shop .module-container > article,
.category-podcasts .module-container > article,
.home .module-container > article {
  display: inline-block;
  margin: 0.25rem;
  padding: 1rem;
  width: 100%;
  background: #fff;
  float: none;
  position: relative;
  text-align: center;
}

.category-shop .post-module,
.category-podcasts .post-module,
.home .post-module {
  box-shadow: none;
}

.category-podcasts .post-module img {
  display: block;
}

.category-podcasts .more-block {
  display: block;
  background: #333;
  color: #eee;
  padding: 5px 10px;
  text-decoration: none;
  font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, sans-serif;
}

.category-podcasts .more-block.arrow-link:after {
  content: '→';
  display: inline-block;
  margin-left: .2em;
  margin-right: .2em;
  speak: none;
  text-align: center;
  text-decoration: inherit;
  text-transform: none;
  width: 1em;
  position: relative;
  transition: margin-left .25s;
}

.category-podcasts .more-block.arrow-link:hover:after {
  margin-left: .5em;
}

.category-shop .module-title,
.category-podcasts .module-title,
.home .module-title {
  text-align: center;
  margin: 10%;
  padding: 0;
  color: #454545;
  font-family: Georgia, serif;
  display: block;
  width: auto;
  height: auto;
}

.category-shop .module-title a,
.category-podcasts .module-title > a,
.home .module-title a {
  font-size: 24px;
  line-height: 1.4;
  display: block;
}

.category-shop .module-title a:hover,
.category-podcasts .module-title a:hover,
.home .module-title a:hover {
  text-decoration: none;
}

.category-shop .module-meta,
.category-podcasts .module-meta,
.home .module-meta {
  max-width: 320px;
  margin-top: 30px;
  padding: 10px;
  border-top: 1px solid #eee;
  margin: 20px auto 0;
  display: table;
  vertical-align: middle;
}

.category-podcasts .post-module.now .module-meta,
.category-podcasts .post-module.future .module-meta {
  margin-bottom: 30px;
}

.category-shop .module-meta .headshot {
  float: left;
  display: table-cell;
  vertical-align: middle;
  width: 32px;
  margin: 0 10px 0 0;
}

.category-shop .module-meta .headshot img {
  border-radius: 50%;
  margin: 0;
  display: block;
}

.category-shop .module-meta .speaker,
.category-podcasts .module-meta .speaker,
.home .module-meta .speaker {
  font-size: 16px;
  max-width: 100%;
  text-align: left;
  line-height: 1.2;
  display: table-cell;
  vertical-align: middle;
}

.category-shop .module-meta .speaker em,
.category-podcasts .module-meta .speaker em {
  font-size: 14px;
  font-family: Georgia, serif;
  color: #bbb;
}

.category-shop .module-meta .speaker .speaker-name,
.category-podcasts .module-meta .speaker .speaker-name {
  color: #333;
  text-transform: uppercase;
  font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, sans-serif;
}

.home .module-meta .speaker a {
  font-family: "Karla", "Josefin Slab", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  text-decoration: none;
  color: #888;
  transition: all 1s ease;
}

.home .module-meta .speaker a:hover {
  color: #A9C4D9;
}

.category-shop .module-price,
.category-podcasts .module-price,
.home .module-price {
  display:inline-block;
  background: #454545;
  width: 80px;
  text-align: center;
  color: #eee;
  font-size: 12px;
  font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, sans-serif;
}

.category-shop .module-button .button {
  position: relative;
  line-height: 1.2;
  text-decoration: none;
  display: block;
  padding: 22px 10px;
  font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  margin-top: 1px;
  margin-bottom: 3px;
  background: #fff;
  border: 5px solid #A9C4D9;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  transition: all .8s ease;
}

.category-offer .module-button .button {
  margin-bottom: 0;
}

.category-shop .module-button .button:hover {
  background: #A9C4D9;
  border-radius: 100px;
}

.category-offer .module-button .button:hover {
  border-radius: 0;
}

.category-shop .learn-more + .module-button {
  margin-top: 20px;
}

.category-shop .learn-more,
.category-podcasts .learn-more {
  text-align: center;
}

.category-shop .learn-more a,
.category-podcasts .learn-more a {
  background: #f4f4f4;
  padding: 10px 20px;
  text-align: center;
  margin-top: 10px;
  font-family: Georgia, serif;
  transition: all 1s ease;
  color: #333;
  margin: 0 auto;
  display: inline-block;
}

.category-shop .learn-more a:hover,
.category-podcasts .learn-more a:hover {
  background: #A9C4D9;
  text-decoration: none;
}

.category-shop .praise-module {
  margin: 15px auto 0;
}

.category .category-shop .praise-module .module-content {
  border: 0;
  margin-bottom: 0;
  padding: 10px 10% 0;
  position: relative;
}

.category-shop .praise-module .module-content::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 12em;
  font-weight: bold;
  color: #f7f7f7;
  position: absolute;
  left: -20px;
  top: -15px;
  line-height: 1;
  z-index: 1;
}

.category .category-shop .praise-content h2 {
  font-size: 36px;
  font-weight: 100;
  text-align: center;
  margin: 0 auto;
  padding: 20px;
  display: block;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
}

.category .category-shop .praise-module .module-desc {
  padding-bottom: 10px;
  max-height: 12em;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  font-size: 13.4px;
  z-index: 2;
}

.category .category-shop .praise-module .module-desc::after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1.25em;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%);
}

.category .category-shop .praise-module img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.category .category-shop .praise-module span {
  font-style: italic;
  line-height: 1.2;
  text-align: right;
  display: block;
  font-size: 12px;
  color: #454545;
  font-family: georgia;
  padding: 10px 0 20px;
}

@media only screen and (max-width: 1224px) {
  .category-shop .post-module,
  .category-podcasts .post-module,
  .home .post-module {
    max-width: 100%!important;
    height: auto!important;
  }
}

@media only screen and (min-width:1225px) {
  .category-podcasts .post-module.now .module-title > a,
  .category-podcasts .post-module.future .module-title > a {
    font-size: 30px!important;
  }
  .module-container.future-posts {
    vertical-align: top!important;
  }
  /*.category-podcasts .post-module.future.category-createparty {
    width: 386px!important;
    display: inline-block!important;
    vertical-align: top!important;
    padding: 0!important;
    margin-top: 1.4rem!important;
  }
  .category-podcasts .post-module.future.category-createparty .module-image,
  .category-podcasts .post-module.future.category-createparty .module-title {
    display:block!important;
  }
  .category-podcasts .post-module.future.category-createparty .module-title a {
    font-size: 22px!important;
    max-width: 100%!important;
  }
  .category-podcasts .post-module.future.category-createparty + .category-createparty {
    margin-left: 1rem!important;
  }*/
}

@media only screen and (max-width: 849px) {
  .category-shop .post-module,
  .category-podcasts .post-module,
  .home .post-module {
    max-width: 100%!important;
    height: auto!important;
  }
}

@media only screen and (min-width: 850px) {
  .category-podcasts .post-module.now,
  .category-podcasts .post-module.future {
    display: table;
  }
  .category-podcasts .post-module.now .module-image img,
  .category-podcasts .post-module.future .module-image img {
    display: block;
  }
  .category-podcasts .post-module.now .module-image,
  .category-podcasts .post-module.now .module-title,
  .category-podcasts .post-module.future .module-image,
  .category-podcasts .post-module.future .module-title {
    display: table-cell;
    vertical-align: middle;
  }
  .category-podcasts .post-module.now .module-image,
  .category-podcasts .post-module.future .module-image {
    width: 386px;
  }
  .category-podcasts .post-module.now .module-title > a,
  .category-podcasts .post-module.future .module-title > a {
    max-width: 60%;
    margin: 0 auto;
    font-size: 24px;
  }
}

@media only screen and (max-width: 444px) {
  .category-shop .post-module,
  .category-podcasts .post-module,
  .home .post-module {
    max-width: 100%!important;
    height: auto!important;
  }
}


/* SPECIAL OFFER PAGES */

.offer .site-branding {
  display: none;
}

.offer nav,
.offer .share-tools {
  display: none;
}

.offer #logo {
  float: none;
  text-align: center;
}

.offer article {
  max-width: 700px;
  background: #fff;
  margin: 0 auto;
  padding: 20px 25px 1px;
  box-shadow: 0 2.5px 5px rgba(0, 0, 0, 0.3);
  font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, san-serif;
}

.offer h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.offer h3 {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

.offer ul,
.offer ol {
  margin: 0 0 20px 20px;
  display: table;
}

.offer ul li,
.offer ol li {
  position: relative;
  left: 10px;
  margin-right: 10px;
}

.offer blockquote {
  border: 1px solid #ddd;
  margin: 20px 0;
  padding: 15px 20px;
  background: #fdfdfd;
  text-align: center;
}

.offer blockquote p {
  margin: 0;
}

.offer-header {}

.offer-img {
  float: left;
  margin: 0 20px 20px 0;
  border-radius: 50%;
  max-width: 250px;
  height: auto;
  width: 100%;
  border: 1px solid #ddd;
}

.offer-info {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  height: 225px;
}

.speaker-title {
  /* Speaker name at the top of the page */
  display: inline;
  font-size: 40px;
  line-height: 1;
}

h1.offer-title {
  /* Above the offer modules */
  text-align: center;
  font-size: 50px;
  color: #A9C4D9;
  line-height: 1.2;
}

h2.offer-subtitle {
  /* Below the offer-title, above the modules */
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #888;
  margin-bottom: 15px;
}

h2.offer-title {
  /* The offer title at the top of the page */
  display: inline;
  font-size: 24px;
  padding-bottom: 20px;
  position: relative;
  top: 5px;
}

.offer a.button {
  text-decoration: none;
}

.offer .button {
  font-size: 30px;
  border: 0;
  border-bottom: 4px solid #8caf1c;
  box-shadow: inset 0px -1px 0px rgba(255, 255, 255, 0.2);
  background: rgb(255, 204, 0);
  border-bottom-color: rgba(0, 0, 0, 0.1);
  text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.2);
  top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.button:hover {}

.offer .button:active {
  top: 22px;
}


/* BIO TOGGLE */

.toggle {
  position: relative;
  top: -20px;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 3px 3px 0 0;
}

.offer-bio {
  display: block;
  clear: both;
  border: 1px solid #ddd;
  padding: 0 20px 15px;
  border-radius: 0 0 3px 3px;
  position: relative;
  top: -18px;
}

.bio-title {
  font-size: 22px;
  font-weight: bold;
  display: inline;
  text-align: left;
  color: #009cae;
}

.offer-content {
  font-size: 20px;
  padding: 0 40px 20px;
}

.offer-content h1 {
  font-weight: bold;
  font-size: 30px;
  margin: 0 auto 20px;
}

.offer-content li + li {
  margin-top: 20px;
}

.offer-module {}

.module-header {
  font-weight: bold;
  text-align: center;
  margin: 20px 0 0;
  padding: 0 5px;
  font-size: 22px;
  background: #009cae;
  color: #fff;
}

.module-header span:first-of-type {
  float: left;
}

.module-header span:last-of-type {
  float: right;
}

.module-content {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 20px;
}

.module-content h1 {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: #009cae;
  margin-bottom: 15px;
}

.module-content img {
  float: left;
  margin: 0 20px 10px 0;
  position: relative;
  top: 5px;
  max-width: 150px;
  height: auto;
}

.module-desc {}

.praise-module {
  padding: 0 5% 2%;
}

.praise-module .module-content {}

.praise-module .module-desc {
  padding-bottom: 2%;
}

.praise-module img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.praise-module span {
  font-style: italic;
  line-height: 60px;
}

.item-total {
  text-align: center;
  font-size: 22px;
  margin-bottom: 15px;
  font-style: italic;
}

.item-total span {
  color: A9C4D9;
}

.offer-buy {
  text-align: center;
  margin: 20px 0;
  padding: 20px 20px 0;
  border: 3px dashed #A9C4D9;
  background: #FFFEF0;
}

.offer-buy .offer-title {
  color: #555;
  font-size: 40px;
}

.offer-buy .button {
  font-size: 55px;
  top: -10px;
  width: 100%;
  display: block;
}

.offer-buy .button:active {
  top: -8px;
}

.payment {
  margin-top: 10px;
  color: #999;
  font-size: 16px;
  line-height: 1.2;
}

.disclaimer {
  font-size: 13px;
  color: #ccc;
  max-width: 700px;
  margin: 10px auto 8px;
  line-height: 1;
}

.offer-footer {
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #ddd;
  background: #888;
}




/*************************************************************************************************************************
**************************************************************************************************************************

                                                     $OFFER TEST STYLES

**************************************************************************************************************************
*************************************************************************************************************************/

article.offer-test {
  max-width: 100%;
  background: #fff;
  margin: 0 auto;
  padding: 40px 0 0;
  box-shadow: none;
  font-family: Georgia, serif;
}

.offer-test .margin {
  max-width: 760px;
  margin: auto;
  padding: 0 5%;
}

/* Entry Header */

.offer-test .entry-header {
  margin: 0 auto 20px;
  padding: 0;
}

.offer-test .presented-by {
  text-align: center;
  font-size: 14px;
  letter-spacing: 3px;
  font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, sans-serif;
}

.offer-test .presented-by em {
  letter-spacing: normal;
  font-family: Georgia, serif;
  color: #bbb;
}

.offer-test .entry-title {
  max-width: 900px;
  font-size: 30px;
  text-align: center;
  margin: 30px;
  padding: 0;
  color: #454545;
  font-family: Georgia, serif;
}

.offer-test .entry-meta {
  max-width: 320px;
  padding: 10px;
  border-top: 1px solid #eee;
  margin: 0 auto;
  display: table;
  vertical-align: middle;
}

.offer-test .entry-meta .headshot {
  float: left;
  display: table-cell;
  vertical-align: middle;
  width: 50px;
}

.offer-test .entry-meta .headshot img {
  border-radius: 50%;
  margin: 0;
  display: block;
}

.offer-test .entry-meta .speaker {
  padding: 0 0 0 10px;
  font-size: 16px;
  max-width: 100%;
  text-align: left;
  line-height: 1.2;
  display: table-cell;
  vertical-align: middle;
}

.offer-test .entry-meta .speaker em {
  font-size: 14px;
  font-family: Georgia, serif;
  color: #bbb;
}

.offer-test .entry-meta .speaker .speaker-name {
  color: #333;
  text-transform: uppercase;
  font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, sans-serif;
}

@media screen and (min-width:600px) {
  .offer-test .entry-header {
    margin: 0 auto 40px;
  }
  .offer-test .entry-title {
    font-size: 50px;
    margin: 40px auto 50px;
  }
  .offer-test .entry-content {
    font-size: 18px;
  }
}

/* Entry Content - .delivery-content and .sales-copy */

.offer-test .delivery-content {
  margin: 0 auto;
}

.offer-test .entry-content {
  margin: 0 auto;
  padding: 0;
  font-family: Georgia, serif;
  line-height: 2;
}

.offer-test .entry-content h2 {
  font-size: 36px;
  font-weight: 100;
  text-align: center;
  margin: 0 auto 30px;
  padding: 20px;
  display: inline-block;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
}

.offer-test .entry-content h3 {
  font-weight: 300;
  font-size: 26px;
  display: inline-block;
  text-align: left;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
}

.offer-test .entry-content p {
  margin: 0 auto 30px;
}

.offer-test .entry-content ul,
.offer-test .entry-content ol {
  margin: 20px 0 0 14px;
  padding: 0;
  display: table;
}

.offer-test .entry-content ul li,
.offer-test .entry-content ol li {
  position: relative;
  left: 10px;
  margin-right: 0;
  line-height: 1.3;
  margin: 0 0 30px;
}

.offer-test .entry-content blockquote {
  border: 1px solid #ddd;
  margin: 20px 0;
  padding: 15px 20px;
  background: #fdfdfd;
  text-align: center;
}

.offer-test .entry-content blockquote p {
  margin: 0;
}

/* Offer Content */

.offer-test .offer-content {
  background: #f1f2f2;
  font-size: 16px;
  padding: 5%;
  position: relative;
  overflow: hidden;
}

/* Big Triangle */

svg#bigTriangleColor {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-filter: drop-shadow( 0 2px 3px rgba(0, 0, 0, 0.1));
  filter: drop-shadow( 0 2px 3px rgba(0, 0, 0, 0.1));
}

@media screen and (min-width:600px) {
  svg#bigTriangleColor {
    height: 40px;
  }
}

#bigTriangleColor path {
  fill: #fff;
  stroke: #fff;
  stroke-width: 2;
}

/* Offer Module */

.offer-test .module-content {
  border: 0;
  margin: 0 auto;
  padding: 5% 5% 0;
  background: #fff;
  max-width: 800px;
}

.offer-test .module-content:last-of-type {
  padding-bottom: 5%;
}

.offer-test .module-content + .module-content .module-border {
  border-top: 1px solid #f1f2f2;
  padding-top: 5%;
}

.offer-test .module-img {}

.offer-test .module-img img {
  float: right;
  margin: 0 0 10px 6%;
  max-width: 300px;
  width: 100%;
  height: auto;
}

.offer-test .module-info {
  border: 0;
  margin-bottom: 0;
  padding: 0;
}

.offer-test .module-info .module-name {
  text-align: left;
  font-weight: normal;
  font-size: 30px;
  color: inherit;
  display: table;
  margin: 0 0 15px;
}

.offer-test .module-info .module-name .item-num {
  font-family: "Oswald", Arial, Helvetica, serif;
  font-size: 75px;
  font-weight: 100;
  line-height: 0.9;
  display: table-cell;
  vertical-align: middle;
}

.offer-test .module-info .module-name .item-title {
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
  line-height: 1.2;
}

.offer-test .module-info pre {
  background: #eee;
  font-family: "Monaco", Courier, monospace;
  font-size: 18px;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1.6em;
  max-width: 300px;
  overflow: auto;
  padding: 1.6em;
}



/* Praise Content */

.offer-test .praise-content {
  font-size: 14px;
  padding-bottom: 40px;
}

.offer-test .praise-module {
  padding: 5% 5% 0;
  border: 1px solid #eee;
  margin: 0 auto;
  background: #fff;
  position: relative;
}

.offer-test .praise-module + .praise-module {
  margin-top: 40px;
}

.offer-test .praise-content h2 {
  font-size: 36px;
  font-weight: 100;
  text-align: center;
  margin: 0 auto;
  padding: 20px;
  display: block;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
}

.offer-test .praise-module .module-content {}

.offer-test .praise-module .module-desc {
  padding-bottom: 2%;
  position: relative;
  z-index: 2;
}

.offer-test .praise-module img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.offer-test .praise-module span {
  font-style: italic;
  line-height: 60px;
}


/* BUY BOX */

.offer-test .buy-box {
  text-align: center;
  margin: 0;
  padding: 5%;
  background: #222;
  color: #f1f2f2;
}

.offer-test .offer-buy {
  text-align: inherit;
  padding: 0;
  border: 0;
  background: transparent;
  max-width: 760px;
  margin: 0 auto;
}

.offer-test .offer-buy .entry-title {
  max-width: 900px;
  font-size: 50px;
  text-align: center;
  margin: 0 auto 30px;
  font-weight: normal;
  padding: 0;
  color: #f1f2f2;
  font-family: Georgia, serif;
  line-height: 1.3;
}

.offer-test .item-total {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 60px;
  font-style: italic;
  color: #ddd;
}

.offer-test .item-total span {
  color: #fff;
  font-weight: bold;
}

.offer-test .payment {
  margin-top: 10px;
  color: #f2f2f2;
  font-size: 16px;
  line-height: 1.2;
}

.offer-test .security {
  margin: 50px auto 50px;
  padding: 0 0 50px;
  border-bottom: 1px solid #f2f2f2;
}

.offer-test .questions h4 {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 20px;
  font-style: italic;
}

.offer-test .questions p {
  font-size: 14px;
}


/* BUY BUTTON */

.offer-test .offer-buy .button {
  position: relative;
  line-height: 1.2;
  text-decoration: none;
  display: inline-block;
  padding: 22px 10px;
  font-family: "Karla", "Josefin Slab", "Ubuntu", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  margin-top: 1px;
  margin-bottom: 3px;
  background: #A9C4D9;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  top: -10px;
  max-width: 380px;
}

.offer-test .offer-buy .button:active {
  top: -8px;
}


/* Guarantee Content */

.offer-test .guarantee-content {
  background: #b8babc;
  font-size: 16px;
  line-height: 2;
  text-align: center;
  padding: 60px 5% 5%;
}

/* END $OFFER TEST STYLES */

/* PROMO PAGES */

.promo-page {
  width: 100%;
  max-width: 1000px;
  margin: 5% auto;
  text-align: center;
}


/* PAGINTION */

.pagi-container {
  text-align: center;
}

.pagination {
  clear: both;
  padding: 20px 0;
  position: relative;
  font-size: 11px;
  line-height: 20px;
  display: inline-block;
}

.pagination span,
.pagination a {
  display: block;
  float: left;
  margin: 2px 2px 2px 0;
  padding: 6px 9px 5px 9px;
  text-decoration: none;
  width: auto;
  color: #ccc;
  background: #fff;
  border: 1px solid #ddd;
}

.pagination a:hover {
  color: #888;
  background: #eee;
  border-color: #999
}

.pagination .current {
  padding: 6px 9px 5px 9px;
  background: #777;
  border-color: #777;
  color: #fff;
}


/* COMMENTS */

.comment-reply-title {
  font-size: 40px;
  text-transform: uppercase;
}


/* FOOTER */

.site-footer {
  background: #454545;
  color: #888;
  text-align: center;
}

.site-footer a {
  color: #888;
}

.site-footer a:hover {
  color: #bbb;
  text-decoration: none;
}

.menu-footer-menu-container {
  margin: 0 auto;
  padding: 20px;
}

#menu-footer-menu {
  list-style: none;
  font-family: "Karla", "Josefin Slab", Arial, Helvetica, sans-serif;
}

#menu-footer-menu li {
  display: inline;
  margin-left: 10px;
  font-size: 14px;
}

.copyright {
  font-size: 12px;
  margin: 0 auto;
  float: left;
  line-height: 45px;
}

.copyright small {
  text-transform: uppercase;
  font-family: arial, helvetica, sans-serif;
  letter-spacing: 1px;
}

.footer-cta {
  float: right;
}

.footer-cta p {
      display: inline-block;
    margin: 0 auto;
  font-size: 14px;
  position: relative;
    top: -4px;
}

.footer-cta .button {
  margin: 0 0 0 10px;
    padding: 0;
    border: 1px solid #333;
    font-size: 16px;
    letter-spacing: 4px;
    text-shadow: none;
    color: #333;
    border-radius: 0;
    width: 175px;
    height: 44px;
    line-height: 44px;
    font-family: 'Oswald', sans-serif;
  background: #eee;
  text-decoration: none;
}

.footer-cta .button:hover {
  color:#333;
  text-decoration: none;
}


/*Micro Semantic Clearfix*/

.group:before,
.group:after {
  content: "";
  display: table
}

.group:after {
  clear: both
}

.group {
  zoom: 1
}


/********************************************************************************
*********************************************************************************
$COLORS
*********************************************************************************
*********************************************************************************/

/* MENU */

.page-title {
  color: #A9C4D9;
  border-color: #A9C4D9;
}


/*Body*/

.module-title,
.page-header,
#menu-main-menu > .current-menu-item > a,
#menu-main-menu > .current-category-ancestor > a {
  border-color: #A9C4D9;
}


/*Body*/

.cat-tag,
.related-entry {
  background: #A9C4D9;
}

.page-cat li a:hover,
.current-cat a,
.author-meta a:hover {
  color: #A9C4D9;
}


/********************************************************************************
*********************************************************************************
$MOBILE
*********************************************************************************
*********************************************************************************/

/* Desktops and laptops ----------- */

@media only screen and (max-width: 1224px) {
  /* HOMEPAGE */
  .top-nav {
    display: none;
  }
  .home-banner h1 {
    font-size: 55px;
  }
  .home-banner h2 {
    font-size: 20px;
  }
  .site-content {
    padding: 20px;
  }
  .module-container {
    max-width: 790px;
  }
  /* ABOUT */
  #about .intro-box {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1189px) {
  /* SINGLE */
  .pod-cat .buy-btn {
    width: 80%;
    font-size: 18px;
  }
  .podcast-player {
    width: 80%
  }
}

@media only screen and (max-width: 1169px) {
  /* AUTHOR */
  .author-container {
    max-width: 386px;
  }
}

@media only screen and (max-width: 1109px) {
  /* HOMEPAGE */
  .subscribe-footer {
    height: 400px;
  }
  .subscribe-footer h1 {
    font-size: 50px;
  }
  .subscribe-footer h3 {
    font-size: 18px;
    max-width: 550px;
  }
  #menu-main-menu,
  .company-info,
  .site-info img,
  .menu-footer-menu-container,
  #menu-footer-menu,
  .social,
  .promo .share-tools-single {
    float: none;
    text-align: center;
    width: 100%;
  }
  .site-info img {
    width: 150px;
  }
  .company-info {
    display: none;
  }
  .main-navigation li,
  #menu-main-menu > li {
    float: none;
  }
  /* PROMO */
  .promo .share-tools-single {
    margin: 10px auto 20px !important;
    padding-top: 0 !important;
  }
  .promo #logo img {
    margin-left: 64px;
  }
}

@media only screen and (max-width: 1023px) {
  /* HEADER */
  #nav-search .search-field {
    width: 100px;
  }
  /* AUTHOR */
  .related-posts .post-module:nth-of-type(2n),
  .author .post-module:nth-of-type(2n) {
    margin-right: 20px;
  }
  .author-container .post-module:nth-of-type(3n) {
    margin-right: 0;
  }
  .author-container {
    max-width: 790px;
  }
  .author-container .post-module,
  .author-container .module-image {
    max-width: 250px;
    height: 280px;
  }
  .author-container .module-image {
    height: 181px;
  }
  .author-container .post-module {
    overflow: hidden;
  }
  /* ABOUT */
  #about .welcome-box h1 {
    font-size: 60px;
  }
  #about .welcome-box h2 {
    font-size: 35px;
  }
  #about .right,
  #about .left {
    float: none;
    margin: 0 auto;
    text-align: center;
  }
  #about .desc {
    text-align: center;
  }
}

@media only screen and (max-width: 999px) {
  #nav-search,
  #nav-social {
    display: none;
  }
  .main-navigation {
    float: right;
  }
  .footer-cta,
  .copyright,
  .copyright small {
    float: none;
    width: 100%;
    display: block;
    line-height: 2;
  }
  .footer-cta {
    padding: 40px 0 60px;
  }
  .footer-cta p {
        display: block;
    font-size: 20px;
    max-width: 220px;
    margin: 0 auto 10px;
    line-height: 1.6;
  }
}

@media only screen and (max-width: 959px) {
  /* SINGLE */
  .single-post .social-box > .share-tools > a > i {
    width: 70px;
    height: 70px;
    line-height: 75px;
  }
  .single-post .social-box > .share-tools > a {
    padding: 51px 0;
  }
  .single-post .social-box > .share-tools > a > i {
    font-size: 45px;
  }
  .author-box a:nth-of-type(2) {
    font-size: 13px;
  }
  .single-post .footer-twitter i {
    font-size: 10px;
  }
  /* NOW */
  .page-id-8908 .social-box > .share-tools > a > i {
    width: 70px;
    height: 70px;
    line-height: 75px;
  }
  .page-id-8908 .social-box > .share-tools > a {
    padding: 51px 0;
  }
  .page-id-8908 .social-box > .share-tools > a > i {
    font-size: 45px;
  }
  .page-id-8908 .footer-twitter i {
    font-size: 10px;
  }
  /* ABOUT */
  #about .intro-box {
    max-width: 490px;
    margin-left: 90px;
  }
}

@media screen and (max-width:900px) {
  .single-post .site-main {
    padding: 0;
    margin: 10px;
  }
  #secondary {
    padding: 10px 0 0 0;
}
  .podcasts .entry-title {
    font-size: 32px!important;
  }
  .single-post .entry-header {
    padding: 20px;
    margin: 0 auto;
  }
  .single-post .entry-content {
    padding: 0 10px;
  }
}

@media screen and (max-width: 875px) {
.popup-hero,
  .popup-copy { display: block!important; }
.popup-image { display:none!important; }
.popup-copy { width: 100%!important; }
}

@media only screen and (max-width: 859px) {
  /* SINGLE */
  .pod-cat .buy-btn {
    width: 80%;
    font-size: 18px;
  }
  .podcast-player {
    width: 80%
  }
  /* CONTACT */
  .split-block .block {
    float: none;
    width: 100%;
  }
}

@media only screen and (max-width: 849px) {
    #logo {
    height: 64px;
    display: inline-block;
    margin-left: 0;
    float: none;
    overflow: hidden;
  }
  .main-navigation {
    float: none;
    line-height: normal;
    height: 50px;
    display: block;
  }
  
  /* HEADER */
  #menu-main-menu > li > a,
  .sub-menu > li > a {
    font-size: 14px;
    padding: 0 8px;
    height: 50px;
    line-height: 50px;
  }
  
  #menu-main-menu .sub-menu,
  #menu-main-menu .children {
    top: 50px;
  }
  
  /* HOMEPAGE & AUTHOR */
  .home-banner h1 {
    font-size: 50px;
  }
  .home-banner h2 {
    font-size: 20px;
  }
  .module-container,
  .author-container {
    max-width: 386px;
  }
  .module-container .post-module,
  .author-container .post-module,
  .author-container .module-image {
    max-width: 386px;
    height: 379px;
  }
  .author-container .module-image {
    height: 280px;
  }
  .module-container .post-module:nth-of-type(3n),
  .author-container .post-module:nth-of-type(3n) {
    margin-right: 20px;
  }
  .module-container .post-module:nth-of-type(2n),
  .author-container .post-module:nth-of-type(2n) {
    margin-right: 0;
  }
  /* AUTHOR */
  .author .authors-img img,
  .author .authors-social {
    float: none;
  }
  .author .authors-meta {
    margin: 0;
  }
  .author .authors-img {
    text-align: center;
  }
  /* SINGLE */
  .single-post .entry-optin h1 {
    font-size: 50px;
  }
  .single-post .entry-optin h2 {
    font-size: 25px;
  }
  .single-post .social-box > .share-tools > a {
    width: 33%;
  }
  .single-post .author-box {
    width: 100%;
    border-top: 1px solid #ddd;
  }
  /* NOW*/
  .page-id-8908 .entry-optin h1 {
    font-size: 50px;
  }
  .page-id-8908 .entry-optin h2 {
    font-size: 25px;
  }
  .page-id-8908 .social-box > .share-tools > a {
    width: 33%;
  }
  .page-id-8908 .author-box {
    width: 100%;
    border-top: 1px solid #ddd;
  }
  /* TERMS/PRIVACY */
  .menu-legal-menu-container {
    display: none;
  }
  .page-template-page-legal-php article.page > header > h1,
  .page-template-page-legal-php article.page .entry-content {
    margin-left: 0;
  }
  /* ABOUT */
  #about .intro-box {
    max-width: 400px;
    margin-left: 70px;
  }
}

@media only screen and (max-width: 799px) {
  .single-post #primary,
  .page-id-8908 #primary,
  .author #primary {
    padding: 0;
    float: none;
  }
  #secondary {
    display: none;
  }
}
  
@media only screen and (max-width: 759px) {
  /* ABOUT */
  #about .welcome-box h1 {
    font-size: 50px;
  }
  #about .welcome-box h2 {
    font-size: 30px;
    margin-top: -20px;
  }
  .offer-test .module-img img {
    float: none;
    margin: 0 auto 6%;
    text-align: center;
    display: block;
  }
  .offer-test .praise-module + .praise-module {
    margin-top: 0;
  }
}

@media screen and (max-width: 680px) {
  .home .hero-wrapper {
    background-size: cover;
}
.home .hero-content {
  max-width: 50%;
    padding: 20px 20px 20px 15%;
}
.home .hero-margin {
    height: auto;
}
.home .hero-title {
    font-size: 1.6em;
}
.home .second-line {
    margin-left: 14px;
}

.home .shop-content {
  padding: 10px;
  top: 0;
  text-align: center;
}
.home .shop-title {
  left: -10px;
}
.home .shop-arrow {
    position: relative;
    top: 0;
    right: 0;
    margin: 20px auto 10px;
    display: inline-block;
}

.home .about-wrapper {
  padding: 12%;
    background-position: right;
}
.home .about-content {
    background: #fff;
    float: none;
    max-width: 100%;
    padding: 5%;
}
.home .about-title {
    font-size: 1.3em;
}

.home .podcast-content {
    float: none;
    max-width: 100%;
    margin: 50% auto 0;
}
.home .podcast-title {
    font-size: 1.3em;
}
.home .podcast-subtitle {
    font-size: .7em;
}
}

@media only screen and (max-width: 649px) {
  /* HOMEPAGE */
  .subscribe-footer {
    width: 300px;
    margin: 0 auto;
    padding-top: 40px;
    border: 0;
  }
  .subscribe-footer h1 {
    font-size: 44px;
  }
  .subscribe-footer h3 {
    font-size: 15px;
    width: 100%;
  }
  .subscribe-footer h3 br {
    display: none;
  }
  .subscribe-footer .subscribe-group > input[type=email] {
    border-radius: 5px;
    width: 100%;
  }
  .subscribe-footer .subscribe-group > .submit {
    width: 100%;
    left: auto;
    border-radius: 5px;
    margin-top: 10px;
  }
  .site-info {
    border-top: 1px solid #ddd;
  }
  #menu-main-menu > li > a {
    min-width: 0;
  }
  .copyright {
    text-align: center;
  }
  /* SINGLE */
  .single-post .product-img {
    float: none;
    margin: 0 auto;
  }
  .single-post .product-data,
  .pod-cat .buy-btn,
  .podcast-player {
    width: 100%
  }
  .pod-cat .product-data {
    padding: 20px;
  }
  .single-post .entry-optin .subscribe-group {
    max-width: 300px;
  }
  .single-post .entry-optin .subscribe-group > input[type=email] {
    border-radius: 5px;
    width: 100%;
  }
  .single-post .entry-optin .subscribe-group > .submit {
    width: 100%;
    left: auto;
    border-radius: 5px;
    margin-top: 10px;
  }

  /* NOW*/
  .page-id-8908 .product-img {
    float: none;
    margin: 0 auto;
  }
  .page-id-8908 .product-data {
    width: 100%
  }
  .page-id-8908 .entry-optin .subscribe-group {
    max-width: 300px;
  }
  .page-id-8908 .entry-optin .subscribe-group > input[type=email] {
    border-radius: 5px;
    width: 100%;
  }
  .page-id-8908 .entry-optin .subscribe-group > .submit {
    width: 100%;
    left: auto;
    border-radius: 5px;
    margin-top: 10px;
  }
  /* CONTACT */
  .bio-box {
    padding: 0 10px;
  }
  /* ABOUT */
  #about .write {
    font-size: 30px;
  }
  #about blockquote {
    font-size: 18px;
    padding: 0 10px;
  }
}

@media screen and (max-width:600px) {
  .podcasts .entry-title {
    font-size: 28px!important;
  }
}

@media only screen and (max-width: 599px) {
  /* ABOUT */
  #about .write {
    font-size: 18px;
  }
  #about .intro {
    background: #fbfbfb;
  }
  #about .intro-box {
    max-width: 100%;
    margin-left: 0;
    color: #404041;
    padding: 10px;
  }
  #about .mobile {
    display: block !important;
    margin-bottom: 20px;
  }
  #about .desc-box {
    width: 100%;
    height: auto;
    padding: 10px;
  }
  /* HEADER */
  #menu-main-menu > li > a,
  .sub-menu > li > a {
    font-size: 11px;
  }
  /* PROMO */
  .promo #masthead {
    display: block;
  }
}

@media only screen and (max-width: 529px) {
  /* HEADER */
  /*.scroll {
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.scroll::-webkit-scrollbar {
  display: none;
}
  nav.scroll::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 8px;
  }*/
  .no-mobile {display:none!important;}
  
  .menu-main-menu-container {
    margin-bottom: 5px;
  }

  .main-navigation li,
  #menu-main-menu > li {
    width: 32%;
    height: 36px;
    line-height: 36px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
  }

  .offer-test .module-info .module-name {
    font-size: 20px;
  }
}


@media screen and (max-width: 444px) {
  /* HOMEPAGE & AUTHOR */
  .site-content {
    padding: 20px 5px;
  }
  .module-container,
  .author-container {
    max-width: 300px;
  }
  .module-container .post-module,
  .author-container .post-module,
  .author-container .module-image {
    max-width: 300px;
    height: 319px;
  }
  .author-container .module-image {
    height: 218px;
  }
  .module-container .post-module:nth-of-type(3n),
  .author-container .post-module:nth-of-type(3n) {
    margin-right: 0;
  }
  .module-container .post-module:nth-of-type(2n),
  .author-container .post-module:nth-of-type(2n) {
    margin-right: 0;
  }
  /* SINGLE */
  .pod-cat .buy-btn {
    font-size: 14px;
    overflow: hidden;
  }
  /* CONTACT */
  .two.split-block .block {
    height: 100%;
  }
  .one.split-block .block {
    height: 400px;
  }
  /* ABOUT */
  #about .write {
    font-size: 20px;
  }
  #about .welcome-box h1 {
    font-size: 28px;
  }
  #about .welcome-box h2 {
    font-size: 18px;
    margin-top: 0;
  }
}