/*
Theme Name: Serein Thanh
Theme URI: https://eatlittlebird.com
Author: Light Morango (updated by PanKogut)
Author URI: http://www.pankogut.com
Description: Custom WordPress Theme for EatLittleBird.com
Version: 1.2.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready
Text Domain: Serein-Thanh

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 *   5.14 - Amazon Code
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * 10.0 - Woocommerce
 * ----------------------------------------------------------------------------
 */

/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

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

audio,
canvas,
video {
	display: inline-block;
}

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

[hidden] {
	display: none;
}

html {
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
	font-family: 'Montserrat', "Open Sans", Helvetica, Arial, sans-serif;
	font-size: 17px;
	letter-spacing: 0px; 
	color:#2B2B2B;
	text-align: justify;
	font-weight: 300;
}


body {
	line-height: 1.8;
	margin: 0;
	color: #2B2B2B;
    background-color: white;
}

a {
	color: #8aafc0;
	text-decoration: none;
	font-weight: 400;
}


a:visited {
	color: #8aafc0;
}

a:focus {
	outline: thin dotted;
}

a:active,
a:hover {
	color: #8E8E8E;
	outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: 'Libre Caslon Text', serif;
	line-height: 1.3;
}

h1 {
	font: 28px 'Libre Caslon Text', serif;
	margin-top: 25px;
	font-weight: 700;
	text-transform: uppercase;
}

h2 {
	font: 700 26px 'Libre Caslon Text', serif;
	text-transform: none;
	margin-bottom: 2px;
	color:#000;
	text-align: left;
}

h3 {
	font: 700 22px 'Libre Caslon Text', serif;
	text-transform: none;
	margin-bottom: 2px;
	color:#000;
	text-align: left;
}

h4 {
	font: 400 16px 'Libre Caslon Text', serif;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 0px;
	color:#2B2B2B;
}

h5 {
	font-size: 18px;
	margin: 30px 0;
}

h6 {
	font-size: 16px;
	margin: 36px 0;
}

address {
	margin: 0 0 24px;
}

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

b,
strong {
	font-weight: bold;
}

dfn {
}

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

p {
	margin: 0 0 15px;
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
	word-wrap: break-word;
}

code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 14px;
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
}

pre {
	background: #f5f5f5;
	color: #666;
	font-family: monospace;
	font-size: 14px;
	margin: 20px 0;
	overflow: auto;
	padding: 20px;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

blockquote {
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 24px 40px;
}

blockquote blockquote {
	margin-right: 0;
}

blockquote cite,
blockquote small {
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
}

blockquote em,
blockquote i {
	font-style: normal;
	font-weight: 300;
}

blockquote strong,
blockquote b {
	font-weight: 400;
}

small {
	font-size: smaller;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

dl {
	margin: 0 20px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 20px;
}

menu,
ol,
ul {
	margin: 16px 0;
	padding: 0 0 0 0px;
}

ul {
	list-style-type: square;
}

nav ul,
nav ol {
	list-style: none;
	list-style-image: none;
}

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

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	/*height: auto;*/
	max-width: 100%;
	vertical-align: middle;
}

.size-auto, 
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
	max-width: 100%;
	height: auto;
}

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

figure {
	margin: 0;
}

form {
	margin: 0;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
	white-space: normal;
}

button,
input,
select,
textarea {
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
}

.wpcf7-textarea{
	width: 580px; 
}

select{
	width: 240px;
	background-color: #eee;
	color: rgb(170, 170, 170);
	border-radius: 0px;
	border: 0px;
	text-indent: 22px;
	font-family: 'Raleway';
	font-size:10px;
	text-align: left;
	height: 24px;
	text-transform: uppercase;
	box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	background-image: url(images/flecha.png);
	background-position: left center;
	background-repeat: no-repeat;
	-webkit-appearance: none;  /*Removes default chrome and safari style*/
	-moz-appearance: none; /* Removes Default Firefox style*/
}


button,
input {
	line-height: normal;
}

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

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

input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}

.widget-area input[type="text"] {
	background-color: #eee;
	color: rgba(73,73,73,1);
	border-radius: 0px;
	border: 0px;
	text-indent: 5px;
	font-family: 'Raleway';
	font-size:24px;
	text-align: left;
	font-weight: 400;
	height: 5px;
	text-transform: uppercase;
	box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	background-position: left center;
	background-repeat: no-repeat;
	-webkit-appearance: none;  /*Removes default chrome and safari style*/
	-moz-appearance: none; /* Removes Default Firefox style*/
	width: 240px;
}


input[type="search"] {
	background-color: #fff;
	color: rgb(16, 24, 32);
	border-radius: 0px;
	border: 1px solid #eee;
	text-indent: 5px;
	font-family: 'arial';
	font-size:11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	text-align: left;
	height: 27px;
	background-position: left center;
	background-repeat: no-repeat;
	-webkit-appearance: none;  /*Removes default chrome and safari style*/
	-moz-appearance: none; /* Removes Default Firefox style*/
	width: 210px;
	margin-top: 4px;
}

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-bottom: none;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 20px;
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

caption {
	font-size: 10px;
	margin: 20px 0;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

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

del {
	color: #333;
}

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

hr {
	background-size: 4px 4px;
	border: 0;
	height: 1px;
	margin: 0 0 24px;
}

input[type=text], input[type=email], textarea {
    text-align: left !important;
}


/**
 * 2.0 Repeatable Patterns
 * ----------------------------------------------------------------------------
 */

.genericon:before,
.menu-toggle:after,
.featured-post:before,
.date a:before,
.entry-meta .author a:before,
.format-audio .entry-content:before,
.comments-link a:before,
.tags-links a:first-child:before,
.categories-links a:first-child:before,
.edit-link a:before,
.attachment .entry-title:before,
.attachment-meta:before,
.attachment-meta a:before,
.comment-awaiting-moderation:before,
.comment-reply-link:before,
.comment-reply-login:before,
.comment-reply-title small a:before,
.bypostauthor > .comment-body .fn:before,
.error404 .page-title:before {
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font: normal 16px/1 Genericons;
	vertical-align: text-bottom;
}

/* Clearing floats */
.clear:after,
.attachment .entry-header:after,
.site-footer .widget-area:after,
.entry-content:after,
.page-content:after,
.navigation:after,
.nav-links:after,
.gallery:after,
.comment-form-author:after,
.comment-form-email:after,
.comment-form-url:after,
.comment-body:after {
	clear: both;
}

.clear:before,
.clear:after,
.attachment .entry-header:before,
.attachment .entry-header:after,
.site-footer .widget-area:before,
.site-footer .widget-area:after,
.entry-content:before,
.entry-content:after,
.page-content:before,
.page-content:after,
.navigation:before,
.navigation:after,
.nav-links:before,
.nav-links:after,
.gallery:before,
.gallery:after,
.comment-form-author:before,
.comment-form-author:after,
.comment-form-email:before,
.comment-form-email:after,
.comment-form-url:before,
.comment-form-url:after,
.comment-body:before,
.comment-body:after {
	content: "";
	display: table;
}

/* Assistive text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	line-height: normal;
	padding: 15px 23px 14px;
	position: absolute;
	left: 5px;
	top: 5px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/* Form fields, general styles first. */
button,
input,
textarea {
	border: 1px solid #d5d5d5;
	font-family: inherit;
	padding: 5px;
}

input,
textarea {
	color: #141412;
}

input:focus,
textarea:focus {
	border: 2px solid #454545;
	outline: 0;
}


/* Buttons */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	background: #454545; /* Old browsers */
	background: -webkit-linear-gradient(top, #454545 0%, #454545 100%); /* Chrome 10+, Safari 5.1+ */
	background:   linear-gradient(to bottom, #454545 0%, #454545 100%); /* W3C */
	border: none;
	border-radius: 2px;
	color: #fff;
	display: inline-block;
	padding: 5px 25px 6px;
	text-decoration: none;


}

button:hover,
button:focus,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus {
	background: #454545; /* Old browsers */
	background: -webkit-linear-gradient(top, #454545 0%, #454545 100%); /* Chrome 10+, Safari 5.1+ */
	background:   linear-gradient(to bottom, #454545 0%, #454545 100%); /* W3C */
	outline: none;
}

button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	background: #d2d2d2; /* Old browsers */
	background: -webkit-linear-gradient(top, #d2d2d2 0%, #d2d2d2 100%); /* Chrome 10+, Safari 5.1+ */
	background:   linear-gradient(to bottom, #d2d2d2 0%, #d2d2d2 100%); /* W3C */
	border: none;
}

input[type="search"]:active {
	border: blue !important;
}

.post-password-required input[type="submit"] {
	padding: 7px 24px 4px;
	vertical-align: bottom;
}

.post-password-required input[type="submit"]:active {
	padding: 5px 24px 6px;
}


input[type="text"], input[type="email"],
textarea {
	background: #eee;
	padding: 2px;
	font-family: 'times new roman';
	font-style: italic;
	text-align: center;
	border: none;
	letter-spacing: 1.2px;
	font-size: 10px;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #7d7b6d;
}

:-moz-placeholder {
	color: #7d7b6d;
}

::-moz-placeholder {
	color: #7d7b6d;
}

:-ms-input-placeholder {
	color: #7d7b6d;
}

/*
 * Responsive images
 *
 * Fluid images for posts, comments, and widgets
 */
.entry-content img,
.entry-summary img,
.comment-content img,
.widget img,
.wp-caption {
	max-width: 100%;
	padding-top: 4px;
}

/* Make sure images with WordPress-added height and width attributes are scaled correctly. */
.entry-content img,
.entry-summary img,
.comment-content img[height],
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto;
}

img.size-full,
img.size-large,
img.wp-post-image {
	/*height: auto;*/
	max-width: 100%;
}

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

/* Override the Twitter embed fixed width. */
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important;
}

/* Images */
.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignleft {
	margin: 5px 20px 5px 0;
}

.wp-caption.alignleft {
	margin: 5px 10px 5px 0;
}

img.alignright {
	margin: 5px 0 5px 20px;
}

.wp-caption.alignright {
	margin: 5px 0 5px 10px;
}

img.aligncenter {
	margin: 5px auto;
}

img.alignnone {
	margin: 5px 0;
}

.wp-caption .wp-caption-text,
.entry-caption,
.gallery-caption {
	color: #220e10;
	font-size: 12px;
	text-align: center;
	font-weight: 300;
}

img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.wp-caption.alignleft + ul,
.wp-caption.alignleft + ol  {
	list-style-position: inside;
}


/**
 * 3.0 Basic Structure
 * ----------------------------------------------------------------------------
 */

.site {
	background-color: #fff;
	margin: 0 auto;
	max-width: 1260px; /*ancho total blog*/
	width: 100%;
	
}

.page-template .site {
	margin-top: 30px;
}
.home .site {
	margin-top: 0;
}



.site-main {
	position: relative;
}

.site-main .sidebar-container {
	height: 0;
	position: absolute;
	top: 0px;
	width: 100%;
	z-index: 1;
	/*border-top: 1px solid #eee;*/
}

.site-main .sidebar-inner {
	margin: 0 auto;
	max-width: 1090px;
}

.content-area{
	padding: 0 0 0 0;	
}

.site-content{
	padding-right: 40px;
}


/**
 * 4.0 Header
 * ----------------------------------------------------------------------------
 */

/**
 * 4.1 Site Header
 * ----------------------------------------------------------------------------
 */

/*.site-header .home-link {
	color: #141412;
	display: block;
	margin: 0 auto;
	max-width: 1260px;
	min-height: 160px;
	text-decoration: none;
	width: 100%;	
	margin-top: -10px;
	margin-bottom: 10px;
}

.site-header .site-title:hover {
}

.site-title {
	font-size: 45px;
	line-height: 1;
	margin: 0;
	padding: 90px 0px;
	padding-left: 20px;
	text-align: center;
	font-weight: 100;
	letter-spacing: 20px;
	font-family: 'poiret one';
	text-transform: lowercase;
}

.site-description {
	font: 300 24px "Source Sans Pro", Helvetica, sans-serif;
	margin: 0;
}*/

.custom-logo-link img {
	width: 250px;
	height: auto;
}

.nav-menu li a::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 9px;
    width: calc(100% - 18px);
    height: 2px;
    background-color: #343434;
    transform: scaleX(0);
    transition: all 250ms ease;
}

.nav-menu li a:hover::before {
    transform: scaleX(1);
}

.nav-menu ul.sub-menu li a::before {
	display: none;
}

.shiftnav #simple-social-icons-2 ul li a, 
.shiftnav #simple-social-icons-2 ul li a:hover, 
.shiftnav #simple-social-icons-2 ul li a:focus {
    background-color: transparent!important;
}

.shiftnav-toggle-button {
    background: transparent!important;
    color: #2B2B2B!important;
    padding: 10px 0 5px!important;
    width: 0;
}

.shiftnav .shiftnav-menu-image-padded img {
    border-radius: 50%;
    width: 80px;
}

.shiftnav ul.shiftnav-menu li.menu-item ul ul li {
    font-style: italic;
}

.shiftnav:after {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    -o-box-shadow: none !important;
    box-shadow: none !important;
}

#shiftnav-toggle-main .shiftnav-searchbar-drop {
    max-width: 100% !important;
}

