/*
	Theme Name: Blackberry Babe
	Description: Blog Theme for Blackberry Babe Food Blog
	Author: Melanie Anne Creative
	Author URI: http://www.melanieannecreative.com/
	Version: 1.0
	Tags: purple, green, two-columns, right-sidebar, responsive
	Template: genesis
	Template Version: 2.0.1
	License: GPL-2.0+
	License URI: http://www.opensource.org/licenses/gpl-license.php
*/


/* Table of Contents
	- HTML5 Reset
		- Baseline Normalize
		- Box Sizing
		- Float Clearing
	- Defaults
		- Typographical Elements
		- Headings
		- Objects
		- Forms
		- Tables

	- Structure and Layout
		- Site Containers
		- Column Widths and Positions
		- Column Classes

	- Common Classes
		- WordPress
		- Genesis
		- Titles

	- Widgets
		- Featured Content

	- Plugins
		- Jetpack
		- Simple Social Icons

	- Site Header
		- Top Bar
		- Title Area
		- Widget Area

	- Site Navigation
		- Primary Navigation
		- Top Bar Navigation

	- Content Area
		- Entries
		- Pagination
		- Comments

	- Sidebars
	- Footer Widgets
	- Site Footer
	- Color Options
		- Mint
		- Dusty Purple
		- Mustard
	- Media Queries
		- max-width: 1024px
		- max-width: 768px
		- max-width: 568px
		- max-width: 400px

*/

/*

HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* Baseline Normalize
	normalize.css v2.1.2 | MIT License | git.io/normalize
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;margin:0}button,input{line-height:normal}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}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}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}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}

/* Box Sizing
--------------------------------------------- */

*,
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}



/* Float Clearing
--------------------------------------------- */

.archive-pagination:before,
.clearfix:before,
.entry:before,
.entry-pagination:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
	content: " ";
	display: table;
}

.archive-pagination:after,
.clearfix:after,
.entry:after,
.entry-pagination:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}



/*
Defaults
---------------------------------------------------------------------------------------------------- */


/* Typographical Elements
--------------------------------------------- */

html {
	font-size: 62.5%; /* 10px browser default */
}

body {
font-family: 'Open Sans', sans-serif;
font-style: normal;
color: #2A2E35;
font-weight: 400;
line-height: 20px;
font-size:14px;
margin: 0;
padding: 0;
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button {
	-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: #333;
	color: #fff;
}

::selection {
	background-color: #333;
	color: #fff;
}

a {
	color: #096871;
	font-weight:600;
	transition: color 0.30s ease;
	text-decoration:none;
}

a img {
	margin-bottom: -4px;
	margin-bottom: -0.4rem;
}

a:hover {
	color: #590f40;
}

p {
	margin: 0 0 24px;
	margin: 0 0 2.4rem;
	padding: 0;
}

strong {
	font-weight: 700;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

blockquote,
blockquote::before {
	color: #999;
}

blockquote {
	margin: 40px 40px 24px;
	margin: 4rem 4rem 2.4rem;
}

blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	font-size: 3rem;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}

.entry-content code {
	background-color: #333;
	color: #ddd;
}

cite {
	font-style: normal;
}

.screen-reader-text {
	position: absolute;
	left: -999em;
}

/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Sanchez', serif;
	font-weight: 400;
	letter-spacing:0px;
	margin: 0 0 20px;
	color:#590F40;
	text-transform:uppercase;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 25px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 16px;
}


/* ## Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
}

.featured-content img,
.gallery img {
	width: auto;
}


/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	padding:8px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

::-moz-placeholder {
	color: #949494;
}

::-webkit-input-placeholder {
	color: #949494;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button {
    display: inline-block;
    padding: 5px 15px;
    font-weight: 400;
    text-transform: uppercase;
    background-color: #096871;
    color: #fff;
    font-size:12px;
	border:0px;
}

.button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
.entry-content .button:hover {
    background-color: #590f40;
    color: #fff;
}

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;
	margin-bottom: 4rem;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

th,
td {
	text-align: left;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
	padding: 0.6rem 0;
}


/*
Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* Site Containers
--------------------------------------------- */

.site-inner {
	clear: both;
	padding-top: 30px;
	margin: 0 auto;
	max-width: 1100px;
	background:#fff;
}

.wrap {
	margin: 0 auto;
	max-width: 1100px;
}



/* 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: 700px;
}

.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: 790px;
	margin-bottom: 30px;
    padding: 20px;
}

.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: 300px;
}

.full-width-content .content {
	width: 100%;
}

/* Primary Sidebar */

