/*
Theme Name: mm3
Author: MemberDev
Author URI: https://memberdev.com
Description: Custom theme for MemberMouse
Version: 3.1

/*

TABLE OF CONTENTS
- 01: Global
- 02: Header
- 03: Structure
- 04: Components
- 05: Footer
- 06: Forms
- 07: Tables
- 08: Bootstrap
- 09: Plugins
- 10: Behavioral (JS)
- 11: Responsive (Media Queries)
*/

/* 01: Global
========================================================================================================================= */
/* Load Fonts */
@font-face {
    font-family: 'coresans';
    src: url('fonts/coresansc15-webfont.eot');
    src: url('fonts/coresansc15-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/coresansc15-webfont.woff2') format('woff2'),
         url('fonts/coresansc15-webfont.woff') format('woff'),
         url('fonts/coresansc15-webfont.ttf') format('truetype'),
         url('fonts/coresansc15-webfont.svg#core_sans_c15_thin') format('svg');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'coresans';
    src: url('fonts/coresansc25-webfont.eot');
    src: url('fonts/coresansc25-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/coresansc25-webfont.woff2') format('woff2'),
         url('fonts/coresansc25-webfont.woff') format('woff'),
         url('fonts/coresansc25-webfont.ttf') format('truetype'),
         url('fonts/coresansc25-webfont.svg#core_sans_c25_extralight') format('svg');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'coresans';
    src: url('fonts/coresansc35-webfont.eot');
    src: url('fonts/coresansc35-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/coresansc35-webfont.woff2') format('woff2'),
         url('fonts/coresansc35-webfont.woff') format('woff'),
         url('fonts/coresansc35-webfont.ttf') format('truetype'),
         url('fonts/coresansc35-webfont.svg#core_sans_c35_light') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'coresans';
    src: url('fonts/coresansc55-webfont.eot');
    src: url('fonts/coresansc55-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/coresansc55-webfont.woff2') format('woff2'),
         url('fonts/coresansc55-webfont.woff') format('woff'),
         url('fonts/coresansc55-webfont.ttf') format('truetype'),
         url('fonts/coresansc55-webfont.svg#core_sans_c55_medium') format('svg');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'coresans';
    src: url('fonts/coresansc65-webfont.eot');
    src: url('fonts/coresansc65-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/coresansc65-webfont.woff2') format('woff2'),
         url('fonts/coresansc65-webfont.woff') format('woff'),
         url('fonts/coresansc65-webfont.ttf') format('truetype'),
         url('fonts/coresansc65-webfont.svg#core_sans_c65_bold') format('svg');
    font-weight: 800;
    font-style: normal;
}

/* 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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	color: #777;
	font-family: 'coresans', arial, sans-serif;
	font-weight: 300;
}

h1, h2, h3, h4, h5, h6, p {font-weight: 300; margin-bottom: 20px; line-height: 1.4em;}
h1, h2, h3, h4, h5, h6 {letter-spacing: -0.025em; color: #213240;}
h3, h4, h5, h6 {font-weight: 700;}
h1 {font-size: 3em; line-height: 1.2em;}
h2 {font-size: 2.4em;}
h3 {font-size: 2em;}
h4 {font-size: 1.6em;}
h5 {font-size: 1.4em;}
h6 {font-size: 1.2em;}
p {font-size: 1em; font-weight: 300; line-height: 1.8em;}

.headline {font-size: 1.5em; font-weight: 300; letter-spacing: -0.025em; line-height: 1.4;}
.headline.headline-small {font-size: 1.2em;}
.headline.headline-large {font-size: 2em;}
.headline.headline-jumbo {font-size: 2.4em;}
.headline.headline-thin {font-weight: 100;}
.terms {font-size: .8em;}

a {
	color: #1985e3;
	text-decoration: none;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
a:hover {
	color: #213240;
	text-decoration: underline;
}

blockquote {
	padding: 30px;
	margin: 0 0 20px;
	background: #f5f5f5;
	color: #999;
}
code {
	display: inline-block;
	padding: 0 10px;
	background: #f9f9f9;
	color: #213240;
	font-size: .85em;
	border: 1px solid;
	border-radius: 3px;
}
sup {
	font-size: .6em;
}

hr {
	border-top-color: #ddd;
}

.hr-10 {
	margin: 10px 0;
}
.hr-15 {
	margin: 15px 0;
}
.hr-20 {
	margin: 20px 0;
}
.hr-30 {
	margin: 30px 0;
}
.hr-dark {
	border-top: 1px solid #036;
}
.hr-thick {
	border-top-width: 5px;
}
.hr-trans {
	border-top: 1px solid rgba(255, 255, 255, .25);
}
.hr-blank {
	border: none;
	margin: 10px 0;
}
.hr-spacer {
	border: none;
	margin: 30px 0;
}
.hr-slim {
	width: 10%;
}
.hr-slim-centered {
	width: 10%;
	margin: 20px auto;
}

iframe {
	max-width: 100%;
	margin: 0 0 20px;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

pre {
	display: block;
	padding: 20px;
	margin: 0 0 20px;
	background: #fff;
	color: #213240;
	border-radius: 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
pre.pre-dark {
	background: #213240;
	color: #fff;
	box-shadow: none;
}

/* ---------- helpers ---------- */
.helper-text {
	font-size: .75em;
	font-weight: 300;
	color: #999
}
.screen-reader-text {
	display: none;
}
.caps {
	text-transform: uppercase;
}
.centered {
	text-align: center;
}
.clear {
	clear: both;
}
.bold {
	font-weight: bold;
}
.spaced-3 {
	letter-spacing: 3px;
}
.spaced-5 {
	letter-spacing: 5px;
}
.font-200 {
	font-weight: 200 !important;
}
.font-300 {
	font-weight: 300 !important;
}
.font-700 {
	font-weight: 700 !important;
}
.font-800 {
	font-weight: 800 !important;
}
.highlight {
	font-weight: 700;
	background: rgba(25, 133, 227, .1);
	color: #213240;
}
.small {
	font-size: .85em !important;
}

.no-margin {
	margin: 0 !important;
}
.margin-b-10 {
	margin: 0 0 10px !important;
}
/* alignment/embed classes */
.alignleft,
.embed-left {
	float: left;
	margin: 0 20px 20px 0;
}
.alignright,
.embed-right {
	float: right;
	margin: 0 0 20px 20px;
}
.aligncenter,
.embed-center {
	display: block;
	margin: 0 auto 20px;
}
.alignnone,
.embed-static {
	margin: 0 0 20px;
}
/* unique embed classes */
.embed-screenshot {
	margin: 0 0 30px;
}
.embed-video {
	margin: 0 0 20px;
}
.embed-graphic {
	display: block;
	width: 70%;
	margin: 30px auto;
}
.embed-cover {
	display: block;
	margin: 0 auto 20px;
	box-shadow: 0 0 15px rgba(0, 0, 0, .25);
}
.embed-featured-image img {
	width: 100%;
}
/* video containers */
.video-container {
	position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    margin: 0 0 30px;
    /*
	position: relative;
	height: 0;
	padding-bottom: 50%;
	padding-top: 35px;
	margin: 0 0 30px;
	*/
}
.video-container img,
.video-container iframe,
.video-container video {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 5;
}

