/*
Theme Name: Smash Balloon
Theme URI: https://smashballoon.com
Author: Smash Balloon
Description: Smash Balloon
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =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;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a,
a:active,
a:hover,
a:focus {
	outline: none !important;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ddd;
	border: 0;
	height: 1px;
	margin: 25px 0;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	line-height: 1.5;
}

.archive-title,
.page-title{
	font-size: 20px;
	font-size: 1.428571429rem;
	line-height: 1.2;
	font-weight: normal;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
    line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
li.bypostauthor cite span {
	padding: 8px 12px;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #666;
	background-color: #ddd;
	/*background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;*/
	border: none;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	/*box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);*/
}
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
    cursor: default;
}
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #fff;
	background-color: #e89a2e;
}
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	/*border: none;*/
}
li.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	/*border-radius: 3px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);*/
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	font-family: Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility;
	color: #444;
}
body.custom-font-enabled {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
a {
	outline: none;
	color: #e34f0e;
}
a:hover {
	color: #222;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:hover,
.main-navigation .assistive-text:active,
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	background-color: #fff;
}
.site-content {
	float: left;
	width: 100%;
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
	margin-top: 60px;
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

/* Header */
.site-header {
	padding: 24px 0 0 0;
}
.site-header h1,
.site-header h2 {
	text-align: center;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}
.site-header .logo{
	display: inline-block;
}

/* Navigation Menu */
.main-navigation {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	text-align: center;
}
.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 14px;
	/*font-size: 0.857142857rem;*/
	line-height: 1.42857143;
}
.main-navigation a {
	color: #5e5e5e;
}
.main-navigation a:hover {
	color: #21759b;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	/*-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;*/
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #21759b;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	width: 100%;

	margin-top: 24px;

	padding: 10px 0;
	background: #e34f0e;
	color: #fff;
}
footer[role="contentinfo"] a {
	color: #fff;
	color: rgba(255,255,255,0.8);
}
footer[role="contentinfo"] a:hover {
	color: #111;
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title {
	font-size: 24px;
	line-height: 1.2;
	font-weight: bold;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	line-height: 1.5;
	font-size: 24px;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 24px;
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.846153846;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
	margin-bottom: 10px;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 19px;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	word-break: break-all;
}
.entry-content table code {
	word-break: normal;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 0;
	word-break: break-all;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
	word-break: break-all;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter {
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
	line-height: 1.5;
}
.site-content article {
	float: left;
	clear: both;
	width: 100%;
	/*border-bottom: 4px double #ededed;*/
	margin-bottom: 72px;
	margin-bottom: 5.142857143rem;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
	word-wrap: break-word;
	/*-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;*/
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 25px;
	padding-bottom: 22px;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area li.bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}


/* =Media queries
-------------------------------------------------------------- */

/* Minimum width of 600 pixels. */
@media screen and (min-width: 700px) {
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		width: 100%;
		overflow: hidden;
	}
	.site .inner{
		max-width: 960px;
		margin: 0 auto;
	}
	.site .inner.wide{
		max-width: 1040px;
	}
	.site-content {
		width: 69.104167%;
	}
	body.full-width .site-content.faqs,
	body.full-width .site-content.sb-has-sidebar,
	body.search .inner .site-content{
		width: 69.104167%;
	}
	body.template-front-page .site-content,
	body.single-attachment .site-content,
	body.full-width .site-content,
	.site-content.full-width  {
		width: 100%;
	}

	/* Extension pages should not be full width */
	body.single-download .site-content{
		width: 69.104167%;
	}

	.widget-area {
		float: right;
		width: 25.041666667%;
	}
	.site-header h1,
	.site-header h2 {
		text-align: left;
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.846153846;
		margin-bottom: 0;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		/*border-bottom: 1px solid #ededed;
		border-top: 1px solid #ededed;*/
		display: inline-block !important;
		text-align: left;
		width: 100%;
		color: #fff;
	}
	.main-navigation {
		/*background: #e34f0e;*/
		background: #282828;
		border-bottom: 1px solid;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
		text-align: left;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.main-navigation li a {
		padding-left: 25px;
		padding-right: 25px;
		margin-left: -4px;
		border-bottom: 0;
		color: #fff;
		line-height: 3.692307692;
		/*text-transform: uppercase;*/
		white-space: nowrap;
	}
	.main-navigation li a:hover {
		color: #fff;
		background: #e89a2e;
	}
	.main-navigation li {
		margin: 0 0 0 0;
		margin: 0;
		position: relative;
	}
	.main-navigation li ul {
		display: none;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 1;
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul li:hover > ul {
		border-left: 0;
		display: block;
		background: #fff;
	    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
	}
	.main-navigation li ul li a {
		background: #e34f0e;
		display: block;
		font-size: 13px;
		line-height: 2.181818182;
		padding: 5px 15px;
		width: 180px;
		white-space: normal;
	}
	.main-navigation li ul li a:hover {
		background: #e89a2e;
		color: #fff;
	}
	.main-navigation .fa-caret-down{
		display: none;
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a {
		/*background: #e89a2e;*/
		background: #444;
		color: #fff;
		font-weight: bold;
	}

	/* Primary nav */
	/*.primary-nav{
		float: right;
		margin-top: 13px;
		background: none;
	}
	.primary-nav li a{
		padding-left: 10px;
		padding-right: 10px;
		margin: 0;
		color: #282828;
	}
	.primary-nav li a:hover {
		color: #e34f0e;
		background: none;
	}
	.primary-nav li ul li a {
		background: none;
	}
	.primary-nav li ul li a:hover {
		background: none;
		color: #e34f0e;
	}
	.primary-nav .current_page_item > a,
	.primary-nav .current_page_ancestor > a {
		background: none;
		color: #282828;
		font-weight: bold;
	}*/

	.menu-toggle {
		display: none;
	}
	.entry-header .entry-title {
		font-size: 24px;
	}
	.post .entry-header .entry-title{
		border-bottom: 5px solid #f4edea;
		padding-bottom: 25px;
		margin-bottom: 40px;
	}
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
}


/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}
	.singular .entry-header .entry-meta {
		position: static;
	}
	.singular .site-content,
	.singular .entry-header,
	.singular .entry-content,
	.singular footer.entry-meta,
	.singular .comments-title {
		margin: 0;
		width: 100%;
	}
	.entry-header .entry-title,
	.entry-title,
	.singular .entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}



.actions{
	overflow: hidden;
	width: 450px;
	margin: 0 auto;
}
.screenshots .actions{
	margin-bottom: -56px;
}
.actions.slim{
	width: 425px;
	max-width: 100%;
}

/* BUTTON */
.btn, input.btn{
	display: block;
	float: left;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	border: none;

	margin: 0 15px 15px 0;
	padding: 20px 30px;
	color: #fff;
	text-align: center;

	background: #e89a2e;

	/*text-shadow: 0 -1px 0 rgba(0,0,0,0.2);*/

	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
.btn.disabled{
	font-size: 14px;
	background: #aaa;
	padding: 15px 30px 14px 30px;
}
.btn:hover, .btn:focus,
input.btn:hover, input.btn:focus{
	color: #fff;
	background: #ea8519;
}
.btn.disabled:hover, .btn.disabled:focus{
	background: #666;
}

.btn span{
	display: block;
	font-size: 14px;
	font-weight: normal;
	margin-top: -4px;
}
.btn.download{
	padding-left: 60px;

	background: #edb72f url('img/download-icon.png') no-repeat 8% 50%;
}
.btn.download:hover, .btn.download:focus{
	background: #ed942f url('img/download-icon.png') no-repeat 8% 50%;
}
.btn.big{
	background: #e34f0e;
	font-size: 26px;
	padding-top: 12px;
	padding-top: 10px;
	margin: 0 5px;
}
.btn.big:hover,
.btn.big:focus{
	background: #cf3100;
}

.btn.big.light{
	background: #e89a2e;
}
.btn.big.light:hover, .btn.big.light:focus {
    background: #ea8519;
}

.slim .btn.big{
	font-size: 18px;
	padding-top: 6px;
	padding-bottom: 10px;
}
.slim .btn span {
	font-size: 13px;
}

#esu_err{
	display: none !important;
}
.hide{
	display: none;
}

.entry-content form p{
	margin-bottom: 0;
}

.btn-wrap{
	width: 250px;
	float: right;
	margin: 0 15px 15px 0;
	color: #333;
	text-shadow: 0 1px 0 #fff;
}
.entry-content .btn-wrap h3{
	margin: 0 0 5px 0;
	text-align: center;
	width: 100%;
}
.btn-wrap .btn{
	width: 96%;
	font-size: 15px;
	padding: 3px 2%;
	margin-bottom: 5px;

	background: #edb72f;
}
.btn-wrap input.btn{
	width: 81%;
	padding-top: 15px;
	padding-bottom: 15px;
}
.btn-wrap .btn:hover, .btn-wrap .btn:focus{
	color: #fff;
	background: #e89a2e;
}

.intro{
	float: left;
	margin: -10px 0 5px 0;
}
.intro h1{
	margin: 0 0 10px 0;
	font-size: 2.2em;
}
.notice{
	width: 25%;
	height: 50px;
	float: right;
	margin: 10px 0 0 0;
	padding: 10px 0 0 60px;
	background: url('img/wordpress-logo-small.png') no-repeat top left;
}
.notice img{
	float: left;
}
.notice h3{
	margin: -12px 0 5px 0;
	font-size: 14px;
	font-weight: 400;
    line-height: 1.3;
}
.notice p{
	font-size: 12px;
	margin-bottom: 10px;
}
.notice h3 span{
	font-size: 14px;
}
.floatright{
	float: right;
}
.rightcol{
	float: right;
	width: 50%;
}

.entry-content .leftcol{
	float: left;
	width: 45%;
}
.entry-content .leftcol h3{
	margin-bottom: 10px;
}
.entry-content .rightcol h3{
	margin: 0 0 10px 0;
}
.entry-content h3{
	margin-top: 30px;
	margin-bottom: 10px;
}
.entry-content h5{
	margin-top: 6px;
	margin-bottom: 6px;
}

.entry-content li{
	line-height: 1.5;
	padding: 5px 0;
}
.entry-content iframe{
	margin-bottom: 10px;
}

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

@media all and (max-width: 600px){
	.entry-content .leftcol, .entry-content .rightcol{
		float: left;
		width: 100%;
	}
}


.cff-wp-pricing{
	position: relative;
	width: 944px;
	height: 567px;
	background: url('img/cff-wp-pricing.jpg') no-repeat;
}
.cff-standalone-pricing{
	position: relative;
	float: left;
	width: 348px;
	height: 403px;
	margin-right: 30px;
	background: url('img/standalone-price-box.png') no-repeat;
}
.cff-wp-pricing form, .cff-standalone-pricing form{
	position: absolute;
	bottom: 85px;
}
.cff-standalone-pricing form{
	bottom: 50px;
	left: 112px;
}
.cff-wp-pricing form.personal{
	right: 90px;
	bottom: 115px;
}
.cff-wp-pricing form.developer{
	left: 410px;
}
.cff-wp-pricing form.business{
	left: 93px;
}

.cff-wp-pricing .price, .cff-standalone-pricing .price{
	position: absolute;
	top: 163px;
	font-size: 32px;
	font-weight: bold;
	color: #fff;
}
.cff-standalone-pricing .price{
	top: 73px;
	left: 127px;
}
.cff-wp-pricing .price span, .cff-standalone-pricing .price span{
	margin-right: 5px;
	font-size: 20px;
	font-weight: normal;
	text-decoration:line-through;
}
.cff-wp-pricing .price.personal{
	right: 130px;
}
.cff-wp-pricing .price.developer{
	left: 425px;
}
.cff-wp-pricing .price.business{
	left: 110px;
}

h1.big{
	margin-top: 0;
	margin-bottom: 35px;
	text-align: center;
	font-size: 38px;
}

.highlight{
	background: #edb72f;
	padding: 0 20px;
	font-weight: bold;
}

/* Update notifications signup form */
.sml_subscribe .sml_thankyou{
	width: 100%;
	margin-bottom: 20px;
}
.sml_subscribe p{
	float: left;
	margin-right: 15px;
}
.sml_subscribe label{
	margin-right: 5px;
}

.floatleft{
	float: left;
}

.error p, .error h4{
	display: block;
	width: 100%;
	float: left;
	clear: both;
}
#cff .error a{
	display: inline;
	float: none;
	clear: none;
}


.wpcf7-textarea{
	width: 100%;
}



/*NEW HOME PAGE*/
.done{
	color: #999;
}
.shaded-bg, .white-bg{
	width: 100%;
	float: left;
	padding: 40px 0;
}
.shaded-bg{
	background: #f4edea;
}
.shaded-bg h2{
	margin-top: 0;
}
.banner{
	width: 100%;
	padding: 32px 0 23px 0;
	float: left;
	text-align: center;
	background: #282828;
	margin: 0;
}
.banner img{
	margin-left: -40px;
	padding: 10px 0;
}
.screenshots{
	float: left;
	width: 100%;
	padding: 10px 0;
	margin-bottom: 80px;
	background: #f4edea;
	text-align: center;
}

.features-page .features{
	padding: 40px 0 20px 0;
}
.features{
	width: 100%;
	float: left;
	padding: 20px 0;
}
.features .col,
.reviews .col{
	width: 30%;
	float: left;
	margin: 0;
	margin-left: 5%;
}
.features .col.first,
.reviews .col.first{
	margin-left: 0;
}
.features h3{
	margin-top: 10px;
	margin-bottom: 15px;
}
.features .col h3 span{
	display: block;
	float: left;
	background: url('img/sprite.png') no-repeat;
	width: 33px;
	height: 34px;
	margin: -3px 13px 0 0;
}
.features .customizable h3 span{
	background-position: -36px 0;
	width: 41px;
	margin-right: 10px;
}
.features .seo h3 span{
	background-position: -81px -4px;
	width: 41px;
	height: 30px;
	margin-top: 1px;
	margin-right: 15px;
}
.features .col p{
	margin-bottom: 15px;
}

.features p{
	font-size: 15px;
}
.features li, .features .col p{
	font-size: 13px;
}
.features li{
	margin-left: 18px;
}

.admin-screenshots a{
	display: inline-block;
}


/* WordPress plugin page */
.wpplugin-page .feature{
	float: left;
	width: 94%;
	padding: 0 3% 10px 3%;
	clear: both;
	background: #f4edea;
	margin-top: 10px;
	border-radius: 10px;
}
.wpplugin-page .feature img{
	max-width: 300px;
	width: auto;
	margin: -30px 0 20px 30px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
.wpplugin-page .feature img,
.wpplugin-page .feature iframe{
	background: #fff;
	border: 1px solid #ddd;
	padding: 10px;
}
.clearright{
	clear: right;
}

/* Features page */
.new-features-page h1, .new-features-page h1.entry-title, .new-features-page h2, .new-features-page h3{
	font-family: 'Source Sans Pro', sans-serif;
}
.new-features-page h1.entry-title{
	font-size: 30px;
}
.new-features-page h3{
	font-size: 20px;
	margin-bottom: 25px;
	line-height: 1.2;
}
.new-features-page .feature{
	float: left;
	width: 47%;
	padding: 0 6% 0 0;
	clear: none;
	margin: 0;
}
.new-features-page .feature:last-child,
.new-features-page .feature:nth-child(2n){
	padding-right: 0;
}
.new-features-page .row{
	width: 100%;
	float: left;
	margin-bottom: 15px;
}
.new-features-page .image-placeholder-features,
.new-features-page .feature iframe{
	background: #ccc;
    margin: 0 0 10px 0;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    border: 5px solid #fff;
}

.new-features-page .grid .image-placeholder-features,
.new-features-page .feature iframe{
	margin-bottom: 20px;
}
.new-features-page .grid p{
	margin-bottom: 30px;
	margin-top: -7px;
	font-style: italic;
	font-size: 13px;
}



.support, .reviews, .video, .home .wordpress-plugin{
	float: left;
	width: 100%;
	clear: both;
	margin: 20px 0 0 0;
	padding: 20px 0;
	background: #f4edea;
}
.reviews{
	background: #fff;
	padding-top: 100px;
}
h2{
	font-size: 24px;
}
.support h2 span,
.reviews h2 span,
.video h2 span,
.questions h2 span,
.home .wordpress-plugin h2 span{
	display: block;
	float: left;
	background: url('img/sprite.png') no-repeat -126px 0;
	width: 33px;
	height: 42px;
	margin: -1px 15px 0 0;
}
.support .testimonial{
	float: left;
	clear: none;
	width: 47.2%;
	margin: 0 0 12px 1.5%;
	padding: 1%;
	background: #fff;

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14902);
	-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14902);
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14902);
}
.support .testimonial.first,
.support.white-bg .testimonial.first{
	margin-left: 0;
}
.support.white-bg .testimonial.first{
	margin-right: 9px;
}

.actions.bottom{
	position: relative;
	bottom: -50px;
}

/* Pricing page WP reviews */
.support .all-reviews{
	float: left;
	padding-left: 20px;
}


.guarantee{
	text-align: center;
	padding-bottom: 30px;
}
.guarantee h3{
	margin: 0;
	font-size: 26px;
	font-weight: normal;
}
.guarantee p{
	margin: -10px 0 0 0;
	font-size: 18px;
}

.pricing{
	position: relative;
	float: left;
	width: 99%;
	margin: 0 1% 0 0;
	background: #ddd3cf;
	padding: 8px;

	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
}
.instagram-pricing .pricing section{
	width: 32.6%;
	min-height: 400px;
	padding-bottom: 0;
}

.pricing section{
	float: left;
	clear: none;
	position: relative;
	width: 24.2%;
	min-height: 450px;
	margin-left: 1%;
	padding-bottom: 150px;
	background: #fff;
	text-align: center;
	color: #776963;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 

	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}
.pricing section:first-child{
	margin-left: 0;
}

.pricing header{
	margin: 15px 0 0 0;
	padding: 15px 0 18px 0;
	background: #fffaef;
	border-top: 1px solid #ddd3cf;
	color:  #66501a;
}
.pricing .one header,
.pricing .two header,
.pricing .three header,
.pricing .four header{
	padding: 27px 0 29px 0;
}
.pricing .two header{
	background: #fff4da;
}
.pricing .three header{
	background: #fdecbf;
}
.pricing .four header{
	background: #ffe8af;
}
.pricing header *{
	margin: 0;
	padding: 0;
}
.pricing header h4{
	font-size: 18px;
	font-weight: normal;
}

.pricing .info p{
	padding: 8px;
	margin: 0;
	border-top: 1px solid #ddd3cf;
	font-size: 13px;
	color: #776963;
	line-height: 1.5;
}
.pricing .four .option{
	padding: 26px 0;
	margin-bottom: 10px;
}
.pricing .option input{
	top: 2px;
	position: relative;
}

.popular{
	position: absolute;
	top: 3px;
	right: -4px;
	font-size: 12px;
	color: #fff;
	line-height: 31px;

	background: url('img/sprite.png') no-repeat -47px -46px;
	width: 112px;
	height: 31px;
}
p.note{
	width: 55%;
	float: left;
	margin: 20px 22.5%;
	text-align: center;
	font-size: 11px;
	color: #776963;
	line-height: 1.4;
}
.pricing header .price{
	font-size: 36px;
	line-height: 1.4;
	font-weight: bold;
	margin-top: -4px;
}
.price .currency,
.price .lifetime-note{
	font-size: 12px;
	font-weight: normal;
	position: relative;
	top: -8px;
}
.price span.strike{
	font-size: 18px;
	top: -6px;
	text-decoration: line-through;
}
.pricing header .small{
	font-size: 12px;
	padding-top: 3px;
}
.pricing .amount sup{
	font-size: 16px;
	top: -0.9em;
}
.pricing .savings sup {
    top: 0em;
    font-size: 15px;
}

.pricing .bottom{
	width: 100%;
	position: absolute;
	bottom: 20px;
}
.edd_download_purchase_form{
	margin-top: 20px;
}

.option{
	text-align: center;
	padding: 15px 0;
	background: #f4edea;
	border-top: 1px solid #ddd3cf;
	border-bottom: 1px solid #ddd3cf;
	font-size: 13px;
}

.support.white-bg{
	padding-top: 10px;
	padding-bottom: 40px;
	background: #fff;
}
.support.white-bg .testimonial {
	border: 1px solid #ddd;

	width: 49%;
	margin: 0 0 10px 1%;
	padding: 1% 0.8%;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.support.white-bg .testimonial:first-child {
	margin-left: 0;
}
.pricing-page .questions{
	padding: 45px 0 80px 0;
	margin-bottom: -120px;
}
.no-top{
	/*margin-top: 24px;*/
	margin-top: 0;
}

.pricing-page .deal{
	width: 95%;
	background: #e89a2e;
	color: #fff;
	text-align: center;
	padding: 6px 2.5% 6px 2.5%;
	margin: -7px 0 15px 0;
	line-height: 1.4;
}


/*Sidebar*/
#secondary{
	margin-top: 60px;
}
#secondary .widget_text #cff{
	/*-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;*/
}


.php-btn{
	display: none;
}



/*** DEMO ***/
.demo-form{
	float: left;
	width: 90%;
	margin-bottom: 15px;
	padding: 25px 5%;
	background: #f4edea;
	font-size: 12px;
  
  	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}
.demo-form h4{
	margin: 0 0 15px 0;
}
.demo-form .row{
	width: 100%;
	float: left;
	margin-bottom: 15px;
}
.demo-form label{
	display: block;
	float: left;
	padding-top: 7px;
}
.demo-form input{
	max-width: 95% !important;
	margin-left: -3px;
}
.demo-form input[type=radio],
.demo-form input[type=checkbox]{
	margin-top: 8px;
}
.demo-form input[type=radio]{
	position: relative;
	top: 2px;
}
.demo-form input[type=checkbox]{
	margin-left: 5px;
}
.demo-form .bottom{
	padding-top: 10px;
	margin-bottom: 0;
}
.demo-form .bottom p{
	width: 100%;
	float: left;
	font-size: 11px;
	margin-top: 15px;
}
.demo-form .row.types div{
	width: 100%;
	float: left;
	clear: both;
	margin-top: 3px;
}
.demo-form .row.types input[type=checkbox] {
	float: left;
	margin: 6px 5px 0 0;
}
.btn.big.buy{
	padding: 7px 30px 17px;
}
.btn.big.buy span{
	line-height: 1.1;
}
.layout{
	width: 100%;
	clear: both;
}
.layout input{
	margin-left: 0;
}
#cff p{
	font-size: 13px;
}


#secondary .btn.big{
	width: 90%;
	padding: 12px 5% 15px;
	margin: 0;
	/*font-size: 18px;*/
}
#secondary .btn.big span{
	margin-top: 10px;
	/*font-size: 13px;*/
}

/* DOCS */
.docs .entry-content img{
	border: 1px solid #ddd;
}
.contents{
	background: #eee;
	border-radius: 8px;
	padding: 20px;
	margin: 0 0 10px 0;
}
.contents h4{
	margin-bottom: 10px;
}
.contents li{
	padding: 4px 0;
}
/* Docs sidebar */
.docs-single .contents{
	float: right;
	width: 19%;
	background: none;
}
.docs-single .page{
	width: 75%;
	clear: left;
}
.docs-single .contents .sub-menu {
	padding: 4px 0;
}
.docs-single .contents .sub-menu li{
	font-size: 13px;
	line-height: 1.2;
	padding: 5px 0;
}
.docs-single .contents h3 {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
/* Docs main */
/*.docs.docs-main .contents{
	width: 100%;
}
.docs.docs-main .contents .sub-menu li{
	font-size: 14px;
	line-height: 1.3;
	padding: 3px 0;
}
.docs .contents h3 {
  padding-bottom: 10px;
  border-bottom: none;
  margin-bottom: 20px;
  font-size: 24px;
}*/
.doc .shadow {
    box-shadow: 0 0 40px 0 rgba(0,0,0,0.15);
}


.screenshots{
	position: relative;
}

.play-video{
	display: block;
	position: absolute;
	top: 30%;
	left: 50%;
	margin-left: -40px;

	width: 80px;
	height: 80px;
	background: #000;
	background: rgba(0,0,0,0.5);
	border-radius: 100px;
	text-indent: -9999px;

	background: #edb72f;
	border: 3px solid rgba(255,255,255,0.7);
	margin-left: -43px;
	margin-top: -3px;

	box-shadow: 0 0 60px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 0 60px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0 0 60px rgba(0,0,0,0.3);
}
.play-video:hover,
.play-video:focus{
	background: #e34f0e;
	border: 3px solid #fff;
}
.play-video img{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -13px;
	margin-top: -21px;
}
.youtube-video{
	/*position: absolute;*/
	top: 0;
	left: 0;
	width: 100%;

	border: 1px solid #eee;
}
input.sml_submitbtn{
	font-size: 13px;
	padding: 9px 20px;
}
.payment-types{
	width: 100%;
	float: left;
	clear: both;
	text-align: center;
}
.pricing-page .payment-types{
	margin-top: 10px;
}
.payment-types p.note{
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.5;
}


/* FAQs */
.accord{
	position: relative;
	padding: 0 0 20px 0;
	clear: both;	
}
.accord p{
	position: relative;
	display: block;
	margin: 20px 0;
	padding: 0;
}
.accord h3{
	position: relative;
	background: #ddd;
	padding: 8px 2% 10px 2%;
	width: 96%;
	margin: 0;
	cursor: pointer;

	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
.accord h3.on{
	background: #e89a2e;
	color: #fff;
}
.accord h3.on:before{
	color: #fff;
}

.accord h3:before{
	content: '+';
	font-size: 30px;
	font-weight: bold;
	line-height: 30px;
	position: relative;
	left: 0;
	top: 4px;
	margin-right: 10px;
	color: #bbb;
}
.accord.open h3:before{
	content: '-';
	top: 2px;
	left: 2px;
	margin-right: 17px;
}

/* Access Token Form */
#getToken{
	margin-bottom: 20px;
}
#getToken label{
	margin-right: 5px;
}
#getToken input{
	margin-right: 15px;
}
#getToken #id{
	width: 130px;
}
#getToken #secret{
	width: 240px;
}
.success,
.wpforms-confirmation-container-full{
	background: #BCE0C2;
	padding: 10px;
	border: 1px solid #6AB074;
	color: #214F28;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.failure{
	background: #F7E6E6;
	padding: 10px;
	border: 1px solid #BA7B7B;
	color: #592626;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.yellow-notice{
	background: #FFEDB5;
	padding: 10px;
	border: 1px solid #f0c465;
	color: #e34f0e;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

/* FOOTER */
footer .site-info{
	overflow: hidden;
	margin-bottom: 10px;
}
footer .copyright{
	float: left;
	padding-right: 17px;
	border-right: 1px solid #fff;
	border-right: 1px solid rgba(255,255,255,0.3);
	color: #fff;
	color: rgba(255,255,255,0.8);
}
footer a{
	text-decoration: none;
}
.menu-footer-container{
	float: left;
	margin: 0 0 0 15px;
}
.menu-footer-container li{
	float: left;
	margin-right: 15px;
}
nav .inner, footer .inner{
	position: relative;
}
.twitter-follow-button{
	margin-right: 10px;
}

/* Footer share button */
.social-share-button{
	position: relative;
	z-index: 1;
    padding: 2px 12px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
    font-size: 13px;
}
.social-share-button:hover,
.social-share-button:focus{
	background: rgba(255,255,255,0.2);
	color: #fff !important;
}
#footer-share-links{
	opacity: 0;
	position: absolute;
	z-index: 0;
	top: 18px;
	left: 0;

    display: inline-block;
    padding: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    height: 20px;
}
#footer-share-links.cff-show{
	opacity: 1;
	left: 152px;
	transition: all 0.3s ease;
}
.sb-social-links a{
	padding: 5px;
	font-size: 14px;
}
footer[role="contentinfo"] .sb-social-links a:hover{
	color: #e34716;
}

#edd_cc_address #edd-card-address-wrap,
#edd_cc_address #edd-card-address-2-wrap,
#edd_cc_address #edd-card-city-wrap,
#edd_cc_address #edd-card-zip-wrap {
    /*display: none !important;*/
}

.edd-submit, #edd-purchase-button, input[type=submit].edd-submit {
	border: none;
}
#edd-purchase-button{
	float: left;
	font-weight: bold;
}
#edd_checkout_form_wrap p.edd-cancel{
	float: left;
	clear: none;
	margin: 5px 0 0 15px;
	font-size: 12px;
}

#siteseal{
	float: right;
	margin-top: -50px;
}
.support-success{

	background: #BCE0C2;
	padding: 15px 25px;
	border: 1px solid #6AB074;
	color: #214F28;
	border-radius: 8px;

}
.support-success h3{
	line-height: 2.5;
	margin: 0;
	padding: 0;
}
.entry-content .support-success p{
	margin-bottom: 10px;
}


/*Interior menu*/
.site-content .sub-menu{
	padding: 4px 10px;
}
.menu .no-link > a{
	color: #444;
	font-weight: bold;
}



/* WordPress.org reviews */
.reviews h2 span{
	background-position: 0 -40px;
}

.review{
	padding: 20px 0;
	/*border-bottom: 3px dashed #eee;*/
}

/* Avatar */
.reviewer-avatar {
	float: left;
	width: 44px;
}
.reviewer-avatar a{
	display: block;
	float: left;
	width: 44px;
}
.reviewer-avatar img {
vertical-align: bottom;
margin-right: 8px;
margin-top: 4px;
border-radius: 3px;
width: 36px;
height: 36px;
}

/* Date */
.review .review-date,
.review .review-wp-version{
	display: none;
}

/* Header */
.review-head{
	float: left;
	width: 100%;
}
/*div.star-holder {*/
div.review-stars{
position: relative;
height: 17px;
width: 92px;
float: left;
}
div.star-holder .star-rating, div.review-stars .wporg-ratings {
background: url('img/5-stars.png') repeat-x top left;
width: 100%;
height: 17px;
float: left;
text-indent: 100%;
overflow: hidden;
white-space: nowrap;
margin: 3px 0 0 2px;
}
.review-title {
float: left;
margin-left: 0.75em;
font-weight: bold;
font-size: 1.1em;
}

/* Info */
.reviewer-info {
float: left;
}
.review-body {
margin-bottom: 0;
clear: both;
width: 100%;
}
.review-body p{
	margin: 0;
	padding: 5px 0;
	font-size: 13px;
}
.reviews-comment-link{
	display: none;
}
.reviewer {
display: -moz-inline-stack;
display: inline-block;
vertical-align: top;
zoom: 1;
*display: inline;
font-size: 12px;
}


.video{
	background: #f4edea;
	padding-bottom: 60px;
}
.video h2 span{
	background-position: -165px 0;
}

.questions h2 span{
	background-position: -165px -48px;
}

.video,
.reviews,
.support{
	/*border-top: 3px dashed #e0e0e0;*/
	/*border-top: 1px solid #f4edea;*/
	margin-top: 0;
}
.support{
	/*border-top: 1px solid #ebe3df;*/
}
.video{
	/*border-top: 1px solid #f1ebe8;*/
}


