/*
	Theme Name: Tidbits
	Description: A custom WordPress theme made for the Tidbits blogs
	Author: Coded Creative Themes
	Author URI: https://www.codedcreative.co

	Version: 1.0.1

	Template: genesis
	Template Version: 2.5.2

	License: GPL-2.0+
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


/* # Table of Contents

- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Containers
	- Column Widths and Positions
	- Column Classes
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Left header widget
	- Right header widget
	- Header buttons
	- Header featured pages
	- Above blog widget
	- Below blog widget
	- Featured Content
	- After Entry Widget
	- Project Index Top
	- Project Index Bottom
- Plugins
	- Genesis eNews Extended
	- Jetpack
- Skip Links
- Site Header
	- Title Area
	- Widget Area
- Site Navigation
	- Accessible Menu
	- Site Header Navigation
	- After Header Navigation
	- Footer Navigation
- Content Area
	- Entries
	- Entry Meta
	- Pagination
	- Comments
- Sidebars
- Footer Widgets
- Site Footer
- Front Page
- Archive
- Media Queries
	- Max-width: 1340px
	- Max-width: 1200px
	- Max-width: 1023px
	- Max-width: 860px
- Print Styles
*/


@font-face {
	font-family: 'Gotham Narrow';
	font-weight: 400;
	src: url('fonts/GothamXNarrow-Book.ttf');
}

@font-face {
	font-family: 'Gotham Narrow';
	font-weight: 500;
	src: url('fonts/GothamXNarrow-Medium.ttf');
}

@font-face {
	font-family: 'Gotham Narrow';
	font-weight: 600;
	src: url('fonts/GothamXNarrow-Bold.ttf');
}

@font-face {
	font-family: 'AW Conqueror Sans';
	src: url('fonts/AWConquerorSans-Light.ttf');
}


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

/* ## Baseline Normalize
--------------------------------------------- */
/* normalize.css v4.1.1 | MIT License | http://necolas.github.io/normalize.css/ */

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,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:baseline}template,[hidden]{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}button,input,optgroup,select,textarea{font:inherit;margin:0}optgroup{font-weight:bold}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:1}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}

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

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

*,
*:before,
*:after {
	box-sizing: inherit;
}/* ## 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,
.widget: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,
.widget:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}/* # Defaults
---------------------------------------------------------------------------------------------------- */

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

html {
	font-size: 62.5%; /* 10px browser default */
}

/* Chrome fix */
body > div {
	font-size: 14px;
}

body {
	color: #000;
	background-color: #fff;
	font-family: 'Open Sans';
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	line-height: 1.6;
	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;
}

a {
	color: #a7b9c3;
	text-decoration: underline;
}

a:hover,
a:focus {
	color: #000;
	text-decoration: none;
}

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

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

/*li {
	list-style-type: none;
}*/

hr {
	border: 0;
	border-collapse: collapse;
	border-top: 1px solid #eee;
	clear: both;
	margin: 2em 0;
}

b,
strong {
	font-weight: 700;
}

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

blockquote {
	background-color: #F3F3F3;
	margin: 20px 0;
	padding: 20px 30px;
}

blockquote p:last-of-type {
	margin-bottom: 0;
}/* ## Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Gotham Narrow", sans-serif;
	font-weight: normal;
	line-height: 1.2;
	margin: 0 0 10px;
	text-transform: uppercase;
}

h1 {
	font-size: 24px;
	letter-spacing: 1.2px;
}

h2 {
	color: #D3DBE0;
	font-size: 20px;
	letter-spacing: 1px;
}

h3 {
	font-size: 18px;
	font-weight: normal;
	letter-spacing: .7px;
	margin-bottom: 0;
}

h4 {
	color: #C7D1C7;
	font-size: 18px;
	font-weight: normal;
}

h5 {
	font-size: 16px;
	letter-spacing: .5px;
}

h6 {
	font-size: 14px;
	letter-spacing: 1.5px;
	margin-bottom: 0;
}

h2, a {
	color: #8B9DA9;
}

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

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

img {
	height: auto;
}

figure {
	margin: 0;
}

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

.gallery {
	overflow: hidden;
}

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

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.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-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}

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

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

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

input,
select,
textarea {
	background-color: #fff;
	border: 2px solid #f3f3f3;
	color: #000;
	font-family: "Open Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0;
	padding: 10px 18px;
	width: 100%;
}

input[type="submit"] {
	font-family: "Open Sans", sans-serif;
	font-weight: normal;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

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

::-moz-placeholder {
	color: #000;
	font-weight: 200;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #000;
	font-weight: 200;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	background-color: #D3DBE0;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-family: "Gotham Narrow", "Open Sans", sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 12px 52px;
	text-decoration: none;
	text-transform: uppercase;
	white-space: normal;
	width: auto;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
button:focus,
input:focus[type="button"],
input:focus[type="reset"],
input:focus[type="submit"],
.button:focus  {
	background-color: #C7D1C7;
	color: #fff;
}

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

.button {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 1.5px;
	margin-top: 15px;
	padding: 12px 55px;
	text-transform: uppercase;
}

.green-button {
	background-color: #C7D1C7;
}

.green-button:hover,
.green-button:focus {
	background-color: #D3DBE0;
}

.button a {
	text-decoration: none;
}

a.button.small,
button.small,
input[type="button"].small,
input[type="reset"].small,
input[type="submit"].small {
	padding: 8px 16px;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	background-color: #eee;
	border-width: 0;
	color: #777;
	cursor: not-allowed;
}

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

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

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

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

td,
th {
	text-align: left;
}

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

th {
	font-weight: 400;
	padding: 0 6px;
}

td:first-child,
th:first-child {
	padding-left: 0;
}

/* ## Screen Reader Text
--------------------------------------------- */

.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.widget_search input[type="submit"]:focus  {
	clip: auto !important;
	height: auto;
	width: auto;
	display: block;
	font-size: 1em;
	font-weight: bold;
	padding: 15px 23px 14px;
	color: #000;
	background: #fff;
	z-index: 100000; /* Above WP toolbar. */
	text-decoration: none;
	box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
}

.more-link,
.below-blog-widget .more-from-category a,
.project-index-bottom .more-from-category a {
	background-color: #D3DBE0;
	color: #fff;
    display: table;
    font-family: "Gotham Narrow", "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.5px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 45px;
    padding: 6px 10px;
    position: relative;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    width: 265px;
}

.more-link:hover,
.below-blog-widget .more-from-category a:hover,
.project-index-bottom .more-from-category a:hover {
	background-color: #C7D1C7;
	color: #fff;
}

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

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

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

.site-inner {
	clear: both;
	padding-top: 0px;
	word-wrap: break-word;
	margin-top: 5px;
	margin-bottom: -40px;

}

.landing-page .site-inner {
	max-width: 800px;
}

.fl-builder-full .site-inner {
	max-width: none;
	padding-top: 0;
}

.fl-row-fixed-width {
	max-width: 900px !important;
}

#header-wrap.wrap {
	border-bottom: 3px solid #F3F3F3;
	max-width: none;
}

#header-wrap {
	display: none;
}

.before-header-wrap {
	margin-left: auto;
	margin-right: auto;
	max-width: 1080px;
}

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

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

.content-sidebar-wrap {
	max-width: 1090px;
	margin: 0px auto 50px auto;
	overflow: hidden;
	text-align: justify;
}

/* ### Content */

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

.content-sidebar .content {
	float: left;
}
.content-sidebar .content {
	/*width: 72%*/
	width: 710px;
	margin-right: 60px;
}

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

/* ### Primary Sidebar */

.sidebar-primary {
	float: right;
	/*width: 24%;*/
	width: 320px;
}

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

/* ## 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 {
	float: left;
	margin-left: 2.564102564102564%;
}

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

.one-third,
.two-sixths {
	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 {
	border-radius: 50%;
	float: left;
}

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

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

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

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

.breadcrumb {
	background-color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 1px;
	padding: 12px 30px;
}

.breadcrumbs {
	margin-top: 20px;
	margin-bottom: 0px;
	padding: 0px 10px;
}

.after-entry,
.archive-description,
.author-box {
	background-color: #fff;
	font-size: 18px;
	font-size: 1.8rem;
	margin-bottom: 40px;
	padding: 60px;
}

.archive-description {
	padding-bottom: 0;
	padding-top: 30px;
	text-align: center;
}

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

	display: block;

	text-align: center;

}

.blog-template-description,
.posts-page-description {
	display: none;
}

.entry-image-link {
	display: none;
}

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

.search-form {
	overflow: hidden;
}
[type=search] {
    width: 100%;
}

input[type="submit"] {
    font-size: 14px;
}

.right.search {
    float: right;
}

.site-header .search-form {
    float: right;
    margin: 0px auto;
    width: 100% !important;
}


/* Removes search box text when box is clicked into */
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; } /* Firefox 18- */
input:focus::-moz-placeholder { color:transparent; } /* Firefox 19+ */
input:focus:-ms-input-placeholder { color:transparent; } /* oldIE ;) */

.entry-content .search-form,
.site-header .search-form {
	margin-bottom: 40px;
	width: 50%;
}

[class*="fa fa-"] {
    font-family: FontAwesome !important;
    padding: 2px 8px 2px 8px;
}

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

.search-form {
	overflow:auto;
}

.search-form input[type="search"] {
	width: 100%;
	float: left;
	-webkit-appearance: none;
}

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

.search-form input[type="submit"]:hover {
	opacity: .7; 
}


