/* 

    Theme Name: Puttylike
    Description: A custom theme built for Puttylike based on the Genesis framework
    Author: Arwyn Todd
    Author URI: http://www.arwyntodd.com
	
	Version: 1.0

    Template: genesis 
	Template Version: 2.1.2
	License: GPL-2.0+
	License URI: http://www.opensource.org/licenses/gpl-license.php

*/

/* Notes 

	Main Colors:
	  Mint        - 00EBB0
      Maroon      - D55672
      Light mint  - C9FFF1
      
	Fonts:
	  Roboto Slab         - https://fonts.google.com/specimen/Roboto+Slab
      Roboto Light 		  - https://fonts.google.com/specimen/Roboto:3000
      DIN Alternate       - https://www.fontsquirrel.com/fonts/d-din
      

*/

/* # Table of Contents
- Imports
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
		- Contact Form 7
	- Tables
- Structure and Layout
	- Site Containers
	- Column Widths and Positions
	- Column Classes
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended (remove?)
	- Jetpack
	- WPR Menu
- Site Header
	- Title Area
	- Widget Area
- Site Navigation
	- Header Navigation
	- Primary Navigation
	- Secondary Navigation
	- Mobile Navigation
- Content Area
	- Entries
	- Entry Meta
	- Pagination
	- Comments
- Sidebars
- Shortcodes
- Footer Widgets
- Site Footer
- Pages
    - Home Page
- Media Queries
	- Retina Display
	- Max-width: 1200px
	- Max-width: 960px
	- Max-width: 800px
    - Max-width: 500px
*/


/* # Imports
---------------------------------------------------------------------------------------------------- */



/* # HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* ## Baseline Normalize
--------------------------------------------- */
/* normalize.css v3.0.1 | MIT License | git.io/normalize */

html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,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:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#333}small{font-size:80%}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}hr{-moz-box-sizing:content-box;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{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding: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-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

/* ## Box Sizing
--------------------------------------------- */


input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

/* ## Float Clearing
--------------------------------------------- */

.author-box:before,
.clearfix:before,
.entry:before,
.entry-content:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
	content: " ";
	display: table;
}

.author-box:after,
.clearfix:after,
.entry:after,
.entry-content:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}


/* # Defaults
---------------------------------------------------------------------------------------------------- */

/* ## Typographical Elements
--------------------------------------------- */

body {
	background-color: #fff;
	color: #272727;
	font-family: "Roboto";
	font-style: normal;
	font-weight: 300;	
	font-size: 19px;
	line-height: 30px; 
	letter-spacing: .2px;
	margin: 0;
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

::-moz-selection {
	background-color: #00ebb0;
}

::selection {
	background-color: #C9FFF1;
}

/*
a {
	color: #76FFDD;
	text-decoration: underline;
}

a:hover {
	color: #0075A2;
}
*/

/*
 * .content li a,
.site-inner a, 
.author-desc a
*/
a
{ 
	color: #272727;
	text-decoration: none;
	border-bottom: 2px solid #76FFDD;
}

/*
 * .content li a:hover,
.site-inner p a:hover,
.author-desc a:hover
*/
a:hover
{ 
	color: #272727;
}

.pre-header a,
.site-header a,
header a,
.sub-nav a,
.gb-block-post-grid-byline a,
.pagination a,
.site-footer a,
figure a,
.no-underline
{
	border-bottom: none;
}

p {
	margin: 0 0 30px;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	/* list-style-position: inside; */
	margin-bottom: 30px;
	/* text-indent: -18px; */
	margin-left: 40px;
}

b,
strong {
	font-weight: 700;
}

blockquote,
.pullquote,
cite,
em,
i {
	font-style: italic;
}

blockquote,
.pullquote,
.long-pullquote {
	border-left: 4px solid #C9FFF1;
	margin: 40px 60px;
	padding: 0 30px;
}

blockquote
{
	font-family: "Roboto";
}

.wp-block-pullquote blockquote,
.pullquote,
.long-pullquote
{
	font-family: "Vollkorn";
	font-size: 20px;
	line-height: 20px;
}

.wp-block-pullquote, 
.pullquote
{
	padding: 1em 0 !important;
}

.wp-block-pullquote p,
.pullquote p,
.long-pullquote p
{
	margin-bottom: 15px;
	line-height: 48px !important;
}

.wp-block-pullquote cite,
.pullquote cite
.long-pullquote cite
{
	font-family: "Roboto";
	font-size: 16px !important;
}

.long-pullquote
{
	font-size: 22px;
	font-style: normal;
}

.long-pullquote-author,
.long-pullquote cite
{
	font-family: "Roboto";
	font-size: 16px;
	font-style: normal;
}

.comic 
{
	font-family: 'Gaegu', cursive;
	font-size: 140%;
	line-height: 120%;
}


/* ## Headings
--------------------------------------------- */

h1, h2, h3, h4, h5
{
	color: #272727;
	font-family: "Roboto Slab";
	font-style: normal;
	font-weight: 400;
	margin-top: 50px;
}

h1 {
	font-size: 40px;
	line-height: 53px;
	margin: 10px 0 30px;
}

h2 {
	font-size: 35px;
	line-height: 46px;
}

h3 {
	font-size: 29px;
	line-height: 41px;
}

h4 {
	font-size: 25px;
	line-height: 30px;
}

h5 {
	font-size: 19px;
	line-height: 25px;
	color: #000;
}

.mini-top-margin
{
	margin-top: 10px;
}

.gb-pricing-table-title
{
	color: #272727;
	font-family: "Roboto Slab";
	font-style: normal;
	font-weight: 400;
	font-size: 29px;
	line-height: 41px;
}


/* ## Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
}

.wp-block-image figcaption
{
	text-align: center;
	font-size: 12px;
	font-style: italic;
	line-height: 20px;
	/* border-left: 3.5px solid #00EBB0;
	padding-left: 15px; */
}

.wp-block-image .alignleft
{
    margin-right: 30px !important; /* overwriting WordPress default */
    margin-top: 0;
}

.wp-block-image .alignright
{
    margin-left: 30px !important; /* overwriting WordPress default */
    margin-top: 0;
}

.align-left
{
	float: left; 
	margin-right: 30px;
}

.align-right
{
	float: right; 
	margin-left: 30px;
}

.alignwide 
{
	margin-left: -145px;
	margin-right: -145px;
	max-width: 1090px;
}

.alignfull
{
	/* for some reason WP is adding a .wp-block-image class that overwrites these settings so making them all important */
	margin-left: calc(-100vw / 2 + 100% / 2) !important;
	margin-right: calc(-100vw / 2 + 100% / 2) !important;
	max-width: 100vw !important;
}

.alignfull img 
{
	width: 100vw !important;
}

.clear
{
	clear: both;
}

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

.mobile-only
{
	display: none;
}

.featured-content img,
.gallery img {
	width: auto;
}


/* ## Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery-item {
	float: left;
	margin: 0 0 28px;
	text-align: center;
}

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

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

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

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

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

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

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

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

.gallery img {
	border: 1px solid #ddd;
	height: auto;
	padding: 4px;
}

.gallery img:hover {
	border: 1px solid #999;
}

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

input,
select,
textarea {
	background-color: #fff;
	color: #3e4043;
	border: none;	
	font-size: 18px;
	font-weight: 300;
	padding: 8px;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-moz-placeholder {
	color: #333;
	font-weight: 300;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #333;
	font-weight: 300;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.link-button,
.entry-tags a {
	display: inline-block;
	background-color: #c9fff1;
	border: none;
	color: #272727;
	cursor: pointer;
	font-family: "Roboto";
	font-style: normal;
	font-weight: 700;
	font-size: 15px;
	padding: 10px 15px;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	width: auto;
	vertical-align: bottom;
	line-height: 1.1;
}

.link-button.top-space
{
	margin-top: 20px;
}

.footer-widgets .widget_custom_html:first-of-type
{
	width: 65%;
}

.footer-widgets form
{
	margin-top: 60px;
}

.footer-widgets input[type="text"]
{
	display: block;
	width: 50%;
	background: #272727;
	color: #fff;
	font-family: "Din";
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	border-bottom: 1px solid #fff;
	margin-bottom: 20px;
	padding: 5px 0;
}

.footer-widgets input[type="text"]::placeholder
{
	color: #fff;
}

.footer-widgets button,
.footer-widgets input[type="button"],
.footer-widgets input[type="reset"],
.footer-widgets input[type="submit"],
.footer-widgets .button {
	float: right;
	background-color: #272727;
	color: #fff;
	/* border: 1px solid #00ebb0; */
	font-family: "Roboto Slab";
	font-size: 29px;
	line-height: 41px;
	text-transform: none;
	vertical-align: middle;
	padding: 0;
	margin-top: -52px;
	margin-right: 50px;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
