/*
Theme Name: Fonts Plugin
Theme URI:
Author: DannyCooper
Author URI: https://dannycooper.com/
Description: Custom theme for fontsplugin.com
Version: 10.0.2
License: GNU General Public License v2 or later

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.

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Structure
# Header
# Primary Nav
# Content
	## Posts and Pages
	## Content Navigation
# Sidebar
	## Widgets
# Footer
# Infinite Scroll
# Media
	## Captions
	## Galleries
# Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: .67em 0;
}

mark {
	color: #000;
	background: #ff0;
}

small {
	font-size: 40%;
	vertical-align: super;
}

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

sup {
	top: -.5em;
}

sub {
	bottom: -.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

figcaption {
		text-align: center;
		font-size: 14px;
		color: #6d6d6d;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	font: inherit;
	margin: 0;
	color: inherit;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
	cursor: pointer;
	-webkit-appearance: button;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0;
	border: 0;
}

input {
	line-height: normal;
}

input[type='checkbox'],
input[type='radio'] {
	box-sizing: border-box;
	padding: 0;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
	height: auto;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	margin: 0 2px;
	padding: .35em .625em .75em;
	border: 1px solid #c0c0c0;
}

legend {
	padding: 0;
	border: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

body {
	font-family: 'Source Sans 3', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #2f2f2f;
	overflow-wrap: break-word;
}

nav,
label,
input {
	font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.25;
	margin-top: 0;;
	color: #060606;
}

p {
	margin: 0 0 1.5em;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	font-family: 'Courier 10 Pitch', Courier, monospace;
	font-size: 15px;
	line-height: 1.6;
	overflow: auto;
	max-width: 100%;
	margin-bottom: 1.6em;
	padding: 1.6em;
	background: #eee;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace;
	font-size: 15px;
}

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

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

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background-color: #fff; /* Fallback for when there is no custom background color defined. */
}

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

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

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

.widget ul,
.widget ol {
	margin: 0;
	padding: 0 0 0 1em;
}

.comments-area ol {
	padding: 0;;
	list-style: none;
}

ul {
	list-style: disc;
	margin-top: 0;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

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

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	font-family: sans-serif;
	font-size: 14px;
	width: 100%;
	margin: 0 0 1.5em;
}

table th {
	padding: 10px;
	text-align: left;;
	border-bottom: 2px solid;
}

table td {
	padding: 10px 10px 0;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

label {
	font-size: 14px;
	color: #4c4c4c;
}

button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
	padding: 8px;
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background-color: #e6e6e6;
}

button:hover,
input[type='button']:hover,
input[type='reset']:hover,
input[type='submit']:hover {
	border-color: #ccc #bbb #aaa;
}

button:focus,
input[type='button']:focus,
input[type='reset']:focus,
input[type='submit']:focus,
button:active,
input[type='button']:active,
input[type='reset']:active,
input[type='submit']:active {
	border-color: #aaa #bbb #bbb;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
textarea {
	padding: 8px;
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='range']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='week']:focus,
input[type='time']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='color']:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	position: absolute !important;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
	border: 0;
	clip-path: inset(50%);
}