/*
.site-header .search-form {
	float: right;
	margin: 12px auto 0;
}

.genesis-nav-menu .search-form {
	float: right;
	margin: 0px auto 0;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 10px;
}

.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;
}
.search-form input[type="submit"] {
	display: none;
}

.genesis-nav-menu>.search-bar, .nav-primary {
    float: right;
}

.site-header .search-form {
    width: 80px;
    border-radius: 35px;
}
*/
.search-form input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #000;
    font-style: normal;
}
.search-form input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #000;
    font-style: normal;
   opacity:  1;
}
.search-form input::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #000;
    font-style: normal;
   opacity:  1;
}
.search-form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #000;
    font-style: normal;
}

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

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-size: 20px;
	font-size: 2rem;
}

.entry-title {
	font-size: 26px;
	letter-spacing: 2.5px;
	text-align: center;
	text-transform: uppercase;
}

.single .entry-title {
	margin-bottom: 3px;
}

.single .entry-header,
.single .entry-meta {
	margin-bottom: 0;
}

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

.sidebar .widget-title a {
	color: white;
}

.widget-title {
	background-color: #E7E4DE;
	color: #fff;
	font-family: "Gotham Narrow", sans-serif;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 2.5px;
	margin-bottom: 10px;
	padding: 9px 10px;
	text-transform: uppercase;
}

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

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

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

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

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

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-size: 1.4rem;
	font-weight: 600;
	margin: 0;
	text-align: center;
}

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

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 28px;
}

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

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

.widget-wrap {
	overflow: hidden;
	padding-bottom: 10px;
}

.sidebar .widget:last-of-type .widget-wrap {
	border-bottom: none;
}

.widget p:last-child,
.widget ul > li:last-of-type,
.widget-area .widget:last-of-type {
	margin-bottom: 0;
}