.shiftnav-main-toggle-content img {max-width:60%!important;}

.shiftnav-searchbar-drop input[type=text] {
    text-align: left;
}

@media screen and (min-width: 961px) {
	.shiftnav.shiftnav-shiftnav-main,
	.shiftnav.shiftnav-shiftnav-main ul.shiftnav-menu li.menu-item > .shiftnav-target {
	    background: #EEEEEE!important;
	    color: #2B2B2B!important;
	}

	.shiftnav.shiftnav-shiftnav-main ul.shiftnav-menu li.menu-item > .shiftnav-submenu-activation {
	    background: #EEEEEE!important;
	}

	.shiftnav .shiftnav-panel-close {
    	background: rgba(0,0,0,0)!important;
	}
}

.shiftnav .social-icons-widget {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

@media (max-width: 960px) {
/*	.site-header {
	    display: none;
	}*/

	.shiftnav .shiftnav-panel-close {
		display: none!important;
	}

	#shiftnav-toggle-main .shiftnav-toggle-burger,
	.shiftnav-searchbar-toggle {
	    padding: 32px 20px !important;
	}
}

@media (max-width: 414px) {
	#shiftnav-toggle-main .shiftnav-toggle-burger,
	.shiftnav-searchbar-toggle {
	    padding: 16px 20px !important;
	}
}

/**
 * 4.2 Navigation
 * ----------------------------------------------------------------------------
 */

.main-navigation {
	clear: both;
	margin: 0 auto;
	max-width: 1260px;
	min-height: 110px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.main-navigation__item {
	flex-grow: 1;
}

ul.nav-menu,
div.nav-menu > ul {
	margin-bottom: 0px;
	margin-top: 0px;
	background-color: none;
	text-align: left;
	font-weight: 500;
	
}

.nav-menu li {
	display: inline-block;
	position: relative;
}

.nav-menu li a {
	color: #5a5a5a;
	display: block;
	font-family: 'Lato', sans-serif;
    font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1;
	padding: 14px 10px;
	text-decoration: none;
	text-align: left;
	opacity: 1;
}

.nav-menu li:hover > a,
.nav-menu li a:hover {
	color: #636363;
}

.nav-menu .sub-menu,
.nav-menu .children {
	background-color: #000;
	border-top: 0;
	display: none;
	padding: 0;
	position: absolute;
	left: 0px;
	z-index: 99999;
	opacity: 0.9;
}

.nav-menu .sub-menu ul,
.nav-menu .children ul {
	border-left: 0;
	left: 100%;
	top: 0;
}

ul.nav-menu ul a,
.nav-menu ul ul a {
	background-color: #000;
	color: #fff;
	margin: 0 0 0 10px;
	width: 200px;
}

ul.nav-menu ul a:hover,
.nav-menu ul ul a:hover {
	background-color: #000;
	color: #fff;
}

ul.nav-menu li:hover > ul,
.nav-menu ul li:hover > ul {
	display: block;
}

.nav-menu .current_page_item > a,
.nav-menu .current_page_ancestor > a,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
	color: #636363;
}

.menu-toggle {
	display: none;
}

/* Navbar */
.navbar {
	background-color: #eee;
	margin: 0 auto;
	width: 100%;
	z-index: 1000;
	height: 110px;
}

/*.site-header .search-form {
	position: absolute;
	right: 20px;
	top: 1px;
}

.site-header .search-field {
	background-color: transparent;
	background-image: url(images/search-icon.png);
	background-position: 5px center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	border: none;
	cursor: pointer;
	height: 37px;
	margin: 3px 0;
	padding: 0 0 0 34px;
	position: relative;
	-webkit-transition: width 400ms ease, background 400ms ease;
	transition:         width 400ms ease, background 400ms ease;
	width: 0;
}

.site-header .search-field:focus {
	background-color: #fff;
	border: 2px solid #c3c0ab;
	cursor: text;
	outline: 0;
	width: 230px;
}*/

.social-icons-widget{
	position: relative;
	text-align: left;
	padding-top: 2px;
}

.nav-menu{
	position: relative;
	float: left;
}

.search-bar{
	width: 200px;
	position: relative;
}

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

.social-icons-widget .widget {
	padding-bottom: 0;
}

.search-toggle {
	display: flex;
	justify-content: flex-end;
}

.search-toggle a {
    background: white;
    color: #2B2B2B;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.search-toggle a:hover {
    background: #2B2B2B;
    color: white;
}

.search-toggle .genericon-search {
	font-size: 20px;
	font-weight: bold;
	width: 20px;
	height: 20px;
}

/**
 * 5.0 Content
 * ----------------------------------------------------------------------------
 */

.hentry {
	padding-top: 30px;
    /*border-top: 1px solid #eee;*/
}

.entry-header,
.entry-content,
.entry-summary,
.entry-meta {
	margin: 0 auto;
	max-width: 604px;
	width: 100%;
}

.entry-meta hr {
	background-color:#eee;
	color:#eee;
	border-width:0;
	height:1px;
	line-height:0;
	clear: both;
}

.sidebar .entry-header,
.sidebar .entry-content,
.sidebar .entry-summary,
.sidebar .entry-meta {
	max-width: 1115px;
	
}

.entry-content {
	padding-bottom: 20px;
}

.entry-content ul{
	list-style: disc outside;
}

.entry-content li{
	margin-left: 30px;
	margin-bottom: 15px;
}

.content-area-landing .entry-content {
	max-width: 100%;
	padding: 0 0 0 0; 
}

.content-area-landing .hentry {
	padding-top: 0px;
	padding-bottom: 0px;
   	
}

.content-area-landing .site-content {
	border-right: none;
	padding-left: 0px;
	padding-right: 0px;
}

.more-link {
	background-color: #000;
	font-size: 10px;
	font-weight: 700;
	border: 1px solid #000;
	padding: 10px 15px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #fff !important;
}

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

/*
 * 5.1 Entry Header
 * ----------------------------------------------------------------------------
 */

#breadcrumbs {
 text-align: left;
}

.sidebar .entry-header .entry-meta {
	padding: 0;
}

.entry-thumbnail img {
	display: block;
	margin: 0 auto 10px;
}

.entry-header {
	margin-bottom: 15px;
	position:relative;
	text-align: center;
}

.fecha {
	font: italic normal 14px 'Times New Roman', Times, serif;
	color: #9A9A9A;
	text-align: center;
	letter-spacing: 2px;
}



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

.entry-title {
	font: normal 700 30px 'Libre Caslon Text', serif;
	text-transform: none;
	letter-spacing: 0px;
	margin: 0 0 0px;
	text-align: center;
	color: #2B2B2B;
}

.entry-title a {
	color: #141412;
}

.entry-title a:hover {
	color: #8aafc0;
}


/**
 * 5.2 Entry Meta
 * ----------------------------------------------------------------------------
 */
.blog .entry-meta-date {
		display: none;
	}

.posted-on {
	font-size: 12px;
	font-weight: 600;
    letter-spacing: .075em;
    text-transform: none;
    margin-right: 2px;
	color: #8E8E8E;
	font-style: italic;
}

.posted-on .published,
.posted-on .updated {
	font-weight: 300;
    text-transform: none;
	color: #8E8E8E;
	font-style: italic;
}

@media (max-width: 414px) {
	.posted-on .iphone {
		display: inline-block;
	}
}

.entry-edit {
	height: 5px;
}

.entry-labels {
	letter-spacing: 0.5px;
}

.categories-links {
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 11px;
	display: none;
}
	
.tags-links{
	color:#494949;
	padding-left: 5px;
	display: none;
}

.entry-comments {
	background-size: 30px;
	font-size: 11px;
	text-transform: uppercase;
	color:#494949;
	margin-top: 10px;
	letter-spacing: 2px;
	line-height: 14px;
	display:none;
}


.entry-comments a {
 	color:#4a4a4a;
}

.leave-reply{
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-size: 12px;
	display: none;
}


#before-comments-widget{
	text-align: center;
	margin: 30px 0px 30px 0px;
}

#after-comments-widget{
	text-align: center;
	margin: 0px 0px 30px 0px;
}

.single-author .entry-meta .author,
.sticky.format-standard .entry-meta .date,
.sticky.format-audio .entry-meta .date,
.sticky.format-chat .entry-meta .date,
.sticky.format-image .entry-meta .date,
.sticky.format-gallery .entry-meta .date {
	display: none;
}

.format-standard footer.entry-meta {
	text-align: center;
	height:auto;
	position:relative;
	margin: 20px 0px;
}


.zem_rp_content{
	margin-top: 60px;
	padding: 30px 0px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}



.zem_rp_edit{
	background: #505050 !important;
	line-height: 14px !important;
}





/**
 * 5.3 Entry Content
 * ----------------------------------------------------------------------------
 */

.entry-content {
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
	word-wrap: break-word;
}

.entry-content a,
.comment-content a {
	color: #8aafc0;
}

.entry-content a:hover,
.comment-content a:hover {
	color: #8E8E8E;
}

.entry-content blockquote {
	font-size: 24px;
}

.entry-content blockquote cite,
.entry-content blockquote small {
	font-size: 16px;
}

.entry-content img.alignleft,
.entry-content .wp-caption.alignleft {
	margin-left: 0px;
}

.entry-content img.alignright,
.entry-content .wp-caption.alignright {
	margin-right: 0px;
}

.entry-thumbnail{
	position: relative;
	float: left;
}

@media (min-width: 1099px) {
    .blog .entry-thumbnail,
    .search .entry-thumbnail {
        width: 300px;
    }
}

.entry-excerpt{
	position: relative;
	float: left;
	max-width: 596px;
	padding-left: 20px;
}

/* Page links */
.page-links {
	font-size: 16px;
	font-weight: normal;
	line-height: 2.2;
	margin: 20px 0;
	text-transform: uppercase;
}

.page-links a,
.page-links > span {
	background: #fff;
	border: 1px solid #fff;
	padding: 5px 10px;
	text-decoration: none;
}

.format-status .entry-content .page-links a,
.format-gallery .entry-content .page-links a,
.format-chat .entry-content .page-links a,
.format-quote .entry-content .page-links a,
.page-links a {
	background: #e63f2a;
	border: 1px solid #e63f2a;
	color: #fff;
}

.format-gallery .entry-content .page-links a:hover,
.format-audio .entry-content .page-links a:hover,
.format-status .entry-content .page-links a:hover,
.format-video .entry-content .page-links a:hover,
.format-chat .entry-content .page-links a:hover,
.format-quote .entry-content .page-links a:hover,
.page-links a:hover {
	background: #fff;
	color: #e63f2a;
}

.format-status .entry-content .page-links > span,
.format-quote .entry-content .page-links > span {
	background: none;
}

.page-links .page-links-title {
	background: transparent;
	border: none;
	margin-right: 20px;
	padding: 0;
}

/* Mediaelements */
.hentry .mejs-mediaelement,
.hentry .mejs-container .mejs-controls {
	background: #220e10;
}

.hentry .mejs-controls .mejs-time-rail .mejs-time-loaded,
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	background: #fff;
}

.hentry .mejs-controls .mejs-time-rail .mejs-time-current {
	background: #B3B2A3;
}

.hentry .mejs-controls .mejs-time-rail .mejs-time-total,
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	background: #595959;
}

.hentry .mejs-controls .mejs-time-rail span,
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	border-radius: 0;
}


/**
 * 5.4 Galleries
 * ----------------------------------------------------------------------------
 */

.gallery {
	margin-bottom: 20px;
}

.gallery-item {
	float: left;
	margin: 0 6px 6px 0;
	overflow: hidden;
	position: relative;
}

.gallery-columns-1.gallery-size-medium,
.gallery-columns-1.gallery-size-thumbnail,
.gallery-columns-2.gallery-size-thumbnail,
.gallery-columns-3.gallery-size-thumbnail {
	display: table;
	margin: 0 auto 20px;
}

.gallery-columns-1 .gallery-item,
.gallery-columns-2 .gallery-item,
.gallery-columns-3 .gallery-item {
	text-align: center;
}

.gallery-columns-4 .gallery-item {
	max-width: 23%;
	max-width: -webkit-calc(25% - 4px);
	max-width:         calc(25% - 4px);
}

.gallery-columns-5 .gallery-item {
	max-width: 19%;
	max-width: -webkit-calc(20% - 4px);
	max-width:         calc(20% - 4px);
}

.gallery-columns-6 .gallery-item {
	max-width: 15%;
	max-width: -webkit-calc(16.7% - 4px);
	max-width:         calc(16.7% - 4px);
}

.gallery-columns-7 .gallery-item {
	max-width: 13%;
	max-width: -webkit-calc(14.28% - 4px);
	max-width:         calc(14.28% - 4px);
}

.gallery-columns-8 .gallery-item {
	max-width: 11%;
	max-width: -webkit-calc(12.5% - 4px);
	max-width:         calc(12.5% - 4px);
}

.gallery-columns-9 .gallery-item {
	max-width: 9%;
	max-width: -webkit-calc(11.1% - 4px);
	max-width:         calc(11.1% - 4px);
}

.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
	margin-right: 0;
}

.gallery-caption {
	background-color: rgba(0, 0, 0, 0.7);
	box-sizing: border-box;
	color: #fff;
	font-size: 14px;
	line-height: 1.3;
	margin: 0;
	max-height: 50%;
	opacity: 0;
	padding: 2px 8px;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: left;
	-webkit-transition: opacity 400ms ease;
	transition:         opacity 400ms ease;
	width: 100%;
}