.screen-reader-text:focus {
	font-size: 1em;
	line-height: normal;
	z-index: 100000;
	top: 5px;
	left: 5px;
	display: block;
	clip: auto !important;
	width: auto;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	color: #444;
	background-color: #eee;
	clip-path: none;
	/* Above WP toolbar. */
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a {
	color: #bc3737;
}

a:hover,
a:focus,
a:active {
	color: #710c0c;
}

a:focus {
	outline: thin dotted;
}

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

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	display: block;
	clear: both;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.navigation:before,
.navigation:after {
	display: table;
	table-layout: fixed;
	content: '';
}

.clear:after,
.entry-content:after,
.wrapper:after,
.navigation:after {
	clear: both;
}

/*--------------------------------------------------------------
# Structure
--------------------------------------------------------------*/

body {
	position: relative;
	min-height: 100%;
}

.container {
	max-width: 640px;
	margin-right: auto;
	margin-left: auto;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.site-header {
	margin-bottom: 50px;
	padding: 2rem 0;
	color: white;
	background: #bd3737;
}

.site-title {
	margin: 0;
}

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

.site-branding {
	float: left;
}

.header__logo {
	max-width: 175px;;
	vertical-align: bottom;
}

/*--------------------------------------------------------------
# Primary Nav
--------------------------------------------------------------*/

.menu-1 {
	font-size: 14px;
	line-height: 1;
	display: block;
	float: right;
}

.menu-1 ul {
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.menu-1 li {
	position: relative;
	float: left;
}

.menu-1 a {
	display: block;
	padding: 13px 0 0 24px;
	text-decoration: none;
	opacity: .85;
	color: #fff;
}

.menu-1 a:hover {
	opacity: 1;
	color: #fff;
}

/* Dropdown Menu Support */
.menu-1 ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	margin: 10px 0 0 0;
	padding: 0;
	list-style: none;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 999;
}

.menu-1 li:hover > ul,
.menu-1 li.focus > ul {
	opacity: 1;
	visibility: visible;
}

.menu-1 ul ul li {
	float: none;
	position: relative;
}

.menu-1 ul ul a {
	padding: 12px 20px;
	color: #2f2f2f;
	opacity: 1;
	white-space: nowrap;
}

.menu-1 ul ul a:hover {
	background: #f5f5f5;
	color: #bd3737;
}

/* Third level dropdowns */
.menu-1 ul ul ul {
	top: 0;
	left: 100%;
	margin-left: 0;
}

/* Visual indicator for parent menu items */
.menu-1 .menu-item-has-children > a:after {
	content: '▼';
	font-size: 10px;
	margin-left: 5px;
	opacity: 0.7;
	vertical-align: middle;
}

.menu-1 ul ul .menu-item-has-children > a:after {
	content: '▶';
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

.post-thumbnail {
	margin-bottom: 32px;
}

.entry-header {
	margin-bottom: 32px;
}

.entry-title {
	font-size: 30px;
	margin: 0;
}

.entry-title a {
	text-decoration: none;
	color: #060606;
}

.entry-title a:hover {
	color: #3767b3;
}

.more-link {
	text-decoration: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
	font-size: 14px;
	padding: 25px 0;
	border-top: 1px solid #eaeaea;
}

.footer {
	padding: 50px 0;
	color: white;
	background: #bd3737;
}

.footer {
	text-align: center;
}

.footer__logo {
	max-width: 175px;
	padding-bottom: 14px;
}

.footer__left {
	opacity: .75;
	color: white;
}

.footer__right {
	color: white;
}

.footer__links {
	line-height: 1.6;
	padding: 0;
	list-style: none;
}

.footer__links li {
	display: inline-block;
}

.footer__link {
	padding: 10px;
	color: white;
}

.footer__link:hover {
	text-decoration: none;;
	color: white;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

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

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
	max-width: 100%;
	margin-bottom: 1.5em;
}

.wp-caption img[class*='wp-image-'] {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.wp-caption .wp-caption-text {
	font-size: 14px;;
	margin: .8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
	margin-bottom: 1.5em;
}

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

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

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

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

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

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

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

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

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

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Archives Template
--------------------------------------------------------------*/

.archives__heading {
	font-size: 24px;
	margin-top: 0;
	margin-bottom: 25px;
}

.archives__list {
	padding: 0;;
	list-style: none;
}

.archives__list li {
	font-size: 14px;
	padding: 5px 0;
}

.archives__list li a {
	display: inline-block;
	max-width: 50%;
	text-decoration: none;
}

.archives__list li span {
	display: inline-block;
	float: right;
	max-width: 25%;
	text-align: right;
	color: #a9a9a9;
}

#edd_login_form {
	padding: 50px 50px 0;
	border: 1px solid #e8e8e8;
	background: #f9f9f9;
	width: 460px;
	margin: 0 auto;
}

#edd_login_form .edd-input {
	display: block;
	width: 100%;
}

#edd_login_form p {
	margin-bottom: 1rem;
}

#edd_register_form {
	padding: 50px 50px 0;
	border: 1px solid #e8e8e8;
	background: #f9f9f9;
	width: 460px;
	margin: 0 auto;
}