.link-button:hover,
.entry-tags a:hover {
	text-decoration: none;
	background: #00EBB0;
}

.entry-content .button:hover {
	color: #fff;
}

.footer-widgets button:hover,
.footer-widgets input:hover[type="button"],
.footer-widgets input:hover[type="reset"],
.footer-widgets input:hover[type="submit"],
.footer-widgets .button:hover {
	color: #00ebb0;
	background: none;
}

.button {
	display: inline-block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

.footer-subscribe-arrow
{
	float: right;
	margin-top: -47px;
}


/* ## Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

td,
th {
	text-align: left;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
}

th {
	font-weight: 400;
}


/* # Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* ## Site Containers
--------------------------------------------- */

.site-container
{
	overflow: hidden;
}

.site-inner,
.wrap {
	margin: 0 auto;
	max-width: 1090px;
}


/* ## Column Widths and Positions
--------------------------------------------- */

/* ### Wrapping div for .content and .sidebar-primary */

.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	width: 980px;
}

.content-sidebar-sidebar .content-sidebar-wrap {
	float: left;
}

.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	float: right;
}

/* ### Content */

.content {
	float: right;
	width: 800px;
}

.content-sidebar .content,
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content {
	float: left;
}

.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content,
.sidebar-sidebar-content .content {
	width: 580px;
}

.full-width-content .content {
	width: 100%;
}

/* ### Primary Sidebar */

.sidebar-primary {
	float: right;
	width: 221px;
}

.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
	float: left;
}

/* ### Secondary Sidebar */

.sidebar-secondary {
	float: left;
	width: 180px;
}

.content-sidebar-sidebar .sidebar-secondary {
	float: right;
}

/* ### Mobile Navigation */
#responsive-menu ul li::before
{
	content: none;
}