.gallery-caption:before {
	box-shadow: 0 -10px 15px #000 inset;
	content: "";
	height: 100%;
	min-height: 49px;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

.gallery-item:hover .gallery-caption {
	opacity: 1;
}

.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}



/**
 * 5.6 Attachments
 * ----------------------------------------------------------------------------
 */

.attachment .hentry {
	background-color: #e8e5ce;
	margin: 0;
	padding: 0;
}

.attachment .entry-header {
	margin-bottom: 0;
	max-width: 1040px;
	padding: 30px 0;
}

.attachment .entry-title {
	display: inline-block;
	float: left;
	font: 300 30px "karla", Helvetica, sans-serif;
	margin: 0;
}

.attachment .entry-title:before {
	content: "\f416";
	font-size: 32px;
	margin-right: 10px;
}

.attachment .entry-meta {
	clear: none;
	color: inherit;
	float: right;
	max-width: 604px;
	padding: 9px 0 0;
	text-align: right;
}

.hentry.attachment:not(.image-attachment) .entry-meta {
	max-width: 104px;
}

.attachment footer.entry-meta {
	display: none;
}

.attachment-meta:before {
	content: "\f307";
}

.full-size-link a:before {
	content: "\f402";
}

.full-size-link:before {
	content: none;
}

.attachment .entry-meta a,
.attachment .entry-meta .edit-link:before,
.attachment .full-size-link:before {
	color: #B3B2A3;
}

.attachment .entry-content {
	background-color: #fff;
	max-width: 100%;
	padding: 40px 0;
}

.image-navigation {
	margin: 0 auto;
	max-width: 1040px;
	position: relative;
}

.image-navigation a:hover {
	text-decoration: none;
}

.image-navigation .nav-previous,
.image-navigation .nav-next {
	position: absolute;
	top: 50px;
}

.image-navigation .nav-previous {
	left: 0;
}

.image-navigation .nav-next {
	right: 0;
}

.image-navigation .meta-nav {
	font-size: 32px;
	font-weight: 300;
	vertical-align: -4px;
}

.attachment .entry-attachment,
.attachment .type-attachment p {
	margin: 0 auto;
	max-width: 724px;
	text-align: center;
}

.attachment .entry-attachment .attachment {
	display: inline-block;
}

.attachment .entry-caption {
	text-align: left;
}

.attachment .entry-description {
	margin: 20px auto 0;
	max-width: 604px;
}

.attachment .entry-caption p:last-child,
.attachment .entry-description p:last-child {
	margin: 0;
}

.attachment .site-main .sidebar-container {
	display: none;
}


/**
 * 5.7 Post/Paging Navigation
 * ----------------------------------------------------------------------------
 */

.navigation .nav-previous {
	float: right;
	background-image: url('images/nav-left-25.png');
}

.navigation .nav-next {
	float: left;
	background-image: url('images/nav-right-25.png');
}

.navigation a {

}

.navigation a:hover {

	text-decoration: none;
}

.paging-navigation {
}

.paging-navigation .nav-links {
	margin: 0 auto;
	max-width: 604px;
	width: 100%;
}

.sidebar .paging-navigation .nav-links {
	max-width: 1040px;
	padding: 0 320px 0 0;
}

.paging-navigation .nav-next {
	padding: 13px 0;
}

.paging-navigation a {
	font-size: 22px;
	font-weight: 300;
}

.paging-navigation .meta-nav {
	background-color: #ececec;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	padding: 3px 0 8px;
	text-align: center;
	width: 50px;
}

.paging-navigation .nav-previous .meta-nav {
	margin-right: 10px;
	padding: 17px 0 23px;
	width: 80px;
}

.paging-navigation .nav-next .meta-nav {
	margin-left: 10px;
}

.paging-navigation a:hover .meta-nav {
	
	text-decoration: none;
}

.post-navigation {
	background-color: #fff;
	color: #B3B2A3;
	font-size: 20px;
	font-weight: 300;
	padding: 20px 0;
}

.post-navigation .nav-links {
	margin: 0 auto;
	max-width: 1040px;
}

.sidebar .post-navigation .nav-links {
	padding: 0 376px 0 60px;
}

.post-navigation a[rel="next"] {
	float: right;
	text-align: right;
}


.wp-pagenavi {
    max-width: 1115px;
    text-align: center;
    font-size: 11px;
    margin: 0 auto;
    width: 100%;
    color: #2f2f2f;
    padding: 25px 0px;
    clear: both;
}

.wp-pagenavi .page-numbers {
	padding: 0 2px 0 2px;
	font-weight: 400;
	border: 1px solid #f0f0f0;
	padding: 9px;
}


.wp-pagenavi .current {
	color: #B3B2A3;
}

.wp-pagenavi a {
	color: #464646;
}

.wp-pagenavi a:visited {
	color: #464646;
}

.wp-pagenavi a:hover {
	color: #B3B2A3;
}




/**
 * 5.8 Author Bio
 * ----------------------------------------------------------------------------
 */

.author-info {
	margin: 0 auto;
	max-width: 604px;
	padding: 30px 0 10px;
	text-align: left; /* gallery & video post formats */
	width: 100%;
}

.author.sidebar .author-info {
	max-width: 1040px;
	padding: 30px 376px 10px 60px;
}

.single .author-info {
	padding: 50px 0 0;
}

.author-avatar .avatar {
	float: left;
	margin: 0 30px 30px 0;
}

.single-format-status .author-description {
	color: #f7f5e7;
}

.author-description .author-title {
	clear: none;
	font: 300 20px "Source Sans Pro", Helvetica, sans-serif;
	margin: 0 0 8px;
}

.author-link {
	color: #B3B2A3;
	margin-left: 2px;
}

.author.archive .author-link {
	display: none;
}


/**
 * 5.9 Archives
 * ----------------------------------------------------------------------------
 */

.archive-title,
.archive-meta {
	font: 300 30px "Source Sans Pro", Helvetica, sans-serif;
	margin: 0 auto;
	max-width: 1040px;
	padding: 30px 0;
	width: 100%;
}

.archive-meta {
	font-size: 16px;
	font-style: normal;
	font-weight: normal;
	padding: 30px 10px;
}

.archive article .entry-thumbnail {
    position: relative;
    float: none;
}

.archive article .entry-excerpt {
    position: relative;
    float: none;
    padding-left: 0;
}

.archive .hentry {
    border: 0;
}

.archive .content-area {
    overflow: hidden;
}

@media (max-width: 736px) {
	.archive .hentry {
	    margin-top: 0;
	    padding-top: 0;
	}
}

@media (min-width: 668px) {
	.archive article {
		float: left;
		width: 33%;
		padding: 0 2%;
	}

	.archive .site-content {
	    margin: 0 -2%;
	}

	.archive article:nth-child(3n-1) { clear: both; }
}

/**
 * HOME PAGE
 * ----------------------------------------------------------------------------
 */

.gotoblog{
    text-align: center;
    padding: 10px 30px;
    text-transform: uppercase;
    border: 3px solid #2B2B2B;
    font-size: 15px;	
    letter-spacing: 2px;
    background-color: #fff;
    width: 350px;
    margin: 30px auto;
  }
  
  .gotoblog a{
		border-bottom: none;
		color: #2B2B2B;
  }


/**
 * 5.10 Search Results/No posts
 * ----------------------------------------------------------------------------
 */

.page-header {
	background-color: #e8e5ce;
}

.page-title {
	font: 300 30px "Source Sans Pro", Helvetica, sans-serif;
	margin: 0 auto;
	max-width: 1040px;
	padding: 30px 0;
	width: 100%;
}

.page-content {
	margin: 0 auto;
	max-width: 604px;
	padding: 40px 0;
	width: 100%;
}

.sidebar .page-content {
	margin: 0 auto;
	max-width: 1040px;
	padding: 40px 376px 40px 60px;
}


/**
 * 5.11 404
 * ----------------------------------------------------------------------------
 */

.error404 .page-header {
	background-color: #fff;
}

.error404 .page-title {
	line-height: 0.6;
	margin: 0;
	padding: 80px 0px 0px 0px;
	position: relative;
	text-align: center;
	width: auto;
}

.error404 .page-title:before {
	color: #3f3f3f;
	font-size: 600px;
	line-height: 0.6;
	overflow: hidden;
	position: absolute;
	left: 7px;
	top: 27px;
}

.error404 .page-wrapper {
	
}

.error404 .page-header,
.error404 .page-content {
	margin: 0px auto;
	max-width: 1040px;
	width: 100%;
	text-align: center;
	padding: 0px 0px 50px 350px;
}

.error404 .page-content a {
	color: #8a8a8a;
	border-bottom:1px solid #8a8a8a;
}


/**
 * 5.12 Comments
 * ----------------------------------------------------------------------------
 */

.comments-title,
.comment-list,
.comment-reply-title,
.must-log-in,
.comment-respond .comment-form,
.comment-respond iframe {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 604px;
	width: 100%;
	
}

.sidebar .comments-title,
.sidebar .comment-list,
.sidebar .must-log-in,
.sidebar .comment-reply-title,
.sidebar .comment-navigation,
.sidebar .comment-respond .comment-form {
	max-width: 1040px;
}

.comments-title {
	font: normal 700 25px 'Libre Caslon Text', serif;
	text-transform: none;
	padding-left: 0px !important;
	margin-top: 60px !important;
	line-height: normal;
	letter-spacing: 1px;
	margin-bottom: 40px;

}

.comment_title{
	margin-bottom: 10px;
}

.comment_date {
	font: 13px "karla", Helvetica, sans-serif;
	color: #adadad;
	padding-left: 10px;
}

cite.fn{
	font-style: normal;
}

.comment-list,
.comment-list .children {
	list-style-type: none;
	padding: 0;
}
.comment-list .children {
	margin-left: 90px;
}

@media (max-width: 414px) {
	.comment-list .children {
		margin-left: 0 !important;
	}
}

.comment-list > li:after,
.comment-list .children > li:before {
	background-size: 4px 4px;
	content: "";
	display: block;
	height: 1px;
	width: 100%;
}

.comment-list > li:last-child:after {
	display: none;
}

.comment-body {
	padding: 24px 0;
	position: relative;
}

.comment_author {
	font: 300 13px "arial", Helvetica, sans-serif;
	text-transform: uppercase;
	padding-left: 10px !important;
	margin-top: 60px !important;
	line-height: normal;
	letter-spacing: 3px;
	margin-bottom: 40px;
}

.comment-author .avatar {
	display: block;
	margin-bottom: 10px;
}

.comment-author .fn {
	word-wrap: break-word;
}

.comment-author .fn,
.comment-author .url,
.comment-reply-link,
.comment-reply-login {
	color: #adadad;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
	text-transform: uppercase;
}

.says {
	display: none;
}

.no-avatars .comment-author {
	margin: 0 0 5px;
	max-width: 100%;
	position: relative;
}

.no-avatars .comment-metadata,
.no-avatars .comment-content,
.no-avatars .comment-list .reply {
	width: 100%;
}

.bypostauthor > .comment-body .fn:before {
	content: "\f408";
	vertical-align: text-top;
}

.comment-list .edit-link {
	margin-left: 20px;
}

.comment-metadata,
.comment-awaiting-moderation,
.comment-content,
.comment-list .reply {
	float: right;
	width: 79%;
	width: -webkit-calc(100% - 124px);
	width:         calc(100% - 124px);
	word-wrap: break-word;
}

.comment_moderation{
	font-family: 'open-sans';
	font-style: italic;
	font-size: 11px;
	color: #73b4a7;
	padding-left: 8px;
}

.comment-meta,
.comment-meta a {
	color: #a2a2a2;
	font-size: 13px;
}

.comment-meta a:hover {
	color: #B3B2A3;
}

.comment-metadata {
	margin-bottom: 20px;
}

.ping-meta {
	color: #a2a2a2;
	font-size: 13px;
	line-height: 2;
}

.comment-awaiting-moderation {
	color: #a2a2a2;
}

.comment-awaiting-moderation:before {
	content: "\f414";
	margin-right: 5px;
	position: relative;
	top: -2px;
}

.comment-reply-link:before,
.comment-reply-login:before {
	margin-right: 3px;
}

/* Comment form */
.comment-respond {
	padding: 30px 0 0;
}

.comment .comment-respond {
	margin-bottom: 20px;
	padding: 40px;
}

.comment-reply-title {
	font: normal 700 26px 'Libre Caslon Text', serif;
	text-transform: none;
	letter-spacing: 0px;
	margin-bottom: 2px;
	color:#000;
	text-align: left;
}

.comment-reply-title small a {
	color: #131310;
	display: inline-block;
	float: right;
	height: 16px;
	overflow: hidden;
	width: 16px;
}

.comment-reply-title small a:hover {
	color: #ed331c;
	text-decoration: none;
}

.comment-reply-title small a:before {
	content: "\f406";
	vertical-align: top;
}

.sidebar .comment-list .comment-reply-title,
.sidebar .comment-list .comment-respond .comment-form {
	padding: 0;
}

.comment-form .comment-notes {
	margin-bottom: 15px;
	font-size: 14px;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
	margin-bottom: 8px;
}