/* WordPress plugin CFF page section */
.home .wordpress-plugin{
	padding: 10px 0 40px 0;
	background: #fff;
}
.home .wordpress-plugin ul{
	float: left;
}
.home .wordpress-plugin li{
	padding: 3px 0;
	line-height: 1.3;
}
.home .wordpress-plugin .slim{
	float: right;
	margin: 45px 40px 0 0;
}
.home .wordpress-plugin h2 span{
	background-position: -203px -53px;
}
#reviews .show-all{
	width: 100%;
	display: block;
	padding: 10px 0;
	margin: 20px 0 15px 0;

	text-align: center;
	color: #333;
	background: #f4edea;
	text-decoration: none;
	font-weight: bold;
}
#reviews .show-all:hover,
#reviews .show-all:focus{
	background: #edb72f;
	color: #fff;
}
#reviews .show-all span{
	display: -moz-inline-stack;
	display: inline-block;
	vertical-align: top;
	zoom: 1;
	*display: inline;

	background: url('img/sprite.png') no-repeat -244px -88px;
	width: 9px;
	height: 7px;
	margin: 9px 0 0 9px;
}
#reviews .show-all:hover span,
#reviews .show-all:focus span{
	background-position: -261px -88px;
}
#reviews.open .show-all span{
	background-position: -277px -87px;
}
#reviews.open .show-all:hover span,
#reviews.open .show-all:focus span{
	background-position: -294px -87px;
}

/* Gallery page 2014 */
.soliloquy-thumbnails-container .soliloquy-controls{
	/*display: none !important;*/
}
.soliloquy-thumbnails-container{
	margin-top: 20px !important;
}
.soliloquy-thumbnails-container .soliloquy-item {
	opacity: 1 !important;
}
.page-template-page-gallery-php .wrapper{
	background: #f4edea;
}
.gallery .inner{
	width: 988px;
	max-width: 988px;
}
.gallery img{
	background: #fff;
	border: 1px solid #ddd;
	padding: 10px;
	margin: 5px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
.gallery .soliloquy-thumbnails-container img:hover{
	background: #e34f0e;
	border: 1px solid #e34f0e;
}
.gallery-page-new article{
	margin-bottom: 0;
}
.page-template-page-gallery-php footer{
	margin-top: 0;
}
.page-template-page-gallery-php .actions{
	margin-bottom: 25px;
}


.home-int-nav{
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0;
	width: 100%;
	float: left;
	margin: 0;
	padding: 0;
	background: #282828;
	overflow: hidden;
}
.home-int-nav .inner{
	position: relative;
}
.home-int-nav a{
	display: block;
	float: left;
	padding: 5px 12px 6px 12px;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}
.home-int-nav a:hover,
.home-int-nav a:focus{
	color: #edb72f;
}
.home-int-nav a.first{
	margin-left: 50px;
}

a.to-top{
	display: block;
	position: absolute;
	background: url('img/sprite.png') no-repeat -203px -5px;
	width: 39px;
	height: 42px;
	text-indent: -9999px;
	padding: 0;
	margin: 0;
	top: 0;
	left: 0;
	height: 33px;
	overflow: hidden;
}
a.to-top:hover,
a.to-top:focus{
	left: -11px;
	background-position: -249px -17px;
	width: 61px;
}

.user-notice{
	position: absolute;
	top: 0;
	width: 100%;
	background: #e89a2e;
	color: #fff;
	font-size: 12px;
	padding: 5px 0;
	text-align: center;
}
.user-notice .inner{
	max-width: 960px;
	margin: 0 auto;
}

#edd_show_terms{
	font-size: 12px;
	padding: 8px 0;
}
#edd_terms{
	font-size: 12px;
	padding: 0 20px 20px 20px;
	border: 1px solid #eee;
	max-height: 350px;
	overflow: auto;
}
#edd_terms h3{
	font-size: 14px;
}
#edd_terms h4{
	font-size: 12px;
	margin: 20px 0 10px 0;
}
#edd_terms p{
	margin-bottom: 10px;
}


.edd_form, #loginform, .aff-reg, .guest-register-form, .affiliates-registration, #affwp-register-form{
	padding: 20px;
	background: #f9f9f9;
	border: 1px solid #e9e9e9;
	border-radius: 5px;
	margin: 20px 0 0 0;
	clear: both;
}
.edd_form .required, #loginform .required, .affiliates-registration .required, #affwp-register-form .required{
	color: #333;
}
.edd_form legend, #loginform legend, .guest-register-form legend{
	padding: 0 0 10px 0;
	font-weight: bold;
}
#edd_login_form label{
	width: 80px;
	display: block;
	float: left;
	line-height: 32px;
}
.edd_form .edd_submit{
	margin: 10px 0;
}
.guest-register-form .form-submit{
	margin-top: 10px;
}
.edd_form .edd-lost-password{
	float: left;
	clear: none;
	margin: 5px 0 0 0;
	font-size: 12px;
}
.entry-content{
	float: left;
	width: 100%;
}
#edd_profile_editor_form legend{
	font-weight: bold;
	padding: 10px 0;
}

/* Hide renewal form */
#edd_sl_renewal_form{
	display: none;
}

.responsive-tabs__list li{
	margin: 0 10px 0 0;
	padding: 10px 20px;
}
code{
	background: #eee;
	padding: 2px;
}


/* Login form  - #f7f3f1 */ 
#loginform{
	float: left;
	width: 54%;
	margin: 25px 0 0 0;
	border-radius: 5px;
	padding: 20px 30px 22px 30px;
	box-sizing: border-box;
	background: none;
	border-radius: 0;
}
#loginform p,
#loginform .login-username label,
#loginform .login-username input,
#loginform .login-password label,
#loginform .login-password input{
	width: 100%;
	display: block;
	box-sizing: border-box;
}
#loginform .login-username label,
#loginform .login-password label{
	padding-bottom: 5px;
    font-size: 13px;
}
#loginform p{
	padding: 10px 0;
}
#loginform input{
	padding: 15px;
	font-size: 14px;
}
.account-new .login-help{
	float: right;
	width: 40%;
	padding-top: 35px;
}
.account-new .login-help h3{
	margin-top: 0;
}
.account-new .login-help p{
	font-size: 13px;
	line-height: 1.6;
}
#loginform .login-remember{
	padding: 5px 0 0 0;
    font-size: 12px;
    float: left;
    clear: none;
    display: inline-block;
    width: auto;
}
#loginform .login-remember input{
	position: relative;
	top: 2px;
}
/* Lost password */
.sb-lost-password{
	float: right;
    display: inline-block;
	font-size: 12px;
	padding: 5px 0 0 0;
	margin: 0;
	
	display: -moz-inline-stack;
	display: inline-block;
	vertical-align: top;
	zoom: 1;
	*display: inline;
}
#loginform .login-submit{
	float: left;
	clear: both;
	padding-top: 25px;
}
#loginform .login-submit #wp-submit{
	padding: 12px 0;
	width: 100%;
	display: block;
	background: #e89a2e;
    color: #fff;
    text-decoration: none;
    border: 1px solid #ea8519;
    border-bottom-width: 4px;
    border-radius: 4px;
    line-height: 1.1;
   	font-size: 16px;
    font-weight: bold;
}
#loginform .login-submit #wp-submit:hover,
#loginform .login-submit #wp-submit:focus {
    background: #e34716;
    border: 1px solid #cf3100;
    border-bottom-width: 4px;
    border-radius: 4px;
}
#loginform .failure {
    float: left;
    padding: 10px 15px;
    margin-top: 5px !important;
}

/* Affiliate registration form */
#affwp-register-form{
	width: 75%;
}
#affwp-register-form input[type="text"],
#affwp-register-form input[type="password"]{
	width: 30%;
}
#affwp-register-form input[type="email"]{
	width: 65%;
}
#affwp-register-form input[type="submit"]{
	margin: 15px 0 0 0;
}
#affwp-register-form.affwp-form label {
    cursor: pointer;
    width: 25%;
    display: inline-block;
}
#affwp-register-form.affwp-form textarea{
	width: 100%;
	margin: 5px 0 10px 0;
}
#affwp-register-form.affwp-form .affwp-tos{
	margin: 15px 0 5px 0;
    display: block;
    width: 90%;
}


/* ACCOUNT PAGE */
.site-content.account{
	margin-top: 30px;
}
.account #loginform{
	/*margin-top: -30px;*/
}
.small-banner{
	background: #e34f0e;
	background: linear-gradient(115deg, rgba(227,79,14,1) 0%, rgba(232,136,46,1) 100%);
	color: #fff;
	width: 100%;
	padding: 20px 0 25px 0;
	font-size: 24px;
	font-weight: bold;
	margin: 0;
}
.home .small-banner{
	margin-top: -24px;
}
#edd_purchase_receipt_products .edd_download_file_link{
	display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  *display: inline;

  padding: 7px 14px;
  margin: 0 0 0 -10px;
  background: #333;
  color: #eee;
  border: none;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;

  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#edd_purchase_receipt_products .edd_download_file_link:hover{
	background: #e34f0e;
	color: #fff;
}
#edd_purchase_receipt_products .edd_download_file_link .fa{
	margin-left: 10px;
}


.edd_sl_license_key_expired{
	position: relative;
}
.tooltip{
	position: absolute;
	bottom: 0;
	left: -100px;
	width: 220px;
	padding: 15px;
	background: #eee;
	border: 1px solid #ddd;
	border-radius: 3px;
	text-align: center;
}

/* Guest registration form */
.guest-register-form label{
	width: 220px;
	float: left;
	line-height: 32px;
}
.guest-register-form .form-required{
	display: none;
}
.guest-register-form .description{
	font-size: 12px;
	padding-left: 5px;
	font-style: italic;
}
.entry-content .guest-register-form form p {
    margin-bottom: 5px;
}


/* Tabs */
#content .responsive-tabs .responsive-tabs__panel{
	padding-bottom: 20px;
}
.tabcontent .edd_form,
.tabcontent #loginform,
.tabcontent .aff-reg,
.tabcontent .guest-register-form{
	margin-top: 0;
}
.entry-content .responsive-tabs__panel{
	padding: 25px;
	overflow: hidden;

	-moz-border-radius: 0 6px 6px 6px;
	-webkit-border-radius: 0 6px 6px 6px;
	border-radius: 0 6px 6px 6px;
}
.responsive-tabs .responsive-tabs__list {
	padding-bottom: 3px !important;
}
.responsive-tabs .responsive-tabs__list li{
	font-size: 14px;
}

/* Extensions tabs */
.download_category-cff-extension .responsive-tabs .responsive-tabs__list li.responsive-tabs__list__item{
	padding: 15px 20px 10px 20px;
    font-weight: bold;
    color: #444;
    font-size: 16px;
    border-bottom: 0;
}
.download_category-cff-extension .responsive-tabs .responsive-tabs__list li.responsive-tabs__list__item{
	background: rgba(0,0,0,0.05);
}
/* Active */
.download_category-cff-extension .responsive-tabs .responsive-tabs__list li.responsive-tabs__list__item--active{
	top: 2px;
	background: #fff;
}
/* Hover */
.download_category-cff-extension .responsive-tabs .responsive-tabs__list li.responsive-tabs__list__item:not(.responsive-tabs__list__item--active):hover{
	top: 2px;
	background: rgba(255,255,255,0.5);
	border-color: #ddd;
}


/* Affiliate section */
#affwp-affiliate-dashboard{
	padding: 20px;
	background: #fff;
    border: 1px solid #ddd;
    border-top: 1px solid #ddd;

    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    border-top-left-radius: 0px;
}


/* Renew license form */
.renew-license .gfield{
	margin-bottom: 0 !important;
}
.gform_wrapper .renew-license .left_label .gfield_label {
	width: 120px;
	line-height: 31px;
}
.gform_wrapper .renew-license .gform_footer.left_label {
	padding: 0;
}
.gform_wrapper .renew-license .gform_footer {
	padding: 0;
	margin: 10px 0;
}
.gform_wrapper .renew-license .gform_title{
	font-size: 14px;
}

/* Upgrade license form */
#gform_wrapper_4.gform_wrapper .gform_footer.left_label, #gform_wrapper_4.gform_wrapper .gform_footer.right_label {
  margin-left: 0%;
}

/* License upgrades */
#edd_sl_license_upgrades .sb_normal_price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}
#edd_sl_license_upgrades .sb_discount_price {
    font-weight: bold;
}

/* Support form confirmation message */
.gform_confirmation_wrapper{
	margin-top: 15px;
}

/* Form button */
input.gform_button {
	background: #e34f0e;
	color: #fff;
	border: none;
	padding: 10px 15px;
}
input.gform_button:hover,
input.gform_button:focus{
	background: #e89a2e;
	color: #fff;
}

#edd_user_history,
#edd_user_history table,
#edd_user_history tr,
#edd_user_history td{
	margin: 0;
	padding: 0;
	border: none;
}
#edd_user_history table{
	table-layout: auto;
}
#edd_user_history tbody{
	/*border-top: 1px solid #f0f0f0;*/
	padding-top: 20px;
}
#edd_user_history p{
	margin: 0;
	padding: 0 0 10px 0;
}
#edd_user_history .purchase{
	padding: 5px 0 15px 0;
	margin: 0 0 15px 0;
	border-bottom: 2px solid #f0f0f0;
}
#edd_user_history .edd_purchase_id{
	font-size: 16px;
	font-weight: bold;
	margin-right: 5px;
}
#edd_user_history .edd_purchase_details{
	font-size: 13px;
    background: #f9f9f9;
    color: #333;
    border: 1px solid #ddd;
    display: inline-block;
    margin-left: 10px;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
}
#edd_user_history .edd_purchase_details a{
	color: #333;
	text-decoration: none;
}
#edd_user_history .edd_purchase_details:hover {
    background: #eee;
    border: 1px solid #ccc;
	color: #333;
}
#edd_user_history .edd_purchase_amount{
	margin-right: 10px;
	border-left: 1px solid #ddd;
	padding-left: 10px;
}
#edd_user_history .edd_purchase_date{
	border-left: 1px solid #ddd;
	font-weight: bold;
	margin: 0 10px 0 0;
	padding-left: 10px;
}
#edd_user_history .edd_purchase_row td {
    vertical-align: top;
    display: inline-block;
    padding-right: 12px;
    border-right: 1px solid #ddd;
    margin-right: 12px;
}
#edd_user_history .edd_purchase_row td:last-child{
	border: none;
}
/* Add "Product" label to licenses */
#edd_user_history .purchase .edd_license_key .license_label {
    font-weight: bold;
}
#edd_purchase_history_pagination{
	margin: -10px 0 0 0;
	font-size: 12px;
}
#edd_purchase_history_pagination .page-numbers{
	padding: 0 2px;
}

/* IE */

.ie .support,
.ie .reviews,
.ie .video{
	float: left;
	width: 100%;
}
.ie .reviewer {
	line-height: 30px;
	padding-left: 8px;
}

.ie .author-avatar {
	float: left;
	margin-top: 8px;
	margin-top: 0.571428571rem;
}
.ie .author-description {
	float: right;
	width: 80%;
}
.ie .site,
.ie #page {
	margin: 0 auto;
	width: 100%;
	overflow: hidden;
}
.ie .site .inner{
	width: 960px;
	max-width: 960px;
	margin: 0 auto;
}
.ie .site-content {
	float: left;
	width: 65.104166667%;
}
.ie body.template-front-page .site-content,
.ie body.single-attachment .site-content,
.ie body.full-width .site-content, .site-content.full-width  {
	width: 100%;
}
.ie .widget-area {
	float: right;
	width: 26.041666667%;
}
.ie .site-header h1,
.ie .site-header h2 {
	text-align: left;
}
.ie .site-header h1 {
	font-size: 26px;
	font-size: 1.857142857rem;
	line-height: 1.846153846;
	margin-bottom: 0;
}
.ie .main-navigation ul.nav-menu,
.ie .main-navigation div.nav-menu > ul {
	/*border-bottom: 1px solid #ededed;
	border-top: 1px solid #ededed;*/
	display: inline-block !important;
	text-align: left;
	width: 100%;
	color: #fff;
}
.ie .main-navigation {
	background: #e34f0e;
}
.ie .main-navigation ul {
	margin: 0;
	text-indent: 0;
}
.ie .main-navigation li a,
.ie .main-navigation li {
	display: inline-block;
	text-decoration: none;
}
.ie .main-navigation li a {
	padding-left: 25px;
	padding-right: 25px;
	margin-left: -4px;
	border-bottom: 0;
	color: #fff;
	line-height: 3.692307692;
	text-transform: uppercase;
	white-space: nowrap;
}
.ie .main-navigation li a:hover {
	color: #fff;
	background: #e89a2e;
}
.ie .main-navigation li {
	margin: 0 0 0 0;
	margin: 0;
	position: relative;
}
.ie .main-navigation li ul {
	display: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 100%;
	z-index: 1;
}
.ie .main-navigation li ul ul {
	top: 0;
	left: 100%;
}
.ie .main-navigation ul li:hover > ul {
	border-left: 0;
	display: block;
}
.ie .main-navigation li ul li a {
	background: #e34f0e;
	display: block;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	padding: 8px 10px;
	padding: 0.571428571rem 0.714285714rem;
	width: 180px;
	width: 12.85714286rem;
	white-space: normal;
}
.ie .main-navigation li ul li a:hover {
	background: #e89a2e;
	color: #fff;
}
.ie .home .main-navigation li:first-child a,
.ie .main-navigation .current-menu-item > a,
.ie .main-navigation .current-menu-ancestor > a,
.ie .main-navigation .current_page_item > a,
.ie .main-navigation .current_page_ancestor > a {
	background: #e89a2e;
	color: #fff;
	font-weight: bold;
}
.ie .menu-toggle {
	display: none;
}
.ie .entry-header .entry-title {
	font-size: 24px;
}
.ie #respond form input[type="text"] {
	width: 46.333333333%;
}
.ie #respond form textarea.blog-textarea {
	width: 79.666666667%;
}
.ie .template-front-page .site-content,
.ie .template-front-page article {
	overflow: hidden;
}
.ie .template-front-page.has-post-thumbnail article {
	float: left;
	width: 47.916666667%;
}
.ie .entry-page-image {
	float: right;
	margin-bottom: 0;
	width: 47.916666667%;
}
.ie .template-front-page .widget-area .widget,
.ie .template-front-page.two-sidebars .widget-area .front-widgets {
	float: left;
	width: 51.875%;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.ie .template-front-page .widget-area .widget:nth-child(odd) {
	clear: right;
}
.ie .template-front-page .widget-area .widget:nth-child(even),
.ie .template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
	float: right;
	width: 39.0625%;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.ie .template-front-page.two-sidebars .widget,
.ie .template-front-page.two-sidebars .widget:nth-child(even) {
	float: none;
	width: auto;
}
.ie .commentlist .children {
	margin-left: 48px;
	margin-left: 3.428571429rem;
}



/* EXTENSIONS */
.page-template-page-extensions-php .wrapper{
	background: #f4edea;
}

.extensions{
	width: 100%;
	float: left;
	clear: both;

	/*background: #ddd3cf;*/
	/*padding: 1%;*/
	
}

.cff-extension{
    display: block;
    float: left;
    width:23.7%;
    
    padding: 1%;
    margin: 10px 1.3% 0 0;
    

    /*
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: inset 0 0 5px #eee;*/
    text-decoration: none;

    float: left;
	clear: none;
	position: relative;
	background: #ddd3cf;
	text-align: center;
	color: #776963;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
}
.cff-extension .inside{
	float: left;
	clear: both;
	height: 265px;
	background: #fff;
	padding: 8px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

.cff-extension h3,
.cff-extension p{
    padding: 5px 0;
    margin: 0;
}
.cff-extension p{
	padding: 10px 0;
	margin: 0;
	line-height: 1.3;
}
.cff-extension h3{
	background: #fbe7b4;
	border: 1px solid #ddd3cf;
	margin: 0;

	color: #614E1D;
	padding: 30px 0;
	font-size: 24px;
	width: 100%;

	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	text-align: center;
}
.cff-extension p.desc{
	height: 100px;
	padding: 10px;
}
.cff-extension img{
	max-width: 100%;
	margin: 10px 0;
}
.cff-extension .cff-activate{
	/*float: right;*/
	background: #eee;
	border: 1px solid #ddd;
	border-radius: 3px;
	padding: 5px 8px;
	margin: 10px 0 0 0;
	float: left;
	/*clear: both;*/
}
.cff-extension label{
	margin: 0 5px;
	position: relative;
	top: -2px;
}
.cff-extension input{
	position: relative;
	top: 1px;
}
.cff-extension .cff-active .cff-activate{
	background: #f7faf1;
	border: 1px solid #7ad03a;
}
.cff-extension .cff-requires{
	font-size: 12px;
	font-style: italic;
	padding-bottom: 15px;
}
.cff-extension .cff-doc{
	/*float: right;*/
	padding: 13px 0;
}

.cff-extension .edd_purchase_submit_wrapper{
	float: left;
}
.edd_price_options{
	font-size: 12px;
}
.edd_price_options *{
	padding: 0;
	margin: 0;
}
.edd_price_options input{
	position: relative;
	top: 2px;
}
.single-download .edd_download_purchase_form .edd_price_options li{
	padding: 3px 0;
}

.extension-details h4{
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.cff-extension .button.sb-btn{
	background: #e34f0e;
	text-decoration: none;
	border: none;

	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
.button{
	text-decoration: none !important;
}
.cff-extension.cff-ext-soon .sb-btn,
.cff-extension.cff-ext-soon .sb-btn:hover,
.cff-extension.cff-ext-soon .sb-btn:focus{
	background: #d5c8c3;
	cursor: default;
}


.single-download .wrapper{
	background: #f4edea;
}
.single-download #secondary {
	margin-top: 60px;
	background: #fff;
	padding: 20px 15px 5px 15px;
	border: 1px solid #ddd;

	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}



/* Only show Overview subnav on the Overview page */
#menu-item-52 .sub-menu .current-menu-item a,
#menu-item-33761 .sub-menu .current-menu-item a,
#menu-item-173769 .sub-menu .current-menu-item a{
	background: #e34f0e;
	font-weight: normal;
}
#menu-item-52 .sub-menu .current-menu-item a:hover,
#menu-item-52 .sub-menu .current-menu-item a:focus,
#menu-item-33761 .sub-menu .current-menu-item a:hover,
#menu-item-33761 .sub-menu .current-menu-item a:focus,
#menu-item-173769 .sub-menu .current-menu-item a:hover,
#menu-item-173769 .sub-menu .current-menu-item a:focus{
	background: #e89a2e;
}
.page-template-page-cff-php #menu-item-52 .sub-menu li,
.page-template-page-cff-php #menu-item-33761 .sub-menu li,
.page-template-page-cff-php #menu-item-173769 .sub-menu li{
	display: block;
}


/* Affiliate tab */
.account .paypal-notice{
	margin-top: 10px;
	display: none;
}
.account .affiliate-profile .field,
.account .affiliate-stats .from-date,
.account .affiliate-stats .thru-date{
	float: left;
	margin-right: 15px;
}
.account .affiliate-profile .submit,
.account .affiliate-stats .submit{
	float: left;
	margin: 24px 0px 0px 0;
}
.account .affiliate-stats .submit{
	margin: 0;
}
.account .affiliate-stats .submit input{
	margin-right: 10px;
}
.account #affiliate-profile,
.account #setfilters{
	overflow: hidden;
}
.account .accord{
	padding-bottom: 0;
}
.account hr{
	margin: 35px 0px 20px 0;
}
.account .affiliate-graph {
    margin-top: 40px;
}


#edd_user_history td {
	line-height: 1.5;
}


/* New home */
.home-new{
	margin-top: 0;
}
.small-banner.home-banner{
	background: #282828;
	padding: 50px 0 70px 0;
	float: left;
}
.home-banner .inner{
	position: relative;
}
.home-banner .text{
	float: right;
	/*width: 72%;	*/
	width: 75%;
}
.home-banner h1{
	font-size: 46px;
	line-height: 1.2;
	margin-top: 15px;
	font-weight: 100;
}
.home-banner .cta{
	background: #e89a2e;
	color: #fff;
	font-size: 22px;
	font-weight: normal;
	padding: 13px 25px 15px 25px;
	margin: 30px 0;
}
.home-banner .cta:hover,
.home-banner .cta:focus{
	background: #e34f0e;
}
.home-banner .fa{
	/*font-size: 220px;*/
	font-size: 208px;
	color: #444;
	margin-top: 10px;
	float: left;
}
.home-banner .banner-text{
	float: left;
	width: 100%;
	max-width: 400px;
}
.home-banner .banner-text h1{
	font-size: 36px;
	font-weight: 800;
}
.home-banner .banner-text h2{
	max-width: 340px;
	font-size: 18px;
	font-weight: 300;
	margin-top: 25px;
    line-height: 1.2;
    color: #eee;
}
.home-banner .banner-text h1 span{
	color: #e34716;
}
.home-banner img{
	position: absolute;
	top: -110px;
	right: -125px;
}

/* Slider nav */
.slider .nav{
	width: 100%;
	text-align: center;
}
.slider .nav a{
	width: 20px;
	height: 20px;
	margin: 0 3px;
	text-indent: -9999px;
	background: rgba(255,255,255,0.3);

	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px;

	display: -moz-inline-stack;
	display: inline-block;
	vertical-align: top;
	zoom: 1;
	*display: inline;
}
.slider .nav a.cur{
	background: rgba(255,255,255,0.6);
}
.slider .nav a:hover{
	background: #e34f0e;
}

.home-new .balloons{
	margin: -10px 0 0 100px;
}

/* Home - checks */
.site-content .checks{
	overflow: hidden;
	padding: 35px 0 30px 0;
}
.site-content .check{
	float: left;
    width: auto;
    margin-right: 43px;
    font-size: 20px;
    font-weight: 300;
}
.site-content .check:last-child{
	margin-right: 0;
}
.site-content .check-box{
	float: left;
	padding: 10px;
	margin-right: 12px;
	height: 20px;
	width: 20px;
	text-align: center;

	background: rgba(0,0,0,0.05);
	border-radius: 10px;
}
.site-content .check span{
	float: left;
	display: block;
	height: 42px;
	line-height: 38px;
}

/* Home - plugins list */
.home-new .product-summary{
	position: relative;
    width: 23%;
    float: left;
    clear: none;
    margin: 40px 2.66% 0 0;
	padding: 20px;
	background: none;
	line-height: 1.5;
	text-align: right;
	background: #fff;
	box-shadow: 0 0 40px 0 rgba(0,0,0,0.05);

	box-sizing: border-box;
}
.home-new .product-summary:first-child{
	margin-left: 0;
}
.home-new .product-summary.youtube{
	margin-right: 0;
}
.home-new .product-info{
	float: left;
	/*width: 50%;*/
}
.home-new .product-summary h3{
	padding: 5px 0;
	font-size: 25px;
	font-weight: 800;
}
.home-new .product-summary p{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}
.home-new .product-summary .speech{
	position: relative;
	width: 100%;
	padding: 6% 8%;
	padding-left: 15%;
	margin: 20px 0;
	border-radius: 10px;

	background: #f4edea;
	color: #7d6b64;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	box-sizing: border-box;
}
.home-new .product-summary .btn{
	background: #e34716;
	color: #fff;
	padding: 15px 0;
	width: 100%;
	font-weight: 400;
	font-size: 16px;
	margin: 0;
}
.home-new .product-summary.facebook .btn:hover{
	background: #3c5a99;
}
.home-new .product-summary.instagram .btn:hover{
	background: #edb72f;
}
.home-new .product-summary.twitter .btn:hover{
	background: #1da1f2;
}
.home-new .quotation{
	display: block;
	position: absolute;
	top: 10px;
	left: 10px;
	width: 34px;
	height: 27px;
	background: url('img/quotation.png');
}
.home-new .product-summary .icon{
	position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    width: 40px;
    height: 40px;
    background: #3c5a99;
    border-radius: 0 50px 50px;
}
.home-new .product-summary.instagram .icon{
    background: #edb72f;
}
.home-new .product-summary.twitter .icon{
    background: #1da1f2;
}
.home-new .product-summary.youtube .icon{
    background: #FF0000;
}

.home-new .product-summary .icon .fa{
	position: absolute;
    left: 9px;
    top: 16px;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 30px;
}
.home-new .product-summary.instagram .fa{
	left: 13px;
    top: 14px;
}
.home-new .product-summary.twitter .fa{
	left: 15px;
    top: 15px;
}
.home-new .product-summary.youtube .fa{
	left: 14px;
    top: 15px;
}

.home-new .product-summary h2 img{
	width: 50px;
	height: 50px;
	margin: 10px 10px -15px 0;
}

/* Home - Trusted */
.trusted{
	clear: both;
	background: #fbf9f8;
    padding: 60px 0;
    border-top: 1px solid #f1ebe8;
    text-align: center;
}
.trusted p{
	font-size: 30px;
	font-weight: 300;
	padding: 5px 0;
}
.trusted .stars{
	width: 100%;
	padding-top: 10px;
}
.trusted .fa-star{
	display: inline-block;
	margin: 0 3px;
	color: #edb72f;
	font-size: 28px;
}
.home-new article.text-content{
	background: #f4edea;
}

/* Action buttons */
.home-new .product-summary .actions{
	/*text-align: center;*/
	padding: 20px 0 0 0;
	margin: 0;
}
.home-new .product-summary .actions .btn{
	float: none;
	margin: 0 10px 0 0;

	display: -moz-inline-stack;
	display: inline-block;
	vertical-align: top;
	zoom: 1;
	*display: inline;
}



.home-new .customers{
	width: 100%;
	float: left;
	clear: none;
	border: none;
	padding: 40px 0 80px 0;
	background: #ece2dd;
}
.home-new .twitter-tweet {
	width: 32% !important;
	height: 280px;
	/*min-height: 280px;*/
	float: left;
	margin-right: 2% !important;
	background: none;
}
.home-new .last .twitter-tweet{
	margin-right: 0 !important;
}

.home-new h2{
	padding-bottom: 25px;
	font-size: 24px;
	line-height: 1.6;
	padding-top: 10px;
	font-weight: normal;
}

.home-new .text-content,
.home-new .extras{
	float: left;
	width: 100%;
	clear: both;
	margin: 0;
	padding: 50px 0 35px 0;
	background: #f4edea;
}
.home-new .text-content p{
	font-size: 16px;
}
.home-new .extras{
	background: #f4edea;
	padding-bottom: 60px;
	border-top: 0;
	padding-top: 40px;
}
.home-new .video iframe{
	background: #fff;
	border: 1px solid #eee;

	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14902);
	-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14902);
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14902);
}
.home footer{
	margin-top: 0;
}


/* Home - responsive */
@media all and (max-width: 920px){
	.home-banner img{
		position: relative;
		top: 20px;
		right: 0;
		margin-bottom: -60px;
		max-width: 100%;
	}
	.home .banner-text{
		width: 100%;
		max-width: 100%;
		text-align: center;
	}
	.home .banner-text h2{
		width: 100%;
		max-width: 100%;
	}
	.small-banner.home-banner{
		width: 96%;
		padding: 2%;
	}
	.home .check{
		float: none;
	    overflow: hidden;
	    display: inline-block;
	    margin-right: 20px;
	}
}
@media all and (max-width: 800px){
	.home-new .product-summary{
		width: 100%;
		text-align: center;
	}
	.home-new .product-info{
		width: 100%;
	}
	.home-new.site-content{
		margin: 0;
	}
	.home .checks{
		padding: 80px 0 0 0;
		text-align: center;
	}
	.home-new .product-summary .icon .fa{
		left: 15px;
	}
}



/* FAQs */
.faq{
	width: 100%;
	float: left;
	clear: both;

	padding: 0 0 20px 0;

	line-height: 1.4;
}
.faq h2,
.individual-archive-header h2,
.individual-category-header h2{
	font-size: 16px;
	padding-bottom: 5px;
}
.faq p{
	font-size: 14px;
}