.sidebar-primary {
	float: right;
	width: 310px;
	background-color:#F4F4F4;
       padding: 1px; 
}

.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
	float: left;
}

/* Secondary Sidebar */

.site-footer ul {
text-align:left;
}

.site-footer li {
display: inline-block;
    margin-right: 7px;
    text-transform: uppercase;
    font-size: 11px;
}

.site-footer li a {
    border-bottom: 0px;
}

.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;
}

.one-half .alignleft {
	float: none;
	display: block;
}


/*
Common Classes
---------------------------------------------------------------------------------------------------- */

/* WordPress
--------------------------------------------- */

.avatar {
	float: left;
}

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 24px;
}

img.alignnone,
.alignnone {
	margin-bottom: 5px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 15px 15px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 15px 15px;
}

.wp-caption {
	border: 1px solid #ddd;
	border-radius:3px;
	padding: 10px;
}

.wp-caption-text {
	font-size: 11px;
	font-weight: 400;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.sticky {
}

/* Genesis
--------------------------------------------- */

.breadcrumb {
	margin-bottom: 20px;
	margin-bottom: 2rem;
}

.archive-description,
.author-box {
	background-color: #fff;
	margin-bottom: 40px;
	margin-bottom: 4rem;
}

.author-box {
	padding: 40px;
	padding: 4rem;
}

.author-box-title {
	color: #333;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 4px;
	margin-bottom: 0.4rem;
}

.author-box a {
	border-bottom: 1px solid #ddd;
}


.author-box p {
	margin-bottom: 0;
}


.author-box .avatar {
	margin-right: 24px;
	margin-right: 2.4rem;
}

/* Featured Posts
--------------------------------------------- */

.recent-posts, .popular-posts {
	clear: both;
	padding-top: 30px;
	margin: 0 auto;
	max-width: 1100px;
	background:#fff;
}

.recent-posts {
margin-bottom:20px;
}

.recent-posts .entry {
    display: inline-block;
	text-align:center;
    width: 33%;
    margin-bottom: 50px;
    padding: 0px 2px;
	border-bottom:0px;
	float:left;
}

.recent-posts .widget-title {
	background:url(http://blackberrybabe.com/wp-content/uploads/2016/11/recentposts.png) right no-repeat;
	background-size:216px 37px;
	text-indent: -9999px;
	margin-right:20px;
	margin-bottom:10px;
    height: 38px;
}

.recent-posts img {
    border:solid 3px #590F40;
    position: relative;
    margin-bottom: -30px;
}

.recent-posts h2 {
    font-size: 12px;
    text-align: center;
    background: #590f40;
    height: 48px;
    display: block;
    margin: 0 auto;
    width: 238px;
    position: relative;
    z-index: 1;
}

.recent-posts h2 a {
line-height:48px;
color:#fff;
}

.popular-posts .entry {
    display: inline-block;
	text-align:center;
    width: 16%;
    margin-bottom: 10px;
    padding: 0px 10px;
	border-bottom:0px;
	float:left;
}

.popular-posts img {
    border:solid 3px #590F40;
    margin-bottom: 0px;
}

.popular-posts h2 {
    font-size: 11px;
    text-align: center;
line-height: 13px;
height:26px;
}
.popular-posts .widget-title {
	background:url(http://blackberrybabe.com/wp-content/uploads/2016/11/popularposts.png) left no-repeat;
	background-size:283px 38px;
	text-indent: -9999px;
	margin-bottom:10px;
    height: 38px;
}

.sidebar .entry {
    display: inline-block;
	text-align:center;
    width: 50%;
    margin-bottom: 10px;
    padding: 0px 10px;
	border-bottom:0px;
	float:left;
background:#f4f4f4;
}

.sidebar .entry img {
    border:solid 3px #590F40;
    margin-bottom: 0px;
}

.sidebar .entry h2 {
    font-size: 11px;
    text-align: center;
line-height: 13px;
    margin: 0px;
height:26px;
}



/* Titles
--------------------------------------------- */

.entry-title {
    position: relative;
    color: #590f40;
    display: block;
    text-align: left;
    font-family: 'Sanchez', serif;
    font-size: 28px;
    letter-spacing: 0px;
	line-height: 1;
}

.sidebar .entry-title {
	font-size: 12pt;
}

.entry-title a,
.sidebar .widget-title a {
	color: #590f40;
	font-weight: 400;
    font-size: 22px;
text-align:left;
}

.sidebar .widget-title {
	color:#590F40;
}

.sidebar .widget-title:before {
content:url(http://blackberrybabe.com/wp-content/uploads/2016/11/sidebar-widget-before.png);
}

.entry-title a:hover {
	color: #096871;
}

.widget-title {
    position: relative;
    color: #590f40;
    display: block;
    text-align: left;
    font-family: 'Sanchez', serif;
    font-size: 16px;
    letter-spacing: 0px;
}

.logos-wrapper {
	background-color:#f4f4f4;
	margin-top: 40px;
    clear: both;
}

#logos {
display:block;
	background:url(http://blackberrybabe.com/wp-content/uploads/2016/11/asseenon.png) no-repeat center;
    background-size: contain;
min-height: 150px;
    margin: 0 auto;
width:954px;
}


/*
Widgets
---------------------------------------------------------------------------------------------------- */

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	padding: 20px;
}

.featured-content .entry-title a {
	font-size: 16px;
}

.sidebar .entry {
	padding: 5px;
}

/*
Plugins
---------------------------------------------------------------------------------------------------- */

/* Shortcodes
--------------------------------------------- */
.page-id-1241 .su-row .su-column {
    border: 2px solid #F4F4F4;
    padding: 10px;
}

/* Boxzilla
--------------------------------------------- */
.boxzilla {
	background: url('http://blackberrybabe.com/wp-content/uploads/2016/11/emailopinpopup.png') center top !important;
	padding: 0 25px 25px !important;
}

.boxzilla-content {
	margin-top: 80px;
}

.boxzilla-close-icon {
    color: #fff !important;
}

.boxzilla input[type="submit"] {
	background: #590F40;
	height: 40px;
	width: 100%;
}

.boxzilla p {
	margin-bottom: 15px;
}

.boxzilla input, select, textarea {
	margin-bottom: 11px;
}

/* Genesis eNews Extended
--------------------------------------------- */

.sidebar .enews {
    background-color: #096871;
    padding: 15px;
text-align:center;
	color:#fff;
}

.sidebar .enews .widget-title {
text-align:center;
margin-top:-45px;
color:#FFF;
}

.sidebar .enews .widget-title:before {
    content: url(http://blackberrybabe.com/wp-content/uploads/2016/11/envelope-small.png);
    display: block;
    text-align: center;
}

.sidebar .enews-widget input {
	margin-bottom: 10px;
	width: 100%;
}

.sidebar .enews-widget input[type="submit"] {
	background:#590F40;
}

.sidebar .enews-widget input:hover[type="submit"] {
	background:#00939D;
}

/* Jetpack
--------------------------------------------- */

img#wpstats {
	display: none;
}


/* CF7
--------------------------------------------- */

.wpcf7 input:hover[type="submit"], .wpcf7 input[type="submit"] {
width:100%;
height:40px;
}

/*
Simple Social Icons
---------------------------------------------------------------------------------------------------- */

.top-bar .simple-social-icons ul li a {
	background-color: #636363 !important;
	color: #ffffff !important;
	font-size: 14px !important;
}



/*
Instagram
---------------------------------------------------------------------------------------------------- */
#sb_instagram {
margin-top: -30px !important;
}

/*
Site Header
---------------------------------------------------------------------------------------------------- */
.site-header .wrap {
	padding: 70px 0;
}


/* Title Area
--------------------------------------------- */

.site-header {

}

.title-area, .site-title {
	text-align:center;
	width: 100%;
}

.header-image .title-area a {
	background: url(http://blackberrybabe.com/wp-content/uploads/2016/11/header-logo.png) no-repeat;
	background-position:left;
	background-size:285px 127px;
	    min-height: 170px;
    width: 30%;
    float: left;
}

#home-subscribe {
background:url(http://blackberrybabe.com/wp-content/uploads/2016/11/emailoptinbg.png) no-repeat center;
background-size:922px 208px;
    padding: 20px;
text-align: center;
margin:0 auto;
width: 88%;
height: 208px;
margin-bottom:20px;
}

#home-subscribe-inner {
    margin-top: 60px;
}


#home-subscribe form {
display:inline-block;
}

#home-subscribe input {
width:310px;
background: #ffffff;
height:40px;
margin-left: 10px;
text-transform:uppercase;
}