#edd_register_form .edd-input {
	display: block;
	width: 100%;
}

#edd_register_form p {
	margin-bottom: 1rem;
}

.logged-in .edd-logged-in {
	display: none;
}

.edd-submit.button,
.edd-submit.button.gray,
.edd-submit.button:visited {
	text-decoration: none;
}
.wp-block-button .wp-block-button__link {
	font-size: 16px;
	font-weight: bold;
	padding: 16px 24px;
	color: #fff;
	border-radius: 3px;
	background: #bd3737;
}

/*--------------------------------------------------------------
# Pro Upgrade Page https://fontsplugin.com/pro-upgrade/
--------------------------------------------------------------*/

.upgrade-text__heading {
	font-size: 18px;
}

.upgrade-text__heading {
	font-size: 18px;
}

.upgrade-text {
	float: left;
	width: 50%;
	margin-top: 50px;
	margin-left: 5%;
}

.upgrade-text__desc {
	font-size: 15px;
	color: #565656;
}

.upgrade-feature {
	margin-bottom: 50px;
	padding-top: 50px;
	border-top: 1px solid #eaeaea;
}

.upgrade-image {
	float: left;
	width: 285px;
	border: 1px solid #e8e8e8;
	border-radius: 5px;
}

.upgrade-image a {
	cursor: zoom-in;
}

.upgrade-image img {
	vertical-align: bottom;
	border-radius: 5px;
}

.upgrade-feature.right .upgrade-image {
	float: right;
}
.upgrade-feature.right .upgrade-text {
	float: left;
	margin-right: 5%;
	margin-left: 0;
}

.upgrade-feature.last {
	margin-bottom: 0;
}

.intro {
	margin-bottom: 50px;
	text-align: center;
}

.intro__heading {
	font-family: 'Source Sans 3', Georgia, serif;
	font-size: 35px;
	margin-bottom: 0;
}

.intro__heading--white {
	color: #fff
}

.intro__text--white {
	color: #fff
}

/*--------------------------------------------------------------
# Pricing Table
--------------------------------------------------------------*/

.pricing {
	width: 900px;
	margin: 100px auto 0
}

.pricing-table {
	float: left;
	width: 300px;
	margin-right: -1px;
	padding: 50px;
	text-align: center;
	border: 1px solid #e3e3e3;
	border-radius: 3px;
	background: white;
}

.pricing-table .normal-price {
	position: relative;
}

.pricing-table .normal-price:after {
	position: absolute;
	top: 55%;
	left: 0;
	width: 100%;
	height: 1px;
	content: ' ';
	border-bottom: 1px solid red;
}

.pricing-table__price {
	font-size: 72px;
	font-weight: 300;
	line-height: 1;;
	display: block;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #efefef;
}

.pricing-table__features {
	margin: 0;
	margin-bottom: 32px;
	padding: 0;
	list-style: none;
}

.pricing-table__feature {
	margin-bottom: 4px;
}

.pricing-table__button {
	display: inline-block;
	padding: 8px 24px;
	text-decoration: none;
	color: white;
	border-radius: 3px;
	background: #bd3737;
}

.pricing-table__button:hover {
	transition: all .2s;
	color: white;;
	background: #b13434;
}

/*--------------------------------------------------------------
# Sales Page Guarantee
--------------------------------------------------------------*/

.guarantee {
	width: 900px;
	padding: 50px;
	border: 1px solid #dfeb00;
	background: #fdffcf;
	margin-top: 50px;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
}