/* SEARCH */
.search-form{
	/*display: none;*/
	padding-bottom: 20px;
}
#s{
	width: 400px;
}
#content .search-form {
	padding-bottom: 40px;
}

/* SIDEBAR */
#secondary{
	margin-bottom: 40px;
}
#secondary h3{
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
}
.wp-tag-cloud{
	padding-bottom: 15px;
}
.wp-tag-cloud li{
	padding-bottom: 5px;
}


/* FOOTER FEED */
footer #cff{
	float: none;
	/*background: #e66831;*/
	background: rgba(255,255,255,0.1);
	margin: 10px 0 20px 0;
	padding: 10px 20px;

	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
}
footer #cff .cff-date {
	color: rgba(255,255,255,0.7);
}
footer #cff .cff-item{
	padding: 5px 0;
	clear: none;
	width: 680px;
	border: none !important;
}
footer #cff p{
	margin-top: 0;
}
footer #cff a{
	color: #fff;
}
footer #cff .cff-text a{
	font-weight: bold;
}
footer #cff a:hover,
footer #cff a:focus{
	text-decoration: underline;
}
footer .cff-likebox{
	width: 225px !important;
	background: #ea855a;
	border-radius: 6px;
	margin-right: 20px;
	overflow: hidden;
	opacity: 0.9;
}
footer #cff .cff-viewpost-facebook {
	margin-top: -35px;
}
footer #cff .cff-viewpost-facebook{
	color: #fff;
	color: rgba(255,255,255,0.7);
}
footer #cff .cff-meta-wrap {
	margin: 0;
}
footer .cff-likebox {
	margin-left: -10px;
}
footer #cff .cff-post-text{
	width: 99%;
}

/* Priority Support Page */
.rcp_subscription_fieldset{
	margin-top: 30px !important;
}
.entry-content .rcp_form p{
	margin-bottom: 10px;
}
.rcp_user_fieldset input{
	width: 30%;
}

.license-error{
	font-size: 13px;
}



.screenreader{
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    margin: 0;
    outline: 0;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    position: absolute;
    top: auto;
    left: -10000px;
    z-index: -10000;
}



@media all and (max-width: 970px){
	footer .cff-likebox{
		width: 30% !important;
		margin-right: 2%;
	}
	footer #cff .cff-item{
		width: 68%;
	}
}

@media all and (max-width: 950px){

	.inner,
	.gallery .inner{
		width: 96%;
		padding: 0 2%;
	}

	#s {
	  width: 75%;
	}

	.pricing section{
		width: 49%;
		margin: 0 1% 10px 0;
	}
	.cff-extension{
	    width: 48.7%;
	}
	.main-navigation li a {
		padding-left: 20px;
		padding-right: 20px;
	}

	/* Home new */
	.home-banner{
		padding: 25px 0;
	}
	.home-banner .text{
		float: right;
		/*width: 72%;	*/
		width: 73%;
		margin-right: 2%;
	}
	.home-banner h1{
		font-size: 38px;
	}
	.home-banner .cta{
		font-size: 16px;
		padding: 9px 20px 11px 20px;
		margin: 30px 0;
	}
	.home-banner .fa{
		font-size: 158px;
		margin: 10px 0 0 10px;
	}


	/* Pricing testimonials */
	.support .testimonial.first, .support.white-bg .testimonial.first {
	 	margin-right: 0; 
	}
}

@media all and (max-width: 820px){
	.main-navigation li a {
		padding-left: 12px;
		padding-right: 12px;
	}

	.home-banner{
		padding: 20px 0 17px 0;
	}
	.home-banner .text{
		float: left;
		width: 67%;
		margin-left: 5%;
	}
	.home-banner h1{
		font-size: 28px;
	}
	.home-banner .fa{
		float: left;
		font-size: 100px;
		margin: 10px 0 0 2%;
	}

	/* Tabs */
	h2.tabtitle{
		margin: 0;
		font-size: 14px;
	}

	/* Footer */
	.menu-footer-container{
		clear: both;
		margin: 0;
	}
	footer .copyright {
		padding-right: 0;
		border: none;
	}
	footer .cff-likebox{
		width: 35% !important;
		margin-right: 2%;
	}
	footer #cff .cff-item{
		width: 63%;
	}

}


@media all and (max-width: 700px){

	/* Structure */
	.site-content{
		margin-top: 30px;
	}

	/* Top nav */
	.main-navigation.top-nav{
		margin-bottom: 24px !important;
	}
	.main-navigation.top-nav .menu{
		width: 100%;
		padding-bottom: 20px;
	}
	.main-navigation.top-nav .menu li a{
		color: #fff;
		line-height: 1.2;
	}
	.main-navigation.top-nav .menu li{
		margin-top: 10px;
	}
	/* Hide 'Our Plugins' menu label */
	.main-navigation.top-nav #menu-item-34855 > a{
		display: none;
	}

	/* Mobile Nav */
	.main-navigation.primary-nav {
		margin-top: 24px;
		margin-top: 1.714285714rem;
		text-align: center;
		background: #e34f0e;
		padding-bottom: 0;
	}
	.main-navigation.primary-nav .inner{
		padding: 0;
		width: 100%;
	}
	.main-navigation.primary-nav .menu-toggle{
		padding: 12px 0;
		width: 100%;
		text-transform: uppercase;
		color: #fff;
		cursor: pointer;
	}
	.main-navigation.primary-nav li {
		margin-top: 0;
		font-size: 12px;
		font-size: 0.857142857rem;
		line-height: 1.42857143;
	}
	.main-navigation.primary-nav a {
		color: #fff;
		text-decoration: none;
		background: #e34f0e;
		display: block;
		padding: 12px;
		/*font-size: 14px;*/
		font-weight: bold;
	}
	.main-navigation.primary-nav a:hover,
	.main-navigation.primary-nav .sub-menu a:hover {
		background: #e89a2e;
		color: #fff;
	}
	.main-navigation.primary-nav ul.nav-menu,
	.main-navigation.primary-nav div.nav-menu > ul,
	.main-navigation.primary-nav ul.menu {
		display: none;
		width: 100%;
	}
	.main-navigation.primary-nav ul.nav-menu.toggled-on,
	.menu-toggle {
		display: -moz-inline-stack;
		display: inline-block;
		vertical-align: top;
		zoom: 1;
		*display: inline;
	}
	.main-navigation.primary-nav .sub-menu a{
		background: #d04203;
		font-size: 12px;
		color: rgba(255,255,255,0.9);
		color: #fff;
		font-weight: normal;
	}
	.main-navigation.primary-nav .fa-caret-down{
		display: -moz-inline-stack;
		display: inline-block;
		vertical-align: top;
		zoom: 1;
		*display: inline;
	}


	.home-int-nav{
		display: none !important;
	}

	.notice{
		display: none;
	}
	.logo img{
		width: 90%;
		margin: 0 5%;
		height: auto;
	}

	.banner{
		width: 100%;
		padding: 20px 0;
		margin: -25px 0 0 0;
	}
	.banner img {
		margin-left: -10px;
		width: 100%;
	}

	.screenshots{
		margin-bottom: 0;
		padding-bottom: 30px;
	}
	.actions{
		width: 100%;
		text-align: center;
		margin-bottom: 0;
	}
	.screenshots .actions {
		margin-bottom: 0;
	}
	.actions .btn.big, .actions .btn-wrap{
		float: none;
		width: 80%;
		margin-left: 5%;
		margin-right: 5%;
		padding-left: 5%;
		padding-right: 5%;
	}
	.actions .btn.big{
		padding-top: 5px;
		padding-bottom: 10px;
		margin-bottom: 5px;

		font-size: 18px;
		padding-top: 6px;
		padding-bottom: 10px;
	}

	.features .col{
		width: 100%;
		margin-left: 0;
	}
	.support .testimonial{
		width: 100%;
		margin-left: 0;
	}

	/* Pricing page */
	.pricing{
		width: 94%;
	}
	.pricing section{
		width: 100%;
		margin: 0 0 10px 0;
	}
	.support.white-bg .testimonial{
		width: 98%;
	}
	.guarantee h3 {
		line-height: 1.2;
		margin-bottom: 15px;
	}
	p.note{
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	/* Extensions */
	.cff-extension{
	    width: 100%;
	}
	.cff-extension .inside{
		width: 100%;
		height: auto;
		padding-bottom: 10px;
	}
	.cff-extension p.desc{
		height: auto;
		padding-bottom: 20px;
	}
	/* Extension single */
	.single-download .wrapper > .inner{
		float: left;
		margin: 0 0 40px 0;
	}
	.site-content.download{
		width: 100%;
	}
	.single-download article{
		margin: 0;
	}
	.single-download #secondary{
		float: left;
		width: 92%;
		margin: 0;
	}

	/* demo */
	.layout{
		width: 100%;
		clear: both;
	}
	.demo-form {
		margin-top: 5px;
	}
	.demo h3{
		padding-top: 20px;
		line-height: 1.4;
	}

	.twitter-follow-button {
		right: 5px;
		top: -35px;
	}
	footer .twitter-follow-button{
		top: -40px;
	}

	/* Vid play btn */
	.play-video{
		top: 11%;
		left: 54%;
		width: 50px;
		height: 50px;
	}
	.play-video img{
		top: 62%;
		left: 57%;
		width: 50%;
		height: auto;
	}
	.youtube-video {
		height: 250px;
	}

	.twitter-tweet{
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
	.tweet.first{
		margin-left: 0;
	}

	/* Forms */
	.page .gform_wrapper .top_label input.medium,
	.page .gform_wrapper .top_label select.medium,
	.page .gform_wrapper .right_label input.small,
	.page .gform_wrapper .right_label select.small,
	.page .gform_wrapper .left_label input.small,
	.page .gform_wrapper .left_label select.small{
		width: 97%;
	}

	/* Accordians */
	.accord h3 {
		padding-bottom: 15px;
		line-height: 1.5;
	}


	/* Affiilate login form */
	/*#loginform{
		margin-top: -0;
		border-radius: 5px;
	}*/

	/* New home page */
	.home-new .video,
	.home-new .reviews{
		width: 100%;
		margin-right: 0;
	}
	.home-new .reviews{
		width: 97%;
	}
	.home-new .balloons{
		max-width: 35%;
		margin: 0;
		margin-right: 3%;
	}
	.home-new .extras{
		padding: 0 0 30px 0;
	}
	.home-new h2 {
		padding: 30px 0 10px 10px;
		font-size: 20px;
	}
	.home-new .reviews h2 {
		padding-left: 0;
	}


	/* New Features page */
	.new-features-page .feature{
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.new-features-page .image-placeholder-features {
	  /*width: auto;
	  height: auto;*/
	}

	/* Footer */
	footer #cff{
		padding: 10px;
	}
	footer .cff-likebox{
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0;
	}
	footer #cff .cff-item{
		padding: 15px 0;
		width: 100%;
	}

	/* New support section */
	#content .support-category-wrapper{
		width: 100%;
		margin: 0 0 20px 0;
	}
	#main .search-form.search-support{
		margin-top: 0;
	}
	#main .search-form.search-support #s{
		width: 60%;
	}

}


@media all and (max-width: 520px){

	.inner {
		width: 90%;
		padding: 0 5%;
	}

	/* Top menu */
	.main-navigation.top-nav .menu li a{
		text-decoration: none;
	}
	.main-navigation.top-nav .menu li a:hover,
	.main-navigation.top-nav .menu li a:focus,
	.main-navigation.top-nav .menu li a:active{
		color: #e89a2e;
	}

	/* Home slider */
	.home-banner .text{
		float: left;
		width: 96%;
		padding: 0 2%;
		margin: 0;
		text-align: center;
	}
	.home-banner h1{
		font-size: 24px;
	}
	.home-banner .fa{
		display: none;
	}
	.home-banner{
		padding: 15px 0 13px 0;
	}
	.home-banner .cta{
		float: none;
		width: 60%;

		font-size: 14px;
		padding: 9px 5% 11px 5%;
		margin: 20px 15%;
	}
	.small-banner.home-banner{
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.slider .nav a{
		width: 30px;
		height: 30px;
		margin: 0 6px;
	}

	/* Home sections */
	/*.home-new .text-content,
	,
	.home-new .customers,
	.home footer{
		width: 90%;
		padding-left: 5%;
		padding-right: 5%;
	}*/
	.home-new .product-summary{
		width: 100%;
	}
	.home-new.site-content {
		margin-top: 0;
	}
	.home-new .text-content{
		padding-top: 40px;
	}

	/* Home products */
	.home-new h2{
		padding-left: 0;
	}
	.home-new .product-info {
    width: 100%;
	}
	.home-new .product-summary .actions .btn{
		margin: 0 0 10px 0;
		width: 90%;
	}

	/* Customers */
	.home-new .twitter-tweet {
		width: 100% !important;
		margin-right: 0% !important;
	}

	/* Custom Facebook Feed page */
	.wordpress-plugin img{
		width: 80%;
		margin: 0 10% 30px 10% !important;
	}
	.entry-content h2{
		font-size: 20px;
		line-height: 1.3;
	}

	/* Instagram Feed page */
	.instagram .screenshots #sb_instagram{
		/*width: 100% !important;*/
	}

	/* Instagram Pricing */
	.instagram-pricing .pricing section{
		width: 100%;
	}
	.instagram-pricing .pricing section.three{
		margin-bottom: 0;
	}

	/* Hide the instagram feed on the instagram feed home page on phones so isn't one long column */
	.home #sb_instagram{
		display: none;
	}
	.sb-mobile-only{
		display: block !important;
	}
	.sb-desktop-only{
		display: none !important;
	}
}


/* For the demo page */
#cff .cff-iframe-wrap {
	margin-top: 0;
}
footer .twitter-btn{
	position: absolute;
	bottom: 25px;
	right: 0;
}

/* Vairable pricing dropdowns */
.pricing section .edd_price_options{
	/*display: none;*/
	margin: 10px 0 16px 0;
}
.pricing section .edd_download_purchase_form{
	margin-top: 10px;
	padding-bottom: 5px;
}
.pricing section .edd_price_options select{
	border: 1px solid #ddd3cf;
	padding: 4px 0px;
	font-size: 12px;
}
.pricing section .edd_price_options select.sb_upgrade_options{
	min-width: 153px;
	padding: 4px 5px;
}
.pricing section .edd_price_options option{
	padding: 1px 2px;
}

/*
Hide the license length variable option text in the purchase receipt (eg. 3 Years Updates & Support - +$109) until the EDD team have fixed the issue with variable prices. See: https://easydigitaldownloads.com/support/topic/adding-a-new-variable-price-is-causing-previous-purchases-to-be-labeled-wrong/#post-293139;
*/
.edd_purchase_receipt_price_name{
	display: none;	
}

/* Hide the manage sites license function in accounts */
.account #edd_sl_license_add_site_form{
	/*display: none;*/
}
.accoutn #edd_sl_license_add_site_form .edd-input{
	width: 300px;
}


/* Instagram Demo */
/* Minimum width of 600 pixels. */
@media screen and (min-width: 700px) {
	.product-demo {
		float: left;
		width: 100%;
	}
}
#secondary.product-demo{
	margin-top: 40px;
}
.product-demo .demo-form{
	float: left;
	width: 92%;
	margin-bottom: 15px;
	padding: 25px 4%;
	background: #f4edea;
	font-size: 12px;
  
  	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}
.product-demo .demo-form h4{
	margin: 0 0 15px 0;
}
.product-demo .demo-form .row{
	width: 100%;
	float: left;
	margin-bottom: 0;
}

.product-demo .demo-tabs{
	padding: 0 0 20px 0;
}
.product-demo .demo-label{
	margin-right: 10px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
}
.product-demo .demo-tabs a{
	display: inline-block;
    padding: 12px 10px;
    margin: 0 1px;
    background: #edb72f;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;

    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
.product-demo .demo-tabs .fa{
	margin-right: 2px;
}
.product-demo .demo-tabs a.selected,
.product-demo .demo-tabs a:hover {
    background: #e34f0e;
}
.product-demo .demo-form h4 {
	width: 100%;
    float: left;
    margin: 0;
}
.product-demo .demo-label-note{
	font-size: 11px;
	display: block;
	margin-top: 5px;
	float: left;
	clear: both;
}

.demo-form .sub-row{
	width: 100%;
	float: left;
	clear: both;
}
.product-demo input.radio{
	float: left;
	margin-left: -1px;
}
.product-demo input {
	margin-left: 0;
}
.product-demo .sub-row label {
	padding: 11px 0 0 0;
	width: 75px;
}
.product-demo .connect-row:hover .sbi_demo_connect_tooltip{
	display: block;
}
.product-demo .sbi_demo_connect_tooltip{
	display: none;
    position: absolute;
    background: #333;
    color: #eee;
    width: 90%;
    padding: 10px;
    border-radius: 3px;
    bottom: 45px;
    line-height: 1.3;
}
.product-demo .sbi_demo_connect_tooltip .fa-caret-down{
	position: absolute;
	bottom: -12px;
	font-size: 20px;
	left: 63%;
	color: #333;
}
.product-demo .sbi_connect_btn{
	width: 100%;
	padding: 10px 0;
    text-align: center;
    display: inline-block;
    background: #386793;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    margin: 0;
    font-size: 13px;
}
.product-demo .sbi_connect_btn:hover,
.product-demo .sbi_connect_btn:focus{
	background: #3880c4;
	color: #fff;
}
.product-demo .sbi_sidebar_note{
	float: left;
	clear: both;
	margin: 10px 0;
	font-size: 12px;
	font-style: italic;
	line-height: 1.3;
}
.product-demo .sbi_intro{
	padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
	margin: 10px 0 40px 0;
}
.product-demo .demo-support{
	float: left;
	width: auto;
	margin-left: 25px;
	line-height: 1.3;
}
.product-demo .demo-support a{
	text-decoration: none;
}
/* Demo CTA buttons */
.product-demo .actions{
	width: 500px;
	padding-top: 50px;
}
.product-demo .actions .btn{
	width: 180px;
}
.product-demo .actions .btn.light{
	padding-top: 18px;
    padding-bottom: 22px;
}
.product-demo .actions .btn span {
    margin-top: 6px;
}

/* Top nav */
body{
	float: left;
	width: 100%;
}
.main-navigation.top-nav{
	background: #282828;
	float: left;
	margin: 0;
	width: 100%;
}
.main-navigation.top-nav .inner {
	max-width: 960px;
	margin: 0 auto;
}
.main-navigation.top-nav .menu{
	float: right;
}
.main-navigation.top-nav li a{
	line-height: 2.2;
	padding: 0 15px;
}

.main-navigation.top-nav .sub-menu a{
	padding: 10px 15px;
	font-size: 14px;
	width: 210px;
}
.main-navigation.top-nav .fa{
	font-size: 17px;
	position: relative;
	top: 1px;
	margin-right: 7px;
}


/* CFF plugin CSS for footer feed */
			/**************/
/*** LAYOUT ***/
/**************/
/* Feed wrapper */
.cff-wrapper:after{
  content: "";
  display: table;
  clear: both;
}
/* Feed container */
#cff {
  float: left;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;  
}
#cff:after{
  content: "";
  display: table;
  clear: both;
}
/* Individual post item */
#cff .cff-item{
  float: left;
  width: 100%;
  clear: both;
  padding: 20px 0 15px 0;
  margin: 0;
  border-bottom: 1px solid #ddd;
}
#cff .cff-item:first-child{
  padding-top: 0;
}
#cff .cff-item.cff-box,
#cff .cff-item.cff-box:first-child{
  padding: 15px;
  margin: 5px 0;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* Feed Header */
.cff-header{
  width: 100%;
  margin: 0 0 15px 0;
  padding: 0;
  line-height: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;  
}
.cff-header .fa{
  float: left;
  margin-right: 10px;
}
.cff-header span{
  /*float: left;*/
  display: table-cell;
  vertical-align: middle;
}

/******************/
/*** TYPOGRAPHY ***/
/******************/
/*See more/less links*/
#cff .cff-less{
  display: none;
}
/* Links */
#cff a {
  text-decoration: none;
}
#cff a:hover,
#cff a:focus {
  text-decoration: underline;
}
/* Post titles and body text */
#cff h3, #cff h4, #cff h5, #cff h6, #cff p{
  float: left;
  width: 100%;
  clear: both;
  padding: 0;
  margin: 5px 0;
  line-height: 1.4;

  white-space: pre;
  white-space: pre-wrap;
  white-space: pre-line;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -hp-pre-wrap;
  word-wrap: break-word;
}
/* Date */
#cff .cff-date{
  float: left;
  width: 100%;
  min-width: 50px;
  font-size: 11px;
}
/************/
/***AUTHOR***/
/************/
#cff .cff-author{
  float: left;
  clear: both;
  margin: 0 0 15px 0;
  padding: 0;
  line-height: 1.2;
  width: 100%;
}
#cff .cff-author a{
  float: left;
  display: block;
  /*width: 100%;*/
  min-width: 100%\9;
}
#cff .cff-author-img{
  float: left;
  width: 40px;
  margin: 0 0 0 -100% !important;
}
#cff .cff-author img{
  float: left;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
#cff .cff-author .cff-author-text span{
  display: table-cell;
  vertical-align: middle;
  height: 40px;
  margin: 0;
  font-weight: bold;

  /* For when there's no date immediately under author: */
  padding-left: 50px;
  float: none;
}
#cff .cff-author a{
  text-decoration: none;
}

/* Author Date */
#cff .cff-author .cff-author-text{
  float: left;
  width: 100%;
}
#cff .cff-author .cff-author-text *{
  float: left;
  clear: both;
  width: auto;
  margin: 0 0 0 50px;
  font-weight: bold;
}
#cff .cff-author .cff-date{
  color: #9197a3;
  font-weight: normal;
  margin-top: 0px;
}
#cff .cff-author .cff-page-name.cff-author-date{
  float: left;
  padding: 2px 0 0 0;
}

/* Description */
#cff .cff-post-desc{
  line-height: 1.3;
}

/*************/
/*** MEDIA ***/
/*************/
/*Content wraper*/
#cff .cff-text-wrapper{
  float: right;
  width: 77%;
  margin: 0;
  padding: 0;
}
#cff .cff-break-word{
  word-break: break-all;
}
/*** PHOTOS ***/
#cff .cff-byline{
  font-size: 12px;
  display: block;
  margin: -5px 0 10px 0;
}
#cff .cff-photo{
  max-width: 100%;
  float: left;
  display: block;
  position: relative;
  margin: 0;
}
#cff .cff-photo:after {
  border: 1px solid rgba(0, 0, 0, .1);
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
#cff .cff-media-above{
  margin-bottom: 7px;
}
#cff .cff-photo img{
  float: left;
  max-width: 100%;
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
}
#cff .cff-album-icon{
  position: absolute;
  bottom: 5px;
  right: 5px;
  height: 22px;
  background: #000 url('../img/cff-album-icon.png') no-repeat 5px 5px;
  background: rgba(0,0,0,0.7) url('../img/cff-album-icon.png') no-repeat 5px 5px;
  color: #fff;
  font-size: 12px;
  margin: 0;
  padding: 0 6px 0 26px;
  line-height: 22px;

  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;

  box-shadow: 0 0 1px 0 rgba(255,255,255,0.8);
  -moz-box-shadow: 0 0 1px 0 rgba(255,255,255,0.8);
  -webkit-box-shadow: 0 0 1px 0 rgba(255,255,255,0.8);
}

/*** ALBUMS ONLY ***/
/*Album*/
#cff .cff-album-item{
  float: left;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
  text-align: center;
}
/*2 col*/
#cff .cff-album-item.cff-col-2{
  width: 47.5%;
  width: 45%\9;
  margin-right: 5%;
}
#cff .cff-album-item.cff-col-2:nth-of-type(2n){
  margin-right: 0;
}
/*3 col*/
#cff .cff-album-item.cff-col-3{
  width: 30%;
  width: 28.3%\9;
  margin-right: 5%;
}
#cff .cff-album-item.cff-col-3:nth-of-type(3n){
  margin-right: 0;
}
/*4 col*/
#cff .cff-album-item.cff-col-4{
  width: 21.2%;
  width: 20%\9;
  margin-right: 5%;
}
#cff .cff-album-item.cff-col-4:nth-of-type(4n){
  margin-right: 0;
}
/*Narrow/mobile - force 2 col layout*/
#cff.narrow .cff-album-item.cff-col-3,
#cff.narrow .cff-album-item.cff-col-4{
  width: 47.5%;
  width: 45%\9;
  margin-right: 5%;
}
#cff.narrow .cff-album-item.cff-col-3:nth-of-type(2n),
#cff.narrow .cff-album-item.cff-col-4:nth-of-type(2n){
  margin-right: 0;
}
/*Album image container*/
#cff .cff-album-item .cff-album-cover{
  width: 100%;
  height: 200px;
  display: block;
  float: left;
  position: relative;
}
/*Image border*/
#cff .cff-album-item .cff-album-cover:after {
  border: 1px solid rgba(0, 0, 0, .1);
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
/*Album info*/
#cff .cff-album-item .cff-album-info{
  width: 100%;
  height: 70px;
  float: left;
  clear: both;
}
/*Album name*/
#cff .cff-album-item h4{
  font-size: 14px;
  line-height: 1.2;
  margin: 10px 0 0 0;
  padding: 0;
}
/*Number of photos*/
#cff .cff-album-item p{
  font-size: 12px;
  color: gray;
  margin: 5px 0 0 0;
}

/*** VIDEO ***/
/* Embedded videos */
#cff .cff-embed-wrap{
  float: left;
  width: 100%;
  margin-top: 5px;
}
#cff .cff-iframe-wrap{
  float: left;
  clear: both;
  margin: 5px 0;
  width: 100%;
  position: relative;
  padding-bottom: 62%;
}
#cff .cff-iframe-wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
#cff .cff-desc-wrap{
  float: left;
  width: 100%;
}
#cff .cff-embedded-video .cff-post-text{
  margin: 0 0 15px 0;
}
/* Narrow embedded videos */
#cff.narrow .cff-embedded-video .cff-iframe-wrap,
#cff.narrow .cff-embedded-video .cff-text-wrapper{
  width: 100%;
}
#cff.narrow .cff-embedded-video .cff-iframe-wrap{
  padding-bottom: 62%;
}

/* Link to an external video - Contains screenshot of video and play button */
#cff .cff-html5-video,
#cff video{
  float: left;
  clear: left;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
#cff .cff-vidLink{
  float: left;
  clear: both;
  position: relative;
  width: 100%;
  max-width: 100%;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  *display: inline;
}
/* Video screenshot/poster image */
#cff .cff-vidLink .cff-poster{
  width: 100%;
  height: auto;
  float: left;
}
/* Video play button */
#cff .cff-playbtn{
  position: absolute;
  z-index: 99;
  background: #000;
  background: rgba(0,0,0,0.7);
  top: 50%;
  left: 50%;

  margin-top: -28px;
  margin-left: -28px;
  padding: 13px 16px;
  font-size: 30px;
  color: #fff;
  font-style: normal !important;

  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  /* IE7 and under */
  *width: 60px;
  *height: 60px;
  *padding: 0;
  *background: #000 url('../img/play.png') no-repeat center center;
}
/* Play button hover state */
#cff .cff-html5-play:hover .cff-playbtn,
#cff .cff-html5-play:focus .cff-playbtn,
#cff .cff-html5-video .cff-playbtn:hover{
  background: #000;
  cursor: pointer;

  /* IE7 and under */
  *background: #000 url('../img/play.png') no-repeat center center;
}
/* If it's a video with no poster image */
#cff .cff-desc-wrap.cff-no-image{
  float: right;
  width: 86%;
}
#cff .cff-playbtn-solo{
  width: 10%;
  float: left;
  margin-top: 5px;
}
#cff .cff-playbtn.no-poster,
#cff.cff-half-layout .cff-playbtn.no-poster,
#cff.cff-thumb-layout .cff-playbtn.no-poster{
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
}
/*HTML5 video play button*/
.cff-html5-play{
  display: block;
  position: absolute;
  z-index: 99;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Link */
#cff .cff-expand{
  display: none;
}
#cff .cff-expand a{
  font-size: 11px;
  font-weight: normal;
}
/*Link image*/
#cff .cff-shared-link{
  float: left;
  clear: both;
  width: 100%;
  padding: 8px;
  margin: 10px 0 5px 0;
  /* IE8 */
  background: #f9f9f9;
  border: 1px solid #d9d9d9;

  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.07);

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cff .cff-no-styles{
  background: none;
  border: none;
  padding: 0;
}

#cff .cff-link{
  float: left;
  clear: both;
  max-width: 20%;
  margin-right: 3%;
}
#cff .cff-link img{
  width: 100%;
  max-width: 100%;
  float: left;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
/*Link text*/
#cff .cff-link-title{
  float: left;
  clear: both;
  width: 100%;
  display: block;
  font-weight: bold;
}
#cff p.cff-link-title{
  margin: 0;
}
#cff .cff-text-link{
  float: left;
  clear: none;
  width: 72%;
  padding: 0 0 10px 0;
}
#cff .cff-link-caption{
  font-size: 12px;
  margin: 0;
}
#cff .cff-text-link.cff-no-image{
  width: 100%;
}
/* Feed events */
#cff .cff-details{
  float: left;
  clear: none;
  width: 77%;
  margin-left: 3%;
  padding: 0 0 10px 0;
}
/* Event date. Uses bold tags so can target in JS */
#cff .cff-timeline-event b,
#cff .cff-event b{
  font-weight: normal;
}
/* Hide end date and show in JS if different then start date */
#cff .cff-timeline-event .cff-end-date b,
#cff .cff-event .cff-end-date b{
  display: none;
}
#cff .cff-event-thumb{
  width: 20%;
  /*max-width: 80px;*/
  float: left;
  clear: both;
  margin: 5px 0 0 0;
}
#cff .cff-event-thumb img{
  width: 100%;
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
#cff .cff-details h5{
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 16px;
}
#cff .cff-details p{
  font-size: 14px;
}
#cff .cff-details .cff-info{
  padding: 10px 0 0 0;
  line-height: 1.2;
}
#cff .cff-details .cff-where,
#cff .cff-details .cff-when{
  /*font-weight: bold;*/
}
/* Events only */
#cff .cff-event .cff-photo{
  margin-top: 5px;
}
#cff .cff-event .cff-photo img{
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}
#cff .cff-event .cff-details {
  padding: 0;
}
#cff.cff-half-layout .cff-event .cff-details{
  float: right;
  width: 47%;
}
#cff .cff-event .cff-meta-links{
  float: right;
  clear: both;
  margin: 5px 0 0 0;
}
#cff .cff-event .cff-meta-links a{
  float: left;
  padding: 0 10px;
  border-left: 1px solid #ccc;
}
#cff .cff-event .cff-meta-links a:first-child{
  border: none;
}
/*****************/
/*** POST META ***/
/*****************/
/* Meta container */
#cff .cff-meta-wrap{
  float: left;
  width: 100%;
  margin: 5px 0 0 0;
  padding: 0;
}
#cff .cff-meta{
  float: left;
  clear: both;
  list-style-type: none;
  padding: 10px 0 5px 0;
  margin: 0;
}
/* Meta list items (likes, comments, shares) */
#cff .cff-meta li{
  float: left;
  width: auto;
  display: block;
  list-style-type: none;
  margin: 0 10px 0 0;
  padding: 0;
  font-size: 11px;
  line-height: 13px;
}
/* Icons */
#cff .cff-icon{
  display: block;
  float: left;
  width: 13px;
  height: 14px;
  margin-right: 5px;
  text-indent: -9999px;
  background: url('../img/icons.png') no-repeat;
}
#cff .cff-replace{
  display: none;
}
/*Light icons*/
/* Comments */
#cff .cff-comments .cff-icon{
  width: 12px;
  background-position: 0 -1px;
}
#cff .dark .cff-comments .cff-icon{
  background-position: -17px -1px;
}
#cff .cff-comments-box .cff-comments .cff-icon,
#cff .cff-comments-box .cff-likes .cff-icon{
  margin: 2px 8px 0 0;
}
/* Likes */
#cff .cff-likes .cff-icon{
  background-position: 0 -17px;
}
#cff .dark .cff-likes .cff-icon{
  background-position: -17px -17px;
}
/* Shares */
#cff .cff-shares .cff-icon{
  width: 14px;
  background-position: 0 -33px;
}
/*Dark Inverted icons*/
/* Comments */
#cff .cff-meta.dark li.cff-comments .cff-icon{
  background-position: -17px 0;
}
/* Likes */
#cff .cff-meta.dark li.cff-likes .cff-icon{
  background-position: -17px -17px;
}
/* Shares */
#cff .cff-meta.dark li.cff-shares .cff-icon{
  background-position: -17px -34px;
}
/*Dark icons*/
/* Comments */
#cff .cff-meta.dark-2 li.cff-comments .cff-icon{
  width: 15px;
  height: 15px;
  background-position: -34px 0;
}
/* Likes */
#cff .cff-meta.dark-2 li.cff-likes .cff-icon{
  width: 15px;
  height: 15px;
  background-position: -34px -15px;
}
/* Shares */
#cff .cff-meta.dark-2 li.cff-shares .cff-icon{
  width: 15px;
  height: 15px;
  background-position: -34px -32px;
}

 /*Loaders */