#home-subscribe input[type="submit"] {
background:#590F40;
width:100px;
border:0px;
}

.instagram-wrapper {
	clear: both;
	padding-top: 30px;
	padding-bottom:30px;
	margin-top:50px;
	background-color:#F4F4F4;
}

#instagram {
    padding: 15px;
    margin-bottom: 40px;
width:1100px;
background-color:#F4F4F4;
	margin: 0 auto;
}

.instagram-title {
background:url(http://blackberrybabe.com/wp-content/uploads/2016/11/instagram.png) no-repeat;
background-size: 334px 80px;
    height: 80px;
    width: 334px;
    margin-top: -95px;
    margin-left: -50px;
    display: block;
    margin-bottom: 15px;
}

.insta-link {
    background: #590F40;
    color: #fff;
    padding: 2px 10px;
    float: right;
    font-size: 12px;
}

.insta-link:hover {
color:#F4F4F4;
}

.site-title {
}

.site-title a {
display:none;
}

.site-title a:hover {

}

.site-description {
	color: #999;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1;
	margin-bottom: 0;
	display:none;
}

/* Full width header, no widgets */

.header-full-width .title-area,
.header-full-width .site-title {
	width: 100%;
}

.header-image .site-title a {
	display: block;
	text-indent: -9999px;
}

/* Logo, hide text */

.header-image .site-header .wrap {
	padding: 0;
    border-bottom: 2px dashed #e3e3e3;
}


/* Widget Area

--------------------------------------------- */

.widget-area {
	word-wrap: break-word;
}

.widget-area .header-widget-area {
	position: relative;
	float:right;
	width: 440px;
	list-style: none;
}

.header-image .site-header .widget-area {
	position: relative;
	float:right;
	width: 70%;
	text-align:right;
	list-style: none;
	margin-top:25px;
}


/* Recipes
--------------------------------------------- */

.recipes-top .widget {
	float: left;
	margin-right: 1%;
	width: 32%;
}

.recipes-top .widgettitle {
color:#fff;
text-align:center;
}

.recipes-top {
	background: #096871;
	color:#fff;
	padding: 20px;
	height: 120px;
	margin-bottom: 40px;
}

.recipes-top input[type="submit"] {
	display:none;
}

.recipes-bottom {
	margin-top: 20px;
	margin-top: 2rem;
}

.recipes-bottom .widget {
	border-bottom: 2px dashed #e3e3e3;
	clear: both;
	margin-top: 30px;
}

.recipes-bottom .widgettitle {
font-size: 20px;
}

.recipes-bottom img {
    border: solid 3px #590F40;
}

.recipes-bottom .widgettitle:before {
    content: url(http://blackberrybabe.com/wp-content/uploads/2016/11/date-before.png);
}

.recipes-bottom .entry {
	float: left;
	margin-left: 2.564102564102564%;
	width: 23.076923076923077%;
	padding:5px;
}

.recipes-bottom .gfwa-1,
.recipes-bottom .gfwa-5,
.recipes-bottom .gfwa-9,
.recipes-bottom .gfwa-13,
.recipes-bottom .gfwa-17,
.recipes-bottom .gfwa-21,
.recipes-bottom .gfwa-25,
.recipes-bottom .gfwa-29,
.recipes-bottom .gfwa-33,
.recipes-bottom .gfwa-37,
.recipes-bottom .gfwa-51,
.recipes-bottom .gfwa-55,
.recipes-bottom .gfwa-59,
.recipes-bottom .gfwa-63,
.recipes-bottom .gfwa-67,
.recipes-bottom .gfwa-71,
.recipes-bottom .gfwa-75,
.recipes-bottom .gfwa-79,
.recipes-bottom .gfwa-83,
.recipes-bottom .gfwa-87,
.recipes-bottom .gfwa-91,
.recipes-bottom .gfwa-95 {
	clear: both;
	margin-left: 0;
}

.recipes-bottom .featuredpost h2{
    font-size: 11px;
    text-align: center;
    line-height: 13px;
    height: 30px;
}

.recipes-bottom .featuredpost .post-info,
.recies-bottom .featuredpost .post-meta {
	font-size: 10px;
	font-size: 1rem;
}

.more-from-category {
    clear: both;
    display: block;
    float: none;
    text-align: center;
}

.more-from-category a {
    display: inline-block;
    padding: 5px 15px;
    font-weight: 400;
    text-transform: uppercase;
    background-color: #590f40;
    margin:0 auto;
    color: #fff;
    font-size:12px;
    border:0px;
}

.more-from-category a:hover {
    background-color: #096871;
    color: #fff;
}

/*
Site Navigation
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	position: relative;
	text-align: right;
	line-height: 48px;
	color: #000;
	letter-spacing: 1px;
	padding-top:30px;
}


.genesis-nav-menu .menu-item {
	display: inline-block;
	text-align: left;
}

.genesis-nav-menu a {
	color: #096871;
    font-family: 'Sanchez', serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0px 0px 0px 5px;
}

.genesis-nav-menu a:hover {
	color: #80476D;
}

.genesis-nav-menu li:after {
content:'/';
color:#590F40;
padding-left:10px;
}

.genesis-nav-menu li:last-child:after {
content:'';
}


.genesis-nav-menu .sub-menu {
	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: 250px;
	z-index: 99;
}

.genesis-nav-menu .sub-menu li {
	border-bottom: 2px solid #F59383;
	width:200px;
	background-color: #FEEFE9;
	padding-left:10px;
}

.genesis-nav-menu .sub-menu .current-menu-item a {
	background:transparent;
}

.genesis-nav-menu .sub-menu li:after {
	content:'';
	
}

.genesis-nav-menu .sub-menu li:hover {
	background-color: #2A2E35;
	color: #fff;
}

.genesis-nav-menu .sub-menu a {
	color: #F59383;
	font-size: 14px;
	position: relative;
	text-transform:uppercase;
}

.genesis-nav-menu .sub-menu a:hover {
	color: #FEEFE9 !important;
	background: transparent;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

.sidebar .search-form input[type="submit"] {
display:none;
}



.to-top {
	display:inline-block;
	height:70px;
	width:70px;
	position:fixed;
	bottom:25px;
	right:10px;
	overflow:hidden;
	text-indent:100%;
	white-space:nowrap;
	background:url(images/backtotop.png) no-repeat center;
	background-size:70px;
	visibility:hidden;
	opacity:0;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
	transition:all .3s;
}

.to-top.top-is-visible {
	visibility:visible;
	opacity:1;
}

.to-top.top-fade-out {
	opacity:1;
}

.no-touch .to-top:hover {
	background-color:#e86256;
	opacity:1;
}

@media only screen and (min-width: 768px) {

	.to-top {
		right:20px;
		bottom:20px;
	}
}

@media only screen and (min-width: 1024px) {
	.to-top {
		height:70px;
		width:70px;
		right:30px;
		bottom:25px;
	}
}

/* Primary Navigation
--------------------------------------------- */

.nav-primary .sub-menu a:hover {
	color: #636363;
}

.nav-primary .dashicons, .dashicons-before:before {
    display: inline-block;
    font-size: 25px;
    vertical-align: middle;
    height: 30px;
	width:25px;
}

/* Top Bar Navigation
--------------------------------------------- */

/*
Hellobar
---------------------------------------------------------------------------------------------------- */

#hellobar {
position:relative;
z-index: 200;
height:60px;
background-color: #636363;
width:100%;
    clear: both;
}

#hellobar-inner {
font-family:'Sanchez', serif;
color:#fff;
font-size: 18px;
margin:0 auto;
line-height: 60px;
width:1000px;
font-weight: 400;
}