/* ## Column Classes
--------------------------------------------- */
/* Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css */

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds,
.col {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths,
.col {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/* # Common Classes
---------------------------------------------------------------------------------------------------- */

/* ## Avatar
--------------------------------------------- */

.avatar {
	float: left;
	border-radius: 50%;
}

.alignleft .avatar,
.author-box .avatar {
	margin-right: 24px;
}

.alignright .avatar {
	margin-left: 24px;
}

.comment .avatar {
	margin: 0 16px 24px -90px;
}

/* ## Genesis
--------------------------------------------- */

.breadcrumb {
	margin-bottom: 20px;
}

.author-box {
	background-color: #fff;
	font-size: 16px;
	margin-bottom: 40px;
	padding: 40px;
}

.generic-tag-archive-title,
.generic-category-archive-title,
.archive-description
{
	max-width: 800px;
	margin: 40px auto 80px;
}

.author-box-title {
	font-size: 16px;
	margin-bottom: 4px;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* ## Search Form
--------------------------------------------- */

.search-form
{
	display: none;
}

.search-form input[type="search"] {
	color: #848484;
	font-family: "DIN";
	font-weight: 700;
	font-size: 15px;
	border: 1px solid #e2e2e2;
}

.genesis-nav-menu .search input[type="submit"],
.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}


/* ## Titles
--------------------------------------------- */

.archive-title {
	font-size: 35px;
	margin-bottom: 30px;
}

.entry-title {
	margin-top: 0;
	margin-bottom: 30px;
	font-weight: 400;
}

.entry-title a
{
	font-family: "Roboto Slab";
	color: #fc7e3c;
}

.sidebar .widget-title a {
	color: #333;
}

.entry-title a:hover {
	color: #25cad2;
}

.widget-title {
	font-size: 21px;
	margin-bottom: 20px;
	text-transform: uppercase;
	text-align: center;
}

.footer-widgets .widget-title {
	color: #fff;
}

/* ## WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
}

img.alignnone,
.alignnone {
	margin-bottom: 12px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
}

.wp-caption-text {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.sticky {
}


/* # Widgets
---------------------------------------------------------------------------------------------------- */

.widget {
	word-wrap: break-word;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: none;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

.sidebar .widget_search
{
	background: #189c9f;
	padding: 14px;
}

.widget_categories ul li::before
{
	content: none;
}

.widget_categories .cat-item
{
	background: #cddad8;
	text-transform: uppercase;
	text-align: center;
	padding: 10px 30px;
	font-weight: bold;
	margin-left: 0;
	text-indent: 0;
}

.textwidget img
{
	margin-bottom: 12px;
}

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

.featured-content .entry {
	border-bottom: 2px solid #f5f5f5;
	margin-bottom: 20px;
	padding: 0 0 24px;
}

.footer-widgets .entry {
	border-bottom: 1px dotted #666;
}

.featured-content .entry-title {
	font-size: 20px;
}


/* # Plugins
---------------------------------------------------------------------------------------------------- */

/* ## Jetpack
--------------------------------------------- */

#wpstats {
	display: none;
}


/* ## Bibblio
--------------------------------------------- */

.bib__title,
.bib--font-arial .bib__title,
.bib--size-18 .bib__title
{
	color: #000;
	font-family: "Roboto Slab" !important;
	font-style: normal;
	font-weight: 500;
	font-size: 19px !important;
	line-height: 25px;
	margin: 10px 0;
}

.bib--split .bib__link .bib__info, .bib--split .bib__link.bib__link--image .bib__info, .bib--image-only.bib--split .bib__link .bib__info, .bib--image-only.bib--split .bib__link:hover .bib__info, [class*="bib--txt"] .bib__link .bib__info, [class*="bib--txt"] .bib__link.bib__link--image .bib__info
{
	padding: 0 !important;
}

.bib--row-3 .bib__link, .bib--grd-6 .bib__link, .bib--box-3 .bib__link, .bib--box-5 .bib__link, .bib--box-6 .bib__link
{
	width: 30% !important;
	margin-right: 5% !important;
}

.bib--row-2 .bib__link.bib__link--2, .bib--row-3 .bib__link.bib__link--3, .bib--row-4 .bib__link.bib__link--4, .bib--box-3 .bib__link.bib__link--2, .bib--box-3 .bib__link.bib__link--3, .bib--box-5 .bib__link.bib__link--2, .bib--box-5 .bib__link.bib__link--5, .bib--box-6 .bib__link.bib__link--2, .bib--box-6 .bib__link.bib__link--3, .bib--box-6 .bib__link.bib__link--6, .bib--grd-4 .bib__link.bib__link--2, .bib--grd-4 .bib__link.bib__link--4, .bib--grd-6 .bib__link.bib__link--3, .bib--grd-6 .bib__link.bib__link--6
{
	margin-right: 0 !important;
}

.bib__link .bib__image
{
    background-image: url('http:/wp-content/themes/puttylike/images/default.png');
}


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

.site-header
{
	background: #fff;
}

.site-header .wrap {
	padding: 0;
}


/* ## Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding: 5px 0 0;
	position: relative;
}

.header-full-width .title-area {
	width: 100%;
}

.site-title {
	font-size: 32px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
}

.site-title a,
.site-title a:hover {
	color: #333;
}

.header-image .site-title > a {
	background: url("images/logo.png") no-repeat left;
	background-size: 160px;
	float: left;
	min-height: 43px;
	max-height: 43px;
	min-width: 164px;
	max-width: 164px;
	margin: 0 0 -22px;
}

.site-description {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}

.site-description,
.site-title {
	margin-bottom: 0;
}

.header-image .site-description,
.header-image .site-title {
	display: block;
	text-indent: -9999px;
}

.header-image p.site-description
{
	display: none;
}

/* ## Widget Area
--------------------------------------------- */

.site-header .widget-area {
	float: right;
}

/* ### Header Widget Areas
--------------------------------------------- */

.header-puttytribe,
.header-social-media,
.header-search
{
	float: right;
	max-width: 25%;
}

.header-puttytribe
{
	color: #848484;
	font-family: "DIN";
	font-weight: 700;
	font-size: 15px;
	margin-right: 30px;
}

.header-puttytribe a
{
	color: #d55672;
}

.header-puttytribe a:hover
{
	text-decoration: underline;
}

.header-social-media a,
.header-search a
{
	color: #3c3c3c;
	font-size: 18px;
}

.header-social-media a:hover,
.header-search a:hover
{
	color: #00ebb0;
}

.header-search section
{
	float: left;
}


/* # Site Navigation
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	font-size: 16px;
	line-height: 1;
}

.genesis-nav-menu .menu-item, #menu-footer-menu .menu-item
{
	display: inline-block;
	text-align: left;
	line-height: auto;
	margin-bottom: 0;
	text-indent: 0;
	margin-left: 0;
}

.genesis-nav-menu .menu-item:before
{
	content: none;
}

.genesis-nav-menu a {
	color: #3c3c3c;
	padding: 10px 15px 22px;
}

/*
.genesis-nav-menu li:first-child a
{
	padding-left: 0;
}
*/

.genesis-nav-menu li:last-child a
{
	padding-right: 0;
}

.genesis-nav-menu .sub-menu li a,
.genesis-nav-menu .sub-menu li a
{
	padding-left: 20px;
	padding-right: 20px;
}

.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	color: #fc7e3c;
}

.genesis-nav-menu .sub-menu {
	background: #C9FFF1;
	left: -9999px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition:    opacity .4s ease-in-out;
	-ms-transition:     opacity .4s ease-in-out;
	-o-transition:      opacity .4s ease-in-out;
	transition:         opacity .4s ease-in-out;
	width: 100%;
	z-index: 99;
	top: 66px;
}

.genesis-nav-menu .sub-menu a {
	background-color: #C9FFF1;
	color: #3c3c3c;
	font-size: 17px;
	padding: 15px 20px;
	position: relative;
	display: inline-block;
}

.genesis-nav-menu .sub-menu li:last-child a
{
	border-bottom: none;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -55px 0 0 199px;
}

.genesis-nav-menu .sub-menu .menu-item:not(:last-child):after
{
    content: none;
}

.genesis-nav-menu .menu-item:hover {
	position: static;   /* START HERE!! */
}

.genesis-nav-menu .menu-item:hover > .sub-menu
{
	z-index: 99999;
}

.genesis-nav-menu .menu-item:hover > .sub-menu,
.genesis-nav-menu .current-menu-item > .sub-menu,
.genesis-nav-menu .current-menu-parent > .sub-menu {
	left: 0;
	opacity: 1;
	text-align: center;
}

.genesis-nav-menu .current-menu-parent > .sub-menu .current-menu-item a
{
	text-decoration: underline;
}

.genesis-nav-menu > .first > a {
	padding-left: 0;
}

.genesis-nav-menu > .last > a {
	padding-right: 0;
}

.genesis-nav-menu > .right {
	color: #fff;
	float: right;
	list-style-type: none;
	padding: 30px 0;
}

.genesis-nav-menu > .right > a {
	display: inline;
	padding: 0;
}

.genesis-nav-menu > .rss > a {
	margin-left: 48px;
}

.genesis-nav-menu > .search {
	padding: 10px 0 0;
}

/* ## Site Header Navigation
--------------------------------------------- */

.site-header .sub-menu .sub-menu {
	margin-top: -56px;
}

.site-header .genesis-nav-menu li li {
	margin-left: 0;
}

/* ## Primary Navigation
--------------------------------------------- */

.nav-primary {
	text-align: center;
	margin-bottom: 10px;
}

.nav-primary .wrap
{
	padding: 0;
}

.nav-primary .genesis-nav-menu a {
	color: #3c3c3c;
	font-family: "DIN";
	font-weight: 700;
	font-style: normal;
	font-size: 18px;
	text-transform: uppercase;
	text-decoration: none;
}

.nav-primary .genesis-nav-menu .sub-menu a,
.nav-primary .genesis-nav-menu .current-menu-item .sub-menu a {
	color: #3c3c3c !important;
	text-transform: none;
}

.nav-primary .genesis-nav-menu a:hover,
.nav-primary .genesis-nav-menu .current-menu-item > a,
/* .nav-primary .genesis-nav-menu .sub-menu .current-menu-item > a:hover, */
.nav-primary .genesis-nav-menu li.current_page_parent a {
	color: #00ebb0;
	text-decoration: none;
}

.nav-primary .genesis-nav-menu .sub-menu a:hover,
.nav-primary .genesis-nav-menu .current-menu-item .sub-menu a:hover
{
	color: #3c3c3c;
	text-decoration: underline;
}


/* ## Secondary Navigation
--------------------------------------------- */

.nav-secondary {
	background-color: #fff;
}

/* ## Sub Nav (always visible)
--------------------------------------------- */

.sub-nav
{
	background: #C9FFF1;
	color: #4f4f4f;
	font-family: "Din";
	font-weight: 500;
	font-size: 17px;
	text-align: center;
	padding: 10px 0;
	min-height: 30px;
	clear: both;
	margin-left: calc(-100vw / 2 + 100% / 2) !important;
	margin-right: calc(-100vw / 2 + 100% / 2) !important;
	margin-top: 10px;
	max-width: 100vw !important;
}

.sub-nav a
{
	color: #4f4f4f;
	text-decoration: none;
}

.sub-nav a:hover
{
	text-decoration: underline;
}

/* create triangle to display under selected menu item */
.nav-primary .genesis-nav-menu li a,
.nav-primary .genesis-nav-menu li.current-menu-item a:hover
{
    position: relative;
}

.nav-primary .genesis-nav-menu a:hover:after,
.nav-primary .genesis-nav-menu li.current-menu-item a:after,
.nav-primary .genesis-nav-menu li.current_page_parent a:after
{
	top: 34px;
  	left: 40%;
  	content: " ";
  	height: 0;
  	width: 0;
  	position: absolute;
  	pointer-events: none;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
  	border-bottom: 16px solid #C9FFF1;
}

.nav-primary .genesis-nav-menu li.current-menu-item > .sub-menu a:after,
.nav-primary .genesis-nav-menu li.current_page_parent > .sub-menu a:after,
.nav-primary .genesis-nav-menu li.current-menu-item .sub-menu li a:after
{
	border: none;
}


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

header.element-is-sticky 
{
	-webkit-box-shadow: 0 0 5px 1px rgba(0,0,0,0.28);
	-moz-box-shadow: 0 0 5px 1px rgba(0,0,0,0.28);
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.28); /* 0px 4px 5px 0px rgba(158,155,158,1); */
}

header.element-is-sticky .nav-primary a:after
{
	border: none !important;
}

header.element-is-sticky .sub-menu
{
	display: none;
}


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

/* ## Entries
--------------------------------------------- */

.entry {
	margin-bottom: 0;
	padding: 60px 145px;
}

.home .entry
{
	padding: 30px 0 0;
}