.guarantee__image {
	display: inline-block;
	width: 15%;
}

.guarantee__heading {
	font-size: 22px;
	margin-top: 12px;
}

.guarantee__content {
	display: inline-block;
	width: 75%;
	padding-left: 7.5%;
	vertical-align: top;
}

.guarantee__text {
	font-size: 18px;
	margin-bottom: 0;
	opacity: .7;
}

.page .entry-title {
	text-align: center;
}

.underline {
	font-weight: bold;
	border-bottom: 1px solid;
}

.postid-373 .entry-title {
	font-size: 25px;
}

/*--------------------------------------------------------------
# Ad network for blog posts
--------------------------------------------------------------*/

#carbonads {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	display: block;
	overflow: hidden;
	max-width: 130px;
	text-align: center;
}

#carbonads a {
	text-decoration: none;
	color: inherit;
}

#carbonads a:hover {
	color: inherit;
}

#carbonads span {
	display: block;
	overflow: hidden;
}

.carbon-img {
	line-height: 1;
	display: block;
	margin: 0 auto 8px;
}

.carbon-text {
	display: block;
	margin-bottom: 8px;
}

.carbon-poweredby {
	font-size: 10px;
	line-height: 1;
	display: block;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/*--------------------------------------------------------------
# Search Page
--------------------------------------------------------------*/

.search-results .entry-header {
	margin-bottom: 16px;
}

.search-results .entry-title {
	font-size: 24px;
}

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

/*--------------------------------------------------------------
# EDD Custom Checkout Page
--------------------------------------------------------------*/

body.edd-checkout {
	background: #bc3737;
}

.edd-checkout .site-header {
	margin-bottom: 0;
}

.edd-checkout .entry-header {
	display: none;
}

.edd-checkout .footer {
	display: none;
}

#edd_checkout_form_wrap input[type=email],
#edd_checkout_form_wrap input[type=password],
#edd_checkout_form_wrap input[type=tel],
#edd_checkout_form_wrap input[type=text],
#edd_checkout_form_wrap textarea {
	width: 100%;
	padding: 8px;
}
#edd-first-name-wrap {
	float: left;
	width: 48%;
	margin-right: 4%;
	margin-bottom: 0;
}
#edd-last-name-wrap {
	float: left;
	width: 48%;
}

.edd-checkout #edd_checkout_form_wrap legend {
	font-size: 1.1rem;
	width: 100%;
	padding-top: 0;
	padding-bottom: 1.5rem;
	padding-left: 0;
	background: none;
}

#edd_checkout_form_wrap fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

#edd_checkout_form_wrap fieldset#edd_cc_fields {
	margin-top: 3rem;;
	border: 0;
	background: none;
}

.edd-checkout #edd_secure_site_wrapper {
	font-size: 14px;
	font-weight: 500;
	padding: 1rem 0;
	color: green;
}

#edd_payment_mode_select label {
	position: relative;
	float: left;
	clear: none;
	overflow: hidden;
	box-sizing: padding-box;
	width: 48%;
	margin-right: 2% !important;
	margin-bottom: 1rem;
	padding: 1.62rem;
	cursor: pointer;
	transition: border-color 85ms ease-in-out;
	text-align: center;;
	border: 2px solid #d4d5d6;
	border-radius: 5px;
	background-color: #f0f2f3;
}

#edd-payment-mode-wrap label#edd-gateway-option-stripe:before {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	margin-bottom: -4px;
	content: '';
	background: url('https://fontsplugin.com/images/credit-card.svg') no-repeat;
	background-position: bottom;
	background-size: 100%;
}

#edd-payment-mode-wrap label#edd-gateway-option-paypal_commerce:before {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	margin-bottom: -4px;
	content: '';
	background: url('https://fontsplugin.com/images/paypal.svg') no-repeat;
	background-position: bottom;
	background-size: 100%;
}

#edd_checkout_form_wrap .edd-payment-icons {
	margin-bottom: 32px;
}