#hellobar form {
display:inline-block;
}

#hellobar input[type="submit"] {
    width: 150px;
    background-color: #00939D;
    color: #fff;
    height: 33px;
}


#hellobar  input[type="submit"]:hover {
width:150px;
color: #fff;
height: 33px;
}

#hellobar input {
width:350px;
margin-left: 10px;
border:0px;
}

/*
Content Area
---------------------------------------------------------------------------------------------------- */

/* Entries
--------------------------------------------- */

.entry {
	background-color: #fff;
	padding:20px;
}

.entry-content .attachment a,
.entry-content .gallery a {
	border: none;
}

.entry-content ol,
.entry-content ul,
.quote-caption {
	margin-bottom: 26px;
	margin-bottom: 2.6rem;
}

.entry-content ol,
.entry-content ul {
	margin-left: 40px;
	margin-left: 4rem;
}

.entry-content ol li {
	list-style-type: decimal;
}

.entry-content ul li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content .search-form {
	width: 50%;
}

.entry-header img {
border:3px solid #590f40;
}

.entry-header .entry-meta {
    font-family: 'Sanchez', serif;
    text-align: left;
    font-size: 9pt;
    text-transform: uppercase;
    color: #590f40;
    margin-top: -15px;
    font-weight: 600;
}

.entry-header .entry-meta:before {
content:url(http://blackberrybabe.com/wp-content/uploads/2016/11/date-before.png);
}

.entry-footer .entry-meta {
    font-family: 'Sanchez', serif;
    text-align: left;
    font-size: 9pt;
    text-align: left;
    text-transform: uppercase;
    color: #590f40;
    font-weight: 600;
}

.entry-footer .entry-meta:before {
content:url(http://blackberrybabe.com/wp-content/uploads/2016/11/date-before.png);
}

.home .entry-footer .entry-meta, .page-template-page_blog .entry-footer .entry-meta, .archive .entry-footer .entry-meta{
display:none;
}

.read-more-button {
    display: inline-block;
    padding: 5px 15px;
    font-weight: 400;
    text-transform: uppercase;
    background-color: #096871;
    color: #fff;
	font-size:12px;
}

.read-more-button:hover {
    background-color: #590f40;
    color: #fff;
}

.post-meta {
	text-align:center;
	text-transform:uppercase;
	font-size:10pt;
	margin-top:-15px;
}


.post-info {
	text-transform:uppercase;
	text-align: center;
}

/* Pagination
--------------------------------------------- */

.archive-pagination,
.entry-pagination {
	font-size: 14px;
	font-size: 1.4rem;
	margin: 20px 20px;
    clear: both;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #fff;
	border: 1px solid #096871;
	color: #096871;
	cursor: pointer;
	display: inline-block;
	padding: 8px 12px;
	padding: 0.8rem 1.2rem;
}

.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #fff;
	border: 1px solid #590f40;
	color: #590f40;
}

.entry-pagination a {
	border-bottom: 1px solid #ddd;
}

/* Comments
--------------------------------------------- */

.comment-reply-title, .entry-comments h3 {
    font-size: 16px;
    height: auto;
}

.entry-comments h3:before, .comment-reply-title:before {
    content: url(http://blackberrybabe.com/wp-content/uploads/2016/11/date-before.png);
}

.comment-respond,
.entry-comments,
.entry-pings {
	background-color: #fff;
}

.entry-comments {
    padding-top: 30px;
    border-top: 2px dashed #e3e3e3;
}

li.comment {
    border-top: 1px solid #F4F4F4;
}

.comment-respond,
.entry-pings {
	padding: 20px 0px;
}

.avatar {
border-radius:50%;
}

.comment-content {
	clear: both;
}

.entry-comments .comment-author {
	margin-bottom: 0;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%
}

.comment-respond label {
	display: block;
	margin-right: 12px;
	margin-right: 1.2rem;
}

.comment-list li,
.ping-list li {
	list-style-type: none;
}

.comment-list li {
	margin-top: 24px;
	margin-top: 2.4rem;
	padding: 32px;
	padding: 3.2rem;
}

.comment-list li li {
	margin-right: -32px;
	margin-right: -3.2rem;
}

li.comment {
	border-bottom: 0px dotted #767676;
	border-right: none;
}

.comment .avatar {
	margin: 0 16px 24px 0;
	margin: 0 1.6rem 2.4rem 0;
}

.entry-pings .reply {
	display: none;
}

.bypostauthor {
}

.form-allowed-tags {
	background-color: #f5f5f5;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 24px;
	padding: 2.4rem;
}

.comment-form input[type="submit"]{
width:auto;
}

/*
Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar a {
transition: color 0.30s ease;
}

.sidebar p:last-child {
	margin-bottom: 0;
}

.sidebar li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
	word-wrap: break-word;
}

.sidebar ul > li:last-child {
	margin-bottom: 0;
}

.sidebar .widget {
	margin-bottom: 20px;
	padding: 15px;
	clear: both;
}

/*
Footer Widgets
---------------------------------------------------------------------------------------------------- */

.footer-widgets {
	clear: both;
	padding-top: 40px;
	background:#636363;
}

.footer-widgets .wrap {
	padding-bottom: 15px;
}

.footer-widgets .widget-title {
	color:#FFFFFF;
}

.footer-widgets .widget-title:before {
content:url(http://blackberrybabe.com/wp-content/uploads/2016/11/footer-widget-before.png);
}


.footer-widgets-1, .footer-widgets-2, .footer-widgets-3 {
	width:33%;
}

.footer-widgets-1 {
	float:left;
	padding-right:50px;
}

.footer-widgets-2 {
	float:left;
	padding-right:30px;
}

.footer-widgets-2 input, select, textarea {
	margin-bottom:10px;
}

.footer-widgets-3 {
	float:right;
}

.footer-widgets .widget {
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.footer-widgets li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
	word-wrap: break-word;
}

.footer-widgets input[type="submit"] {
	width: 100%;
	background-color:#590F40;
	height:37px;
}

.footer-widgets input[type="submit"]:hover {
	background-color:#00939D;
}

/*
Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
	background-color: #FFFFFF;
	color: #636363;
	font-size: 12px;
	padding: 20px 10px;
	text-align: right;
}

.creds {
background-color:#FFFFFF;
}

.site-footer a {
	border-bottom:1px dotted #ddd;
	transition: color 0.30s ease;
}

.site-footer p {
	margin-bottom: 0;
}

/*
Media Queries
---------------------------------------------------------------------------------------------------- */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	only screen and (-moz-min-device-pixel-ratio: 1.5),
	only screen and (-o-min-device-pixel-ratio: 3/2),
	only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {

}

@media only screen and (max-width: 1099px) {

	body {
		background-color: #fff;
	}

	.content,
	.content-sidebar-sidebar .content,
	.content-sidebar-sidebar .content-sidebar-wrap,
	.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
	.site-inner,
	.title-area,
	.wrap,
	#instagram {
		width: 100%;
	}

	.header-image .title-area a{
    		background-position:center bottom;
		width: 100%;
		float: none;
	}

	.header-image .site-header .widget-area {
    		float: none;
    		width: 100%;
		text-align:center;
		margin-top: 0px;
	}


	.site-inner {
		padding-left: 5%;
		padding-right: 5%;
	}

	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-footer .entry-meta,
	.header-image .site-header .widget-area,
	.sidebar .widget {
		padding: 20px;
	}

	.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;
	}

	.genesis-nav-menu a,
	.genesis-nav-menu > .first > a,
	.genesis-nav-menu > .last > a {
	}

	.site-header .search-form {
		margin: 16px auto ;
		margin: 1.6rem auto;
	}

	.genesis-nav-menu li.right {
		display: none;
	}

	.entry-footer .entry-meta {
		margin: 0;
		padding-top: 12px;
		padding-top: 1.2rem;
	}

	.sidebar .widget.enews-widget {
		padding: 40px;
		padding: 4rem;
	}

	.site-footer {
		padding: 20px;
	}

	.sidebar .widget-title:after {
	border-color: #fff transparent;
	}

	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.footer-widgets-4 {
		padding: 0px 15px;
	}

	.instagram-wrapper {
		padding-top:0px;
	}

	.instagram-title {
	background:url(http://blackberrybabe.com/wp-content/uploads/2016/11/instagram-mobile.png) no-repeat;
	background-size: 299px;
    	height: 80px;
    	width: 299px;
	margin: 0 auto;
    	margin-top: 0px;
	}

}

@media only screen and (max-width: 1024px) {

.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
	width: 100%;
	height:auto;
	text-align: center;
	float: none;
}

.footer-widgets .widget-title {
text-align:center;
}

#home-subscribe {
background:url(http://blackberrybabe.com/wp-content/uploads/2016/11/emailoptinbgmobile.png) no-repeat center;
background-size:922px 303px;
height:303px;
}

.one-half {
	width:100%;
	float:none;
	text-align:center;
}

.site-footer ul {
text-align:center;
}

.to-top {
	display:none;
}

.nav-primary {
	background:#590f40;
}

.recent-post-carousel.design-22 .post-content-left a {
	font-size:18px;
}

#home-subscribe input {
	width:100%;
	margin-left: 0px;
	margin-bottom: 10px;
}

#home-subscribe input[type="submit"] {
width:100%;
}