.widget ul > li {
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.widget ul > li:last-of-type {
	padding-bottom: 0;
}

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

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

.widget_calendar table {
	width: 100%;
}

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

.sidebar .simple-social-icons ul li {
	margin-bottom: 0 !important;
}

.sidebar .simple-social-icons ul li a,
.sidebar .simple-social-icons ul li a:hover {
	padding-bottom: 0;
}

.sidebar .one-half .button {
	padding: 10px;
	width: 100%;
}

.sidebar .social-icons,
.footer-widgets .social-icons {
	text-align: center;
}

.sidebar .social-icons a {
	color: #D3DBE0;
	font-size: 17px;
	padding-left: 9px;
	padding-right: 9px;
}

.sidebar .ck_form_container {
	background-color: #f3f3f3;
	padding: 19px 15px 23px;
}

.sidebar .ck_form_container h3 {
	letter-spacing: 1.5px;
	line-height: 1.3;
}

.sidebar input.ck_first_name,
.sidebar input.ck_email_address {
	margin-bottom: 10px;
}

.footer-widgets input.ck_first_name,
.footer-widgets input.ck_email_address  {
	margin-bottom: 12px;
}

.sidebar .subscribe_button,
.footer-widgets .subscribe_button {
	background-color: #C7D1C7;
	padding-top: 9px;
	padding-bottom: 9px;
	width: 100%;
}

.footer-widgets .subscribe_button {
	font-size: 13px;
	letter-spacing: 2px;
}

.sidebar .subscribe_button:hover,
.footer-widgets .subscribe_button:hover {
	background-color: #D3DBE0;
}

.footer-widgets .social-icons a {
	color: #BCD3D3;
	font-size: 13px;
	padding-left: 7px;
	padding-right: 7px;
}

.sidebar .social-icons a:hover,
.footer-widgets .social-icons a:hover {
	color: #C7D1C7;
}

.sidebar select {
	font-style: italic;
}

.sidebar select option:not(:first-child) {
	font-style: normal;
}

.bottom-footer-widget {
	margin-top: 20px;
}

.olivia-landing .page .ck_form.ck_naked {
	margin-top: 0px !important;
}

.olivia-landing .ck_form.ck_naked input[type="text"], 
.olivia-landing .ck_form.ck_naked input[type="email"] {
    font-size: 12px;
}

.olivia-landing .ck_form.ck_naked .ck_subscribe_button {
    background-color: #C7D1C7;
    font-size: 13px;
    padding-top: 9px;
    padding-bottom: 9px;
    width: 100%;
}

.sidebar .widget {
	margin-top: 20px;
}

.post-cta {
    display: none;
}

.flexible-widgets {
    text-align: center;
}
.flexible-widgets .widget {
    padding: 20px;
}
.flexible-widgets .wrap {
    display: flex;
    justify-content: space-around;
}

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

.widget-grid-view-image {
	max-width: 100% !important;
	width: 100%;
}

.widget-grid-view-image a {
	margin: 3px 2px 9px 0 !important;
}

/* # Related Post Customizations
---------------------------------------------------------------------------------------------------- */

.related_post {
	margin-left: 0 !important;
	padding-left: 10px;
	padding-right: 60px;
}

.related_post li {
	list-style-type: none !important;
    width: 24%;
    float: left;
    text-align: center;
    font-family: "AW Conqueror Sans";
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.related_post li:not(:first-child) {
	margin-left: 1.3%;
}

.related_post li a {
	color: #000;
	text-decoration: none;
}

.related_post_title {
	text-align: center;
    font-size: 19px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    padding-left: 10px;
    padding-right: 60px;
}


/* # Social Warfare Customizations
---------------------------------------------------------------------------------------------------- */

.nc_socialPanel.swp_flatFresh.swp_d_fullColor .nc_pinterest, body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .nc_pinterest:not(:hover), html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .nc_pinterest:hover,
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_fb, body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_fb:not(:hover), html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_fb:hover,
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .twitter, body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .twitter:not(:hover), html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .twitter:hover,
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .googlePlus, body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .googlePlus:not(:hover), html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .googlePlus:hover {
	background-color: #D3DBE0 !important;
	border: 1px solid #D3DBE0 !important;
}

.single .nc_socialPanel {
	margin-top: 2px !important;
}

div.sw-pinit a.sw-pinit-button, div.sw-pinit a.sw-pinit-button:visited {
	background: #D0D6D6 !important;
}

.swp_pinterest, .swp_twitter, .swp_facebook {
	background: #D3DBE0 !important;
	border: #D3DBE0 !important;
}


/* # Tasty Recipes Customizations
---------------------------------------------------------------------------------------------------- */
.tasty-recipes-display {
	border: 0.15em solid #ededed;
	padding: 1.5em;
	margin-bottom: 1em;
}

.tasty-recipes-display h2 {
	font-weight: 400;
	text-transform: lowercase;
}

.tasty-recipes-details {
	font-size: 0.8em;
	margin-bottom: 2em;
}
.tasty-recipes-details ul {
	-webkit-padding-start: 0px;
}

.tasty-recipes-label {
	color: #8B9DA9; /* change to whatever color you want the recipe detail labels (author, prep time) and nutrition labels (calories, serving size) to be */
}

/*.tasty-recipes-details ul li {
	list-style-type: none;
}*/

.prep-time, .total-time, .cook-time {
	display: inline-block;
	width: 20%;
	margin: 1em 1em 1em 0em;
	vertical-align: top;
}

.tasty-recipes-print-button {
    margin-top: 0.5em;
    margin-right: 0.5em;
    padding: 0.5em 1em !important;
    float: right;
    font-size: .9em;
    font-weight: 800;
	background-color: #797B7C !important; /* change color for print button here, but leave !important */
	border: none !important;
}

.tasty-recipes-image {
	border-left: 1.5em solid rgba(0,0,0,0);
}

.tasty-recipe-ingredients ul {
	margin-bottom: 1em;
}

.tasty-recipes-nutrition {
	padding: 0.5em;
	border-top: .15em solid #ededed;

}

.tasty-recipes-nutrition ul {
	text-align: center;
}

.tasty-recipes-nutrition ul li {
	list-style-type: none;
	font-size: 0.8em;
	margin-left: 0;
	width: 30%;
}

.tasty-recipe-ingredients h3, 
.tasty-recipes-ingredients h3,
.tasty-recipe-instructions h3, 
.tasty-recipes-instructions h3, 
.tasty-recipes-notes h3 {
	font-weight: 200;
	margin-bottom: 1.2em;
	text-transform: lowercase;
	color: #8B9DA9 !important;
}

.tasty-recipe-ingredients h4, 
.tasty-recipes-ingredients h4,
.tasty-recipe-instructions h4, 
.tasty-recipes-instructions h4 {
	font-size: 1.2em;
	font-weight: 700;
	text-transform: lowercase;
	color: #a8afb3; /* change to whatever color you want your section headers to be; remove this line to make it the same as your other text */
	
}

.tasty-recipes-description p {
	font-size: .8em;
	font-style: italic;
}

.tasty-recipes-nutrition h3 {
	font-size: 1em;
    text-align: center;
    margin-top: 1em;
}

.tasty-recipes-notes h3 {
	font-size: 1.2em;
}

.tasty-recipes-notes p,
.tasty-recipes-notes ul {
	font-size: 1em;
}
.tasty-recipe-ingredients, 
.tasty-recipes-ingredients ,
.tasty-recipe-instructions, 
.tasty-recipes-instructions, 
.tasty-recipes-notes, .copyright {
	font-size: 0.9em;
	line-height: 1.7em;
}

.copyright {
	color: grey;
}

.tasty-recipe-details ul {
	margin-left: 0px !important;
	text-align: -webkit-left;
	word-wrap: normal;
}


.tasty-recipes-details ul {
	margin-left: 0px !important;
	text-align: -webkit-left;
	word-wrap: normal;
}


.tasty-recipes h3 {
	text-transform: uppercase;
	color: #A6B6C0;
	margin-top: 1.5em;
}

.tasty-recipes h2 {
	color: black;
	text-transform: capitalize;
}

.tasty-recipes h2 {
    color: #8B9DA9;
	font-weight: bold; 
	font-size: 27px;
} 


.tasty-recipes h3 {
	font-weight: bold;
}
.prep-time, .total-time, .cook-time {
	width: auto;
}

/* # Tasty Print View
---------------------------------------------------------------------------------------------------- */
.tasty-recipes-print-view .tasty-recipes {
	max-width: 700px;
	font-size: 0.9em;
}
.tasty-recipes-print-view .tasty-recipes-rating, .tasty-recipes-description, .author {
	display: none;
}
.tasty-recipes-source-link {
	font-size: 0.9em;
}
.tasty-recipes-details ul, .tasty-recipes-details ul li, .tasty-recipes h2 {
	text-align: -webkit-center;
}

.tasty-recipes-print-view div.starrating {
	display: none !important;
}

.tasty-recipes-print h2, .tasty-recipes-print h3 {
    color: #A6B6C0;
}

.tasty-recipes-print h2 {
	border-bottom: 1px solid #ededed;
    padding-bottom: 0.5em;
}

.tasty-recipes-print h3 {
	text-transform: uppercase;
	font-size: 1em;
	border-top: 1px solid #ededed;
    padding-top: 1em;
}

.tasty-recipes-print li.category, .tasty-recipes-print li.method, .tasty-recipes-print li.cuisine,
.tasty-recipes-print li.author, 
.tasty-recipes-print .tasty-recipes-description, .tasty-recipes-print .tasty-recipes-keywords, .tasty-recipes-print div.nutrifox-label{
	display: none;
}

.tasty-recipes-print li.prep-time, .tasty-recipes-print li.cook-time,
.tasty-recipes-print li.total-time, .tasty-recipes-print li.yield {
	display: inline;
	margin-right: 0.4em;
}

.tasty-recipes-print .tasty-recipes-details ul {
	padding: 0px;
}

.tasty-recipes-print  {
    font-size: 14px;
    line-height: 1.3em;
}

/* # Jump and Print Recipe Styling
---------------------------------------------------------------------------------------------------- */
.jumplink {
	padding: 0.5em 1.2em 0.5em 1.2em;
	margin: 1em;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	background: #D0D6D6;
	color: white;
	font-size: 0.8em;
}
.jumplink:hover {
	color: white;
	background: #C3CBBE;
}

.jump-and-print {
	text-align: center;
	padding-bottom: 1em;
}

/* # Textbox
---------------------------------------------------------------------------------------------------- */
.textbox table {
	margin-bottom: 0px;
	margin: 1em;
}
.textbox table td, .textbox table tbody {
	border: none;
}

/* # Last Modified Info Styling
---------------------------------------------------------------------------------------------------- */
.lastmodified {
	text-align: center;
	font-family: 'AW Conqueror Sans', "Open Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
	margin-top: -10px;
}

.category .lastmodified {
	display: none;
}

/* # Comment Form 
---------------------------------------------------------------------------------------------------- */
.comment-form-subscriptions label {
	display: block !important;
}
.comment-form-cookies-consent {
    display: none;
}
.comment-form-policy-top-copy {
	font-size: 100%;
}
.comment-respond h3 {
	display: none;
}
.comment-respond, .entry-pings {
	padding: 20px 0px;
}


/* # Social Icons (About Page)
---------------------------------------------------------------------------------------------------- */
.about-social-icons {
	text-align: center;
}
.about-social-icons a {
	color: #D3DBE0;
	font-size: 17px;
	padding-left: 9px;
	padding-right: 9px;
}

/* # Left Before Header Widget
---------------------------------------------------------------------------------------------------- */

.left-header-widget {
	display: inline-block;
	float: left;
	font-size: 16px;
	margin-top: 20px;
	padding-top: 9px;
}

.left-header-widget .widget-title {
	display: none;
}

.left-header-widget .widget-wrap {
	padding-bottom: 0;
}

.left-header-widget a,
.genesis-nav-menu .social-icons a {
	color: #BCD3D3;
	margin-right: 16px;
}

/* # Mobile menu social icons (replace icons in Left Before Header Widget)
---------------------------------------------------------------------------------------------------- */

.social-icons-li {
	overflow: hidden;
}

.genesis-nav-menu .social-icons {
	display: inline-block;
	overflow: hidden;
	text-align: center;
}

.genesis-nav-menu .social-icons a {
	display: inline-block;
	float: left;
	padding: 10px 0 12px 0;
}


/* # Right Before Header Widget
---------------------------------------------------------------------------------------------------- */

.right-header-widget {
	display: inline-block;
	margin-top: 10px;
	float: right;
}

.right-header-widget .widget-title {
	display: none;
}

.right-header-widget .widget-wrap {
	padding-bottom: 0;
}

.right-header-widget .widget ul > li {
	display: inline-block;
	float: left;
	font-size: 12px;
	margin-bottom: 7px;
	margin-top: 3px;
	margin-right: 20px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.right-header-widget .widget ul > li a {
	color: #000;
	text-decoration: none;
}

.right-header-widget .widget ul > li a:hover {
	color: #D3DBE0;
}

.right-header-widget .widget_nav_menu {
	display: inline-block;
	padding-top: 18px;
}

.right-header-widget .widget_search {
	display: inline-block;
	float: right;
	padding: 8px 10px;
}

.right-header-widget .widget_search input {
	padding: 8px 10px;
}

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

.you-are-here-img,
.you-are-here-img-mobile {
	text-align: right;
}

.you-are-here-img-mobile {
	display: none;
	margin-right: -10px;
	margin-bottom: -5px;
}

.you-are-here-img img {
	margin-right: -12px;
	margin-bottom: -5px;
}

.header-button-left,
.header-button-right {
	color: #fff;
	float: left;
	width: 49.25%;
}

.header-button-left a,
.header-button-right a {
	color: #fff;
	display: block;
	font-family: "Gotham Narrow", "Open Sans", sans-serif;
	font-size: 19px;
	letter-spacing: 1.5px;
	padding: 15px 10px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.header-button-left {
	margin-right: 1.5%;
}

.header-button-left a,
.header-button-right a:hover {
	background-color: #D3DBE0;
}

.header-button-left a:hover,
.header-button-right a {
	background-color: #C7D1C7;
}

/* # Header Featured Pages
---------------------------------------------------------------------------------------------------- */

.header-page-links {
	margin-top: 10px;
	margin-bottom: 0px;
}

.header-page-mobile {
	display: none;
}

.header-page-links .widget-area {
	float: left;
	position: relative;
	width: 32%;
}

.header-page-links .widget-area:hover {
	opacity: .8;
}

.header-page-middle {
	margin-left: 2%;
	margin-right: 2%;
}

.header-page-text {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-page-links .header-page-text a {
	background-color: #fff;
	color: #000;
	font-family: "Gotham Narrow", "Open Sans", sans-serif;
	font-size: 17px;
	letter-spacing: 1px;
    padding-top: 7px;
    padding-bottom: 7px;
    text-align: center;
    display: block;
	text-decoration: none;
	text-transform: uppercase;
	width: 165px;
}

/* # Above Blog Widget
---------------------------------------------------------------------------------------------------- */
.below-logo-widget .widget-wrap {
	padding-bottom: 0px;
}

.above-blog-widget .header-headshot-mobile, 
.post-cta-widget .header-headshot-mobile {
	display: none;
}
 
.above-blog-widget, 
.post-cta-widget {
	background-color: #F3F3F3;
	overflow: hidden;
	margin-bottom: 5px;
	padding: 18px 18px 13px 18px;
}

.above-blog-widget .widget:nth-child(1), 
.post-cta-widget .widget:nth-child(1){
	float: left;
	padding-right: 10px;
	text-align: center;
	width: 18%;
}

.above-blog-widget .widget:nth-child(2), 
.post-cta-widget .widget:nth-child(2) {
	float: right;
	width: 82%;
	margin-top: auto;
	margin-bottom: auto;
}

.above-blog-widget .ck_control_group,
.above-blog-widget .ck_subscribe_button,
.post-cta-widget .ck_control_group,
.post-cta-widget .ck_subscribe_button {
	float: left;
	width: 32%;
}

.above-blog-widget .ck_subscribe_button,
.post-cta-widget .ck_subscribe_button {
	background-color: #C7D1C7;
}

.above-blog-widget .ck_subscribe_button:hover, 
.post-cta-widget .ck_subscribe_button:hover {
	background-color: #D3DBE0;
}

.above-blog-widget .ck_email_field_group, 
.post-cta-widget .ck_email_field_group {
	margin-left: 2%;
	margin-right: 2%;
}

.above-blog-widget .widget-wrap, 
.post-cta-widget .widget-wrap  {
	padding-bottom: 0;
}

.above-blog-widget > .widget-wrap, 
.post-cta-widget > .widget-wrap {
	max-width: 800px;
	margin: 0 auto;
}

.above-blog-widget .ck_description, 
.post-cta-widget .ck_description {
	font-family: "Gotham Narrow";
	font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-top: -2px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
	text-transform: uppercase;
    text-align: center;
}

.above-blog-widget img, 
.post-cta-widget img  {
	width: 113px;
}

.post-cta-widget .subscribe_button.ck_subscribe_button.btn.fields {
	padding: 12px;
}

.post-cta-widget .ck_description {
	padding-bottom: 10px;
}

.post-cta-widget > .widget-wrap {
	display: flex;
}

.post-cta-widget .widget:nth-child(1) {
	margin: auto;
}


/* # Below Blog Widget
---------------------------------------------------------------------------------------------------- */

.below-blog-widget {
	margin-top: 70px;
}

.below-blog-widget article.entry {
	float: left;
	padding: 0;
	width: 24%;
}

.below-blog-widget .widget-wrap article.entry:not(:nth-child(2)) {
	margin-left: 1.3%;
}

.below-blog-widget .featured-content .entry-title {
	font-size: 16px;
    letter-spacing: 1px;
}

.below-blog-widget .entry-header {
	padding-left: 10px;
	padding-right: 10px;
}

.below-blog-widget .widget-title,
.project-index-bottom .widget-title {
	color: #000;
    background-color: transparent;
    border-bottom: 2px solid #f3f3f3;
    font-weight: normal;
    font-size: 24px;
    margin-bottom: 35px;
    padding-bottom: 12px;
    text-align: center;
}

.below-blog-widget .alignnone,
.below-blog-widget .aligncenter {
	margin-bottom: 7px;
}

.below-blog-widget .more-from-category {
	clear: both;
	overflow: hidden;
}

.below-blog-widget .more-from-category a {
	margin-top: 20px;
}

.below-blog-widget .widget {
	margin-bottom: 40px;
}

.starrating {
	text-align: center;
}

.ctacol2 {
	font-size: 1.2em;
}

.disclaimer {
    text-align: center;
    font-style: italic;
}

.postid-5648 .book-cta, .postid-5648 .outerrow {
	display: none;
}


/* ## Sponsored Post Page Tweaks
--------------------------------------------- */
.brands img {
	border: #9BA9B3 4px solid;
}

.page-id-5584 .breadcrumbs, .page-id-5584 .lastmodified {
	display: none;
}

div.wpforms-container-full .wpforms-form button[type=submit], div.wpforms-container-full .wpforms-form button[type=submit]:hover {
	border: none;
	background: #9BA9B3;
	color: white;
	text-transform: uppercase;
	width: 100%;
	font-size: 1.3em;
	letter-spacing: 1px;
    padding: 12px 52px;
}

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

.featured-content .entry {
	background: none;
	border: none;
	padding: 0;
}

.featured-content .entry:last-of-type {
	margin-bottom: 0;
}

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

/* # After Entry Widget
---------------------------------------------------------------------------------------------------- */

.after-entry {
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.after-entry .widget-wrap {
	background-color: #f3f3f3;
	border: none;
	padding: 40px;
}

.after-entry .widget-title {
	text-align: center;
}

.after-entry .enews p {
	font-size: 14px;
	line-height: 1.5;
	padding-bottom: 15px;
	padding-top: 5px;
}

.after-entry .enews {
	margin-left: auto;
	margin-right: auto;
	max-width: 850px;
}

.after-entry .enews input[type=text],
.after-entry .enews input[type=email] {
	border: none;
	float: left;
	margin-right: 2%;
	width: 32%;
}

.after-entry .enews input[type=submit] {
	float: right;
	margin-top: 1px;
	width: 32%;
}

/* # Project Index 
---------------------------------------------------------------------------------------------------- */

.project-index-top {
	border: 2px solid #f3f3f3;
	clear: both;
	overflow: hidden;
	padding: 10px;
	margin-bottom: 60px;
}

.project-index-top .widget {
	float: left;
	width: 32%;
}

.project-index-top .widget:not(:first-child) {
	margin-left: 2%;
}

.project-index-top .widget-title {
	color: #000;
    background-color: transparent;
    font-size: 22px;
    font-weight: normal;
    text-align: center;
}

.content-sidebar .project-index-bottom .entry {
	float: left;
	margin-left: 2%;
	padding: 0 0 20px 0;
	width: 15%;
}

.content-sidebar .project-index-bottom .widget-wrap .entry:first-of-type,
.content-sidebar .project-index-bottom .widget-wrap .entry:nth-child(6n+2) {
	clear: left;
	margin-left: 0;
}

.project-index-bottom .more-from-category {
	overflow: hidden;
    clear: both;
    display: block;
    text-align: center;
}

.project-index-bottom .more-from-category a {
	margin-top: 10px;
	margin-bottom: 40px;
}


/* # Recipe Index
---------------------------------------------------------------------------------------------------- */

.page-template-recipe-index li {
	list-style-type: disc;
	margin-left: 15px;
	margin-bottom: 5px;
	text-align: left;
}

.page-template-recipe-index .content h3 {
	color: #D3DBE0;
}

.page-template-recipe-index .content h3.widget-title {
	color: #000;
}

.page-template-recipe-index .project-index-top {
	margin-bottom: 30px;
}

.tag-list,
.child-category-list {
	columns: 3;
	-webkit-columns: 3;
	-moz-columns: 3;
}


.recipe-index-category-list a,
.tag-letters a,
.tag-letter-wrapper a {
	color: #000;
	text-decoration: none;
}

.recipe-index-category-list a:hover,
.tag-letter-wrapper a:hover {
	color: #a7b9c3;
	text-decoration: underline;
}

/*.tag-letters {
	columns: 26;
	-webkit-columns: 26;
	-moz-columns: 26;
}*/

.tag-letters li {
	font-size: 13px;
	list-style-type: none;
	margin-left: 0;
	display: inline-block;
	margin-right: 6px;
}

.tag-letters li a {
	border: 1px solid #D3DBE0;
	display: inline-block;
	text-align: center;
	width: 20px;
}

.tag-letters li:hover a {
	color: #000;
	background-color: #D3DBE0;
}

.tag-to-top {
	display: inline-block;
	float: right;
	font-size: 11px;
	font-style: italic;
	margin-top: -29px;
}

.recipe-index-parent-category,
#tags-list,
.tag-letter-wrapper h5 {
	padding-top: 30px;
	margin-bottom: 10px;
}

.tag-letter-wrapper h5 {
	padding-top: 40px;
}

#tags-list:focus,
.tag-letter-wrapper h5:focus {
	outline: none;
}

#tags-list {
	margin-bottom: 15px;
}



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

/* ## Genesis eNews Extended
--------------------------------------------- */

.sidebar .enews-widget,
.sidebar .enews-widget .widget-title {
	color: #000;
}

.sidebar .enews-widget input[type="text"],
.sidebar .enews-widget input[type="email"],
.footer-widgets .enews-widget input[type="text"],
.footer-widgets .enews-widget input[type="email"] {
	border: 2px solid #f2f2f2;
}

.footer-widgets input[type="submit"] {
	font-size: 13px;
	letter-spacing: 2.5px;
	padding: 10px 20px;
}

.sidebar .enews-widget input[type="submit"] {
	background-color: #c3251d;
	color: #fff;
}

.sidebar .enews-widget input:hover[type="submit"],
.sidebar .enews-widget input:focus[type="submit"]  {
	background-color: #fff;
	color: #000;
}

.enews-widget input {
	margin-bottom: 11px;
}

.enews-widget input[type="submit"] {
	margin: 0;
	width: 100%;
}

.enews form + p {
	margin-top: 24px;
}

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

#wpstats {
	display: none;
}

/* ## Archives + Categories
--------------------------------------------- */

.widget_archive li,
.widget_categories li {
	background-color: #eee;
	padding-bottom: 10px;
    padding-top: 10px;
    text-align: center;
}

.widget.widget_archive ul > li:last-of-type,
.widget.widget_categories ul > li:last-of-type {
	padding-bottom: 10px;
}

.widget_archive li a,
.widget_categories li a {
	color: #000;
    text-decoration: none;
}

.widget_archive li:hover,
.widget_categories li:hover {
	opacity: .8;
}

.archive-meta-wrapper {
	z-index: -1;
}

.archive .entry-image-link:hover {
	opacity: 0.5;
}

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

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link li {
	height: 0;
	width: 0;
	list-style: none;
}

/* Display outline on focus */
:focus {
	color: #000;
	outline: #ccc solid 1px;
}

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

.site-header {
	background-color: #fff;
	margin: 0px;
}

.site-header > .wrap {
	padding: 20px 20px 0px 20px;
}

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

.title-area {
	margin-left: auto;
	margin-right: auto;
	padding: 0px 0;
	text-align: center;
}

.header-image .title-area {
	margin: 0 auto;
	padding-top: 10px;
}

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

.site-title {
	display: inline-block;
	font-family: 'Gotham Narrow', sans-serif;
	font-size: 45px;
	font-weight: 700;
	letter-spacing: 5px;
	line-height: 1.2;
	text-transform: uppercase;
   	text-align: center;
}

.site-title a,
.site-title a:hover,
.site-title a:focus {
	color: #000;
	text-decoration: none;
}

.header-image .site-title > a {
background-position: center !important;
	background-size: contain !important;
	display: block;
	width: 375px;
	height: 158px;
}

.site-description {
	display: none;
}

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

.header-image .site-title {
	display: inline-block;
	overflow: hidden;
	text-indent: -9999px;
}

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

.genesis-nav-menu {
	clear: both;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: inline-block;
	margin-bottom: 0;
	padding-bottom: 0;
	text-align: left;
}

.genesis-nav-menu a {
	color: #000;
	display: block;
	font-family: "AW Conqueror Sans", sans-serif;
	font-size: 14px;
	font-weight: normal;
	text-decoration: none;
	letter-spacing: 1.5px;
	padding: 2px 8px 2px 8px;
}

.genesis-nav-menu a:hover {
	color: #a7b9c3;
}

.menu {
	font-family: "AW Conqueror Sans", sans-serif;
}

.genesis-nav-menu .sub-menu {
	border-top: 1px solid #eee;
	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: 200px;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	border: 1px solid #eee;
	border-top: 0;
	font-size: 13px;
	padding: 20px;
	position: relative;
	width: 200px;
	word-wrap: break-word;
	margin:0px;
}

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

.genesis-nav-menu .menu-item:hover {
	position: static;
}

.genesis-nav-menu .menu-item > .sub-menu {
	margin: 0px;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

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

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

.genesis-nav-menu > .right {
	float: right;
}

/* ## Accessible Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	left: auto;
	opacity: 1;
}

.sub-menu-toggle,
.menu-toggle {
	display: none;
	visibility: hidden;
}

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

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

/* ## After Header Navigation
--------------------------------------------- */

.nav-primary,
.nav-secondary {
	background-color: #fff;
	font-family: "Gotham Narrow", sans-serif;
	font-size: 20px;
	letter-spacing: 1px;
	overflow: visible;
	padding-top: 10px;
	margin-top:0px;
	text-align: center;
	text-transform: uppercase;
}

.nav-secondary {
	display: none;
}

/* Flexible Widgets
--------------------------------------------- */
.flexible-widgets {
	text-align: center;
}

.flexible-widgets .widget {
    float: left;
    margin-bottom: 0;
    padding: 20px;
    background-color: #fff;
}

.flexible-widgets .widget table {
    margin-bottom: 0;
}

.flexible-widgets.widget-full .widget,
.flexible-widgets.widget-halves.uneven .widget:last-of-type {
    width: 100%;
}

.flexible-widgets.widget-fourths .widget {
    width: 22%;
    margin-left: 1%;
}

.flexible-widgets.widget-fifths .widget {
    width: 16%;
    margin-left: 1%;
}

.flexible-widgets.widget-sixths .widget {
    width: 15.83%;
    margin-left: 1%;
}

.flexible-widgets.widget-halves .widget {
    width: 48%;
    margin-left: 1%;
}

.flexible-widgets.widget-thirds .widget {
    width: 31%;
    margin-left: 1%;
}

.flexible-widgets.widget-halves .widget:nth-of-type(odd),
.flexible-widgets.widget-thirds .widget:nth-child(3n + 1),
.flexible-widgets.widget-fourths .widget:nth-child(4n + 1),
.flexible-widgets.widget-fifths .widget:nth-child(5n + 1),
.flexible-widgets.widget-sixths .widget:nth-child(6n + 1) {
    clear: left;
    margin-left: 0;
}

.flexible-widgets .featured-content {
    padding: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.flexible-widgets .featured-content .entry {
    background-color: #fff;
    -webkit-box-shadow: 0 25px 60px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 25px 60px 0 rgba(0, 0, 0, 0.05);
    text-align: center;
}

.flexible-widgets .featured-content .entry-title {
    font-size: 26px;
    font-size: 2.6rem;
    text-decoration: none;
    letter-spacing: -1px;
}

.flexible-widgets .featured-content .entry-content,
.flexible-widgets .featured-content .entry-title {
    padding: 15px 40px 0 40px;
}

.flexible-widgets .featuredpost .entry-meta {
    padding-right: 40px;
    padding-left: 40px;
}

.flexible-widgets.widget-full .featuredpost .entry,
.flexible-widgets.widget-halves.uneven .featuredpost.widget:last-of-type .entry {
    float: left;
    width: 31%;
    margin-left: 3.5%;
}

.flexible-widgets.widget-full .featuredpost .entry:nth-of-type(3n + 1),
.flexible-widgets.widget-halves.uneven .featuredpost.widget:last-of-type .entry:nth-of-type(3n + 1) {
    clear: left;
    margin-left: 0;
}

.flexible-widgets .featured-content .more-posts-title {
    padding: 30px 0;
}

.flexible-widgets .featured-content .more-posts {
    text-align: center;
}

.flexible-widgets.widget-full .featured-content .more-posts,
.flexible-widgets.widget-halves.uneven .featured-content:last-of-type .more-posts {
    clear: both;
    -webkit-column-count: 3;
    column-count: 3;
    padding-bottom: 30px;
}

.flexible-widgets .featured-content .more-from-category {
    margin-bottom: 55px;
}

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

.site-footer .genesis-nav-menu {
	padding-bottom: 20px;
}

.site-footer .genesis-nav-menu a {
	padding: 0 20px 10px;
}

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

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

//* # Header Call To Action
---------------------------------------------------------------------------------------------------- */

.header-cta {
	font-family: "Gotham Narrow", sans-serif;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
}

.header-cta::after {
	background-size: cover;
	content: "";
	opacity: 0.2;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	z-index: -1;
}

.header-cta-container {
	background-color: #fff;
	font-size: 19px;
	letter-spacing: 2px;
	margin: 90px auto;
	max-width: 85%;
	padding: 45px 10px 50px 10px;
	text-align: center;
	text-transform: uppercase;
	width: 700px;
}

.header-headline {
	line-height: 1.2em;
	margin-bottom: 7px;
}

.header-secondary-cta {
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 5px;
}

.header-cta .button {
    font-size: 15px;
    letter-spacing: 4px;
	margin-top: 15px;
    padding-left: 115px;
    padding-right: 115px;
}

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

.entry {
	background-color: #fff;
	padding: 10px 60px 45px 60px;
}

.content-sidebar .entry {
	padding: 40px 10px 45px 10px;
}

.blog .entry-content {
	border-bottom: 2px solid #f3f3f3;
	padding-bottom: 60px;
}

.blog article:last-of-type .entry-content {
	border-bottom: none;
	padding-bottom: 0;
}

.entry-content ol,
.entry-content ul,

.fl-builder .site-inner ol,

.fl-builder .site-inner ul {
	margin-bottom: 28px;
	margin-left: 40px;
}

.entry-content ol > li,

.fl-builder .site-inner ol > li {
	list-style-type: decimal;
}

.entry-content ul > li,

.fl-builder .site-inner ul li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul,

.fl-builder .site-inner ol ol,

.fl-builder .site-inner ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #000;
	color: #eee;
}

p.breadcrumbs {
	padding-top: 10px;
}

.entry-content a {
	font-weight: bold !important;
}

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

p.entry-meta {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 0;
}

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

.mobile-entry-header {
	display: none;
}

.entry-header .entry-meta,
.entry-header .entry-categories {
	font-family: 'AW Conqueror Sans', "Open Sans", sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	margin-bottom: 10px;
	margin-top: 2px;
	text-align: center;
	text-transform: uppercase;
}

.single-portfolio .entry-meta {
	display: none;
}

.entry-categories,
.entry-tags {
	display: inline-block;
}

.entry-footer {
	background-color: #f3f3f3;
	font-family: 'AW Conqueror Sans', "Open Sans", sans-serif;
	font-size: 10px;
	letter-spacing: 1.3px;
	margin-top: 32px;
	margin-bottom: 45px;
	overflow: hidden;
	padding: 15px 20px;
	text-transform: uppercase;
}

.entry-categories a,
.entry-tags a {
	color: #000;
	text-decoration: none;
}

.entry-tags-wrapper {
	float: left;
	width: 70%;
}

.entry-comment-wrapper {
	display: inline-block;
	float: left;
	text-align: right;
	width: 30%;
}

.entry-share-wrapper {
	display: inline-block;
	float: right;
	padding-top: 3px;
}

.entry-share-wrapper a {
	font-size: 13px;
	margin-left: 17px;
}

.entry-comments-link a {
	color: #000;
	text-decoration: none;
}

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

.post-excerpt {
	margin-top: 20px;
}

.older-posts-wrapper {
	overflow: hidden;
}

.older-posts-wrapper .blog-featured-image {
    float: left;
	padding: 40px 20px 10px 0;
	text-align: center;
    width: 39%;
}

.older-posts-wrapper .older-posts-content {
	float: right;
	margin-top: 80px;
	width: 61%;
}

.content-sidebar .older-posts-wrapper .older-posts-content {
	margin-top: 0;
}

.older-posts-wrapper .entry {
	text-align: justify;
}

.older-posts-wrapper .entry-footer {
	display: none;
}

.older-posts-wrapper .entry-title {
	font-size: 24px;
}

.older-posts-wrapper .post-excerpt {
	margin-top: 0;
}

.older-posts-wrapper .more-link {
	margin-top: 35px;
}

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

.pagination {
	clear: both;
	padding-top: 50px;
}

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

.archive-pagination {
	margin-bottom: 30px;
}

.archive-pagination li {
	display: none;
}

.archive-pagination .pagination-previous,
.archive-pagination .pagination-next {
	display: inline;
}

.archive-pagination .pagination-next { 
	float: right;
}

.archive-pagination a {
	background-color: #E7E4DE;
    color: #fff;
	cursor: pointer;
	display: inline-block;
	font-family: "Gotham Narrow", sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 11px 27px;
	text-decoration: none;
	text-transform: uppercase;
}

.archive-pagination a:hover {
	opacity: 0.7;
}

.archive-pagination .pagination-next i {
	margin-left: 10px;
}

.archive-pagination .pagination-previous i {
	margin-right: 10px;
}

/* ## Single Post Pagination
--------------------------------------------- */

.adjacent-entry-pagination a {
	color: #000;
	font-family: "Gotham Narrow Light", sans-serif;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
}

.adjacent-entry-pagination {
	padding-top: 20px;
	max-width: 85%;
}

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

.comment-respond,
.entry-comments,
.entry-pings {
	background-color: #fff;
	font-size: 14px;
	margin-bottom: 40px;
}

.comment-respond,
.entry-pings {
	padding: 60px 60px 32px 10px;
}

.entry-comments {
	clear: both;
	padding: 60px 60px 10px 10px;
}

.entry-comments h3,
.comment-respond h3 {
	color: #000;
	text-align: center;
	letter-spacing: 1.5px;
	margin-bottom: 0;
}

.comment-respond h3 {
	margin-bottom: 30px;
}

.comment-list li {
	padding: 40px 0 0 30px;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	margin-bottom: 30px;
}

.comment-content {
	clear: both;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	float: left;
	margin-bottom: 25px;
	width: 32%;
}

.comment-respond input[type="email"] {
	margin-left: 2%;
	margin-right: 2%;
}

.comment-respond label,
.comment-notes {
	display: none;
}

.comment-header p {
	margin-bottom: 0;
}

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

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

.form-submit input[type="submit"] {
	letter-spacing: 1.5px;
    background-color: #C7D1C7;
    width: 270px;
}

.form-submit input[type="submit"]:hover {
	background-color: #D3DBE0;
}

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

.sidebar {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	margin-bottom: 40px;
	text-align: center;
}

.sidebar .widget {
	background-color: #fff;
	margin-top: 20px;
	padding: 0 10px;
}

.sidebar .entry {
	padding: 20px 20px 0 20px;
}

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

.footer-widgets {
	background-color: #fff;
	font-size: 13px;
	clear: both;
	padding: 30px 0 0 0;
}

.footer-widgets .widget-title {
	background-color: transparent;
	color: #000;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: 3px;
	text-align: center;
}

.footer-widgets .widget-wrap {
	border-bottom: none;
	padding-bottom: 20px;
}

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

.footer-widgets-1 {
	float: left;
	margin-right: 2%;
	padding-right: 10px;
	width: 32%;
}

.footer-widgets-2 {
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	width: 33%;
}

.footer-widgets-3 {
	float: left;
	margin-left: 1%;
	padding-left: 10px;
	width: 32%;
}

.footer-widgets .widget ul > li {
	margin-bottom: 7px;
	padding-bottom: 0;
	text-align: center;
}

.footer-widgets .widget_nav_menu {
	margin-top: 12px;
}

.footer-widgets ul a {
	color: #000;
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	letter-spacing: 1.5px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-widgets .sb_instagram_header,
.footer-widgets #sbi_load {
	display: none;
}

.footer-widgets-1 img,
.footer-widgets-1 img.alignleft {
	margin-right: 10px;
}

.footer-widgets input {
	font-size: 13px;
}

.footer-widgets-1 .widget-wrap {
	padding-bottom: 5px;
}

.footer-widgets-1 .widget_media_image {
	display: inline-block;
	float: left;
	margin-top: 54px;
	width: 34%;
}

.footer-widgets-1 .widget_black_studio_tinymce:nth-child(2) {
	display: inline-block;
	float: left;
	margin-left: 3%;
	margin-top: 49px;
	width: 63%;
}

.footer-widgets-1 .widget_black_studio_tinymce:nth-child(3) {
	float: right;
	margin-left: 3%;
	text-align: center;
	width: 63%;
}

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

.site-footer {
	background-color: #fff;
	font-family: "AW Conqueror Sans", sans-serif;
	font-size: 11px;
	letter-spacing: 1px;
	line-height: 1;
	padding: 20px 0 25px;
	text-align: left;
	text-transform: uppercase;
}

.site-footer a {
	color: #000;
}

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

.credits-left,
.credits-right {
	float: left;
	text-align: left;
	width: 50%;
}

.credits-right {
	text-align: right;
}

/* # Landing Page
---------------------------------------------------------------------------------------------------- */
.tidbits-landing #mc_embed_signup input {

	margin-bottom: 10px;

}
.tidbits-landing #mc-embedded-subscribe {

	margin-top: -10px;

}

/* # Archive
---------------------------------------------------------------------------------------------------- */

.archive .content {
	margin-bottom: 30px;
}

.category-header {
	background-color: #f5f5f5;
	margin-bottom: 50px;
	overflow: hidden;
	padding: 30px;
	padding-bottom: 15px;
}

.category-header .entry-title {
	font-size: 20px;
	text-align: center;
}

.category-header .description-class {
	text-align: center;
}

.archive:not(.woocommerce) .entry {
	float: left;
	margin-top: 12px;
	padding: 0;
	position: relative;
	width: 24%;
}

.archive:not(.woocommerce):not(.category):not(.tax-portfolio_category) .entry:nth-child(3n+1) {
	clear: left;
}

/*.archive:not(.woocommerce):not(.category) .entry:nth-child(4n+1),
.archive:not(.woocommerce):not(.category) .entry:nth-child(3n+3) {
	margin-left: 1.5%;
}*/

.archive .content .entry:nth-child(4n+6) {
	clear: left;
}

.archive .content .entry:not(:nth-child(4n+2)) {
	margin-left: 1.3%;
}

.archive .content .entry:first-of-type {
	margin-left: 0;
}

.archive.category .entry-title {
	margin-bottom: 40px;
	margin-top: 5px;
}

.archive .entry-meta,
.archive .entry-footer {
	display: none;
}

.archive .entry-title {
	line-height: .8;
}

.archive .entry-title a {
	font-size: 16px;
	letter-spacing: 1px;
	padding-left: 10px;
	padding-right: 10px;
} 

.archive:not(.woocommerce) .entry-header {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
}

.archive:not(.woocommerce) .entry-meta a {
	color: #000;
    display: block;
    font-family: "Gotham Narrow Light";
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-decoration: none;
}

.archive-meta-wrapper {
	background-color: rgba(255, 255, 255, .7);
	display: none;
	height: 100%;
	position: absolute;
	width: 100%;
}

.archive:not(.woocommerce):not(.category) .entry:hover .entry-header,
.archive:not(.woocommerce):not(.category) .entry:hover .archive-meta-wrapper {
	display: block;
}

/* # WooCommerce
---------------------------------------------------------------------------------------------------- */

.woocommerce .sidebar {
	display: none;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-result-count {
	display: none !important;
}

.woocommerce .woocommerce-ordering, 
.woocommerce-page .woocommerce-ordering {
	float: left !important;
}

.woocommerce ul.products li.product h3,
.woocommerce ul.products li.product .price {
	color: #000 !important;
	text-align: center;
}

.woocommerce ul.products li.product .button {
    border-radius: 0;
    margin-top: 5px;
    text-align: center;
	width: 100%;
}

.woocommerce button.button {
	border-radius: 0 !important;
    width: 100% !important;
}

.woocommerce .related.products {
	clear: left;
	padding-top: 40px;
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
    color: #000 !important;
    font-size: 15px !important;
	text-align: center !important;
}

#add_payment_method #payment ul.payment_methods li, 
.woocommerce-cart #payment ul.payment_methods li, 
.woocommerce-checkout #payment ul.payment_methods li {
	list-style: none;
}

.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
	margin-bottom: 55px !important;
}

.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
	font-weight: 400 !important
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: #000;
	text-align: center;
}

.woocommerce .related.products h2 {
	color: #000;
	margin-bottom: 20px;
	text-align: center;
}

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

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

	/*.site-inner,*/
	.wrap {
		max-width: 1080px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.content-sidebar-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}

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

	.content-sidebar .content {
		width: 650px;
		margin-right: 40px;
	}

	.tag-letters li {
		margin-right: 5px;
	}

	.tag-letters li a {
		width: 17px;
	}

}

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

	.site-header > .wrap {
		padding-left: 20px;
	}

	.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: 690px;
	}

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

	.content-sidebar .content {
		width: 608px;
	}

	.creds {
		padding-left: 20px;
	}

	.footer-links {
		padding-right: 20px;
	}

	.home-cta-section {
		padding: 0 20px;
	}

	.home-full-width.widget-area {
		overflow: hidden;
		padding-left: 20px;
		padding-right: 20px;
	}

	.lower-homepage-widget-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.footer-widgets {
		padding: 30px 20px 0 20px;
	}

}

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

	.woocommerce .page-title,
	.woocommerce .woocommerce-ordering,
	.woocommerce .products {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

}

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

	.footer-widgets {
		padding-left: 20px;
		padding-right: 20px;
	}

}

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

	.content,
	.content-sidebar .content,
	.content-sidebar-sidebar .content,
	.content-sidebar-sidebar .content-sidebar-wrap,
	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.js .genesis-nav-menu .sub-menu a,
	.js .genesis-nav-menu .sub-menu, 
	.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%;
	}

	.sidebar {
		float: none;
		margin-left: auto;
		margin-right: auto;
		max-width: 300px;
		overflow: hidden;
	}

	.sidebar li.pins-feed-item {
		margin: 1% !important;
		width: 48% !important;
	}

	.sidebar .pinterest_rss_widget .nailthumb-container {
		text-align: center !important;
		width: 100% !important;
	}

	.sidebar .pinterest_rss_widget .nailthumb-container img.nailthumb-image {
		float: none !important;
		left: inherit !important;
		text-align: center !important
	}

	.older-posts-wrapper .older-posts-content {
		margin-top: 50px;
	}

	.content-sidebar .entry {
		padding: 20px 0 45px 0;
	}

	.pagination {
		padding-left: 30px;
		padding-right: 30px;
	}

	.site-header > .wrap {
		padding-left: 20px;
		padding-right: 20px;
	}

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

	.genesis-nav-menu,
	.site-description,
	.site-header .title-area,
	.site-header .widget-area,
	.site-title {
		text-align: center;
	}

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

	.related_post_title,
	.related_post {
		padding-left: 0;
		padding-right: 0;
	}

	.footer-widgets {
		max-width: 450px;
		margin-left: auto;
		margin-right: auto;
	}

	.footer-widgets-1, 
	.footer-widgets-2,
	.footer-widgets-3 {
		border-left: none;
		border-right: none;
		padding-left: 0;
    	padding-right: 0;
    	max-width: 600px;
    	margin-left: auto;
    	margin-right: auto;
    	float: none;
	}

	.footer-widgets-1,
	.footer-widgets-2 {
		margin: 0 auto 40px;
		overflow: hidden;
	}

	.footer-widgets-1 .widget_black_studio_tinymce:nth-child(2) {
		width: 100%;
    	margin-top: 0;
    	margin-left: 0;
	}

	.footer-widgets-1 .widget_black_studio_tinymce:nth-child(3) {
		margin-left: 0;
    	float: none;
    	overflow: hidden;
    	width: 100%;
	}

	.footer-widgets-1 .widget_media_image {
		width: 100%;
    	float: none;
    	text-align: center;
	}

	.header-featured-container .featuredpost header {
		display: none;
	}

	.header-featured-container .featuredpost article > a {
		position: inherit;
	}

	.header-featured-container .wrap {
		padding-right: 60px;
	}

	.footer-widgets .widget_nav_menu {
		margin-top: 0;
	}

}

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

	.header-image .site-title {
		width: 100%;
	}

	.header-image .site-title > a {
		display: block;
		float: none;
		margin-left: auto;
		margin-right: auto;
	}

	.site-header {
		padding-bottom: 0;
		padding-top: 10px;
	}

	.older-posts-wrapper .older-posts-content {
		margin-top: 30px;
	}

	.above-blog-widget .ck_subscribe_button,
	.post-cta-widget .ck_subscribe_button {
		margin-top: 2px;
		padding: 10px 12px;
	}

	.above-blog-widget .ck_form_container {
		margin-top: -15px;
	}

	.above-blog-widget .ck_subscribe_form,
	.post-cta-widget .ck_subscribe_form {
		margin-top: -10px;
	}

}


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

	body {
		font-size: 16px;
	}

	.after-entry,
	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings {
		padding: 30px;
		margin-bottom: 5%;
	}

	.sidebar {
		margin-bottom: 5%;
	}

	.pagination {
		margin: 0 auto 5% auto;
	}

	.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 {
		margin: 0;
		width: 100%;
	}

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

	.site-inner {
		padding-top: 0;
	}

	.header-featured-container .wrap {
		padding-left: 30px;
		padding-right: 30px;
	}

	.header-featured-container .featuredpost article {
		margin-bottom: 0;
	}

	.older-posts-wrapper .blog-featured-image {
		float: none;
		padding: 60px 0 15px 0;
		text-align: center;
		width: 100%;
	}

	.older-posts-wrapper .older-posts-content {
		float: none;
		margin-top: 0;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}

	.older-posts-wrapper .entry {
		padding: 0 0 35px 0;
	}

	.older-posts-wrapper .entry-header {
		display: none;
	}

	.mobile-entry-header {
		display: block;
		padding-top: 40px;
	}

	.mobile-entry-header .entry-header {
		display: block;
	}

	.older-posts-wrapper .blog-featured-image {
		padding-top: 0;
	}

	.js nav.nav-primary,
	.js .site-header nav  {
		display: none;
		float: none;
		position: relative;
	}

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

	.js nav.pagination {
		display: block;
	}

	.menu-toggle,
	.sub-menu-toggle {
		border-width: 0;
		background-color: #fff;
		color: #000;
		display: block;
		margin: 0 auto;
		overflow: hidden;
		text-align: center;
		visibility: visible;
	}
	
	.sub-menu-toggle:hover,
	.sub-menu-toggle:focus {
		border-width: 0;
	}

	.menu-toggle {
		line-height: 20px;
		position: relative;
		right: 0;
		z-index: 1000;
		width: 100%;
	}

	.site-header .menu-toggle {
		border: 0;
	}

	.genesis-nav-menu {
    	max-width: 300px;
    	margin-left: auto;
    	margin-right: auto;
    	border: 1px solid #f3f3f3;
    	padding: 10px;
	}

	.menu-toggle:before,
	.menu-toggle.activated:before {
		margin-right: 10px;
		text-rendering: auto;
		-webkit-transform: translate(0, 0);
		-ms-transform:     translate(0, 0);
		transform:         translate(0, 0);
	}

	.sub-menu-toggle {
		float: right;
		padding: 10px;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 100;
	}

	.sub-menu-toggle:before {
		display: inline-block;
		text-rendering: auto;
		-webkit-transform: translate(0, 0);
		-ms-transform:     translate(0, 0);
		transform:         translate(0, 0);
	}

	.sub-menu-toggle.activated:before {
		content: "\f142";
	}

	.js .nav-primary .genesis-nav-menu .menu-item,
	.js .site-header .genesis-nav-menu .menu-item {
		display: block;
		float: none;
		margin: 1px 0;
		position: relative;
		text-align: left;
	}

	.js .genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.js .nav-primary .genesis-nav-menu .menu-item a,
	.js .site-header .genesis-nav-menu .menu-item a {
		border: none;
		padding: 12px 0;
		width: 100%;
	}

	.js .genesis-nav-menu .sub-menu {
		border: none;
	}

	.js .genesis-nav-menu .menu-item > a:focus ul.sub-menu,
	.js .genesis-nav-menu .menu-item > a:focus ul.sub-menu .sub-menu {
		left: 0;
		margin-left: 0;
	}

	.js .genesis-nav-menu > .menu-item-has-children > a:after {
		content: none;
	}

	.js .genesis-nav-menu .sub-menu {
		clear: both;
		display: none;
		margin: 0;
		opacity: 1;
		padding-left: 15px;
		position: static;
		width: 100%;
	}

	.js .genesis-nav-menu .sub-menu .sub-menu {
		margin: 0;
	}

	.js nav button:hover,
	.js .menu-toggle:hover,
	.js .nav-primary {
		background-color: #fff;
		color: #000;
	}

	.js nav button:focus,
	.js .menu-toggle:focus {
		background-color: #fff;
		color: #000;
	}

	#header-wrap.wrap {
		display: none;
	}

	.site-header {
		margin-top: 10px;
	}

	/*.right-header-widget .widget_nav_menu {
		display: none;
	}

	.right-header-widget {
		padding-bottom: 8px;
	}*/

	.you-are-here-img img,
	.you-are-here-img-mobile img {
		width: 80px;
	}

	.project-index-bottom .widget-wrap .entry:nth-child(1n+14) {
		display: none;
	}

	.post-cta-widget .ck_description {
		padding-bottom: 20px;
	}

	    .flexible-widgets .wrap {
        padding-left: 0;
        padding-right: 0;
    }

    .flexible-widgets.widget-fourths .widget,
    .flexible-widgets.widget-halves .widget,
    .flexible-widgets.widget-thirds .widget {
        float: none;
        margin-left: 0;
        width: 100%;
    }

    .flexible-widgets.widget-full .widget .entry,
    .flexible-widgets.widget-halves.uneven .widget:last-of-type .entry {
        margin-left: 0;
        width: 100%;
    }

    .flexible-widgets .entry:last-of-type {
        margin-bottom: 40px;
    }

    .flexible-widgets .featured-content .entry-title,
    .half-width-entries .flexible-widgets .featured-content .entry-title,
    .flexible-widgets.widget-full .entry-title,
    .flexible-widgets.widget-halves.uneven .widget:last-of-type .entry-title {
        font-size: 28px;
        font-size: 2.8rem;
    }

    .flexible-widgets.widget-full .featured-content .more-posts,
    .flexible-widgets.widget-halves.uneven .featured-content:last-of-type .more-posts {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }

}

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

	.fl-builder-full .site-inner {
		padding-left: 0;
		padding-right: 0;
	}	

	.lower-homepage-widget-container .featured-content .entry {
		margin-bottom: 40px;
		width: 100%;
	}

	.lower-homepage-widget-container .featured-content .entry:not(:nth-child(2)) {
		margin-left: 0;
		margin-right: 0;
	}

	.portfolio-text,
	.portfolio-button-wrapper {
		width: 100%;
	}

}

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

	.flexslider .slide-excerpt-border {
		padding: 5px !important;
	}

	.flexslider .slide-excerpt-border h2 {
		font-size: 16px;
	}

	.flexslider .slide-excerpt {
		margin-top: 15% !important;
	}

	.site-footer .creds,
	.site-footer .footer-links {
		text-align: center;
		width: 100%;
	}

	.site-footer .footer-links {
		margin-top: 10px;
	}

	.footer-right {
		float: none;
		margin-top: 40px;
		text-align: center;
		width: 100%;
	}

	.credits-left, 
	.credits-right {
		text-align: center;
		width: 100%;
	}

	.credits-left {
		margin-bottom: 20px;
	}

	.genesis-nav-menu .menu-item {
    padding: 0;
}
	.post-cta-widget > .widget-wrap {
		display: inline-block;
	}

}