#edd_checkout_form_wrap legend {
	z-index: 10000;
	display: block;
	width: auto;
	margin: 0;;
	padding: 0 10px;
	background: white;
}

#edd-gateway-option-stripe {
	margin-right: 0 !important;
}

#edd_payment_mode_select .edd-gateway-option-selected {
	color: green;
	border-width: 2px;
	border-color: #37bc4e;
	background: white;
}

.edd-gateway-option input[type=radio] {
	display: none;
}

#edd_checkout_form_wrap fieldset {
	margin-bottom: 40px !important;
}

#edd_cc_fields {
	margin-top: 0 !important;
}

#edd_checkout_cart {
	display: block;
	margin-bottom: 0;;
	padding: 50px 50px 50px 125px;
	background: #f9f9f9 url('https://fontsplugin.com/wp-content/uploads/fonts-plugin-logo.jpg') no-repeat;
	background-position: center left 50px;
	background-size: 65px;
}

#edd_purchase_form {
	padding: 50px;
	background: #fff;
}

.edd_next {
	display: block;
	padding: 50px 50px 26px 50px;
	background: #f9f9f9;
}

fieldset#edd_purchase_submit {
	margin-bottom: 0;
}

.edd_checkout_cart_item_title {
	font-weight: bold;
}

.edd_cart_item_price {
	display: block;
	width: 100%;
	padding-top: 0;
	text-align: left;
}

#edd_final_total_wrap,
.edd_cart_header_row,
.edd_cart_actions,
.edd_cart_item_price,
.edd_cart_discount_row {
	display: none;
}

fieldset#edd_purchase_submit {
	margin-bottom: 0 !important;
}

fieldset#edd_mailchimp {
	margin-bottom: 20px !important;
}

#edd_checkout_cart td {
	border: 0;
	background: none;
}

#edd_checkout_cart .edd_cart_item_name {
	display: block;
	width: 100%;
	padding-bottom: 0;
}

.edd_clearfix:after {
	display: none;
}

.edd-checkout .discount-applied {
	text-align: center;
    padding: 1.5rem;
    background: #79d383;
    color: #255327;
    font-weight: 500;
}

#edd_checkout_form_wrap label {
	font-size: 14px;
	font-weight: 500;
	display: block;
}
#edd_checkout_cart th.edd_cart_total {
	font-weight: normal;
	padding-top: 0;
	text-align: left;
	border: 0;
}

#edd_checkout_cart .crossout {
	position: relative
}

#edd_checkout_cart .crossout:after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    content: ' ';
    border-bottom: 1px solid red;
}

/* remove the discount field from checkout page */
#edd_discount_code {
	display: none;
}

.edd-description {
	position: absolute;
	left: -9999px;
	overflow: hidden;
}

.powering {
	font-size: 14px;
	float: right;
	margin-top: 10px;
	margin-bottom: 0;
	opacity: .75;
}

/*--------------------------------------------------------------
# Blog Posts
--------------------------------------------------------------*/

.post-thumbnail img {
	border-radius: 5px;
	box-shadow: 0 4px 10px 0 #00000a0d
}

.single-post .entry-header {
	margin-bottom: 18px;
}

.single-post .content-area {
	font-family: 'Source Serif 4';
	font-size: 18px;
	color: #1d1d1d;
}

.single h1,
.single h2,
.single h3,
.single h4,
.single h5 {
	font-family: 'Source Sans 3';
}

.single-post h3 {
	margin-top: 2em;
}

.posted-on {
	font-size: 14px;
	color: #969696;
}

pre {
	font-family: 'courier 10 pitch',Courier,monospace;
	font-size: 14px;
	line-height: 1.6;
	overflow: auto;
	max-width: 100%;
	margin-bottom: 1.6em;
	padding: 1.6em;
	border-left: 2px solid #f5f3df;
	background: #fefff0;
}

blockquote {
	font-style: italic;;
	margin: 0 1.5em 1.5em;
	color: #848484;
}