#home-subscribe form {
    display: block;
}

#hellobar {
    height: auto;
    padding: 10px;
}

#hellobar-inner {
    line-height: 40px;
    width: 100%;
    text-align: center;
}


}

@media only screen and (max-width: 900px), only screen and (max-device-width: 900px) {

.recent-posts .entry {
width:50%;
margin-bottom: 20px;
}

#logos {
width:100%;
}

}

@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {
.insta-link, .insta-link2 {
display:block;
text-align:center;
float:none;
margin-right:0px;
}

.backbutton-wrapper {
    display: none;
}

.archive-title {
	width:100%;
}

#home-subscribe {
	width:100%;
}

}

@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {

.recipes-top {
    height: 300px;
}

.recipes-top .widget {
    float: none;
    margin-right: 0px;
    width: 100%;
    padding-bottom: 10px;
}

#logos {
background:url(http://blackberrybabe.com/wp-content/uploads/2016/11/logos-528.png) no-repeat center;
min-height: 356px;
background-size:contain;
}

#hellobar form {
	display:block;
}

.recipes-bottom .entry {
	width: 48%;
	margin-left:0px;
}

.site-title a {
	display: block;
	width: 70%;
	margin: 0 auto;
	word-wrap: break-word;
}


.title-area, .site-title, .site-title a {
margin-top:0px;
}