.comment-form [for="author"],
.comment-form [for="email"],
.comment-form [for="url"],
.comment-form [for="comment"] {
	float: left;
	padding: 5px 0;
	width: 120px;
}

.comment-form .required {
	color: #8aafc0;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	width: 100%;
	height: 40px;
	border: 1px solid #bababa;
	background-color: white;
	text-align: left;
	text-indent: 10px;
	font-style: normal;
	font-size: 14px;
}

.comment-form textarea {
	width: 100%;
	height: 85px;
	border: 1px solid #bababa;
	background-color: white;
	text-align: left;
	text-indent: 10px;
	font-style: normal;
	font-size: 14px;
}

.form-allowed-tags,
.form-allowed-tags code {
	color: #686758;
	font-size: 12px;
	display: none;
}

.form-allowed-tags code {
	font-size: 10px;
	margin-left: 3px;
}

.comment-list .pingback,
.comment-list .trackback {
	padding-top: 24px;

}

#comment_li hr {
	background-color:#eee;
	color:#eee;
	border-width:0;
	height:1px;
	line-height:0;
}

.comment-navigation {
	font-size: 20px;
	font-weight: 300;
	margin: 0 auto;
	max-width: 604px;
	padding: 20px 0 30px;
	width: 100%;
}

.no-comments {
	background-color: #F6F6F3;
	font: normal 100 14px 'Montserrat', 'karla', Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin: 0;
	color:#2B2B2B;
	text-align: center;
	padding: 20px;
}

.sidebar .no-comments {
	padding-left: 0px;
	padding-right: 0px;
}

.tasty-recipes-ratings {
    font-weight: bold;
}

.akismet_comment_form_privacy_notice,
.after-comments-area {
    font-size: 14px;
}


/**
 * 5.13 Multisite
 * ----------------------------------------------------------------------------
 */

.site-main .mu_register {
	margin: 0 auto;
	max-width: 604px;
	width: 100%;
}

.mu_alert {
	margin-top: 25px;
}

.site-main .mu_register input[type="submit"],
.site-main .mu_register #blog_title,
.site-main .mu_register #user_email,
.site-main .mu_register #blogname,
.site-main .mu_register #user_name {
	font-size: inherit;
	width: 270px;
}

.site-main .mu_register input[type="submit"] {
	width: auto;
}

/**
 * 5.14 Amazon Code + Related Recipes
 * ----------------------------------------------------------------------------
 */

.amazon-code {
    border-top: 1px solid #eee;
}

.amazon-entry-title {
    padding: 10px 0;
	font: normal 700 30px 'Libre Caslon Text', serif;
	text-transform: none;
	letter-spacing: 0px;
	margin-bottom: 2px;
	color:#000;
	text-align: left;
}

/**
 * 5.15 xPanel for Recipe Page
 * ----------------------------------------------------------------------------
 */
.panel-toggle.icon-style {
    top: 40px;
    right: -140px;
    width: 140px;
    height: 48px;
}

.panel-toggle.icon-style:after {
    content: 'Recipe Search';
    float: right;
    margin-top: 12px;
    margin-right: 10px;
}

/**
 * 6.0 Sidebar
 * ----------------------------------------------------------------------------
 */

.site-main .widget-area {
	float: right;
	width: 300px; /* ancho sidebar*/

}

/* @media (max-width: 1099px) {
	.widget-area #text-217,
	.widget-area #juiz_last_tweet_widget-2,
	.widget-area #text-191,
	.widget-area #text-214
	 .latest_post_thanh {
	    display: none;
	}
} */

/**
 * 6.1 Widgets
 * ----------------------------------------------------------------------------
 */

.widget {
	font-size: 12px;
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
	word-wrap: break-word;
	text-align: center;
    letter-spacing: 1px;
	margin-left: 30px;
	padding-bottom: 10px;
}

.widget .widget-title {
	color: #141412;
	display: block;
	font-weight: 400;
	font-family: 'Lato', sans-serif;
    font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-align: center;
	padding: 5px;
	margin-top:15px;
    margin-top:30px;	
    font-style: normal;
    border-top: 1px solid #eee;
}

.textwidget {
	}

.profile-data {
	text-align: justify;
	text-transform: none;
    font-style: normal;
    letter-spacing: 0.4px;
	line-height: 17px;
	margin-top: 10px;
	
}

.profile-image {
	margin-top: 18px;
}

.side-icons{
	text-align: center;
	margin-top: 15px;
}


.side-icons a{
	margin: 0px 10px 0px 10px; 
}

.widget ul,
.widget ol {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.widget li {
	padding: 0 0;
}

.widget .children li:last-child {
	padding-bottom: 0;
}

.widget li > ul,
.widget li > ol {
	margin-left: 20px;
}

.widget a {
	color: #000;
}

.widget a:hover {
	color: #000;
}

/* Search widget */
.search-form .search-submit {
	display: none;
}

/* RSS Widget */
.widget_rss .rss-date {
	display: block;
}

.widget_rss .rss-date,
.widget_rss li > cite {
	color: #a2a2a2;
}


/* Tag Cloud */

.tagcloud a{
	background-color: #eee;
	padding: 2px 7px;
	margin: 0 2px 6px 0px;
	display: inline-block;
	vertical-align: top;
}

.tagcloud a:hover{
	background-color: white;
	padding: 2px 7px;
	margin: 0 2px 6px 0px;
	display: inline-block;
	vertical-align: top;
}


/* Calendar Widget */
.widget_calendar table,
.widget_calendar td {
	border: 0;
	border-collapse: separate;
	border-spacing: 1px;
	max-width: 80%;
	margin: 0 auto;
}

.widget_calendar caption {
	font-size: 13px;
	margin: 0;
	font-weight: 400;
	text-align: center;
}

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

.widget_calendar a {
	display: block;
}

.widget_calendar a:hover {
	background-color: rgba(0, 0, 0, 0.15);
}

.widget_calendar tbody td {
	background-color: #f4f4f4;
}

.site-footer .widget_calendar tbody td {
	background-color: #f4f4f4;
}

.widget_calendar tbody .pad, .site-footer .widget_calendar tbody .pad {
	background-color: transparent;
}

.widget_nav_menu ul{
	margin-top: 0px;
}

.widget_nav_menu ul li {
	background-color: #f4f4f4;
	padding-top: 1px;
	padding-bottom: 1px;
	margin-top: 5px;
}

.widget_nav_menu ul li a:link {
	color:#464646;
	
}

.widget_nav_menu ul li a:visited {
	color:#464646;
}

.widget_nav_menu ul li a:hover {
	color:#B3B2A3;
	
}

/* Latest Post with Thumbnail */
.latest_post_thanh {
    margin-left: 30px;
    word-wrap: break-word;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid #E8E8E8;
    padding: 30px;
    text-align: left !important;
}

.latest_post_thanh .widget-title {
	font: 700 28px 'Libre Caslon Text', serif;
	border: 0;
	font-size: 20px;
    letter-spacing: 0px;
    margin-top: 0;
    padding: 0;
    text-align: center;
    text-transform: none;
}

.widget ul.latest-post-wrap li {
	border-bottom: 1px dashed #eeeeee;
	list-style-type: none;
	margin-bottom: 10px;
	padding-bottom: 13px;
}

.widget ul.latest-post-wrap li:last-child {
	border: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.widget ul.latest-post-wrap li .latest-post-item {
	overflow: hidden;
}

.widget ul.latest-post-wrap li .latest-post-item .latest-post-image {
	float: none;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}

.widget ul.latest-post-wrap li .latest-post-item .latest-post-image img {
	width: 270px;
	height: auto;
}

.widget ul.latest-post-wrap li .latest-post-item .latest-post-text h4 {	
	margin-top: 5px;
}

.widget ul.latest-post-wrap li .latest-post-item .latest-post-text h4 a {
	margin-top: 10px;
	margin-bottom: 1px;
	color: #2B2B2B;
	display: block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	text-align: center;
	text-transform: capitalize;
}

.widget ul.latest-post-wrap li .latest-post-item .latest-post-text .latest-post-meta {
	font-size: 11px;
	color: #A3A3A3;
	font-style: italic;
	text-align: center;
	display: none;
}

/**
 * 7.0 Footer
 * ----------------------------------------------------------------------------
 */

.site-footer {
	color: #686758;
	font-size: 14px;
	text-align: center;
}

.colophon .widget{
	margin-left: 0px;
	padding: 25px 0px;
}

.footer-copyright {
	overflow: hidden;
	padding: 12px;
	width:100% !important;
	font-size: 10px;
	text-align: center;
	letter-spacing: 1px;
	background-color: #f4f4f4;
}

.colophon-blog {
	margin: 0px 0 0 0;
	overflow: hidden;
	padding: 10px 0 0px 0px;
	width:100% !important;
	font-size: 11px;
	text-align: center;
	letter-spacing: 1px;
	background-color: #f4f4f4;
}

.site-footer .widget-area,
.sidebar .site-footer {
	text-align: center;
}

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

.site-footer .sidebar-container {

}

.site-footer .widget-area {
	margin: 0 auto;
	max-width: 1040px;
	width: 100%;
}

.sidebar .site-footer .widget-area {
	max-width: 724px;
	position: relative;
	left: -128px;
}

.site-footer .widget {
	background: transparent;
	color: #fff;
	float: left;
	margin-right: 20px;
	width: 245px;
}

.sidebar .site-footer .widget {
	width: 228px;
}

.sidebar .site-footer .widget:nth-of-type(4),
.sidebar .site-footer .widget:nth-of-type(3) {
	margin-right: 0;
}

.site-footer .widget a {
	color: #e6402a;
}

.site-footer .widget-title,
.site-footer .widget-title a,
.site-footer .wp-caption-text {
	color: #fff;
}

.site-info {
	margin: 0 auto;
	max-width: 1040px;
	padding: 30px 0;
	width: 100%;
	background-color: #f0f0f0;
}

#wpstats {
	display: block;
	margin: -10px auto 0;
}

#first_footer{
	width: 100%;
	margin: 0 auto;
}

#first_footer .widget-title{
	border-top: none;
	text-align: center;
	margin-bottom: 0px;
	margin-top: 0px;
}

#footer_sidebar .widget{
	margin: 0px;
	margin: 0 auto;
}

.ffooter{
	position: relative;
	float: left;
	width: 33%;
	margin: 0 2px;
}

.first-footer-widget .widget-title{
	border-top: none;
	margin-top: 0px;
}

.first-footer-widget{
	max-width: 100%;
	margin: 0 auto;
	background-color: #fafafa;
	height: 300px;
}

.first-widget-area{
	max-width: 1260px;
	margin: 0 auto;
}


.second-footer-widget {
	background-color: white;
	margin-bottom: -30px;
}


.third-footer-widget{
	border-top: 1px solid #eee;
	max-width: 100%;
	margin: 0 auto;
	background-color: white;
	color:white;
}

.third-widget-area{
	max-width: 1210px;
	margin: 0 auto;
}

.second-footer-widget .widget-title{
    text-align: center;
}

.second-footer-widget .instagram-pics li {
    display: inline-block;
    max-width: 25%;
    max-width: calc(100%/4);
}

@media screen and (min-width: 1024px) {
	.second-footer-widget .instagram-pics li {
		display: inline-block;
		max-width: 12.5%;
		max-width: calc(100%/8);
	}
}

/* Newsletter */
footer #mc_embed_signup {
	padding-top: 25px;
}

footer #mc_embed_signup .text {
	color: #000 !important;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 3px;
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
}

footer #mc_embed_signup img {
	margin: 0 5px;
}

footer #mc_embed_signup input.email {
    vertical-align: middle !important;
}

footer #mc_embed_signup .button,
footer #mc_embed_signup input[type="submit"] {
    background: #000;
    color: #fff !important;
    font-size: 13px;
    font-weight: 500;
	letter-spacing: 3px;
    margin-left: 10px;
    text-transform: uppercase;
}

footer #mc_embed_signup input.email {
    color: #333 !important;
    font-size: 13px !important;
    line-height: 48px;
    font-style: italic;
    text-align: left;
    border: 1px solid #ececec !important;
    padding: 0 15px !important;
    margin: 0 !important;
    width: 300px !important;
    height: 48px !important;
}

footer #text-225 {
    padding: 0 0 25px;
}

@media (max-width: 768px) {
	#mc_embed_signup .button {
	    width: 300px !important;
	    margin: 10px 0 0 !important;
		text-align: center;
	}
}

/**
 * 8.0 Media Queries
 * ----------------------------------------------------------------------------
 */

@media (max-width: 1599px) {
	.site {
		border: 0;
	}
}

@media (max-width: 1260px) {
	.sidebar img.alignleft,
	.sidebar .wp-caption.alignleft {
		margin-left: 0;
	}

	.sidebar img.alignright,
	.sidebar .wp-caption.alignright {
		margin-right: 0;
	}

	.error404 .page-header {
		margin-left: auto;
		max-width: 604px;
		width: 100%;
	}

	.archive-header,
	.search .page-header,
	.archive .page-header,
	.blog .page-header,
	.error404 .page-content,
	.search .page-content,
	.archive .page-content,
	.attachment .entry-header,
	.attachment .entry-content,
	.post-navigation .nav-links,
	.sidebar .site-info,
	.site-footer .widget-area {
		padding-left: 20px;
		padding-right: 20px;
	}

	.error404 .page-title {
		font-size: 24px;
		padding: 180px;
	}

	.error404 .page-title:before {
		font-size: 554px;
	}

	.attachment .image-navigation {
		max-width: 724px;
	}

	.image-navigation .nav-previous,
	.image-navigation .nav-next {
		position: static;
	}

	.site-main .widget-area {
		margin-right: 0px;
	}
}