@media only screen and (min-width: 700px) {	
	.breadcrumbs {
		margin-top: 20px;
		margin-bottom: 0px;
		padding: 0px 10px;
	}
	}

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

	.after-entry .enews input[type=text], 
	.after-entry .enews input[type=email] {
		width: 49%;
	}

	.after-entry .enews input[type=email] {
		margin-right: 0;
	}

	.after-entry .enews input[type=submit] {
		width: 100%;
	}

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

	.comment-respond input[type="email"] {
		margin-left: 0;
		margin-right: 0;
	}

	.header-page-links .header-page-left, 
	.header-page-links .header-page-middle,
	.header-page-links .header-page-right {
		display: none;
	}

	/*.header-page-mobile {
		display: block;
	}*/

	.header-page-links .widget-area {
		width: 100%;
    	float: none;
    	text-align: center;
	}

	.header-page-links {
		margin-top: 0;
		margin-bottom: 10px;
	}

	.above-blog-widget,
	.post-cta-widget {
		margin-bottom: 0;
	}

	.above-blog-widget .widget:nth-child(1),
	.above-blog-widget .widget:nth-child(2),
	.post-cta-widget .widget:nth-child(1),
	.post-cta-widget .widget:nth-child(2)  {
		width: 100%;
	}

	.above-blog-widget .widget:nth-child(1) img,
	.post-cta-widget .widget:nth-child(1) img {
		display: none;
	}

	.above-blog-widget .header-headshot-mobile,
	.post-cta-widget .header-headshot-mobile {
		display: inline-block;
		margin-bottom: 5px;
		margin-right: 5px;
		max-width: 100px !important
	}

	.above-blog-widget .ck_subscribe_form,
	.post-cta-widget .ck_subscribe_form  {
		clear: both;
	}

	.below-blog-widget article.entry {
		text-align: center;
		width: 48.5%;
	}

	.below-blog-widget .widget-wrap article.entry:not(:nth-child(2)) {
		margin-left: 0;
	}

	.below-blog-widget .widget-wrap article.entry:nth-child(even) {
		clear: left;
	}

	.below-blog-widget .widget-wrap article.entry:nth-child(odd) {
		margin-left: 3%;
	}

	.entry-tags-wrapper {
		width: 100%;
    	text-align: center;
    	margin-bottom: 10px;
	}

	.entry-comment-wrapper {
		width: 100%;
    	text-align: center;
    	border-top: 1px solid #fff;
    	padding-top: 10px;
	}

	.single .content-sidebar .entry {
		padding-bottom: 10px;
	}

	.project-index-top {
		margin-top: 30px;
	}

	.project-index-top .widget:not(:first-child) {
		margin-left: auto;
		margin-right: auto;
	}

	.project-index-top .widget {
		float: none;
		width: 100%;
		max-width: 450px;
		margin-left: auto;
		margin-right: auto;
	}

	.project-index-top .widget-title {
		font-size: 17px;
		margin-bottom: 0px;
	}

	.content-sidebar .project-index-bottom .entry {
		width: 32%;
	}

	.content-sidebar .project-index-bottom .widget-wrap .entry:first-of-type, 
	.content-sidebar .project-index-bottom .widget-wrap .entry:nth-child(3n+2) {
		clear: left;
		margin-left: 0;
	}

	.archive .content .entry:not(:nth-child(4n+2)) {
		margin-left: 0;
	}

	.archive .content .entry:not(:nth-child(2n+2)) {
		margin-left: 2%;
	}

	.archive:not(.woocommerce) .entry {
		width: 49%
	}

	.archive .content .entry:nth-child(4n+6) {
		clear: none;
	}

	.archive .content .entry:nth-child(2n+4) {
		clear: left;
	}

	.tag-list,
	.child-category-list {
		columns: 2;
		-webkit-columns: 2;
		-moz-columns: 2;
	}
}

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

	.site-header {
		margin-top: 0;
	}

	.header-image .site-title > a {
		height: 178px;
	}

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

	.entry-title {
		font-size: 22px;
	}

	.entry-comment-wrapper {
		width: 100%;
	    display: block;
	    text-align: center;
	}

	.entry-share-wrapper {
		width: 100%;
	    display: block;
	    margin-top: 2px;
	    padding-top: 3px;
	    text-align: center;
	}

	blockquote {
		margin-left: 0;
		margin-right: 0;
	}

	table {
		font-size: 12px;
	}

	.creds {
		display: block;
	    float: none;
	    padding-left: none;
	    text-align: center;
	    width: 100%;
	}

	/*.left-header-widget,
	.right-header-widget {
		display: block;
		float: none;
		text-align: center;
	}

	.left-header-widget {
		display: none;
	}*/

	/*.left-header-widget {
		margin-top: 10px;
	}*/

	/*.right-header-widget .widget_search {
		float: none;
	}*/

	.woocommerce ul.products li.product, 
	.woocommerce-page ul.products li.product {
		width: 100% !important;
	}

	.woocommerce .related.products ul {
		padding-left: 0 !important;
		padding-right: 0 !important
	}

	.pagination {
		max-width: 100%;
	}

	.related_post li {
		margin-bottom: 10px;
		width: 48%;
	}

	.related_post li:not(:first-child) {
		margin-left: 0;
	}

	.related_post li:nth-child(even) {
		margin-left: 1.5%;
	}

	.related_post li:nth-child(odd) {
		clear: left;
	}

}