.content .entry {
	background-color: #fff;
}

.blog .entry, 
.archive .entry,
.search .entry
{
	padding: 0;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 28px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #333;
	color: #ddd;
}

.page .entry-header
{
	margin: 0;	
}

.page .entry-content h1
{
	margin-top: 0;
}

.blog .entry-header,
.blog .entry-header .entry-meta,
.archive .entry-header,
.archive .entry-header .entry-meta,
.search .entry-header,
.search .entry-header .entry-meta,
.home .entry-meta
{
	margin-bottom: 10px;
}

.blog .entry-title,
.archive .entry-title,
.search .entry-title
{
	font-size: 16px;
	line-height: 21px;
	margin-bottom: 10px;
}

.blog .entry-title a,
.archive .entry-title a,
.search .entry-title a
{
	color: #000;
	text-decoration: none;
}

.blog .entry-content,
.archive .entry-content,
.search .entry-content
{
	color: #3C3C3C;
	font-size: 15px;
	line-height: 23px;
}

.blog .entry-content p,
.archive .entry-content p,
.search .entry-content p
{
	margin-bottom: 10px;
}

/* ## Entry Meta
--------------------------------------------- */

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

.entry-header .entry-meta 
{
	color: #4f4f4f;
	font-family: "Roboto";
	font-size: 17px;
	line-height: 23px;
	font-style: italic;
	margin-bottom: 40px;
}

.entry-header .entry-meta a,
.entry-header a
{
	color: #4f4f4f;
}

.entry-header .entry-description
{
	font-size: 23px;
	line-height: 33px;	
	display: block;
	margin-bottom: 25px;
	font-style: normal;
}

.entry-header .featured-image-class img
{
	margin-bottom: 30px;
}

.entry-header .caption
{
	display: block;
	font-size: 15px;
	line-height: 20px;
	font-style: italic;
	text-align: center;
}

.entry-footer .entry-meta {
	color: #4f4f4f;
	font-family: "Roboto";
	font-size: 15px;
	line-height: 20px;
	font-style: italic;
	padding: 10px 0;
}

.entry-footer .entry-meta a 
{
	font-weight: normal;
}

.entry-footer .flourish
{
	display: block;
	overflow: hidden;
	text-align: right;
	margin: 0 -200px 30px;
	padding: 0 200px 30px;
	border-bottom: 1px solid #e2e2e2;
}

.entry-footer .flourish a
{
	color: #4f4f4f;
	background: none;
	font-size: 30px;
	line-height: 2;
}

.entry-footer .flourish a:hover
{
	color: #00ebb0;
}

.entry-footer .avatar
{
	margin-right: 30px;
}

.entry-footer .author-name,
.entry-footer .author-desc,
.entry-footer .author-desc a
{
	color: #3c3c3c;
	font-family: "Roboto";
	font-size: 17px;
	line-height: 23px;
}

.entry-footer .author-name
{
	font-weight: bold;
}

.entry-page-footer
{
	background: #f5f6f7;
	padding-bottom: 60px;
	clear: both;
}

.entry-page-footer .wrap
{
	max-width: 800px;
}

.entry-categories,
.entry-tags {
	display: block;
	width: 90%;
	margin-top: 30px;
}

.entry-tags a
{
	margin-right: 10px;
	margin-bottom: 10px;
	border: 1px solid #ACF8E4 !important;
}

.entry-comments-link::before {
}

.related-posts {
	
	
	color: #3c3c3c;
	font-family: "Roboto";
	font-size: 17px;
	line-height: 23px;
	margin: 0 auto 60px;
	max-width: 800px;
}

.related-posts .one-third
{
	width: 30%;
	margin-left: 5%;
	margin-bottom: 30px;
}

.related-posts .first
{
	margin-left: 0;
}

.related-posts h5
{
	margin: 10px 0;
}

.related-posts h5 a
{
	color: #000;
	text-decoration: none;
}

.related-posts img
{
	max-height: 200px;
}

.search .entry-meta
{
	display: none;
}

/* ## Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 30px 0;
	padding: 30px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.adjacent-entry-pagination h5 {
	margin: 0;
}

.archive-pagination .pagination-previous a,
.archive-pagination .pagination-next a
{
	color: #000;
	text-decoration: none;
	font-family: "Roboto Slab";
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #333;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	padding: 8px 12px;
}

.archive-pagination li a:hover,
.archive-pagination .active a {
	background-color: #e5554e;
}

.pagination-previous, .pagination-next
{
	text-align: center;
	position: relative;
	padding: 0 60px;
}

/* create triangles before and after the pagination */
.pagination-previous::before,
.pagination-next::after
{
	top: 18px;
  	content: " ";
  	height: 0;
  	width: 0;
  	position: absolute;
  	pointer-events: none;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}

.archive-pagination .pagination-previous::before,
.archive-pagination .pagination-next::after
{
	top: 8px;
}

.pagination-previous::before
{
  	left: 25px;
  	border-right: 16px solid #000;
}

.pagination-next::after
{
  	right: 25px;
  	border-left: 16px solid #000;
}

.pagination-previous
{
	float: left;
}

.pagination-next
{
	float: right;
}

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

.single-post .pagination .pagination-previous,
.single-post .pagination .pagination-next
{
	max-width: 35%;
}

.single-post .pagination .pagination-previous
{
	text-align: left;
}

.single-post .pagination .pagination-next
{
	text-align: right;
}

.single-post .pagination a
{
	color: #000;
	text-decoration: none;
}


/* ## Comments
--------------------------------------------- */

.comment-header p a
{
	border-bottom: none;
}

.comment-edit-link
{
	border-bottom: 2px solid #76FFDD;
}

.comment-respond,
.entry-comments,
.entry-pings {
	background-color: #f5f6f7;
	margin-bottom: 40px;
}

.comment-respond,
.entry-pings {
	padding: 40px 0 16px;
}

.comment-header {
	font-size: 16px;
}

li.comment {
	background-color: #f5f5f5;
}

.comment-author, .comment-author-link
{
	color: #d55672;
	font-family: "Roboto Slab";
	font-size: 19px;
	line-height: 25px;
}

.comment-meta
{
	color: #4f4f4f;
	font-family: "Roboto";
	font-size: 15px;
	line-height: 20px;
	font-style: italic;
	display: inline;
}

.comment-content {
	clear: both;
	color: #3c3c3c;
	font-family: "Roboto";
	font-size: 17px;
	line-height: 23px;
	margin-top: 20px;
}

.comment-reply
{
	color: #3c3c3c;
	font-family: "Roboto";
	font-size: 17px;
	line-height: 23px;
}

.comment-list li {
	margin-top: 24px;
	padding: 10px;
	padding-left: 0;
	list-style: none;
	text-indent: 0;
}

.comment-list li li {
	margin-right: -32px;
	padding-left: 32px;
	list-style: none;
}

.comment-list li article
{
	background: #fff;
	margin-left: 50px;
	padding: 20px;
}

#reply-title
{
	margin-bottom: 5px;
}

.comment-respond .logged-in-as
{
	color: #4f4f4f;
	font-family: "Roboto";
	font-size: 15px;
	line-height: 20px;
	font-style: italic;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%;
}

.comment-respond textarea {
	width: 100%;
	height: 100px;
}

.comment-respond label {
	margin-right: 10px;
}

.comment-respond input[type="submit"]
{
	background: #5a5a5a;
	color: #fff;
	text-transform: none;
	border-radius: 5px;
	padding: 15px 30px;
}

.entry-comments .comment-author {
	margin-bottom: 5px;
}

.entry-pings .reply {
	display: none;
}

.form-allowed-tags {
	background-color: #f5f5f5;
	font-size: 16px;
	padding: 24px;
}

.alignfull .comment img
{
	width: auto !important; /* fixes problem with alignfull making images full width */
}

#cancel-comment-reply-link
{
	margin-left: 10px;
}


/* # Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	font-size: 14px;
	padding-top: 50px;
}

.sidebar li {
	border-bottom: 1px dotted #ddd;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.sidebar p:last-child,
.sidebar ul > li:last-child {
	margin-bottom: 0;
}

.sidebar .widget {
	margin-bottom: 40px;
}


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

.footer-mission
{
	background-color: #C9FFF1;
	color: #5e5e5e;
	font-family: "Roboto Slab";
	font-size: 29px;
	line-height: 46px;
	text-align: justify;
	padding: 35px 0 50px;
}

.footer-mission .wrap
{
	max-width: 1000px;
}

.footer-mission h2
{
	color: #8d8d8d;
	font-family: "DIN";
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	margin-top: 0;
}

.footer-widgets, .footer-menu
{
	background-color: #272727;
	color: #fff;
}

.footer-widgets
{
	color: #fff;
	font-family: "Roboto";
	font-size: 20px;
	line-height: 30px;
	margin-top: 50px;
}

.footer-widgets .wrap
{
	max-width: 800px;
}

.footer-widgets h3
{
	color: #fff;
	font-family: "Roboto Slab";
	font-size: 29px;
	line-height: 41px;	
}

.footer-widgets-1
{
	float: left;
}

.footer-widgets-1
{
	width: 100%;
}


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

.site-footer {
	background-color: #272727;
	color: #fff;
	font-size: 11px;
	line-height: 1;
	padding: 100px 0 40px;
	text-align: center;
}

.site-footer .wrap
{
	max-width: 600px;
}

.site-footer p {
	margin-bottom: 0;
}

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

.site-footer a:hover
{
	text-decoration: underline;
}

.site-footer .social a
{
	font-size: 18px;
}

.site-footer .social a:hover
{
	color: #00ebb0;
}


/* # Custom Blocks
---------------------------------------------------------------------------------------------------- */

/* ## Link Button
--------------------------------------------- */

.center-button
{
	text-align: center;
	clear: both;
}


/* ## Green Box
--------------------------------------------- */

.green-box
{
	background: #FFF3F3;
	border: 1px solid #FFE6E6;
	padding: 30px;
}

.green-box h1,
.green-box h2,
.green-box h3,
.green-box h4,
.green-box h5,
.green-box h6
{
	color: #e24543;
	margin-top: 0;
}

.green-box figure
{
	text-align: center;
}

/* ## Puttytribe Events
--------------------------------------------- */

.puttytribe-events h2
{
	color: #272727;
	font-family: "Roboto";
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	margin: 0 0 15px;
}

.puttytribe-event
{
	background: #f5f6f7;
	margin-bottom: 10px;
	height: 90px;
}

.puttytribe-event .event-date
{
	float: left;
	background: #fff;
	text-transform: uppercase;
	font-size: 24px;
	text-align: center;
	line-height: 1;
	margin: 5px 15px 5px 5px;
	padding: 15px 0 0;
	height: 65px;
	width: 80px;
}

.puttytribe-event .event-month
{
	font-size: 16px;
}

.puttytribe-event .event-title
{
	font-size: 14px;
	line-height: 20px;
	padding: 15px;
}

.puttytribe-events .link-button,
.tl-2step-trigger-37503
{
	display: block;
	background: none;
	border: 2px solid #272727;
	font-size: 20px;
	padding: 14px 0;
}

.tl-2step-trigger-37503
{
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
}

.puttytribe-events .link-button:hover,
.puttytribe-events .link-button a:hover,
.tl-2step-trigger-37503:hover
{
	color: #fff;
	background: #3C3C3C;
}



/* # Pages
---------------------------------------------------------------------------------------------------- */

.page-banner
{
	position: relative;
}

.page-banner-img
{
	width: 100%;
}

.page-title
{
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 55px;
}

.all-caps
{
	text-transform: uppercase;
}

.float-left
{
	float: left;
	margin-right: 20px;
}

.float-right
{
	float: right;
	margin-left: 20px;
}

.clear
{
	clear: both;
}

.center
{
	display: block;
	margin: 0 auto;
}

.center iframe 
{
	margin: 0 auto !important;
}

.single-post .entry
{
	padding: 60px 145px;
}

.single-post-title
{
	background: #27cad2;
	padding: 30px 0;
}

.single-post-title h1
{
	color: #fff;
	text-align: center;
}

.single-post .single-post-title hr
{
	border-color: #fff;
	width: 5%;
}

.single-post hr
{
	width: 25%;
}

/*
.single-post .entry-footer
{
	margin: -80px 0 30px;
}
*/

.single-post .support-post-footer
{
	display: none;
	margin: 10px 0 130px;
}

.single-post .waitlist-post-footer
{
	background: #c9fff1;
	margin: 0 0 80px;
	display: none;
}

/* .single-post .waitlist-post-footer ::selection {
	background-color: #005757;
} */

.single-post .waitlist-post-footer .wrap
{
	max-width: 815px;
	padding: 30px 145px;
}

.single-post .waitlist-post-footer h2
{
	margin-top: 0;
}

.single-post .waitlist-post-footer img
{
	max-width: 425px;
	margin: 10px auto 0;
	display: block;
}

.single-post .green-box
{
	display: block;
	margin: 0 auto;
	max-width: 740px; /* include 60px for padding */
}

.single-post .green-box h3
{
	color: #272727;
	text-align: center;
}

.single-post .signup-post-footer
{
	background: #c9fff1;
	text-align: center;
	margin: 0;
	padding: 100px 0;
	
}

/* .single-post .signup-post-footer h4
{
	font-family: "DIN";
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
	margin-top: 0;
} */

.single-post .signup-post-footer h2
{
	margin-top: 10px;
}

.single-post .signup-post-footer form
{
	margin: 20px 0;
}

.single-post .signup-post-footer input[type="text"]
{
	color: #3c3c3c;
	font-family: "Din";
	font-weight: 700;
	font-size: 16px;
	width: 20%;
	padding: 12px 15px;
	margin-right: 20px;
}

.single-post .signup-post-footer input[type="submit"]
{
	color: #3c3c3c;
	font-size: 18px;
	border: 4px solid #00ebb0;
	padding: 7px 30px;
	margin-left: -4px;
}

.single-post .signup-post-footer input[type="submit"]:hover
{
	background: #00ebb0;
}

.single-post .signup-privacy
{
	font-size: 14px;
}

.indented-content
{
	padding: 0 30px;
}

.spacer
{
	padding: 30px 0 0;
}

.shrink-up
{
	margin-top: -30px;
}

.shrink-down
{
	margin-bottom: -30px;
}

.direct-link-padding
{
	height: 30px; 
	margin-top: -30px;
}

.embedded-video
{
	margin: 0 auto; 
	width: 640px;
}

.vertical-video,
.vertical-video iframe,
.postid-41573 .wp-embed-aspect-16-9, 
.postid-41573 .wp-embed-aspect-16-9 iframe,
.postid-41608 .wp-embed-aspect-16-9, 
.postid-41608 .wp-embed-aspect-16-9 iframe
{
	width: 351px;
	height: 625px; /* 281x500 */
	margin: 0 auto;
}

.error404 .sidebar
{
	display: none;
}

.post-password-form input[type="password"]
{
	border: 1px solid #272727;
}


/* ## Renaissance Business Sales Page
--------------------------------------------- */

.page-renaissance-business .green-box .wp-block-image
{
	margin-bottom: 0;
}


/* ## Templates
--------------------------------------------- */

.page-template-landing-page .pre-header,
.page-template-landing-page .site-header,
.page-template-landing-page .sub-nav,
.page-template-landing-page .footer-widgets,
.page-template-landing-page .site-footer,
.page-template-landing-page .footer-mission,
.page-template-sales-page .pre-header, 
.page-template-sales-page .site-header, 
.page-template-sales-page .sub-nav,
.page-template-sales-page .footer-widgets,
.page-template-sales-page .footer-mission,
.page-template-no-footer-page .footer-widgets,
.page-template-no-footer-page .site-footer,
.page-template-no-footer-page .footer-mission
{
	display: none;
}