#cff .cff-meta .cff-loader{
  float: left;
  width: 16px;
  height: 16px;
  margin: -2px 0 -3px 0;
  /*background: url('../img/loader-light.gif') no-repeat;*/
  background: url('../img/loader.png') no-repeat;
}
#cff .cff-meta.dark .cff-loader{
  /*background: url('../img/loader-dark.gif') no-repeat;*/
  background: url('../img/loader-dark.png') no-repeat;
}
/* Display comments */
#cff .cff-view-comments{
  display: block;
  overflow: hidden;
  outline: none;
  float: left;
  clear: left;
  margin: 5px 12px 5px 0;
  padding: 0 5px 5px 10px;
  background: #edeff4;
}
#cff .cff-view-comments:hover{
  background: #ddd;
}
#cff .cff-comments-box{
  display: none;
  float: left;
  clear: both;
  width: 100%;
  max-width: 100%;
  margin: 0;
  
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;  

  /* IE7 and below*/
  *width: 95%;
  *margin-top: 5px;
}
#cff .cff-comments-box .cff-likes{
  margin-bottom: 1px;
}
#cff .cff-comments-box p,
#cff .cff-comments-box .cff-comment{
  width: 100%;
  min-width: 100%;
  float: left;
  clear: both;
  font-size: 12px;
  padding: 5px 20px 5px 10px;
  margin: 0 0 1px 0;
  background: #edeff4;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; 
}
#cff .cff-comments-box.cff-no-comments{
  width: auto;
}
#cff .cff-comments-box .cff-comment{
  margin: 0;
}
#cff .cff-comments-box .cff-name{
  padding: 0;
  margin-right: 6px;
  font-weight: bold;
}
#cff .cff-comments-box .cff-comment-likes{
  font-style: normal;
}
#cff .cff-comments-box .cff-comment-likes b{
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  *display: inline;

  background: url('../img/icons.png') no-repeat;
  background-position: 0 -50px;
  width: 10px;
  height: 9px;
  margin: 3px 3px 0 3px;
}
#cff .cff-comments-box.dark .cff-comment-likes b{
  background-position: -17px -50px;
}
#cff .cff-comments-box .cff-time{
  font-size: 11px;
  margin: 2px 0 0 0;
  display: block;
  font-style: italic;
}
#cff .cff-comment-likes{
  margin: 5px 0 10px 0;
  width: 100%;
}
/*Avatars*/
#cff .cff-comment-text-wrapper{
  width: 100%;
  float: left;
}
#cff .cff-comment .cff-comment-img{
  float: left;
  width: 32px;
  margin: 0 0 0 -100% !important;
}
#cff .cff-comment img{
  float: left;
  width: 32px;
  margin: 0 10px 0 0 !important;
  padding: 0 !important;
  border: none !important;
  
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
#cff .cff-comment .cff-comment-text{
  margin: 0 0 0 42px;
  line-height: 1.3;
}
#cff .cff-comment-text.cff-no-image{
  margin: 0;
}
#cff .cff-comments-box .cff-comment-on-facebook{
  margin-top: 1px;
}

/* View on Facebook / View Link text */
#cff .cff-viewpost-link,
#cff .cff-viewpost-facebook,
#cff .cff-viewpost{
  float: right;
  clear: none;
  padding-top: 12px;
  font-size: 11px;
}
/* Like box */
.cff-likebox{
  float: left;
  width: 100%;
  position: relative;
  margin-left: -10px;
}
.cff-likebox .fb_iframe_widget{
  width: 100%;
}
.cff-likebox .fb_iframe_widget span{
  width: 100% !important;
}
.cff-likebox iframe{
  margin: 0;

  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
}
/*Like box is not inside of #cff*/
.cff-likebox.top.cff-outside{
  margin-bottom: 10px;
}
.cff-likebox.bottom.cff-outside{
  margin-top: 10px;
}
/* Clear fix */
/*.cff-clear:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}
.cff-clear {
    display: inline-block;
    display: block;
    position: static;
}*/
/*********************/
/*** STYLE OPTIONS ***/
/*********************/
#cff.cff-fixed-height{
  overflow: hidden;
  overflow-y: auto;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* Thumb layout */
/*Media size*/
#cff.cff-thumb-layout .cff-photo,
#cff.cff-thumb-layout .cff-iframe-wrap,
#cff.cff-thumb-layout .cff-html5-video,
#cff.cff-thumb-layout .cff-vidLink{
  width: 20%;
  clear: none;
}
#cff.cff-thumb-layout .cff-html5-video .cff-vidLink{
  width: 100%;
}
#cff.cff-thumb-layout .cff-iframe-wrap{
  margin-top: 0;
  padding-bottom: 16%;
}
#cff.cff-thumb-layout .cff-likebox iframe{
  margin: 0;
}
#cff.cff-thumb-layout .cff-photo img{
  width: 100%;
  height: auto;
}
/* Video play button */
#cff.cff-thumb-layout .cff-playbtn{
  margin-top: -16px;
  margin-left: -16px;
  padding: 8px 10px;
  font-size: 16px;
}
/*Content wraper*/
#cff.cff-thumb-layout .cff-text-wrapper{
  float: right;
  width: 77%;
}
#cff.cff-thumb-layout .cff-link-item .cff-text-wrapper{
  width: 100%;
}
#cff.cff-thumb-layout .cff-post-text{
  margin-top: 0;
}
/*Date*/
#cff.cff-thumb-layout .cff-date {
  margin-bottom: 10px;
}
/*Half image size */
#cff.cff-half-layout .cff-photo,
#cff.cff-half-layout .cff-iframe-wrap,
#cff.cff-half-layout .cff-html5-video,
#cff.cff-half-layout .cff-vidLink{
  width: 50%;
  clear: none;
}
#cff.cff-half-layout .cff-html5-video .cff-vidLink{
  width: 100%;
}
#cff.cff-half-layout .cff-photo img{
  width: 100%;
  height: auto;
}
#cff.cff-half-layout .cff-iframe-wrap{
  margin-top: 0;
  padding-bottom: 28%;
}
#cff.cff-half-layout .cff-likebox iframe{
  margin: 0;
}
#cff.cff-half-layout .cff-text-wrapper{
  float: right;
  width: 47%;
}
#cff.cff-half-layout .cff-link-item .cff-text-wrapper{
  width: 100%;
}
#cff.cff-half-layout .cff-post-text{
  margin-top: 0;
}

/* Narrow width */
#cff.narrow.cff-half-layout .cff-photo,
#cff.narrow.cff-half-layout .cff-iframe-wrap,
#cff.narrow.cff-half-layout .cff-vidLink,
#cff.narrow.cff-half-layout .cff-html5-video,
#cff.narrow.cff-thumb-layout .cff-photo,
#cff.narrow.cff-thumb-layout .cff-iframe-wrap,
#cff.narrow.cff-thumb-layout .cff-vidLink,
#cff.narrow.cff-thumb-layout .cff-html5-video{
  width: 100%;
  clear: both;
}
#cff.narrow.cff-half-layout .cff-text-wrapper,
#cff.narrow.cff-thumb-layout .cff-text-wrapper{
  float: left;
  width: 100%;
}

#cff .cff-error-msg{
  font-size: 12px;
  font-family: sans-serif;
}
#cff #cff-error-reason{
  display: none;
  padding: 5px 0 0 0;
  clear: both;
}



/* Checkout */
/* Hide create account form - don't need it as using auto register plugin which creates user based on email */
#edd_register_account_fields{ display: none; }

#edd_purchase_form_wrap p{ margin-top: 10px; }
#edd_final_total_wrap{ margin-bottom: 10px; }


/* Support form */
/* Hidden fields for support form */
.license-type, .expiry-date{ display: none; }


/* Instagram pricing discount popup */
.pricing .discount{
	position: relative;
}
.pricing .discount a{
	color: #66501a;
	border-bottom: 1px dashed #66501a;
	text-decoration: none;
}
.pricing .discount-tooltip{
	display: none;
	padding: 10px 15px 0 15px;
	font-size: 13px;
	line-height: 1.4 !important;

}
.pricing .discount-tooltip p{
	padding: 5px 0;
	margin: 0;
}


/* renew tooltip */
#edd_user_history .edd_sl_license_key_expired .tooltip{
	padding: 8px;
	line-height: 1.4;
	bottom: 18px;
}

/* Job application form */
form.job-application {
    background: #eee;
    padding: 15px 30px;
}



.edd_sl_license_row input.edd_sl_license_key {
	display: none;
    width: 270px;
    position: absolute;
    bottom: 21px;
    background: #fff;
    background: rgba(255,255,255,0.9);
    border: 1px solid #ccc;
    padding: 3px 8px;
    text-align: center;
}
.view-key-wrapper{
	position: relative;
}

.support-only {
	clear: both;
  float: left;
  width: 100%;
	padding: 10px;
	margin: 80px 0 0 0;
	background: rgba(227,79,14,.06);
    border: 2px solid #e34f0e;
    border-radius: 8px;
}
.support-only h1, .support-only h2, .support-only h3 {
	margin-top: 0px;
	padding: 0 5px;
}
.support-only .entry-title {
	margin: -12px -12px 15px;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    background: #e34f0e;
}
.support-only .sb-snippet {
	padding: 10px;
	background: #fefefe;
    border: 1px solid #ddd;
}
.support-only hr {
	background-color: rgba(227,79,14,.5);
}
.support-only .sb-snippet code {
	background: #fcfcfc;
	color: #222;
}
.snippet-post .entry-content img,
.support-only img {
    border: 2px solid rgba(227,79,14,.5);
    border-radius: 5px;
}
.snippet-post code p {
	display: inline;
}
.blue {
	background: rgba(10,10,200,.1);
	border: 1px solid rgba(10,10,200,.2);
	font-weight: 700;
}
.red {
	background: rgba(200,10,10,.1);
	border: 1px solid rgba(200,10,10,.2);
	font-weight: 700;
}
.yellow {
    background: rgba(255,255,10,.2);
    border: 1px solid rgba(255,255,10,.5);
    font-weight: 700;
}

.post-type-archive-snippet .snippet,
.post-type-archive-snippet .snippet p {
	margin-bottom: 0px;
}
.thumbnail-wrapper {
	height: 100px;
	width: 200px;
	margin: 0 20px 20px 0;
	background-position: 10% 10%;
	float:left;
}

.page-template-page-support-docs .inner,
.page-template-page-support-docs .site-content {
	/*max-width: 1080px;*/
	/*width: 100%;*/
}
.search-form.search-support {
	float: left;
	clear: both;
	background: #f4edea;
	width: 100%;
    padding: 25px 0;
    margin: 0 0 -15px 0;
    text-align: center;
    /*border-bottom: 1px solid #ddd;*/
}
.search-form.search-support {
	text-align: center;
}
.search-form.search-support input,
.search-form.search-support input  {
	font-size: 16px;
	padding: 15px;
}
.search-form.search-support #searchsubmit{
	/*background: #e89a2e;*/
	background: #d5c8c3;
	color: #fff;
}
.search-form.search-support #searchsubmit:hover,
.search-form.search-support #searchsubmit:focus,
.search-form.search-support #searchsubmit:active{
	/*background: #e34f0e;*/
	background: #e89a2e;
	color: #fff;
	box-shadow: none;
}
.search-form.search-support #s{
	border: 1px solid #e5d4cd;
	width: 500px;
}
.support-category-wrapper {
    width: 30.5%;
    margin: 0 1% 2em;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.support-category-heading{
	padding: 20px 10px;
}
.support-list-posts {
	padding: 20px 30px;
}
.support-category-heading {
	text-align: center;
	border-bottom: 1px solid #ddd;
}
.support-category-heading p {
	font-size: 13px;
	color: #9E928D;
}
.support-category-heading h2 {
	font-weight: 400;
	padding-bottom: 10px;
}
.support-category-heading h2 a,
.browse-all {
	color: #524D4B;
	opacity: .9;
}
.support-category-heading h2 a:hover,
.browse-all:hover {
	opacity: 1.0;
}
.support-category-wrapper a {
	text-decoration: none;
}
.support-list-posts a {
	line-height: 1.5em;
}
.support-list-posts li {
	margin-bottom: 15px;
  text-indent: -10px;
  padding-left: 18px;
}
.support-list-posts li .fa{
	margin-right: 8px;
	color: #524D4B;
}
.support-category-wrapper .browse-all {
	display: block;
	text-align: center;
	margin-bottom: 24px
}
.submit-ticket-button {
	display: block;
	width: 90%;
	margin: 30px 0 60px 0;
	padding: 20px 5%;
	border-radius: 10px;
	background: #e89a2e;
	text-align:center;
	font-size: 30px;
	color: #fff;
	text-decoration: none;
	text-shadow: 0;
}
.submit-ticket-button span {
	font-size: 16px;
	font-weight: normal;
}
.submit-ticket-button:hover {
	background: #282828;
	color: #fff;
}

.category #primary,
.facebook-faq #primary{
	float: right;
}
.category .site-content article {
	margin-bottom: 0;
	padding-bottom: 0;
}
.category .site-content article h2,
.list-categories a {
	text-decoration: none;
}
.category #secondary,
.facebook-faq #secondary{
	float: left;
	padding-right: 40px;
}
.category .widget-area > a {
	text-decoration: none;
	/*line-height: 4;*/
}
.list-sub-categories {
	font-size: 16px;
}
.list-sub-categories ul {
	text-indent: 16px;
	padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}
.list-sub-categories li {
	margin-bottom:12px
}
.list-sub-categories li a {
	text-decoration: none;
}

.page-template-page-submit-ticket .popular-posts,
.post-1911 .popular-posts,
.page-template-page-instagram-support .popular-posts,
#gform_wrapper_1,
#gform_wrapper_9,
#gform_wrapper_12,
#gform_wrapper_20,
#gform_wrapper_8 {
	padding: 26px 3% 24px 3%;
	width: 94%;
	border: 1px solid #ddd;
	margin-bottom: 24px;
	/*text-align: center;*/
	border-radius: 6px;
}
.page-template-page-submit-ticket .popular-posts h3,
.page-template-page-instagram-support .popular-posts h3,
.post-1911 .popular-posts h3 {
	font-size: 16px;
	margin-bottom: 12px;
	margin-top: 0;
}
.page-template-page-submit-ticket .popular-posts a,
.page-template-page-instagram-support .popular-posts a,
.post-1911 .popular-posts a {
	text-decoration: none;
}
.page-template-page-submit-ticket .popular-posts .docs,
.page-template-page-instagram-support .popular-posts .docs,
.post-1911 .popular-posts .docs {
	margin-bottom: 24px;
}
.page-template-page-submit-ticket article p,
.page-template-page-instagram-support article p,
.post-1911 article p {
	margin-bottom: 12px;
}
.post-1911 .popular-posts p {
	line-height: 1;
}
.standout {
    /*display: block;*/
    font-size: 32px;
    /*text-align: center;*/
    font-weight: bold;
    margin-bottom: 12px;
    margin-right: 10px;
}

.support-sidebar {

}
#secondary.support-sidebar h3 {
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.support-sidebar .support-back-link{
	padding: 7px 0 30px 0;
}
.support-sidebar .support-back-link a{
	text-decoration: none;
}

/* Submit ticket page */
.support-popular{
	width: 100%;
	padding: 15px 0 0 0;
	text-align: left;
}
.support-popular .fa{
	margin-right: 7px;
}
.support-popular a{
	display: inline-block;
}

.bottom-gap{
	padding-bottom: 60px;
}

/* Search Standout Results */
.standout-list {
	padding: 12px;
	border: 1px solid #ddd;
	margin-bottom: 12px;
	margin-left: -12px;
	border-radius: 6px;
}



/* TWITTER FEED */
.wrapper.sb-twitter-feed{
	background: #f4edea;
}
.sb-twitter-feed .site-content{
	margin-top: 30px;
}
#gform_wrapper_11{
	width: 100%;
	max-width: 100%;
}
#gform_wrapper_11 ul li.gfield {
	float: left;
	clear: none;
	width: 50%;
}

/* Get Twitter tokens manually */
#ctf-get-token{
	display: block;
	float: left;
	clear: both;
	padding: 0 21px 0 21px;
	height: 47px;
	line-height: 47px;
	background: #1da1f2;
	color: #e9eef3;
	text-decoration: none;

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#ctf-get-token .fa{
	margin-right: 10px;
	font-size: 22px;
	position: relative;
	top: 3px;
}
#ctf-get-token:hover{
	background-color: #0c7abf;
	color: #fff;

	-moz-transition: all 0.1s ease-in-out;
	-webkit-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.ctf-tokens-manual,
.instagram-access-token{
	clear: both;
	margin: 20px 0;
	padding: 10px 25px;
	background: #eee;
	background: rgba(255,255,255,0.5);

	border: 1px solid #ddd;

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.ctf-tokens-manual h3{
	margin: 10px 0;
}
.instagram-access-token h3{
	margin: 0;
	padding: 0 0 10px 0;
}
.instagram-access-token h3 span{
	font-weight: normal;
}
.instagram-access-token{
	float: left;
	background: #eee;
	background: rgba(0,0,0,0.05);
	width: 95%;
	padding: 15px 2.5% 20px 2.5%;
	overflow: hidden;
}
.instagram-access-token img{
	float: left;
}
.instagram-access-token p{
	float: left;
  padding-left: 15px;
}


/* SHOPPING PAGE */
.shopping .page-section,
.shopping .row{
	width: 100%;
	float: left;
	clear: both;
	padding: 3px 0;
}
.shopping .edd_download_purchase_form{
	float: left;
	margin: 0;
}
.shopping .sb-license,
.shopping .edd_price_options,
.shopping .edd_purchase_submit_wrapper{
	float: left;
	margin: 0 10px;
}
.shopping .edd_price_options{
	margin-top: 3px;
}
.shopping #edd-purchase-button,
.shopping .edd-submit,
.shopping input[type=submit].edd-submit{
	padding: 2px 6px;
	font-size: 12px;
}
.shopping .edd_purchase_submit_wrapper{
	margin: 0;
	padding: 0;
}
.shopping .questions{
	float: left;
	clear: both;
	width: 100%;
	padding-top: 50px;
}
.shopping .strike{
	color: #666;
	text-decoration: line-through;
}
.shopping .strike em{
	font-style: normal;
}
.shopping .savings{
	font-size: 13px;
    width: auto;
    padding: 0 5px;
    display: inline-block;
    margin: 0 !important;
}
.shopping .lifetime-note,
.shopping .currency {
    font-size: inherit;
    top: auto;
    padding-left: 3px;
}

.beta-form{
	width: 90%; margin: 40px 0 0 0; padding: 20px 5%; border: 1px solid #ddd; background: #f9f9f9; border-radius: 3px;
}


/* About */
.about .bio{
	float: left;
	width: 21%;
	padding: 20px 2.5%;
	text-align: center;
}
.about .bio.one{
	padding-left: 0;
}
.about .bio.three{
	padding-right: 0;
}
.about .bio img{
    width: 200px;
    border-radius: 200px;
}
.about .bio h3, .about .bio p{
	width: 100%;
}
.about .bio h3{
	margin-top: 10px;
}
.sb-row{
	width: 100%;
	float: left;
	clear: both;
}

@media all and (max-width: 700px){
	.about .bio{
		width: 100%;
		padding: 20px 0;
	}
}

.account-tools form{
	padding-bottom: 50px;
}
.account-tools #sb-license{
	width: 300px;
}
.account-tools #sb-plugin {
    position: relative;
    top: 2px;
}
.account-tools .license-table{
	margin: 0 0 60px 0;
}


.support-form-note {
    background: #eee;
    padding: 20px 25px 10px 25px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Docs menu slim */
.doc-menu-inline{
	position: relative;
	display: inline-block;
	padding-right: 12px !important;
	margin-right: 8px;
	border-right: 1px solid #ccc;
}
/*.doc-menu-inline:before{
	content: '>';
	position: relative;
	margin-right: 5px;
}*/

/* Bump form field description up a bit */
.entry-content .gform_wrapper .field_description_below .gfield_description {
    padding-top: 2px;
}

/* Pricing note for Instagram standalone version */
.sbi_standalone_pricing_note{
	padding: 10px 5px;
    font-size: 12px;
    line-height: 1.4;
    background: rgba(255,255,255,0.5);
    margin: 10px 0 -15px 0;
}


/* CFF main page */
.product-home-banner.small-banner{
	padding-top: 40px;
}
.product-home-banner .banner-text{
	position: relative;
}
.product-home-banner .banner-text h1 {
    font-size: 58px;
    line-height: 0.95;
}
.product-home-banner .banner-text h1 span{
	font-weight: 300;
    font-size: 45px;
    margin-left: -5px;
}
.product-home-banner .banner-text h2 {
    max-width: 340px;
    font-size: 20px;
}
.product-home-banner img {
    top: 12px;
    right: -150px;
}
.product-home-banner .actions{
    position: absolute;
    bottom: -92px;
}
.product-home-banner.youtube .actions{
	bottom: -92px;
}
.product-home-banner .btn {
    padding: 16px 30px;
    margin-bottom: 0;
}
.product-home-banner .btn.dark{
	background: #e34716;
}
.product-home-banner .btn.dark:hover,
.product-home-banner .btn.dark:focus{
	background: #cf3100;
}
.product-home-banner.youtube .btn.dark:hover,
.product-home-banner.youtube .btn.dark:focus{
	background: #e89a2e;
}

.product-home-banner.instagram .actions.pushup{
	margin-top: 20px;
	bottom: -80px;
}


/* Checks */
.product-home .extras{
	padding: 45px 0 35px 0;
	background: #f4edea;
}

/* Features */
.product-home .features{
	position: relative;
	padding: 40px 0;
	background: #f4edea;
}
.product-home .benefits{
	background: #fff;
}
.product-home h2{
	text-align: center;
    font-size: 36px;
    width: 90%;
    margin: 20px auto;
    line-height: 1.2;
    font-weight: 800;
}
.product-home .features .cols{
	padding-top: 10px;
}
.product-home .features .col{
	padding-top: 30px;
}
.product-home .section-intro{
	text-align: center;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
}
.product-home .feature{
	width: 100%;
	margin-bottom: 40px;
}
.product-home .features .view-more{
	clear: both;
    color: rgba(0,0,0,0.1);
    font-size: 40px;
    text-align: center;
    padding: 0;
    margin: 0;
    margin-top: -61px;
    position: relative;
    top: -20px;
}

/* Product home feature section */
.product-home .right-fit .col{
	width: 30.66%;
    margin-left: 4%;
}
.product-home .right-fit .col.first{
	margin: 0;
}
.product-home .right-fit .feature,
.product-home .review{
	position: relative;
    float: left;
    clear: none;
    margin: 0 4% 40px 0;
    padding: 20px;
    background: none;
    background: #fff;
    box-shadow: 0 0 40px 0 rgba(0,0,0,0.05);
    box-sizing: border-box;
}
.product-home .right-fit .feature h3{
	font-size: 19px;
}
.product-home .right-fit .actions {
    width: 100%;
    clear: both;
    float: left;
    text-align: center;
    margin-bottom: -100px;
}
.product-home .right-fit .actions .btn{
	width: auto;
	float: none;
	display: inline-block;
}

.product-home .feature-header{
	width: 100%;
	float: left;
	padding: 5px 0;
}
.product-home .feature h3{
	margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 400;
    width: 74%;
    display: inline-block;
    line-height: 1.3;
}
.product-home .feature .fa{
	float: left;
	font-size: 42px;
    color: #dcd5d2;
    position: relative;
    display: inline-block;

    position: relative;
    margin-right: 15px;
    top: 2px;
}
.product-home .feature .single-line .fa{
	top: -8px;
}
.product-home .feature .triple-line .fa{
	top: 12px;
}
.product-home .feature p{
	text-align: left;
	font-size: 14px;
	margin-bottom: 10px;
}
.product-home .features .balloons{
	position: absolute;
	z-index: 10;
    bottom: -90px;
    left: 50%;
    margin-left: -115px;
}

/* Product home reviews */
.product-home .reviews {
    padding-top: 100px;
}
.reviews .cols {
    padding-top: 30px;
}
.reviews .col{
	width: 31%;
    margin-left: 3.5%;
}
.reviews .col.first{
	margin: 0;
}
.product-home .tweet{
	margin: 0 0 32px 0;
}
.product-home .twitter-tweet{
	width: 100%;
	margin-top: 0 !important;
	background: #fff;
}
.product-home .actions{
	clear: both;
}
.product-home .reviews .actions{
	bottom: -50px;
}

/* Product home testimonials */
.product-home .support{
	padding: 100px 0 150px 0;
}
.product-home .slider-wrap{
	position: relative;
	padding-top: 30px;
}
.product-home #testimonial-slider li{
	padding: 0;
	margin: 0;
}
.product-home #testimonial-slider,
.product-home .support ul {
    list-style: none;
}
.product-home .slider-wrap .sy-next{
	right: -90px;
}
.product-home .slider-wrap .sy-prev{
	left: -110px;
}
.product-home .sy-controls{
	display: block;
}
.product-home .sy-controls li a:after {
    line-height: 60px;
    background-color: transparent; 
    width: 60px;
    height: 60px;
    margin-top: -40px;
    margin-left: -30px;
}
.product-home .slider-wrap li.sy-active a {
    background-color: #e34f0e;
}
.product-home .start-stop{
	position: absolute;
	bottom: 5px;
	right: 5px;
}
.product-home .start-stop a{
    color: rgba(0,0,0,0.2);
}
.product-home .start-stop a:hover{
	color: #282828;
}
.product-home .start-stop a:active{
	color: #e34f0e;
}
.product-home .slider-wrap .sy-pager li {
    width: 12px;
    height: 12px;
}
.product-home .wp-balloons{
	position: absolute;
    left: 50%;
    margin-left: -150px;
    margin-top: 25px;
}

/* Product home WordPress reviews */
.product-home #reviews{
	padding-top: 170px;
    padding-bottom: 130px;
    margin-bottom: -120px;
    background: #fbf9f8;
}
.product-home .reviews-container{
	padding: 40px 0 10px 0;
}
.product-home #reviews .review{
	float: none;
	margin: 0 0 20px 0;
	text-align: left;
}
.product-home .review .review-title {
    float: left;
    margin-left: 0.75em;
    font-weight: 800;
    font-size: 19px;
    line-height: 24px;
}
.product-home #reviews .review-body p{
	padding: 6px 0;
	font-size: 14px;
	text-align: left;
	font-weight: 400;
}
.product-home .review-count{
	position: relative;
	top: -5px;
	margin-left: 5px;
	font-size: 12px;
    text-decoration: none;
    padding-top: 10px;
    display: inline-block;
}
.product-home #reviews .show-all,
.product-home #reviews .see-all-reviews{
	float: left;
    width: 79%;
    display: block;
    padding: 10px 0;
    margin: 20px 0 15px 0;
    text-align: center;
    color: #333;
    text-decoration: none;
    font-weight: bold;
	background: #f4edea;
}
.product-home #reviews .see-all-reviews{
	float: right;
	width: 20%;
}
.product-home #reviews .see-all-reviews .fa{
	margin-left: 5px;
	position: relative;
    top: 1px;
}
.product-home #reviews .show-all:hover,
.product-home #reviews .show-all:focus,
.product-home #reviews .see-all-reviews:hover,
.product-home #reviews .see-all-reviews:focus{
    background: #edb72f;
    color: #fff;
}
.product-home .video {
    padding-top: 135px;
}

/* New footer */
footer[role="contentinfo"] {
	padding: 0 0 20px 0;
    background: #282828;
}
footer .footer-band{
	background: #e34f0e;
	/*background: linear-gradient(115deg, rgba(227,79,14,1) 0%, rgba(232,154,46,1) 100%);*/
	background: linear-gradient(115deg, rgba(227,79,14,1) 0%, rgba(232,136,46,1) 100%);
	padding: 20px 0;
}
footer #cff{
	margin: 0;
}
footer .site-info{
	padding: 40px 0 20px 0;
	margin: 0;
}
.footer-blurb{
	color: #a09c9a;
	line-height: 1.5;
	font-size: 14px;
}
footer[role="contentinfo"] .footer-blurb b{
	font-weight: 800;
	color: #ccc7c5;
}
footer[role="contentinfo"] .footer-blurb a{
	color: #ccc7c5;
}
footer[role="contentinfo"] .footer-blurb a:hover,
footer[role="contentinfo"] .footer-blurb a:focus{
	color: #fff;
}
.footer-blurb span{
	display: block;
	padding-top: 2px;
	font-size: 13px;
}
.footer-links{
	padding-top: 20px;
}
footer[role="contentinfo"] .footer-links a,
footer[role="contentinfo"] .copyright{
	color: #a09c9a;
}
footer[role="contentinfo"] .footer-links a:hover,
footer[role="contentinfo"] .footer-links a:focus{
	color: #fff;
}

.banner-grad{
	float: left;
    width: 100%;
	/*padding-top: 10px;*/
	/*padding-bottom: 20px;*/
	background: #e34f0e;
    background: linear-gradient(115deg, rgba(227,79,14,1) 0%, rgba(232,136,46,1) 100%);
}