/* ---------- colors ---------- */
/* brand colors */
.color-aqua {color: #27b3a7 !important;}

.color-blue {color: #1985e3 !important;}
.color-podcast-blue {color: #2589bc !important;}
.color-blue-light {color: #9fd1fc !important;}
.color-blue-dark {color: #0e4e86 !important;}
.color-blue-grey {color: #3b5d7a !important;}

.color-green {color: #6abf44 !important;}
.color-green-light {color: #aef28f !important;}
.color-green-dark {color: #3a8219 !important;}

.color-purple {color: #5e40b3 !important;}
.color-purple-light {color: #a78df1;}
.color-purple-dark {color: #40407D !important;}

.color-yellow {color: #fdc731 !important;}
.color-orange {color: #f60 !important;}

/* neutral colors */
.color-white {color: #fff !important;}
.color-grey {color: #748ca2 !important;}
.color-grey-light {color: #f5f5f5 !important;}
.color-grey-medium {color: #ccc !important;}
.color-grey-dark {color: 394656 !important;}
.color-black {color: #000;}
.color-dark {color: #213240 !important;}

/* transparent colors */
.color-trans-black-25 {color: rgba(255, 255, 255, .25) !important;}
.color-trans-black-50 {color: rgba(255, 255, 255, .5) !important;}
.color-trans-black-75 {color: rgba(255, 255, 255, .75) !important;}

.color-trans-white-25 {color: rgba(255, 255, 255, .25) !important;}
.color-trans-white-50 {color: rgba(255, 255, 255, .5) !important;}
.color-trans-white-75 {color: rgba(255, 255, 255, .75) !important;}

/* ---------- backgrounds ---------- */
.bg-white {background: #fff !important;}
.bg-grey {background: #999 !important;}
.bg-grey-light {background: #eee !important;}
.bg-blue {background: #1985e3 !important;}
.bg-blue-dark {background: #0e4e86 !important;}
.bg-green {background: #6abf44 !important;}
.bg-green-dark {background: #3a8219 !important;}
.bg-yellow {background: #fdc731 !important;}
.bg-podcast-blue {background: #24394e !important;}

/* ---------- icons ---------- */
.icon-left {
	margin-right: 5px;
}
.icon-right {
	margin-left: 5px;
}
.icon-jumbo {
	width: 80px;
	font-size: 5em;
	margin: 0 0 15px;
}
.icon-super {
	font-size: 10em;
	margin: 0 0 20px;
}
.icon-centered {
	display: block;
	margin: 0 auto 20px;
	text-align: center;
}
.icon-embed-150 {
	display: block;
	width: 150px;
	margin: 0 0 20px;
}
.icon-mm {
	display: block;
	width: 75px;
}
.icon-mm.icon-large {
	width: 150px;
	margin: 0 0 20px;
}
.icon-mm.icon-centered {
	margin: 0 auto 20px;
}
.icon-mm.icon-inline {
	display: inline-block;
	width: 40px;
	margin: -4px 5px 0 0;
	vertical-align: top;
}
.icon-feature {
	display: inline-block;
	width: 50px;
	margin: 0 0 20px;
}
.icon-display {
	margin: 0 0 20px;
}
.icon-display i {
	display: block;
	font-size: 3em;
	color: #1985e3;
}

/* ---------- buttons ---------- */
.btn {
	display: inline-block;
	padding: 12px 30px;
	font-size: 1em;
	font-weight: 700;
	line-height: 1.2;
	border: none;
	border-radius: 100px;
	text-decoration: none;
	white-space: inherit;
}
.btn.btn-cta,
.btn.btn-success,
.btn.btn-green {
	background: #6abf44;
	color: #FFF;
	border: 2px solid #6abf44;
}
.btn.btn-cta:hover,
.btn.btn-success:hover,
.btn.btn-green:hover {
	background: #3a8219;
	border-color: #3a8219; 
}
.btn.btn-cta-orange {
	background: #ffa500;
	color: #000;
	border: 2px solid #ffa500;
}
.btn.btn-cta-orange:hover {
	background: #ff0021;
	border-color: #ff0021; 
}
.btn.btn-cancel {
	background: none;
	color: #1985e3;
	border: 2px solid #ccc;
}
.btn.btn-cancel:hover {
	color: #213240;
	border-color: #213240;
}
.btn.btn-default {
	background: none;
	color: #1985e3;
	border: 2px solid #1985e3;
}
.btn.btn-default:hover {
	background: #1985e3;
	color: #fff;
	border-color: #1985e3;
}
.btn.btn-default-cta {
	background: none;
	color: #6abf44;
	border: 2px solid #6abf44;
}
.btn.btn-default-cta:hover {
	background: #6abf44;
	color: #fff;
	border-color: #6abf44;
}
.btn.btn-danger {
	background: #c00;
	color: #fff;
	border: 2px solid #c00;
}
.btn.btn-danger:hover {
	background: #900;
	color: #fff;
	border-color: #900;
}
.btn.btn-danger {
	background: #c00;
	color: #fff;
	border: 2px solid #c00;
}
.btn.btn-danger:hover {
	background: #900;
	color: #fff;
	border-color: #900;
}
.btn.btn-primary,
.btn.btn-blue {
	background: #1985e3;
	color: #fff;
	border: 2px solid #1985e3;
}
.btn.btn-primary:hover,
.btn.btn-blue:hover {
	background: #0e4e86;
	color: #fff;
	border: 2px solid #0e4e86;
}
.btn.btn-aqua {
	background: #27b3a7;
	color: #fff;
	border: 2px solid #27b3a7;
}
.btn.btn-aqua:hover {
	background: #0a7d73;
	color: #fff;
	border-color: #0a7d73;
}
.btn.btn-purple {
	background: #5e40b3;
	color: #fff;
	border: 2px solid #5e40b3;
}
.btn.btn-purple:hover {
	background: #40407D;
	color: #fff;
	border: 2px solid #40407D;
}
.btn.btn-trans {
	background: none;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, .5);
}
.btn.btn-trans:hover {
	background: #fff;
	color: #1985e3;
	border: 2px solid #fff;
}
.btn.btn-link.link-cancel {
	color: #999;
}
.btn.btn-link.link-cancel:hover {
	color: #1985e3;
}
/* button sizes */
.btn-micro {
	font-size: .75em;
	padding: 5px 15px;
}
.btn-sm,
button[type="button"].btn-sm,
button[type="submit"].btn-sm,
button[type="cancel"].btn-sm {
	font-size: .85em;
	padding: 8px 20px;
}
.btn-lg,
button[type="button"].btn-lg,
button[type="submit"].btn-lg,
button[type="cancel"].btn-lg {
	font-size: 1.2em;
	padding: 15px 40px;
}
.btn-xl {
	font-size: 1.5em;
	padding: 15px 40px;
}
/* button variations */
.btn-inline {
	vertical-align: top;
	margin-left: 5px;
}
.btn-width-200 {
	width: 200px;
}
.btn.btn-status {
	background: none;
	color: #999;
	border: 2px solid #ccc;
}
/* btn toggles */
.btn-toggle.open .toggle-status.status-open {
	display: inline-block;
}
.btn-toggle.open .toggle-status.status-closed {
	display: none;
}
.btn-toggle .toggle-status.status-open {
	display: none;
}
.btn-toggle .toggle-status.status-closed {
	display: inline-block;
}
/* ---------- links ---------- */
.link-light:hover {
	color: #fff;
}
.link-light-blue {
	color: #9fd1fc;
}
.link-light-blue:hover {
	color: #fff;
}

/* ---------- content ---------- */
.content-small p {
	font-size: .8em;
}

/* ---------- lists ---------- */
ul,
ol {
	margin: 0 0 20px 22px;
}
ul li,
ol li {
	margin: 0 0 10px;
}
.list {
	list-style: square;
	margin: 0 0 20px 20px;
}
.list li {
	margin: 0 0 10px;
}
/* check list */
.list-check {
	list-style: none;
	margin: 0 0 20px;
}
.list-check li {
	position: relative;
	padding-left: 30px;
	margin: 0 0 15px;
}
.list-check li:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "\e9c4";
	font-family: 'budicon-classic';
	color: #6abf44;
}
/* icon list */
.list-icon {
	list-style: none;
	font-weight: 700;
	color: #333;
	margin: 0 0 20px;
}
.list-icon li {
	position: relative;
	padding: 10px 0 10px 30px;
	line-height: 1.4;
}
.list-icon li i {
	position: absolute;
	top: 11px;
	left: 0;
	width: 20px;
	font-size: 1.2em;
	text-align: center;
}
/* inline list */
.list-inline {
	list-style: none;
	margin: 0;
	color: #33505e;
}
.list-inline li {
	display: inline-block;
	margin: 0 20px 0 0;
}
.list-inline li i {
	color: #85a6b5;
}
/* nav list */
.list-nav {
	list-style: none;
	font-weight: 400;
	margin: 0 0 20px;
}
.list-nav li {
	border-top: 1px solid #ddd;
}
.list-nav li a {
	position: relative;
	display: block;
	padding: 15px;
	text-decoration: none;
}
.list-nav li a:hover {
	background: #333;
	color: #fff;
}
.list-nav li.list-current a {
	background: #eee;
	color: #333;
}
.list-nav li a > i {
	position: absolute;
	top: 17px;
	right: 15px;
}
/* option list */
.list-option {
	list-style: none;
	color: #333;
	margin: 0 0 20px;
}
.list-option li {
	position: relative;
	padding: 15px 0 15px 30px;
	margin: 0;
	border-top: 1px solid #ddd;
}
.list-option li i {
	position: absolute;
	top: 13px;
	left: 0;
	width: 20px;
	font-size: 1.2em;
	text-align: center;
}
.list-option li label {
	font-weight: 700;
	margin: 0;
}
/* steps list */
.list-steps {
	list-style: none;
	margin: 0 0 30px;
}
.list-steps li {
	position: relative;
	padding: 5px 0 5px 40px;
	margin: 0 0 10px;
}
.list-steps li .step-number {
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	padding: 7px 0;
	background: #748ca2;
	color: #fff;
	font-size: .8em;
	text-align: center;
	border-radius: 100px;
}
/* list columns */
.list-columns-2 li {
	display: inline-block;
	width: 48%;
	vertical-align: top;
}
.list-columns-3 li {
	display: inline-block;
	width: 32%;
	vertical-align: top;
}
/* list sizes */
.list-small {
	font-size: .85em;
}

/* ---------- titles ---------- */
.title-seo {
	font-size: 1.4em;
	font-weight: 300;
	line-height: 1.6;
}
.title-small {
	font-size: 1.5em;
}
.title-intro {
	text-align: center;
}
.title-intro .title-span {
	position: relative;
	display: inline-block;
	padding-left: 150px;
}
.title-intro .title-span .title-icon {
	position: absolute;
	top: -3px;
	left: 0;
	width: 130px;
}
.title-budicon i {
	display: inline-block;
	line-height: .5;
	margin: 5px 5px 0 0;
	vertical-align: top;
}

/* 02: Header
========================================================================================================================= */
.site-header {
	/*
   position: fixed;
	 top: 0;
	 z-index: 1000;
  */
	width: 100%;
	background: #fff;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.site-header > .container {
	position: relative;
}
/* header top */
.site-header .header-top {
	height: 38px;
	background: #f5f8fb;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.site-header .header-top .top-nav {
	list-style: none;
	font-size: .75em;
	font-weight: 700;
	text-align: right;
	margin: 0;
}
.site-header .header-top .top-nav li {
	display: inline-block;
	margin: 0;
}
.site-header .header-top .top-nav li a {
	display: block;
	padding: 10px;
	color: #0e4e86;
}
.site-header .header-top .top-nav li a i {
	margin-right: 5px;
}
.site-header .header-top .top-nav li a img {
	display: inline-block;
	width: 15px;
	margin: 1px 5px 0 0;
	vertical-align: top;
}
/* header brand */
.site-header .header-brand {
	position: absolute;
	top: 10px;
	left: 0;
	width: 300px;
	padding: 5px 15px;
	z-index: 1002;
}
.site-header .header-brand img {
	display: block;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.site-header a.header-brand:hover img {
	opacity: .5;
}
/* header nav */
.site-header .header-nav {
	float: right;
}
.site-header .header-nav ul {
	list-style: none;
	font-size: .85em;
	font-weight: 400;
	padding: 12px 0;
	margin: 0;
}
.site-header .header-nav ul > li {
	display: inline-block;
	margin: 0 0 0 5px;
}
.site-header .header-nav ul > li > a {
	display: block;
	padding: 10px 20px;
	color: #666;
	text-decoration: none;
	border-radius: 100px;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
	vertical-align: top;
}
.site-header .header-nav ul > li > a:hover {
	background: #1985e3;
	color: #fff;
}
.site-header .header-nav ul > li.nav-cta > a,
.site-header .header-nav ul > li.nav-cta-secondary > a {
	padding: 8px 20px;
	font-weight: 700;
	color: #6abf44;
	border: 2px solid;
}
.site-header .header-nav ul > li.nav-cta > a:hover {
	background: #6abf44;
	color: #fff;
	border-color: #6abf44;
}

.site-header .header-nav ul > li.nav-cta-secondary > a {
	color: #777;
	border-color: #777;
}

.site-header .header-nav ul > li.nav-cta-secondary > a:hover {
	background: #777;
	color: #fff;
}
.site-header .header-nav ul > li.nav-demo > a {
	padding: 8px 20px;
	font-weight: 700;
	color: #1985e3;
	border: 2px solid;
}
.site-header .header-nav ul > li.nav-demo > a:hover {
	background: #1985e3;
	color: #fff;
	border-color: #1985e3;
}
.site-header .header-nav ul > li.nav-dropdown > a {
	background: rgba(255, 255, 255, .15);
	font-weight: 700;
}
.site-header .header-nav ul > li.nav-dropdown > a:hover {
	background: #eee;
}
.site-header .header-nav ul > li > a > i {
	display: inline-block;
	margin: -1px 5px 0 0;
	font-size: 1.2em;
	vertical-align: top;
}
/* dropdown (click) */
.site-header .header-nav li.nav-dropdown {
	position: relative;
}
.site-header .header-nav li.nav-dropdown.open > a {
	background: #fff;
	color: #333;
	border-radius: 0;
	border-color: #fff;
}
.site-header .header-nav li.nav-dropdown > a .dropdown-icon {
	margin-right: 5px;
}
.site-header .header-nav .dropdown-menu {
	top: auto;
	right: 0;
	padding: 10px;
}
.site-header .header-nav .dropdown-menu li {
	display: block;
	float: none;
	margin: 0;
	border-left: none;
}
.site-header .header-nav .dropdown-menu li a {
	padding: 15px;
}

/* mobile */
.site-header .header-mobile-navicon {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	padding: 12px 15px;
	line-height: 1;
    cursor: pointer;
    user-select: none;
    -webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
	z-index: 1001;
}
.site-header .header-mobile-navicon .bars {
	display: inline-block;
    width: 32px;
    height: 2px;
    background: #999;
    transition: 0.3s;
    position: relative;
}
.site-header .header-mobile-navicon .bars:before,
.site-header .header-mobile-navicon .bars:after {
	display: inline-block;
    width: 32px;
    height: 2px;
    background: #999;
    border-radius: 0.28571rem;
    -webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
    position: absolute;
    left: 0;
    content: '';
    -webkit-transform-origin: 0.28571rem center;
    transform-origin: 0.28571rem center;
}
.site-header .header-mobile-navicon .bars:before {
	top: 10px;
}
.site-header .header-mobile-navicon .bars:after {
	top: -10px;
}

/* close state */
.site-header .header-mobile-navicon.navicon-close {
	-webkit-transform: scale3d(0.8,0.8,0.8);
    transform: scale3d(0.8,0.8,0.8);
}
.site-header .header-mobile-navicon.navicon-close .bars {
	background: transparent;
}
.site-header .header-mobile-navicon.navicon-close .bars:before,
.site-header .header-mobile-navicon.navicon-close .bars:after {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    top: 2px;
    width: 42px;
}
.site-header .header-mobile-navicon.navicon-close .bars:before {
    -webkit-transform: rotate3d(0,0,1,45deg);
    transform: rotate3d(0,0,1,45deg);
}
.site-header .header-mobile-navicon.navicon-close .bars:after {
    -webkit-transform: rotate3d(0,0,1,-45deg);
    transform: rotate3d(0,0,1,-45deg);
}

/* restyle header styling (on scroll down) */
.site-header.header-restyle {
	box-shadow: 0 5px 5px rgba(0, 0, 0, .05);
}
.site-header.header-restyle .header-top {
	height: 0px;
	overflow: hidden;
}

/* plans / checkout header */
.page-template-page-checkout .site-header .header-top,
.page-template-page-checkout .site-header .header-nav,
.page-template-page-checkout .site-header .header-mobile-navicon,
.page-template-page-upsell .site-header .header-top,
.page-template-page-upsell .site-header .header-nav,
.page-template-page-upsell .site-header .header-mobile-navicon {
	display: none;
}
.page-template-page-checkout .site-header .header-brand,
.page-template-page-upsell .site-header .header-brand {
	position: static;
	display: block;
	padding: 15px 0;
	margin: 0 auto;
}

/* member header (logged in) */
.site-header.header-member {
	background: #1985e3;
}
.site-header.header-member .header-top {
	display: none;
}
.site-header.header-member .header-nav ul > li > a {
	color: #fff;
}
.site-header.header-member .header-nav ul > li > a:hover {
	background: #fff;
	color: #1985e3;
}
.site-header.header-member .header-nav ul > li.nav-dropdown > a {
	background: none;
	font-weight: 300;
}
.site-header.header-member .header-nav ul > li.nav-dropdown > a:hover {
	background: #fff;
	color: #1985e3;
}
.site-header.header-member .header-nav ul > li.nav-dropdown.open > a {
	background: #fff;
}
.site-header.header-member .header-nav ul > li.nav-logout > a {
	background: rgba(255, 255, 255, .15);
}
.site-header.header-member .header-nav ul > li.nav-logout > a:hover {
	background: #fff;
}
.site-header.header-member .header-nav .dropdown-menu li a {
	color: #213240;
	border-radius: 0;
}
.site-header.header-member .header-nav .dropdown-menu li a:hover {
	background: #1985e3;
	color: #fff;
}
.site-header.header-member .header-mobile-navicon .bars {
	background: #fff;
}
.site-header.header-member .header-mobile-navicon .bars:before,
.site-header.header-member .header-mobile-navicon .bars:after {
	background: #fff;
}
.site-header.header-member .header-mobile-navicon.navicon-close .bars {
	background: transparent;
}


/* 03: Structure
========================================================================================================================= */
/* ---------- Grids ---------- */
/* responsive grid */
.rsp-grid {
	font-size: 0;
}
.rsp-grid .grid-container {
	display: inline-block;
	font-size: 16px;
	font-size: 1rem;
	vertical-align: top;
}
.rsp-grid .grid-container.container-20 {
	width: 20%;
}
.rsp-grid .grid-container.container-25 {
	width: 25%;
}
.rsp-grid .grid-container.container-30 {
	width: 30%;
}
.rsp-grid .grid-container.container-33 {
	width: 33.33%;
}
.rsp-grid .grid-container.container-40 {
	width: 40%;
}
.rsp-grid .grid-container.container-50 {
	width: 50%;
}
.rsp-grid .grid-container.container-66 {
	width: 66.66%;
}
.rsp-grid .grid-container.container-75 {
	width: 75%;
}
/* spaced grid */
.rsp-grid.grid-spaced {
	margin-left: -2%;
}
.rsp-grid.grid-spaced .grid-container {
	margin: 0 0 2% 2%;
}
.rsp-grid.grid-spaced .grid-container.container-20 {
	width: 18%;
}
.rsp-grid.grid-spaced .grid-container.container-25 {
	width: 23%;
}
.rsp-grid.grid-spaced .grid-container.container-30 {
	width: 28%;
}
.rsp-grid.grid-spaced .grid-container.container-33 {
	width: 31.33%;
}
.rsp-grid.grid-spaced .grid-container.container-40 {
	width: 38%;
}
.rsp-grid.grid-spaced .grid-container.container-50 {
	width: 48%;
}
.rsp-grid.grid-spaced .grid-container.container-66 {
	width: 64.66%;
}
.rsp-grid.grid-spaced .grid-container.container-75 {
	width: 73%;
}

/* masonry grid (uses masronry.js plugin) */
.masonry-grid {
	margin-left: -2%;
}
.masonry-grid .grid-item {
	display: block;
	float: left;
	margin: 0 0 2% 2%;
}
.masonry-grid .grid-item.item-25 {
	width: 23%;
}
.masonry-grid .grid-item.item-33 {
	width: 31.33%;
}
.masonry-grid .grid-item.item-50 {
	width: 48%;
}

/* ---------- Checkout ---------- */
.checkout-container {
	padding: 30px;
	margin: 30px 0;
	border: 1px solid #ddd;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.checkout-container.container-slim {
	width: 960px;
	padding: 40px;
	margin: 30px auto;
}
.checkout-container br {
	display: none;
}

.checkout-container.checkout-guest #mm-field-password {
	display: none;
}

/* checkout columns */
.checkout-container.container-columns {
	padding: 0;
}
.checkout-container.container-columns .mm-checkoutContainer {
	display: table;
	margin: 0;
}
.checkout-container.container-columns .mm-checkoutContainer .mm-formError {
	padding: 10px;
	margin: 0;
	font-size: 1em;
	border-radius: 0;
}
/* margin out all p's to avoid WP spacing issues */
.checkout-container.container-columns p {
	font-size: 1em;
	margin: 0;
}
/* add back margin to specific p's */
.checkout-container.container-columns .checkout-column p {
	margin: 0 0 10px;
}
.checkout-column {
	display: table-cell;
	padding: 50px;
	vertical-align: top;
}
.checkout-column.column-product {
	width: 45%;
	background: #f9f9f9;
}
.checkout-column.column-product img {
	display: block;
	margin: 0 0 20px;
}
.checkout-column.column-product .mm-checkoutSection {
	padding: 0;
}
.checkout-column.column-product .section-image {
	display: block;
	margin: 0 0 15px;
}
.checkout-column.column-product .pricing-title {
	font-weight: 700;
	line-height: 1.2;
}
.checkout-column.column-product .product-select {
	position: relative;
	padding: 15px 0 15px 120px;
	display: none;
}
.checkout-column.column-product .product-select label {
	position: absolute;
	top: 17px;
	left: 0;
	font-size: .85em;
}
.checkout-column.column-product .quote p {
	font-size: .85em;
}
.checkout-column.column-payment {
	width: 55%;
	background: #fff;
}
.checkout-column.column-payment .row {
	margin-right: -5px;
	margin-left: -5px;
}
.checkout-column.column-payment .row > [class^="col-"] {
	padding-right: 5px;
	padding-left: 5px;
}
.checkout-column.column-payment input {
	outline: none;
}
.checkout-column.column-payment .nav.nav-tabs {
	margin: 0;
}
.checkout-column.column-payment .mm-checkoutInfoBlock {
	padding: 0;
	border: none;
	border-radius: 0;
}
.checkout-column.column-payment .mm-checkoutInfoBlock h3 {
	font-size: 1em;
	margin: 0 0 10px;
}
.checkout-column.column-payment .mm-checkoutInfoBlock .mm-ccLogos img {
	width: 166px;
	margin: 0 0 10px;
}
.checkout-column.column-payment .mm-checkoutInfoBlock .billing-details {
	font-size: 1em;
	text-transform: none;
}
.checkout-column.column-payment .mm-paymentbuttons {
	margin: 0 0 20px;
}
.checkout-column.column-payment .mm-paymentbuttons .mm-button {
	display: block;
	width: 100% !important;
	text-align: center;
}
.checkout-column.column-payment .checkout-paypal-button > a {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	padding: 15px;
	margin: 15px 0 0;
	background: #009cde !important;
	color: #fff;
	font-size: 1em;
	font-weight: 700;
	text-align: center;
	border-radius: 100px;
}
.checkout-column.column-payment .checkout-paypal-button > a:hover {
	background: #0070ba !important;
	color: #fff;
	text-decoration: none;
}
.checkout-column.column-payment .checkout-disclaimer {
	padding: 15px;
	margin: 0 0 15px;
	border: 1px solid #ccc;
}
.checkout-column.column-payment .checkout-disclaimer .disclaimer-link {
	font-size: .9em;
	font-weight: 700;
	margin: 0 0 10px;
}
.checkout-column.column-payment .checkout-disclaimer label {
	display: block;
}
.checkout-column.column-payment .checkout-disclaimer .mm-remember-me {
	margin: 10px 0 0 !important;
}
.checkout-column.column-payment .security-image {
	display: inline-block;
	margin: 0 10px 10px 0;
}
/* new Stripe elements fields */
.checkout-column.column-payment .mm-stripe-elements-container {
	height: auto;
	padding: 13px;
	background: none;
	border: 2px solid #ddd;
	border-radius: 3px;
	box-shadow: none;
}
.checkout-column.column-payment #mm_field_cc_number_div,
.checkout-column.column-payment #mm_field_cc_cvv_div,
.checkout-column.column-payment #mm_field_cc_exp_div {
	width: 100%;
}

.g-recaptcha {
	margin: 0 0 20px;
}

.checkout-container.container-columns p.checkout-security {
	position: relative;
	font-size: 1em;
	font-weight: 700;
	padding-left: 22px;
	margin: 0 0 10px;
}
.checkout-container.container-columns p.checkout-security i {
	position: absolute;
	top: 2px;
	left: 0;
	font-size: 1.4em;
}
.checkout-container.container-columns p.checkout-terms {
	font-size: .75em;
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	width: 100%;
	padding: 220px 0 100px;
	background: #1985e3;
	background: -moz-linear-gradient(-45deg, #1985e3 1%, #0862b1 100%);
	background: -webkit-linear-gradient(-45deg, #1985e3 1%,#0862b1 100%);
	background: linear-gradient(135deg, #1985e3 1%,#0862b1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1985e3', endColorstr='#0862b1',GradientType=1 );
}
.hero.hero-homepage {
	padding: 0 0 0;
}
.hero.hero-homepage .arrow-bg-blue {
	position: absolute;
	bottom: -50px;
	width: 100%;
	height: 50px;
	background: url(images/section-bg-arrow-blue-down.png) bottom center no-repeat;
	z-index: 5;
}
.hero.hero-homepage .hero-container {
	position: relative;
	min-height: 360px;
}
.hero.hero-homepage .headline {
	margin: 80px 0 30px;
}
.hero .hero-content {
	width: 50%;
	margin: 0 0 70px;
}
.hero .hero-screenshots {
	position: absolute;
	top: 40px;
	right: 30px;
	width: 44%;
	min-height: 435px;
	padding: 2% 2% 12%;
	background: url(images/thunderbolt-display.png) top center no-repeat;
	background-size: 100%;
	z-index: 100;
}
.hero .hero-screenshots .screenshot {
	margin: 0;
	border-bottom: none;
}
.hero .hero-emph {
	display: block;
	font-weight: 700;
}
.hero .hero-typed-text {
	color: #aef28f;
}
.hero .hero-emph .emph-membership {
	display: block;
	font-size: 1.4em;
	letter-spacing: -2px;
	line-height: 1;
	margin: 0 0 10px;
}
.hero .hero-mobile-image {
	display: none; /* only show for mobile */
}

/* ---------- Page header ---------- */
.page-header {
	position: relative;
	padding: 50px 0 50px;
	margin: 0;
	border: none;
	background: #1985e3;
	background: -moz-linear-gradient(-45deg, #1985e3 1%, #0862b1 100%);
	background: -webkit-linear-gradient(-45deg, #1985e3 1%,#0862b1 100%);
	background: linear-gradient(135deg, #1985e3 1%,#0862b1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1985e3', endColorstr='#0862b1',GradientType=1 );
}
.page-header .header-label {
	display: block;
	font-weight: 700;
	margin: 0 0 15px;
	color: #fff;
}
.page-header .header-label.label-title {
	letter-spacing: 5px;
	text-transform: uppercase;
}
.page-header .header-label > i {
	margin-right: 5px;
}
.page-header .header-label a {
	color: #fff;
}
.page-header .header-label a:hover {
	text-decoration: none;
	color: rgba(255, 255, 255, .5);
}
.page-header h1 {
	padding: 0;
	margin: 0 0 20px;
	color: #fff;
	border: none;
}
.page-header h1:last-child {
	margin: 0;
}
.page-header h1 > i {
	position: static;
	top: inherit;
	line-height: 1;
	margin: 0 5px 0 0;
	vertical-align: top;
}
.page-header .headline {
	margin: 0 10%;
}
.page-header .breadcrumb {
	margin: 0;
	color: rgba(255, 255, 255, .5);
}
.page-header .breadcrumb span {
	padding: 0 5px;
}
.page-header .breadcrumb span:first-child {
	padding-left: 0;
}
.page-header .breadcrumb a {
	color: #fff;
}
.page-header .breadcrumb a:hover {
	text-decoration: underline;
}

.page-header .header-nav {
	padding: 20px 0 0;
	margin: 20px 0 0;
	border-top: 1px solid rgba(255, 255, 255, .5);
}
.page-header .header-nav ul {
	list-style: none;
	font-weight: 700;
	text-align: center;
	margin: 0;
}
.page-header .header-nav ul li {
	display: inline-block;
}
.page-header .header-nav ul li:first-child {
	border-left: none;
}
.page-header .header-nav ul li a {
	display: block;
	padding: 10px 20px;
	color: #fff;
	border-radius: 100px;
}
.page-header .header-nav ul li a:hover {
	background: #fff;
	color: #1985e3;
	text-decoration: none;
}
.page-header .search-form {
	margin: 30px 0 0;
	background: rgba(0, 0, 0, .25);
}
.page-header .search-form .search-input {
	color: #fff;
}
.page-header .search-form .search-input::placeholder {
  color: rgba(255, 255, 255, .5);
}
.page-header .search-form .search-submit {
	color: rgba(255, 255, 255, .5);
}
.page-header .search-form .search-submit:hover {
	color: #fff;
}

/* hero header */
.page-header.header-hero {
	padding: 80px 0 80px;
}

/* white headers */
.page-header.header-white {
	background: #fff;
}
.page-header.header-white h1 {
	color: #213240;
}

/* slim headers */
.page-header.header-slim {
	padding: 50px 0 20px;
}

/* utility headers */
.page-header.header-with-utility .container {
	position: relative;
	padding-right: 200px;
}
.page-header.header-with-utility .header-utility {
	position: absolute;
	bottom: 15px;
	right: 30px;
}
.page-header.header-with-utility .header-utility .utility-link {
	display: block;
	padding: 10px 20px;
	background: rgba(255, 255, 255, .15);
	color: #fff;
	border-radius: 100px;
}

/* post headers */
.page-header.header-post {
	min-height: 400px;
}

/* podcast header */
.page-header.header-podcast {
	padding: 50px 0 0px;
	background: #6abf44;
	background: url(images/section-bg-podcast.jpg) center center #213240;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.page-header.header-podcast h1 {
	margin: 0;
}
.page-header.header-podcast .headline {
	margin: 0 0 20px;
}
.page-header.header-podcast .header-content {
	position: relative;
	z-index: 10;
}
.page-header.header-podcast .header-graphic {
	position: absolute;
	bottom: 0;
	width: 100%;
}

/* ---------- Page section ---------- */
.page-section {
	position: relative;
	padding: 50px 0;
}
.page-section .section-label {
	display: block;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 0 0 10px.
}
.page-section .section-nav {
	padding: 20px 0 0;
	margin: 20px 0 0;
	border-top: 1px solid rgba(255, 255, 255, .15);
}
.page-section .section-nav ul {
	list-style: none;
	font-weight: 700;
	text-align: center;
	margin: 0;
}
.page-section .section-nav ul li {
	display: inline-block;
}
.page-section .section-nav ul li:first-child {
	border-left: none;
}
.page-section .section-nav ul li a {
	display: block;
	padding: 10px 20px;
	color: #fff;
	border-radius: 100px;
}
.page-section .section-nav ul li a:hover {
	background: #fff;
	color: #1985e3;
	text-decoration: none;
}
.page-section .section-nav ul li.active a,
.page-section .section-nav ul li.current_page_item a {
	background: rgba(255, 255, 255, .1);
}
.page-section .section-content-area {
	margin: 0 0 40px;
}


.page-section.section-slim {
	padding: 30px 0;
}
.page-section.section-no-pad {
	padding: 0;
}
.page-section.section-no-top-pad {
	padding-top: 0;
}
.page-section.section-no-bottom-pad {
	padding-bottom: 0;
}
.page-section.section-intro {
	padding-top: 75px;
}

/* section colors */
.page-section.section-white {
	background: #fff;
}
.page-section.section-light {
	background: #f5f8fb;
}
.page-section.section-dark {
	background: #213240;
}

.page-section.section-confirmation {
	padding: 100px 0 30px;
}

/* sections with background images */
.page-section.section-auth {
	padding: 150px 0 50px;
	background: #1985e3;
    background: -moz-linear-gradient(-45deg, #1985e3 1%, #0862b1 100%);
    background: -webkit-linear-gradient(-45deg, #1985e3 1%,#0862b1 100%);
    background: linear-gradient(135deg, #1985e3 1%,#0862b1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1985e3', endColorstr='#0862b1',GradientType=1 );
	/*
	background: url(images/section-bg-placeholder.jpg) #151515;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    */
}
.page-section.section-cta {
	padding: 100px 0;
	background: #1985e3;
	background: -moz-linear-gradient(-45deg, #1985e3 1%, #0862b1 100%);
	background: -webkit-linear-gradient(-45deg, #1985e3 1%,#0862b1 100%);
	background: linear-gradient(135deg, #1985e3 1%,#0862b1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1985e3', endColorstr='#0862b1',GradientType=1 );
}
.page-section.section-cta .btn {
	margin-left: 5px;
	margin-right: 5px;
}
.page-section.section-desk {
	background: url(images/section-bg-desk.jpg) #213240;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.page-section.section-developers {
	background: url(images/section-bg-developers.jpg) #213240;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
}
.page-section.section-customers {
	padding: 100px 0 70px;
	background: url(images/section-bg-customers-slanted.jpg) center center #213240;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
}

/* ---------- Section Content ---------- */
.section-row {
    margin: 50px 0 100px;
}
.section-content {
    padding: 30px;
}
.section-image {
	position: relative;
	display: block;
	z-index: 5;
}
.section-image.image-screenshot {
	background: #fff;
}
.section-image.image-screenshot .screenshot-image {
	margin: 0 auto;
}
.section-image.image-screenshot.image-padded-50 .screenshot-image {
	padding: 50px;
}
.section-image.image-screenshot.image-padded-100 .screenshot-image {
	padding: 100px;
}
.section-image.image-screenshot.image-bordered .screenshot-image {
	border: 2px solid #ddd;
}
/* flow sections */
.section-flow {
	position: relative;
	padding: 150px 0;
	margin: 0;
}
.section-flow:after {
	content: "";
	position: absolute;
	bottom: 0;
	height: 100%;
	width: 2px;
	background: #e5e5e5;
}
.section-flow.flow-right:after {
	right: 20%;
}
.section-flow.flow-left:after {
	left: 20%;
}
.section-flow .section-content {
	position: relative;
	margin: 20px 0;
	background: #fff;
	z-index: 5;
}
.section-flow-connector {
	position: relative;
	display: block;
	width: 60%;
	margin: 0 auto;
	height: 2px;
	background: #e5e5e5;
}
.section-flow-connector .connector-icon {
	position: absolute;
	top: -30px;
	left: 50%;
	width: 60px;
	margin-left: -30px;
	background: #ddd;
	color: #fff;
	padding: 9px 0;
	font-size: 2em;
	line-height: 1;
	text-align: center;
	border: 5px solid #fff;
	border-radius: 100px;
	z-index: 5;
}
.connector-sections .section-flow:first-child {
	padding-top: 0;
}
.connector-sections .section-flow:first-child .section-content {
	margin: 0;
}
.section-flow.flow-last {
	padding-bottom: 0;
}
.connector-sections .section-flow:last-child {
	padding-bottom: 0;
}
.connector-sections .section-flow-connector:last-child {
	display: none; /* hide last connector */
}

/* -------------------- Member UX -------------------- */
.wrap-app {
	display: table;
	width: 100%;
	min-height: 600px;
	margin: 90px 0 30px;
	border: 1px solid #ddd;
}
.site-wrap.wrap-public .wrap-app {
	margin: 105px 0 30px;
}

.app-nav {
	display: table-cell;
	width: 25%;
	background: #213240;
	vertical-align: top;
}
.app-nav .nav-mobile-toggle {
	display: none;
}
.app-nav .nav-menu {
	padding: 30px;
}
.app-nav .nav-menu ul {
	list-style: none;
	font-size: .85em;
	font-weight: 400;
	margin: 0;
}
.app-nav .nav-menu ul li {
	margin: 0;
	border-top: 1px solid rgba(255, 255, 255, .1);
}
.app-nav .nav-menu ul li a {
	position: relative;
	display: block;
	padding: 15px 0 15px 42px;
	color: rgba(255, 255, 255, .7);
}
.app-nav .nav-menu ul li a:hover {
	background: #1985e3;
	color: #fff; 
	text-decoration: none;
}
.app-nav .nav-menu ul li a i {
	position: absolute;
	top: 18px;
	left: 8px;
	width: 25px;
	text-align: center;
	opacity: .5;
}
.app-body {
	display: table-cell;
	width: 75%;
	background: #f9f9f9;
	vertical-align: top;
}
.app-header {
	padding: 30px;
	background: #748ca2;
	border-bottom: 1px solid #ddd;
}
.app-header h1 {
	font-size: 2em;
	margin: 0;
	color: #fff;
}
.app-header p {
	color: rgba(255, 255, 255, .7);
}
.app-header p:last-child {
	margin: 15px 0 0;
}
.app-content {
	padding: 30px;
}
.app-content .breadcrumb {
	padding: 0 0 10px;
	font-size: .8em;
	border-bottom: 1px solid #ddd;
}
.app-label {
	display: block;
	padding: 0 0 10px;
	margin: 0 0 20px;
	border-bottom: 1px solid;
}

/* active app page highlighting */
.app-dashboard .menu-dashboard a,
.app-license .menu-license a,
.app-account .menu-account a,
.app-download .menu-download a,
.app-guides .menu-guides a,
.app-affiliate .menu-affiliate a,
.app-upgrade .menu-upgrade a {
	font-weight: 700;
	color: #fff !important;
}
.app-dashboard .menu-dashboard a i,
.app-license .menu-license a i,
.app-account .menu-account a i,
.app-download .menu-download a i,
.app-guides .menu-guides a i,
.app-affiliate .menu-affiliate a i,
.app-upgrade .menu-upgrade a i {
	opacity: 1.0 !important;
}

/* 04: Components
========================================================================================================================= */
/* ---------- Accordions ---------- */
.accordion {
    width: 100%;
    border-top: 1px solid #ddd;
}
.accordion-toggle {
    position: relative;
    display: block;
    padding: 20px 20px 20px 70px;
    font-weight: 400;
    text-decoration: none !important;
    color: #333;
}
.accordion-toggle:hover {
    text-decoration: none;
}
.accordion-toggle .toggle-icon {
    position: absolute;
    top: 18px;
    left: 15px;
    font-size: 1.5em;
    line-height: 1;
    color: #1985e3;
}
.accordion-toggle.open {
    color: #1985e3;
}
.accordion-content {
    display: none;
    padding: 0 20px 20px 70px;
}
.accordion-content p {
    font-size: .9em;
}
.accordion-content p:last-child {
    margin: 0;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
	padding: 0;
	background: none;
	font-size: .85em;
}

/* ---------- Card ---------- */
.card {
	margin: 0 0 20px;
	background: #fff;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .15); 
}
.card .card-image {
	position: relative;
	max-height: 200px;
	background: #213240;
	overflow: hidden;
}
.card .card-image > a {
	display: block;
}
.card .card-image img {
	display: block;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.card .card-image > a:hover img {
	opacity: .5;
}
.card .card-image .image-label {
	position: absolute;
	bottom: 20px;
	left: 0;
	padding: 7px 15px;
	font-weight: 900;
	background: #fc0;
	color: #151515;
	z-index: 10;
}
.card .card-image .image-content {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 15px;
	background: linear-gradient(transparent, rgba(0, 0, 0, .8));
}
.card .card-content {
	min-height: 200px;
	padding: 30px;
}
.card .card-content .card-title {
	margin: 0 0 10px;
}
.card .card-content .card-title a {
	color: #213240;
}
.card .card-content .card-title a:hover {
	color: #1985e3;
}
.card .card-content p {
	font-size: .85em;
}
/* product cards */
.card.card-product {
	position: relative;
	padding: 25px;
	margin: 0 0 30px;
}
.card.card-product .product-title {
	font-size: 1.5em;
	font-weight: 700;
}
.card.card-product .price {
	font-size: 1.7em;
	font-weight: 700;
	letter-spacing: -1px;
	color: #b12704;
	margin: 0 0 15px 0;
}
.card.card-product .reg_price_line {
  color:#b12704;
  text-decoration:line-through;
  text-decoration-thickness: 1.5px;
  margin-bottom: 7px;
}
.card.card-product .reg_price {
  color:#777;
  font-weight:500;
}
.card.card-product .savings {
	color:#777;
  font-weight:500;
  margin-bottom: 30px;
}
.card.card-product .savings span {
  background-color: yellow;
	padding: 5px
}
.card.card-product p {
	font-size: 1em;
}
.card.card-product.product-recommended {
	margin-top: -15px;
	z-index: 10;
}
.card.card-product .card-content {
	padding: 0;
}
.card.card-product.card-aqua {
	border-top: 5px solid #27b3a7;
}
.card.card-product.card-blue {
	border-top: 5px solid #1985e3;
}
.card.card-product.card-green {
	border-top: 5px solid #6abf44;
}
.card.card-product.card-purple {
	border-top: 5px solid #5e40b3;
}
.card.card-product.card-black {
	border-top: 5px solid #000;
}

.card-product-icon {
	display: block;
	height: 120px;
	margin-left: 20px;
}
.card-product-icon img {
	max-height: 120px;
}

/* ---------- Control Toggle ---------- */
.control-toggle {
	position: relative;
	display: block;
	width: 100px;
	height: 40px;
	margin: 0 auto;
	background: #748ca2;
	border-radius: 100px;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.control-toggle .toggle-text {
	position: absolute;
	top: 10px;
	font-size: 1em;
	color: #999;
	cursor: pointer;
	text-decoration: none;
}
.control-toggle .toggle-text:hover {
	color: #1985e3;
}
.control-toggle .toggle-text .text-sub {
	display: block;
	font-size: .7em;
	text-align: center;
	margin: 15px 0 0;
}
.control-toggle .toggle-text.text-left {
	left: -80px;
}
.control-toggle .toggle-text.text-right {
	right: -80px;
}
.control-toggle .toggle-icon {
	display: block;
	width: 100%;
	height: 40px;
	cursor: pointer;
}
.control-toggle .toggle-icon:after {
	position: absolute;
	top: 5px;
	left: 5px;
	content: "";
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 100px;
	z-index: 100;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
/* active toggling */
.control-toggle.active {
	background: #213240;
}
.control-toggle .toggle-icon.icon-default {
	display: block;
}
.control-toggle .toggle-icon.icon-active {
	display: none;
}
.control-toggle.active .toggle-icon.icon-default {
	display: none;
}
.control-toggle.active .toggle-icon.icon-active {
	display: block;
}
.control-toggle.active .toggle-icon:after {
	left: inherit;
	right: 5px;
}

/* ---------- Feature ---------- */
.feature {
	position: relative;
	min-height: 60px;
	padding-left: 80px;
	margin: 0 0 30px;
}
.feature .feature-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 65px;
	font-size: 3em;
	line-height: 1;
	text-align: center;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.feature .feature-title {
	display: block;
	font-weight: 400;
	line-height: 1.4;
	margin: 0 0 10px;
}
/* item features */
.feature.feature-item {
	display: block;
	min-height: 80px;
	padding: 17px 20px 0 75px;
	margin: 0;
}
.feature.feature-item .feature-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	padding: 15px 0;
	font-size: 3em;
	color: #748ca2;
}
.feature.feature-item .feature-title {
	font-size: 1em;
	font-weight: 700;
}
/* link features */
.feature.feature-link {
	display: block;
	padding: 30px;
	border-radius: 5px;
}
.feature.feature-link .feature-icon {
	position: static;
	display: block;
	width: 100px;
	margin: 0 auto 20px;
}
.feature.feature-link .feature-title {
	text-align: center;
}
.feature.feature-link:hover {
	background: #eee;
	text-decoration: none;
}
.feature.feature-link:hover .feature-icon {
	transform: scale(1.10);
}
/* tile features */
.feature.feature-tile {
	display: block;
	padding: 30px 30px 30px 100px;
	margin: 0;
	background: #fff;
	border: 1px solid #ddd;
	border-left: 5px solid #ccc;
}
.feature.feature-tile .feature-icon {
	top: 30px;
	left: 20px;
	color: #ccc;
}
.feature.feature-tile .feature-title {
	font-size: 1.2em;
}
.feature.feature-tile .feature-desc {
	color: #858585;
}
.feature.feature-tile:hover {
	border-color: #1985e3;
	text-decoration: none;
}
.feature.feature-tile:hover .feature-icon {
	color: #1985e3;
	transform: scale(1.10);
}

/* stacked features */
.feature.feature-stacked {
	padding: 0;
}
.feature.feature-stacked .feature-icon {
	position: static;
	display: block;
	width: 100px;
	margin: 0 0 20px;
}
.feature.feature-stacked.feature-small .feature-icon {
	width: 50px;
	margin: 0 0 10px;
}

/* centered features */
.feature.feature-centered {
	padding: 0;
}
.feature.feature-centered .feature-icon {
	position: static;
	display: block;
	width: 100px;
	margin: 0 auto 20px;
}
.feature.feature-centered .feature-title,
.feature.feature-centered .feature-desc {
	text-align: center;
}
/* small features */
.feature.feature-small .feature-icon {
	width: 50px;
}

/* ---------- Image Links ---------- */
.image-link {
	display: block;
}
.image-link .link-thumb {
	position: relative;
	display: block;
	overflow: hidden;
	background: #213240;
}
.image-link .link-thumb img {
	display: block;
	width: 100%;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.image-link .link-thumb:hover img {
	opacity: .5;
	transform: scale(1.10);
}
.image-link .link-title {
	display: block;
	font-size: 1.2em;
	text-align: center;
	margin: 15px 0 0;
}
.image-link:hover {
	text-decoration: none;
	color: #213240;
}

/* ---------- Items ---------- */
.item {
	position: relative;
	padding: 20px 0;
	border-top: 1px solid #ddd;
}
/* items with icons */
.item.item-with-icon {
	min-height: 100px;
	padding: 20px 0 20px 70px;
}
.item.item-with-icon .item-icon {
	position: absolute;
	top: 20px;
	left: 0;
	width: 60px;
	text-align: center;
}
.item.item-with-icon .item-icon i {
	font-size: 3em;
	line-height: 1;
}
/* items with images */
.item.item-with-image {
	min-height: 160px;
	padding: 20px 0 20px 140px;
}
.item.item-with-image .item-image {
	position: absolute;
	top: 20px;
	left: 0;
	width: 120px;
}
.item.item-with-image .item-image img {
	display: block;
	width: 100%;
	border-radius: 300px;
}
.item.item-with-image .item-content {
}

.item .item-title {
	font-weight: 700;
	margin: 0 0 10px;
}
.item .item-title a {
	color: #213240;
}
.item .item-title a:hover {
	color: #1985e3;
}
.item p {
	font-size: .9em;
	margin: 0 0 10px;
}
.item p:last-child {
	margin: 0;
}
.item li {
	font-size: .9em;
}
/* items with numbers */
.item.item-with-number {
	padding: 20px 0 20px 65px;
}
.item.item-with-number .item-number {
	position: absolute;
	top: 20px;
	left: 0;
	width: 50px;
	padding: 17px 0;
	font-size: 1.2em;
	font-weight: 700;
	text-align: center;
	background: #333;
	color: #fff;
	border-radius: 100px;
}
.item.item-with-number .item-content p {
	font-size: .85em;
}
/* large items */
.item.item-large.item-with-image {
	min-height: 270px;
	padding: 20px 0 20px 320px;
}
.item.item-large.item-with-image .item-image {
	width: 300px;
}
/* small items */
.item.item-small {
	padding: 15px 0;
}
.item.item-small.item-with-image {
	min-height: 120px;
	padding: 20px 0 20px 100px;
}
.item.item-small .item-image {
	width: 80px;
}
.item.item-small .item-title {
	font-size: 1em;
	margin: 0;
}
.item.item-small p {
	font-size: .85em;
}

/* item feed */
.item-feed .item:first-child,
.item-feed .item.item-with-image:first-child {
	padding-top: 0;
	border-top: none;
}
.item-feed .item.item-with-image:first-child .item-image {
	top: 0;
}

/* ---------- Meta ---------- */
.meta {
	font-size: .85em;
}
.meta .meta-label {
	display: inline-block;
	font-weight: 700;
	margin: 0 10px 10px 0;
	color: #999;
}
.meta .meta-label.label-cat,
.meta .meta-label.label-cat a {
	color: #6abf44;
}
.meta .meta-label.label-cat a:hover {
	color: #213240;
}

.meta.meta-large {
	font-size: 1.2em;
}

/* ---------- Metric ---------- */
.metric {
	position: relative;
	display: inline-block;
	padding: 0 0 0 90px;
	margin: 0 0 20px;
	vertical-align: top;
}
.metric .metric-icon {
	position: absolute;
	top: 0;
	left: 15px;
	width: 60px;
	font-size: 3.5em;
	line-height: 1;
	text-align: center;
	color: #aaa;
}
.metric .metric-label {
	display: block;
	font-weight: 900;
	margin: 0 0 10px;
}
.metric .metric-value {
	display: block;
	font-size: 2.5em;
	font-weight: 200;
	line-height: 1.2;
	margin: 0;
}
.metric .metric-value.value-small {
	font-size: 1.2em;
}
/* small metrics */
.metric.metric-small {
	padding-left: 75px;
}
.metric.metric-small .metric-icon {
	width: 50px;
	font-size: 2.5em;
}
.metric.metric-small .metric-value {
	font-size: 1.5em;
}
.metric.metric-small .metric-label {
	font-size: .9em;
}
/* metrics without icons */
.metric.metric-no-icon {
	padding-left: 20px;
	border-left: 3px solid #ccc;
}
/* stacked metrics */
.metric.metric-stacked {
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
	margin: 0;
	border-top: 1px solid #ccc;
}
.metric.metric-stacked .metric-icon {
	top: 25px;
}

/* ---------- Pagination ---------- */
.pagination {
	display: block;
	padding: 20px 0;
	border-top: 2px solid #ddd;
	border-radius: 0;
}

/* ---------- Podcasts ---------- */
.podcast-transcript {
	width: 100%;
	height: 500px;
	padding: 15px;
	margin: 0 0 20px;
	overflow: scroll;
	border: solid 2px #ccc;
}
.podcast-transcript strong {
	color: #213240;
}

/* ---------- Post ---------- */
.post {
	position: relative;
	box-shadow: 1px 2px 2px rgba(0, 0, 0, .1);
}

/* ----- post header ----- */
.post-header {
	position: relative;
	margin: -300px 0 30px;
	z-index: 5;
}
.post-header > img {
	display: block;
	width: 100%;
	margin: 0 0 20px;
}
.post-header .header-title {
	font-size: 2em;
	font-weight: 700;
	margin: 0;
}
.post-header .user {
	margin: 20px 0 0;
}
.post-header.header-static {
	margin: 0 0 20px;
}
.post-header.header-static h1 {
	text-align: left;
}
/* ----- post content ----- */
.post-content {
	position: relative;
}
.post-content .share-links {
	margin: 0 auto 30px;
}
.post-content .share-links.links-sticky {
	display: none;
    position: fixed;
    top: 80px;
    width: 60px;
    margin-left: -80px;
    z-index: 100;
}
.post-content .share-links.links-sticky li {
    margin: 0 0 10px;
}
.single-podcast .share-links.links-sticky {
	top: 120px;
}

/* ----- post body ----- */
.post-body {
	padding: 30px;
	background: #fff;
}

/* ----- post nav ----- */
.post-nav {
	padding: 20px 0 0;
	margin: 20px 0;
	border-top: 1px solid #353d3e;
}
.post-nav .nav-links {
	display: table;
	width: 100%;
}
.post-nav .nav-previous,
.post-nav .nav-next {
	display: table-cell;
	width: 50%;
}
.post-nav .nav-previous {
	border-right: 1px solid #ddd;
}
.post-nav .nav-next {
	text-align: right;
	border-left: 1px solid #ddd;
}
.post-nav .nav-previous:before,
.post-nav .nav-next:before {
	display: block;
	font-size: .85em;
	font-weight: 700;
	color: #999;
	margin: 0 0 5px;
}
.post-nav .nav-previous:before {
	content: "Previous";
}
.post-nav .nav-next:before {
	content: "Next";
}
.post-nav.nav-segments .nav-previous:before {
	content: "Previous Segment";
}
.post-nav.nav-segments .nav-next:before {
	content: "Next Segment";
}
.post-nav a {
	display: block;
	position: relative;
	font-size: 1.1em;
	font-weight: 700;
	line-height: 1.4;
}
.post-nav a:hover {
	color: #000;
	text-decoration: none;
}
.post-nav .nav-previous a {
	padding: 10px 10px 10px 40px;
}
.post-nav .nav-next a {
	padding: 10px 42px 10px 10px;
	text-align: right;
}
.post-nav .nav-previous a:before,
.post-nav .nav-next a:before {
	position: absolute;
	top: 7px;
	font-family: FontAwesome;
	font-size: 1.8em;
	line-height: 1;
}
.post-nav .nav-previous a:before {
	left: 0;
	content: "\f137";
}
.post-nav .nav-next a:before {
	right: 0;
	content: "\f138";
}
.post-nav .no-link {
	display: inline-block;
	padding: 10px;
	background: #fff;
	font-size: .8em;
	font-weight: 700;
	color: #999;
}

/* ----------- Search ----------- */
.quickstart-form {
	position: relative;
	background: #eee;
	padding-right: 50px;
	margin: 0 0 15px;
}
.quickstart-form input[type="text"],
.quickstart-form input[type="email"] {
	background: none;
	border: none;
	outline: none;
}
.quickstart-form input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	padding: 15px 30px;
	font-size: 1em;
	border: none;
}

/* ---------- Quotes ---------- */
.quote {
	position: relative;
	padding: 30px;
	margin: 0 0 30px;
}
.quote blockquote {
	position: relative;
	padding: 0 0 30px;
	margin: 0 0 20px;
	font-size: 1.5em;
	background: none;
	border: none;
}
/*
.quote blockquote:before {
	position: absolute;
	top: -20px;
	left: -40px;
	content: "\f10d";
	font-family: FontAwesome;
	font-size: 3.5em;
	line-height: 1;
	color: #1985e3;
	opacity: .1;
}
*/
.quote blockquote:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100px;
	height: 4px;
	background: rgba(0, 0, 0, .15);
}
.quote.quote-light {
	color: #fff;
}
.quote.quote-light blockquote:before {
	display: none;
}
.quote.quote-light blockquote:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100px;
	height: 4px;
	background: rgba(255, 255, 255, .15);
}
.quote.quote-light blockquote p {
	color: #fff;
}
.quote .quote-name {
	display: inline-block;
	margin: 0 0 10px;
	text-transform: uppercase;
}
/* small quotes */
.quote.quote-small blockquote {
	font-size: 1em;
}
/* medium quotes */
.quote.quote-medium blockquote {
	font-size: 1.2em;
	font-weight: 200;
	color: #fff;
}
/* card quotes */
.quote.quote-card {
	background: #fff;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .15); 
}

/* ---------- Rating ----------- */
.rating {
	display: block;
	font-size: 1.2em;
	letter-spacing: 1px;
	color: #1985e3;
	margin: 0 0 20px;
}

/* ----------- Screenshot ----------- */
.screenshot {
	position: relative;
	margin: 0 0 30px;
	border: 2px solid #ddd;
}
.screenshot .screenshot-bar {
    display: block;
    padding: 7px 10px;
    background: #e5e5e5;
}
.screenshot .screenshot-bar span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px 0 0;
    background: #999;
    border-radius: 100px;
}
.screenshot .screenshot-bar .bar-red {
    background: #e85851;
}
.screenshot .screenshot-bar .bar-yellow {
    background: #eebe4a;
} 
.screenshot .screenshot-bar .bar-green {
    background: #33b351;
}
.screenshot .screenshot-image {
	width: 100%;
	margin: 0 auto;
}
.screenshot .screenshot-image img {
	width: 100%;
}
/* trans screenshots */
.screenshot.screenshot-trans {
	border-color: rgba(255, 255, 255, .5);
	border-width: 4px;
}
.screenshot.screenshot-trans .screenshot-bar {
	background: rgba(0, 0, 0, .25);
}

/* ----------- Search ----------- */
.search-form {
	position: relative;
	background: #eee;
	padding-right: 50px;
	margin: 0 0 15px;
	border-radius: 100px;
}
.search-form .search-input {
	padding: 15px 20px;
	background: none;
	border: none;
	outline: none;
}
.search-form .search-submit {
	position: absolute;
	top: 0;
	right: 5px;
	padding: 15px;
	background: none;
	color: #999;
	font-size: 1.2em;
	border: none;
}
.search-form .search-submit:hover {
	background: none;
	color: #333;
}

/* ---------- Social share links ---------- */
.share-links {
	list-style: none;
	font-size: 1em;
	margin: 0;
}
.share-links li {
	display: inline-block;
	margin: 0;
}
.share-links li a {
	display: inline-block;
	vertical-align: top;
	padding: 10px 0;
	width: 42px;
	background: #1985e3;
	color: #fff;
	text-align: center;
	border-radius: 100px;
}
.share-links li a:hover {
	background: #036;
}
.share-links li.facebook a {
	background: #4c66a4;
}
.share-links li.facebook a:hover {
	background: #2b4585;
}
.share-links li.twitter a {
	background: #55acee;
}
.share-links li.twitter a:hover {
	background: #277ec1;
}
.share-links li.google a {
	background: #dd4b39;
}
.share-links li.google a:hover {
	background: #ad2312;
}
.share-links li.linkedin a {
    background: #287bbc;
}
.share-links li.linkedin a:hover {
    background: #1b5480;
}

/* ---------- Social nav ---------- */
.social-nav {
	list-style: none;
	margin: 0;
}
.social-nav li {
	display: inline-block;
	margin: 0 5px 5px 0;
}
.social-nav li a {
	display: inline-block;
	line-height: 1;
	text-align: center;
	padding: 12px 0;
	width: 44px;
	color: #1985e3;
	border: 2px solid;
	border-radius: 100px;
}
.social-nav li a:hover {
	background: #1985e3;
	color: #fff;
	border-color: #1985e3;
}
.social-nav.nav-large {
	font-size: 1.5em;
}
.social-nav.nav-large li a {
	width: 60px;
	height: 60px;
	padding: 18px 0;
}
.social-nav.nav-block li {
	display: block;
	margin: 0 0 10px;
}
.social-nav.nav-block li a {
	display: block;
	width: 100%;
	height: auto;
	padding: 15px 20px;
	text-align: left;
}
.social-nav.nav-block li a i {
	margin-right: 10px;
}
.social-nav.nav-block li a .block-text {
	font-size: .85em;
}

/* ---------- Status Steps ---------- */
.status-steps {
    position: relative;
    display: table;
    width: 100%;
    border: 2px solid rgba(255, 255, 255, .25);
}
.status-steps .step {
	display: table-cell;
	padding: 10px;
	border-left: 2px solid rgba(255, 255, 255, .25);
}
.status-steps .step:first-child {
	border-left: none;
}
.status-steps .step label {
    position: relative;
    display: inline-block;
    padding: 10px 15px 10px 45px;
    margin: 0;
    color: rgba(255, 255, 255, .6);
}
.status-steps .step.active label {
    color: #fff;
}
.status-steps .step label .step-number {
    position: absolute;
    top: 0;
    left: 0;
    padding: 7px 0;
    width: 34px;
    color: rgba(255, 255, 255, .5);
    font-size: .85em;
    text-align: center;
    border: 2px solid;
    border-radius: 30px;
}
.status-steps .step.active label .step-number {
    background: #fff;
    color: #151515;
    border-color: #fff;
}
.status-steps.steps-3 .step {
    width: 33.33%;
}

/* ---------- Steps ---------- */
.step {
	position: relative;
	padding-left: 70px;
	margin: 0 0 20px;
}
.step .step-number {
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	padding: 15px 0;
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	background: #748ca2;
	color: #fff;
	border-radius: 100px;
}
.step .step-number.number-active {
	background: #6abf44;
}
.step .step-title {
	line-height: 1.2;
	padding: 10px 0 0;
	margin: 0 0 5px;
}
.step p {
	font-size: .9em;
}

/* ---------- tags ----------- */
.tags {
	font-size: .75em;
}
.tags a,
.tags span, {
	display: inline-block;
	padding: 7px 15px;
	background: #eee; 
	border-radius: 30px;
}
.tags a:hover {
	background: #333;
	color: #fff;
}

/* ---------- tiles ---------- */
.tile {
	position: relative;
	margin: 0 0 30px;
}
.tile a {
	text-decoration: none;
}
.tile .tile-image {
	display: block;
	background: #1a1c1d;
}
.tile .tile-image img {
	display: block;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.tile .tile-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 100px 30px 30px;
	background: linear-gradient(rgba(0, 0, 0, 0) 10%, rgba(39, 43, 51, .75));
	/*background: rgba(39, 43, 51, .7);*/
	color: #fff;
	z-index: 5;
}
.tile .tile-title {
	margin: 0;
	color: #fff;
}
.tile .tile-icon {
	position: absolute;
	right: 25px;
	bottom: 20px;
	color: #fff;
	font-size: 2.5em;
	line-height: 1;
	border-radius: 100px;
}
.tile .tile-label {
	letter-spacing: 5px;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 15px;
}
.tile .tile-description {
	display: block;
	font-weight: 200;
	color: rgba(255, 255, 255, .75);
	margin: 0;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.tile .tile-content .btn {
	width: 100%;
	padding: 8px 0;
	font-size: .9em;
}
.tile .tile-description.js-content {
	height: 0;
	margin: 10px 0 0;
	padding-right: 50px;
	overflow: hidden;
}
.tile:hover img {
	opacity: .3;
}
.tile:hover .tile-content {
	background: none;
}
.tile:hover .tile-description.js-content {
	height: 50px;
	overflow: inherit;
}

/* ---------- Users ---------- */
.user {
	position: relative;
	min-height: 80px;
	padding-left: 100px;
}
.user .user-avatar {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
}
.user .user-avatar img {
	border-radius: 100px;
}
.user .user-avatar img.avatar-edged {
	border-radius: 0;
}
.user .user-label {
	display: block;
	font-size: .8em;
	margin: 0 0 5px;
}
.user .user-label.label-tag {
	display: inline-block;
	padding: 5px 10px;
	background: #1985e3;
	color: #fff;
}
.user .user-label.label-podcast-tag {
	display: inline-block;
	padding: 5px 10px;
	background: #2589bc;
	color: #fff;
}
.user .user-title {
	display: block;
	font-weight: 700;
	margin: 0 0 5px;
}
.user .user-title.title-small {
	font-size: .9em;
}
.user .user-title a {
	color: #690;
}
.user .user-title a:hover {
	color: #333;
}
.user .user-desc {
	display: block;
	font-size: .85em;
	font-weight: 300;
}
.user-rating {
	display: block;
	margin: 0 0 5px;
	color: #09c;
}
.user-signature {
	display: block;
	width: 250px;
}
.user-cta-btn {
	float: right;
}
/* user sizes */
.user.user-micro {
	min-height: 60px;
	padding-left: 55px;
}
.user.user-micro .user-avatar {
	width: 40px;
}
.user.user-micro .user-label {
	margin: 0;
}
.user.user-small {
	padding-left: 80px;
}
.user.user-small .user-avatar {
	width: 60px;
}
.user.user-large {
	min-height: 100px;
	padding-left: 120px;
	margin: 0 0 50px;
}
.user.user-large .user-avatar {
	width: 100px;
}
/* centered users */
.user.user-centered {
	padding: 0;
}
.user.user-centered .user-avatar {
	position: static;
	display: block;
	width: 100px;
	margin: 0 auto 20px;
}
.user.user-centered .user-avatar img {
	margin: 0 auto;
}
.user.user-centered .user-label,
.user.user-centered .user-title {
	text-align: center;
}

.user.user-centered .user-stars {
  height: 20px;
  width: 105px;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* users without avatars */
.user.user-no-avatar {
	padding: 0;
}
/* feature users */
.user.user-feature {
	min-height: 210px;
	padding: 50px 50px 50px 200px;
	margin: 0 0 20px;
	background: #fff;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .15); 
	border: 1px solid #eee;
	border-left: 4px solid #1985e3;
}
.user.user-feature .user-avatar {
	top: 30px;
	left: 30px;
	width: 150px;
}
.user.user-feature h2,
.user.user-feature h3 {
	margin: 0 0 10px;
}
.user.user-feature label {
	font-size: 1.5em;
}

/* ---------- Widget ---------- */
.widget {
	padding: 30px;
	margin: 0 0 30px;
	background: #fff;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .15);
}
.widget .widget-label {
	display: block;
	padding: 0 0 15px;
	margin: 0 0 15px;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-bottom: 1px solid #ccc;
}
.widget .widget-title {
	font-size: 1em;
	font-weight: 700;
	margin: 0 0 10px;
}

.widget ul {
	list-style: none;
	font-size: .9em;
	margin: 0 0 20px;
}
.widget ul li {
	margin: 0;
}
.widget ul li a {
	display: block;
	padding: 7px 0;
}
.widget ul.list-standard {
	list-style: square;
	margin: 0 0 20px 18px;
	font-size: .9em;
}
.widget ul.list-standard li {
	margin: 0 0 10px;
}

/* form widgets */
.widget.widget-form input[type="submit"] {
	display: block;
	width: 100%;
	padding-right: 0;
	padding-left: 0;
}


/* 05: Footer
========================================================================================================================= */
.site-footer {
	background: #eee;
	padding: 30px 0;
}
.site-footer .footer-wrap {
	position: relative;
	padding-left: 150px;
}
.site-footer .footer-wrap .icon-mm {
	position: absolute;
	top: 0;
	left: 0;
}
.site-footer .footer-column {
	padding: 15px 0; 
}
.site-footer .footer-title {
	font-weight: 700;
	margin: 0 0 15px;
}
.footer-nav {
	list-style: none;
	font-size: .85em;
	font-weight: 300;
	line-height: 1.4;
	margin: 0 0 20px;
}
.footer-nav li {
	margin: 0;
}
.footer-nav li a {
	position: relative;
	display: block;
	color: #888;
	padding: 10px 0;
}
.footer-nav li a:hover {
	color: #1985e3;
	text-decoration: none;
}
/* nav with icons */
.footer-nav.nav-with-icons li a {
	padding: 10px 0 10px 30px;
}
.footer-nav.nav-with-icons li i {
	position: absolute;
	top: 7px;
	left: 0;
	width: 20px;
	font-size: 1.4em;
	text-align: center;
	color: #1985e3;
}
.footer-nav.nav-with-icons li img {
	position: absolute;
	top: 9px;
	left: 0;
	width: 20px;
}

.site-footer .social-nav {
	font-size: .85em;
}
.site-footer .social-nav li a {
	padding: 10px 0;
	width: 36px;
}

.site-footer label {
	color: #999;
}
.site-footer input[type="text"],
.site-footer input[type="email"] {
	background: #333;
	border: none;
	box-shadow: none;
	color: #fff;
	width: 100%;
	margin: 0 0 15px;
}
.site-footer input[type="submit"] {
	display: block;
	width: 100%;
	padding: 12px 0;
	background: none;
	color: #fff;
	border: 2px solid #fff;
}
.site-footer input[type="submit"]:hover {
	background: #fff;
	color: #000;
	border-color: #fff;
}

.copyright {
	color: #aaa;
	font-size: .8em;
	margin: 0;
}
.copyright a {
	color: #aaa;
	text-decoration: underline;
}
.copyright a:hover {
	text-decoration: none;
}

/* plans / checkout footer */
.page-template-page-checkout .site-footer .icon-mm,
.page-template-page-checkout .site-footer .footer-column,
.page-template-page-checkout .site-footer hr {
	display: none;
}
.page-template-page-checkout .site-footer {
	padding: 0;
	background: none;
}
/* upsell footer */
.page-template-page-upsell .site-footer {
	display: none;
}

/* member footer (logged in) */
.site-footer.footer-member {
	background: none;
	border-top: 1px solid #ddd;
}

/* 06: Forms
========================================================================================================================= */
.form-container {
	padding: 30px;
	border: 1px solid #ccc;
}
.input-container {
	margin: 0 0 15px;
}

/* ---------- labels ---------- */
label {
	display: block;
	font-weight: 700;
	color: #213240;
	margin-bottom: 10px;
}

.mobile-label {
	display: none; /* only show for mobile */
}

.label-blank {
	visibility: hidden;
}
.label-helper {
	font-size: .85em;
	font-weight: 300;
	color: #999;
}
.label-link {
	display: inline-block;
	font-size: .85em;
	font-weight: 400;
	margin: 0 0 0 5px;
}
/* option labels */
.label-option {
	position: relative;
	display: block;
	padding: 10px 15px 10px 35px;
	border: 1px solid #ddd;
	border-radius: 3px;
	cursor: pointer;
}
.label-option input {
	position: absolute;
	top: 5px;
	left: 10px;
}
.label-option .option-title {
	display: block;
	font-size: .9em;
}
.label-option .option-desc {
	display: block;
	font-size: .85em;
	font-weight: 300;
	color: #999;
	margin: 5px 0 0;
}
.label-option:hover {
	border-color: #333;
}
/* check labels */
.label-check {
	position: relative;
	padding: 0 0 0 25px;
	margin: 0 0 20px;
	font-size: .85em;
	cursor: pointer;
}
.label-check input {
	position: absolute;
	top: -2px;
	left: 0;
}

/* inputs */
input[type="text"],
input[type="email"],
input[type="phone"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="tel"],
textarea {
	display: block;
	width: 100%;
	padding: 13px;
	height: auto;
	background: #fff;
	border: 2px solid #ddd;
	box-shadow: none;
	border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
textarea:focus {
	border-color: #9fd1fc;
}
select,
select[multiple], select[size] {
	width: 100%;
	padding: 10px;
	border-radius: 3px;
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
}
textarea {
	height: 100px;
}
input[type="submit"],
button[type="submit"] {
	color: #fff;
	background: #6abf44;
	padding: 15px 30px;
	font-weight: 700;
	font-size: 1em;
	line-height: 1.2;
	border-radius: 100px;
	border: none;
	cursor: pointer;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
input[type="submit"]:hover,
button[type="submit"]:hover {
	background: #3a8219;
	color: #fff;
}

.required {
	color: #c00;
}

/* ---------- Auth ---------- */
.auth-container {
	padding: 50px;
	margin: 0 auto;
	background: #fff;
}
.auth-login {
	min-height: 300px;
	padding: 0 30px 0 0;
	border-right: 1px solid #ddd;
}

/* ----------- Quickstart ----------- */
.quickstart-form {
	position: relative;
	background: #eee;
	padding: 10px 200px 10px 10px;
	margin: 0 0 15px;
	border-radius: 100px;
}
.quickstart-form input[type="text"],
.quickstart-form input[type="email"] {
	background: none;
	border: none;
	outline: none;
}
.quickstart-form input[type="submit"] {
	position: absolute;
	top: 10px;
	right: 10px;
}

/* 07: Tables
========================================================================================================================= */
.column-action {
	text-align: right;
}

/* action tables */
.table.table-action {
	border-bottom: 1px solid #ddd;
}
.table.table-action thead {
	border-top: 1px solid;
}
.table.table-action th,
.table.table-action td {
	padding: 15px 0;
	vertical-align: middle;
}
.table.table-action th {
	color: #213240;
}
.table.table-action .column-name {
	min-width: 300px;
}
.table.table-action .column-desc {
	font-size: .9em;
}
.table.table-action .column-action {
	min-width: 250px;
}
.table.table-action select {
	height: auto;
}

/* comparison table */
.table.table-compare {
	font-size: 1em;
	color: #434c6d;
	margin: 0 0 30px;
	border: none;
}
.table.table-compare thead {
	background: none;
}
.table.table-compare thead th {
	font-weight: 300;
	border-bottom: 2px solid #434c6d;
}
.table.table-compare th,
.table.table-compare td {
	padding: 10px;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.table.table-compare tbody tr {
	position: relative;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.table.table-compare tbody th {
	position: relative;
	padding-left: 50px;
	font-weight: 300;
}
.table.table-compare tbody th i {
	position: absolute;
	top: 8px;
	left: 0;
	width: 40px;
	font-size: 1.4em;
	font-weight: 300;
	text-align: center;
}
.table.table-compare tbody th .btn {
	margin: -3px 0 0 10px;
	vertical-align: top;
}
.table.table-compare tbody td {
	text-align: center;
}
.table.table-compare tbody td i {
	font-size: 1.5em;
	line-height: 1;
	margin-right: 5px;
}
.table.table-compare tbody td.column-yes {
	font-weight: 700;
}
.table.table-compare tbody tr:hover th,
.table.table-compare tbody tr:hover td {
	background: #f5f5f5;
}
.table.table-compare tbody tr.row-header th,
.table.table-compare tbody tr.row-header td {
	font-weight: 700;
	background: #f9f9f9;
	border-top: 1px solid #434c6d;
}
.table.table-compare tbody tr.row-header th {
	font-weight: 300;
	letter-spacing: 5px;
	text-transform: uppercase;
}

/* data tables */
.table.table-data {
	font-size: .85em;
	border: 1px solid #ddd;
}
.table.table-data thead {
	background: #f5f5f5;
}
.table.table-data th,
.table.table-data td {
	padding: 15px;
}
.table.table-data tbody th {
	width: 200px;
}

/* detail tables */
.table.table-detail {
	font-size: .85em;
	border-bottom: 1px solid #ddd;
	margin: 0 0 30px;
}
.table.table-detail thead {
	background: #f5f5f5;
}
.table.table-detail th,
.table.table-detail td {
	padding: 10px;
}
.table.table-detail .column-timestamp {
	width: 60px;
}

/* invoice tables */
.table.table-invoice {
	font-size: .85em;
	border: 1px solid #ddd;
	margin: 0 0 20px;
}
.table.table-invoice th,
.table.table-invoice td {
	padding: 10px;
}
.table.table-invoice th {
	width: 140px;
}

/* list tables */
.table.table-list {
	border-top: 2px solid #213240;
	border-bottom: 1px solid #ccc;
	margin: 0 0 30px;
}
.table.table-list th,
.table.table-list td {
	padding: 15px;
	border-top: 1px solid #ccc;
	vertical-align: middle;
}
.table.table-list thead {
	text-transform: uppercase;
}
.table.table-list th {
	color: #213240;
}
.table.table-list th i {
	width: 18px;
	text-align: center;
	margin-right: 10px;
	color: #333;
}

/* manage tables */
.table.table-manage {
	table-layout: inherit;
	font-size: .85em;
	margin: 0 0 30px;
}
.table.table-manage th,
.table.table-manage td {
	padding: 10px;
}
.table.table-manage th {
	color: #333;
}
.table.table-manage .column-url {
	width: 300px;
}
.table.table-manage .column-upgrade {
	width: 180px;
}
.table.table-manage select {
	display: block;
	margin: 0 0 10px;
}
.mm-myaccount-content-wrapper .table.table-manage p {
	font-size: 1em;
}

/* 08: Bootstrap
========================================================================================= */
.container {
	width: 1200px;
}
.h1, .h2, .h3, h1, h2, h3 {
	margin-top: 0;
}

/* ----- alert ----- */
.alert {
	border: none;
	border-radius: 0;
}
.alert p:last-child {
	margin: 0;
}
.alert.alert-danger {
	background: #feecee;
	border-left: 4px solid #c00;
}
.alert.alert-info {
	background: #d6ebfd;
	border-left: 4px solid #1985e3;
}
.alert.alert-primary {
	background: #1985e3;
	color: #fff;
	border-left: 4px solid #036;
}
.alert.alert-success {
	background: #e4fdd9;
	border-left: 4px solid #6abf44;
}
.alert.alert-warning {
	background: #fef3ec;
	border-left: 4px solid #f60;
}

/* ----- badge ----- */
.badge {
	width: 30px;
	height: 30px;
	padding: 8px 0;
	margin-right: 5px;
	background: #213240;
	font-size: .85em;
	text-align: center;
	border-radius: 100px;
}

/* ----- carousel ----- */
.carousel .item {
	padding: 0;
	border: none;
	background: none;
}
.carousel .item.quote {
	/*min-height: 400px;*/
	margin-bottom:45px;
}
.carousel-indicators li,
.carousel-indicators .active {
	width: 15px;
	height: 15px;
	margin: 0 5px;
}
/* quotes carousel */
.carousel.carousel-quotes {
	min-height: 300px;
	padding: 0 100px;
	background: none;
}
.carousel.carousel-quotes blockquote {
	margin: 0 0 20px;
	background: none;
	font-size: 1.2em;
	font-weight: 200;
}
.carousel.carousel-quotes .quote-light blockquote {
	color: #fff;
}
.carousel.carousel-quotes .name {
	font-weight: 700;
	color: #eee;
}
.carousel.carousel-quotes .carousel-control {
	width: 10%;
	background: none;
	color: #213240;
}
.carousel.carousel-quotes .carousel-control.control-light {
	color: #fff;
}
.carousel.carousel-quotes .carousel-control .glyphicon-chevron-left,
.carousel.carousel-quotes .carousel-control .glyphicon-chevron-right {
	top: 20px;
}

/* ----- dropdown menu ----- */
.dropdown-menu {
	min-width: 220px;
	padding: 10px;
	margin: 0;
	font-size: .85em;
	background: #fff;
	border: none;
	border-radius: 0; 
	box-shadow: 1px 2px 2px rgba(0, 0, 0, .15);
}
.dropdown-menu li {
	border-top: 1px solid rgba(0, 0, 0, .1);
}
.dropdown-menu li.divider {
	background: rgba(0, 0, 0, .1);
}
.dropdown-menu li:first-child {
	border-top: none;
}
.dropdown-menu li a {
	position: relative;
	display: block;
	height: auto;
	padding: 15px;
	font-weight: 300;
	color: #666;
	border-radius: 0;
}
.dropdown-menu li a i {
	position: absolute;
	top: 17px;
	right: 10px;
	width: 20px;
	text-align: center;
}
.dropdown-menu li a:hover {
	background: #eee;
	color: #000;
}

/* ----- labels ----- */
.label {
	border-radius: 0;
}
.label.label-dark {
	background: #213240;
}
.label.label-active,
.label.label-green {
	background: #6abf44;
}
.label.label-plan {
	padding: 8px 15px;
	font-size: .9em;
}
.label-license {
	display: inline-block;
	padding: 10px 30px;
	margin: 0;
}
.label-license.license-primary {
	background: #213240;
	color: #fff;
}
.label-license.license-staging {
	background: #748ca2;
	color: #fff;
}

/* ----- modals ----- */
body.modal-open,
.modal-open .navbar-fixed-top,
.modal-open .navbar-fixed-bottom {
	margin-right: 0;
}

.modal-content {
	border: none;
	border-radius: 0;
}
.modal-header {
	position: relative;
	padding: 20px 50px 20px 30px;
	background: #1985e3;
}
.modal-header .modal-title {
	font-size: 1.5em;
	color: #fff;
	margin: 0;
}
.modal-header p {
	margin: 10px 0 0;
}
.modal-header .close {
	position: absolute;
	top: 5px;
	right: 20px;
	font-family: Helvetica Neue, sans-serif;
	font-size: 3.2em;
	font-weight: 300;
	margin: 0;
	color: #fff;
	text-shadow: none;
}
.modal-body {
	padding: 30px;
}
.modal-body.body-no-padding {
	padding: 0;
}
.modal-body .table {
	table-layout: fixed;
}
.modal-body .table th,
.modal-body .table td {
	padding: 8px 20px;
}
.modal textarea {
	height: 100px;
}
.modal input[type="submit"],
.modal button[type="submit"] {
	display: block;
	width: 100%;
	padding-right: 0;
	padding-left: 0;
}
.modal-footer {
	background: #eee;
	padding: 20px 30px;
	margin-top: 0;
	text-align: left;
}
.modal-footer .btn {
	margin: 0 5px 0 0;
}
/* video modals */
.modal.modal-video .modal-dialog {
	width: 960px;
	padding: 40px 0 0;
}
.modal.modal-video .modal-content {
	background: none;
	border: none;
	box-shadow: 0 0 0 10px rgba(255, 255, 255, .15);
}
.modal.modal-video .close {
	position: absolute;
	top: -60px;
	right: 0;
	color: #fff;
	opacity: 1.0;
	font-family: 'Helvetica Neue', sans-serif;
	font-size: .9em;
	text-shadow: none;
}
.modal.modal-video .close .close-x {
	display: inline-block;
	font-size: 4em;
	font-weight: 100;
	margin: -10px 0 0 5px;
	vertical-align: middle;
}
.modal.modal-video .close:hover {
	color: #999;
}
.modal.modal-video .modal-body {
	padding: 0;
}
/* wide modals */
.modal.modal-wide .modal-dialog {
	width: 960px;
}
/* super modals */
.modal.modal-super .modal-dialog {
	width: auto;
	max-width: 1400px;
}
.modal.modal-super .modal-body {
	display: table;
	width: 100%;
	padding: 0;
}
.modal.modal-super .modal-body .body-rail {
	display: table-cell;
	width: 30%;
	padding: 40px;
	background: #213240;
	vertical-align: top;
}
.modal.modal-super .modal-body .body-rail .rail-header {
	position: relative;
	padding: 0 30px 0 0;
	margin: 0 0 20px;
}
.modal.modal-super .modal-body .body-rail .rail-header .header-close {
	position: absolute;
	top: -8px;
	right: 0;
	font-size: 2.5em;
	line-height: 1;
	color: rgba(255, 255, 255, .5);
	cursor: pointer;
	text-decoration: none;
}
.modal.modal-super .modal-body .body-rail .rail-header .header-close:hover {
	color: #fff;
}
.modal.modal-super .modal-body .body-rail p {
	color: rgba(255, 255, 255, .75);
}
.modal.modal-super .modal-body .body-rail ul {
	color: rgba(255, 255, 255, .75);
}
.modal.modal-super .modal-body .body-content {
	display: table-cell;
	width: 70%;
	padding: 30px;
	vertical-align: top;
}

/* ----- nav ----- */
.nav.nav-pills {
	font-size: .85em;
	margin: 0 0 20px;
}
.nav.nav-pills li {
	margin: 0;
}
.nav.nav-pills li.nav-last {
	float: right;
}
.nav.nav-pills li a sup {
	display: inline-block;
	font-weight: 700;
	margin: 12px 0 0 5px;
	vertical-align: top;
}
.nav.nav-pills li.active a {
	background: #213240;
}
.nav.nav-pills li.active a i {
	color: #1985e3;
}
.nav.nav-pills.nav-inline {
	display: inline-block;
	border: 1px solid;
	border-radius: 4px;
}
.nav.nav-pills.nav-inline li {
	float: none;
	display: inline-block;
}

.nav.nav-tabs {
	font-size: .85em;
	font-weight: 700;
	margin: 0 0 20px;
}

/* ----- panels ----- */
.panel {
	border-radius: 0;
}
.panel .panel-heading,
.panel .panel-body {
	padding: 30px;
}

/* ----- tabs ----- */
.tab-content {
	padding: 20px 0;
}

/* ----- wells ----- */
.well {
	padding: 30px;
	border-radius: 0;
	box-shadow: none;
}
.well.well-dashed {
	background: none;
	border: 2px dashed #ccc;
}
.well.well-blank {
	background: none;
	border: none;
}
.well.well-trans {
	background: none;
	border-color: #ccc;
}
.well.well-white {
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.well .well-header {
	position: relative;
	padding: 0 100px 0 0;
}
.well .well-header p {
	margin: 0;
}
.well .well-header .btn {
	position: absolute;
	top: 0;
	right: 0;
}
.well .well-body {
	padding: 20px 0 0;
	margin: 20px 0 0;
	border-top: 1px solid #ddd;
}
.well .well-label {
	display: block;
	padding: 0 0 15px;
	margin: 0 0 15px;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-bottom: 1px solid #ccc;
}
/* feature wells */
.well.well-feature {
	padding: 15px;
	background: rgba(33, 50, 64, .9);
	border: none;
}
.well.well-feature .feature {
	margin: 0;
}
.well.well-feature .feature .feature-label {
	margin: 0 0 5px;
}
.well.well-feature .feature .feature-title {
	margin: 0;
}
/* utility wells */
.well.well-with-utility {
	position: relative;
}
.well.well-with-utility .well-utility {
	position: absolute;
	top: 30px;
	right: 30px;
}
/* misc wells */
.well.well-login-required {
	padding: 50px 30px 30px;
}

/* 09: Plugins
========================================================================================= */
/* ---------- ACF (Advanced Custom Fields) ---------- */
.acf-fields > .acf-field {
	padding: 20px 0;
}

/* ---------- Gravity Forms ---------- */
.gform_fields {
	list-style: none;
	margin: 0;
}
.gform_fields .gfield {
	margin: 0 0 15px;
}
.gform_fields .gfield select {
	width: 100%;
}
/* hide labels */
.gform_fields .gfield_label,
.gform_fields .ginput_counter {
	display: none;
}
/* hide sub-labels */
.gform_fields .name_first label,
.gform_fields .name_last label {
	display: none;
}
.gform_fields .name_first {
	display: block;
	margin: 0 0 15px;
}
.gfield_description {
	font-size: .9em;
	font-weight: 700;
	margin: 0 0 5px;
}
/* error styling */
.gform_wrapper .validation_error {
	display: block;
	padding: 10px;
	margin: 0 0 15px;
	font-size: .85em;
	background: #c00;
	color: #fff;
}
.gform_fields .gfield .validation_message {
	display: block;
	margin: 5px 0 0;
	font-size: .85em;
	color: #c00;
}
.hero .hero-form .gform_fields .gfield .validation_message {
	color: #f90;
}
/* success styling */
.gform_confirmation_message {
	display: block;
	padding: 10px;
	margin: 0 0 15px;
	font-size: .85em;
	background: #690;
	color: #fff;
}

.gfield_required {
	color: #c00;
}

/* ---------- MemberMouse ---------- */
/* ----- General styles ----- */
.mm-button {
	font-family: 'coresans', Arial, sans-serif !important;
	font-weight: 700 !important;
	line-height: inherit !important;
	text-shadow: none !important;
	box-shadow: none !important;
	border-radius: 100px !important;
}
.mm-button.large {
	padding: 15px !important;
}
.mm-button.green {
	background: #6abf44 !important;
	color: #fff !important;
	box-shadow: none !important;
	border: none !important;
}
.mm-button.green:hover {
	background: #3a8219 !important;
	color: #fff !important;
}
.mm-button.orange {
	background: #cb2127 !important;
	box-shadow: none !important;
	border: none !important;
}
.mm-button.orange:hover {
	background: #860005 !important
}
.mm-button.purple {
	background: #c6f !important;
	box-shadow: none !important;
	border: none !important;
}
.mm-button.purple:hover {
	background: #93c !important;
}
.mm-button.button-disabled {
	background: #ccc !important;
	color: #999 !important;
	cursor: context-menu;
}
.mm-button.button-disabled:hover {
	background: #bbb !important;
}
.mm-error {
	padding: 5px 10px !important;
	margin: 0 0 20px !important;
	background: #c00 !important;
	color: #fff !important;
	font-size: .85em !important;
	border: none !important;
	border-radius: 0 !important;
	text-shadow: none !important;
}
.mm-success {
	padding: 5px 10px !important;
	margin: 0 0 20px !important;
	background: #9c0 !important;
	color: #fff !important;
	font-size: .85em !important;
	border: none !important;
	border-radius: 0 !important;
	text-shadow: none !important;
}

/* ----- Checkout pages ----- */
.mm_left_column,
.mm_right_column {
	float: none !important;
	display: table-cell;
	padding: 30px;
	margin: 0 !important;
	vertical-align: top;
}
.mm_right_column {
	background: #eee;
}
.mm-checkoutContainer {
	max-width: inherit !important;
	font-size: 100% !important;
	color: #333;
	margin: 20px auto;
}
.mm-checkoutContainer .mm-checkoutInfoBlock {
	padding: 0 !important;
	border: none !important;
	border-radius: 0 !important;
	overflow: hidden !important;
}
.mm-checkoutContainer p.mm-formError, .mm-formError {
	font-size: 21px;
	background: #CC3C3F;
	padding: 5px 10px;
	border-radius: 5px;
	color: #fff;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.25);		
}
.mm-checkoutContainer h3 {
	font-size: 1.2em !important;
	font-weight: 700;
}
.mm-checkoutContainer #mm_field_billing_state_dd,
.mm-checkoutContainer #mm_field_billing_country,
.mm-checkoutContainer #mm_field_shipping_method,
.mm-checkoutContainer #mm_field_shipping_state_dd,
.mm-checkoutContainer #mm_field_shipping_country {
	width: 100%;
}
.mm-checkoutContainer .mm-formField {
	margin: 0 0 15px;
	overflow: inherit;
}
.mm-checkoutContainer .mm-formField label {
	display: none;
	width: auto;
	float: none !important;
}
.mm-checkoutContainer .mm-formField label.mandatory {
	display: block;
}
.mm-checkoutContainer .mm-formField.field-shipping-same {
	position: relative;
	padding-left: 25px;
}
.mm-checkoutContainer .mm-formField.field-shipping-same input {
	position: absolute;
	top: 3px;
	left: 0;
	margin: 0;
}
.mm-checkoutContainer .mm-selectList {
	width: auto;
	height: 52px;
	margin-right: 10px;
}
.mm-checkoutContainer .mm-checkoutSection2,
.mm-checkoutContainer .mm-purchaseSection {
	margin: 0 0 15px;
}
.mm-checkoutContainer .mm-checkoutSection2 h2 {
	font-size: 1.5em;
	font-weight: 400;
	line-height: 1.2;
}
.mm-checkoutContainer .mm-free-trial {
	font-size: 1.5em;
	font-weight: 700;
	letter-spacing: -2px;
	text-transform: uppercase;
	color: #f66d37;
}
.mm-checkoutContainer .mm-productDesc {
	font-style: normal;
}
.mm-checkoutContainer .mm-ccLogos img {
	width: 162px;
}
.mm-checkoutContainer .table {
	border-bottom: 1px solid #ddd;
}
.mm-checkoutContainer .table th,
.mm-checkoutContainer .table td {
	padding: 10px 0;
	border-color: #ddd;
}
.mm-checkoutContainer .table th {
	width: 120px;
}
p.checkout-terms {
	font-size: .75em;
	color: #aaa;
	margin: 0 0 10px;
}
p.checkout-terms a {
	color: #333;
}
p.checkout-security {
	position: relative;
	padding: 0 0 0 20px;
    color: #333;
}
p.checkout-security i {
	position: absolute;
	top: 4px;
	left: 0;
	font-size: 1.2em;
}

.mm-paypalCheckoutBtn {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	padding: 15px;
	margin: 15px 0 0;
	background: #009cde !important;
	color: #fff;
	font-size: 1em;
	font-weight: 700;
	text-align: center;
	border-radius: 100px;
}
.mm-paypalCheckoutBtn:before {
	content: "Checkout with PayPal";
}
.mm-paypalCheckoutBtn:hover {
	background: #0070ba !important;
	color: #fff;
	text-decoration: none;
}

.mm-giftsection {
	margin: 0 0 20px;
}

.mm-couponSection .mm-formField {
	position: relative;
}
.mm-couponSection .mm-formField .mm-button {
	position: absolute;
	top: 11px;
	right: 11px;
	padding: 0 10px !important;
	background: none !important;
	color: #08c !important;
	border: 1px solid #08c !important;
	border-radius: 2px !important;
	box-shadow: none !important;
	text-shadow: none !important;
	z-index: 10;
}
.mm-couponSection .mm-button:hover {
	background: #08c !important;
	color: #fff !important;
}
.mm-couponSection .mm-couponSuccessMessage,
.mm-couponSection .mm-couponErrorMessage {
	display: block;
	font-size: .85em;
	border-radius: 0;
}

/* ----- My Account page ----- */
.mm-myaccount {
	font-size: 1em !important;
}
.mm-myaccount-module {
	margin: 0 0 20px !important;
	background: #fff !important;
	border: 1px solid #ccc !important;
	border-radius: 0 !important;
}
.mm-myaccount-module br {
	display: none;
}
.mm-myaccount-module-header {
	position: relative;
	font-family: 'coresans';
	font-size: 1em;
	font-size: 1.2em !important;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.2;
	padding: 20px 150px 20px 50px !important;
	color: #333 !important;
	background: #fff !important;
	border-bottom: 1px solid #ddd;
}
.mm-myaccount-module-header .mm-update-button {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 6px 20px !important;
	font-weight: 700 !important;
	background: none !important;
	color: #333 !important;
	border: 2px solid rgba(0, 0, 0, .35);
	border-radius: 100px;
}
.mm-myaccount-module-header .mm-update-button:hover {
	background: #333 !important;
	color: #fff !important;
}
.mm-myaccount-module-header img {
	display: inline-block;
	vertical-align: top !important;
	margin: 1px 0 0 !important;
}
.mm-myaccount-module-header i {
	position: absolute !important;
	top: 22px !important;
	left: 15px;
	width: 30px;
	font-weight: 300;
	line-height: 1;
	text-align: center;
	margin: 0;
	color: #333 !important;
}
.mm-myaccount-content-wrapper {
	padding: 15px !important;
}
.mm-myaccount-content-wrapper p {
	font-size: .85em;
	margin: 0 0 10px !important;
}
.mm-myaccount-content-wrapper table {
	table-layout: fixed;
	width: 100%;
	font-size: .85em;
}
.mm-myaccount-content-wrapper table th,
.mm-myaccount-content-wrapper table td {
	padding: 10px 0;
	vertical-align: middle;
}
.mm-myaccount-content-wrapper table tbody th,
.mm-myaccount-content-wrapper table tbody td {
	border-top: 1px solid #ddd;
}
.mm-myaccount-content-wrapper table tr th:last-child,
.mm-myaccount-content-wrapper table tr td:last-child {
	text-align: right;
}
.mm-myaccount-content-wrapper .cta-button {
	font-size: 1.2em;
}
.mm-myaccount-label {
	display: inline-block;
	width: 200px;
	font-weight: bold;
	color: #333;
}
.mm-update-button {
	font-size: .8em !important;
	font-variant: normal !important;
	background: #1bb1e7 !important;
	padding: 5px 15px !important;
	color: #eee !important;
	vertical-align: top;
}
.mm-update-button:hover {
	text-decoration: none !important;
	color: #fff !important;
	background: #08c !important;
}

/* jquery UI dialog styling */
.mm-myaccount-dialog-section-header {
	font-family: 'coresans';
	font-size: 1em;
	font-size: .85em !important;
	font-weight: 700;
	background: none !important;
	color: #333 !important;
	padding: 0 !important;
	border-radius: 0 !important;
	text-shadow: none !important;
}
#mm-form-container table {
	font-family: 'coresans', sans-serif;
}
#mm-form-container td {
	padding: 5px 0;
}
#mm-payment-confirmation-dialog form {
	padding: 0 0 20px;
	margin: 0 0 20px;
	line-height: 1.4;
	border-bottom: 1px solid #ddd;
}
#mm-payment-confirmation-dialog form .mm-data {
	font-weight: 700;
}

.mm-dialog-button-container {
	float: none !important;
}
.mm-dialog-button-container .mm-ui-button {
	font-family: 'coresans';
	font-size: 1em;
	font-size: .85em !important;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	padding: 10px 20px;
	margin: 0;
	border: 1px solid #ccc;
	border-radius: 100px;
}
.mm-dialog-button-container .mm-ui-button:hover {
	background: #eee;
	color: #333;
}
.mm-dialog-button-container .mm-ui-button.blue {
	background: #1985e3;
	border: 1px solid #1985e3;
}
.mm-dialog-button-container .mm-ui-button.blue:hover {
	background: #0e4e86;
	color: #fff;
}
.mm-dialog-button-bar {
	text-align: left !important;
}
.mm-dialog-button-bar .mm-button {
	background: none;
}

.mm-update-subscription-button {
	color: #08c !important;
}
.mm-cancel-membership-button,
.mm-cancel-subscription-button,
.mm-update-subscription-button {
	font-size: 1em !important;
	color: #1bb1e7 !important;
}

/* ----- Login/Password pages ----- */
.mm-login,
.mm-forgot-password,
.mm-resetpassword {
	width: auto !important;
}
.mm-login table,
.mm-forgot-password table ,
.mm-resetpassword table {
	width: 100%;
}
.mm-login tr,
.mm-forgot-password tr ,
.mm-resetpassword tr {
	height: auto !important;
	margin: 0 0 20px;
}
.mm-login table tr,
.mm-login table th,
.mm-login table td,
.mm-forgot-password table tr,
.mm-forgot-password table th,
.mm-forgot-password table td,
.mm-resetpassword table tr,
.mm-resetpassword table th,
.mm-resetpassword table td {
	display: block;
}
.mm-login .mm-label-column,
.mm-forgot-password .mm-label-column,
.mm-resetpassword .mm-label-column {
	width: auto !important;
	margin: 0 0 5px;
	font-weight: 700;
	color: #333;
}
.mm-login .mm-field,
.mm-forgot-password .mm-field,
.mm-resetpassword .mm-field {
	width: 100% !important;
	margin: 0 0 10px;
}
.mm-login .row-table {
	display: table !important;
	width: 100% !important;
	margin: 0;
}
.mm-login .column-50 {
	display: table-cell !important;
	width: 50% !important;
}
.mm-login .column-forgot-password {
	text-align: right;
}
.mm-login .mm-label {
	display: none; /* use placeholders instead */
}
.mm-remember-me {
	position: relative;
	font-size: .85em;
	font-weight: 300;
	line-height: 1.4;
	margin: 20px 0 !important;
	padding-left: 20px;
}
.mm-remember-me br {
	display: none;
}
.mm-remember-me input[type="checkbox"] {
	position: absolute;
	top: 3px;
	left: 0;
	margin: 0 !important;
}
#mm-login-button,
#mm-submit-button {
	width: 100% !important;
}

/* ----- admin styles ----- */
#mm-preview-settings-bar select {
	height: auto;
}
#mm-preview-settings-bar .mm-button {
	line-height: 12px !important;
}

/* ---------- Smart Podcat Player ---------- */
.podcast-player .smart-track-player.stp-color-1985e3-2A2A2A.spp-stp-desktop,
.podcast-player .smart-track-player.stp-color-1985e3-2A2A2A.spp-stp-desktop.smart-track-player-dark,
.podcast-player .smart-track-player.stp-color-1985e3-2A2A2A.spp-stp-mobile .spp-player-layout,
.podcast-player .smart-track-player.stp-color-1985e3-2A2A2A.spp-stp-mobile.smart-track-player-dark .spp-player-layout {
	background: #1985e3 !important;
}
.page-header .podcast-player .smart-track-player.stp-color-1985e3-2A2A2A.spp-stp-desktop,
.page-header .podcast-player .smart-track-player.stp-color-1985e3-2A2A2A.spp-stp-desktop.smart-track-player-dark,
.page-header .podcast-player .smart-track-player.stp-color-1985e3-2A2A2A.spp-stp-mobile .spp-player-layout,
.page-header .podcast-player .smart-track-player.stp-color-1985e3-2A2A2A.spp-stp-mobile.smart-track-player-dark .spp-player-layout {
	background: rgba(33, 50, 64, .9) !important;
}
.podcast-player .smart-podcast-player.smart-podcast-player-dark,
.podcast-player .smart-track-player.spp-stp-mobile.smart-podcast-player-dark {
	border: none !important;
}

/* ---------- Typed.js ---------- */
.typed-cursor {
    opacity: 1;
    animation: blink .7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* ---------- jQuery UI ---------- */
.ui-widget-overlay {
	background: rgba(0, 0, 0, .5) !important;
	opacity: 1.0 !important;
}
.ui-dialog.ui-widget {
	padding: 0;
	font-family: 'coresans', sans-serif;;
	border: none;
	border-radius: 0;
	box-shadow: 0 0 0 10px rgba(255, 255, 255, .1);
}
.ui-dialog.ui-widget .ui-widget-header {
	padding: 15px 20px;
	background: #333;
	color: #fff;
	font-family: 'coresans', sans-serif;
	font-size: 1.2em;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
	border-radius: 0;
}
.ui-dialog.ui-widget .ui-widget-header .ui-dialog-titlebar-close {
	right: 20px;
	outline: none;
}
.ui-dialog.ui-widget .ui-widget-header .ui-dialog-titlebar-close:hover {
	color: #fff;
}
.ui-dialog.ui-widget .ui-widget-content {
	height: auto !important;
	padding: 20px;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: 'coresans', serif;;
}
/* dialog table styling */
.ui-dialog.ui-widget #mm-form-container tr td {
	width: auto;
}
.ui-dialog.ui-widget #mm-form-container tr td:first-child {
	width: 120px;
}

/* ---------- WP Pagenavi (pagination) ---------- */
.wp-pagenavi {
	padding: 20px 0 0;
	margin: 0 0 20px;
	font-size: .85em;
	border-top: 1px solid #ddd;
}
.wp-pagenavi a,
.wp-pagenavi span {
	display: inline-block;
    border: none;
    padding: 5px 12px;
    margin: 0 5px 5px 0;
    border: 1px solid;
    border-radius: 3px;
}
.wp-pagenavi span.pages {
	background: #f5f8fb;
	color: #213240;
}
.wp-pagenavi a {
	background: #1985e3;
	color: #fff;
	border-color: #1985e3;
}
.wp-pagenavi a:hover {
	background: #fff;
	color: #1985e3;
	border-color: #fff;
}
.wp-pagenavi span.current {
	background: #213240;
	color: #fff;
}


/* 10: Behavioral (JS)
========================================================================================================== */
.js-content-hidden {
	display: none;
}

.js-toggle-control-content {
	display: none;
}
.js-toggle-price-content {
	display: none;
}

/* animated gifs on scroll */
.js-animated-gif {
	position: relative;
}
.js-animated-gif .gif-cover {
	position: relative;
	min-height: 350px;
	background: #1985e3;
}
.js-animated-gif .gif-cover img {
	position: absolute;
	top: 45%;
	left: 50%;
	width: 200px;
	margin-left: -100px;
	z-index: 5;
}
.js-animated-gif .gif-animation {
	display: none;
}

/* fading in/out */
.js-card-fade {
	display: none;
}

/* fixed guide headers */
.js-guide-header {
	position: fixed;
	top: 63px;
	width: 100%;
	height: 0;
	background: rgba(33, 50, 64, .9);
	overflow: hidden;
	z-index: 500;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.js-guide-header.header-visible {
	height: 44px;
	padding: 10px 0;
}
.js-guide-header > .container {
	position: relative;
}
.js-guide-header .header-title {
	color: #fff;
	font-size: .85em;
}
.js-guide-header .header-utility {
	position: absolute;
	top: 0;
	right: 30px;
}
.js-guide-header .header-link {
	display: inline-block;
	padding: 0 5px;
	font-size: .85em;
	color: rgba(255, 255, 255, .5);
}
.js-guide-header .header-link:hover {
	color: #fff;
}

/* scrolling */
.scroll-title {
	padding: 20px 0 0;
}

/* affixed wells */
.well-icon-nav.affix {
	width: 270px;
	top: 60px;
}

.guarantee_image {
  min-width: 153px;
  text-align: inherit;
  margin-right: 10px;
  margin-top: -25px;
  float: left;
}

.emphasis_testimonials {
  width: 700px;
  margin: auto;
  color: #999;
}

.emphasis_testimonial {
  width: 233px;
  margin-bottom: 10px;
}

.emphasis_testimonial img {
  height: 20px;
  width: 105px;
  display: block;
  padding: 0;
  margin: auto;
  margin-bottom: 10px;
}

.emphasis_testimonial span {
  margin-bottom: 10px;
}

.emphasized_text {
  font-size: 120%;
  font-weight: bold;
}

.plans_title {
  font-weight: bold;
  font-size: 38px;
  margin-bottom: 25px !important;
}

.plans_hr {
  margin-left: 180px;
  margin-right: 180px;
}

.plans_subtitle {
  margin: auto !important;
  margin-bottom: 50px !important;
  margin-right: 180px !important; /* offset for guarantee image */
}

.plans_testimonial {
  height: 235px;
}

#compare-plans {
  display: none;
}

.product_highlight {
  padding: 5px; 
  color: white;
  font-weight: bold;
  font-size: 12px;
  margin-left: 5px;
  vertical-align: top;
  background-color: #5e40b3;
  /* background-color: #09429e; */
}

.product_short_description {
  font-size: 85% !important;
  height: 45px;
}

.product_features_list {
  font-size: 85% !important;
  margin-top: 30px;
}

.product_features_list ul {
  height: 420px;
	list-style: none;
	margin: 0;
}

.product_features_list ul li {
	margin: 0;
	padding: 0 0 15px 25px;
	background-image: url('images/check-green.svg');
	background-repeat: no-repeat;
	background-position: left 3px;
	background-size: 15px;
}

.well.well-trans.mbg {
  margin-top: 40px;
  margin-left: 100px;
  margin-right: 100px;
  background-color: white;
}

.plans_featured_in {
	margin-top: 0;
}

.plans_featured_in img {
  height: 35px;
	margin: auto;
	margin-bottom: 30px;
}

.plans_ratings {
  margin-top: 40px;
}

.plans_ratings img {
  height: 35px;
	margin: auto;
	margin-bottom: 20px;
}

.plans_pricing {
  margin-top: 30px;
	margin-bottom: 40px;
}

.plans_most_popular {
  display: block;
  text-align: center;
  color: white;
  background-color: black;
	text-transform: uppercase;
  padding: 5px;
  font-weight: bold;
  height: 30px;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, .15);
}

.plans_most_popular_spacer {
  display: block;
  padding: 5px;
  height: 30px;
}

.plan_grid_section_head {
	font-size: 1.1em;
  padding: 35px 5px 15px 15px !important;
  vertical-align: middle !important;
  border-top: 2px solid #ddd !important;
  font-weight: 700 !important;
}

.sticky_header {
  display: none;
  position: sticky;
  top: 0;
  width: 100%;
  background-color: white;
  padding-top: 20px;
  padding-bottom: 15px;
	box-shadow: 1px 2px 2px rgba(0, 0, 0, .15);
  z-index: 99999999;
}

.sticky_header .container {
	width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.sticky_header img {
  max-width: 270px;
}

.sticky_header span {
  display: block;
  width: 100%;
  text-align: center;
  padding-top: 7px;
}

.sticky_header .btn {
  max-width: 270px;
  white-space: nowrap;
  float: right;
}


/* 11: Responsive (Media Queries)
========================================================================================================== */
/* Retina-specific styles */
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (   -moz-min-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {

}

/* LARGE DESKTOP */
@media (min-width: 1200px) {

}

@media (max-width: 1199px) {

	/* ----- Hero ----- */
	.hero.hero-homepage .headline {
		margin: 50px 0 30px;
	}
	.hero .hero-emph .emph-membership {
		font-size: 1em;
	}

	/* ----- Bootstrap ----- */
	.container {
		width: auto;
		padding: 0 30px;
	}

  .product_short_description {
    height: 100px;
  }

  .product_features_list ul {
    height: 435px;
  }

  .plans_testimonial {
    height: 275px;
  }
}

/* TABLET */
@media (max-width: 1024px) {

	.container.container-app {
		padding: 0;
	}

	/* ----- Header ----- */
	.site-header {
		height: 50px;
		padding: 0;
	}
	.site-header .header-top {
		display: none;
	}
	.site-header .header-brand {
		top: 10px;
		width: 200px;
	}
	.page-template-page-plans .site-header .header-brand {
		padding: 13px 0;
	}
	.site-header .header-mobile-navicon {
		display: inline-block;
	}
	.site-header .header-nav {
		position: fixed;
		top: 50px;
		left: 0;
		height: 0;
		background: #f5f8fb;
		overflow: hidden;
		z-index: 1000;
	}
	.mobile-nav-open {
		overflow: hidden;
	}
	.mobile-nav-open .header-top {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 9999;
	}
	.mobile-nav-open .header-restyle .header-top {
		height: 40px;
	}
	.mobile-nav-open .header-top .container {
		padding: 0;
	}
	.mobile-nav-open .header-top .top-nav {
		font-size: .7em;
		text-align: center;
	}
	.mobile-nav-open .header-top .top-nav li a {
		padding: 12px 10px;
	}
	.mobile-nav-open .site-header .header-nav {
		width: 100%;
		height: 100%;
		padding: 20px;
		border-top: 1px solid #ddd;
	}
	.mobile-nav-open .site-header .header-nav ul {
		padding: 0;
	}
	.mobile-nav-open .site-header .header-nav ul > li {
		float: none;
		display: block;
		margin: 0;
		border-top: 1px solid rgba(255, 255, 255, .25);
	}
	.mobile-nav-open .site-header .header-nav ul > li > a {
		height: auto;
		padding: 15px;
		text-align: center;
	}
	.mobile-nav-open .site-header .header-nav ul > li.nav-cta,
	.mobile-nav-open .site-header .header-nav ul > li.nav-cta-secondary {
		margin: 0 0 10px;
	}
	.mobile-nav-open .site-header .header-nav .dropdown-menu {
		width: 100%;
	}
	.mobile-nav-open .site-header.header-member .header-nav ul > li {
		border-top: 1px solid #ddd;
	}
	.mobile-nav-open .site-header.header-member .header-nav ul > li:first-child {
		border-top: none;
	}
	.mobile-nav-open .site-header.header-member .header-nav ul > li > a {
		color: #1985e3;
		border-radius: 0;
		text-align: left;
	}
	
	/* ----- Page Header ----- */
	.page-header {
		padding: 80px 0 30px;
	}
	.page-header.header-slim {
		padding: 70px 0 20px;
	}
	.page-header.header-hero {
		padding: 120px 0 50px;
	}
	.page-header.header-podcast {
		padding: 80px 0 50px;
	}
	.page-header.header-post {
		min-height: inherit;
	}
	.post-header {
		margin: -80px 0 30px;
	}

	/* ----- Page Section ----- */
	.page-section.section-confirmation {
		padding: 80px 0 30px;
	}
	.page-section.section-auth {
		padding: 80px 0 50px;
	}

	/* ----- Hero ----- */
	.hero {
		padding: 100px 0 50px;
	}
	.hero .hero-mobile-image {
		display: block;
		width: 60%;
		margin: 0 auto;
	}
	.hero.hero-homepage {
		padding: 100px 0 0;
	}
	.hero.hero-homepage .hero-container {
		min-height: inherit;
		background: none;
	}

	/* ----- Member UX ----- */
	.wrap-app,
	.site-wrap.wrap-public .wrap-app {
		display: block;
		margin: 50px 0 0;
		border: none;
	}
	.app-nav,
	.app-body {
		display: block;
		width: 100%;
	}
	.app-nav .nav-mobile-toggle {
		position: relative;
		display: block;
		padding: 20px 50px 20px 30px;
		background: #748ca2;
		font-weight: 700;
		color: #fff;
	}
	.app-nav .nav-mobile-toggle .toggle-icon {
		position: absolute;
		top: 18px;
		right: 22px;
		font-size: 1.2em;
		opacity: .5;
	}
	.app-nav .nav-mobile-toggle .toggle-icon.icon-close {
		display: none;
	}
	.app-nav .nav-mobile-toggle .toggle-icon.icon-open {
		display: inline-block;
	}
	.app-nav .nav-mobile-toggle.menu-open .toggle-icon.icon-close {
		display: inline-block;
	}
	.app-nav .nav-mobile-toggle.menu-open .toggle-icon.icon-open {
		display: none;
	}
	.app-nav .nav-menu {
		display: none;
	}
	
	/* tiles */
	.tile .tile-content {
		position: static;
		display: block;
		padding: 20px;
		background: none;
		color: #333;
	}
	.tile .tile-title {
		color: #213240;
	}
	.tile .tile-description {
		color: #777;
	}
	.tile .tile-description.js-content,
	.tile:hover .tile-description.js-content {
		height: auto;
		position: static;
	}

	/* ----- Behavioral (JS) ----- */
	.js-guide-header,
	.js-guide-header.header-visible {
		display: none;
	}

  .well.well-trans.mbg {
    margin-left: 0;
    margin-right: 0;
  }
	
  .plans_testimonial {
    height: 300px;
  }

}

/* SMALL TABLET */
@media (max-width: 992px) {

	/* ----- Titles ----- */
	.title-intro .title-span {
		display: block;
		padding-left: 0;
	}
	.title-intro .title-span .title-icon {
		position: static;
		display: block;
		margin: 0 auto 15px;
	}

	/* ----- Hero ----- */
	.hero .hero-content {
		width: auto;
	}
	.hero.hero-homepage {
		padding: 100px 0 50px;
	}
	.hero.hero-homepage p {
		text-align: center;
	}
	.hero.hero-homepage .headline {
		margin: 0 0 30px;
	}
	.hero .hero-emph .emph-membership {
		font-size: 1.4em;
	}
	.hero .hero-screenshots {
		position: relative;
		top: inherit;
		right: inherit;
		width: 80%;
		min-height: inherit;
		padding: 3% 3% 20%;
		margin: 0 auto;
	}

	/* ----- checkout ----- */
	.checkout-container.container-columns .mm-checkoutContainer {
		display: block;
	}
	.checkout-container.container-slim {
		width: auto;
		padding: 30px;
	}
	.checkout-column {
		display: block;
	}
	.checkout-column.column-product {
		width: 100%;
	}
	.checkout-column.column-payment {
		width: 100%;
	}

	/* ----- Bootstrap ----- */
	.modal.modal-video .modal-dialog {
		width: auto;
		margin: 30px;
	}
	.modal.modal-wide .modal-dialog {
		width: auto;
	}
	.modal.modal-super .modal-body {
		display: block;
	}
	.modal.modal-super .modal-body .body-rail,
	.modal.modal-super .modal-body .body-content {
		display: block;
		width: 100%;
	}
	.modal.modal-super .modal-body .body-rail {
		padding: 50px;
	}

  .emphasis_testimonials {
    width: 233px;
  }

  .product_short_description {
    height: auto;
  }

  .product_features_list ul {
    height: auto;
  }
	
  .plans_testimonial {
    height: 350px;
  }

}

/* MOBILE */
@media (max-width: 768px) {

	.mobile-label {
		display: inline-block;
	}

	/* ----- Global ----- */
	h1 {font-size: 2.2em;}
	h2 {font-size: 1.6em;}
	h3 {font-size: 1.4em;}
	h4 {font-size: 1.2em;}
	
	.headline {
		font-size: 1.2em;
		letter-spacing: 0;
	}
	.headline.headline-large {
		font-size: 1.4em;
	}
	.headline.headline-jumbo {
		font-size: 2em;
	}
	
	.btn.btn-xl {
		font-size: 1.2em;
		padding: 10px 20px;
	}

	/* ----- Grids ----- */
	.rsp-grid .grid-container {
		width: 47% !important;
	}
	.masonry-grid .grid-item {
		width: 48% !important;
	}

	/* ----- Page header ----- */
	.page-header.header-post {
		padding: 100px 0 30px;
	}
	
	/* ----- Page section ----- */
	.page-section {
		padding: 30px 0;
	}
	.page-section.section-slim {
		padding: 15px 0;
	}
	
	/* ----- Hero ----- */
	.hero .hero-content h1 {
		font-size: 2.4em;
	}
	
	/* ----- Users ----- */
	.user-cta-btn {
		float: none;
		margin: 10px 0 0;
	}
	
	/* ----- Footer ----- */
	.site-credit {
		text-align: left;
	}

	/* ----- Forms ----- */
	.auth-login {
		min-height: inherit;
		padding: 0 0 30px;
		margin: 0 0 30px;
		border-right: none;
		border-bottom: 1px solid #ddd;
	}
	.widget input[type="submit"] {
		margin: 15px 0 0;
	}

	/* ----- Tables ----- */
	/* responsive tables */
	.table-responsive thead {
		display: none;
	}
	.table-responsive tbody,
	.table-responsive tr,
	.table-responsive th,
	.table-responsive td {
		display: block;
		width: 100%;
	}
	.table-responsive tr {
		border-top: 1px solid #ddd;
	}
	.table-responsive th,
	.table-responsive td {
		border: none !important;
	}
	.column-action {
		text-align: left;
	}

	.table.table-compare,
	.table.table-compare thead,
	.table.table-compare tbody,
	.table.table-compare tfoot,
	.table.table-compare tr,
	.table.table-compare th,
	.table.table-compare td {
		display: block;
	}
	.table.table-compare thead {
		display: none;
	}
	.table.table-compare tbody th {
		border-top: 1px solid #036;
	}
	.table.table-compare tbody td {
		position: relative;
		padding-left: 120px;
		border-left: none;
		text-align: right;
	}
	.table.table-compare tbody tr.row-header th {
		padding: 20px 0;
		text-align: center;
	}
	.table.table-compare tbody td .mobile-label {
		position: absolute;
		top: 20px;
		left: 0;
		font-weight: 700;
	}
	.table.table-compare tfoot td {
		padding: 20px 0;
		text-align: center;
	}
	.table.table-compare tfoot td .mobile-label {
		display: block;
		font-weight: 700;
		margin: 0 0 10px;
	}
	.table.table-compare .hide-mobile {
		display: none !important;
	}
	.table.table-resource {
		font-size: .9em;
	}
	.table.table-resource table,
	.table.table-resource thead,
	.table.table-resource tbody,
	.table.table-resource tr,
	.table.table-resource th,
	.table.table-resource td {
		display: block;
		width: auto;
	}
	.table.table-resource thead {
		display: none;
	}
	.table.table-resource th,
	.table.table-resource td {
		padding: 3px 0;
		border: none;
	}
	.table.table-resource tr th:first-child {
		padding-top: 15px;
		border-top: 1px solid #ddd
	}
	.table.table-resource tr td:last-child {
		padding-bottom: 15px;
	}

	/* ----- Bootstrap ----- */
	.nav.nav-pills li {
		float: none;
		display: block;
		margin: 0 0 10px;
	}
	.well.well-with-utility .well-utility {
		position: static;
	}

  .guarantee_image {
    float: none;
    display: block;
    margin: auto;
    margin-top: -25px;
  }

  .plans_subtitle {
    margin-right: 0 !important;
  }

  .plans_hr {
    margin-left: 0;
    margin-right: 0;
  }

  .plans_testimonial {
    height: auto;
  }

}

/* SUPER MOBILE */
@media (max-width: 600px) {

	.headline.headline-jumbo {
		font-size: 1.4em;
	}

	/* ----- Buttons ----- */
	.btn-mobile-block {
		display: block;
		width: 100%;
		padding-right: 0;
		padding-left: 0;
		margin: 0 0 10px;
	}

	/* ----- Lists ----- */
	.list-columns-2 li,
	.list-columns-3 li {
		display: block;
		width: auto;
	}
	
	/* ----- Grids ----- */
	.rsp-grid {
		margin-left: 0;
	}
	.rsp-grid .grid-container {
		display: block;
		width: 100% !important;
		margin: 0 0 15px;
	}
	.masonry-grid {
		margin-left: 0;
	}
	.masonry-grid .grid-item {
		width: 100% !important;
	}
	
	/* ----- Page header ----- */
	.page-header .headline {
		margin: 0;
	}

	/* ----- Page section ----- */
	.page-section.section-cta .btn {
		display: block;
		width: 100%;
		margin: 0 0 10px; 
	}

	/* ----- Post ----- */
	.post-nav a {
		font-size: .9em;
	}
	.post-content {
		padding-left: 0;
	}
	.post-content .share-links {
	    position: static;
	    width: auto;
	}
	.post-content .share-links li {
	    margin: 0 0 5px;
	}
	
	/* ----- Hero ----- */
	.hero.hero-homepage .headline {
		font-size: 1.5em;
	}
	.hero .btn {
		display: block;
		width: 100%;
		padding-right: 0;
		padding-left: 0;
		margin: 0 0 10px;
		font-size: 1em;
	}
	.hero .btn.wistia_embed {
		display: block !important;
		width: 100% !important;
	}

	/* ----- Checkout ----- */
	/* checkout */
	.checkout-container {
		padding: 30px;
	}
	.checkout-column {
		padding: 30px;
	}

	/* ----- Card ----- */
	.card .card-image {
		max-height: inherit;
	}

	/* ----- Item ----- */
	.item.item-with-image {
		padding-left: 90px;
	}
	.item.item-with-image .item-image {
		width: 75px;
	}

	/* ----- Metric ----- */
	.metric .metric-value {
		font-size: 2em;
	}

	/* ----- User ----- */
	.user.user-large {
		min-height: 60px;
		padding-left: 75px;
	}
	.user.user-large .user-avatar {
		width: 60px;
	}
	.user.user-feature {
		min-height: inherit;
		padding: 20px 20px 20px 120px;
	}
	.user.user-feature .user-avatar {
	    top: 20px;
	    left: 20px;
	    width: 80px;
	}
	.user.user-feature label {
		font-size: 1em;
	}

	/* ----- Site Footer ----- */
	.site-footer .footer-wrap {
		padding: 0;
	}
	.site-footer .footer-wrap .icon-mm {
		position: static;
		display: block;
		margin: 0 0 15px;
	}
	.footer-nav li {
		display: block;
	}
	.footer-nav li:first-child {
		border-top: none;
	}
	.footer-nav li a {
		display: block;
		padding: 5px 0;
	}

	/* ----- Forms ----- */
	.auth-container {
		padding: 30px;
	}
	.quickstart-form {
		padding-right: 150px;
	}
	.quickstart-form input[type="text"],
	.quickstart-form input[type="email"] {
		padding: 10px;
	}
	.quickstart-form input[type="submit"] {
		padding: 10px 20px;
	}

	/* ----- Bootstrap ----- */
	.carousel.carousel-quotes {
		padding: 0 50px;
	}
	.modal.modal-super .modal-body .body-rail {
		padding: 30px;
	}
	.nav.nav-inline {
		font-size: .7em;
	}
	.nav.nav-pills li a sup {
		margin: 8px 0 0 5px;
	}
	.well .well-header .btn {
	    padding: 7px 15px;
	    font-size: .75em;
	}
	.well .btn.pull-left,
	.well .btn.pull-right {
		float: none !important
	}

}

/* SUPER DUPER MOBILE */
@media (max-width: 480px) {

	.hero .hero-emph .emph-membership {
		font-size: 1.2em;
	}

}