.popular-posts .entry {
    width: 33%;
}

.su-column {
    text-align: center;
}

}

@media only screen and (max-width: 568px), only screen and (max-device-width: 568px) {

#hellobar-inner {
	line-height:15px;
}

#hellobar input, #hellobar input[type="submit"], #hellobar input[type="submit"]:hover {
    width: 100%;
margin-top: 5px;
margin-left:0px;
}

.recent-posts .entry {
width:100%;
}

.popular-posts .entry {
    width: 50%;
}

.site-title a {
  width: 100%;
}

.entry-title {
clear: both;
}

a.alignleft, img.alignleft, .wp-caption.alignleft {
margin: 0px;
}

/* Align Simple Social Icons Centered */
  .simple-social-icons ul.alignright,
	.simple-social-icon ul.alignleft {
		text-align: center;
	}
 
	.simple-social-icons ul.alignright li,
	.simple-social-icons ul.alignleft li {
		display: inline-block;
		float: none;
		text-align: center;
	}
	
	/* Align everything center */
	.alignright,
	img.alignright,
	.aligncenter,
	img.aligncenter,
	.alignleft,
	img.alignleft {
		display: block;
		margin: 0 auto 24px;
		float:none;
		text-align: center;
	}


}


@media only screen and (max-width:  428px), only screen and (max-device-width: 428px) {

#logos {
min-height: 250px;
}

