/*
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;
	padding: 1.714285714rem 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;
}

/* 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: 12px;
	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;
}
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.template-front-page .site-content,
	body.single-attachment .site-content,
	body.full-width .site-content, .site-content.full-width  {
		width: 100%;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
		color: #fff;
		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: #edb72f;

	/*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: #e89a2e;
}
.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: #edb72f;
}
.btn.big.light:hover, .btn.big.light:focus{
	background: #e89a2e;
}

.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;
}
.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: 20px 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: -24px 0;
}
.banner img{
	margin-left: -40px;
}
.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{
	width: 30%;
	float: left;
	margin: 0;
	margin-left: 5%;
}
.features .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;
}
.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{
	background: #ccc;
	/*width: 100%;
	height: 200px;*/
	margin: 0 0 25px 0;
	/*box-shadow: 0 0 0 15px rgba(0, 0, 0, 0.05);*/
	box-shadow: 0 0 0 15px #edeff4;
	/*border: 1px solid #ddd;*/
}
.new-features-page .feature iframe{
	box-shadow: 0 0 0 15px #edeff4;
}

.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: 60px;
}
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;
}
.twitter-tweet{
	width: 49% !important;
	height: 220px !important;
	float: right;
	margin-top: 0 !important;
	background: #fff;
}
.first .twitter-tweet{
	float: left;
}
.tweet.first{
	margin-left: 8px;
}
.tweet-tall .twitter-tweet{
	height: 350px !important;
}
.home-new .tweet-tall .twitter-tweet{
	height: 290px !important;
}

/* 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{
	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 span{
	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 .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;
}

.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;
}*/


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


/* 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{
	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 #e34f0e;
	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);
}
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;
}


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

/* 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: #e89a2e;
	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: #282828;
}
.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 */
#loginform{
	float: left;
	width: 96%;
	margin: -24px 0 40px 0;
	border-radius: 0 0 5px 5px;
	padding: 20px 2%;
}
#loginform p,
#loginform .login-username,
#loginform .login-password{
	float: left;
	margin-right: 10px;
}
#loginform .login-remember{
	padding: 5px;
	font-size: 12px;
}
#loginform .login-remember input{
	position: relative;
	top: 2px;
}

/* 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;
	color: #fff;
	width: 100%;
	padding: 20px 0;
	font-size: 24px;
	font-weight: bold;
	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 */
.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;
}

/* 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%;
}


/* 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;
}


/* 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;
}

/* Lost password */
.sb-lost-password{
	font-size: 12px;
	margin: 5px 0 0 10px;
	
	display: -moz-inline-stack;
	display: inline-block;
	vertical-align: top;
	zoom: 1;
	*display: inline;
}


#edd_user_history td {
	line-height: 1.5;
}


/* New home */
.home-new{
	margin-top: 0;
}
.small-banner.home-banner{
	background: #282828;
	padding: 40px 0;
}
.home-banner .inner{
	overflow: hidden;
}
.home-banner .slide{
	width: 100%;
	float:left;
}
.home-banner .slide.one{
	/*display: none;*/
}
.home-banner .slide.two,
.home-banner .slide.three{
	display: none;
}

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

/* 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 - plugins list */
.home-new .product-summary{
	width: 100%;
	float: left;
	clear: none;
	margin: 40px 0 0 0;
	padding: 20px 0 0 0;
	border-top: 2px solid #f4edea;
	background: none;
	line-height: 1.5;
}
.home-new .product-summary:first-child{
	padding: 0;
	margin: 0;
	border: none;
}
.home-new .product-summary.instagram{
	margin-right: 0;
}
.home-new .product-summary .youtube-video{
	margin-top: 20px;
	max-width: 460px;
	float: right;
}
.home-new .product-info{
	float: left;
	width: 50%;
}
.home-new .product-summary h2 img{
	width: 50px;
	height: 50px;
	margin: 10px 10px -15px 0;
}

/* 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: #f4edea;
}
.home-new .twitter-tweet {
	width: 30% !important;
	height: 280px;
	/*min-height: 280px;*/
	float: left;
	margin-right: 4% !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: #fbf9f8;
	padding-bottom: 60px;
	border-top: 1px solid #f1ebe8;
	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;
}




/* 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;
	margin: 10px 0 20px 0;
	padding: 10px 20px;

	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
}
footer #cff:hover{
	background: #e66831;
}
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: 20px 0;
	}
	.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;
	}
}


/* 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 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 */
.demo-form .sub-row{
	width: 100%;
	float: left;
	clear: both;
}
.instagram-demo input.radio{
	float: left;
	margin-left: -1px;
}
.instagram-demo input {
	margin-left: 0;
}
.instagram-demo .sub-row label {
	padding: 11px 0 0 0;
	width: 70px;
}


/* 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: 12px;
	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_sl_license_key_expired .tooltip{
	padding: 8px;
	line-height: 1.4;
}

/* 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;
}

.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: 24px 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 {
	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.twitter-feed{
	background: #f4edea;
}
.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;
}

.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: 30%;
	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;
}

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