blockquote p {
	margin-bottom: .5em;
}

cite {
	font-size: 13px;
	font-style: normal;
}

hr {
	height: 1px;
	margin: 50px 0;
	margin-bottom: 1.5em;
	text-align: left;
	border: 0;
	background-color: #efefef;
}

.note {
	padding: 20px 30px;
	color: #054569;
	border-left: 2px solid #cfe7f5;
	background-color: #f1faff;
	font-size: 16px;
}

.high-difficulty,
.medium-difficulty,
.low-difficulty {
	position: relative
}
.high-difficulty:after {
  content: 'High Difficulty';
  background: #dc3636;
  border-radius: 3px;
  padding: 4px;
  color: #f2f2f2;
	font-size: 14px;
	margin-left: 10px
}

.medium-difficulty:after {
  content: 'Medium Difficulty';
  background: #e87621;
  border-radius: 3px;
  padding: 4px;
  color: #f2f2f2;
	font-size: 14px;
	margin-left: 10px
}

.low-difficulty:after {
  content: 'Low Difficulty';
  background: #099809;
  border-radius: 3px;
  padding: 4px;
  color: #f2f2f2;
	font-size: 14px;
	margin-left: 10px
}

.page .wp-block-button a {
	display: inline-block;
	margin-bottom: 20px;
	text-decoration: none;
}

.has-text-align-center {
	text-align: center
}

/*--------------------------------------------------------------
# Table of Contents
--------------------------------------------------------------*/

.gutentoc {
    padding: 1rem;
	font-family: 'Source Sans 3';
}

.gutentoc-toc__list-wrap > .gutentoc-toc__list {
	margin-left: 0 !important;
}

.gutentoc-toc-title-wrap {
	margin-bottom: .5rem
}

/*--------------------------------------------------------------
# Comparison Table
--------------------------------------------------------------*/

.page-id-1516 .comparison {
  margin-right: -130px;
  margin-left: -130px;
}
.comparison__header .col-xs-4 {
	min-height: 117px
}

.comparison__header .first {
    border: 0;
}

.comparison__intro {
max-width: 640px;
    margin: 0 auto 40px;
}

.comparison-table__title {
margin-bottom: 14px;
}

.col-xs-4 {
	width: 30%;
	float: left;
	min-height: 1px;
	padding: 1rem;
	border-left: 1px solid #ebebeb;
	border-top: 1px solid #ebebeb;
	text-align: center
}
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block; }