@media screen and (min-width: 700px){
	.main-navigation .current-menu-item > a, .main-navigation .current-menu-ancestor > a, .main-navigation .current_page_item > a, .main-navigation .current_page_ancestor > a {
	    background: #e34f0e;
	    margin-bottom: -1px;
	}
	.main-navigation li {
	    margin-bottom: -1px;
	}
	/* Grey nav item select for product home pages */
	.page-template-page-cff-php .main-navigation.primary-nav .current-menu-item > a,
	.page-template-page-cff-php .main-navigation.primary-nav .current-menu-ancestor > a,
	.page-template-page-cff-php .main-navigation.primary-nav .current_page_item > a,
	.page-template-page-cff-php .main-navigation.primary-nav .current_page_ancestor > a,
	.page-template-page-instagram-feed-home .main-navigation.primary-nav .current-menu-item > a,
	.page-template-page-instagram-feed-home .main-navigation.primary-nav .current-menu-ancestor > a,
	.page-template-page-instagram-feed-home .main-navigation.primary-nav .current_page_item > a,
	.page-template-page-instagram-feed-home .main-navigation.primary-nav .current_page_ancestor > a,
	.page-template-page-twitter-home .main-navigation.primary-nav .current-menu-item > a,
	.page-template-page-twitter-home .main-navigation.primary-nav .current-menu-ancestor > a,
	.page-template-page-twitter-home .main-navigation.primary-nav .current_page_item > a,
	.page-template-page-twitter-home .main-navigation.primary-nav .current_page_ancestor > a,
	.page-template-page-youtube-home .main-navigation.primary-nav .current-menu-item > a,
	.page-template-page-youtube-home .main-navigation.primary-nav .current-menu-ancestor > a,
	.page-template-page-youtube-home .main-navigation.primary-nav .current_page_item > a,
	.page-template-page-youtube-home .main-navigation.primary-nav .current_page_ancestor > a {
	    background: #444;
	}
	.page-template-page-cff-php .main-navigation.primary-nav .current-menu-item > a:hover,
	.page-template-page-cff-php .main-navigation.primary-nav .current-menu-ancestor > a:hover,
	.page-template-page-cff-php .main-navigation.primary-nav .current_page_item > a:hover,
	.page-template-page-cff-php .main-navigation.primary-nav .current_page_ancestor > a:hover,
	.page-template-page-instagram-feed-home .main-navigation.primary-nav .current-menu-item > a:hover,
	.page-template-page-instagram-feed-home .main-navigation.primary-nav .current-menu-ancestor > a:hover,
	.page-template-page-instagram-feed-home .main-navigation.primary-nav .current_page_item > a:hover,
	.page-template-page-instagram-feed-home .main-navigation.primary-nav .current_page_ancestor > a:hover,
	.page-template-page-twitter-home .main-navigation.primary-nav .current-menu-item > a:hover,
	.page-template-page-twitter-home .main-navigation.primary-nav .current-menu-ancestor > a:hover,
	.page-template-page-twitter-home .main-navigation.primary-nav .current_page_item > a:hover,
	.page-template-page-twitter-home .main-navigation.primary-nav .current_page_ancestor > a:hover,
	.page-template-page-youtube-home .main-navigation.primary-nav .current-menu-item > a:hover,
	.page-template-page-youtube-home .main-navigation.primary-nav .current-menu-ancestor > a:hover,
	.page-template-page-youtube-home .main-navigation.primary-nav .current_page_item > a:hover,
	.page-template-page-youtube-home .main-navigation.primary-nav .current_page_ancestor > a:hover {
		background: #e89a2e;
	}
	.main-navigation.primary-nav li ul.sub-menu {
	    margin-top: -1px;
	}
}
.banner-grad .banner{
	padding: 40px 0 45px 0;
}
.banner-grad h1{
	font-size: 44px;
    line-height: 0.95;
    font-weight: 800;
    color: #fff;
}
.banner-grad h1 span{
    font-weight: 300;
    font-size: 32px;
    margin-left: -2px;
    color: #e34716;
}
.banner-grad h2{
	font-weight: 300;
	font-size: 19px;
	color: #999;
	padding-top: 10px;
}
.primary-nav{
	position: relative;
	box-shadow: 0 30px 30px 0 rgba(0,0,0,0.1);
}
.sub-menu a{
	font-weight: normal !important;
}

/* Product home responsive */
@media all and (max-width: 940px){
	.product-home-banner.small-banner {
	    padding-top: 15px;
	}
	.home-banner.product-home-banner img {
	    position: relative;
	    top: 20px;
	    left: 50%;
    	margin-left: -375px;
	}
	.home-banner.product-home-banner .banner-text {
	    max-width: 100%;
	}
	.product-home-banner .banner-text h1 {
	    font-size: 40px;
	    text-align: center;
	}
	.product-home-banner .banner-text h1 span {
	    font-size: 36px;
	    margin-left: -2px;
	}
	.product-home-banner .banner-text h2 {
	    max-width: 100%;
	    text-align: center;
	    margin-top: 10px;
	}
	.product-home-banner .actions,
	.product-home-banner.instagram .actions.pushup {
		position: relative; 
	    bottom: 0; 
		width: 370px;
		max-width: 100%;
	}
	.product-home-banner .actions a{
		margin-bottom: 10px;
	}
	#main .product-home-banner.socialwall img {
	    top: 0;
	    left: auto;
	    margin: 0 auto;
	    display: block;
	}
}
@media all and (max-width: 800px){
	.home-banner.product-home-banner img {
	    left: 0;
	    margin-left: 0;
	    right: auto;
	}
	.product-home .right-fit .col {
	    width: 100%;
	    margin-left: 0;
	    padding-top: 0;
	}
	.product-home .right-fit .feature, .product-home .review {
	    margin-bottom: 10px;
	}
	.product-home .features .view-more{
		display: none;
	}
	.reviews .col {
	    width: 100%;
	    margin-left: 0;
	}
	.product-home .twitter-tweet {
	    margin: 0 auto;
	}
	.product-home .slider-wrap .sy-prev {
	    left: 0;
	}
	.product-home .slider-wrap .sy-next {
	     right: 0; 
	}
	.product-home #reviews .show-all, .product-home #reviews .see-all-reviews,
	.product-home #reviews .see-all-reviews{
	    width: 100%;
	    margin: 0px 0 15px 0;
	}
	.reviewer-avatar{
		padding-left: 3px;
		float: none;
	    width: 36px;
	    margin: 0 auto;
	}
	.reviewer-avatar a {
	    float: none;
	    width: 36px;
	}
	.reviewer-avatar img {
	    margin: 0;
	}
	.reviewer-info {
		width: 100%;
	    text-align: center;
	}
	div.review-stars {
	    float: none;
	    margin: 0 auto;
	    padding: 5px 0 8px;
	}
	.product-home .review .review-title {
	    margin-left: 0;
	    width: 100%;
	}
	.product-home .feature {
	    margin-bottom: 0px;
	}
	.home .checks {
	    padding-top: 10px;
	}
	footer[role="contentinfo"] {
	    text-align: center;
	}
}


/* Instagram main page */
.product-home-banner.instagram img {
    top: -35px;
    right: 20px;
}
.product-home.instagram .extras{
	padding-top: 30px;
}

@media all and (max-width: 800px){
	.product-home-banner.instagram img {
	    top: 25px !important;
	}
}

.sb-instagram-stripe{
	clear: both;
	width: 100%;
	height: 130px;
	background: url('img/sb-instagram-stripe.jpg?2') repeat-x top center;
}

/* Twitter home */
.product-home-banner.twitter img {
    top: -40px;
    right: -50px;
}
.wp-review-link{
	font-size: 12px;
}

@media all and (max-width: 800px){
	.product-home-banner.twitter img {
	    top: 20px;
	}
}

/* Twitter demo */
.ctf-demo .demo-form{
	width: 100%;
	padding: 25px 25px 10px 25px;
	margin-bottom: 0;
	box-sizing: border-box;
}
.ctf-demo .demo-form h4{
	float: left;
	margin: 0;
	width: auto;
}
.ctf-demo .demo-form .row {
    margin-bottom: 15px;
}
.ctf-demo .demo-form .section-label{
	float: left;
	display: inline-block;
    width: auto;
    margin-top: -18px;
    background: #f4edea;
    padding: 7px 7px 0 7px;
    margin-left: 0px;
}
.ctf-demo .demo-view-btn{
	float: left;
}
.ctf-demo .demo-form .col {
    float: left;
    width: 33%;
    max-width: 200px;
    padding: 10px;
    margin: 1px;
    box-sizing: border-box;
}
.ctf-demo .demo-form .col:hover{
	background: rgba(0,0,0,0.03);
	border-radius: 5px;
}
.ctf-demo .demo-view-btn{
	float: right;
    clear: none;
    width: 250px;
    padding-top: 17px;
}
.ctf-demo .demo-view-btn input{
	float: left;
	font-size: 14px;
	margin-top: 15px;
    padding: 17px 26px;
    background: #edb72f;
    color: #fff;
}
.ctf-demo .demo-view-btn input:hover {
    background: #e34f0e;
}
.ctf-demo .demo-view-btn input:active{
	box-shadow: none !important;
}
.ctf-demo .demo-view-btn p {
    line-height: 1.3;
    float: left;
    width: 110px;
    padding: 18px 0 0 15px;
}
.ctf-demo .demo-view-btn p a{
	text-decoration: none;
}
.ctf-demo .layout label{
	float: none;
	display: inline;
}
.ctf-demo-settings{
	float: left;
	width: 80%;
	max-width: 610px;
	min-height: 43px;
    margin: 15px 20px 15px 0;
    border: 1px solid rgba(0,0,0,0.15);
    padding: 5px 10px;
    border-radius: 5px;
}
.ctf-demo-settings .cols {
    width: 100%;
    clear: both;
    float: left;
    padding-top: 5px;
}
.ctf-demo-settings input[type="text"]{
	width: 100%;
	margin-top: 5px;
	border: none;
}
.ctf-demo .demo-form input[type=radio]{
	margin: 0 5px 0 0;
    top: 0px;
}
.ctf-demo .sub-row label{
	padding: 0;
}
/* Twitter demo feeds */
.twitter-demo-feed-one{
	float: left;
    clear: none;
    width: 65%;
    margin-right: 5%;
}
.twitter-demo-feed-two{
	position: relative;
    float: left;
    clear: none;
    width: 30%;
}
.twitter-demo-feed-two .ctf{
	padding: 20px;
	box-sizing: border-box;
	border-radius: 5px;
}
.twitter-demo-feed-two #ctf .ctf-item,
.twitter-demo-feed-two #ctf .ctf-item:first-child {
    border-top: 1px solid #555;
}
.twitter-demo-feed-two .ctf a {
    color: #edb72f;
    text-decoration: none;
}
.twitter-demo-feed-two .ctf a:hover{
	color: #e34f0e;
}
.twitter-demo-feed-two .ctf p.ctf-tweet-text {
    line-height: 1.4;
}
.twitter-demo-feed-two #ctf .ctf-header-text .ctf-header-bio {
    color: #ccc;
    padding-top: 8px !important;
    font-size: 12px !important;
}
.twitter-demo-feed-two .ctf-header-text {
	padding-top: 0 !important;
}
.twitter-demo-feed-two .ctf-author-box{
    display: none !important;
}
.twitter-demo-feed-two #ctf #ctf-more {
    background: #e34f0e;
    line-height: 1;
    padding: 8px 0 10px 0;
}
.twitter-demo-feed-two #ctf #ctf-more:hover {
    background: #edb72f;
}
.twitter-demo-feed-two .ctf-tweet-actions{
	width: 100%;	
}
.twitter-demo-feed-two #ctf .ctf-tweet-actions .ctf-twitterlink{
	float: right;
}
.twitter-demo-feed-two #ctf .ctf-tweet-actions .ctf-twitterlink:hover{
	text-decoration: underline;
}
.twitter-demo-feed-two #ctf .ctf-twitter-card {
    background: none;
}
.twitter-demo-feed-two #ctf .ctf-twitter-card:hover {
    background: rgba(0,0,0,0.05);
}
.twitter-demo-feed-two #ctf .ctf-tc-summary-info {
    background: rgba(255,255,255,0.1);
}
.twitter-demo-feed-two #ctf .ctf-header-text .ctf-header-counts {
    font-size: 12px;
}

@media all and (max-width: 800px){
	.twitter-demo-feed-one, .twitter-demo-feed-two{
		width: 100%;
	}
	.ctf-demo .demo-form .col {
	    width: 100%;
	    max-width: 100%;
	}
	.ctf-demo .demo-view-btn {
	    width: 100%;
	    padding: 0 0 10px 0;
	}
	.product-demo .demo-tabs a {
	    display: block;
	    margin: 2px 0;
	    width: 50%;
	}
	.product-demo .demo-tabs {
	    clear: both;
	    padding-top: 20px;
	}
	.product-demo .actions{
		width: 100%;
	}
	.product-demo .actions .btn {
	    margin-left: auto;
	    margin-right: auto;
	}
	.product-demo .demo-label-note {
	    padding-bottom: 15px;
	}
	.instagram-demo .demo-support {
	    margin: 10px 0 0 5px;
	}
}

/* Other Twitter demos */
.ctf-carousel{
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.02);
    border-radius: 5px;
}
.ctf-masonry{
	margin-top: -12px;
}
#ctf.ctf-masonry #ctf-more{
	margin-top: 25px;
}

/* Twitter demo two note */
.what-this-btn {
    padding: 5px 10px;
    background: #edb72f;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px 0 0 0;
    float: right;
    clear: both;
    position: relative;
    z-index: 9;
    margin-right: 1px;
}
.what-this-btn:hover {
    background: #e34f0e;
    color: #fff;
}
.this-is {
    display: none;
    position: absolute;
    z-index: 8;
    bottom: 0;
    width: 88%;
    padding: 12px 6%;
    color: #eee;
    background: #e34f0e;
    border-radius: 5px;
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    padding-bottom: 30px;
}
.gform_confirmation_wrapper{
	position: relative;
	z-index: 10;
}

.sb_payment_desc .threeyears,
.sb_payment_desc .lifetime{
	display: none;
}
.questions .leftcol{
	width: 48%;
}
.pricing-question{
	background: rgba(255,255,255,0.5);
	padding: 20px;
	border-radius: 10px;
	margin: 0 0 20px 0;
	box-sizing: border-box;
}
.pricing-question p{
	margin-bottom: 10px;
}

/* YouTube home page */
.coming-soon-box{
	float: right;
    clear: none;
    width: 484px;
    background: rgba(255,255,255,0.1);
    padding: 20px 25px 25px 25px;
    margin-top: 10px;
    min-height: 160px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
    border-radius: 5px;
    color: #ccc;
}
.coming-soon-box h4{
	padding-bottom: 15px;
	color: #fff;
}
.coming-soon-box p{
	font-weight: normal;
    font-size: 14px;
    float: left;
    width: 100%;
}
.coming-soon-box .cta-btn{
	float: left;
	padding: 7px 12px;
	border-radius: 3px;
	text-decoration: none;
	background: rgba(255,255,255,0.2);
	color: #eee;
}
.coming-soon-box .cta-btn:hover{
	background: rgba(255,255,255,0.25);
}
.coming-soon-box #gform_wrapper_19.gform_wrapper{
	float: left;
	width: 100%;
	border: 0;
	padding: 0;
	margin: 15px 0;
	font-size: 14px;
	border-radius: 0;
	overflow: hidden;
}
.coming-soon-box #gform_wrapper_19.gform_wrapper *{
	margin: 0 !important;
}
.coming-soon-box .gform_wrapper .gform_body{
	width: 80%;
	float: left;
}
.coming-soon-box .gform_wrapper ul.gform_fields li.gfield{
	padding-right: 8px;
}
.coming-soon-box #gform_wrapper_19 input[type="text"]{
	border: none;
    border-radius: 0;
    padding: 6px 10px 7px 10px;
}
.coming-soon-box .gform_wrapper .field_description_below .gfield_description{
	font-weight: normal;
    padding: 3px 1px;
    color: #999;
}
.coming-soon-box .gform_wrapper .gform_footer{
	position: relative;
	padding: 0;
	width: auto;
	float: left;
	clear: none;
}
.coming-soon-box .gform_wrapper .gform_footer .button{
	padding: 6px 12px;
}
.coming-soon-box .gform_wrapper .gform_footer img.gform_ajax_spinner {
	position: absolute;
	left: 0;
	top: 0;
	padding: 8px 27px;
	z-index: 99999;
	border-radius: 5px;
	background: #fff;
}
.coming-soon-box .gform_confirmation_wrapper{
	margin: 20px 0;
    float: left;
	font-size: 14px;
	font-weight: normal;
}
.coming-soon-box .validation_error,
.coming-soon-box .validation_message{
	display: none !important;
}
.coming-soon-box .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){
	max-width: 98% !important;
	background: none;
	border: none;
	padding: 0;
}
.coming-soon-box #gform_wrapper_19 .gfield.gfield_error input[type="text"]{
	background: #f7e4e4;
	box-shadow: inset 0 0 0 2px #e65353;
}

.actions.slim.pre-launch {
    width: 255px;
}

/* Chekout styling tweaks */
#edd_purchase_form_wrap #edd-card-wrap {
    margin-top: 10px;
}
#edd_checkout_form_wrap select.edd-select {
    padding: 10px;
    border: 1px solid #ddd;
}
#edd_checkout_form_wrap #edd_discount_code {
	display: none;
    font-size: 12px;
}
#edd_checkout_form_wrap .edd-payment-icons {
    margin-bottom: 22px;
}
#edd_checkout_form_wrap legend,
#edd_checkout_cart_wrap .sb_your_order,
#edd_checkout_cart_wrap #edd_login_fields {
    font-size: 24px;
    font-weight: 100;
    margin: 0 0 10px 0;
}
#edd_checkout_form_wrap span.edd-description {
    margin-top: -5px;
}
#edd_checkout_form_wrap input[type=radio],
#edd_checkout_form_wrap input[type=checkbox] {
    position: relative;
    top: 2px;
}
.sb-shadow{
	box-shadow: 0 0 50px 0 rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.1);
}

#edd_checkout_form_wrap p {
    margin-bottom: 15px;
}

.pricing .price .lifetime-note,
.shopping .price .lifetime-note{
	display: none;
}
.pricing .price.lifetime .currency,
.pricing .price.lifetime .small,
.shopping .price.lifetime .currency,
.shopping .price.lifetime .small{
	display: none;
}
.pricing .price.lifetime .lifetime-note,
.shopping .price.lifetime .lifetime-note{
	display: inline-block;
}
}
.pricing .price.lifetime .lifetime-note.sub,
.shopping .price.lifetime .lifetime-note.sub{
	display: block;
	padding-top: 3px;
	margin: 8px 0 -8px 0;
}


/* YouTube Feed main page */
.product-home-banner.youtube img {
    top: -40px;
    right: 0px;
}
@media all and (max-width: 800px){
	.product-home-banner.youtube img {
	    top: 25px !important;
	}
}

.CampaignType--floating{
	z-index: 999 !important;
}

/* New pricing page */
.dev.pricing-page .guarantee-stamp{
	width: 100px;
	height: 100px;
}
.dev.pricing-page .guarantee h3,
.dev.pricing-page .guarantee p {
    font-weight: 100;
}
.dev.pricing-page .guarantee p {
	font-size: 20px;
}
.dev.pricing-page .guarantee span{
	font-weight: bold;
}
.dev.pricing-page .stars .fa-star{
	color: #edb72f;
}
.dev.pricing-page .info{
	text-align: left;
    padding: 15px 5px;
}
.dev.pricing-page .info-title{
	font-weight: bold;
}
.dev.pricing-page .pricing .info p{
	padding: 3px 5px 3px 12px;
	border: none;
}
.dev.pricing-page .pricing .info .fa{
	margin-right: 2px;
    width: 12px;
}
.dev.pricing-page .pricing .info .fa-check{
	width: auto;
    font-size: 10px;
    position: relative;
    top: -1px;
}
.dev.pricing-page .num-sites{
	font-size: 15px;
    padding-top: 2px;
    font-weight: normal;
    /*color: #e34716;*/
}
.dev.pricing-page .num-sites span{
	font-weight: bold;
	
}
.dev.pricing-page .pricing header{
	padding: 12px 0 16px 0;
	border-bottom: 1px solid #ddd3cf;
}
.dev.pricing-page .pricing{
	/*background: none;*/
}
.dev.pricing-page .pricing section{
	/*box-shadow: 0 0 40px 0 rgba(0,0,0,0.05);*/
}
.dev.pricing-page .currency,
.dev.pricing-page .lifetime-note{
	top: -3px;
    left: -8px;
}
.dev.pricing-page .lifetime-note{
	left: -5px;
}
.dev.pricing-page .pricing-features{
	padding-left: 10px;
}
.dev.pricing-page .pricing-features p{
	font-size: 12px;
}
.dev.pricing-page .pricing header h4{
	font-size: 22px;
	font-weight: 100;
}
.dev.pricing-page .strike{
	display: block;
	width: 100%;
}
.dev.pricing-page .strike span{
	position: relative;
	display: inline-block;
	top: 8px;
	font-size: 18px;
	font-weight: 100;
	text-decoration: none;
}
.dev.pricing-page .strike em{
	font-style: normal;
}
.dev.pricing-page .strike span:after{
	position: relative;
    content: ' ';
    width: 100%;
    height: 1px;
    border-bottom: 2px solid #e34716;
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 13px;
}
.dev.pricing-page .pricing header .price {
    font-size: 38px;
}
.dev .buy-options {
    float: left;
    width: 100%;
    padding: 0 0 5px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 16px;
    background: #fdfdfd;
}
.dev .pricing section {
    padding-bottom: 5px;
}
.dev .pricing section .edd_price_options {
    margin: 10px 0;
}
.dev .pricing.sb_upgrade section .edd_price_options{
	margin-top: 0;
}
.dev .pricing .edd-add-to-cart,
.dev .pricing .edd_go_to_checkout,
.dev .pricing .edd-submit {
    width: 70%;
    padding: 8px 0;
}
.dev .pricing .edd-submit{
	margin-bottom: 2px;
}
.dev.pricing-page .option {
    border-top: none;
}
.dev .sb_custom {
    padding-bottom: 10px;
}
.savings {
    font-size: 15px;
    background-color: yellow;
    width: 60%;
    padding: 6px;
    display: block;
    font-weight: normal;
    margin: 0 auto 5px auto !important;
}

/* Checkout */
.edd_cart_total {
    font-size: 16px;
}
.edd-checkout #edd-purchase-button {
    float: left;
    font-weight: bold;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.5);
    background: #48bb78;
}
.edd-checkout #edd-purchase-button:hover,
.edd-checkout #edd-purchase-button:focus{
	background: #1b944d;
}
.edd-checkout #edd_purchase_submit {
    margin-bottom: 0 !important;
}
#edd_checkout_wrap #edd_sl_cancel_renewal_form{
	margin: 15px 0 0 0;
}
#edd_checkout_wrap #edd_sl_cancel_renewal_form .edd-submit{
	font-size: 12px;
}

/* Checkout renewal notice */
#sb_checkout_renewal_notice{
	margin: 20px 0 0px 0;
	background: #BCE0C2;
    padding: 15px 25px;
    border: 1px solid #6AB074;
    color: #214F28;
    border-radius: 5px;
    font-size: 13px;
    line-height: 1.6;
}
.is_renewal .edd_cart_item .edd_cart_item_price span{
	position: relative;
}
.is_renewal .edd_cart_item .edd_cart_item_price .sb_item_price:after {
    display: block;
    position: absolute;
    content: '';
    height: 1px;
    background: red;
    width: 112%;
    left: -6%;
    top: 50%;
}

/* Checkout banner */
.sb_checkout_banner{
	position: relative;
    width: 100%;
    background: #faf6f5;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.05);
    padding: 15px 3% 15px 3%;
    font-size: 13px;
    margin: -20px 0 45px 0;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    overflow: hidden;
    box-sizing: border-box;
}
.sb_checkout_banner img{
	position: absolute;
	right: -16px;
    bottom: -48px;
}
.sb_checkout_banner h5{
	font-weight: 400;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

/* Empty checkout */
.edd-checkout .entry-header{
	margin-bottom: 40px;
}
.edd-checkout .edd_empty_cart{
	display: block;
	margin-top: -20px;
	font-size: 28px;
    font-weight: bold;
}
.sb_empty_cart{
	margin-bottom: 10px;
	font-size: 34px;
    text-align: center;
}
.sb_empty_cart #sb_add_more_plugins_cart{
	margin: 10px 0 0 0;
}

/* Cart items reminder notice */
.sb_cart_reminder {
    position: relative;
    width: 94%;
    min-height: 80px;
    background: #faf6f5;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.05);
    padding: 20px 3% 25px 3%;
    font-size: 13px;
    margin: -20px 0 25px 0;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    overflow: hidden;
}
.sb_cart_reminder .sb_container{
    padding-right: 125px;
}
.sb_cart_reminder .sb_cart_reminder_title{
    font-weight: 400;
    font-size: 18px;
    padding: 0 0 5px 0;
    margin: 0;
}
.sb_cart_reminder p{
    margin: 0;
    padding: 0;
    color: #776963;
}
.sb_cart_reminder a{
	color: #776963;
    text-decoration: none;
    border-bottom: 1px dotted #776963;
    display: inline-block;
    line-height: 1.1;
}
.sb_cart_reminder a:hover{
	color: #222;
	border-bottom: 1px solid #776963;
}
.sb_cart_reminder .sb_complete_checkout{
	color: #e34f0e;
	font-weight: bold;
	border-bottom: 1px solid #e6c7b9;
	margin-left: 5px;
}
.sb_cart_reminder .sb_complete_checkout:hover{
	color: #222;
	border-bottom: 1px solid #776963;
}
.sb_cart_reminder img{
	position: absolute;
	right: -40px;
    bottom: -27px;

	transform: rotate(-15deg);
	-webkit-animation: ring 6.5s 1s ease-in-out infinite;
    -webkit-transform-origin: 40% 150px;
    -moz-animation: ring 6.5s 1s ease-in-out infinite;
    -moz-transform-origin: 40% 150px;
    animation: ring 6.5s 1s ease-in-out infinite;
    transform-origin: 40% 150px;
}
@-webkit-keyframes ring {
    0% { transform: rotate(-15deg) }
    1% { transform: rotate(-20deg) }
    2% { transform: rotate(-10deg) }
    3% { transform: rotate(-20deg) }
    4% { transform: rotate(-10deg) }
    5% { transform: rotate(-28deg) }
    6% { transform: rotate(-12deg) }
    7% { transform: rotate(-17deg) }
    8% { transform: rotate(-14deg) }
    9% { transform: rotate(-16deg) }
    10% { transform: rotate(-15deg) }
    100% { transform: rotate(-15deg) }
}
@-moz-keyframes ring {
    0% { transform: rotate(-15deg) }
    1% { transform: rotate(-20deg) }
    2% { transform: rotate(-10deg) }
    3% { transform: rotate(-20deg) }
    4% { transform: rotate(-10deg) }
    5% { transform: rotate(-28deg) }
    6% { transform: rotate(-12deg) }
    7% { transform: rotate(-17deg) }
    8% { transform: rotate(-14deg) }
    9% { transform: rotate(-16deg) }
    10% { transform: rotate(-15deg) }
    100% { transform: rotate(-15deg) }
}
@keyframes ring {
    0% { transform: rotate(-15deg) }
    1% { transform: rotate(-20deg) }
    2% { transform: rotate(-10deg) }
    3% { transform: rotate(-20deg) }
    4% { transform: rotate(-10deg) }
    5% { transform: rotate(-28deg) }
    6% { transform: rotate(-12deg) }
    7% { transform: rotate(-17deg) }
    8% { transform: rotate(-14deg) }
    9% { transform: rotate(-16deg) }
    10% { transform: rotate(-15deg) }
    100% { transform: rotate(-15deg) }
}

.sb_cart_reminder .edd-cart-number-of-items,
.sb_cart_reminder .edd-cart-item-separator,
.sb_cart_reminder .edd-cart-item-price,
.sb_cart_reminder .edd-remove-from-cart,
.sb_cart_reminder .edd-cart-meta,
.sb_cart_reminder .edd_checkout{
    display: none;
}
.sb_cart_reminder .sb_cart_icon{
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 40px;
    padding: 13px 15px 13px 13px;
    background: #fff;
    border-radius: 50px;
    display: inline-block;
    line-height: 1;
    border: 5px solid #ddd3cf;
    color: #776963;
}
.sb_cart_reminder .sb_cart_icon .fa{
    width: 38px;
    height: 40px;
}

/* Subscriptions */
.account #edd_user_history.sb_subscriptions{
	margin-top: -20px;
}
.account #edd_user_history.sb_subscriptions th,
.account #edd_user_history.sb_subscriptions td{
	padding: 10px 15px;
}
.account #edd_user_history.sb_subscriptions th{
	padding: 15px 15px 12px 15px;
	font-size: 13px;
	background: #fcfcfc;
}
.account #edd_user_history.sb_subscriptions .sb_user_subscription td{
	margin: 0 0 5px 0;
	border-bottom: 1px solid #eee;
}
.sb_subscriptions .edd_subscription_renewal_date{
	font-style: italic;
	color: #999;
}
.sb_subscriptions .edd_subscription_invoice,
.sb_subscriptions .edd_subscription_cancel,
.sb_subscriptions .edd-subscription-reactivate,
.sb_subscriptions .edd_subscription_renew,
#edd_checkout_wrap #edd_sl_cancel_renewal_form .edd-submit,
.sb_subscriptions .sb_user_subscription td a{
    border: 1px solid #eee;
    color: #666;
    display: inline-block;
    margin: 0;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    background: none;
}
#edd_checkout_wrap #edd_sl_cancel_renewal_form .edd-submit{
	margin: -10px 0 10px 0;
}
.sb_subscriptions .edd_subscription_invoice:hover,
.sb_subscriptions .edd_subscription_cancel:hover,
.sb_subscriptions .edd-subscription-reactivate:hover,
.sb_subscriptions .edd_subscription_renew:hover,
#edd_checkout_wrap #edd_sl_cancel_renewal_form .edd-submit:hover,
.sb_user_subscription td a:hover {
	border: 1px solid #ccc;
	color: #333;
	background: none;
}
.sb_subscriptions .edd_subscription_name b{
	display: block;
	font-size: 13px;
}
.sb_subscriptions .edd_subscription_billing_cycle{
	color: #999;
	font-style: italic;
}
.account-section{
	padding: 0 0 50px 0;
}
.account-section .heading{
	font-size: 16px;
	width: 100%;
	padding: 15px 20px;
	background: #f5f5f5;
	border-bottom: 2px solid #f0f0f0;
	margin: 0 0 20px 0;
	box-sizing: border-box;
}
.account .affiliate-section{
	border: 1px solid #ddd;
}
.account #affwp-affiliate-dashboard{
	border: none;
}
.account .affiliate-section .heading{
	margin-bottom: 10px;
}
.account .sb_downloads #edd_user_history .edd_invoice{
	display: none;
}
.account .sb_product_name{
	float: left;
}
.account .sb_product_name .sb_name{
	text-transform: uppercase;
	color: #999;
	font-weight: 100;
}
.account .sb_product_list{
	font-size: 16px;
	font-weight: bold;
}
.account .sb_downloads #edd_user_history .edd_purchase_details{
	float: right;
	padding: 10px 20px;
	margin: 10px 0 0 0;
	font-weight: bold;
	font-size: 16px;
	display: inline-block;
	border-bottom: 3px solid #e6e6e6;
}
.account .sb_downloads #edd_user_history .edd_purchase_details:hover{
	border-bottom: 3px solid #ccc;
}
.account .sb_downloads #edd_user_history .edd_purchase_details .fa{
	margin-right: 5px;
}
.account .sb_downloads .license_label{
	display: none;
}
.edd-checkout .edd-loading-ajax.edd-loading {
    left: 50%;
}