.header-image .title-area a {
	min-height:176px;
}

.popular-posts .entry {
    width: 100%;
}

.recipes-bottom .entry {
	width: 100%;
}

#hellobar-inner {
	line-height:25px;
}


}

/* Responsive Navigation
---------------------------------------------------------------------------------------------------- */

/* Standard Navigation
--------------------------------------------- */

nav {
	clear: both;
}

/* Navigation toggles
--------------------------------------------- */

.sub-menu-toggle,
.menu-toggle {
	display: none;
	visibility: hidden;
}

/* Navigation toggles - Ensure Menu Displays when Scaled Up
--------------------------------------------- */

@media only screen and (min-width: 800px) {

	nav {
		display: block !important;
	}
}

/* Navigation toggles - Mobile (Change max width as you see fit)
--------------------------------------------- */

@media only screen and (max-width: 799px) {

	.menu-toggle,
	.sub-menu-toggle {
		display: block;
		font-size: 20px;
		font-weight: 400;
		margin: 0 auto;
		overflow: hidden;
		text-align: center;
		visibility: visible;
	}

	.menu-toggle {
		font-size:40px;
	}

	button.menu-toggle {
		background-color: #FFF;
    		width: 100%;
    		color: #096871;
	}

	button.sub-menu-toggle {
		background-color: transparent;
		color: #00939D;
	}

	.sub-menu-toggle {
		padding: 0px 10px !important;
		position: absolute;
		right: 0;
		top: 0;
	}

	.menu-toggle:before {
		content: "\2261";
	}

	.menu-toggle.activated:before {
		content: "\2191";
	}

	.sub-menu-toggle:before {
		content: "+";
	}

	.sub-menu-toggle.activated:before {
		content: "-";
	}

	nav {
		display: none;
		position: relative;
	}

	.genesis-nav-menu .menu-item {
		background-color: #FFF;
		display: block;
		position: relative;
		text-align: center;
    		line-height: 30px;
	}

	.genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-nav-menu .sub-menu {
		clear: both;
		display: none;
		opacity: 1;
		position: static;
		width: 100%;
	}

	.genesis-nav-menu .sub-menu a {
		border-left: 0;
		position: relative;
		width: auto;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: 0;
	}

	.genesis-nav-menu .sub-menu .sub-menu a {
		background-color: #ffffff;
		padding-left: 30px;
	}

	.genesis-nav-menu .sub-menu .sub-menu .sub-menu a {
		background-color: #fff;
		padding-left: 40px;
	}

	.nav-primary a:hover {
		color: #590f40;
	}

	.genesis-nav-menu li:after {
	content:' ';
	}

	.genesis-nav-menu .sub-menu li, 
	.theme-mint .genesis-nav-menu .sub-menu li, 
	.theme-mustard .genesis-nav-menu .sub-menu li, 
	.theme-purple .genesis-nav-menu .sub-menu li {
		width:100%;
	}

}