/* Tooltip text */
.tooltip__text {
  visibility: hidden;
  opacity: 0;
  width: 240px;
  background-color: #383c44;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  padding: 20px;
  border-radius: 6px;
  font-weight: 400;
  position: absolute;
  z-index: 1000;
  transition: all 0.6s cubic-bezier(0.26, 0.42, 0, 0.96);
  transition-delay: 0.2s;
  transform: translateY(-50%) translateX(20px);
  left: calc(100%); }
  .tooltip__text a {
    color: inherit;
    -webkit-text-decoration-color: #fff;
            text-decoration-color: #fff; }

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover {
  overflow: initial; }

.tooltip:hover .tooltip__text {
  visibility: visible;
  transform: translateY(-50%) translateX(0px);
  opacity: 1;
}

.icon-ok, ul.list--checkmark li:before {
  background-image: url(https://fontsplugin.com/wp-content/uploads/checkmark.png);
}

.icon-cancel, .modal__close {
  background-image: url(https://fontsplugin.com/wp-content/uploads/cancel.png);
}

.icon-question-circle {
  background-image: url(https://fontsplugin.com/wp-content/uploads/question-circle.png);
}

.comparison-table .icon-question-circle {
	cursor: help;
	opacity: 0.4;
	width: 14px;
	height: 14px;
}

.first {
	font-weight: bold;
	width: 40%
}

.row > div:last-child {
    border-right: 1px solid #ebebeb;
}

.comparison-table div:first-child {
  text-align: left;
}

[class^="icon-"], .icon, ul.list--checkmark li:before, ul.list--docs li:before, .main-menu .menu-arrow, .accordion__title:after, .nav-links .prev:before, .nav-links .next:before, .modal__close, .doc-search:before {
    speak: none;
    display: inline-block;
    vertical-align: middle;
    width: 1rem;
    height: 1rem;
    line-height: 1em;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.comparison-table__button {
    font-size: 16px;
    font-weight: bold;
    padding: 8px 16px;
    color: #fff;
    border-radius: 3px;
    background: #bd3737;
    text-decoration: none;
    display: inline-block;
}

.comparison-table__button:hover {
    color: #fff;
}

.comparison-table--last .col-xs-4 {
border-left: 0; border-right: 0 !important; border-bottom: 0;
}

/*--------------------------------------------------------------
# Homepage
--------------------------------------------------------------*/

.home .container {
	max-width: none;
	margin-left: auto;
	margin-right: auto
}

.home .site-header {
	display: none
}

.home-header {
	text-align: center;
	padding: 200px 0 100px;
	font-size: 26px
}

.highlight {
	background: #fff79a;
	padding: 10px;
	color: #32301e;
}

.home-header__headline {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 72px;
	font-weight: 600;
	margin: 25px 0;
}

.home-header__text {
	max-width: 850px;
	margin: 0 auto;
	margin-bottom: 50px;
	opacity: .7
}

.home-header__cta {
	font-size: 24px
}

.cta__button {
	padding: .66em 1em;
	color: #fff;
	border-radius: 3px;
	background: #bd3737;
	text-decoration: none;
}

.cta__button:hover {
	color: #fff;
}

.demo {
	width: 806px;
	margin: 0 auto;
	max-width: 90%;
	border: 20px solid #1b1b1b;
	border-radius: 20px;
	border-top: 35px solid;
	box-shadow: -2px -2px 0px 0px #ccc;
}

.inner-container {
	width: 1040px;
	margin: 0 auto
}

.wave-bottom svg {
	display: inline-block;
	position: absolute;
	bottom: -49px;
	left: 0;
	height: 50px;
	transform: translate(0,-100);
}

.wave-top svg {
	display: inline-block;
	position: absolute;
	bottom: -49px;
	left: 0;
	height: 50px;
	transform: translate(0,-100);
	top: -49px;
	bottom: auto;
	transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.home .pricing {
	margin-top: 0;
	padding: 150px 0 0;
}

.home .intro__heading {
	font-family: 'Source Serif 4', Georgia, serif;
  font-size: 48px;
  margin-bottom: 13px;
  font-weight: 600;
}

.home .intro__text {
	font-size: 26px;
	margin: 0;
	opacity: .7;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features {
	background: #bd3737;
	padding: 50px 0;
	position: relative;
	margin-top: -50px;
}

.features .intro {
	margin-bottom: 75px
}

.features-list {
  max-width: 1040px;
  margin: 0 auto;
}

.feature {
	width: 300px;
	float: left;
	text-align: center;
	margin-right: 70px;
	margin-bottom: 75px;
}

.feature.last {
	margin-right: 0;
}

.feature__icon {
	margin-bottom: 16px;
	color: #ffffff;
}

.feature__icon img {
	height:44px;
}

.feature__heading {
	font-size: 22px;
	margin: 0 0 18px 0;
	color: #ffffff;
}

.feature__text {
	font-size: 18px;
	color: #ffffff;
	opacity: .9;
	margin-bottom: 0
}

/*--------------------------------------------------------------
# FAQs
--------------------------------------------------------------*/

.faqs {
	margin-top: 100px
}

.faqs__questions {
	margin-bottom: 50px;
}

.question {
	width: 47.5%;
	float: left;
	margin-right: 5%;
	margin-bottom: 50px;
}

.question.last {
	margin-right: 0;
}

.question__title {
	font-size: 22px;
	margin-bottom: 1em;
}

.question__text {
	font-size: 18px;
	margin: 0;
	opacity: .8
}

/*--------------------------------------------------------------
# Affiliate WP
--------------------------------------------------------------*/

.affwp-form fieldset {
	padding: 0;
}
.affwp-form legend {
	font-weight: bold;
}

/*--------------------------------------------------------------
# Helper Classes
--------------------------------------------------------------*/


.wide {
	margin-right: -130px;
	margin-left: -130px;
}
.gradient {
  background: linear-gradient(rgba(246,246,246,1) 0%, rgba(255,255,255,1) 50%);
}

.underline {
	border-bottom: 1px solid;
	font-weight: bold
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media screen and (max-width: 720px) {
	.container {
		max-width: 90%;
	}
	.upgrade-image {
		float: none;
		width: 100%;
	}
	.upgrade-text {
		float: none;
		width: 100%;
		margin-left: 0;
		text-align: center;
	}
}

@media only screen and (max-width: 720px) {

	.comparison .col-xs-4 {
    width: 20%;
    min-height: auto;
    }

	 .comparison .first {
      font-weight: bold;
      width: 60%;
  }

	.page .comparison {
    margin-left: 0;
    margin-right: 0
    }

	.comparison__header .col-xs-4 {
    min-height: auto;
	}

    .comparison__button {
    display: none !important
    }

	.comparison-table__title {
		margin-bottom: 0
	}

	.edd-checkout .container {
		max-width: 100%;
	}
	.powering {
		width: 100%;
		padding: 12px 0;
	}
	#edd_checkout_form_wrap #edd-payment-mode-wrap label {
		width: 100%;
		margin-bottom: 12px;
	}
}

@media only screen and (max-width: 640px) {

	.header {
		font-size: 18px;
		padding: 50px 0;
	}

	.home-header__headline {
    font-size: 48px;
	}

	.highlight {
		font-size: 18px;
	}

	.cta__button {
		display: block;
		max-width: 200px;
		margin: 0 auto 10px;
		margin-bottom: 10px;
	}
	.features {
		padding: 50px 0;
	}

	.pricing {
		padding: 100px 0 0;
	}
	.guarantee {
		width: auto;;
		margin: 0 0 50px 0;
	}
	.guarantee__image {
		display: block;
		width: 128px;
		margin-bottom: 10px;
	}
	.guarantee__content {
		width: 100%;
		padding: 0;
	}
	.post-thumbnail {
		margin-top: 25px;
		margin-bottom: 25px;
	}
	.site-header,
	.single-post .site-header {
		padding: 25px 25px 5px 25px;
		text-align: center;
	}
	.site-branding,
	.menu-1 {
		float: none;
	}
	.menu {
		display: inline-block;
	}
	.menu-1 a {
		padding: 20px 10px;
	}
	.powering {
		margin-top: 0;
		margin-bottom: 15px;
	}
}


@media only screen and (max-width: 1040px) {
	.inner-container {
		width: 90%;
	}
	.feature {
		width: 100%;
		margin-right: 0
	}
	.question {
		width: 100%;
		margin-right: 0
	}
	.wide {
		width: 100%;
		margin-left: 0;
		margin-right: 0
	}

	.comparison-table__button {
		display: none
	}
}
@media only screen and (max-width: 800px) {
	.page .site-branding,
	.page .powering {
		float: none;
		text-align: center;
	}

	.page .site-branding {
		margin-bottom: 15px;
	}
	.home .pricing {
		padding-top: 100px;
	}
	.page .pricing {
		width: auto;
		margin-top: 0;
		margin-right: 0;
		margin-left: 0;
		padding-top: 50px;
	}
	.page .pricing {
		width: 100%;
	}
	.page .pricing-table {
		float: none;;
		width: 100%;
		max-width: 500px;
		margin-bottom: 50px;
		margin-left: auto;
		margin-right: auto;
	}

}