/* Profile editor form */
#edd_profile_editor_form label{
	min-width: 20%;
	font-size: 13px;
}
#edd_profile_editor_form input{
	min-width: 75%;
}
#edd_profile_editor_form legend {
    font-weight: bold;
    padding: 0 0 10px 0;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 2px solid #ddd;
    margin: 30px 0;
}
#edd_profile_editor_form #edd_profile_personal_fieldset legend{
	margin-top: 0;
}
#edd_profile_editor_form .edd-profile-emails {
    font-size: 12px;
    margin-top: -5px;
}
#edd_profile_editor_form .edd-profile-emails .actions,
#edd_profile_editor_form .edd-profile-emails .actions a{
	padding: 0 0 0 2px;
	margin: 0;
	font-size: 11px;
	width: auto;
	top: 2px;
	position: relative;
}
#edd_profile_editor_form #edd_profile_editor_submit{
	min-width: auto;
	padding: 10px 20px;
	font-size: 13px;
	margin-top: 30px;
}
#edd_profile_editor_form select{
	min-width: 340px;
	padding: 7px;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.small-banner h1,
.small-banner h2{
	font-weight: 100;
	font-size: 28px;
	text-align: center;
	padding: 0;
	margin: 0;
}
.small-banner.home-banner h1,
.small-banner.home-banner h2{
	text-align: left;
}

/* Pricing guarantee footer */
.pricing-guarantee-footer{
	position: relative;
	background: rgba(255,255,255,0.8);
    padding: 20px 50px 12px 50px;
    border-radius: 10px;
    float: left;
    clear: both;
    margin-top: 8px;
}
.pricing-guarantee-footer h4{
	font-size: 19px;
	font-weight: 400;
	padding: 0 0 10px 0;
	margin: 0;
}
.pricing-guarantee-footer p{
	margin: 0;
	padding: 0 0 10px 0;
	font-size: 13px;
}
.guarantee-sig{
	width: 180px;
}
.pricing .guarantee-seal{
	position: absolute;
	top: 30px;
	left: 35px;
	opacity: 0.8;
}
.pricing .guarantee-text{
	padding-left: 145px;
}

/* Extensions pricing section */
.sb_extension_details{
	float: left;
	padding: 10px 0 20px 0;
	text-align: center;
}
.extension-details .price span.strike{
	display: block;
	font-size: 16px;

}
.extension-details .amount{
	font-size: 24px;
	font-weight: bold;
}
.extension-details .sb_custom .edd_price_options{
	padding: 15px 0;
}
.sb_extension_details .price{
	text-align: center;
}
.sb_extension_details .cost{
	padding: 10px 0;
}
.sb_extension_details .currency {
    top: 0;
}
.sb_extension_details .edd-submit{
	width: 90%;
	padding: 8px 5%;
	display: block;
}
.extension-details .savings{
	font-size: 14px;
}

/* Cancel license modal */
.sb_cancel_modal, .sb_cancel_step{
	display: none;
}
.sb_cancel_step_1{
	display: block;
}


/*** Testing ***/
/*.sb_cancel_step{
	display: none;
}
.sb_cancel_modal, .sb_cancel_step_4{
	display: block;
}*/
/***************/


.sb_cancel_modal{
	position: absolute;
	z-index: 999999;
	background: rgba(0,0,0,0.5);
	width: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	padding: 50px;
	box-sizing: border-box;
	color: #333;
}
.sb_cancel_box{
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 1400px;
	padding: 50px;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
	border-radius: 5px;
	box-sizing: border-box;
}
.sb_user_subscription td .sb_cancel_modal .close-modal{
	position: absolute;
	top: 0px;
	right: 0px;
	width: 15px;
	height: 34px;
	padding: 13px 16px 10px 16px;
	border: 0;
}
.sb_user_subscription td .sb_cancel_modal .close-modal svg path{
	fill: #aaa;
}
.sb_user_subscription td .sb_cancel_modal .close-modal:hover svg path,
.sb_user_subscription td .sb_cancel_modal .close-modal:focus svg path{
	fill: #333;
}
.sb_user_subscription td .sb_cancel_modal .close-modal:hover,
.sb_user_subscription td .sb_cancel_modal .close-modal:focus{
	border: 0;
}
/* Buttons */
.sb_subscriptions .sb_user_subscription td .sb_cancel_modal .button{
	padding: 20px 30px;
	display: inline-block;
	line-height: 1.3;

	border: 1px solid #eee;
    border-bottom-width: 4px;
    border-radius: 4px;
}
.sb_subscriptions .sb_user_subscription td .sb_cancel_modal .button:hover,
.sb_subscriptions .sb_user_subscription td .sb_cancel_modal .button:focus{
	border: 1px solid #ccc;
	border-bottom: 4px solid #ddd;
    border-radius: 4px;
}
/* CTA button */
.sb_subscriptions .sb_user_subscription td .sb_cancel_modal .cta{
	background: #e89a2e;
    color: #fff;
    text-decoration: none;
    font-weight: bold;

    border: 1px solid #ea8519;
    border-bottom-width: 4px;
    border-radius: 4px;
}
.sb_subscriptions .sb_user_subscription td .sb_cancel_modal .cta:hover,
.sb_subscriptions .sb_user_subscription td .sb_cancel_modal .cta:focus{
    background: #e34716;
    border: 1px solid #cf3100;
    border-bottom-width: 4px;
    border-radius: 4px;
}
.sb_subscriptions .sb_user_subscription td .cancel-footer a{
	margin-bottom: 5px;
}
.sb_subscriptions .cancel-footer .sb_cancel_keep,
.sb_subscriptions .cancel-footer .sb_cancel_take_offer,
.sb_cancel_step_4 .cancel-footer .cta{
	margin-right: 10px;
}
.sb_cancel_modal h2{
	margin: 0 0 25px 0;
	font-weight: 100;
	font-size: 28px;
}
.sb_cancel_modal .cancel-footer{
	float: left;
	clear: both;
	margin-top: 40px;
	width: 100%;
	clear: both;
}


/* Step 1 */
.cancel-help{
	position: relative;
	width: 100%;
	float: left;
	clear: both;
	padding: 20px 35px 25px 40px;
	border: 1px solid #ddd;
	background: #f9f9f9;
	border-radius: 5px;
	box-sizing: border-box;
}
.cancel-help h2{
	margin-bottom: 10px;
}
.cancel-help-text{
	float: left;
	padding-right: 5%;
	width: 40%;
}
.cancel-help .team{
	position: absolute;
    bottom: 24px;
    right: 40px;
	width: 52%;
}
.cancel-help .team img{
	width: 150px;
    float: left;
    margin-right: 10px;
    border-radius: 5px;

    width: 24%;
    margin: 0 0 0 1%;
}
.cancel-help .team span{
	float: left;
	width: 24%;
	margin: 0 0 0 1%;
	border-radius: 5px;
	display: inline-block;
	height: 160px;
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
}
#edd_user_history .cancel-help-text p{
	margin: 0;
	padding: 0 0 10px 0;
}
.cancel-help .cta{
	width: 100%;
	float: left;
	position: relative;
	bottom: 0;
	margin-top: 10px !important;
	font-size: 22px;
	text-align: center;
	padding-top: 12px !important;
	padding-bottom: 15px !important;
	box-sizing: border-box;
}
.cancel-help .cta span{
	font-size: 14px;
	font-weight: normal;
	display: block;
	padding-top: 5px;
}
.cancel-help.small h2{
	margin-bottom: 5px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}
.cancel-help.small .cta{
	margin: 0 0 10px 0;
	padding: 15px !important;
	width: 100%;
	box-sizing: border-box;
	font-size: 16px;
}
.cancel-help.small .team{
	width: 100%;
	margin-top: 0;
	position: relative;
    right: auto;
    bottom: auto;
}
.cancel-help.small .team span{
	height: 100px;
}
.cancel-help.small .team img:first-child{
	margin: 0;
}

/* Benefits */
.benefits{
	width: 100%;
	float: left;
	clear: both;
	padding: 50px 0 0 0;
}
.benefits h2{
	margin-bottom: 40px;
}
.sb_cancel_modal .sb_benefit{
	position: relative;
	padding: 0 0 20px 0;
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
}
.sb_cancel_modal .sb_benefit .title{
	font-size: 16px;
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}
.sb_cancel_modal .sb_benefit_text{
	padding-left: 100px;
	line-height: 1.5;
}
.sb_cancel_modal .sb_benefit .icon{
	width: 40px;
	height: 40px;
	position: absolute;
	left: 0;
	left: 0;
	background: #eee;
	padding: 15px;
	text-align: center;
	border-radius: 5px;
}
.sb_cancel_modal .sb_benefit svg{
	height: 100%;
}
.sb_cancel_modal .sb_benefit svg path{
	fill: #666;
}
.sb_cancel_features{
	width: 90%;
	overflow: hidden;
	margin-top: -8px;
	padding: 0;
}
.sb_cancel_features ul{
	float: left;
	margin: 0 4% 0 0;
    padding-left: 2%;
}
.sb_cancel_features li{
	padding: 0;
	margin: 0;
}

/* Step 2 */
.cancel-warning{
	position: relative;
    float: left;
    clear: both;
    padding: 20px 35px 18px 40px;
    border-radius: 5px;
    box-sizing: border-box;

    color: #d1343d;
    border: 1px solid #d1343d;
    background: #f5d7d7;
}
.cancel-warning .icon{
	width: 50px;
	display: block;
	position: absolute;
	top: 30px;
	left: 30px;
}
.cancel-warning .text{
	padding-left: 65px;
}
.cancel-warning h3{
	margin: 0;
	padding: 0;
	font-size: 16px;
}
.reasons{
	width: 100%;
	float: left;
	clear: both;
	padding: 50px 0 0 0;
}
.reasons h2{
	font-size: 26px;
}
.sb_subscriptions .reasons .options a{
	width: 15.7%;
	display: block;
	float: left;
	padding: 20px 3px;
	margin: 0 1% 0 -1px;
	font-size: 16px;
	text-align: center;
	border: 1px solid #eee;
	border-radius: 0;
	position: relative;
	z-index: 5;
	box-sizing: border-box;

	min-height: 150px;
    
    /*background: #e34716;
    color: #fff;
    border: 1px solid #cf3100;
    border-bottom-width: 4px;
    border-radius: 4px;*/

    background: #eee;
    color: #333;
    border: 1px solid #ccc;
    border-bottom-width: 4px;
    border-radius: 4px;
    border-bottom-color: #ddd;
}
.sb_subscriptions .reasons .options a:hover,
.sb_subscriptions .reasons .options a:focus{
	z-index: 10;
	color: #222;
	background: #f9f9f9;
	border: 1px solid #ccc;
}
.sb_subscriptions .reasons .options a:hover svg path,
.sb_subscriptions .reasons .options a:focus svg path{
	fill: #222;
}
.sb_subscriptions .reasons .option.selected,
.sb_subscriptions .reasons .option.selected:hover,
.sb_subscriptions .reasons .option.selected:focus{
	background: #e34716;
    color: #fff;
    border: 1px solid #cf3100;
}
.sb_subscriptions .reasons .option.selected svg path,
.sb_subscriptions .reasons .option.selected:hover svg path,
.sb_subscriptions .reasons .option.selected:focus svg path{
	fill: rgba(255,255,255,0.8);
}
.reasons .options .icon{
	display: inline-block;
	height: 40px;
	margin: 0 auto;
}
.reasons .options .icon svg{
	height: 100%;
}
.reasons .options .icon svg path{
	fill: rgba(0,0,0,0.5);
}
.reasons .options .title{
	display: block;
	padding: 10px 0 0 0;
}

/*.solutions{
	width: 100%;
	float: left;
	clear: both;
	padding: 40px;
	margin: -1px 0 0 0;
	position: relative;
	z-index: 1;
	border: 1px solid #eee;
	box-sizing: border-box;
}*/
.solutions h3{
	padding: 0 0 20px 0;
	margin: 0;
}
.reasons .cancel-reason{
	width: 65%;
	float: left;
}
.reasons .options{
	width: 100%;
	float: left;
	clear: both;
}
.cancel-sidebar{
	width: 30%;
	float: right;
}
.plan-info{
	float: left;
	width: 100%;
	margin: 0 0 20px 0;
	padding: 20px 35px 25px 40px;
    border: 1px solid #eee;
    border-radius: 5px;
    box-sizing: border-box;
}
.plan-info h3{
	margin-top: 10px;
}
#edd_user_history .cancel-sidebar .plan-name{
	font-size: 20px;
    font-weight: 100;
    line-height: 1.2;
    padding-bottom: 5px;
}
#edd_user_history .cancel-sidebar p{
	padding: 0;
}
.solutions .plan-license-type,
.solutions .plan-renew-date{
	/*color: #333;*/
}
.solutions .plan-name{
	font-size: 24px;
    font-weight: 100;
}
/*.solutions .plan-license-type{
	margin-top: -10px;
    font-size: 18px;
    font-weight: 100;
}
.solutions .plan-renew-date{
	font-weight: 100;
	color: #999;
}
.solutions .plan-renew-date span{
	color: #333;
}*/

.reason-help{
	float: left;
	clear: both;

	width: 99%;
	padding: 50px 40px;
	margin: 20px 0 0 0;
	background: #fff;
	border: 1px solid #ddd;
	color: #333;
	border-radius: 5px;
	box-sizing: border-box;
}
.reason-help .reason{
	display: none;
}
.reason-help .reason.help-default{
	display: block;
	padding: 11px 0;
    text-align: center;
}
.reason-help .reason.help-default h3{
	font-size: 24px;
	color: #666;
	font-weight: 100;
	margin: 0 0 10px 0;

	font-size: 26px;
	color: #ccc;
	font-weight: 600;
}
.reason-help .reason.help-default p{
	color: #666;
	color: #bbb;
}
.reason-help label{
	display: block;
	font-size: 16px;
	padding: 0 0 10px 0;
}
.reason-help textarea{
	width: 100%;
	max-width: 100%;
	min-height: 90px;
	padding: 10px;
	box-sizing: border-box;
}
.sb_cancel_modal .unformat-links a{
	color: #e34716 !important;
	padding: 0 !important;
	border: 0 !important;
}
.sb_cancel_modal .unformat-links a:hover,
.sb_cancel_modal .unformat-links a:focus{
	text-decoration: underline !important;
}
.sb_cancel_modal .box svg{
	width: 15px;
	margin: 0 2px 0 0;
	color: gold;
}
.sb_cancel_modal .box{
	display: block;
	width: 100%;
	box-sizing: border-box;
	float: left;
	clear: both;
	padding: 20px;
	margin: 20px 0 0 0;
	border: 1px solid #ddd;
	background: #f9f9f9;
	border-radius: 5px;
}
.reason-help h3{
	margin: 0 0 30px 0;
	font-size: 20px;
	line-height: 1.3;
}
.reason-help .help-offer{
	width: 100%;
	position: relative;
	padding: 20px;
	margin: 5px 0;
	border-radius: 5px;
	box-sizing: border-box;

	border: 1px solid #ddd;
    background: #f9f9f9;
}
.reason-help .help-offer.selected{
    /*background: #e9e9e9;
    box-shadow: inset 0 0 0 1px #d9d9d9;*/

    border: 1px solid #ccc;
    background: #e9e9e9;
}
.reason-help .help-offer:not(.selected){
	cursor: pointer;
}
.reason-help .help-offer:hover{
	border: 1px solid #ccc;
}
.reason-help .radio-button{
	position: absolute;
	display: block;
	width: 15px;
	top: 24px;
}
.reason-help .offer-info{
	padding-left: 35px;
}
.reason-help .help-offer h4{
	margin: 0;
	padding: 0;
	font-size: 16px;
}
#edd_user_history .reason-help .help-offer p{
	padding: 0;
}

/* Step 3 */
.lost-benefits{
	width: 65%;
	float: left;
}
.lost-benefits h2{
	font-size: 32px;
}
#edd_user_history .lost-benefits > p{
	font-size: 16px;
    margin: -10px 0 30px 0;
}
.lost-benefits h2 svg{
	width: 30px;
	margin: 0 10px 0 0;
}
.sb_cancel_modal .lost-benefits .icon{
	background: #eee;
}
.lost-benefits .icon .x{
	position: absolute;
    bottom: -26px;
    right: -5px;
    width: 26px;
}
.sb_cancel_modal .lost-benefits .icon svg path{
	fill: #bbb;
}
.sb_cancel_modal .lost-benefits .icon .x path{
	fill: #dc4949;
}
.sb_risks{
	padding: 20px 30px;
    background: #eee;
    border: 1px solid #eee;
    border-radius: 5px;
    margin: 10px 0 -12px 0;
    float: left;
    clear: both;
}
.sb_risks input{
	position: absolute;
	top: 2px;
	left: 0;
}
#edd_user_history .sb_risks p{
	position: relative;
	padding: 0 0 10px 30px;
}
.sb_risks.cancel_error{
	border: 1px solid #dc4949;
    background: #f9ecec;
}

/* Step 4 */
.cancel-review{
	width: 65%;
	float: left;
}
.cancel-review h2{
	margin-bottom: 40px;
}
.cancel-review .sb_benefit{
	margin-bottom: 0;
    border: 0;
}
.cancel-review .sb_benefit .icon{
	background: none;
    width: 20px;
    height: auto;
    padding: 5px;
}
.cancel-review .sb_benefit .icon svg{
	width: 100%;
}
.cancel-review .sb_benefit .icon path{
	fill: #e34716;
}
.cancel-review .sb_benefit_text{
	padding-left: 45px;
}

/* Cancelled confirmation */
.subscription-cancelled{
	padding: 20px 50px 40px 50px;
	margin: 0 0 30px 0;
	background: #f7f1f1;
	border: 1px solid #ddd;
	border-radius: 5px;
	overflow: hidden;
}
.subscription-cancelled .post-offers{
	float: left;
	width: 100%;
	margin: 10px 0 0 0;
}
.subscription-cancelled .offer{
	width: 30%;
    float: left;
    clear: none;
    margin-right: 5%;
    padding: 0;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.05);
}
.subscription-cancelled .offer:last-child{
	margin: 0;
}
.subscription-cancelled .offer h4{
	display: inline-block;
	margin: 0;
	padding: 0;
	color: #504545;
}
.subscription-cancelled .post-offer-text{
	padding: 30px;
	min-height: 205px
}
.subscription-cancelled .offer p{
	margin: 0;
	padding: 0;
}
.subscription-cancelled .offer .icon{
	background: #ded6d6;
	padding: 20px;
	text-align: center;
}
.subscription-cancelled .offer .icon svg{
	height: 20px;
	color: #b5a7a7;
	position: relative;
    top: 5px;
    margin-right: 10px;
}
.subscription-cancelled .offer .cta{
	display: block;
	margin-top: 20px;
	padding: 10px;
	text-align: center;
}

@media all and (max-width: 1280px){
	/* Step 2 */
	.reasons .cancel-reason,
	.reasons .cancel-sidebar{
		width: 100%;
	}
	.reasons .cancel-sidebar{
		margin-top: 20px;
	}
	.reasons .plan-info,
	.reasons .cancel-help.small{
		width: 49%;
	}
	.reasons .plan-info{
		float: left;
	}
	.reasons .cancel-help.small{
		float: right;
		clear: none;
	}
}

@media all and (max-width: 1000px){
	/* Step 1 */
	.cancel-help h2{
		text-align: center;
	}
	.cancel-help-text{
		width: 100%;
		padding: 0;
		text-align: center;
	}
	.cancel-help .team{
		width: 100%;
		position: relative;
		margin: 15px 0 0 0;
		bottom: auto;
		right: auto;
		float: left;
		clear: both;
	}
	.cancel-help .team span{
		height: 130px;
		margin: 0 0.5%;
	}
	/* Step 2 */
	.sb_subscriptions .reasons .options a{
	    min-height: 0;
	    height: 90px;
    	padding: 10px 0;
	}
	.reasons .options .title{
		padding: 0;
		line-height: 1.3;
		font-size: 14px;
	}
	.reasons .options .icon{
		height: 25px;
	}
	/* Step 3 */
	.lost-benefits,
	.cancel-review,
	.cancel-sidebar{
		width: 100%;
	}
	.cancel-sidebar{
		margin-top: 30px;
	}
	.plan-info,
	.cancel-help.small{
		width: 49%;
	}
	.plan-info{
		float: left;
	}
	.cancel-help.small{
		float: right;
		clear: none;
	}
}

@media all and (max-width: 800px){
	/* Step 2 */
	.sb_subscriptions .reasons .options a{
		width: 100%;
	    margin: 0 0 5px 0;
	    min-height: 0;
	    height: auto;
	    padding: 10px 0 5px 0;
	}
	.reasons .options .title{
		display: inline-block;
		position: relative;
		top: -7px;
	}
	.reasons .options .icon{
		margin-right: 5px;
	}
	.reasons .plan-info,
	.reasons .cancel-help.small,
	.sb_cancel_step_4 .plan-info,
	.sb_cancel_step_4 .cancel-help.small{
		width: 100%;
	}

	/* Cancellation confirmation */
	.subscription-cancelled .offer{
		width: 100%;
		margin: 0 0 30px 0;
	}
	.subscription-cancelled .post-offer-text {
	    min-height: 0;
	}
}


/* Checkout */
#edd_checkout_cart_form{
	float: right;
    width: 39%;
}
#edd_checkout_form_wrap{
	float: left;
    width: 57%;
}
#edd_checkout_form_wrap #edd_purchase_form{
	margin: 0;
}
.sb_checkout_footer{
	width: 100%;
	clear: both;
}
#edd_checkout_form_wrap input.edd-input,
#edd_checkout_form_wrap textarea.edd-input{
	width: 95%;
}
#edd_checkout_user_info p {
    width: 50%;
    float: left;
}
#edd_checkout_user_info #edd-email-wrap,
#edd_checkout_user_info #edd-phone-wrap{
	min-height: 60px;
}
#edd_checkout_user_info input.edd-input{
	width: 88%;
}
#edd_checkout_user_info legend{
	float: left;
	width: 100%;
	clear: both;
}
#edd_checkout_form_wrap fieldset#edd_cc_fields legend{
	padding-left: 0;
}

#edd_purchase_form,
#edd_checkout_form_wrap fieldset#edd_cc_fields{
	padding: 0;
	background: none;
	border: none;
}
#edd_checkout_form_wrap fieldset#edd_cc_fields{
	margin-bottom: 0;
}
#edd_purchase_form #edd_checkout_user_info,
#edd_purchase_form #edd_register_fields{
	border: none;
	padding: 20px 0;
	margin: 0;
}
#edd_purchase_form #edd_checkout_user_info{
	position: relative;
}
#edd_purchase_form #edd_register_fields{
	position: relative;
	padding: 0;
}
#edd_checkout_form_wrap fieldset#edd_register_fields #edd_checkout_user_info{
	padding-bottom: 0;
}
#edd_checkout_form_wrap #sb_login_account_wrap{
	position: absolute;
	right: 10px;
	top: 27px;
	margin: 0;
    background: none;
    width: auto;
    padding: 0;
    font-size: 12px;
    display: inline-block;
    float: none;
    font-weight: normal;
}
.logged-in #edd_checkout_form_wrap #sb_login_account_wrap{
	display: none;
}
#edd_checkout_form_wrap #edd-new-account-wrap{
	font-size: 12px;
	margin: -1.60em -1.61em 25px;
}
#edd_login_fields .edd_errors {
	clear: both;
    margin: 0;
}
#edd_purchase_form .edd-stripe-new-card,
#edd_purchase_form #edd_cc_address{
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e9e9e9;
    border-radius: 5px 5px 0 0;
}
#edd_purchase_form .edd-stripe-new-card{
	border-bottom: 0;
	padding: 10px 20px;
}
#edd_purchase_form #edd_cc_address{
	border-radius: 0 0 5px 5px;
	border-top: 0;
	padding-top: 0px;
    margin-top: -10px;
}

#edd_cc_address legend{
	display: none;
}
#edd_final_total_wrap{
	display: none;
}
#sb_add_more_plugins_cart{
	font-size: 12px;
	border: 1px solid #eee;
    color: #666;
    display: inline-block;
    margin: 0 0 0 5px;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    background: none;
}
#sb_add_more_plugins_cart:hover{
	border: 1px solid #ccc;
    color: #333;
    background: none;
}
#sb_add_more_plugins_cart .fa{
	font-size: 15px;
	top: 1px;
	position: relative;
}
#edd_checkout_cart th.edd_cart_item_price{
	text-align: left;
	min-width: 64px;
}
#edd_checkout_cart td.edd_cart_item_price{
	border-right: 0;
	padding-right: 0;
	line-height: 1.5;
}
#edd_checkout_cart td.edd_cart_actions{
	border-left: 0;
    padding-left: 0;
    padding-right: 13px;
}
#edd_checkout_cart td.edd_cart_actions .edd_cart_remove_item_btn{
	display: block;
	color: #ccc;
}
#edd_checkout_cart td.edd_cart_actions .edd_cart_remove_item_btn:hover{
	color: #333;
}

#edd_checkout_cart .edd_cart_item_name,
#edd_checkout_cart .edd_cart_fee_label{
	line-height: 1.5;
	padding-top: 15px;
    padding-bottom: 15px;
}
#edd_checkout_cart .edd_cart_fee_amount{
	border-right: 0;
}
#edd_checkout_form_wrap #edd_payment_mode_select{
	background: none;
	border: none;
	padding: 20px 0;
	margin: 0;
}
#edd_checkout_cart .edd_cart_footer_row{
	background: #f9f9f9;
}
/* Stripe option */
.page-template-page-checkout #edd_checkout_wrap #edd_checkout_form_wrap #edd_payment_mode_select_wrap #edd_payment_mode_select #edd-payment-mode-wrap label#edd-gateway-option-stripe {
    float: left;
    background: url(img/cards.png) right 15px center no-repeat #f7f8f8;
}
/* Paypal option */
.page-template-page-checkout #edd_checkout_wrap #edd_checkout_form_wrap #edd_payment_mode_select_wrap #edd_payment_mode_select #edd-payment-mode-wrap label#edd-gateway-option-paypalexpress {
    background: url('img/paypal.png') right 15px center no-repeat #f7f8f8;
}
/* Both options */
.page-template-page-checkout #edd_checkout_wrap #edd_checkout_form_wrap #edd_payment_mode_select_wrap #edd_payment_mode_select #edd-payment-mode-wrap label input {
    display: none;
}
.page-template-page-checkout #edd_checkout_wrap #edd_checkout_form_wrap #edd_payment_mode_select_wrap #edd_payment_mode_select #edd-payment-mode-wrap label {
    clear: none;
    float: right;
    width: 49%;
    height: 60px;
    line-height: 60px;
    margin: 0;
    padding: 0 15px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-sizing: border-box;
}
#edd-gateway-option-paypalexpress span{
	display: none;
}
.edd-gateway-option{
	border: 2px solid #fff;
}
.edd-gateway-option-selected{
	border: 2px solid #f0ad4e;
}
/* Disable paypal if multiple producs */
.disable-paypal{
	color: #aaa;
}
.disable-paypal-tooltip{
	display: none;
	font-weight: normal;
    font-size: 11px;
    position: absolute;
    padding: 8px;
    border-radius: 5px;
    line-height: 1.4;
    bottom: 50px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
    width: 98%;
    left: -2%;
}
#edd-gateway-option-paypalexpress:hover .disable-paypal-tooltip{
	display: block;
	text-transform: initial;
}
.page-template-page-checkout #edd_checkout_wrap #edd_checkout_form_wrap #edd_payment_mode_select_wrap #edd_payment_mode_select #edd-payment-mode-wrap label#edd-gateway-option-paypalexpress.disable-paypal {
    background: #f7f8f8;
}

.sb_checkout_footer p{
	margin: 0;
	padding: 5px 0;
	font-size: 13px;
	line-height: 1.5;
}
.sb_checkout_footer .secure-purchase{
	width: 100%;
	text-align: center;
}
.sb_checkout_footer .secure-purchase img{
	margin: 0 15px;
}
.sb_checkout_footer .guarantee-seal{
	height: 80px;
    position: relative;
    top: 12px;
}
.sb_checkout_testimonial{
	padding: 50px 20px 10px 20px;
	font-size: 13px;
}
.sb_checkout_testimonial blockquote{
	padding: 0 0 20px 0;
	margin: 0 0 20px 0;
	font-style: normal;
	border-bottom: 1px solid #eee;

	padding: 20px;
    margin: 0 -20px 25px -20px;
    font-style: normal;
    border: 1px solid #eee;
    box-shadow: 0 0 10px 0 #eee;
    border-radius: 5px;
}
.sb_checkout_testimonial blockquote cite{
	display: block;
	padding-top: 10px;
	font-style: italic;
}
.sb_checkout_testimonial .checks{
	padding: 0;
	margin: 0;
}
.sb_checkout_testimonial .checks li{
	list-style-type: none;
	padding: 5px 0;
	margin: 0;
}
.sb_checkout_testimonial .checks svg{
	margin: 0 5px -3px 0;
}
/* Checkout footer testimonials */
.sb_checkout_footer .sb_checkout_testimonial blockquote{
	float: left;
	width: 49%;
	margin: 0 2% 0 0;
	box-sizing: border-box;
}
.sb_checkout_footer .sb_checkout_testimonial blockquote:last-child{
	margin: 0;
}
.sb_checkout_footer .sb_checkout_testimonial{
	padding: 30px 0 0 0;
}


#edd_payment_mode_select legend{
	margin: 0;
}
#edd_checkout_form_wrap input[type=email],
#edd_checkout_form_wrap input[type=password],
#edd_checkout_form_wrap input[type=tel],
#edd_checkout_form_wrap input[type=text],
#edd_checkout_form_wrap textarea {
    padding: 10px 10px;
    border-radius: 0;
    border: 1px solid #ddd;
}
#edd_checkout_form_wrap #edd_checkout_user_info .edd-description{
	display: none;
}
#edd_checkout_form_wrap #edd_discount_code{
	margin: 0;
}
#edd_discount_code #edd_show_discount{
	display: none !important;
}
#edd_checkout_cart_wrap {
	position: relative;
	margin-top: -10px;
}
#edd_checkout_cart_wrap #siteseal{
	position: absolute;
    top: -7px;
    right: -9px;
    margin: 0;
}

/* Checkout login form */
#edd_purchase_form .sb_optional_note{
	font-size: 12px;
	font-weight: normal;
}
#edd_checkout_form_wrap #edd_login_fields{
	margin: 20px 0 29px 0;
}
#edd_login_fields #edd-user-login-wrap,
#edd_login_fields #edd-user-pass-wrap{
	width: 40%;
	float: left;
	margin-bottom: 10px;
}
#edd_login_fields input.edd-input {
    width: 84%;
}
#edd_login_fields #edd-user-login-submit{
	width: 20%;
    float: left;
    padding-top: 18px;
}
#edd_login_fields #edd-user-login-submit .edd-submit{
	width: 100%;
	padding: 10px 0;
	text-align: center;
}