/* //////////////////////////////////////////////////////////////////////   1250px  */
@media (max-width: 1250px) {
	   
    .content-area{
		padding: 0 0px 0 20px;	
		max-width: 880px;
		float: left;
		position: relative;	
	}
	
	.site-main .sidebar-container {
		height: auto;
		margin: 0 auto;
		max-width: 300px;
		position: relative;
		float: right;
		margin-right: 30px;
	}
	

}



/* //////////////////////////////////////////////////////////////////////   1222px  */
@media (max-width: 1222px) {
	   
    .content-area{
		padding: 0 0px 0 20px;	
		max-width: 750px;
		float: left;
		position: relative;	
	}
	
	.site-main .sidebar-container {
		height: auto;
		margin: 0 auto;
		max-width: 300px;
		position: relative;
		float: right;
		margin-right: 30px;
	}
	


}


/* //////////////////////////////////////////////////////////////////////   1099px  */
@media (max-width: 1099px) {
	.sidebar .entry-header,
	.sidebar .entry-content,
	.sidebar .entry-summary,
	.sidebar .entry-meta,
	.sidebar .comment-list,
	.sidebar .comment-reply-title,
	.sidebar .comment-navigation,
	.sidebar .comment-respond .comment-form,
	.sidebar .featured-gallery,
	.sidebar .post-navigation .nav-links,
	.author.sidebar .author-info {
		max-width: 604px;
		padding-left: 0;
		padding-right: 0;
	}

	.sidebar .site-info,
	.search.sidebar .page-content,
	.blog.sidebar .page-content,
	.attachment .entry-header,
	.sidebar .comments-title {
		max-width: 604px;
	}

	.sidebar .archive-meta,
	.attachment .entry-header,
	.search.sidebar .page-content,
	.blog.sidebar .page-content,
	.sidebar .site-info,
	.sidebar .comments-title,
	.sidebar .no-comments {
		padding-left: 0;
		padding-right: 0;
	}
	
	.gallery-item{
		width: 32%;
	}

	.entry-excerpt{
		max-width: 100%;
		float: none;
		padding-left: 0px;
	}

	.widget {
	margin-left: 0px;
	margin: 0 auto;
	
	}
	
	.wp-pagenavi{
		margin-bottom: 20px;
	}
	
	.entry-thumbnail{
		float: none;
	}

	ul.nav-menu, div.nav-menu > ul{
		margin-left: 20px;
	}
	
	.site-content{
	padding-right: 0px; 
	}
	
	.content-area{
		padding: 0 0px 0 40px;	
		max-width: 650px;
		float: left;
		position: relative;	
	}
	
	.widget-header{
		display:none;
	}

	.hentry {
   	 	margin: 0 auto;
    }
    
    .site-content{
	    border-right: none;
    }
    
    .entry-title {
    text-align: center;
    }
    
     .entry-meta-date {
    text-align: center;
    }
    
    .entry-content {
	    font-size: 17px;
	    text-align: justify;
    } 
    
    .site-main .sidebar-inner{
	    margin-top: 30px;
    }
    
    .profile-data {
	    max-width: 240px;
	    margin: 0 auto;
	    margin-top: 10px;
	    font-size: 12px;
    }
    
	.select{
   	 	width: 240px;
    }
    
    .widget-area {
	    border-left: none !important;
    }
    
    .site-main .widget-area{
	    padding-left: 0px;
    }
    
    
    .widget_nav_menu {
	    text-align: center;
	    width: 240px;
	    margin: 0 auto;
    }
    
 
    .wp-pagenavi {
	max-width: 1115px;
	padding: 40px 0px 0 0; 
	}
    
    .colophon-blog {
	    font-size: 9px;
    }
    
    .colophon {
	    font-size: 9px;
	    clear: both;
    }
    
	.attachment .entry-meta {
		float: left;
		text-align: left;
		width: 100%;
	}

	.attachment .entry-content {
		max-width: 100%;
		padding: 40px 0;
	}

	.format-status .entry-content {
		padding-top: 40px;
	}
	.slideshow_title{
		display: none !important;
	}

	.format-status .entry-meta {
		padding-bottom: 40px;
	}

	.sidebar .format-status .entry-content,
	.sidebar .format-status .entry-meta {
		padding-left: 35px;
	}

	.sidebar .format-status .entry-content:before,
	.sidebar .format-status .entry-meta:before {
		left: 10px;
	}

	.sidebar .format-status .entry-content p:first-child:before {
		left: 4px;
	}

	.sidebar .paging-navigation .nav-links {
		padding: 0 60px;
	}

	.site-main .sidebar-container {
		height: auto;
		margin: 0 auto;
		max-width: 300px;
		position: relative;
		float: right;
		margin-right: 40px;
	}

	.site-main .widget-area {
		float: none;
		margin: 0;
		width: 100%;
		padding-right: 0px;
		padding-bottom: 40px;
	}

	.sidebar .site-footer .widget-area {
		max-width: 100%;
		left: 0;
	}
	
	#linkwithin_inner{
		margin: 0 auto !important;
	}
	
	.zem_rp_wrap{
	text-align: center;
	}
	
	.colophon .widget{
		width: 100%;
	}
	.zem_rp_wrap{
		height: 575 !important;
	}
	
	.zem_rp_content{
		height: 520px !important;
	}

	ul.related_post li{
		margin-top: 24px !important;
	}
	
	.instagram-desktop{
		display: none;
	}
	
	.instagram-ipad{
		display: block;
	}

	.instagram-mobile{
		display: none;
	}
}


/* //////////////////////////////////////////////////////////////////////   960px  */
@media (max-width: 960px) {
	   
    .content-area{
		padding: 0 0px 0 20px;	
		max-width: 570px;
		float: left;
		position: relative;	
	}
	
	.site-main .sidebar-container {
		height: auto;
		margin: 0 auto;
		max-width: 300px;
		position: relative;
		float: right;
		margin-right: 30px;
	}
	
	.instagram-desktop{
		display: none;
	}
	
	.instagram-ipad{
		display: block;
	}

	.instagram-mobile{
		display: none;
	}

	.zem_rp_wrap{
		height: 575 !important;
	}
	
	.zem_rp_content{
		height: 520px !important;
	}

	ul.related_post li{
		margin-top: 24px !important;
	}
}



/* //////////////////////////////////////////////////////////////////////   890px  */
@media (max-width: 890px) {
	   
    .content-area{
		padding: 0 0px 0 20px;	
		max-width: 500px;
		float: left;
		position: relative;	
	}
	
	.site-main .sidebar-container {
		height: auto;
		margin: 0 auto;
		max-width: 300px;
		position: relative;
		float: right;
		margin-right: 30px;
	}

}

/* //////////////////////////////////////////////////////////////////////   825px  */
@media (max-width: 825px) {	   
    .content-area{
		padding: 0 0px 0 20px;	
		max-width: 500px;
		float: left;
		position: relative;	
	}
	
	.site-main .sidebar-container {
		height: auto;
		margin: 0 auto;
		max-width: 240px;
		position: relative;
		float: right;
		margin-right: 30px;
	}
	
	.search-bar{
		display: none;
	}

}





/* //////////////////////////////////////////////////////////////////////   767px  */
/* Collapse oversized image and pulled images after iPad breakpoint. */
@media (max-width: 770px) {
	.entry-content img.alignleft,
	.entry-content .wp-caption.alignleft {
		margin-left: 0;
	}

	.entry-content img.alignright,
	.entry-content .wp-caption.alignright {
		margin-right: 0;
	}

	.attachment .image-navigation,
	.attachment .entry-attachment .attachment {
		max-width: 604px;
		padding: 0;
		width: 100%;
	}

	.gallery-caption {
		display: none;
	}
	
	 .entry-content {
		 font-size: 17px;
    } 

	.select{
   	 	width: 240px;
  	}
  	
  	 .widget-area {
	    border-left: none !important;
    }
    
    .nav-menu li a{
	    padding: 12px 33px 12px 0px;
    }
    
    .search-bar{
	    display: none !important;
    }
    
    .navbar{
	    display: none;
    }
	
	.hentry {
   	 	width: 100%;
   	 	margin: 0 auto;
    }
    
	.content-area{
		padding: 0 40px 0 40px;	
		max-width: 100%;
		float: none;
		position: relative;	
	}
	
	.site-main .sidebar-container {
		height: auto;
		margin: 0 auto;
		max-width: 300px;
		position: relative;
		float: none;
		margin-right: none;
		margin-top: 60px;
	}
	
	#navbar{
		display: none;
	}
}


/* //////////////////////////////////////////////////////////////////////   708px  */
@media (max-width: 736px) {
	.site-title {
		font-size: 30px;
	}

	#content .entry-header,
	#content .entry-content,
	#content .entry-summary,
	#content footer.entry-meta,
	#content .featured-gallery,
	.search.sidebar .page-content,
	.blog.sidebar .page-content,
	.sidebar .post-navigation .nav-links,
	.paging-navigation .nav-links,
	#content .author-info {
		padding-left: 0px;
		padding-right: 0px;
	
	}
	.comments-area .comments-title,
	.comments-area .comment-list,
	.comments-area .comment-navigation,
	.comment-respond {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.widget,
	.sidebar .site-info,
	.sidebar .paging-navigation .nav-links {
		padding-left: 0px;
		padding-right: 0px;
	}

	#content .format-status .entry-content,
	#content .format-status .entry-met {
		padding-left: 35px;
	}
	
	.format-standard footer.entry-meta{
	
	}
	
	.entry-edit{
		display: none;
	}
    
     .widget-area {
	    border-left: none !important;
    }
  
     .categories-links {
	    max-width: 160px;
    }
    
    .first-footer-widget{
	    height: 200px;
	    
    }
    
    .site-title {
		padding: 30px 0px;
	}
    
    div.zem_rp_footer a.zem_rp_edit{
	    display: none !important;
    }
    
     
    .gallery-item{
		width: 100%;
		margin: 0 auto;
	}

		
	.zem-rp{
		height: 800px !important;
		display: none;
	}
	
	
	.content-area{
		padding: 0 40px 0 40px;	
		max-width: 100%;
		float: none;
		position: relative;	
	}
	
	.site-main .sidebar-container {
		height: auto;
		margin: 0 auto;
		max-width: 300px;
		position: relative;
		float: none;
		margin-right: none;
		margin-top: 60px;
	}
	
	.instagram-desktop{
		display: none;
	}
	
	.instagram-ipad{
		display: none;
	}

	.instagram-mobile{
		display: block;
	}
	

	/* Small menu */
	.menu-toggle {
		cursor: pointer;
		display: inline-block;
		font: 300 17px/1.3 "roboto condensed", Helvetica, sans-serif;
		text-transform: uppercase;
		letter-spacing: 5px;
		margin: 0;
		padding: 12px 0 12px 20px;
	}

	.menu-toggle:after {
		content: "\f502";
		font-size: 12px;
		padding-left: 8px;
		vertical-align: -4px;
	}

	.toggled-on .menu-toggle:after {
		content: "\f500";
		vertical-align: 2px;
	}

	.toggled-on .nav-menu,
	.toggled-on .nav-menu > ul {
		display: block;
		margin-left: 0;
		padding: 0;
		width: 100%;
	}

	.toggled-on li,
	.toggled-on .children {
		display: block;
	}

	.toggled-on .nav-menu li > ul {
		background-color: transparent;
		display: block;
		float: none;
		margin-left: 20px;
		position: relative;
		left: auto;
		top: auto;
	}

	.toggled-on .nav-menu li > ul a {
		color: #141412;
		width: auto;
	}

	.toggled-on .nav-menu li:hover > a,
	.toggled-on .nav-menu .children a {
		background-color: transparent;
		color: #141412;
	}

	.toggled-on .nav-menu li a:hover,
	.toggled-on .nav-menu ul a:hover {
		background-color: #f4f4f4;
		color: #696969;
	}

	ul.nav-menu,
	div.nav-menu > ul {
		display: none;

	}
	
	.slideshow_title{
		display: none !important;
	}
	
	.slideshow_content{
		height: 100px !important;
	}
	
	.slideshow_container{
		height: 100px !important;
	}

	
	.sub-menu {
		border: 0px;
	}

	#content .featured-gallery {
		padding-left: 24px;
	}

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

	.entry-title,
	.format-chat .entry-title,
	.format-image .entry-title,
	.format-gallery .entry-title,
	.format-video .entry-title {
		font-size: 24px;
		font-weight: 400;
	}

	.format-quote blockquote,
	.format-status .entry-content {
		font-size: 18px;
	}

	.format-quote blockquote small,
	.format-quote blockquote cite {
		font-size: 13px;
	}

	.error404 .page-title {
		padding: 40px 0 0;
	}

	.error404 .page-title:before {
		content: normal;
	}

	.comment-author {
		margin-right: 30px;
	}

	.comment-author .avatar {
		height: auto;
		max-width: 100%;
	}

	.comment-metadata,
	.comment-content,
	.comment-list .reply {
		width: 70%;
		width: -webkit-calc(100% - 104px);
		width:         calc(100% - 104px);
	}

	.comment-form input[type="text"],
	.comment-form input[type="email"],
	.comment-form input[type="url"] {
		width: -webkit-calc(100% - 120px);
		width:         calc(100% - 120px);
	}

	.comment-form textarea {
		height: 80px; /* Smaller field for mobile. */
	}

	/* Audio */
	.format-audio .entry-content:before {
		display: none;
	}

	.format-audio .audio-content {
		background-image: none;
		float: none;
		padding-left: 0;
		width: auto;
	}
	.comments-title{
		margin-left: 30px;
	}
	
}