@media only screen and (min-width: 600px) {
	.single-post article img {
		max-width: 600px;
	}}


@media only screen and (min-width: 500px) {
	.textbox i {
		padding-right: 0.3em;
	}

	.textbox p {
		padding-right: 2em;
	}}

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

	.header-image .site-title > a {
		min-width: inherit;
		max-width: 100%;
	}

	.lower-homepage-widget-container .featured-content .entry {
		width: 100%;
	}

	.lower-homepage-widget-container .featured-content .entry:nth-child(odd) {
		margin-left: 0;
	}

	.lower-homepage-widget-container .widget-wrap {
		padding-bottom: 0;
	}

	.after-entry .enews input[type=text], 
	.after-entry .enews input[type=email] {
		width: 100%;
		margin-right: 0;
	}

	.header-button-left, 
	.header-button-right {
		width: 100%;
		float: none;
	}

	.header-button-left {
		margin-bottom: 0;
		margin-right: 0;
	}

	.header-button-right {
		margin-top: 10px;
	}

	.header-button-left a, 
	.header-button-right a {
		font-size: 16px;
		font-weight: 500;
		padding: 12px 10px;
	}

	.you-are-here-img {
		display: none;
	}

	.you-are-here-img-mobile {
		display: block;
		margin-top: 5px;
		padding-bottom: 5px;
	}

	.header-page-links {
		margin-bottom: 0;
	}

	.above-blog-widget .ck_control_group, 
	.above-blog-widget .ck_subscribe_button,
	.post-cta-widget .ck_control_group, 
	.post-cta-widget .ck_subscribe_button {
		width: 100%;
	}

	.above-blog-widget .ck_control_group,
	.post-cta-widget .ck_control_group {
		margin-bottom: 7px;
	}

	.above-blog-widget .ck_email_field_group,
	.post-cta-widget .ck_email_field_group {
		margin-left: 0;
		margin-right: 0;
	}

	.above-blog-widget .ck_description,
	.post-cta-widget .ck_description {
		max-width: none;
	}

	.above-blog-widget,
	.post-cta-widget {
		padding: 18px 18px 20px 18px;
	}

	.entry-header .entry-meta {
		margin-top: 10px;
	}

	.entry-comments,
	.comment-respond {
		padding-left: 0;
		padding-right: 0;
	}	

	.bottom-footer-widget #sb_instagram {
		display: none;
	}

	.flexible-widgets .widget {
    	padding: 0px;
    }

	.textbox i {
		padding-right: 0.3em;
		margin: -0.3em;
	}

	.flexible-widgets .widget {
    	padding: 0px;
    }
	p.breadcrumbs {
		font-size: 0.75em !important;
		margin: 0px;
		padding: 0px;
	}
	.header-image .site-title > a {
		height: 150px;
	}
	.header-image .title-area {
		padding-top: 0px;
	}

}

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

	.after-entry .widget-wrap {
		padding: 30px;
	}

	.archive-pagination .pagination-previous, 
	.archive-pagination .pagination-next {
		width: 100%;
		text-align: center;
	}

	.archive-pagination .pagination-next {
		margin-top: 10px;
	}

	.more-link {
		padding: 8px 35px;
	}

}