/* Discount code */
#sb_discount_box{
	display: none;
	float: left;
	max-width: 200px;
	margin: -2px 0;	
}
#sb_discount_box #sb_discount{
	padding: 4px;
	font-size: 12px;
    width: 130px;
}
#sb_discount_box #sb_apply_discount {
	margin: 0;
    font-size: 12px;
    display: inline-block;
    margin: 0;
    padding: 5px 10px;
    border-radius: 3px;
    background: #f0ad4e;
    color: #fff;
}
#sb_discount_box #sb_apply_discount:hover{
	background: #ed9c28;
}
#sb_discount_box #sb_apply_discount:active,
#sb_discount_box #sb_apply_discount:focus{
	box-shadow: none;
}
#sb_discount_link {
    text-decoration: none;
    border-bottom: 1px dotted;
    line-height: 1.1;
    display: inline-block;
    font-size: 11px;
    font-weight: normal;
    float: left;
    margin: 6px 0 0 0;
}
#edd_checkout_cart .edd_cart_footer_row .edd_cart_total{
	padding: 1em;
}
#sb_discount_err{
	display: none;
	font-size: 12px;
    color: red;
    padding: 5px 8px;
    margin: 5px 0 0 0;
    text-align: center;
    font-weight: normal;
    color: #a94442;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    max-width: 177px;
    line-height: 1.2;
}

#edd_purchase_form_wrap{
	position: relative;
}
#edd_purchase_form_wrap .sb_stripe_secure{
    width: 153px;
    position: absolute;
    right: 5px;
    margin-top: 40px;
}
#edd_cc_address #edd-card-country-wrap, 
#edd_cc_address #edd-card-zip-wrap{
	width: 50%;
	float: left;
}
#edd_cc_address input[type=text]{
	width: 91%;
}
#edd_cc_address #billing_country{
	width: 96%;
	padding-top: 11px;
}

/* Checkout login form */
#edd_checkout_login_register{
	display: none;
}

/* License renewal */
#edd_sl_cancel_renewal_form{
	display: none;
}
#sb_cancel_renewal{
	color: #ccc;
	padding: 3px 0 3px 6px;
}
#sb_cancel_renewal:hover{
	color: #333;
}

@media all and (max-width: 800px){
	#edd_checkout_cart_form,
	#edd_checkout_cart_wrap,
	#edd_checkout_form_wrap,
	#edd_cc_address #edd-card-country-wrap,
	#edd_cc_address #edd-card-zip-wrap{
		width: 100%;
	}
	.sb_checkout_testimonial {
	    padding: 30px 5px;
	}
	.page-template-page-checkout #edd_checkout_wrap #edd_checkout_form_wrap #edd_payment_mode_select_wrap #edd_payment_mode_select #edd-payment-mode-wrap label#edd-gateway-option-stripe,
	.page-template-page-checkout #edd_checkout_wrap #edd_checkout_form_wrap #edd_payment_mode_select_wrap #edd_payment_mode_select #edd-payment-mode-wrap label#edd-gateway-option-paypalexpress {
	    background: none;
	}
	#edd_purchase_form_wrap .sb_stripe_secure{
		display: none;
	}
	#edd_checkout_form_wrap #sb_login_account_wrap {
	    position: relative;
	    top: 0;
	    left: 0;
	    width: 100%;
	    padding-bottom: 10px;
	}
	.sb_checkout_footer .sb_checkout_testimonial blockquote{
		width: 100%;
		margin: 0 0 15px 0;
	}
	.checkout-progress{
		display: none;
	}
}

/* All access pricing */
.buy-options.sb_custom .wp-btn p {
    padding: 0;
    margin: 13px 0;
    color: #333;
    font-size: 13px;
}

/* Checkout phone field */
#edd_checkout_form_wrap #edd-phone{
	padding-left: 50px;
	width: 100%;
	box-sizing: border-box;
}
#edd_checkout_form_wrap .iti--allow-dropdown{
	width: 96%;
}
#edd_checkout_form_wrap .iti--allow-dropdown li {
    list-style-type: none;
    margin: 0;
    padding: 2px 7px;
}

.iti__flag {background-image: url('img/flags.png');}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {background-image: url("img/flags@2x.png");}
}


/* Blog */
/* Undoing */
#primary-blog-page .post .entry-header .entry-title{
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
#primary-blog-page .entry-header {
    margin-bottom: 0;
}
#primary-blog-page .entry-content {
    float: none;
    width: auto;
}
#primary-blog-page p {
    display: inline-block;
}

/* Blog Heading */
.block {
    padding: 60px 0
}
@media (max-width: 767px) {
    .block {
        padding:40px 0
    }
}
.block-intro {
    text-align: center
}
@media (max-width: 767px) {
    .block-intro {
        padding:40px 0
    }
}
.block-intro .title {
    font-family: "Arvo","Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    color: #444;
    margin: 0
}
@media (max-width: 767px) {
    .block-intro .title {
        font-size:26px
    }
}
.block-intro .description {
    /*font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
    font-weight: 400;
    font-size: 18px;
    max-width: 800px;
    margin: 8px auto 0 auto
}
@media (max-width: 767px) {
    .block-intro .description {
        font-size:16px
    }
}
.block-intro .description p:last-of-type {
    margin-bottom: 0
}

/* Blog */
#primary-blog-page {
    width: 100%;
    max-width: 1000px;
    margin-top: 0;
}
#primary-blog-page main {
    margin-right: 340px;
}
#primary-blog-page article {
    margin: 0 0 40px 0;
    padding: 0;
    border: 1px solid #ebebeb
}
@media (max-width: 767px) {
    #primary-blog-page article {
        border:none;
        margin: 0 0 30px 0
    }
}
#primary-blog-page article .entry-image img {
    display: block;
    margin: 0 auto
}
#primary-blog-page article .entry-header {
    padding: 30px 30px 20px
}
@media (max-width: 767px) {
    #primary-blog-page article .entry-header {
        padding:20px 0
    }
}
#primary-blog-page article .entry-header .entry-title {
    margin: 0
}
#primary-blog-page article .entry-header .entry-title a {
    color: #444
}
#primary-blog-page article .entry-header .entry-title a:hover {
    color: #e27730;
    text-decoration: none
}
#primary-blog-page article .entry-header .entry-meta {
    font-size: 13px;
    margin-top: 15px
}
#primary-blog-page article .entry-content {
    padding: 0 30px 30px
}
@media (max-width: 767px) {
    #primary-blog-page article .entry-content {
        padding:0
    }
}
#primary-blog-page .site-content {
    float: left;
    width: 100%
}
@media (max-width: 767px) {
    #primary-blog-page .site-content {
        float:none
    }
}
#primary-blog-page .site-main {
    margin-right: 340px
}
#primary-blog-page .site-main.wide {
    margin-right: 260px
}
@media (max-width: 850px) {
    #primary-blog-page .site-main.wide {
        margin-right:250px
    }
}
@media (max-width: 767px) {
    #primary-blog-page .site-main.wide {
        margin-right:0
    }
}
@media (max-width: 850px) {
    #primary-blog-page .site-main {
        margin-right:250px
    }
}
@media (max-width: 767px) {
    #primary-blog-page .site-main {
        margin-right:0
    }
}
/* Sidebar */
#secondary-blog.site-sidebar {
    float: left;
    margin: 0 0 0 -300px;
    position: relative;
    width: 300px
}
#secondary-blog.site-sidebar.narrow {
    width: 220px;
    margin: 0 0 0 -220px
}
@media (max-width: 767px) {
    #secondary-blog.site-sidebar.narrow {
        width:100%;
        float: none;
        margin: 0
    }
}
@media (max-width: 850px) {
    #secondary-blog.site-sidebar {
        width:220px;
        margin: 60px 0 0 -220px
    }
}
@media (max-width: 767px) {
    #secondary-blog.site-sidebar {
        width:100%;
        float: none;
        margin: 0;
        clear: both;
    }
}
#secondary-blog img{
    max-width: 100%;
    margin-top: 20px;
}
.blog .small-banner{
    text-align: center;
}
.blog .small-banner h1{
    font-size: 28px;
}
.blog .small-banner p{
    font-weight: 100;
    font-size: 16px;
    padding-top: 10px;
}
.blog .block-intro{
    padding: 40px 0 60px 0;
}
#secondary-blog .blog-sidebar-cta{
	display: block;
	margin: 0 0 30px 0;
	padding: 0;
	text-align: center;
}
#secondary-blog .blog-sidebar-cta:hover{
	opacity: 0.9;
}
#secondary-blog .blog-sidebar-cta img{
	margin: 0;
}

.site-sidebar .widget_social {
    text-align: center;
    background: #fff;
}
.site-sidebar .widget {
    margin: 0 0 40px 0;
    padding: 30px 40px;
    border: 0;
    border: 1px solid #ebebeb;
}
.widget-area.site-sidebar .widget-title {
    font-size: 24px;
    margin: 0 0 20px 0;
    font-weight: 400;
    padding-bottom: 0;
    text-align: center;
}
.site-sidebar .widget_social ul {
    float: none;
    display: inline-block;
    width: auto;
    margin: 0 auto;
    text-align: center;
}
.site-sidebar .widget_social ul li {
    display: inline-block;
    margin: 0 10px;
    padding: 0;
    border: none;
}
.site-sidebar a {
    color: #4D3F7A;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.5;
}
.site-sidebar .widget_social ul li.facebook svg {
    fill: #3C5A99;
}
.site-sidebar .widget_social ul li.twitter svg {
    fill: #1DA1F2;
}
.site-sidebar .widget_social ul li.youtube svg {
    fill: #FF0000;
}

.site-sidebar .widget_recent_entries {
    padding-bottom: 20px;
}
.widget_recent_entries li {
    padding-bottom: 20px;
}
.widget_recent_entries a {
    font-size: 15px;
}

#newsletter-signup .gform_wrapper{
	margin: 0;
}
#newsletter-signup .gfield_label{
	display: none;
}
#newsletter-signup .gfield{
	padding: 0;
	margin: 0;
}
#newsletter-signup .ginput_container_email{
	padding: 0;
	margin: 0;
}
#newsletter-signup .ginput_container_email input{
	padding: 10px;
	border: 1px solid #ebebeb;
}
#newsletter-signup .gform_button{
	width: 70%;
    margin: 0 15%;
    display: inline-block;
}
#newsletter-signup .gform_footer{
	padding: 0;
	margin: 20px 0 0 0;
}
#newsletter-signup p{
	text-align: center;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 15px;
	width: 112%;
    margin-left: -6%;
}
#newsletter-signup p b{
	display: block;
    font-size: 20px;
    font-weight: 600;
}
#newsletter-signup .support-success{
	text-align: center;
	line-height: 1.4;
}

/* Demo floating bar */
.CampaignType--floating .Campaign__alphaLayer{
	background: linear-gradient(115deg, rgba(227,79,14,1) 0%, rgba(232,136,46,1) 100%) !important;
}

/* Discount applied at checkout notice */
#discount-notice{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}
#discount-notice span{
    position: absolute;
    padding: 18px 10px 20px 10px;
    top: 150px;
    left: 50%;
    width: 212px;
    margin-left: -150px;
    text-align: left;
    background: rgba(255,255,255,1);
    border-radius: 5px;
    z-index: 99999;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    line-height: 1.3;
    padding-left: 75px;
}
#discount-notice .fa{
    font-size: 30px;
    position: absolute;
    left: 27px;
    top: 22px;
}

/* Warn about cart duplicates */
#edd_checkout_cart .sb_duplicate td{
	position: relative;
	background: #fcf1f0;
	color: #e34c36;
	/*border: 1px solid #f2e3e1;*/
	border: 1px solid #e34c36;
}
#edd_checkout_cart .sb_duplicate td.edd_cart_actions .edd_cart_remove_item_btn {
    display: block;
    color: #cc6d60;
}
#edd_checkout_cart .sb_duplicate td.edd_cart_actions .edd_cart_remove_item_btn:hover{
	color: #b5574a;
}
#edd_checkout_cart .sb_duplicate td.edd_cart_item_price{
	border-right: 0;
}
#edd_checkout_cart .sb_duplicate td.edd_cart_actions{
	border-left: 0;
}
#edd_checkout_cart .sb_warning,
#edd_checkout_wrap .sb_warning{
	display: none;
}
#edd_checkout_cart .sb_warning th,
.edd-checkout #primary .sb_warning{
	text-align: center;
    background: #e34c36;
    padding: 15px 5px;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    border: 1px solid #e34c36;
}
.edd-checkout #primary .sb_warning.sb_wide {
    width: 100%;
    margin: -20px 0 40px 0;
    font-weight: bold;
}
.edd-checkout #primary .sb_warning.sb_bottom{
	width: 98%;
    margin: 10px 0 0 0;
}
.edd-checkout #primary .sb_warning .fa{
	margin-right: 5px;
	font-size: 30px;
	margin: -13px 10px 0 0;
	position: relative;
	top: 6px;
}

#edd_checkout_cart .edd_checkout_cart_item_title b{
	display: block;
    line-height: 1.4;
    font-size: 14px;
    padding-bottom: 3px;
}
#edd_checkout_cart .edd_discount {
    font-size: 13px;
    padding: 5px 12px;
    background: #dff1df;
    color: #456545;
    border: 1px solid #bbd8bb;
    border-radius: 5px;
    margin-right: -13px;
}
#edd_checkout_cart .edd_discount_remove {
    top: 0;
    right: -2px;
    background: none;
    color: #90b990;
}
#edd_checkout_cart .edd_discount_remove:hover,
#edd_checkout_cart .edd_discount_remove:focus{
	color: #456545;
}


/* Pricing page upgrades */
.pricing .current_license_note{
	position: absolute;
	z-index: 9;
    top: -24px;
    left: 0;
    width: 100%;
    padding: 8px 0px;
    border-radius: 8px 8px 0 0;
    background: #333;
    color: #fff;
}
.pricing .sb_disable_license *:not(.current_license_note),
.pricing .sb_current_license *:not(.current_license_note) /* Disabled lifetime upgrades for current license */ {
	opacity: 0.75;
}

.pricing.sb_upgrade .currency,
.pricing.sb_upgrade .lifetime-note{
	display: block;
    padding: 5px 0;
	font-size: 13px;
    font-weight: normal;
    position: relative;
    top: 0;
}
.pricing.sb_upgrade .lifetime-note{
	display: none;
}
.pricing.sb_upgrade .price.lifetime .lifetime-note{
	display: block;
}
.pricing.sb_upgrade .buy-options{
	padding-top: 10px;
}
.pricing.new.sb_upgrade section {
    min-height: 670px;
}
.pricing.new.sb_upgrade section.standalone,
.pricing.new.sb_upgrade section.lifetime{
	width: 32.6%;
}
.pricing.new section {
	min-height: 660px;
}
.instagram .pricing.new section {
    min-height: 645px;
}
.youtube .pricing.new section {
	min-height: 620px;
}
.twitter .pricing.new section {
	min-height: 686px;
}
.pricing section .option.wp_only {
    padding: 26px 0;
    margin-bottom: 10px;
}
.pricing.new .currency,
.pricing.new .lifetime-note {
    left: 2px;
}

/* Disable checkout getting started button on click */
.pricing .edd-submit.disabled,
.pricing .edd-submit.disabled:hover,
.pricing .edd-submit.disabled:focus,
.pricing .edd-submit.disabled:active{
	background: #ccc;
	cursor: default;
	border-color: #bbb;
	pointer-events: none;
}

/* Hide WordPress/Standalone radio buttons on pricing page */
.dev.pricing-page .option {
    display: none;
}

/* All Access Downloads page */
.all-access-downloads .edd_download{
	text-align: center;
}
.all-access-downloads .edd_download .edd_price_options{
	display: none;
}
.all-access-downloads .edd_download .edd_download_title{
	line-height: 1.3;
}





/* New Account Area */
.account-new .account-navigation{
	margin-bottom: 40px;
	overflow: hidden;
	width: 100%;
	border-bottom: 1px solid #ebebeb;
}
.account-new .account-navigation li{
	display: block;
	float: left;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
/* Hide affiliate menu item unless is affiliate */
.account-new .account-navigation .affiliate-menu-item{
	display: none;
}
.account-new .account-navigation.is_affiliate .affiliate-menu-item{
	display: block;
}
.account-new .account-navigation li.sb_logout{
	float: right;
}
.account-new .account-navigation li a{
	position: relative;
	display: inline-block;
	text-decoration: none;
	padding: 20px 30px;
	font-size: 15px;
}
.account-new .account-navigation li a.active{
	color: #333;
	font-weight: 600;
}
.account-new .account-navigation li a:hover{
	color: #333;
}
.sb-account-bubble{
	position: absolute;
    top: 21px;
    right: 2px;
    background: #e45612;
    color: white;
    width: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.account-new .sb_downloads #edd_user_history .purchase{
	background: #eee;
	padding: 10px 0;
	margin: 0;
}
.account-new .sb_downloads #edd_user_history .product{
	background: #fff;
	margin: 0;
	padding: 10px;
	border-bottom: 1px solid #eee;
}

.account-new .sb_account .account-overview{
	width: 100%;
}
.account-new .sb_account_overview_card,
.account-new .sb_account_offer,
.account-new .no-promo{
	float: left;
	width: 50%;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	box-sizing: border-box;
}
.account-new .sb_account_offer{
	width: 45%;
	margin-left: 5%;
	padding: 20px;
}
.account-new .sb_row{
	padding-bottom: 10px;
}
.account-new .sb_col{
	float: left;
	padding: 0;
	box-sizing: border-box;
}
.account-new .sb_col_70{
	width: 70%;
}
.account-new .sb_col_50{
	width: 50%;
}
.account-new .sb_col_33{
	width: 33.3%;
}
.account-new .sb_col_30{
	width: 30%;
}
.account-new .sb_col_25{
	width: 25%;
}
.account-new .customer_info{
	padding: 30px;
	border-bottom: 1px solid #ebebeb;
}
.account-new .customer_info{
	padding-bottom: 20px;
}
.account-new .purchase{
	border-bottom: 1px solid #ebebeb;
}
.account-new .purchase .product{
	padding: 30px 30px 0 30px;
	overflow: hidden;
}
.account-new .purchase .product:last-child{
	padding-top: 0;
}
.account-new .purchase .product .item_type{
	font-weight: 100;
}
.account-new .account-content .label{
	display: block;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
    margin: 0;
}
.account-new .large-text{
	font-size: 30px;
    line-height: 1;
}
.account-new .item_name{
	display: block;
    font-weight: 100;
    font-size: 22px;
    margin-top: -3px;
}
.account-new .item_type{
	font-weight: 400;
}
.account-new .sb_item_details{
	font-weight: 600;
}
.account-new .sb_license{
	width: 100%;
}
.account-new .sb_license span{
	width: 100%;
	padding: 3px 0;
    border: none;
    font-size: 13px;
    font-family: monospace;
}
.account-new .sb_license.expired span{
	color: #d83638;
}
.account-new .sb_license span:focus,
.account-new .sb_license span:active{
	outline: none;
}
.account-new .sb_license span::selection{
	background: #e34f0e;
	color: #fff;
}
.account-new .pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    background-color: #eee;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 0px 8px;
    vertical-align: text-bottom;
    margin: 0 0 0 3px;
}
.account-new .pill.active {
    background-color: #6fb05a;
    color: #fff;
}
.account-new .pill.expired {
    background-color: #d83638;
    color: #fff;
}
.account-new .product .renew_button{
    margin-left: 3px;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}
.account-new .product .renew_button:hover {
    color: #e34f0e;
    border-bottom: 1px dotted #e34f0e;
}
.account-new .product .sb_renew,
.account-new .product .sb_upgrade_license{
	display: block;
	width: 100%;
	padding: 10px 0;
	margin-bottom: 10px;
	text-align: center;
	text-decoration: none;
	color: #fff;
}
.account-new .product .sb_renew{
	background: #7bc363;
	border: 1px solid #6bb552;
    border-bottom-width: 4px;
    font-size: 18px;
}
.account-new .product .sb_renew:hover,
.account-new .product .sb_renew:focus{
	background: #6bb552;
	border: 1px solid #51963a;
    border-bottom-width: 4px;
}
.account-new .sb_account_overview_card .product .sb_renew{
	float: left;
	clear: both;
	padding: 5px;
	margin: 10px 0 30px 0;
	font-size: 14px;
	border-radius: 3px;
	box-sizing: border-box;
}
.account-new .view_product_links{
	margin: -10px 0 0 0;
	padding: 20px 30px 30px 30px;
}

/* CTA button style */
.account-new .cta{
	background: #e89a2e;
	color: #fff;
	text-decoration: none;
	border: 1px solid #ea8519;
    border-bottom-width: 4px;
    border-radius: 4px;
    line-height: 1.1;
}
.account-new .cta:hover,
.account-new .cta:focus{
	background: #e34716;
	border: 1px solid #cf3100;
    border-bottom-width: 4px;
    border-radius: 4px;
}
.account-new .cta.secondary{
	background: #777;
	border: 1px solid #666;
    border-bottom-width: 4px;
}
.account-new .cta.secondary:hover,
.account-new .cta.secondary:focus{
	background: #e34716;
	border: 1px solid #cf3100;
    border-bottom-width: 4px;
}
.account-new .bundle_upgrade_features .cta.secondary{
	display: block;
	padding: 5px 5%;
	width: 90%;
	margin: 10px 0 0 0;
	text-align: center;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}
.account-new .bundle_upgrade_features .cta.secondary.disabled{
	background: none;
    color: #333;
    border: 1px solid #e6e6e6;
}

/* Account Downloads */
.account-new .sb_account_downloads .product,
.account-new .sb_account_downloads .purchase .product:last-child{
	border: 1px solid #f1eae8;
	padding: 0;
	margin-bottom: 40px;
	overflow: hidden;
	border-radius: 3px;
	padding-bottom: 0;
}
.account-new .sb_account_downloads .purchase{
	border: none;
	padding: 0;
}
.account-new .sb_account_downloads .download-top,
.account-new .sb_account_downloads .download-bottom{
	width: 100%;
	float: left;
	box-sizing: border-box;
}
.account-new .sb_account_downloads .download-top{
	border-bottom: 1px solid #f1eae8;
	padding: 25px 30px 20px 30px;
}
.account-new .sb_account_downloads .sb_row,
.account-new .sb_account_downloads .sb_col_33,
.account-new .sb_account_downloads .sb_col_25{
	padding: 30px;
	/*border-bottom: 1px solid #ebebeb;*/
}
.account-new .sb_account_downloads .sb_row{
	padding-top: 0;
}
.account-new .sb_account_downloads .sb_row:last-child{
	border: 0;
}

.account-new .sb_account_downloads .sb_license_display{
	width: 38%;
	padding: 30px;
}
.account-new .sb_account_downloads .sb_license_expires{
	width: 28%;
	padding: 30px;
}

.account-new .sb_account_downloads .sb_col_wrap{
	width: 100%;
	overflow: hidden;
	border-bottom: 1px solid #f1eae8;
}
.account-new .sb_account_downloads .adtl_rows:not(.expired) .sb_col_wrap{
	margin-bottom: 25px;
}
.account-new .sb_account_downloads .sb_col_33,
.account-new .sb_account_downloads .sb_col_25{
	/*border-left: 1px solid #ebebeb;*/
	border-bottom: 0;
}
.account-new .sb_account_downloads .sb_col_33:first-child{
	border: 0;
}
.account-new .sb_account_downloads .item_name{
	margin-top: -10px;
	padding: 10px 0 8px 0;
	font-size: 30px;
	line-height: 1.1;
}
.account-new .sb_account_downloads .sb_download_button{
	float: right;
	display: block;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.1;
}
.account-new .sb_account_downloads .sb_download_button .fa{
	margin-right: 8px;
}
.account-new .sb_account_downloads .all_access .edd_price_options,
.account-new .sb_account_downloads .all_access .edd_purchase_submit_wrapper{
	display: none;
}
.account-new .sb_account_downloads .all_access .edd_download_inner,
.account-new .sb_account_downloads .all_access .edd_download_title,
.account-new .sb_account_downloads .all_access .edd_download,
.account-new .sb_account_downloads .all_access .edd_download_purchase_form {
	padding: 0;
	margin: 0;
}
.account-new .edd_download_buy_button{
	margin: 0;
}
.account-new .sb_account_downloads .all_access .edd_download_title {
    font-size: 14px;
}
.account-new .sb_view_sites{
	color: #333;
	margin-left: 5px;
	font-size: 13px;
	text-decoration: none;
	border-bottom: 1px solid #ddd;
}
.account-new .sb_view_sites:hover{
	color: #e34f0e;
	border-bottom: 1px dotted #e34f0e;
}

/* Bundle upsell promo */
.account-new .sb_upgrade_promo,
.account-new .sb_renew_promo,
.account-new .sb_upgrade_basic,
.account-new .sb_upgrade_expand{
	width: 100%;
	float: left;
	clear: both;
	padding: 30px;
	background: #f7f1f1;
	/*border-top: 1px solid #f1eae8;*/
	box-sizing: border-box;
}
.account-new .expired .sb_upgrade_promo{
	display: none;
}
.account-new .sb_account_promo_intro h5{
	width: 100%;
	margin: 0 0 3px 0;
	font-size: 22px;
	text-align: center;
	font-weight: 400;
}
.account-new .sb_account_promo_intro p{
	width: 100%;
	text-align: center;
}
.account-new .sb_upgrade_promo .sb_upgrade_license,
.account-new .sb_renew_promo .sb_renew{
	width: 34%;
	margin: 20px 33%;
	font-weight: bold;
	font-size: 18px;
	padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}
.account-new .sb_upgrade_promo .sb_upgrade_license span{
	display: block;
	font-size: 13px;
	font-weight: 400;
	margin-top: -3px;
}
.account-new .sb_upgrade_promo .upgrade_perks{
	text-align: center;
}
.account-new .sb_upgrade_promo .upgrade_perks span{
	display: inline-block;
	margin-right: 20px;
}
.account-new .sb_upgrade_promo .upgrade_perks i{
	margin-right: 5px;
	display: inline-block;
}
.account-new .sb_upgrade_promo .upgrade_perks .fa-infinity{
	/*transform: rotate(-101deg);*/
    font-family: sans-serif;
    font-weight: bold;
    font-size: 30px;
    line-height: 1;
    position: relative;
    top: 6px;
}
.account-new .sb_upgrade_promo .product-summary {
    position: relative;
    width: 23%;
    float: left;
    clear: none;
    margin: 15px 2.66% 0 0;
    padding: 20px;
    padding-bottom: 12px;
    background: none;
    line-height: 1.5;
    text-align: right;
    background: #fff;
    box-shadow: 0 0 40px 0 rgba(0,0,0,0.05);
    box-sizing: border-box;
}
.account-new .sb_upgrade_promo .product-summary.youtube {
    margin-right: 0;
}
.account-new .sb_upgrade_promo .product-summary h3 {
	margin: 0;
    padding: 0 0 5px 0;
    font-size: 20px;
    font-weight: 800;
}
.account-new .sb_upgrade_promo .product-summary p {
	margin-bottom: 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}
.account-new .sb_upgrade_promo .product-summary .speech {
    position: relative;
    min-height: 140px;
    width: 110%;
    padding: 6%;
    margin: 20px 0 0 -5%;
    border-radius: 10px;
    background: #f4edea;
    color: #7d6b64;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    font-style: italic;
    box-sizing: border-box;
}
.account-new .sb_upgrade_promo .product-summary .speech .testi-author{
	display: block;
	padding: 2px 0 4px 0;
	font-size: 12px;
	font-style: normal;
}
.account-new .sb_upgrade_promo .quotation {
    display: block;
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 34px;
    height: 27px;
    background: url(img/quotation.png);
}
.account-new .sb_upgrade_promo .product-summary .icon {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    width: 40px;
    height: 40px;
    background: #3c5a99;
    border-radius: 0 50px 50px;
}
.account-new .sb_upgrade_promo .product-summary .icon .fa {
    position: absolute;
    left: 9px;
    top: 16px;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 30px;
}
.account-new .sb_upgrade_promo .product-summary.instagram .icon {
    background: #edb72f;
}
.account-new .sb_upgrade_promo .product-summary.twitter .icon {
    background: #1da1f2;
}
.account-new .sb_upgrade_promo .product-summary.youtube .icon {
    background: #FF0000;
}
.account-new .sb_upgrade_promo .product-summary.instagram .fa {
    left: 13px;
    top: 14px;
}
.account-new .sb_upgrade_promo .product-summary.twitter .fa {
    left: 15px;
    top: 15px;
}
.account-new .sb_upgrade_promo .product-summary.youtube .fa {
    left: 14px;
    top: 15px;
}

/* Basic upgrade link */
.account-new .sb_upgrade_basic,
.account-new .sb_upgrade_expand{
	padding: 15px 30px;
}
.account-new .sb_upgrade_expand{
	margin: 0;
    text-align: center;
    color: #675b5b;
    text-decoration: none;
}
.account-new .sb_upgrade_expand .fa{
	color: #675b5b;
    margin-right: 5px;
    font-size: 16px;
    position: relative;
    top: 1px;
}
.account-new .sb_upgrade_expand:hover,
.account-new .sb_upgrade_expand:focus,
.account-new .sb_upgrade_expand:hover .fa,
.account-new .sb_upgrade_expand:focus .fa{
	background: #f5eeee;
	color: #e34f0e;
}

.account-new .sb_upgrade_expand .sb_closed{
	display: block;
}
.account-new .sb_upgrade_expand .sb_open{
	display: none;
}

.account-new .sb_upgrade_basic .sb_upgrade_license{
	display: inline-block;
	width: auto;
	margin: 0 auto;
	padding: 5px 25px;
}
.account-new .sb_upgrade_promo_wrap{
	display: none;
}

/* Renew promo */
.account-new .sb_account_downloads .renew_reason{
	position: relative;
	padding: 20px;
}
.account-new .renew_reason h5{
	padding-left: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #675b5b;
}
.account-new .renew_reason .fa{
	top: 35px;
    left: 20px;
    font-size: 28px;
    display: inline-block;
    padding: 5px 15px 0 3px;
    float: left;
}
.account-new .renew_reason p{
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
	color: #675b5b;
}

/* New Billing Page */
.account-new #edd_user_history .edd_purchase_row td{
	display: table-cell;
}
.account-new table.sb_subscriptions td{
	padding: ;
	font-size: 14px;
}
.account-new #edd_user_history.sb_subscriptions td {
    padding: 20px 5px;
}
.account-new #edd_user_history.sb_subscriptions td:first-child{
	padding-left: 15px;
}
.account-new .sb_subscription_actions a.sub_btn{
	margin: 5px 0 5px 5px !important;
}
.account-new .account-section .heading {
    background: none;
    border: 0;
    font-size: 30px;
    font-weight: 100;
    padding: 0 0 15px 0;
}
.account-new #edd_user_history.sb_subscriptions th {
    padding: 20px 5px 18px 5px;
    font-size: 14px;
    background: #f7f1f1;
	color: #675b5b;
}
.account-new #edd_user_history.sb_subscriptions th:first-child{
	padding-left: 15px;
}
.account-new #edd_user_history.sb_subscriptions .sb_user_subscription td {
    border-bottom: 1px solid #f1eae8;
}
.account-new #edd_user_history.sb_subscriptions td .sb_purchase_status:not(.publish){
	color: red;
}
.account-new #edd_purchase_history_pagination{
	margin: 0;
    padding: 15px 0 0 15px;
    font-size: 14px;
}
.account-new .sb_account_overview_card #edd_purchase_history_pagination{
	padding: 20px;
	background: #fafafa;
}
.account-new .downloads_pag #edd_purchase_history_pagination{
	padding: 0 15px;
}

/* Purchase confirmation notice */
.account-new .alert-confirmation{
	margin: -20px 0 20px 0;
	padding: 15px 20px;
}
.account-new .alert-confirmation strong{
	padding-right: 5px;
}