/* //////////////////////////////////////////////////////////////////////   643px  */
/* Mobile devices */
@media (max-width: 643px) {
}

/* //////////////////////////////////////////////////////////////////////   414px  */
/* Mobile devices */
@media (max-width: 414px) {
}

/* //////////////////////////////////////////////////////////////////////   375px  */
/* Mobile devices */
@media (max-width: 375px) {
}


/* //////////////////////////////////////////////////////////////////////   359px  */
/* Mobile devices */
@media (max-width: 359px) {
	.gallery {
		margin-left: 0;
	}

	.gallery .gallery-item,
	.gallery-columns-2.gallery-size-thumbnail .gallery-item {
		max-width: none;
		width: 49%;
		width: -webkit-calc(50% - 4px);
		width:         calc(50% - 4px);
	}

	.gallery-columns-1.gallery-size-medium,
	.gallery-columns-1.gallery-size-thumbnail,
	.gallery-columns-2.gallery-size-thumbnail,
	.gallery-columns-3.gallery-size-thumbnail {
		display: block;
	}

	.gallery-columns-1 .gallery-item,
	.gallery-columns-1.gallery-size-medium .gallery-item,
	.gallery-columns-1.gallery-size-thumbnail .gallery-item {
		text-align: center;
		width: 98%;
		width: -webkit-calc(100% - 4px);
		width:         calc(100% - 4px);
	}

	.gallery-columns-3 .gallery-item:nth-of-type(3n),
	.gallery-columns-5 .gallery-item:nth-of-type(5n),
	.gallery-columns-7 .gallery-item:nth-of-type(7n),
	.gallery-columns-9 .gallery-item:nth-of-type(9n) {
		margin-right: 4px;
	}

	.gallery br {
		display: none;
	}

	.gallery .gallery-item:nth-of-type(even) {
		margin-right: 0;
	}

	/* Comments */
	.comment-author {
		margin: 0 0 5px;
		max-width: 100%;
	}

	.comment-author .avatar {
		display: inline;
		margin: 0 5px 0 0;
		max-width: 20px;
	}

	.comment-metadata,
	.comment-content,
	.comment-list .reply {
		width: 100%;
	}
 
	.widget-area {
	    border-left: none !important;
    }
    
    .linkwithin_div{
	padding-left: 20px;
	}

	#linkwithin_inner{
	max-width: 270px !important;
	}
   
}

/* //////////////////////////////////////////////////////////////////////   329px  */
/* Mobile devices */
@media (max-width: 329px) {
}



/**
 * 9.0 Print
 * ----------------------------------------------------------------------------
 */
@media print {	
	/*#shiftnav-toggle-main {
		display: none;
	}*/
	
	.tasty-recipes-print-view #shiftnav-toggle-main,
	.adthrive-ad {
		display: none;
	}
	
	#first-area .post-item {
		width: 31.3%!important;
		float: left;
		margin-right: 3%;
	}

	#first-area .post-item:last-child {
		margin-right:0;
	}
	
	#second-area .post-item {
		width: 48%!important;
		float: left;
		margin-right: 4%;
	}

	#second-area .post-item:last-child {
		margin-right:0;
	}
	
	#popular-posts .post-item {
		width: 19.2%!important;
		float: left;
		margin-right: 1%;
	}

	#popular-posts .post-item:last-child {
		margin-right:0;
	}

	#third-area .post-item {
		width: 48%!important;
		float: left;
		margin-right: 4%;
	}

	#third-area .post-item:last-child {
		margin-right:0;
	}

	#basic-area .post-item {
		width: 19.2%!important;
		float: left;
		margin-right: 1%;
	}

	#basic-area .post-item:last-child {
		margin-right:0;
	}

	#fourth-area .post-item {
		width: 48%!important;
		float: left;
		margin-right: 4%;
	}

	#fourth-area .post-item:last-child {
		margin-right:0;
	}

	#fifth-area .post-item {
		width: 19.2%!important;
		float: left;
		margin-right: 1%;
	}

	#fifth-area .post-item:last-child {
		margin-right:0;
	}
}

/**************  Footer error ************/

.sidebar .entry-header, .sidebar .entry-content, .sidebar .entry-summary, .sidebar .entry-meta {
padding: 0px 0px 0px 0px;
max-width: 1260px;
}

.sidebar .site-footer .widget-area {
max-width: 1260px;
left: 0px;
}

#block-5 .custom-substack-widget {
	border: 1px solid var(--csw-primary-color);
	border-width: 1px;
	margin-left: 10px;
}

#block-5 #custom-substack-embed input {
    margin-left: 0!important;
    margin-right: 0!important;
}

#block-5 #custom-substack-embed button {
    padding-left: 50px !important;
    height: auto !important;
}

@media (max-width: 500px) {
	#block-5 #custom-substack-embed button {
		padding-left: 15px !important;
	}
}
	
@media (min-width: 1099px) {

#main {
		overflow: hidden;
		margin: 0px auto;
		max-width: 1260px;
	}
	
	body:not(.home) #main {
		display: flex;
	}

	#primary.content-area {
		width: 940px;
		margin:0 auto;
	}

	.site-main .sidebar-container {
		position: static;
		width: 300px;
		height: auto;
	}
	
	.site-main .widget-area {
		margin-top: 38px;

	}
} 


.related_post_title{
	font-size: 12px;
	letter-spacing: 2px;
}


ul.related_post li a{
	font-size: 11px !important;
}

#zem_rp_first{
	 display: none;
}

.back-to-top {
    position: fixed;
    bottom: 13rem;
    right: 0.6rem;
    display: none;
	background-color: #f0f0f0;
	color: #333333 !important;
	width: 46px;
	height: 46px;
	text-align: center;
	border-radius: 50%;
	line-height: 46px;
}

.back-to-top:hover {    
    background-color: rgba(135, 135, 135, 0.50);
}

.back-to-top:before {
	content: '\2191';
	font-size: 25px;
}

#subscribe-email{
	margin-bottom: 0px;
}

#subscribe-email input{
	height: 24px;
}

#subscribe-submit{
	margin-top: 20px;
	height: 24px;
	text-align: center;
	margin-bottom: 0px;
}

.metaslider{
	margin: 0 auto;
}

li.juiz_last_tweet_item{
padding-bottom:15px;}

/* Jetpack Related Posts
--------------------------------------------- */
#jp-relatedposts h3.jp-relatedposts-headline em::before {
	border-top: 1px solid #eee !important;
}

#jp-relatedposts h3.jp-relatedposts-headline em {
	font-weight: 400 !important;	
}

#jp-relatedposts h3.jp-relatedposts-headline {
	color: #000;
	font-family: Open Sans, sans-serif !important;
	font-size: 18px !important;
	text-align: center;
	width: 100%;
}

#jp-relatedposts div.jp-relatedposts-items-visual .jp-relatedposts-post {
	filter: alpha(opacity=100) !important;
	-moz-opacity: 1 !important;
	opacity: 1 !important;
}

#jp-relatedposts div.jp-relatedposts-items div.jp-relatedposts-post:hover {
	filter: alpha(opacity=60) !important;
	-moz-opacity: 0.6 !important;
	opacity: 0.6 !important;
}

#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title,
#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title a,
#jp-relatedposts div.jp-relatedposts-items p {
	color: #000;
	font-family: Open Sans, sans-serif;
	font-weight: 400 !important;
	font-size: 12px !important;
	text-align: center;
	text-transform: uppercase;
}

#jp-relatedposts div.jp-relatedposts-items div.jp-relatedposts-post:hover .jp-relatedposts-post-title a {
	text-decoration: none !important;
}

#jp-relatedposts div.jp-relatedposts-items div.jp-relatedposts-post:hover .jp-relatedposts-post-title a:hover {
	color: #999;
}

/* Pinterest
--------------------------------------------- */
[data-pin-log*="button_pinit_floating"]  {
    border-radius: 0 !important;
    text-indent: 0 !important;
    width: 48px !important;
    padding: 24px !important;
    color: #fff !important;
    background: transparent url(https://eatlittlebird.com/wp-content/uploads/2015/07/07-Light-Grey_Social-Icon_48-Pinterest.png) 50% 50% no-repeat !important;
    background-size: 48px 48px !important;
	overflow: hidden;
}

/*
Welcome to Custom CSS!

To learn how this works, see http://wp.me/PEmnE-Bt
*/
.Table {
	display: table;
	width: 100%;
}

.Title {
	display: table-caption;
	text-align: center;
	font-weight: bold;
	font-size: larger;
}

.Heading {
	display: table-row;
	font-weight: bold;
	text-align: center;
}

.Row {
	display: table-row;
	height: 100%;
}

.Cell {
	display: table-cell;
	border: 1px solid #d6d5d5;
	padding-left: 0;
	padding-right: 5px;
	text-align: left;
	vertical-align: top;
	width: 50%;
}

.Cell1 {
	display: table-cell;
	border: 1px solid #d6d5d5;
	padding-left: 5px;
	padding-right: 5px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #d6d5d5;
	padding-top: 10px;
	padding-bottom: 10px;
}

.Cell2 {
	display: table-cell;
	border: none;
	padding-left: 5px;
	padding-right: 5px;
	text-align: left;
	vertical-align: top;
}

.Cell3 {
	display: table-cell;
	border: none;
	padding-left: 0;
	padding-right: 5px;
	text-align: left;
	vertical-align: top;
	width: 25%;
	border-bottom: 1px solid #d6d5d5;
	padding-top: 10px;
	padding-bottom: 10px;
}

.Cell4 {
	display: table-cell;
	border: none;
	padding-left: 5px;
	padding-right: 5px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #d6d5d5;
	padding-top: 10px;
	padding-bottom: 10px;
}

.Cell5 {
	display: table-cell;
	border: none;
	padding-left: 0;
	padding-right: 5px;
	text-align: left;
	vertical-align: top;
	width: 33%;
	border-bottom: 1px solid #d6d5d5;
	padding-top: 10px;
	padding-bottom: 10px;
}

.Cell6 {
	display: table-cell;
	padding-left: 5px;
	padding-right: 5px;
	text-align: left;
	border: solid #d6d5d5;
    border-width: 1px;
}

.recipe-grid {
	clear: both;
	background: none;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	padding: 0;
}

.recipe-grid.columns {
	margin-right: 0;
}

.CellRecipe {
	display: table-cell;
	width: auto;
	height: 155px;
	margin: 4px;
	bottom: 37px;
	position: relative;
	float: left;
	padding: 2px;
	text-decoration: none;
	overflow: visible;
}

.CellRecipe:last-of-type {
	margin-right: 0;
}

.recipe-grid img {
	width: 100%;
	height: 155px;
	position: relative;
	float: left;
}

.recipe-grid a {
	display: block;
	text-decoration: none;
}

.screen {
	background-color: rgba(0,0,0,0.5);
	left: 3px;
	top: 37px;
	bottom: 0;
	height: 100%;
	width: 97%;
	position: absolute;
	opacity: 0;
	z-index: 1000;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.screen:hover {
	opacity: 1;
}

.recipecaption {
	color: #fff;
	font-family: arial, helvetica, sans-serif;
	font-weight: normal;
	font-size: 13px;
	text-align: center;
	padding-top: 40px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	margin-left: 0;
}

.screen:hover .title {
	margin-left: 0;
}

.screen.fade-in .title {
	margin-left: 0;
}

.screen.fade-in:hover {
}

.comment_text ul {
	display: none;
}

.wh6 {
	margin: 3em 0 0;
}

.whome6 {
	background: #fafafa;
	padding: 10px 0;
}

.tab-pane {
	width: 1260px;
	margin: 0 auto;
}

#tab_container_18655 .tab-content {
	padding: 0 0 5px 10px !important;
}

@media (min-width: 769px) {
	#wpsm_tabs_r_widget_id-2	#tab_container_18655 .wpsm_nav-tabs > li {
		float: none !important;
		margin-bottom: -1px;
		display: inline-block !important;
	}
}

#wpsm_tabs_r_widget_id-2 #tab_container_18655 .wpsm_nav {
	text-align: center !important;
}

#wpsm_tabs_r_widget_id-2 #tab_container_18655 .wpsm_nav-tabs > li {
	margin: 1em 0 !important;
}

.wpsm_nav-tabs > li.active > a, .wpsm_nav-tabs > li.active > a:hover, .wpsm_nav-tabs > li.active > a:focus {
	background-color: #fff;
	border: 2px solid #000;
	border-bottom-color: #000 !important;
	color: #000;
}