/* # Print Styles
---------------------------------------------------------------------------------------------------- */

@media print {

	*,
	*:before,
	*:after {
		background: transparent !important;
		box-shadow: none !important;
		color: #000 !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: " (" attr(href) ")";
	}

	abbr[title]:after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]:after,
	a[href^="#"]:after,
	.site-title > a:after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	.content,
	.content-sidebar {
		width: 100%;
	}

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title > a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.site-inner {
		padding-top: 0;
		position: relative;
		top: -100px;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}

/*Menu search bar*/
@media only screen and (max-width: 860px) {
.nav-primary .search, .nav-primary .fa {
	display: none !important;
	}}

.nav-primary {
	overflow: visible;
}

.nav-primary input[type="submit"] {
	display: none;
}

.nav-primary input {
	width: 200px;
}

.fa .sub-menu {
	border-top: none;
}

/*WOOCOMMERCE FILTERS*/
.wcpf-text-list-title.wcpf-field-title.wcpf-heading-label, .woocommerce-ordering {
	display: none;
}

.wcpf-text-list.field-input-container.wcpf-content {
	text-transform: uppercase;
	text-align: center;
	color: #000;
    display: block;
    font-family: "AW Conqueror Sans", sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    letter-spacing: 1.5px;
}

.wcpf-field-text-list .wcpf-text-list .wcpf-text-item:not(.disabled) .wcpf-text-label:hover,
.wcpf-field-text-list .wcpf-text-list .wcpf-text-item.selected>.wcpf-text-item-inner>.wcpf-text-label {
	color: #a7b9c3;
	font-weight: normal !importantss;
}

.page-id-5584 .flexible-widgets {
	display: none;
}