/* Profile Page */
.account-new #edd_profile_editor_form{
	padding: 0;
	background: none;
	border: 0;
	margin: 0;
}
.account-new #edd_profile_name_label{
	display: none;
}
.account-new #edd_profile_first_name_wrap,
.account-new #edd_profile_last_name_wrap,
.account-new #edd_profile_display_name_wrap,
.account-new #edd_profile_primary_email_wrap,
.account-new #edd_profile_billing_address_city_wrap,
.account-new #edd_profile_billing_address_postal_wrap,
.account-new #edd_profile_billing_address_country_wrap,
.account-new #edd_profile_billing_address_state_wrap,
.account-new #edd_profile_password_wrap,
.account-new #edd_profile_confirm_password_wrap{
	width: 49%;
	float: left;
}
.account-new #edd_profile_first_name_wrap,
.account-new #edd_profile_display_name_wrap,
.account-new #edd_profile_billing_address_city_wrap,
.account-new #edd_profile_billing_address_country_wrap,
.account-new #edd_profile_password_wrap{
	margin-right: 2%;
}
.account-new #edd_profile_editor_form p {
    margin-bottom: 10px;
}
.account-new #edd_profile_editor_form label{
	display: block;
    font-size: 14px;
    font-weight: 400;
    color: #999;
}
.account-new #edd_profile_editor_form input,
.account-new #edd_profile_editor_form select{
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
}
.account-new #edd_profile_editor_form legend{
    padding: 20px 0 10px 0;
    margin: 0;
    font-size: 22px;
    font-weight: 100;
    border: 0;
}

/* Purchase Receipt */
.account-new .payment-receipt .heading{
	margin: 0;
	padding: 0 0 10px 0;
}
.account-new .payment-receipt #edd_purchase_receipt{
	margin-top: 35px;
}
.account-new #edd_purchase_receipt td{
	padding: 12px 10px;
	font-size: 14px;
}
.account-new #edd_purchase_receipt td.receipt_label{
	font-weight: bold;
}

/* Invoice */
.account-new .invoice .cta{
	padding: 15px 25px;
	font-size: 16px;
}
.account-new .invoice .cta .fa{
	margin-right: 5px;
}
.account-new .invoice .cta.secondary{
	margin-left: 10px;
	background: #f6f6f6;
	color: #333;
	border-color: #ddd;
}
.account-new .invoice .cta.secondary:hover,
.account-new .invoice .cta.secondary:focus{
	background: #eee;
	border-color: #ccc;
}

.account-new #custom_invoice_editor{
	display: none;
	overflow: hidden;
	margin: 50px 0 0 0;
}
.account-new #custom_invoice_editor .heading{
	padding: 0;
	margin: 0;
}
.account-new #custom_invoice_editor .edd-invoices-div{
	/*width: 50%;*/
	/*float: left;*/
    margin-top: 0;
    margin-bottom: 10px;
    /*min-height: 70px;*/
}
.account-new .edd-invoices-div label{
	display: block;
	font-size: 14px;
    font-weight: 400;
    color: #999;
}
.account-new .edd-invoices-div input,
.account-new .edd-invoices-div select,
.account-new .edd-invoices-div textarea{
	width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
}
.account-new #custom_invoice_editor .edd-invoices-generate-invoice-button,
.account-new .update-payment-method #edd-recurring-update-submit,
.account-new #edd_profile_editor_form #edd_profile_editor_submit{
	display: block;
	float: none;
	margin: 15px auto 0 auto;
	width: auto;
	padding: 15px 40px;
	font-size: 16px;
	background: #e89a2e;
    color: #fff;
    text-decoration: none;
    border: 1px solid #ea8519;
    border-bottom-width: 4px;
    border-radius: 4px;
}
.account-new #custom_invoice_editor .edd-invoices-generate-invoice-button:hover,
.account-new #custom_invoice_editor .edd-invoices-generate-invoice-button:focus,
.account-new .update-payment-method #edd-recurring-update-submit:hover,
.account-new .update-payment-method #edd-recurring-update-submit:focus,
.account-new #edd_profile_editor_form #edd_profile_editor_submit:hover,
.account-new #edd_profile_editor_form #edd_profile_editor_submit:focus{
	background: #e34716;
    border: 1px solid #cf3100;
    border-bottom-width: 4px;
    border-radius: 4px;
}

.account-new #edd_profile_editor_form #edd_profile_editor_submit{
	margin: 20px 37.5% 0 37.5%;
}
.account-new .invoice .print-invoice-note{
	width: 100%;
	margin-top: 15px;
	text-align: center;
	font-size: 13px;
}

/* Update payment method */
.account-new .update-payment-method{
	width: 70%;
    margin: 0 15%;
    border: 1px solid #ebebeb;
    padding: 30px;
}
.account-new .update-payment-method #edd_checkout_form_wrap{
	width: 100%;
}
.account-new .update-payment-method h3{
	display: inline-block;
    padding-left: 20px;
    margin: 0;
}
.account-new .update-payment-method #edd_checkout_form_wrap fieldset#edd_cc_fields legend{
	padding: 35px 0 10px 0;
}
.account-new .update-payment-method #edd_checkout_form_wrap #edd_cc_address{
	margin-top: 15px;
}
.account-new .update-payment-method #edd_checkout_form_wrap label{
	clear: both;
}
.account-new .update-payment-method #edd_checkout_form_wrap input {
    width: 100%;
    box-sizing: border-box;
}
.account-new .update-payment-method #edd_cc_address #billing_country{
	width: 100%;
}
.account-new .update-payment-method #edd_checkout_form_wrap #card_zip{
	width: 95%;
}
.account-new .update-payment-method #card_state{
	width: 47.5%;
}
/* Checkout progress bar */
.checkout-progress{
	width: 100%;
	overflow: hidden;
}
.checkout-progress div{
	position: relative;
	width: 33.3%;
	float: left;
	background: rgba(255,255,255,0.1);
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: normal;
	padding: 0;
    box-sizing: border-box;
    height: 36px;
    line-height: 36px;
}
.checkout-progress svg {
	display: block;
    position: absolute;
    z-index: 999;
    right: -21px;
    top: -4px;
    height: 120%;
}
.checkout-progress .one{
	background: #e6703e;
}
.checkout-progress .two{
	background: #bf4f0b;
	font-weight: bold;
}
.checkout-progress .three{
	background: #e88246;
}
.checkout-progress .one:after,
.checkout-progress .two:after{
    content: '';
    position: absolute;
    top: 0;
    right: -18px;
    width: 36px;
    height: 36px;
    transform: scale(0.707) rotate(45deg);
    z-index: 1;
}
.checkout-progress .one:after{
	background: #e6703e;
}
.checkout-progress .two:after{
	background: #bf4f0b;
}

.checkout-progress .one svg{
	color: #e4652a;
}
.checkout-progress .two svg{
	color: #e56f2f;
}

.account-new .update-payment-method > a{
    border: 1px solid #eee;
    color: #666;
    display: inline-block;
    margin: 0;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    background: none;
}
.account-new .update-payment-method > a:hover,
.account-new .update-payment-method > a:focus{
	border: 1px solid #ccc;
    color: #333;
    background: none;
}

/* Manage licenses */
.account-new .manage_licenses{
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,0.5);
}
.account-new .manage_licenses_inner{
	position: relative;
	top: 50px;
	background: #fff;
	min-height: 252px;
	width: 960px;
	max-width: 90%;
	margin: 0 auto;
	padding: 30px;
	box-sizing: border-box;
}
.manage_licenses_inner img {
    top: 50%;
    position: absolute;
    margin-top: -16px;
}
.account-new #close_modal{
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 10px;
	color: #aaa;
}
.account-new #close_modal:hover,
.account-new #close_modal:focus{
	color: #333;
}
.account-new #close_modal span{
	display: none;
}
.account-new .manage_licenses table{
	margin: 10px;
}
.account-new .manage_licenses th,
.account-new .manage_licenses td{
	padding: 10px 15px;
	font-size: 14px;
}
.account-new .manage_licenses th{
	font-weight: bold;
}
body.page-template-page-account,
body.page-template-page-account-dev{
	position: relative;
}
.account-new .manage_licenses .account-section{
	padding: 0;
    max-height: 650px;
    overflow: hidden;
    overflow-y: auto;
}
.account-new .manage_licenses .heading{
	padding: 0;
}
.account-new .manage_licenses .heading span{
	display: block;
	font-size: 16px;
}

/* 48 hour offer */
.account-new .sb_account_offer{
	position: relative;
	padding: 40px 40px;
	text-align: center;
	color: #666;
}
.account-new .sb_account_offer .star.top-left {
    top: 10px;
    left: 10px;
    border-bottom: 0;
    border-right: 0;
}
.account-new .sb_account_offer .star.top-right {
    top: 10px;
    right: 10px;
    border-bottom: 0;
    border-left: 0;
}
.account-new .sb_account_offer .star.bottom-left {
    bottom: 10px;
    left: 10px;
    border-top: 0;
    border-right: 0;
}
.account-new .sb_account_offer .star.bottom-right {
    bottom: 10px;
    right: 10px;
    border-top: 0;
    border-left: 0;
}
.account-new .sb_account_offer .star {
    position: absolute;
    padding: 12px;
    border: 1px solid #e89a2e;
}
.account-new .sb_account_offer .star svg {
    width: 15px;
    display: block;
    margin: 0;
    fill: #e89a2e;
}
.account-new .sb_account_offer p{
	margin: 0;
	padding: 0;
}
.account-new .sb_account_offer .intro p{
	font-weight: 600;
    line-height: 1.3;
    width: 80%;
    margin: -5px auto;
}
.account-new .sb_account_offer h4{
	padding: 0;
	margin: 0;
	font-size: 30px;
	font-weight: 900;
	text-transform: uppercase;
	color: #555;
}
.account-new .sb_account_offer .features .fa-check-circle{
	color: #6fb05a;
}
.account-new .sb_account_offer .cta{
	clear: both;
	display: inline-block;
	padding: 10px 20px;
	margin: 0 auto 20px auto;
	font-size: 16px;
	font-weight: bold;
}
.account-new .sb_account_offer ul{
	padding: 10px 0 10px 87px;
	margin: 0;
}
.account-new .sb_account_offer li{
	list-style-type: none;
	display: block;
	padding: 5px 0;
	margin: 0;
	text-align: left;
	font-size: 14px;
	/*text-align: center;*/
}
.account-new .sb_account_offer .sites_support{
	width: 100%;
	clear: both;
	padding: 10px 0 0 0;
}
.account-new .sb_account_offer li .fa{
	margin-right: 5px;
}
.account-new .sb_account_offer .sites_support span{
	padding: 0 5px;
}
.account-new .sb_account_offer .sites_support .fa-infinity{
	font-size: 26px;
    line-height: 1;
    margin: 0;
    position: relative;
    top: 5px;
}
.account-new .sb_account_offer #timer{
	height: 40px;
	font-size: 24px;
	color: #777;
	font-weight: bold;
}
.account-new .sb_account_offer #timer span{
	display: inline-block;
	font-weight: 400;
	font-size: 20px;
	padding: 0 5px 0 2px;
}

/* Compact version */
.account-new .sb_account_offer.compact {
    padding: 30px 40px 25px 40px;
}
.account-new .compact .offer_product{
	padding: 4px 0 10px 0;
}
.account-new .compact .offer_product .cta {
    padding: 7px 0;
    width: 100px;
    top: 20px;
}
.account-new .compact .sb_account_offer h4{
	font-size: 26px;
}
.account-new .compact .offer_product h5 {
    margin-bottom: -2px;
}
.account-new .compact .offer_products{
	padding-bottom: 12px;
}
.account-new .compact .sb_account_offer #timer{
	margin-top: -3px;
}
/* All Access Promo Compact */
.account-new .sb_account_offer.compact .all_access_promo ul{
	padding: 8px 0;
}
.account-new .sb_account_offer.compact .all_access_promo li{
	width: 48%;
	padding: 3px 0;
	font-size: 13px;
	float: left;
	margin: 0 0 0 2%;
}
.account-new .sb_account_offer.compact .all_access_promo .features{
	padding: 10px 0;
}
.account-new .sb_account_offer.compact .all_access_promo .features p{
	font-size: 13px;
}
.account-new .sb_account_offer.compact .all_access_promo .sites_support{
	padding: 5px 0;
}
.account-new .sb_account_offer.compact .all_access_promo .features .extensions{
	display: none;
}

/* Cross sell offer */
.account-new .offer_products{
	width: 100%;
	float: left;
	clear: both;
	padding: 10px 0 20px 0;
	text-align: left;
}
.account-new .offer_product{
	position: relative;
	float: left;
	width: 100%;
	padding: 13px 0 20px 0;
	margin: 0;
	border-bottom: 1px solid #ebebeb;
}
.account-new .offer_product_info{
	float: left;
	padding-right: 115px;
}
.account-new .offer_product .cta{
	position: absolute;
	right: 0;
	top: 28px;
	width: 104px;
	padding-left: 0;
	padding-right: 0;
	text-align: center;
	font-size: 14px;
}
.account-new .offer_product h5{
	font-size: 18px;
	margin: 0;
}
.account-new .offer_product h5 .fa{
	margin-right: 5px;
}
.account-new .offer_product p{
	font-size: 13px;
	line-height: 1.2;
}

/* Fallback promo */
.account-new .fallback-promo{
	padding: 30px 0;
	min-height: 260px;
}
.account-new .fallback-promo .promo-item{
	display: none;
}
.account-new .fallback-promo h6{
	padding: 20px 0 10px 0;
    margin: 0px;
    font-size: 16px;
}
.account-new .fallback-promo .promo-icon{
    background: #edb72f;
    color: #fff;
    border-radius: 100px;
    display: inline-block;
    font-size: 40px;
    width: 40px;
    height: 40px;
    line-height: 1;
    padding: 14px 14px 15px 15px;
}
.account-new .fallback-promo .facebook .promo-icon{
	background: #3c5a99;
	padding-top: 15px;
	padding: 14px 14px 14px 15px;
}
.account-new .fallback-promo .twitter .promo-icon{
	background: #1da1f2;
	padding: 14px 14px 14px 15px;
}
.account-new .fallback-promo .youtube .promo-icon{
	background: #FF0000;
	padding: 14px 14px 15px 15px;
}
/* CTA */
.account-new .fallback-promo .cta{
	margin: 20px auto 0 auto;
	background: #edb72f;
	border-color: #d89720;
}
.account-new .fallback-promo .facebook .cta{
	background: #3c5a99;
    border-color: #1e3667;
}
.account-new .fallback-promo .twitter .cta{
	background: #1da1f2;
    border-color: #1289d2;
}
.account-new .fallback-promo .youtube .cta{
	background: #FF0000;
    border-color: #c51a1a;
}
.account-new .fallback-promo .cta:hover,
.account-new .fallback-promo .facebook .cta:hover,
.account-new .fallback-promo .twitter .cta:hover,
.account-new .fallback-promo .youtube .cta:hover {
    background: #e34716;
    border: 1px solid #cf3100;
    border-bottom-width: 4px;
    border-radius: 4px;
}

/* Stars */
.account-new .sb_account_offer .instagram .star{
	border-color: #edb72f;
}
.account-new .sb_account_offer .instagram .star svg{
	fill: #edb72f;
}
.account-new .sb_account_offer .facebook .star{
	border-color: #7893cc;
}
.account-new .sb_account_offer .facebook .star svg{
	fill: #7893cc;
}
.account-new .sb_account_offer .twitter .star{
	border-color: #8eccf3;
}
.account-new .sb_account_offer .twitter .star svg{
	fill: #8eccf3;
}
.account-new .sb_account_offer .youtube .star{
	border-color: #ef9f9f;
}
.account-new .sb_account_offer .youtube .star svg{
	fill: #ef9f9f;
}

.sb_item_price em {
    line-height: 1.2;
    display: inline-block;
}
.account-new .bundle-all-downloads table{
	font-size: 13px;
    line-height: 1.2;
    margin: 0;
    border: 0;
}
.account-new .bundle-all-downloads th{
	padding-bottom: 5px;
}
.account-new .bundle-all-downloads td{
	border: 0;
	padding: 0;
}
.account-new .bundle-all-downloads .label{
	display: table-cell;
}
.account-new .bundle-all-downloads a{
	display: block;
    float: left;
    clear: both;
}

/* Value reminder - Twitter feed */
.account-new .sb_account_offer .value-reminder{
	display: none;
	margin: -25px -18px -20px -18px;
}
.account-new .sb_account_offer .value-reminder #ctf.ctf-super-narrow .ctf-author-box{
	width: 89%;
}

/* No promo - show Twitter feed */
.account-new .no-promo{
	width: 45%;
	margin-left: 5%;
	padding: 10px 20px 20px 20px;
}
.account-new .no-promo #ctf .ctf-item{
	padding-left: 0;
}
.account-new .no-promo #ctf #ctf-more{
	color: #666;
}

/* User switching link */
#user_switching_switch_on{
	position: absolute;
    top: 0;
    padding: 7px;
}
#user_switching_switch_on a{
	font-size: 13px;
    color: #999;
    background: #222;
}
#user_switching_switch_on a:hover{
	color: #fff;
}

/* Account mobile layout */
@media (max-width: 800px) {
	body.page-template-page-account,
	body.page-template-page-account-dev{
		position: unset;
	}
    .account-new .sb_account_overview_card,
    .account-new .sb_account_offer,
    .account-new .sb_col_70,
    .account-new .sb_col_30,
    .account-new .sb_upgrade_promo .sb_upgrade_license,
    .account-new .sb_renew_promo .sb_renew,
    .account-new #edd_profile_first_name_wrap,
    .account-new #edd_profile_last_name_wrap,
    .account-new #edd_profile_display_name_wrap,
    .account-new #edd_profile_primary_email_wrap,
    .account-new #edd_profile_billing_address_city_wrap,
    .account-new #edd_profile_billing_address_postal_wrap,
    .account-new #edd_profile_billing_address_country_wrap,
    .account-new #edd_profile_billing_address_state_wrap,
    .account-new #edd_profile_password_wrap,
    .account-new #edd_profile_confirm_password_wrap{
    	width: 100%;
    }
    .account-new .sb_upgrade_promo .product-summary{
    	width: 47%;
    }
    .account-new .account-navigation li.sb_logout,
    .account-new .sb_account_downloads .sb_download_button{
    	float: left;
    }
    .account-new .sb_account_offer{
    	margin: 20px 0 0 0;
    }
    .account-new .sb_upgrade_promo .sb_upgrade_license,
    .account-new .sb_renew_promo .sb_renew{
    	margin: 20px 0;
    }
    .account-new #loginform{
    	margin-top: 15px;
    }
    .account-new .login-help{
    	padding-top: 20px;
    }
    .account-new .login-help p{
    	font-size: 12px;
    	margin-bottom: 15px;
    }
}

@media (max-width: 520px) {
	.account-new .sb_upgrade_promo .product-summary,
	.account-new .sb_col_33,
	.account-new .sb_col_25,
	.account-new .sb_col_50,
	.account-new #loginform,
	.account-new .login-help{
    	width: 100%;
    }
    .account-new .sb_account_downloads .renew_reason{
    	padding: 15px 30px 10px 30px;
    }
}

/* Docs archive page */
.archive-category-page,
.archive-category-sidebar{
	float: left;
}
#primary.archive-category-page{
	width: 70% !important;
}
.archive-category-sidebar{
	width: 25%;
	margin-left: 5%;
}
.archive-category-sidebar .widget-area{
	width: 100%;
}

/* Social Wall Plugin */
.social-wall .pricing section.one{
	width: 33.3%;
}
.social-wall .pricing section.four{
	width: 65.6%;
}
.social-wall .pricing section.one .pricing-features .fa-times{
	color: #d63535;
}
.social-wall .pricing section .fa-check{
	color: green;
}
.pricing-page.social-wall .pricing-features p {
    font-size: 13px;
}
.pricing-page.social-wall .four .info{
	text-align: center;
}
.pricing-page.social-wall .four .info p{
	font-size: 16px;
}
.pricing-page.social-wall .pricing .four .info i{
	font-size: 20px;
	width: 20px;
	margin-right: 3px;
	position: relative; 
    top: 1px;
}
.pricing-page.social-wall .pricing .four .info .fa-check{
	font-size: 16px;
	width: 16px;
	top: 0;
}
.pricing-page.social-wall .pricing .four .savings{
	max-width: 200px;
}
.social-wall .pricing .one .edd-submit {
	background: #eee;
	color: #333;
	border-color: transparent;
	font-weight: normal;
}
.social-wall .pricing .one .edd-submit:hover,
.social-wall .pricing .one .edd-submit:focus{
	background: #e6e6e6;
}
.social-wall .pricing .four .edd-submit {
    font-size: 18px;
    padding: 10px 0;
}
.pricing-page.social-wall .wp-btn p{
	display: none;
}
.pricing-page.social-wall .sb_custom {
    padding-top: 12px;
}
.pricing-page.social-wall .one .sb_custom{
	padding: 16px 0 15px 0;
}
.pricing-page.social-wall .pricing.new section {
    min-height: 625px;
}
.pricing-page.social-wall .four header{
	background: #fff2d1;
}
.pricing-page.social-wall .one .edd_price_options {
    margin-bottom: -4px;
}

.product-home-banner.socialwall img{
	top: -80px;
    right: 15px;
}

.sb-alert-bubble {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    margin: 0;
    padding: 0 5px;
    margin: 0 0 0 8px;
    height: 18px;
    border-radius: 9px;
    background-color: #ca4a1f;
    color: #fff;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
    z-index: 26;
}
#menu-top .sb-alert-bubble{
	margin: 6px 0 0 6px;
	background: #333;
}
/* SW demo */
[id^=sb-wall].sb-wall .sbsw-author-name {
    padding: 3px 30px 3px 0;
}
.product-demo .social-wall-demo-notice{
	background: rgba(255,255,255,0.5);
    padding: 15px 20px;
    margin: -15px 0 30px 0;
}
.twitter-demo-feed-two [id^=sb-wall].sb-wall .sbsw-tc-content{
	color: #aaa;
}
.twitter-demo-feed-two [id^=sb-wall].sb-wall .sbsw-identity a:hover,
.twitter-demo-feed-two [id^=sb-wall].sb-wall .sbsw-identity a:focus,
.twitter-demo-feed-two .sbsw-item-bottom-content a:hover,
.twitter-demo-feed-two .sbsw-item-bottom-content a:hover{
	color: white;
}

/* Account updates page */
/* Social Wall landing page */
.sw-landing-page{
	padding: 20px 0;
}
.sw-landing-page .cff-sw-icons{
	width: 100%;
	text-align: center;
}
.sw-landing-page .cff-sw-icons span{
	display: inline-block;
	width: 32px;
	margin: 0 7px;
	position: relative;
	top: -2px;
}
.sw-landing-page .cff-sw-icons .cff-sb-plus{
	width: 12px;
    height: 12px;
    position: relative;
    top: -12px;
    opacity: 0.9;
}
.sw-landing-page h1,
.sw-landing-page h2{
	width: 100%;
	text-align: center;
}
.sw-landing-page h1{
	font-size: 32px;
	margin: 20px 0 0 0;
	line-height: 1.3;
}
.sw-landing-page h2{
	font-size: 24px;
	font-weight: 100;
	line-height: 1.2;
    margin: 15px 0 20px 0;
}
.sw-landing-page .cff-sw-info{
	width: 110%;
    margin: 40px -5%;
    padding: 50px 50px;
    clear: both;
    overflow: hidden;
    box-sizing: border-box;
    background: #f6f2ef;
    border-radius: 5px;
}
.sw-landing-page .cff-sw-features{
	float: left;
	width: 28%;
	margin-right: 3%;
	padding: 0;
}
.sw-landing-page .cff-sw-screenshot{
	position: relative;
	width: 69%;
	float: left;
	box-sizing: border-box;
    border: 5px solid #fff;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.05);
}
.sw-landing-page .cff-sw-features p{
	margin: 25px 0;
	padding: 0;
	font-size: 13px;
	line-height: 1.5;
}
.sw-landing-page .cff-sw-features p:first-child{
	margin-top: 0;
}
.sw-landing-page .cff-sw-features p:last-child{
	margin-bottom: 0;
}
.sw-landing-page .cff-sw-features span{
	display: block;
	font-size: 18px;
	font-weight: bold;
}
.sw-landing-page .cta {
	display: inline-block;
    margin: 20px 0 0 5px;
    padding: 16px 40px 14px 40px;
    font-size: 20px;
}
.sw-landing-page .cff-sw-screenshot img{
	width: 100%;
	display: block;
}
.sw-landing-page .cff-sw-screenshot .cta{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -37px;
    margin-left: -80px;
    padding: 15px 30px 17px 30px;
    color: #333;
    text-decoration: none;
    background: rgba(255,255,255,0.95);
    border-radius: 3px;
    border: 0;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}
.sw-landing-page .cff-sw-screenshot:hover .cta,
.sw-landing-page .cff-sw-screenshot:focus .cta{
	background: #e34717;
	color: #fff;
	box-shadow: 0;
}
.sw-landing-page .cff-sw-footer-cta{
	width: 69%;
    text-align: center;
    float: right;
    clear: none;
    padding: 30px 0 0 0;
}
.sw-landing-page .cff-sw-footer-cta a{
	font-size: 18px;
	display: inline-block;
	text-decoration: none;
	line-height: 20px;
	font-weight: normal;
	padding: 10px 0 0 0;
}
.sw-landing-page .cff-sw-footer-cta span{
    width: 25px;
    height: 25px;
    display: inline-block;
    margin: 0 10px 0 0;
    position: relative;
    top: 0;
}
.sw-landing-page .cff-sw-footer-cta span .emoji{
	width: 30px !important;
	height: 30px !important;
}

@media all and (max-width: 1000px){
	.sw-landing-page .cff-sw-info{
		width: 100%;
	    margin: 40px 0;
	    padding: 25px 30px;
	}
	.sw-landing-page .cff-sw-features{
		width: 100%;
		padding: 10px 0;
		margin: 0;
	}
	.sw-landing-page .cff-sw-screenshot{
		width: 100%;
		padding: 0;
		margin-top: 25px;
		height: auto;
		background: none;
	}
	.sw-landing-page .cff-sw-screenshot img{
		display: block;
	}
	.sw-landing-page .cff-sw-features .cta {
	    width: 100%;
	    box-sizing: border-box;
	    text-align: center;
	    margin: 20px 0;
	}
	.sw-landing-page .cff-sw-footer-cta{
		width: 100%;
    	padding: 30px 0 15px 0;
	}
}

/* Blog author/date */
.sb-blog-author{
    padding: 20px 0;
    font-size: 13px;
}
.blog-share-icons{
    padding: 5px 0 10px 0;
    font-size: 0;
}
.blog-share-icons a{
    display: inline-block;
    padding: 8px 32px;
    background: #3B5998;
    color: white;
    text-align: center;
    box-sizing: border-box;
    border-radius: 3px 0 0 3px;
}
.blog-share-icons a:hover,
.blog-share-icons a:focus{
    background: #2c4986;
}
.blog-share-icons .twitter{
    background: #41a9e8;
    border-radius: 0;
}
.blog-share-icons .twitter:hover,
.blog-share-icons .twitter:focus{
    background: #2e9adc;
}
.blog-share-icons .linkedin{
    background: #007BB6;
    border-radius: 0 3px 3px 0;
}
.blog-share-icons .linkedin:hover,
.blog-share-icons .linkedin:focus{
    background: #036fa2;
}
.blog-share-icons svg{
    width: 18px;
    height: 18px;
}
.blog-share-icons path{
    fill: white;
}
.screenreader{
    display: block;
    position: absolute;
    left: -9999px;
    text-indent: -9999px;
}

/* Blog posts comments and CTA */
#free-plugin-install.social-wall h3 {
    font-size: 24px;
    width: 90%;
    margin: 0 5%;
    line-height: 1.3;
}
#free-plugin-install{
    clear: both;
    padding: 30px;
    background: #f6f2ef;
    border: 1px solid #ece7e5;
    text-align: center;
    margin-bottom: 10px;
}
#free-plugin-install.social-wall .btn{
    float: none;
    padding: 15px 25px;
    font-size: 16px;
    margin: 0;
    display: inline-block;
}
#free-plugin-install h3{
    font-size: 22px;
    padding-bottom: 20px;
    line-height: 1.2;
}
#free-plugin-install p{
    display: block;
    padding-bottom: 20px;
    line-height: 1.3;
}
#free-plugin-install input[type=text]{
    width: 54%;
    box-sizing: border-box;
    background: none;
    border: 0;
    text-align: center;
}
#free-plugin-install button{
    width: 45%;
    box-sizing: border-box;
    background: #e34717;
    color: white;
    border: 0;
    font-weight: bold;
    padding: 8px;
}
#free-plugin-install button:hover,
#free-plugin-install button:focus{
    background: #e89a2e;
}
.inline-postcta-form{
    padding: 5px;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
}

.blog-page #comments{
    padding: 30px 0;
}
.blog-page #respond{
    margin-top: 0;
}
.blog-page #respond form{
    margin-top: 10px;
}
.blog-page .comments-title {
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 10px;
}
#primary-blog-page.blog-page .comment-notes{
    display: none;
}
.blog-page #respond #reply-title{
    display: none;
}
.blog-page #respond form p.logged-in-as{
    margin-bottom: 10px;
}
.blog-page .comments-note{
    line-height: 1.4;
    font-size: 13px;
    padding-bottom: 0;
}
.blog-page .comments-area article header cite,
.blog-page .comments-area article header time {
    margin: 0;
}
.blog-page .comment{
    border: 0;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 3px;
}
.blog-page .comment-author{
    font-size: 13px;
}
.blog-page .comment-content p{
    margin: 0;
    padding: 15px 0 10px 0;
}
.blog-page .commentlist .children {
    border-left: 2px solid #e9e9e9;
    padding: 0;
    margin-left: 15px;
}
.blog-page .comment-form-comment {
    width: 100%;
}
.blog-page .form-submit .submit{
    background: #e89a2e;
    color: #fff;
    text-decoration: none;
    border: 1px solid #ea8519;
    border-bottom-width: 4px;
    border-radius: 4px;
    line-height: 1.5;
    font-size: 14px;
    padding: 10px 25px;
    font-weight: bold;
}
.blog-page .form-submit .submit:hover,
.blog-page .form-submit .submit:focus{
    background: #e34716;
    border: 1px solid #cf3100;
    border-bottom-width: 4px;
    border-radius: 4px;
}
#primary-blog-page.blog-page .comment-form-url{
    display: none;
}
.blog-page .comment-form-author,
.blog-page .comment-form-email{
    width: 100%;
    margin: 5px 0;
}
.blog-page #respond .comment-form-cookies-consent label{
    display: inline-block;
}
.blog-page #respond form input[type="text"]{
    width: 100%;
}
.blog-page input, .blog-page textarea{
    border: 1px solid #ddd;
    border-radius: 0;
}
.blog-page .comment-awaiting-moderation{
    padding-top: 10px;
    color: red;
}
.blog-page .actual-comments{
    padding-bottom: 40px;
}
.blog-page #respond label{
    display: none;
}
.blog-page #respond form input[type="text"],
.blog-page #respond form textarea{
    font-size: 14px;
}

@media all and (max-width: 480px){
    .social-wall.sw-landing-page .cff-sw-icons span{
        margin: 0 3px;
    }
    #free-plugin-install button {
        width: 100%;
        margin-top: 8px;
    }
    #free-plugin-install input[type=text]{
        width: 100%;
    }
}

.rafflepress-giveaway body{
	margin-top: 10px !important;
}