.wpsm_nav-tabs > li > a:hover {
	background-color: #fff;
	border: 2px solid #000;
	border-bottom-color: #000 !important;
}

#wpsm_tabs_r_widget_id-2	#tab_container_18655 .wpsm_nav-tabs > li > a {
	padding: 8px 15px !important;
}

.gotoblog {
	font-size: 15px !important;
}

.wh4 .widget_text {
	padding-top: 2em;
}

.page-template-page-recipes .hentry {
    padding-top: 0;
    border-top: 0;
}

.page-template-page-recipes .site-main .sidebar-container {
    border-top: 0;
}

.page-template-page-recipes .entry-header {
	display: none;
}

.page-template-page-recipes .entry-index {
	float: left;
	width: 30%;
  margin-right: 2%;
	margin-bottom: 20px;
}

.page-template-page-recipes .entry-index:nth-child(3n+1){
	clear: both;
}

.page-template-page-recipes .entry-title {
    font: normal 100 12px 'Montserrat', 'karla', Arial, sans-serif;
	letter-spacing: 1px;
}

.page-template-page-recipes .entry-title a {
    border-bottom: 0;
}

.page-template-page-recipes .widget_search {
	  border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
	  padding-bottom: 2em;
}

.page-template-page-recipes .site-content {
    padding-right: 0;
}

.page-template-page-recipes .widget-area {
	  border-left: 1px solid #eee;
	  color: #5e5e5e;
    margin-top: 0;
	  padding-left: 2.5em;
}

.facetwp-type-checkboxes {
    overflow: auto;
    max-height: 100% !important;
}

.facetwp-counter {
	  color: #ababab;
}

/* Fixes for xPanel */
#secondary.sliding-sidebar {
	margin-top: 10em;
	height: 100% !important;
	z-index: 111111;
}

#sliding-panel-actions.show-actions {
    display: none;
}

.page-template-page-recipes #sliding-panel-actions.show-actions {
    display: block;
}

.single-post .entry-share {
    position: relative;
    float: none;
    margin-top: 0;
	  display: block;
}

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

.entry-share {
   display: none;
}

div#mg-wprm-wrap form.wpr-search-form button.wpr_submit {
	  background: #fff;
    top: 5px;
    right: 1px;
    height: 33px;
    padding: 0px 8px;
}

footer.tasty-recipes-entry-footer h3 {
    color: white;
}

@media (max-width: 480px) {
	footer.tasty-recipes-entry-footer h3 {
	    text-align: center !important;
	}

	.tasty-recipes-image {
		margin-top: 1em!important;
		border-left: 0 !important;
	    float: none !important;
	    text-align: center;
	}
}

.instagram-media{
  margin: 15px auto !important;
}

/* iPad PRO Portrait */
@media only screen and (min-width: 1024px) and (orientation: portrait) {
	.single-post #primary {
		max-width: 100% !important;
		width: 100%;
		float: none;
		clear: both;
		padding-right: 40px !important;
	}
	
	#text-178,
	#text-229,
	#AdThrive_Sidebar_1_desktop,
	#latest_post_thanh-2 {
		display: none;
	}
}

/* single post newsletter */
#before-comments-widget {
	display: none;
    padding: 35px 25px;
/*    background-color: #ECECEC;
    border: 1px solid #ECECEC;*/
}

#before-comments-widget #mc_embed_signup {
    background: transparent !important;
}

#before-comments-widget #mc_embed_signup .text {
	color: #000 !important;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 3px;
    text-transform: uppercase;
}

#before-comments-widget #mc_embed_signup img {
	margin: 0 5px;
}

#before-comments-widget #mc_embed_signup .button,
#before-comments-widget #mc_embed_signup input[type="submit"] {
    background: #000;
    color: #fff !important;
    font-size: 13px;
    font-weight: 500;
	letter-spacing: 3px;
    margin-left: 10px;
    margin-top: 9px;
    text-align: center;
    text-transform: uppercase;
}

#before-comments-widget #mc_embed_signup input.email {
    color: #333 !important;
    font-size: 13px !important;
    line-height: 48px;
    font-style: italic;
    text-align: left;
    border: 1px solid #ececec !important;
    padding: 0 15px !important;
    margin: 0 !important;
    width: 70% !important;
    height: 48px !important;
}

@media (max-width: 768px) {
	#before-comments-widget #mc_embed_signup .button {
	    width: 70% !important;
	    margin: 10px 0 0 !important;
	}
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
.page-template-page-home-new .site,
.page-template-page-home-new #main {
	max-width: 100%;
}

/*--------------------------------------------------------------
## General Area
--------------------------------------------------------------*/
.title-area {
	font-family: 'Libre Caslon Text', serif;
	font-size: 30px;
	font-weight: 700;
	text-transform: none;
}

.posts-area {
	overflow: hidden;
    padding: 1em 0;
    margin: 0 auto;
    max-width: 1260px;
}

.post-item {
	display: table;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 2em;
	position: relative;
	width: 100%
}

.post-overlay {
	height: 100%;
    display: table-cell;   
    vertical-align: bottom;   
	text-align: center;
}

.post-title {
	color: #000;
	background-color: rgba(255,255,255, 0.9);
	display: table;
	margin-bottom: 15px;
	height: 64px;
	padding: 8px 12px 8px 13px;
	width: 100%;
	-webkit-transition:all .1s ease-in-out;
	-moz-transition:all .1s ease-in-out;
	-ms-transition:all .1s ease-in-out;
	-o-transition:all .1s ease-in-out;
	transition:all .1s ease-in-out;
}

.post-item:hover .post-title {
	background-color: rgba(255,255,255, 1);
}

.post-title h2 {
	display: table-cell;
	line-height: 1.5em;
	font-size: 14px;
	text-transform: none;
	letter-spacing: 0px;
	vertical-align: middle;
}

.post-link {
	position: absolute; 
	height: 100%; 
	width: 100%;
	top: 0;
	left:0;
	z-index: 10;
	display: block
}

/* Safari 10.1+ */

@media not all and (min-resolution:.001dpcm) { @media {
	.post-overlay {
		position: relative;
		width: 100%;
	}

	.post-title {
		position: absolute;
		left: -1px;
		bottom: 0;
		width: 100.5%;
	}
}}

/* Safari 6.1-10.0 (not 10.1) */

@media screen and (min-color-index:0) and (-webkit-min-device-pixel-ratio:0) 
{ @media {
	.post-overlay {
		position: relative;
		width: 100%;
	}

	.post-title {
		position: absolute;
		left: -1px;
		bottom: 0;
		width: 100.5%;
	}
}}

@media screen and (max-width: 1024px) {
.posts-area {
    padding: 1em 25px;
}
}

/*--------------------------------------------------------------
## First Area
--------------------------------------------------------------*/
#first-area {
	background-color: #F9F9F9;
}

#first-area .post-item {
	height: 550px;
	width: 100%
}

#first-area .post-title h2 {
	font-size: 18px;
}

@media screen and (min-width: 768px) {
	#first-area .post-item {
		width: 31.3%;
		float: left;
		margin-right: 3%;
	}

	#first-area .post-item:last-child {
		margin-right:0;
	}
}

@media screen and (max-width: 768px) {
	#first-area .post-item {
		height: 350px !important;
	}
}

@media screen and (max-width: 1024px) {
	#first-area .post-item {
		height: 450px;
	}
}

/*--------------------------------------------------------------
## Second Area
--------------------------------------------------------------*/
#second-area {
	background-color: #FFFFFF;
}

#second-area .post-item {
	height: 350px;
	width: 100%
}

#second-area .post-title h2 {
	font-size: 18px;
}

@media screen and (min-width: 768px) {
	#second-area .post-item {
		width: 48%;
		float: left;
		margin-right: 4%;
	}

	#second-area .post-item:last-child {
		margin-right:0;
	}
}

@media screen and (max-width: 768px) {
	#second-area .post-item {
		height: 250px;
	}
}

/*--------------------------------------------------------------
## Popular Posts
--------------------------------------------------------------*/
#popular-posts {
	background-color: #F9F9F9;
}

#popular-posts .post-item {
	height: 350px;
	width: 100%
}

@media screen and (min-width: 768px) {
	#popular-posts .post-item {
		width: 19.2%;
		float: left;
		margin-right: 1%;
	}

	#popular-posts .post-item:last-child {
		margin-right:0;
	}
}

@media screen and (max-width: 768px) {
	#popular-posts .post-item {
		height: 250px !important;
		width: 18.9% !important;
	}
}

@media screen and (max-width: 1024px) {
	#popular-posts .post-item {
		height: 300px;
	}
}

/*--------------------------------------------------------------
## Third Area
--------------------------------------------------------------*/
#third-area {
	background-color: #FFFFFF;
}

#third-area .post-item {
	height: 350px;
	width: 100%
}

#third-area .post-title h2 {
	font-size: 18px;
}

@media screen and (min-width: 768px) {
	#third-area .post-item {
		width: 48%;
		float: left;
		margin-right: 4%;
	}

	#third-area .post-item:last-child {
		margin-right:0;
	}
}

@media screen and (max-width: 768px) {
	#third-area .post-item {
		height: 250px;
	}
}

/*--------------------------------------------------------------
## Basic Recipes Area
--------------------------------------------------------------*/
#basic-area {
	background-color: #F9F9F9;
}

#basic-area .post-item {
	height: 350px;
	width: 100%
}

@media screen and (min-width: 768px) {
	#basic-area .post-item {
		width: 19.2%;
		float: left;
		margin-right: 1%;
	}

	#basic-area .post-item:last-child {
		margin-right:0;
	}
}

@media screen and (max-width: 768px) {
	#basic-area .post-item {
		height: 250px !important;
		width: 18.9% !important;
	}
}

@media screen and (max-width: 1024px) {
	#basic-area .post-item {
		height: 300px;
	}
}

/*--------------------------------------------------------------
## Fourth Area
--------------------------------------------------------------*/
#fourth-area {
	background-color: #FFFFFF;
}

#fourth-area .post-item {
	height: 350px;
	width: 100%
}

#fourth-area .post-title h2 {
	font-size: 18px;
}

@media screen and (min-width: 768px) {
	#fourth-area .post-item {
		width: 48%;
		float: left;
		margin-right: 4%;
	}

	#fourth-area .post-item:last-child {
		margin-right:0;
	}
}

@media screen and (max-width: 768px) {
	#fourth-area .post-item {
		height: 250px;
	}
}

/*--------------------------------------------------------------
## Fifth Area
--------------------------------------------------------------*/
#fifth-area {
	background-color: #F9F9F9;
}

#fifth-area .post-item {
	height: 350px;
	width: 100%
}

@media screen and (min-width: 768px) {
	#fifth-area .post-item {
		width: 19.2%;
		float: left;
		margin-right: 1%;
	}

	#fifth-area .post-item:last-child {
		margin-right:0;
	}
}

@media screen and (max-width: 768px) {
	#fifth-area .post-item {
		height: 250px !important;
		width: 18.9% !important;
	}
}

@media screen and (max-width: 1024px) {
	#fifth-area .post-item {
		height: 300px;
	}
}

/*--------------------------------------------------------------
## Sixth Area
--------------------------------------------------------------*/
#sixth-area {
	background-color: #FFFFFF;
}

#sixth-area .post-item {
	height: 350px;
	width: 100%
}

#sixth-area .post-title h2 {
	font-size: 18px;
}

@media screen and (min-width: 768px) {
	#sixth-area .post-item {
		width: 48%;
		float: left;
		margin-right: 4%;
	}

	#sixth-area .post-item:last-child {
		margin-right:0;
	}
}

@media screen and (max-width: 768px) {
	#sixth-area .post-item {
		height: 250px;
	}
}

/*--------------------------------------------------------------
## Seventh Area
--------------------------------------------------------------*/
#seventh-area {
	background-color: #F9F9F9;
}

#seventh-area .post-item {
	height: 350px;
	width: 100%
}

@media screen and (min-width: 768px) {
	#seventh-area .post-item {
		width: 19.2%;
		float: left;
		margin-right: 1%;
	}

	#seventh-area .post-item:last-child {
		margin-right:0;
	}
}

@media screen and (max-width: 768px) {
	#seventh-area .post-item {
		height: 250px !important;
		width: 18.9% !important;
	}
}

@media screen and (max-width: 1024px) {
	#seventh-area .post-item {
		height: 300px;
	}
}

/*--------------------------------------------------------------
## Feedback Area
--------------------------------------------------------------*/
#feedback-area [class*="genericon"] {
	display: block!important;
}

#feedback-area .post-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#feedback-area h2 {
	font-size: 20px;
}

#feedback-area a {
	color: #2B2B2B;
}

#feedback-area .post-items__single {
	background-color: #F9F9F9;
	width: 31%;
}

#feedback-area .post-items__content {
	padding: 22px;
}

.post-item__stars:before {
	display: block!important;
	font: normal 25px/1 Genericons!important;
}

.post-item__stars.star5:before {
	content: '\f408 \f408 \f408 \f408 \f408';
}
.post-item__stars.star4:before {
	content: '\f408 \f408 \f408 \f408';
}
.post-item__stars.star3:before {
	content: '\f408 \f408 \f408';
}
.post-item__stars.star2:before {
	content: '\f408 \f408';
}
.post-item__stars.star1:before {
	content: '\f408';
}