.page-template-sales-page,
.page-template-sales-page .site-footer
{
	background: #ecebec;
}

.page-template-sales-page .site-inner,
.page-template-sales-page .wrap
{
	max-width: 1000px;
}

.page-template-sales-page .entry
{
	padding: 40px;
}

.page-template-sales-page .green-box
{
	background: #C9FFF1;
	border: 1px solid #ACF8E4;
}

.page-template-sales-page .site-footer
{
	padding: 0;
}

.page-template-sales-page .site-footer .wrap
{
	background: #fff;
	padding: 0 0 20px;
}


.page-template-sales-page .site-footer .wrap::before
{
	content: "";
	background: #ecebec;
	width: 80%;
	height: 1px;
	margin: 0 auto 20px;
}


.page-template-sales-page .site-footer p,
.page-template-sales-page .site-footer a
{
	color: #272727;
	font-family: "Din";
	font-weight: 700;
	font-size: 14px;
	line-height: 31px;
}

.page-template-sales-page .site-footer .social a
{
	font-size: 18px;
}

.page-template-puttylike-archive .entry-content
{
	max-width: 1090px;
	padding: 60px 145px;
}

.page-template-puttylike-archive h3
{
	margin-bottom: 10px;
}

.page-template-puttylike-archive li
{
	margin-bottom: 15px;
}


/* ## Home Page
--------------------------------------------- */

.home .gb-block-post-grid header .gb-block-post-grid-title
{
	font-size: unset;
	line-height: unset;
}

.home-ted-talk
{
	margin: 0 !important;
	line-height: 0;
	font-size: 0;
}

.multipotentialite-gradient 
{
	background-image: url('https://puttylike.com/wp-content/uploads/2021/11/definition_bg.jpg');
	background-position: center;
	/* background: rgb(218,253,243);
	background: linear-gradient(240deg, rgba(218,253,243,1) 3%, rgba(202,242,203,1) 38%, rgba(200,241,198,1) 46%, rgba(240,234,143,1) 86%); */
	font-size: 21px;
}

.multipotentialite-gradient .gb-block-layout-column-inner
{
	padding: 50px 30px;
}

.multipotentialite-gradient h2
{
	font-size: 29px;
	margin-bottom: 10px;
}

.multipotentialite-gradient .tl-2step-trigger-32350
{
	text-decoration: none;
	border-bottom: 2px solid #00ebb0; /* #76FFDD; */
}

.home .home-subscribe .af-form-wrapper
{
	text-align: center;
}

.home .home-subscribe h2
{
	margin-top: 0;
	margin-bottom: 20px;
}

.home .home-subscribe input[type="text"]
{
	color: #3c3c3c;
	font-family: "Din";
	font-weight: 700;
	font-size: 16px;
	width: 20%;
	padding: 12px 15px;
	margin-right: 20px;
}

.home .home-subscribe input[type="submit"]
{
	color: #3c3c3c;
	font-size: 18px;
	border: 4px solid #00ebb0;
	padding: 7px 40px 7px 30px;
	margin-left: -4px;
}

.home .home-subscribe input[type="submit"]:hover
{
	background: #00ebb0;
}

.home .home-subscribe input[type="submit"]::after
{
	content: '\f178';
	font-family: "fontello";
}

.home .home-subscribe .icon-right
{
	font-size: 16px;
	margin-left: -40px;
}

.home-shop
{
	max-width: 1090px;
}

.home-shop .gb-block-layout-column-inner
{
	padding: 0 30px;
}

.home-shop .wp-block-image.is-resized
{
	margin: 0 -20px 0;
	max-width: none;
}

.home-shop h5
{
	margin: 10px 0;
}

.home-shop .gb-block-layout-column-inner
{
	font-size: 17px;
	line-height: 23px;
}

.home-shop .gb-block-layout-column-inner p
{
	color: #3c3c3c;
	margin: 0 0 20px;
}

.home .the-puttytribe-header
{
	margin-top: 0;
}

.home .the-puttytribe-img
{
	margin-bottom: 0;
}

.home .as-featured-in
{
	color: #3c3c3c;
	font-size: 23px;
	font-style: italic;
	text-transform: uppercase;
}

.home hr
{
	border: 1px solid #e2e2e2;
	border-top-width: 0;
}

.home .latest-articles-header
{
	margin-bottom: 0;
}

.home .latest-articles
{
	font-size: 17px;
	line-height: 23px;
}

.home .latest-articles p
{
	color: #3c3c3c;
	font-size: 15px !important; /* important required because plugin overwrites */
	line-height: 23px;
}

.home .latest-articles .gb-block-post-grid-byline
{
	color: #4f4f4f;
	margin-top: 10px;
}

.home .footer-mission
{
	display: block;
}


/* ## About
--------------------------------------------- */

/*
.page-about img
{
	max-width: 130px !important;
	border-radius: 50%;
}
*/


/* ## 404 Page
--------------------------------------------- */

.error404 .content li a
{
	color: #272727;
	text-decoration: none;
	border-bottom: 2px solid #76FFDD;
}

.error404 img
{
	display: block;
	margin: 30px auto;
}

.error404 .footer-mission
{
	display: block;
}


/* ## Blog Page
--------------------------------------------- */

.blog .site-inner,
.archive .site-inner,
.search .site-inner
{
	max-width: 1200px;
}

.blog .one-third,
.archive .one-third,
.search .one-third
{
	width: 30%;
	margin-left: 5%;
	margin-bottom: 30px;
}

.blog .first,
.archive .first,
.search .first
{
	margin-left: 0;
}

.blog .blog-header
{
	padding-top: 30px;
}

.blog .archive-title
{
	font-size: 22px;
	margin-bottom: 0;
}

.blog .entry-categories,
.archive .entry-categories,
.search .entry-categories,
.home .entry-categories
{
	margin-top: 0;
	color: #00ebb0;
}

.category .entry-categories
{
	display: none;
}

.blog .entry-categories a,
.archive .entry-categories a,
.search .entry-categories a,
.home .entry-categories a
{
	color: #00ebb0;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: none;
}

.blog .entry-image,
.archive .entry-image,
.search .entry-image
{
	/* max-height: 225px; */
	margin-bottom: 15px;
}

.blog .entry-footer .entry-meta,
.archive .entry-footer .entry-meta,
.search .entry-footer .entry-meta
{
	font-size: 14px;
	font-style: normal;
	padding: 0;
}


/* ## Shop Page
--------------------------------------------- */

.page-shop .wp-block-genesis-blocks-gb-columns
{
	margin: 60px -145px 0;
	max-width: 1090px;
}

.page-shop .wp-block-genesis-blocks-gb-columns .gb-block-layout-column-inner
{
	padding: 0 30px;
}

.page-shop .wp-block-image.is-resized
{
	margin: 0 -20px 0;
	max-width: none;
}

.page-shop h5
{
	margin: 10px 0;
}

.page-shop .gb-block-layout-column-inner
{
	font-size: 17px;
	line-height: 23px;
}

.page-shop .gb-block-layout-column-inner p
{
	margin: 0 0 20px;
}

.page-shop .green-box
{
	margin-top: 60px;
}

.page-shop .green-box p
{
	margin-bottom: 0;
}


/* ## Social Media quiz page (for some reason the page class isn't showing up)
--------------------------------------------- */

.page-id-46862, .page-id-33702
{
	background: red !important;
}

.page-id-46862 .mobmenu,
.page-id-46862 .mobmenu-overlay,
.page-id-46862 .mobmenu-left-alignment
{
	display: none !important;
}


/* ## Social Media landing page
--------------------------------------------- */

.page-social, .page-social .content .entry
{
	background: #C9FFF1;
}

.page-social
{
	padding-top: 0 !important;
}

.page-social .logo-header
{
	margin-bottom: 0;
}

.page-social h4
{
	margin: 15px 0;
}


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

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

	.site-inner,
	.wrap,
	.timeline-images,
	.grey-section,
	.blog .site-inner, 
	.archive .site-inner,
	.search .site-inner
	{
		max-width: 960px;
	}

	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-sidebar-content .content-sidebar-wrap {
		width: 740px;
	}

	.content,
	.site-header .widget-area {
		width: 620px;
	}

	.sidebar-content-sidebar .content,
	.sidebar-sidebar-content .content,
	.content-sidebar-sidebar .content {
		width: 400px;
	}
	
	.header-puttytribe
	{
		font-size: 14px;
	}
	
	.genesis-nav-menu a
	{
		padding: 0 7px;
	}
	
	.sidebar-primary,
	.title-area {
		width: 460px;
	}

	.single-post .entry 
	{
		padding: 30px;
	}
	
	.alignwide
	{
		margin-left: 0;
		margin-right: 0;
	}
	
	.single-post .waitlist-post-footer .wrap
	{
		max-width: 960px;
	}
	
	.page-the-puttyverse-community iframe
	{
		height: 387px !important;
	}

}

@media only screen and (max-width: 960px) {
	
	.site-container
	{
		margin-top: 16px; /* to deal with the -16px from the mobile menu */
	}

	.site-inner,
	.wrap,
	.grey-section,
	.footer-mission .wrap,
	.blog .site-inner, 
	.archive .site-inner,
	.search .site-inner,
	.page-template-sales-page .site-inner, 
	.page-template-sales-page .wrap
	{
		max-width: 800px; 
	}

	.content,
	.content-sidebar-sidebar .content,
	.content-sidebar-sidebar .content-sidebar-wrap,
	.footer-widgets-1,
	.footer-widgets-2,
	.sidebar-content-sidebar .content,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-primary,
	.sidebar-secondary,
	.sidebar-sidebar-content .content,
	.sidebar-sidebar-content .content-sidebar-wrap,
	.site-header .widget-area,
	.title-area {
		width: 100%;
		float: none;
		clear: both;
	}
	
	.desktop-only
	{
		display: none;
	}
	
	.mobile-only
	{
		display: initial;
	}
	
	.header-puttytribe
	{
		max-width: 25%;
	}

	.header-image .title-area {
		background-position: center top;
	}

	.genesis-nav-menu li,
	.site-header ul.genesis-nav-menu,
	.site-header .search-form {
		float: none;
	}

	.genesis-nav-menu,
	.site-description,
	.site-header .title-area,
	.site-header .search-form,
	.site-title {
		text-align: center;
	}
	
	.nav-primary .genesis-nav-menu a
	{
		font-size: 16px;
	}

	.genesis-nav-menu a,
	.genesis-nav-menu > .first > a,
	.genesis-nav-menu > .last > a {
		padding: 20px 11px;
	}
	
	.nav-primary .genesis-nav-menu li.current-menu-item a::after, 
	.nav-primary .genesis-nav-menu li.current_page_parent a::after
	{
		top: 41px;
	}

	.site-header .search-form {
		margin: 16px auto;
	}

	.genesis-nav-menu li.right {
		display: none;
	}
	
	.wp-block-image .alignleft 
	{
	    margin-right: 30px !important;
    }
	
	.wp-block-image .alignright 
	{
	    margin-left: 30px !important;
    }

	.footer-widgets-1 {
		margin-right: 0;
	}
	
	.single-post .waitlist-post-footer .wrap
	{
		max-width: 800px;
		padding: 30px 110px;
	}
	
	.page-template-sales-page .site-container
	{
		margin-top: 0;
	}
	
	.page-the-puttyverse-community iframe
	{
		height: 282px !important;
	}
	
}

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

	body {
		background-color: #fff;
		font-size: 16px;
	}

	.site-inner,
	.wrap,
	.blog .site-inner, 
	.archive .site-inner,
	.search .site-inner,
	.page-template-sales-page .site-inner, 
	.page-template-sales-page .wrap
	{
		padding-left: 5%;
		padding-right: 5%;
	}

	.grey-section
	{
		padding-left: 10%;
		padding-right: 10%;
	}

	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings,
	.sidebar .widget,
	.site-header,
	.single-post .entry
	{
		padding: 0; /* was 5% */
	}
	
	.site-header
	{
		padding-top: 0;
	}
	
	.entry
	{
		padding-bottom: 0;
	}
	
	.comment-respond input
	{
		width: 100%;
	}

	.archive-pagination li a {
		margin-bottom: 4px;
	}

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds,
	.home-three-column .widget,
	.page-how-we-can-help .has-2-columns .wp-block-column 
	{
		margin: 0;
		width: 100%;
	}
		
	.align-right-mobile
	{
		float: right;
		margin-left: 20px;
	}
	
	.align-left-mobile
	{
		float: left;
		margin-right: 20px;
	}

	.sidebar .widget.enews-widget {
		padding: 40px;
	}
	
	.indented-content
	{
		padding: 0;
	}
	
	.shrink-up, .shrink-down
	{
		margin: 0;
	}
	
	.link-button-center
	{
		text-align: center;
	}
	
	.home .home-header > .gb-layout-column-wrap.gb-is-responsive-column 
	{
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		grid-template-areas: "col1" "col2";
	}
	
	.blog .site-container
	{
		margin-top: 0;
	}
	
	.blog .blog-header
	{
		padding-top: 0;
	}
	
	.blog .one-third, 
	.archive .one-third,
	.search .one-third
	{
		width: 100%;
		margin: 0;
	}
	
	.blog .blog-categories .one-third 
	{
    	width: 31.623931623931625%;
		margin-left: 1.564%;
	}
	
	.blog .blog-categories .one-third .first
	{
		margin-left: 0;
	}
	
	.site-footer .one-third 
	{
		margin-bottom: 10px;
	}
	
	.single-post .waitlist-post-footer .wrap
	{
		padding: 5%;
	}
	
	.page-shop .wp-block-genesis-blocks-gb-columns
	{
		max-width: none;
		margin: 0;
	}
	
	.page-template-sales-page .site-container
	{
		margin-top: -42px;
	}
	
	/* hide mobile menu bar 
	.page-template-sales-page div.wprm-wrapper
	{
		display: none;
	}
	
	.page-template-sales-page div#wprmenu_bar
	{
		height: 0;
	}
	
	.page-template-sales-page .admin-bar #wprmenu_bar
	{
		top: 0;
	}
	*/
	
	.page-template-puttylike-archive .entry-content
	{
		padding: 0 0 30px;
	}
	
}

@media only screen and (max-width: 700px) {
	
	.site-header .wrap
	{
		padding: 0;
	}
	
	.site-header .widget-area
	{
		text-align: left;
	}

	.wpcf7
	{
		padding: 10px !important;
	}
	
	.wpcf7-text
	{
		width: 100%;
	}
	
	.align-right, .align-left,
	.wp-block-image .alignleft,
	.wp-block-image .alignright
	{
		float: none !important;
		margin: 10px auto !important;
	}
	
	.bib--row-3 .bib__link, 
	.bib--grd-6 .bib__link, 
	.bib--box-3 .bib__link, 
	.bib--box-5 .bib__link, 
	.bib--box-6 .bib__link
	{
		width: 100% !important;
		margin-right: 0 !important;
	}
	
	.vertical-video,
	.vertical-video iframe,
	.postid-41573 .wp-embed-aspect-16-9, 
	.postid-41573 .wp-embed-aspect-16-9 iframe,
	.postid-41608 .wp-embed-aspect-16-9, 
	.postid-41608 .wp-embed-aspect-16-9 iframe
	{
		width: 281px;
		height: 500px;
	}
	
	.single-post .waitlist-post-footer img
	{
		max-width: 100%;
	}
		
}