.post-items__getrecipe a {
	font-weight: 700;
	text-transform: uppercase;
}

.post-items__getrecipe a:hover {
	text-decoration: underline;
}

.thanh-rightarrow:before {
	content: '\2192';
	margin-left: 5px;
}
/*--------------------------------------------------------------
# CSS from Additional CSS
--------------------------------------------------------------*/
/*Mediavine CSS */
@media only screen and (min-width: 1024px) {
	.single-post #primary {
		max-width: calc(100% - 360px);
		padding-right: 15px;
	}
	.single-post #tertiary {
		min-width: 300px !important;
	}
	#tertiary .widget {
		margin-left: 0px;
	}
	.latest_post_thanh {
		margin-bottom: 25px;
	}
}

@media only screen and (max-width: 1023px) {
	.single-post #primary, 
	.single-post #tertiary {
		max-width: 100%;
		width: 100%;
		float: none;
		clear: both;
	}
	
	#text-178,
	#text-229,
	#AdThrive_Sidebar_1_desktop,
	#latest_post_thanh-2 {
		display: none;
	}
}

@media only screen and (max-width: 399px) {
	#primary {
		padding: 10px;
	}
	.tasty-recipes-display {
		padding: 0px;
	}
}
/* End of Mediavine CSS*/

/* Tasty Recipes Modern Compact recipe card styles */

.tasty-recipes-display {
border: 1px solid #ededed;
padding: 0 20px 20px;
margin-bottom: 1em;
text-align: left;
}

.tasty-recipes-display::after {
content: '';
display: block;
clear: both;
}

.tasty-recipes-display h2 {
background: none;
padding: 0.8em;
font-size: 28px;
color: #000;
font-weight: 800;
text-align: left;
letter-spacing: 0px;
margin-top: 0;
margin-left: -20px;
margin-right: -20px;
margin-bottom: -20px;
}

.tasty-recipes-rating p {
display: inline-block;
font-style: italic;
font-size: 1em;
color: #000;
margin-top: 0.4em;
margin-right: 0.3em;
}

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

.tasty-recipes-details {
font-size: 14px;
}

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

.tasty-recipes-details ul li {
list-style-type: none;
margin-left: 0;
margin-bottom: 0;
padding: 0;
}

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

.prep-time, .total-time, .cook-time, .resting-time, .marinating-time {
display: inline-block;
margin-right: 1em !important;
vertical-align: top;
font-size: 14px;
}

/* Tasty Sharing Button */
a.tasty-recipes-print-button {
	display: none;
}

.tasty-recipes-button-wrap {
	display: block;
    margin: 5px 0;
    text-align: center;
}

.tasty-recipes-buttons a {
    text-transform: uppercase;
    text-align: center;
    display: block;
    color: #000!important;
    background-color: #e1e1e1;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 1px;
	padding: 1em 0.7em !important;
    margin-top: 0;
    cursor: pointer;
    box-shadow: none;
    border: none;
    border-radius: 0;
    height: 48px;
    text-decoration: none;
}

.tasty-recipes-buttons a:hover {
	opacity: 0.7;
}

.tasty-recipes-print-button:hover {
    background-color: #e1e1e1!important;
    display: inherit!important;
}

.tasty-recipes-buttons img.svg-print,
.tasty-recipes-buttons img.svg-pinterest,
.tasty-recipes-buttons img.svg-rate {
	margin-top: -2px;
    margin-right: 6px;
    width: 20px;
}

.tasty-recipes-buttons img {
    vertical-align: top;
}

.tasty-recipes-image {
	/*margin-top: -1.9em;*/
	border-left: 1em solid rgba(0,0,0,0);
	float: right;
}

.tasty-recipes-image img {
  margin-bottom: 15px;
  width: 250px;
}

.tasty-recipe-ingredients,
.tasty-recipe-instructions {
width: 100%;
float: none;
}

.tasty-recipe-ingredients h3,
.tasty-recipes-ingredients h3,
.tasty-recipe-instructions h3,
.tasty-recipes-instructions h3,
.tasty-recipes-notes h3,
.tasty-recipes-nutrition h3 {
font-size: 22px;
font-weight: 600;
margin-top: 0.6em;
letter-spacing: 0px;
text-transform: none; /* emove this line to keep it from forcing headers to be lowercase */
}

.tasty-recipe-ingredients > :nth-child(2),
.tasty-recipes-ingredients > :nth-child(2),
.tasty-recipe-instructions > :nth-child(2),
.tasty-recipes-instructions > :nth-child(2) {
padding-top: 1em;
}

.tasty-recipe-ingredients ol,
.tasty-recipe-ingredients ul,
.tasty-recipe-ingredients p,
.tasty-recipe-ingredients h4 {
padding-right: 1em;
color: #000;
font-style: italic;
text-align: left;
}

@media only screen and (min-width: 520px) {
	.tasty-recipes-buttons {
		margin-top: 5px;
		text-align: center;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		clear: both;
	}

	.tasty-recipes-button-wrap {
	    width: 32%;
	}
}

/* Creates full-width solid band across instructions & ingredients */

.tasty-recipe-ingredients h3,
.tasty-recipe-instructions h3 {
background: #e1e1e1;
padding: 0.7em;
margin-left: -20px;
margin-right: -20px;
margin-bottom: -0;
color: #000;
}

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

}

.tasty-recipes-notes {
	padding-left: 2em;
	padding-right: 2em;
	padding-top: 0em;
	padding-bottom: 0.7em;
	background: #e1e1e1;
	clear: both;
	margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 0px;
}

.tasty-recipes-notes h3 {
    background: #e1e1e1;
    padding: 0.7em;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 0px;
		margin-top: -20px;
		color: #000;
}

.tasty-recipes-notes p,
.tasty-recipes-notes ul {
	font-size: 1em;
	background: #fff;
	padding: 0.8em;
}

.tasty-recipes-notes h4 {
    background: #e1e1e1;
    padding: 0.8em;
    margin-left: -10px;
    margin-right: -30px;
    margin-bottom: 0;
		margin-top: -10px;
		color: #000;
}

.tasty-recipes-nutrition {
padding: 0em;
clear: both;
}

.tasty-recipes-nutrition h3 {
background: #e1e1e1;
padding: 0.7em;
margin-left: -20px;
margin-right: -20px;
margin-bottom: 5px;
color: #000;
}

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

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

.tasty-recipes-print-view .tasty-recipe-display h2 {
font-size: 14px;
}

.tasty-recipes-print-view .tasty-recipes-rating p,
.tasty-recipes-print-view .tasty-recipes-description p,
.tasty-recipes-print-view .tasty-recipes-details ul,
.tasty-recipes-print-view .tasty-recipes-details ul li,
.tasty-recipes-print-view .prep-time, .total-time, .cook-time {
font-size: 15px;
}

.tasty-recipes-print-view .tasty-recipe-ingredients h3,
.tasty-recipes-print-view .tasty-recipe-instructions h3,
.tasty-recipes-print-view .tasty-recipes-notes h3,
.tasty-recipes-print-view .tasty-recipes-nutrition h3 {
font-size: 12px;
}

.tasty-recipes-print-view .tasty-recipe-ingredients ol,
.tasty-recipes-print-view .tasty-recipe-ingredients ul,
.tasty-recipes-print-view .tasty-recipe-ingredients p,
.tasty-recipes-print-view .tasty-recipe-ingredients h4 {
padding-left: 1em;
font-size: 15px;
}

.tasty-recipes-print-view .tasty-recipe-instructions ol,
.tasty-recipes-print-view .tasty-recipe-instructions ul,
.tasty-recipes-print-view .tasty-recipe-instructions p,
.tasty-recipes-print-view .tasty-recipe-instructions h4 {
padding-left: 2em;
font-size: 15px;
}

.tasty-recipes-print-view .tasty-recipes-notes p,
.tasty-recipes-print-view .tasty-recipes-notes ul {
font-size: 15px;
}

.tasty-recipes-print-view .tasty-recipes-nutrition ul li {
font-size: 15px;
}

.tasty-recipes-print-view #wprmenu_menu,
.tasty-recipes-print-view #wprmenu_bar,
.tasty-recipes-print-view #sliding-panel-actions {
display: none;
}

.tasty-recipe-instructions li,
.tasty-recipe-ingredients li
{
padding-bottom: 0.8em;
	margin-bottom: 0;
}

footer.tasty-recipes-entry-footer {
background: #020202;
border-top: 1px solid #e1e1e1;
margin: 10px -20px -20px -20px;
	padding: 0.5rem 2rem;
text-align: center;
color: #fff;
font-size: 22px;
}

footer.tasty-recipes-entry-footer h3 {
letter-spacing: 1px;
font-weight: 800;	
font-size: 22px;
color: #fff;
}

@media (min-width:1025px) {

    .tasty-recipe-ingredients {
        clear: both;
        width: 40%;
        float: left;
    }
    
    .tasty-recipe-instructions {
        width: 60%;
        float: right;
     }
    
    .tasty-recipe-ingredients h3 {
        margin-left: -20px;
        margin-right: -1em;
    }
    
    .tasty-recipe-ingredients ul,
    .tasty-recipe-ingredients ol,
    .tasty-recipe-ingredients p,
    .tasty-recipe-ingredients h4 {
        margin-left: 0px;
        margin-top: 0;
    }
    
    .tasty-recipe-instructions h3 {
        margin-right: -20px;
        margin-left: 0;
        border-left: 1px solid #fff;
    }
    
     .tasty-recipe-instructions ol, 
     .tasty-recipe-instructions ul,  
     .tasty-recipe-instructions p,  
     .tasty-recipe-instructions h4 {
        border-left: 1px solid #e1e1e1;
        padding-left: 1em;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 0;
        padding-bottom: 1em;
    }
}

@media only screen and (min-width: 520px) {
.tasty-recipes-entry-footer img {
float: left;
margin-top: 20px;
}
.tasty-recipes-entry-footer h3,
.tasty-recipes-entry-footer p {
margin-left: 70px!important;
clear: none;
text-align: left;
padding: 0.5rem 3rem;
}
}

img.centered, .aligncenter, div.aligncenter {
display: block !important;
}

.Row {
	display: table-row;
	height: 100%;
}

.Cell6 {
	display: table-cell;
	padding-left: 10px;
	padding-right: 5px;
	padding-bottom: 1px;
	text-align: left;
	border: 1px solid #d6d5d5;
}

.home .tasty-recipes-quick-links {
    display: none;
}

.tasty-recipes-quick-links {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.tasty-recipes-quick-links span {
	display: none;
}

.tasty-recipes-quick-links a {
    border: none;
	color: #000 !important;
	background: #e7e7e7;
    display: inline-block;
	font-family: 'raleway';
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
	margin: 5px auto;
	padding: 10px;
    text-align: center;
    text-transform: uppercase;
}

.tasty-recipes-details .total-time,
.tasty-recipes-details .category,
.tasty-recipes-details .method {
	display: none;
}

.tasty-recipes-details li:before {
    background-size: 12px 12px;
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.tasty-recipes-details li.author:before {
    background-image: url(https://eatlittlebird.com/wp-content/themes/Serein-Thanh/images/author-icon.png);
}

.tasty-recipes-details li.prep-time:before {
    background-image: url(https://eatlittlebird.com/wp-content/themes/Serein-Thanh/images/prep-time-icon.png);
}

.tasty-recipes-details li.resting-time:before {
    background-image: url(https://eatlittlebird.com/wp-content/themes/Serein-Thanh/images/resting-time-icon.png);
}

.tasty-recipes-details li.marinating-time:before {
    background-image: url(https://eatlittlebird.com/wp-content/themes/Serein-Thanh/images/marinating-time-icon.png);
}

.tasty-recipes-details li.cook-time:before {
    background-image: url(https://eatlittlebird.com/wp-content/themes/Serein-Thanh/images/cook-time-icon.png);
}

.tasty-recipes-details li.yield:before {
    background-image: url(https://eatlittlebird.com/wp-content/themes/Serein-Thanh/images/yield-icon.png);
}

.tasty-recipes-details li.cuisine:before {
    background-image: url(https://eatlittlebird.com/wp-content/themes/Serein-Thanh/images/cuisine-icon.png);
}

/* Gutenmberg Editor */

.wp-block-image {
    text-align: center;
}

.wp-block-image .aligncenter>figcaption, 
.wp-block-image .alignleft>figcaption, 
.wp-block-image .alignright>figcaption, 
.wp-block-image.is-resized>figcaption {
    display: block;
    caption-side: bottom;
}

/* WPForms */

div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-textarea textarea {
	text-align: left;
	font-style: normal;
}

.wpforms-confirmation-container-full {
    background: #ECECEC;
    border: 1px solid #b4d39b;
    padding: 15px 15px;
}

div.wpforms-container-full .wpforms-form .wpforms-required-label {
    color: #8aafc0;
}

.entry-content .recipe-key-wrap {
    display: block;
	text-align: center;
}

.tasty-recipes .recipe-key-wrap {
	text-align: left;
}

.recipe-key-wrap {
    display: none;
}

.recipe-key {
    display: inline-block;
    float: none;
	margin: 0 5px;
}

.recipe-key-icon {
    display: inline-block;
    vertical-align: middle;
}

[class*=" irk-"], [class^=irk-] {
    display: inline-block;
}