@media only screen and (max-width: 600px) {
	
	h1
	{
		font-size: 32px;
		line-height: 42px;
	}
	
	h2
	{
		font-size: 28px;
		line-height: 40px;
	}
	
	h3
	{
		line-height: 38px;
	}
	
	blockquote, .pullquote, .long-pullquote
	{
		margin: 40px 30px;
	}
	
	.wp-block-pullquote blockquote,
	.pullquote,
	.long-pullquote
	{
		font-size: 22px;
		line-height: 36px;
	}
	
	.blog-categories
	{
		padding: 15px 0 0;
	}
	
	.home .home-subscribe .af-form-wrapper
	{
		padding: 0 5%;
	}
	
	.home .home-subscribe input[type="text"],
	.home .home-subscribe input[type="submit"]
	{
		display: block;
		float: none;
		width: 100%;
		margin: 0 auto 10px;
		max-width: 93%;
	}
	
	.home .home-subscribe input[type="text"]
	{
		padding-right: 0;
		max-width: 90%;
	}
	
	.home-shop .wp-block-image.is-resized,
	.home-shop .wp-block-image img
	{
		display: block;
		margin: 0 auto;
		width: 100%;
	}
	
	.home-shop .gb-block-layout-column-inner
	{
		padding: 0;
	}
	
	.home-shop .gb-block-layout-column
	{
		margin-top: 50px;
	}
	
	.home-shop .gb-block-layout-column:nth-child(1)
	{
		margin-top: 0;
	}
	
	.home .latest-articles-separator
	{
		margin-top: -5px;
	}
	
	.home .latest-articles-header
	{
		margin: 30px 0;
	}
	
	.footer-mission
	{
		text-align: left;
	}
	
	.footer-widgets .widget_custom_html:first-of-type
	{
		width: 100%;
	}
	
	.footer-widgets input[type="text"]
	{
		width: 100%;
	}
	
	.footer-widgets button, 
	.footer-widgets input[type="button"], 
	.footer-widgets input[type="reset"], 
	.footer-widgets input[type="submit"], 
	.footer-widgets .button
	{
		float: none;
		display: block;
		margin: 30px auto 0;
	}
	
	.home .entry
	{
		padding-top: 0;
	}
	
	.home .home-subscribe .icon-right
	{
		display: none;
		/* 
		float: right;
		margin: -45px 180px 0 0;
		*/
	}
	
	.home .the-puttytribe-header
	{
		font-size: 19px;
		line-height: 25px;
		color: #000;
		margin: 10px 0;
	}
	
	.home .puttytribe-spacer,
	.home .puttytribe-after-spacer
	{
		display: none;
	}
	
	.page-shop .wp-block-image.is-resized,
	.page-shop .wp-block-image img
	{
		display: block;
		width: 100%;
		margin: 0 auto;
	}
	
	.page-shop .gb-block-layout-column
	{
		margin-bottom: 50px;
	}
	
	.page-shop .wp-block-genesis-blocks-gb-columns .gb-block-layout-column-inner
	{
		padding: 0;
	}
	
	.page-shop .green-box
	{
		margin-top: 0;
	}
	
	.entry-header .entry-description
	{
		font-size: 20px;
	}
	
	.single-post .signup-post-footer input[type="text"]
	{
		display: block;
		width: 90%;
		max-width: 90%;
		margin: 0 auto 10px;
	}
	
	.single-post .signup-post-footer input[type="submit"]
	{
		display: block;
		width: 96%;
		max-width: 96%;
		margin: 0 auto;
	}
	
	.single-post .support-post-footer
	{
		margin-bottom: 60px;
	}
	
	.page-template-sales-page,
	.page-template-sales-page .site-footer
	{
		background: #ffffff;
	}
	
	.page-template-sales-page .site-inner,
	.page-template-sales-page .wrap
	{
		padding: 0 2%;
	}
	
	.page-template-sales-page .entry,
	.page-template-sales-page .green-box
	{
		padding: 18px;
	}

}

@media only screen and (max-width: 460px) {
	
	.wp-block-image .alignright,
	.wp-block-image .alignleft
	{
		float: none !important;
		display: block;
		margin: 0 auto !important;
	}

	.pagination-next
	{
		float: right;
	}
	
	hr
	{
		width: 20%;
	}
	
	.wp-block-pullquote
	{
		padding: 0 !important;
	}
	
	.wp-block-pullquote blockquote, .pullquote
	{
		font-size: 14px;
		line-height: 20px;
	}
	
	.wp-block-pullquote p,
	.pullquote p,
	.long-pullquote p
	{
		line-height: 38px !important;
	}
	
	.wpcf7 .left-column-form,
	.wpcf7 .right-column-form
	{
		float: none;
		margin: 0 0 20px;
		width: 100%;
	}
	
	.single-post .pagination .pagination-previous, 
	.single-post .pagination .pagination-next
	{
		float: none;
		max-width: 100%;
	}
	
	.single-post .pagination .pagination-previous
	{
		margin-bottom: 50px;
	}
	
	.home .puttytribe-events,
	.home .multipotentialite-gradient,
	.home .cta,
	.home .as-featured-in,
	.home .as-featured-in-image,
	.home .gb-block-post-grid-byline
	{
		display: none;
	}
	
	.home .home-subscribe .gb-container-content
	{
		padding: 0 10px;
	}
	
	.footer-mission
	{
		font-size: 20px;
	}
	
	.footer-widgets button, .footer-widgets input[type="button"], .footer-widgets input[type="reset"], .footer-widgets input[type="submit"], .footer-widgets .button
	{
		font-size: 24px;
	}
	
	.entry-tags
	{
		width: 70%;
	}
	
	/*
	.single .entry-footer
	{
		margin-top: -100px;
	}
	
	.ssbp-wrap.right
	{
		float: none;
	}
	
	.ssbp-wrap .ssbp-list li
	{
		margin-left: 0 !important;
	}
	*/
	.single-post .flourish
	{
		margin-bottom: 0;
		padding-bottom: 0;
	}
	
	.single-post .signup-post-footer
	{
		padding: 50px 0;
	}
	
	.comment-list li
	{
		margin-left: 20px;
	}
	
	.comment-list li article
	{
		margin-left: 25px;
		width: 80%;
	}
	
	.comment .avatar
	{
		margin-left: -64px;
		max-width: 35px;
	}
	
	.comment-list li li
	{
		padding-left: 24px;
	}
	
	.comment-list li li article
	{
		width: 73%;
	}
	
	.comment-list li li li article
	{
		width: 69%;
	}
	
	.depth-3 
	{
		padding-left: 0 !important;
		margin-left: 0 !important;
	}
	
	.page-template-sales-page .entry, .page-template-sales-page .green-box 
	{
		padding: 9px;
	}
	
	.page-the-puttyverse-community iframe
	{
		height: 242px !important;
	}
	
	.vertical-video,
	.vertical-video iframe,
	.postid-41573 .wp-embed-aspect-16-9, 
	.postid-41573 .wp-embed-aspect-16-9 iframe,
	.postid-41608 .wp-embed-aspect-16-9, 
	.postid-41608 .wp-embed-aspect-16-9 iframe
	{
		width: 225px;
		height: 400px;
	}
		
}

@-moz-document url-prefix() 
{
	.footer-widgets input[type="text"],
	.search-form input[type="search"],
	.header-puttytribe,
	.nav-primary .genesis-nav-menu a,
	.sub-nav,
	.footer-mission h2,
	.single-post .signup-post-footer h4,
	.single-post .signup-post-footer input[type="text"],
	.page-template-sales-page .site-footer p,
	.page-template-sales-page .site-footer a,
	.home .home-subscribe input[type="text"]
	{
		font-weight: 500;
	}		
}