/*
Theme Name: Themify Infinite
Theme URI: http://themify.me/themes/infinite
Version: 1.0.7
Description: Created by <a href="http://www.themify.me">Themify</a>.
Author: Themify 
Author URI: http://www.themify.me
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Copyright: (c) Themify. 
Tags: themify, featured-images, translation-ready, custom-menu, sidebar
Text Domain: themify

---------

DO NOT EDIT THIS FILE.

If you need to overwrite the CSS styling, create a new custom_style.css 
in the theme folder and it will automatically load in the <head>.

*/

/*----------------------------------------------------------------------------------
TABLE OF CONTENT

1.  Reset
2.  General Styling (default font, color, lists, headings, form elements, etc.)
3.  Structure (page width & layout containers)
4.  Grid (column width)
5.  Header (logo, tagline, social widget, search form, main menu)
6.  Page (page title, author page, pagination)
7.  Post (post layouts & styling, comments, post navigation)
8.  Sidebar
    8.1 Widget Styles
9.  Footer
10. Builder Styling
11. WordPress Formatting
12. Gallery
13. Clear & Alignment
14. WooCommerce

----*/

/************************************************************************************
1. RESET
*************************************************************************************/
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset, figure {
	margin: 0;
	padding: 0;
}

img, fieldset {
	border: 0;
}

/* set img max-width */
img {
	max-width: 100%;
	height: auto;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* ie 8 img max-width */
.ie8 img { width: auto;}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}

/* audio */
audio {
	max-width: 100%;
}

/* iframes and objects max-width (for embed media) */
iframe, object, embed {
	max-width: 100%;
}

/************************************************************************************
2. GENERAL STYLING
*************************************************************************************/
body {
	font: 1.05em/1.85em 'Lora', serif;
	word-wrap: break-word;
	color: #000;
 	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
a {
	text-decoration: underline;
	outline: none;
	color: #000;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}
a:hover {
	text-decoration: none;
}
p {
	margin: 0;
	padding: 0 0 2.2em;
}
small {
	font-size: 87%;
}
blockquote {
	font-size: 1.2em;
	line-height: 1.4em;
	padding: .8em 2em 1em;
	margin: 0 0 1.2em;
	position: relative;
}
blockquote:before {
	content: '\201C';
	font-size: 3.3em;
	position: absolute;
	margin-left: -.5em;
	margin-top: .2em;
}
ins {
	text-decoration: none;
}

/* LIST
================================================ */
ul, ol {
	margin: 0 0 1.4em 1.6em;
	padding: 0;
}
li {
	margin: 0 0 1em 0;
	padding: 0;
}
ul ul,
ul ol,
ol ol,
ol ul {
	margin-top: 1em;
}

/* HEADINGS
================================================ */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.4em;
	margin: 0 0 .6em;
	word-wrap: normal;
	font-family: 'Playfair Display', serif;
	font-weight: 300;
}
h1 {
	font-size: 4.4em;
	font-weight: 600;
	letter-spacing: -.028em;
	line-height: 1.11em;
	margin-bottom: .45em;
}
h2 {
	font-size: 3em;
	letter-spacing: -.03em;
	line-height: 1.14em;
}
h3 {
	font-size: 2.8em;
	letter-spacing: -.03em;
}
h4 {
	font-size: 1.4em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
}
h5 {
	font-size: 1.6em;
	font-weight: 400;
	letter-spacing: -.01em;
	margin-bottom: .5em;
}
h6 {
	font-size: 1.3em;
	font-weight: 400;
	letter-spacing: -.02em;
}

/* FORM
================================================ */
/* form input */
input, textarea, select, input[type=search], button {
	font-size: 100%;
	font-family: inherit;
	max-width: 100%;
}
textarea, input[type=text], input[type=password], input[type=search], input[type=email], input[type=url], input[type=number], input[type=tel], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=time], input[type=week] {
	background: none;
	border: none;
	border-bottom: 1px solid #000;
	padding: .5em;
	margin: .4em 0;
	max-width: 100%;
	-webkit-appearance: none;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: bottom;
}
input[type=text], input[type=password], input[type=search], input[type=email], input[type=url], input[type=tel] {
	width: 15em;
}
input[type=number] {
	width: 7em;
}

/* text area */
textarea {
	width: 100%;
	min-height: 8em;
	border: 1px solid #000;
}

/* form input:focus */
textarea:focus, input[type=text]:focus, input[type=password]:focus, input[type=search]:focus, input[type=email]:focus, input[type=url]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=month]:focus, input[type=time]:focus, input[type=week]:focus {
	outline: none;
}

/* form button */
input[type=reset], input[type=submit], button {
	background-color: #000;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.105em;
	font-weight: 600;
	letter-spacing: .05em;
	padding: .85em 1.3em .85em 1.55em;
	text-transform: uppercase;
}

/* form input:hover */
input[type=reset]:hover, input[type=submit]:hover, button:hover {
	background-color: #666;
	color: #fff;
}

/************************************************************************************
3. STRUCTURE
*************************************************************************************/
/* set general layout containers box-sizing */
#pagewrap, .pagewidth, #headerwrap, #header, #main-nav, #body, #layout, #content, .post, .author-box, .post-nav, .pagenav, #sidebar, .widget, #footerwrap, #footer, .col4-1, .col4-2, .col4-3, .col3-1, .col3-2, .col2-1 {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* pagewrap */
#pagewrap {
	padding-top: 62px;/* put page content below fixed header */
}

/* main page width */
.pagewidth,
.full_width .themify_builder_row .row_inner {
	width: 1160px;
	max-width: 100%;
	margin: 0 auto;
}
.full_width .themify_builder_row.fullwidth .row_inner {
	width: 100%;
}
.single-post .full_width .pagewidth {
	width: 100%;
}

/* body (middle container) */
#body {
	max-width: 100%;
	clear: both;
}

/* content */
#content {
	width: 69%;
	float: left;
	padding: 85px 0 76px;
}
.sidebar-none #content {
	width: 100%;
	float: none;
}
.blog.sidebar-none.list-post #content,
.query-post.sidebar-none.list-post #content,
.single-post .sidebar-none #content {
	padding-top: 0; /* bring list-post layout up to align with header if no sidebar */
}
.single-post .single-wrapper.full_width.sidebar-none:first-child .post-meta-top {
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}

/* sidebar */
#sidebar {
	width: 26%;
	float: right;
	padding: 85px 0 76px;
	font-size: .95em;
	line-height: 1.7em;
	letter-spacing: -.011em;
}
#sidebar .secondary {
	width: 47%;
}

/* full_width content */
.full_width #layout {
	width: 100%;
	max-width: 100%;
}
.full_width #content {
	padding: 0;
	width: auto;
	max-width: 100%;
	float: none;
}
.full_width #sidebar {
	width: auto;
	float: none;
}
.full_width .author-box,
.full_width .post-nav,
.full_width .commentwrap {
	padding-left: 8%;
	padding-right: 8%;
}

/* sidebar left */
.sidebar-left #content {
	float: right;
}
.sidebar-left #sidebar {
	float: left;
}

/* single post sidebar-none */
.sidebar-none .post-meta-top .post-category {
	padding-left: 1.1em;
}

/************************************************************************************
4. GRID
*************************************************************************************/
.col4-1,
.col4-2,
.col4-3,
.col3-1,
.col3-2,
.col2-1
{
	margin-left: 3.2%;
	float: left;
}
.col4-1 {
	width: 22.6%;
}
.col4-2, .col2-1 {
	width: 48.4%;
}
.col4-3 {
	width: 74.2%;
}
.col3-1 {
	width: 31.2%;
}
.col3-2 {
	width: 65.6%;
}
.col.first,
.col4-1.first,
.col4-2.first,
.col4-3.first,
.col3-1.first,
.col3-2.first,
.col2-1.first {
	margin-left: 0;
	clear: left;
}

/************************************************************************************
5. HEADER
*************************************************************************************/
#headerwrap {
	background-color: #fff;
	background-color: rgba(255,255,255,.95);
	-webkit-box-shadow: 0px 1px 16px rgba(0,0,0,.13);
	-moz-box-shadow: 0px 1px 16px rgba(0,0,0,.13);
	box-shadow: 0px 1px 16px rgba(0,0,0,.13);
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 99;
}
#header {
	position: relative;
	padding: 0 27px;
	width: auto;
	max-width: none;
}

/* 
SITE LOGO
================================================ */
#site-logo {
	margin: 0;
	padding: 0;
	line-height: 1em;
	display: inline-block;
	font-family: 'Playfair Display', serif;
	font-size: 1.55em;
	font-weight: 900;
	float: left;
	letter-spacing: -.015em;
	text-transform: uppercase;
	margin-top: .7em;
}
#site-logo a {
	text-decoration: none;
}
#site-logo a:hover {
	text-decoration: none;
}

/* 
SITE DESCRIPTION
================================================ */
#site-description {
	background-color: #fff;
	border-left: 1px solid #b2b2b2;
	color: #000;
	font-style: italic;
	font-size: .8em;
	margin: 0 0 0 3.1em;
	padding: .7em;
	position: absolute;
	left: 0;
	top: 1.25em;
	line-height: 100%;
	z-index: 1;
	opacity: 0;
	z-index: -1;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
}

/* 
SOCIAL WIDGET
================================================ */
.social-widget {
	float: right;
	margin-right: 101px;
	margin-top: 1em;
}
.social-widget a {
	text-decoration: none;
	padding: 0 2px;
}
.social-widget a:hover {
	text-decoration: none;
}
.social-widget .widget {
	display: inline-block;
	vertical-align: middle;
	margin: 0 2px 0 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.social-widget .widget div {
	display: inline;
}
.social-widget .widgettitle {
	width: auto;
	font-weight: bold;
	font-size: 100%;
	font-family: inherit;
	text-transform: none;
	letter-spacing: 0;
	position: static;
	display: inline-block;
	vertical-align: middle;
	margin: 0 .5em 0 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.social-widget ul {
	margin: 6px 0 0 !important;
	padding: 0;
	display: inline;
}
.social-widget ul li {
	padding: 0 2px 5px 0;
	margin: 0;
	display: inline-block;
	border: none !important;
	clear: none;
	line-height: 100%;
}
.social-widget li img {
	vertical-align: middle;
	margin-top: -3px;
}

/* rss */
.social-widget div.rss {
	display: inline-block;
	vertical-align: middle;
	margin-left: 3px;
}
.social-widget div.rss a {
    display: inline-block;
}
.social-widget div.rss a:before {
    content: "\f09e"; 
	font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 22px;
}

/* 
SEARCH FORM
================================================ */
#searchform-wrap {
	display: block;
	float: right;
}
#headerwrap #searchform {
	position: absolute;
	top: 50%;
	right: 57px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
	border-left: solid 1px #b2b2b2;
}
#headerwrap #searchform #s {
	width: 51px;
	background-color: #f0f0f0;
	color: #ccc;
	margin: 0;
	padding: 7px 43px 7px 7px;
	float: right;
	border: none;
	opacity: 0;
	-webkit-transition: all .7s ease-in-out;
	-moz-transition: all .7s ease-in-out;
	transition: all .7s ease-in-out;
	-ms-transition: all .7s ease-in-out;
	-o-transition: all .7s ease-in-out;
}
#headerwrap #searchform #s:focus,
#headerwrap #searchform #s:hover,
#headerwrap #searchform .icon-search:hover + #s {
	width: 280px;
	color: #000;
	background-color: #f0f0f0;
	opacity: 1;
}
#headerwrap #searchform .icon-search:before {
	content: "\f002";
	font-family: FontAwesome;
	font-size: 1.35em;
	font-style: normal;
	position: absolute;
	right: 12px;
	top: 0;
}

/* 
MAIN NAVIGATION
================================================ */
#main-nav {
	margin: 0 0 0 .8em;
	padding: 0;
	float: left;
}
#main-nav li {
	margin: 0;
	padding: 1em .4em .9em;
	list-style: none;
	position: relative;
	display: inline-block;
}

/* dropdown icon */
#main-nav ul .menu-item-has-children > a:after {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	border: solid transparent;
	border-width: 1px;
	border-top-color: #000;
	border-right-color: #000;
    margin-top: -8px;
	position: absolute;
	top: 50%;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	right: 20px;
}

/* main level link */
#main-nav a {
	display: block;
	font-family: 'Source Sans Pro', sans-serif;
	margin: 0;
	padding: 0;
	letter-spacing: .0325em;
	text-decoration: none;
	text-transform: uppercase;
}

/* current link */
#main-nav .current_page_item > a {
	border-bottom: 1px solid;
}
#main-nav ul .current_page_item > a {
	border: none;
}

/* sub-levels link */
#main-nav ul a {
	color: #000;
	display: block;
	font-size: 1em;
	font-weight: normal;
	font-family: inherit;
	line-height: 1.5em;
	text-shadow: none;
	text-transform: none;
	padding: .5em 1.4em;
	margin: 0;
	width: 237px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* dropdown ul */
#main-nav > li > ul,
#main-nav ul li:not(.themify-widget-menu) > ul {
	background-color: #fff;
	box-shadow: 0 4px 8px rgba(0,0,0,.13), inset 0px 16px 9px -13px rgba(0,0,0,0.13);
	display: none;
	position: absolute;
	top: 100%;
	left: -12px;
	list-style: none;
	margin: 0;
	padding: 12px 0;
	z-index: 100;
}
#main-nav ul li {
	background: none;
	padding: 0;
	margin: 0;
	float: none;
}
/* sub-levels dropdown */
#main-nav ul li:not(.themify-widget-menu) > ul {
	left: 100%;
	top: 0;
	box-shadow: 3px 4px 8px rgba(0,0,0,.13);
	margin-left: 1px;
}
#main-nav li.themify-widget-menu {
	min-width: 200px;
}
#main-nav li.themify-widget-menu .widget {
	margin-bottom: 0;
}
#main-nav li.themify-widget-menu .widgettitle:before {
	border: none;
}
/* show dropdown ul */
.no-touch #main-nav li:hover > ul {
	display: block;
}

/* Edge Menu */
#main-nav li.edge > ul {
	left: auto;
    right: 0;
}
#main-nav ul li.edge > ul {
	left: auto;
    right: 100%;
}

/* mega menu */
#main-nav .has-mega-sub-menu,
#main-nav .has-mega-column,
#main-nav .has-mega-column ul {
	position: static;
}
#main-nav .has-mega-sub-menu .mega-sub-menu,
#main-nav .has-mega-column > ul {
	background-color: #fff;
	box-shadow: 0 4px 8px rgba(0,0,0,.13), inset 0px 16px 9px -13px rgba(0,0,0,0.13);
	display: none;
	margin: 0 27px;
	list-style: none;
	padding: 5px;
	position: absolute;
	z-index: 100;
	width: 96%;
	left: 0;
	top: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#main-nav .has-mega-sub-menu .mega-sub-menu {
	min-height: 210px;
	max-height: 70vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#main-nav .has-mega-sub-menu .mega-sub-menu ul {
	width: 15.8%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	position: static;
	float: left;
	background: none;
    box-shadow: none;
	border: none;
	padding: 0;
	padding-bottom: 2em;
	margin: 1em 0;
}
#main-nav .has-mega-sub-menu .mega-sub-menu > ul li {
	display: block;
}
#main-nav .has-mega-sub-menu .mega-sub-menu > ul a {
	color: #000;
	width: auto;
	display: block;
	letter-spacing: .01em;
    padding: .75em 1.4em .25em;
	position: relative;
}
#main-nav .has-mega-sub-menu:hover .mega-sub-menu,
#main-nav .has-mega-sub-menu:hover .mega-sub-menu > ul {
	display: block;
}
#main-nav .mega-sub-menu li a:after {
	content: '';
	display: none;
	width: 10px;
	height: 10px;
	border: solid transparent;
	border-width: 1px;
	border-top-color: #000;
	border-right-color: #000;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	right: 22px;
}
#main-nav .mega-sub-menu li:hover a:after {
	display: inline-block;
}
#main-nav li.mega-link.loading:before {
	content: "\f110";
	font-family: FontAwesome;
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
	position: absolute;
	top: 10px;
	right: 40px;
	z-index: 99;
}

/* mega menu posts */
#main-nav .mega-menu-posts {
	width: 80.4%;
	padding: 0 0 0 2em;
	float: left;
	border-left: solid 1px #b2b2b2;
	margin: 1em 0;
}
#main-nav .mega-menu-posts .post {
	width: 17.6%;
	float: left;
	margin: 0 0 3% 3%;
	clear: none;
}
#main-nav .mega-menu-posts .post:nth-of-type(5n+1) {
	margin-left: 0;
}
#main-nav .mega-menu-posts .post-image {
	 margin: 0 0 .9em;
}
#main-nav .mega-menu-posts .post-image img {
	height: auto;
	width: 100%;
}
#main-nav .mega-menu-posts .post-title {
	font-size: 1.05em;
	font-weight: normal;
	text-transform: none;
	line-height: 1.45em;
	margin: 0;
}
#main-nav .mega-menu-posts .post a {
	font-family: 'Lora', serif;
	letter-spacing: -.0275em;
	text-transform: none;
}

/* mega column */
#main-nav .has-mega-column > .sub-menu {
	padding: 2.5% 3% 3%;
	max-height: 70vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;	
}
#main-nav .has-mega-column > ul li {
	display: block;
}
#main-nav .has-mega-column > .sub-menu a {
	background: none;
	padding: .5em 0;
	width: 100%;
}
#main-nav .has-mega-column .widgettitle,
#main-nav .has-mega-column > .sub-menu > li > a {
	font-size: 1.1em;
	font-weight: 600;
	line-height: 1.6em;
	margin: 0 0 1em;
	padding: 0;
	font-family: 'Source Sans Pro', sans-serif;
	text-decoration: none;
	text-transform: uppercase;
	display: block !important;
}
#main-nav .has-mega-column .widgettitle:before { /* hide widget title bottom border */
	display: none;
	margin: 0;
	padding: 0;
}
#main-nav .has-mega-column > .sub-menu > li {
	width: 18%;
	float: left;
	margin-left: 2.5%;
	font-size: .95em;
	line-height: 1.7em;
}
#main-nav .has-mega-column .sub-menu li {
	padding: 0;
	margin: 0 0 1.2em;
}
#main-nav .has-mega-column .mega-column-wrapper .mega-column-list:first-child {
	margin-left: 0;
}
#main-nav .has-mega-column > .sub-menu > li > ul {
	background: none;
	border: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
	position: static;
	display: block;
}
#main-nav .has-mega-column .columns-sub-item > a:after {
	display: none;
}
.no-touch #main-nav .has-mega-column:hover .mega-column-wrapper,
.no-touch #main-nav .has-mega-column:hover .mega-column-wrapper ul {
	display: block !important;
}

/* mega column button shortcode */
#main-nav .has-mega-column .mega-column-wrapper a.shortcode.button,
a.shortcode.button {
	font-weight: 600;
	line-height: 1.6em;
	margin: 0 0 .6em;
	padding: 0;
	font-family: 'Source Sans Pro', sans-serif;
	text-decoration: none;
	text-transform: uppercase;	
}
#main-nav .has-mega-column .mega-column-wrapper a.shortcode.button {
	text-decoration: none !important;
	color: #333;
	padding: .5em 1em;
	display: inline-block;
	width: auto;
}

/* Mobile Menu Styles */
.sidemenu {
	background-color: #fff;
	display: block;
	height: 100%;
	width: 320px;
	padding: 59px 30px 20px;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	position: fixed;
	top: 0;
	z-index: 111;
	transition: all .2s ease-in-out;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#mobile-menu {
	right: -320px;
}
#mobile-menu.sidemenu-on {
	right: 0;
	box-shadow: -1px 1px 13px rgba(0,0,0,.13);
}
.sidemenu-active, .sidemenu-active #headerwrap {
	transition: top .2s ease-in, left .2s ease-in-out;
}
.sidemenu-active, .sidemenu-active #headerwrap {
	left: 0;
	transition: left .2s ease-in-out;
}
.sidemenu-right, .sidemenu-right #headerwrap {
	left: -320px;
}
.sidemenu-left, .sidemenu-left #headerwrap {
	left: 320px;
}

/* body overlay when slide menu is open */
.mobile-menu-visible {
	position: relative;
	overflow-y: hidden;
}
.body-overlay {
	display: none;
	background-color: rgba(255,255,255,.7);
	width: 100%;
	height: 100%;
	position: fixed;
	right: 320px;
	top: 0;
	z-index: 100;
	box-shadow: inset -1px 0 13px rgba(0,0,0,.13)
}
.body-overlay.body-overlay-on {
	display: block; /* fix for Windows phone */
}

/* mobile menu icon */
#menu-icon {
	display: block;
	font-size: .85em;
	position: absolute;
	top: 50%;
	right: 27px;
	text-decoration: none;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
#menu-icon:before {
	content: "\f0c9";
	font-family: FontAwesome;
	font-size: 1.65em;
}
#menu-icon-close {
	position: absolute;
	display: block;
	text-decoration: none;
	top: 15px;
	right: 22px;
	font-size: 1.3em;
	min-width: 1.15em;
	min-height: 1.15em;
}
#menu-icon-close:before,
#menu-icon-close:after {
    border-top: 1px solid;
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 1.15em;
	position: absolute;
	left: 0;
	top: 15px;
}
#menu-icon-close:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
#menu-icon-close:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* when amdin bar presents */
.admin-bar #headerwrap,
.admin-bar #menu-icon-close {
	top: 32px;
}
.admin-bar .sidemenu {
	padding-top: 79px;
}

/* slideout widgets */
.slideout-widgets {
    font-size: .95em;
}
#headerwrap .slideout-widgets #searchform {
	border: none;
	position: relative;
	top: auto;
	right: auto;
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}
#headerwrap .slideout-widgets #searchform #s {
	float: none;
	opacity: 1;
	width: 100%;
	background: none;
	border-bottom: 1px solid;
}
#headerwrap.hidden {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
	opacity: 0;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
#headerwrap.visible {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

/************************************************************************************
6. PAGE
*************************************************************************************/
/* page title */
.page-title {
	margin: 0 0 0.938em;
	padding: 0;
	font-size: 4em;
	line-height: 110%;
}
.query-post.sidebar-none.list-post .page-title {
	margin-top: 2em;
}

/*
AUTHOR PAGE
================================================ */
.author-bio {
	margin: 0 0 2em;
	overflow: hidden;
}
.author-bio .author-avatar {
	float: left;
	margin: 0 1.8em 0 0;
}
.author-bio .author-avatar img {
	background-color: #fff;
	padding: 5px;
	border: solid 1px #ccc;
}
.author-bio .author-name {
	margin: 0 0 .5em;
	padding: 0;
	font-size: 1.6em;
}
.author-posts-by {
	margin: 0 0 1.5em;
	padding: 1em 0 0;
	font-size: 1.4em;
	text-transform: uppercase;
	border-top: solid 4px #ccc;
	border-color: rgba(118,118,118,.3);
}

/*
PAGINATION
================================================ */
.pagenav {
	clear: both;
	padding-bottom: 20px;
	text-align: right;
}
.pagenav a {
    text-decoration: none;
}
.pagenav a, .pagenav span {
   font-size: 1em;
   font-weight: bold;
    display: inline-block;
    line-height: 100%;
    margin: 0 1px 0 0;
    min-height: 18px;
    min-width: 24px;
    padding: 6px 0 0;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
}
.pagenav a:hover {
	text-decoration: underline;
}

/************************************************************************************
7. POST
*************************************************************************************/
/*
GENERIC POST
================================================ */
.post {
	margin-bottom: 3em;
}

/* post content */
.post-content {
	min-width: 120px;
	position: relative;
}

/* post title */
.post-title {
	font-family: 'Playfair Display', serif;
	font-size: 4.5em;
	line-height: 1.2em;
	letter-spacing: -.028em;
	padding: 0;
	margin: 0 0 .45em;
}
.post-title a {
	text-decoration: none;
}
.post-meta-top + .post-content .post-title {
	margin-top: -0.6em;
}

/* post image */
.post-image {
	margin: 0 0 1em;
}
.post-image img {
	width: 100%;
	vertical-align: bottom;
}
.post-image.left {
	float: left;
	margin-right: 1em;
}
.post-image.right {
	float: right;
	margin-left: 1em;
}

/* lightbox zoom image */
.post-image .lightbox {
	display: block;
	position: relative;
	max-width: 100%;
}
.post-image .lightbox .zoom {
	content: "\f002";
	font-family: FontAwesome;
	position: absolute;
	color: #fff;
	font-size: 1.25em;
	font-style: normal;
	width: 40px;
	height: 40px;
	margin: -20px 0 0 -20px;
	top: 50%;
	left: 50%;
	border-radius: 100%;
	background-color: rgba(0,0,0,.3);
}
.post-image .lightbox:hover .zoom {
	background-color: rgba(0,0,0,.7);
}

/* post meta top */
.post-meta-top {
	background-color: #fff;
	display: inline-block;
	font-size: .8em;
    font-size: .75em;
	-webkit-transform: translateY(-76%);
	-moz-transform: translateY(-76%);
	transform: translateY(-76%);
	padding: 0;
}
.post-category {
	display: inline-block;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	font-size: 1.05em;
	letter-spacing: .02em;
	text-transform: uppercase;
	vertical-align: top;
	padding: 1em 1.1em 1.1em 0;
}
.post-tag {
	font-style: italic;
	padding: 1em 1.1em 1.1em 0;
	padding-right: 1.1em;
	text-transform: Capitalize;
	display: inline-block;
	vertical-align: top;
}
.post-tag:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin: 0 1.35em 0 0;
    height: 2.4em;
    border-right: solid 1px #b5b5b5;
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    transform: skewX(-30deg);
}
.post-meta-top a {
	text-decoration: none;
}

/* post meta */
.post-meta {
	font-size: .75em;
	line-height: 1.6em;
	margin: 0 0 1.15em;
	padding: 0;
	position: relative;
	text-transform: uppercase;
}
.post-meta a {
	text-decoration: none;
}
.post-meta a:hover {
	text-decoration: underline;
}
.post-meta .author {
	display: block;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: .12em;
	margin-top: .2em;
}
.post-meta .author-avatar img {
	width: 37px;
	height: 37px;
	margin-right: .85em;
	vertical-align: middle;
}

/* post date */
.post-date-wrapper {
	display: inline-block;
	vertical-align: top;
}
.post-date {
	display: block;
	font-style: italic;
	font-size: 1.15em;
	margin: 0;
	text-transform: none;
}

/* post comment */
.post-comment {
	display: inline-block;
	vertical-align: middle;
	border: none;
	padding: 0;
}
.post-comment a {
	text-decoration: none;
	vertical-align: middle;
}
.post-comment a:before {
	content: '\f075';
    font-family: 'FontAwesome';
	font-size: 1.15em;
    line-height: 1em;
	margin-right: .85em;
	vertical-align: middle;
}
.post-comment a:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	border-right: solid 1px #b5b5b5;
	height: 2em;
	margin: 0 .8em;
	-webkit-transform: skewX(-30deg);
	-moz-transform: skewX(-30deg);
	transform: skewX(-30deg);
}

/* more link */
.more-link {
	display: block;
	text-align: right;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	font-size: 1.05em;
	margin-top: 1em;
}
.more-link:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	height: 29px;
	border-right: solid 1px #CECECE;
	margin: 0 16px;
	-webkit-transform: skewX(-30deg);
	-moz-transform: skewX(-30deg);
	transform: skewX(-30deg);
}

/*
LIST POST
================================================ */

/* list post & single post post meta top */
.loops-wrapper.list-post .post-meta-top,
.single-post .post-meta-top {
	-webkit-transform: translateY(-64%);
	-moz-transform: translateY(-64%);
	transform: translateY(-64%);
	margin-bottom: 1em;
}
.loops-wrapper.list-post .post-category,
.single-post .post-category {
	font-size: 1.25em;
}

/* list post & single post post meta */
.loops-wrapper.list-post .post-meta,
.single-post .post-meta {
	font-size: .9em;
	margin: 0 0 1.35em;
}
.loops-wrapper.list-post .post-meta .author-avatar img,
.single-post .post-meta .author-avatar img {
	width: 78px;
	height: 78px;
	max-width: 54px;
	max-height: 54px;
	margin-right: 1.9em;
}
.loops-wrapper.list-post .post-date,
.single-post .post-date {
	font-size: 1.24em;
}
.loops-wrapper.list-post .post-meta .author,
.single-post .post-meta .author {
	margin-top: .65em;
}

/* list post & single post social share */
.loops-wrapper.list-post .social-share-wrap,
.single-post .social-share-wrap {
	margin: 1em 0;
}
.loops-wrapper.list-post .social-share .sharrre,
.single-post .social-share .sharrre {
	padding: .18em 0;
}
.loops-wrapper.list-post .sharrre .share,
.single-post .sharrre .share {
	font-size: 1.15em;
	min-width: 1.1em;
	text-align: center;
}
.single-post.has-builder .social-share-wrap{
	margin: 0;
}
.single-post.has-builder .social-share-wrap .social-share {
	margin: 1em 0;
}

/* drop cap */
.enable-drop-cap .entry-content > p:first-child:first-letter {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 4.35em;
	font-weight: 600;
	float: left;
	line-height: .55em;
	padding: .15em .2em .2em 0;
}
.drop-cap > p:first-child:first-letter, /* builder custom class */
.enable-drop-cap .loops-wrapper.list-post .entry-content > p:first-child:first-letter,
.enable-drop-cap.single-post .entry-content > p:first-child:first-letter {
	font-size: 6.2em;
	line-height: .55em;
	padding: .15em .25em .15em 0;
}
/* reset drop cap for posts in Builder columns */
.enable-drop-cap .col4-1 .loops-wrapper .entry-content > p:first-child:first-letter,
.enable-drop-cap .col4-2 .loops-wrapper .entry-content > p:first-child:first-letter,
.enable-drop-cap .col4-3 .loops-wrapper .entry-content > p:first-child:first-letter,
.enable-drop-cap .col3-2 .loops-wrapper .entry-content > p:first-child:first-letter,
.enable-drop-cap .col3-1 .loops-wrapper .entry-content > p:first-child:first-letter,
.enable-drop-cap .col4-3 .loops-wrapper .entry-content > p:first-child:first-letter,
.enable-drop-cap .col2-1 .loops-wrapper .entry-content > p:first-child:first-letter {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	padding: 0;
	line-height: inherit;
	float: none;
}

/* Archiev Post full width */
.sidebar-none.list-post .type-page {
	max-width: 1160px;
	margin: 0 auto;
}
.full_width.sidebar-none.query-post .type-page,
.full_width.sidebar-none.query-post .post-content,
.full_width.sidebar-none.query-post .post-meta-top {
	width: auto;
}
.sidebar-none.list-post .pagewidth {
	width: auto;
	float: none;
	max-width: none;
}
.sidebar-none.list-post.search-results .page-title,
.sidebar-none.list-post.archive .page-title {
	margin-left: 5%; /* push category title */
}
.sidebar-none .loops-wrapper.list-post .post-content {
	max-width: 1160px;
	margin: 0 auto;
}
.sidebar-none .loops-wrapper.list-post .post-meta-top {
	max-width: 1160px;
	margin: -1em auto .3em;
	display: block;
	background: transparent;
}
.single-post .has-post-thumbnail,
.sidebar-none .loops-wrapper.list-post .post-image + .post-meta-top {
	margin-top: -2em;
	margin-bottom: 1em;
}
.single-post .single-wrapper.sidebar1 .has-post-thumbnail {
	margin-top: auto;
}
.sidebar-none .loops-wrapper .post-meta-top .post-category,
.sidebar-none .loops-wrapper .post-meta-top .post-tag {
	background-color: #fff;
}
.sidebar-none .loops-wrapper .post-meta-top .post-category {
	margin-right: -4px;
	padding-left: 1.1em;
}
.sidebar-none .loops-wrapper .post-meta-top .post-tag {
	padding: 1em 1.1em 1.1em 0;
}

/*
GRID4 POST
================================================ */
.loops-wrapper.grid4 .post {
	width: 22.6%;
	margin-left: 3.2%;
	float: left;
	margin-bottom: 4%;
}
.loops-wrapper.grid4 .post-title {
	font-size: 1.7em;
	font-weight: normal;
	line-height: 1.38em;
	letter-spacing: .003em;
	margin-bottom: .6em;
}
.sidebar1 .loops-wrapper.grid3 .post-title {
	font-size: 1.6em;
	font-weight: normal;	
}
.loops-wrapper.grid4 .post-meta-top + .post-content .post-title {
	margin-top: -1.3em;
}
.loops-wrapper.grid4 .social-share-wrap {
	font-size: .8em;
}
.sidebar-none .loops-wrapper.grid4 .post-meta-top .post-category,
.sidebar-none .loops-wrapper.grid4 .post-meta-top .post-tag {
	padding: .5em .6em;
}

/*
GRID3 POST
================================================ */
.loops-wrapper.grid3 .post {
	width: 31.2%;
	margin-left: 3.2%;
	float: left;
	margin-bottom: 5%;
}
.loops-wrapper.grid3 .post-title {
	font-size: 2em;
	line-height: 1.38em;
	letter-spacing: .003em;
	margin-bottom: .6em;
}
.sidebar1 .loops-wrapper.grid3 .post-title {
	font-size: 1.6em;
	font-weight: normal;
}
.loops-wrapper.grid3 .post-meta-top + .post-content .post-title {
	margin-top: -1.5em;
}

/*
GRID2 POST
================================================ */
.loops-wrapper.grid2 .post {
	width: 48.4%;
	margin-left: 3.2%;
	float: left;
	margin-bottom: 5%;
}
.loops-wrapper.grid2 .post-title {
	font-size: 2.5em;
	line-height: 1.38em;
	letter-spacing: .003em;
	margin-bottom: .6em;
}
.sidebar1 .loops-wrapper.grid2 .post-title {
	font-size: 2.1em;
	font-weight: normal;	
}
.loops-wrapper.grid2 .post-meta-top + .post-content .post-title {
	margin-top: -1.1em;
}

/*
GRID2-THUMB POST
================================================ */
.loops-wrapper.grid2-thumb .post {
	width: 48.4%;
	margin-left: 3.2%;
	float: left;
}
.loops-wrapper.grid2-thumb .post-title {
	font-size: 1.8em;
	margin-bottom: .85em;
	line-height: 1em;
	letter-spacing: .02em;
	font-weight: normal;	
}
.loops-wrapper.grid2-thumb .post-meta-top + .post-content .post-title {
	margin-top: -.15em;
}
.loops-wrapper.grid2-thumb .post-image {
	width: 20%;
	float: left;
	margin: 0 2em 1.3em 0;
}
.loops-wrapper.grid2-thumb .post-meta-top {
	-webkit-transform: translateY(-35%);
	-moz-transform: translateY(-35%);
	transform: translateY(-35%);
	padding: 0;
}
.loops-wrapper.grid2-thumb .post-meta,
.loops-wrapper.grid2-thumb .social-share-wrap{
	margin-bottom: .5em;
}

/*
CLEAR GRID FLOAT
================================================ */
.loops-wrapper.grid4 .post:nth-of-type(4n+1),
.loops-wrapper.grid3 .post:nth-of-type(3n+1),
.loops-wrapper.grid2 .post:nth-of-type(2n+1),
.loops-wrapper.grid2-thumb .post:nth-of-type(2n+1) {
	margin-left: 0;
	clear: left;
}

/* clear grid padding */
.sidebar-none .loops-wrapper.grid4 .post-meta-top .post-category,
.sidebar-none .loops-wrapper.grid3 .post-meta-top .post-category,
.sidebar-none .loops-wrapper.grid2 .post-meta-top .post-category {
	padding-left: 0;
}

/*
LIST-THUMB-IMAGE POST
================================================ */
.loops-wrapper.list-thumb-image .post {
	clear: both; /* require for FF */
}
.loops-wrapper.list-thumb-image .post-image {
	width: 20%;
	float: left;
	margin: 0 1.4em 1em 0;
}
.loops-wrapper.list-thumb-image .post-image img {
	width: 100%;
}
.loops-wrapper.list-thumb-image .post-video {
	width: 20%;
	float: left;
	margin: 0 1.4em 1em 0;	
	padding-bottom: 12.25%;
}
.loops-wrapper.list-thumb-image .post-video .post-video { /* reset inner video wrapper */
	width: 100%;
	float: none;
	padding: 0;
	margin: 0;
	display: block;
	position: static;
}
.loops-wrapper.list-thumb-image .post-title {
	font-size: 1.2em;
	letter-spacing: .02em;
	font-weight: 300;
	line-height: 1.4em;
}
.loops-wrapper.list-thumb-image .post-meta-top + .post-content .post-title {
	margin-top: -.15em;
}
.loops-wrapper.list-thumb-image .post-meta-top {
	-webkit-transform: translateY(-35%);
	-moz-transform: translateY(-35%);
	transform: translateY(-35%);
	padding: 0;
}

/*
LIST-LARGE-IMAGE POST
================================================ */
.loops-wrapper.list-large-image .post-image {
	max-width: 70%;
	float: left;
	margin: 0 2em 1.3em 0;
}
.loops-wrapper.list-large-image .post-title {
	font-size: 3.35em;
	letter-spacing: .02em;
	margin-top: -.15em;
	font-weight: normal;
}
.loops-wrapper.list-large-image .post-meta-top {
	-webkit-transform: translateY(-35%);
	-moz-transform: translateY(-35%);
	transform: translateY(-35%);
	padding: 0;
	max-width: none;
}
.sidebar-none .loops-wrapper.list-large-image .post-content,
.sidebar-none.query-post .list-large-image .post-content {
	max-width: none;
}
.sidebar-none.query-post.list-large-image .pagewidth {
	max-width: 1160px;
}
.sidebar-none.query-post.list-large-image .type-page {
	max-width: none;
}

.loops-wrapper.list-large-image .post-video {
	float: left;
	max-width: 59%;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0 2em 1.3em 0;
}
.loops-wrapper.list-large-image .post-video .post-video {
	height: 0;
	padding-bottom: 56.25%;
	max-width: 100%;
	float: none;
}

/*
SLIDER POST
================================================ */
.loops-wrapper.slider {
	position: relative;
	margin: 0 0 50px;
}
.loops-wrapper .slideshow-wrap {
	height: 0; /* will be toggled with js */
	visibility: hidden; /* will be toggled with js */

/* remove this on final because it will be toggled with js */
	height: auto;
	visibility: visible;
/* end remove */
}
.loops-wrapper.slider .post {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-bottom: 0;
	text-align: left;
	position: relative;
	margin: 0 0 15px;
	min-height: 40px;
} 
.loops-wrapper.slider .post-image {
    width: auto;
	float: none;
    margin: 0;
}
.loops-wrapper.slider .post-image img {
	width: 100%;
	vertical-align: bottom;
}
.loops-wrapper.slider .post-image .lightbox .zoom {
	display: none;
}
.loops-wrapper.slider .post-title {
	font-size: 1.8em;
	line-height: 1.2em;
	margin: 0 0 0.313em;
}
.loops-wrapper.slider .post-date {
	margin: 0;
}
.loops-wrapper.slider .post-content {
	position: absolute;
	bottom: 0;
	width: 90%;
	min-height: 40px;
	padding: 15px 5%;
	overflow: visible;
	-webkit-overflow-scrolling: touch;
	margin: 0 auto;
	background-color: rgba(0,0,0,.6);
	font-size: .9em;
	line-height: 1.5em;
	color: #eee;
}
.loops-wrapper.slider .post-content a {
	color: #fff !important;
}

/* reset slider shortcode in framework css */
.shortcode.post-slider .carousel-prev,
.shortcode.slider .carousel-prev,
.shortcode.post-slider .carousel-next,
.shortcode.slider .carousel-next {
	border-radius: 0;
	border: 0;
	text-shadow: none;
	margin: 0;
	box-shadow: none;
	background-image: none;
}

/* slider carousel controls */
.loops-wrapper.slider .carousel-wrap {
	position: relative;
}
.loops-wrapper.slider .carousel-nav-wrap {
	width: 100% !important;
}
.loops-wrapper.slider .carousel-nav-wrap .carousel-prev, 
.loops-wrapper.slider .carousel-nav-wrap .carousel-next {
	position: absolute; 
	top: 30%;
	display: block;
	width: auto !important;
	height: auto !important;
	float: left;
	font-size: 0;
	text-indent: -900em;
	text-decoration: none;
	color: #fff;	
	background-color: rgba(0,0,0,.3);
	padding: 5% 2.5%;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.loops-wrapper.slider .carousel-nav-wrap .carousel-prev {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	left: 0;
}
.loops-wrapper.slider .carousel-nav-wrap .carousel-next {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;	
	right: 0;
}
.loops-wrapper.slider .carousel-nav-wrap .carousel-prev:hover, 
.loops-wrapper.slider .carousel-nav-wrap .carousel-next:hover {
	color: #fff;
	background-color: rgba(0,0,0,.5);
}
.loops-wrapper.slider .carousel-nav-wrap .carousel-prev:hover {
	padding-left: 4%;
}
.loops-wrapper.slider .carousel-nav-wrap .carousel-next:hover {
	padding-right: 4%;
}

/* carousel prev/next arrow */
.loops-wrapper.slider .carousel-nav-wrap .carousel-next:before,
.loops-wrapper.slider .carousel-nav-wrap .carousel-prev:before {
	width: 100%;
	text-align: center;
	content: '\f054';
	font-family: FontAwesome;
    display: block;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
	text-align: center;
    font-size: 18px;
	line-height: 100%;
	position: absolute;
	left: 0;
	top: 45%;
}

/* carousel pager */
.loops-wrapper.slider .carousel-pager {
	clear: both;
	text-align: center;
	line-height: 100%;
	width: auto;
}
.loops-wrapper.slider .carousel-pager a {
	text-indent: -900em;
	width: 8px;
	height: 8px;
	display: inline-block;
	vertical-align: middle;
	margin: 2px 3px 0;
	background-color: #ccc;
	background-color: rgba(0,0,0,.2);
	border: solid 2px #666;
	border-radius: 100%;
	cursor: pointer;
}
.loops-wrapper.slider .carousel-pager a.selected  {
	background-color: #fff;
	border-color: #ccc;
}

/************************************************************************************
SINGLE POST
*************************************************************************************/
.single-wrapper {
	display: inline-block;
	width: 100%;
}
.sidebar-parent {
	width: 50px;
	height: 50px;
	overflow: auto;
}

/* sticky sidebar in single */
.single .sticky-sidebar.sticky-sidebar-fixed {
	position: fixed;
	top: 0;
}
.single .sticky-sidebar.sticky-sidebar-absolute {
	position: absolute;
	padding: 0 !important;
}
.admin-bar.single .sticky-sidebar.sticky-sidebar-fixed {
	position: fixed;
	top: 32px;
	padding: 0 !important;
}

/************************************************************************************
AUTHOR BOX
*************************************************************************************/
.author-box {
	margin: 1em 0;
	border: none;
}
.author-box .author-avatar {
	float: left;
	margin: 0 1.8em .5em 0;
	padding: 0;
	width: 78px;
	height: 78px;
}
.author-box .author-name {
	margin: 0 0 .5em;
}

/************************************************************************************
POST PAGINATION (the <nextpage> tag)
*************************************************************************************/
.post-pagination {
	text-align: right;
	margin: .5em 0 2em;
}
.post-pagination strong {
	margin-right: 3px;
}
.post-pagination a {
	margin-left: 3px;
	margin-right: 3px;
}

/************************************************************************************
POST NAVIGATION
*************************************************************************************/
.post-nav {
	margin: 0 0 5em;
	padding: 0;
	clear: both;
}
.post-nav .prev,
.post-nav .next {
	width: 47%;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.post-nav .prev {
	float: left;
	padding-left: 2.5em;
}
.post-nav .next {
	float: right;
	text-align: right;
	padding-right: 2.5em;
}

/* post nav link */
.post-nav a {
	text-decoration: none;
	display: inline-block;
	font-family: 'Playfair Display', serif;
	font-size: 1.35em;
	font-weight: bold;
	letter-spacing: .004em;
	vertical-align: middle;
}
.post-nav a:hover {
	text-decoration: none;
}

/* post nav arrow */
.post-nav .arrow {
	display: inline-block;
	float: left;
	width: auto;
	text-align: center;
    text-decoration: none;
	text-indent: -9999px;
}
.post-nav .next .arrow {
	float: right;
}
.post-nav .next .arrow:before,
.post-nav .prev .arrow:before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: solid transparent;
    border-width: 1px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.post-nav .next .arrow:before {
    border-top-color: #000;
    border-right-color: #000;
}
.post-nav .prev .arrow:before {
    border-bottom-color: #000;
    border-left-color: #000;
}
.post-nav .prev .arrow:before {
	left: 0;
}
.post-nav .next .arrow:before {
	right: 0;
}

/************************************************************************************
COMMENTS
*************************************************************************************/
.commentwrap {
	margin: 1em 0 1.25em;
	position: relative;
	clear: both;
}

/* comment title */
.comment-title, .comment-reply-title {
	font-family: 'Playfair Display', serif;
	font-size: 2.1em;
	font-style: italic;
	font-weight: bold;
	letter-spacing: .005em;
	margin: 0 0 0.9em;
	padding: 1.2em 0 0;
	position: relative;
	text-transform: none;
}
.comment-title:before,
.comment-reply-title:before {
	content: '';
	display: block;
	border-top: solid 2px #000;
	width: 67px;
	position: absolute;
	top: 0;
}


/* comment pagenav */
.commentwrap .pagenav {
	margin: 10px 0;
	border: none;
	box-shadow: none;
}
.commentwrap .pagenav.top {
	margin: 0;
	position: absolute;
	top: 0;
	right: 0;
}

/* commentlist */
.commentlist {
	margin: 0 0 2.6em;
	padding: 0;
}
.commentlist li {
	margin: 0;
	padding: 1.25em 0 0;
	list-style: none;
	position: relative;
}
.commentlist .comment-author {
	margin: 0 0 1.5em;
	padding: 0;
}
.commentlist .avatar {
	float: left;
	margin: 0 1.5em 0 0;
	width: 60px;
}
.commentlist cite {
	font-family: 'Source Sans Pro', sans-serif;
	font-style: normal;
	font-size: 1.35em;
	font-weight: normal;
	display: block;
	text-transform: uppercase;
	letter-spacing: .07em;
}
.commentlist cite a {
	text-decoration: none;
}
.commentlist .bypostauthor > .comment-author cite:before {
	content: '\f02e';
	font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
	margin-right: .55em;
	vertical-align: middle;
}
.commentlist .comment-time {
	font-size: .85em;
	font-style: italic;
	display: block;
	padding-top: .2em;
	letter-spacing: .05em;
}
.commentlist .commententry {
	position: relative;
	min-height: 40px;
	overflow: hidden;
	padding-bottom: 5px;
	word-wrap: break-word;
}
.commentlist ul, .commentlist ol {
	margin: 0 0 0 8%;
	padding: 0;
}
.commentlist .comment-author br {
	display: none;
}

/* reply link */
.commentlist .reply {
	position: absolute;
	right: 0;
	top: 8px;
}
.commentlist .comment-reply-link {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.05em;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: .01em;
}
.commentlist .comment-reply-link:before {
    border-top: 1px solid;
    content: '';
    display: inline-block;
	vertical-align: middle;
	margin-right: .75em;
    width: 1.15em;
}

/* 
COMMENT FORM
================================================ */
#respond {
	margin: 0;
	padding: 3.3em 0 0;
	position: relative;
	clear: both;
}
#respond #cancel-comment-reply-link {
	position: absolute;
	top: 51px;
	right: 0;
	font-size: .66em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height: 100%;
	letter-spacing: .01em;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	padding-left: 1.8em;
}
#respond #cancel-comment-reply-link:before,
#respond #cancel-comment-reply-link:after {
    border-top: 1px solid;
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 1.25em;
	position: absolute;
	left: 0;
	top: 15px;
}
#respond #cancel-comment-reply-link:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
#respond #cancel-comment-reply-link:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#commentform {
	margin: 4.35em 0 0;
}
#commentform p {
	margin: 0 0 .7em;
}
#commentform input[type=text] {
	width: 341px;
	margin: .45em 0;
	margin-right: 15px;
}
#commentform label {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.1em;
	font-weight: normal;
	letter-spacing: .07em;
	text-transform: uppercase;
}
#commentform label small {
	font-weight: normal;
}
#commentform textarea {
	height: 267px;
	margin: 2.15em 0 0;
}
#commentform input#submit {
	padding: 15px 29px 14px;
}

/************************************************************************************
Single Infinite Scroll
*************************************************************************************/
#single-infinite-wrap, #single-infinite-start {
	width: 100%;
	height: 1px;
	clear: both;
}

#single-infinite-start {
	visibility: hidden;
}

.single-infinite-loading {
	background-color: #fff;
	background-color: rgba(255, 255, 255, .7);
	border-radius: 9em;
	padding: 10px;
	opacity: 0;
	transition: opacity .3s ease-out;
	position: fixed;
	bottom: 20%;
	left: 50%;
	margin-left: -26px;
}

.single-infinite-load {
	cursor: pointer;
}

.js-show-loading {
	opacity: 1;
}
.js-hide-loading {
	opacity: 0;
}

/************************************************************************************
POST VIDEO (css for fluid video)
*************************************************************************************/
.post-video,
.embed-youtube {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin-bottom: 15px;
}
.post-video iframe,
.post-video object,
.post-video embed,
.embed-youtube iframe,
.embed-youtube object,
.embed-youtube embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/************************************************************************************
MASONRY LAYOUT
*************************************************************************************/
.masonry-done.loops-wrapper.grid4 .type-post,
.masonry-done.loops-wrapper.grid3 .type-post,
.masonry-done.loops-wrapper.grid2 .type-post,
.masonry-done.loops-wrapper.grid4 .type-portfolio,
.masonry-done.loops-wrapper.grid3 .type-portfolio,
.masonry-done.loops-wrapper.grid2 .type-portfolio {
	margin-right: 0;
	margin-left: 0;
}
.masonry-enabled .list-post .grid-sizer {
	width: 100%;
}
.masonry-enabled .list-post .gutter-sizer{
	width: 0%;
}
.masonry-enabled .grid4 .grid-sizer {
	width: 22.6%;
}
.masonry-enabled .grid3 .grid-sizer {
	width: 31.2%;
}
.masonry-enabled .grid2 .grid-sizer {
	width: 48.4%;
}
.masonry-enabled .gutter-sizer{
	width: 3.19%;
}
.masonry-enabled .grid4.no-gutter .grid-sizer {
	width: 25%;
}
.masonry-enabled .grid3.no-gutter .grid-sizer {
	width: 33.333333333%;
}
.masonry-enabled .grid2.no-gutter .grid-sizer {
	width: 50%;
}
.masonry-enabled .no-gutter .gutter-sizer{
	width: 0%;
}

/************************************************************************************
INFINITE SCROLL
*************************************************************************************/
/* disable CSS transitions for containers with infinite scrolling */
.isotope.infinite-scrolling {
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}

#load-more {
	clear: both;
	padding: 50px 0;
	right: 44%;
	text-align: center;
}
.load-more-button {
	font-size: 1.3em;
	font-weight: 300;
	background-color: #000;
	color: #fff;
	padding: 14px 28px;
	text-decoration: none;
	display: inline-block;
}
#infscr-loading {
	position: fixed;
	text-align: center;
	bottom: 50px;
	left: 0;
	width: 100%;
	z-index: 100;
	overflow: hidden;
}
#infscr-loading img {
	background-color: #fff;
	padding: 8px;
	border-radius: 9em;
}

/************************************************************************************
8. SIDEBAR
*************************************************************************************/
.widget {
	margin: 0 0 3em;
}
.widgettitle {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.15em;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
	margin: 0 0 .85em;
	padding: 1.15em 0 0;	
	position: relative;
}
.widgettitle:before {
	content: '';
	display: block;
	border-top: solid 1px;
	width: 26px;
	position: absolute;
	top: 0;
}
.widget ul {
	margin: 0;
	padding: 0;
}
.widget li {
	margin: 0;
	padding: .4em 0;
	list-style: none;
	clear: both;
}
.widget ul ul {
	margin: 6px 0 -6px 0px;
	padding: 0;
	border-top: none;
}
.widget ul ul li {
	margin: 0;
	padding-left: 10px;
}

/************************************************************************************
8.1 WIDGET STYLES
*************************************************************************************/
/* calendar widget */
.widget #wp-calendar caption {
	font-weight: bold;
	padding-bottom: 10px;
}
.widget #wp-calendar td {
	width: 31px;
	padding: 4px 2px;
	text-align: center;
}

/* recent post widget */
.widget_recent_entries li {
	margin: 0 0 1.2em;
}
.widget_recent_entries a {
	font-size: 1.2em;
	display: inline-block;
	margin: 0 0 .3em;
}
.widget_recent_entries .post-date {
	display: block;
	font-size: .95em
}

/* feature posts widget */
.widget .feature-posts-list li {
	padding: 0;
	margin: 0 0 1em;
}
.widget .feature-posts-list br {
	display: none;
}
.widget .feature-posts-list .post-img {
	margin: 0 1.2em 1em 0;
	float: left;
}
.widget .feature-posts-list small {
	font-size: 90%;
	display: block;
	margin: 0 0 .3em;
}
.widget .feature-posts-list .feature-posts-title {
	margin: 0 0 .2em;
	display: inline-block;
	font-size: 1.1em;
}
.widget .feature-posts-list .post-excerpt {
	display: block;
}

/* twitter widget */
.widget .twitter-list li {
	padding: 0;	
	margin: 0 0 1.2em;
}
.widget .twitter-list .twitter-timestamp {
	display: block;
	font-style: italic;
	font-size: .9em;
	letter-spacing: .01em;
}
.widget .follow-user {
	margin: 0;
	padding: 5px 0;
}

/* links widget */
.widget .links-list img, .widget_links img {
	vertical-align: middle;
}

/* recent comments widget */
.recent-comments-list .avatar {
	margin-right: 12px;
	float: left;
}

/* flickr widget */
.widget .flickr_badge_image {
	margin-top: 10px;
}
.widget .flickr_badge_image img {
	width: 72px;
	height: 72px;
	margin-right: 12px;
	margin-bottom: 12px;
	float: left;
}

/* search widget */
#sidebar #searchform {
	position: static;
}
#sidebar #searchform #s {
	width: 93%;
}

/* add white bg to facebook badge iframe */
iframe[src*="facebook"] {
	background-color: #fff;
}

/* reset twitter embed max-width to 100% */
#content .twitter-tweet-rendered {
	max-width: 100% !important;
}
#content .twt-border {
	max-width: 100% !important;
	min-width: 180px !important;
}

/* social links widget */
.social-links.vertical li {
	display: block;
	margin: 0 0 5px 0;
}

/************************************************************************************
9. FOOTER
*************************************************************************************/
#footerwrap {
	clear: both;
	border-top: 1px solid #e5e5e5;
	padding: 3em 0 2em;
}
#footerwrap a {
	text-decoration: none;
}

/* footer widgets */
.footer-widgets {
	clear: both;
	font-size: .95em;
}
.footer-widgets .widget {
	margin-bottom: 2em;
}

/* footer text */
.footer-text {
	clear: both;
	font-size: 85%;
	font-style: italic;
	padding: 0 0 3.55em;
	letter-spacing: .0125em;
	line-height: 2.25em;
	text-align: center;
}

/* back to top arrow */
.back-top {
	margin: .75em auto 0;
	text-align: center;
	width: 200px;
}
.back-top a {
	display: inline-block;
	position: relative;
	bottom: 0;
	z-index: 10;
	text-decoration: none;
	text-indent: -9999px;
}
.back-top a:before {
	content: '';
	display: inline-block;
	width: 40px;
	height: 40px;
	border: solid transparent;
	border-width: 1px;
	border-top-color: #000;
	border-left-color: #000;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -20px;
}
.back-top:hover a:before {
	bottom: 25px;
}

/* Infinite Back to Top */
.infinite-back-top {
	background-color: rgba(255,255,255,.8);
	border-radius: 100%;
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 44px;
	height: 44px;
	overflow: hidden;
	text-decoration: none;
	text-align: center;
}
.infinite-back-top span {
	line-height: 44px;
	position: relative;
	visibility: hidden;
}
.infinite-back-top span:before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: solid transparent;
    border-width: 1px;
    border-top-color: #000;
    border-left-color: #000;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
	vertical-align: middle;
	visibility: visible;
	position: absolute;
	top: 7px;
	left: 50%;
	margin-left: -5px;
}
.infinite-back-top-hide {
	display: none;
}
.infinite-back-top:hover span:before {
	-webkit-animation: arrow-up 0.5s linear 0.2s infinite alternate;/* Chrome, Safari, Opera */
	animation: arrow-up 0.5s linear 0.2s infinite alternate;
}
@-webkit-keyframes arrow-up {
  0%   { top: 0px; }
  50%   { top: 7px; }
  100% { top: 14px; }
}
@-moz-keyframes arrow-up {
  0%   { top: 0px; }
  50%   { top: 7px; }
  100% { top: 14px; }
}
@-o-keyframes arrow-up {
  0%   { top: 0px; }
  50%   { top: 7px; }
  100% { top: 14px; }
}
@keyframes arrow-up {
  0%   { top: 0px; }
  50%   { top: 7px; }
  100% { top: 14px; }
}

/************************************************************************************
SOCIAL SHARE SHORTCODE
*************************************************************************************/
.social-share-wrap {
	display: block;
	margin: 0 0 .9em;
}
/* sharrre container */
.social-share {
	display: inline-block;
}
.social-share .sharrre {
	display: inline-block;
	vertical-align: middle;
	border: none;
	padding: .35em .3em;
}

.sharrre .share span {
    display: none;
}
.sharrre .share,
.sharrre .count {
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin-right: .55em;
}
.social-share .sharrre .share:before {
	content: '';
	font-family: 'FontAwesome';
	line-height: 1em;
}
.social-share .twitter-share.sharrre .share:before {
	content: "\f099";
}
.social-share .facebook-share.sharrre .share:before {
	content: "\f09a";
}
.social-share .googleplus-share.sharrre .share:before {
	content: "\f0d5";
}
.social-share .pinterest-share.sharrre .share:before {
	content: "\f0d2";
}
.social-share .linkedin-share.sharrre .share:before {
	content: "\f0e1";
}

.sharrre a,
.sharrre a:hover {
	text-decoration: none;
}

/************************************************************************************
BANNER AD
*************************************************************************************/
.single-divider-ad,
.list-large-image .archive-divider-ad,
.list-post .archive-divider-ad {
	background-color: #f0f0f0;
	clear: both;
	padding: 2.65em 0;
	text-align: center;
	margin: 0;
}

/************************************************************************************
10. BUILDER STYLING
*************************************************************************************/
/* builder row */
.full_width .themify_builder_row.fullwidth .row_inner {
	width: auto;
	max-width: 100%;
	padding: 0;
}

/* module title */
.themify_builder_content .module-title {
	margin: 1.4em 0 1.6em;
	padding: 1em 0 0;
	font-size: 1.4em;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.themify_builder_active #pagewrap {
	margin-top: 80px;
}

/* image module */
.module-image .image-title {
	font: italic 1.4em 'Lora', serif;
	margin: 0 0 .7em;	
}

/* video module */
.module-video .video-title {
	font: italic 1.4em 'Lora', serif;
	margin: 0 0 .7em;
}

/* post module */
.col3-2 .loops-wrapper .post-title,
.col4-3 .loops-wrapper .post-title,
.col4-2 .loops-wrapper .post-title,
.col4-1 .loops-wrapper .post-title {
	font-size: 1.3em;
	font-weight: normal;
	letter-spacing: -.01em;
}
.col3-2 .loops-wrapper.list-post .post-title,
.col4-3 .loops-wrapper.list-post .post-title,
.col4-2 .loops-wrapper.list-post .post-title {
	font-size: 2em;
}
.col4-3 .loops-wrapper.list-thumb-image .post-title {
	font-size: 1.8em;
}


/************************************************************************************
11. WORDPRESS POST FORMATTING
*************************************************************************************/
.sticky {}
img.alignleft, img.aligncenter, img.alignright, img.alignnone {
	margin-bottom: 1em;
}
.alignleft {
	float: left;
	margin-right: 2em;
}
.alignright {
	float: right;
	margin-left: 2em;
}
.aligncenter {
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption {
	text-align: center;
	margin-bottom: 1em;
	max-width: 100%;
}
.wp-caption-text {
	font-style: italic;
	margin: .5em 0;
}

/* attachment page */
body.attachment {
	width: auto;
	float: none;
	position: static;
}
.single .attachment.post {
	width: auto;
	float: none;
}

/************************************************************************************
12. WP GALLERY
*************************************************************************************/
#body .gallery {
	margin: 0 0 20px 0;
}

/* gallery item */
#body .gallery .gallery-item {
	margin: 0 8px 8px 0;
	vertical-align: top;
	width: auto;
	float: left;
	text-align: center;
}
#body .gallery img {
	border: none;
	vertical-align: middle;
}

/* gallery caption */
#body .gallery .gallery-caption {
	line-height: 120%;
	font-size: 90%;
	text-align: center;
	margin: 5px 0 0;
}

/* GALLERY COLUMN
================================================ */
/* gallery column 1 (display all in one line) */
#body .gallery-columns-1 .gallery-item {
	width: auto;
}
#body .gallery-columns-1 br {
	display: none !important;
}

/* gallery column 2 */
#body .gallery-columns-2 .gallery-item {
	width: 49.2%;
}

/* gallery column 3 */
#body .gallery-columns-3 .gallery-item {
	width: 32.3%;
}
/* gallery column 4 */
#body .gallery-columns-4 .gallery-item {
	width: 23.8%;
}

/* gallery column 5 */
#body .gallery-columns-5 .gallery-item {
	width: 18.8%;
}

/* gallery column 6 */
#body .gallery-columns-6 .gallery-item {
	width: 15.4%;
}

/* gallery column 7 */
#body .gallery-columns-7 .gallery-item {
	width: 13%;
}

/* gallery column 8 */
#body .gallery-columns-8 .gallery-item {
	width: 11.18%;
}

/* gallery column 9 */
#body .gallery-columns-9 .gallery-item {
	width: 9.77%;
}

/* set gallery item margin-right */
#body .gallery-columns-1 .gallery-item,
#body .gallery-columns-2 .gallery-item,
#body .gallery-columns-3 .gallery-item,
#body .gallery-columns-4 .gallery-item,
#body .gallery-columns-5 .gallery-item,
#body .gallery-columns-6 .gallery-item,
#body .gallery-columns-7 .gallery-item,
#body .gallery-columns-8 .gallery-item,
#body .gallery-columns-9 .gallery-item {
	margin: 0 1.5% 1.5% 0;
}

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

/************************************************************************************
IMAGE FILTER
*************************************************************************************/
.post-image,
.post-img,
.module-feature-image,
.slide-image {
	-webkit-transition: all .5s ease-out;
	transition: all .5s ease-out;
}

body .filter-grayscale img,
body .filter-hover-grayscale img:hover,

.filter-featured-only.filter-grayscale .post-image,
.filter-featured-only.filter-grayscale .post-img,
.filter-featured-only.filter-grayscale .module-feature-image,
.filter-featured-only.filter-grayscale .slide-image,
.filter-featured-only.filter-grayscale .featured-area img,

.filter-featured-only.filter-hover-grayscale .post-image:hover,
.filter-featured-only.filter-hover-grayscale .post-img:hover,
.filter-featured-only.filter-hover-grayscale .module-feature-image:hover,
.filter-featured-only.filter-hover-grayscale .slide-image:hover,
.filter-featured-only.filter-hover-grayscale .featured-area img:hover,

.filter-featured-only.filter-hover-grayscale .loops-wrapper article:hover .post-image {
	-webkit-filter: grayscale(1);
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
	filter: gray;
	filter: grayscale(1);
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

body .filter-sepia img,
body .filter-hover-sepia img:hover,

.filter-featured-only.filter-sepia .post-image,
.filter-featured-only.filter-sepia .post-img,
.filter-featured-only.filter-sepia .module-feature-image,
.filter-featured-only.filter-sepia .slide-image,
.filter-featured-only.filter-sepia .featured-area img,

.filter-featured-only.filter-hover-sepia .post-image:hover,
.filter-featured-only.filter-hover-sepia .post-img:hover,
.filter-featured-only.filter-hover-sepia .module-feature-image:hover,
.filter-featured-only.filter-hover-sepia .slide-image:hover,
.filter-featured-only.filter-hover-sepia .featured-area img:hover,

.filter-featured-only.filter-hover-sepia .loops-wrapper article:hover .post-image {
	-webkit-filter: sepia(1);
	-ms-filter: sepia(100%);
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.5 0.5 0.4 0 0 0.5 0.3333 0.3333 0 0 0.3 0.3 0.3 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
	filter: sepia(100%);
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
}

body .filter-blur img,
body .filter-hover-blur img:hover,

.filter-featured-only.filter-blur .post-image,
.filter-featured-only.filter-blur .post-img,
.filter-featured-only.filter-blur .module-feature-image,
.filter-featured-only.filter-blur .slide-image,
.filter-featured-only.filter-blur .featured-area img,

.filter-featured-only.filter-hover-blur .post-image:hover,
.filter-featured-only.filter-hover-blur .post-img:hover,
.filter-featured-only.filter-hover-blur .module-feature-image:hover,
.filter-featured-only.filter-hover-blur .slide-image:hover,
.filter-featured-only.filter-hover-blur .featured-area img:hover,

.filter-featured-only.filter-hover-blur .loops-wrapper article:hover .post-image {
	-webkit-filter: blur(5px);
	filter: blur(5px);
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'blur\'><feGaussianBlur stdDeviation=\'3\'/></filter></svg>#blur");
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
}


.filter-all.filter-grayscale img,
.filter-all.filter-hover-grayscale img:hover,
.filter-all.filter-hover-grayscale .loops-wrapper .post-image:hover {
	-webkit-filter: grayscale(1);
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
	filter: gray;
	filter: grayscale(1);
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.filter-all.filter-sepia img,
.filter-all.filter-hover-sepia img:hover,
.filter-all.filter-hover-sepia .loops-wrapper .post-image:hover {
	-webkit-filter: sepia(1);
	-ms-filter: sepia(100%);
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.5 0.5 0.4 0 0 0.5 0.3333 0.3333 0 0 0.3 0.3 0.3 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
	filter: sepia(100%);
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.filter-all.filter-blur img,
.filter-all.filter-hover-blur img:hover,
.filter-all.filter-hover-blur .loops-wrapper img:hover {
	-webkit-filter: blur(5px);
	filter: blur(5px);
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'blur\'><feGaussianBlur stdDeviation=\'3\'/></filter></svg>#blur");
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
}

body .filter-hover-none img:hover,

.filter-featured-only.filter-hover-none .post-image:hover,
.filter-featured-only.filter-hover-none .post-img:hover,
.filter-featured-only.filter-hover-none .post-image img:hover,
.filter-featured-only.filter-hover-none .module-feature-image:hover,
.filter-featured-only.filter-hover-none .slide-image:hover,

.filter-all.filter-hover-none img:hover,
.filter-all.filter-hover-none .loops-wrapper img:hover,
body.filter-all #pagewrap .format-video .post-image,
body.filter-featured-only #pagewrap .format-video .post-image {
	-webkit-filter: none;
	filter: none;
}

/************************************************************************************
13. CLEAR & ALIGNMENT
*************************************************************************************/
.clear {
	clear: both;
}
.left {
	float: left;
}
.right {
	float: right;
}
.textleft {
	text-align: left;
}
.textright {
	text-align: right;
}
.textcenter {
	text-align: center;
}

/* clearfix */
.clearfix:after, .widget li:after, #body:after, #footer:after, footer:after, .pagenav:after, #main-nav:after, .menu:after, .gallery:after, #content:after {
	content: "";
	display: table;
	clear: both;
}

/************************************************************************************
14. WOOCOMMERCE
*************************************************************************************/
/* PAGEWIDTH
================================================ */
.woocommerce.sidebar-none .pagewidth {
	width: 1160px;
	max-width: 100%;
	margin: 0 auto;
}
.woocommerce.sidebar-none.list-post.archive .page-title {
	margin-left: 0;
}

/* button */
.woocommerce #content input.button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce-page #content input.button,
.woocommerce-page #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce #content input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce-page #content input.button.alt,
.woocommerce-page #respond input#submit.alt,
.woocommerce-page a.button.alt,
.woocommerce-page button.button.alt,
.woocommerce-page input.button.alt {
	background-color: #000;
	border: none;
	border-radius: 0;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
}
.woocommerce #content input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce-page #content input.button:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.woocommerce #content input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce-page #content input.button.alt:hover,
.woocommerce-page #respond input#submit.alt:hover,
.woocommerce-page a.button.alt:hover,
.woocommerce-page button.button.alt:hover,
.woocommerce-page input.button.alt:hover {
	background-color: #666;
	color: #fff;
}

/* add to cart button in product archive */
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .button[data-product_id] {
	font-size: .9em;
}

/* pagination */
.woocommerce #content nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul,
.woocommerce-page #content nav.woocommerce-pagination ul,
.woocommerce-page nav.woocommerce-pagination ul {
	border: none;
	border-right: 0;
}
.woocommerce #content nav.woocommerce-pagination ul li,
.woocommerce nav.woocommerce-pagination ul li,
.woocommerce-page #content nav.woocommerce-pagination ul li,
.woocommerce-page nav.woocommerce-pagination ul li {
	border: none;
	margin: 0 .2em;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	font-weight: bold;
}
.woocommerce #content nav.woocommerce-pagination ul li a:focus,
.woocommerce #content nav.woocommerce-pagination ul li a:hover,
.woocommerce #content nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce-page #content nav.woocommerce-pagination ul li a:focus,
.woocommerce-page #content nav.woocommerce-pagination ul li a:hover,
.woocommerce-page #content nav.woocommerce-pagination ul li span.current,
.woocommerce-page nav.woocommerce-pagination ul li a:focus,
.woocommerce-page nav.woocommerce-pagination ul li a:hover,
.woocommerce-page nav.woocommerce-pagination ul li span.current {
	background: none;
	color: inherit;
}

/* ARCHIVE PRODUCTS
================================================ */
/* sale */
.woocommerce span.onsale,
.woocommerce-page span.onsale,
.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale {
	background-color: #000;
	color: #fff;
}
/* archive product */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	text-align: center;
	box-sizing: border-box;
	margin-bottom: 3.5em;
}
.woocommerce ul.products li.product .star-rating {
	margin: auto;
	margin-bottom: 1em;
}

/* archive product title */
.woocommerce ul.products li.product h3 {
	font-size: 1.3em;
	padding: .2em 0;
    margin-bottom: .15em;
}
.woocommerce ul.products li.product .onsale + h3 {
	margin-top: 2em;
}

/* product image */
.woocommerce #content div.product div.images img, 
.woocommerce div.product div.images img, 
.woocommerce-page #content div.product div.images img, 
.woocommerce-page div.product div.images img,
.woocommerce ul.products li.product a img, 
.woocommerce-page ul.products li.product a img {
	box-shadow: none;
}
.woocommerce-page ul.products li.product:hover img,
.woocommerce ul.products li.product a img:hover,
.woocommerce ul.products li.product a:hover img,
.woocommerce-page ul.products li.product a:hover img {
	box-shadow: none;
}

/* price */
.woocommerce ul.products li.product .star-rating,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
	color: inherit;
}
.woocommerce ul.products li.product .price del,
.woocommerce ul.products li.product .price ins {
	display: inline-block;
	margin: 0 .2em;
	font-weight: bold;
	letter-spacing: .11em;
}
.woocommerce ul.products li.product .price del {
	opacity: 1;
	color: #999;
	font-weight: normal;
}

/* SINGLE PRODUCTS
================================================ */
/* single title */
.woocommerce #content div.product .product_title,
.woocommerce div.product .product_title,
.woocommerce-page #content div.product .product_title,
.woocommerce-page div.product .product_title {
	font-size: 2em;
}

/* tab */
.woocommerce #content div.product .woocommerce-tabs ul.tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li {
	background: none;
	border-radius: 0;
	margin: 0;
	padding: 0;
	position: relative;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs:before,
.woocommerce div.product .woocommerce-tabs ul.tabs:before,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs:before,
.woocommerce-page div.product .woocommerce-tabs ul.tabs:before {
	border-bottom: 1px solid #ddd;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before {
	display: none;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li a {
	background-color: #000;
	color: #fff;
	padding: .8em 1.9em;
	text-shadow: none;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li:hover a,
.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover a,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:hover a,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li:hover a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active a {
	background-color: #fff;
	color: #000;
}

/* single product tabs h2 */
.woocommerce #content div.product .woocommerce-tabs h2,
.woocommerce div.product .woocommerce-tabs h2,
.woocommerce-page #content div.product .woocommerce-tabs h2,
.woocommerce-page div.product .woocommerce-tabs h2,
.woocommerce .related h2,
.woocommerce-page .related h2,
.woocommerce .upsells h2,
.woocommerce-page .upsells h2 {
	font-size: 1.8em;
	margin: 1em 0 .5em;
}
/* single product review */
.woocommerce #reviews #comments ol.commentlist li img.avatar {
	padding: 0;
	width: 60px;
	border: none;
}
.woocommerce #reviews #comments ol.commentlist li img + .comment-text {
	margin: 0 0 0 95px;
	padding: 0;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
	margin: 0;
	border: none;
}
.woocommerce #reviews #comments ol.commentlist li .meta {
	color: inherit;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
	margin: auto;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: normal;
	font-size: 1.35em;
	text-transform: uppercase;
	display: block;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta time {
	font-style: italic;
}

/* CART
================================================ */
.woocommerce table.shop_table {
	border-radius: 0;
	border: 1px solid #000;
	border-collapse: collapse;
}
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce table.shop_table td {
	border-color: #000;
}
.woocommerce #content table.cart a.remove,
.woocommerce table.cart a.remove,
.woocommerce-page #content table.cart a.remove,
.woocommerce-page table.cart a.remove {
	color: inherit !important;
}
.woocommerce #content table.cart a.remove:hover,
.woocommerce table.cart a.remove:hover,
.woocommerce-page #content table.cart a.remove:hover,
.woocommerce-page table.cart a.remove:hover {
	background-color: #000;
	color: #fff !important;
}

/* coupon */
.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
	border: none;
	border-bottom: 1px solid #000;
	width: auto;
}

/* quantity */
.woocommerce .quantity .qty {
	margin: 0 .5em 0 0;
}

/* proceed */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: inline-block;
}

/* cart totals */
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	text-align: right;
}

/* cart collaterals */
.woocommerce .cart-collaterals .cart_totals tr td,
.woocommerce-page .cart-collaterals .cart_totals tr th {
	border-top: 1px solid #000;
	width: 17%;
}
.woocommerce .cart-collaterals .shipping_calculator,
.woocommerce-page .cart-collaterals .shipping_calculator {
	text-align: right;
}

/* cart update button */ 
.woocommerce .cart-collaterals .shipping_calculator .button, 
.woocommerce-page .cart-collaterals .shipping_calculator .button {
	display: inline-block;
	width: auto;
}
.woocommerce .cart .button,
.woocommerce .cart input.button {
	margin: 0 .1em;
}
.woocommerce-cart .cart-collaterals .shipping_calculator .shipping-calculator-button span,
.woocommerce-cart .cart-collaterals .shipping_calculator .shipping-calculator-button:after {
	display: none;
}

/* CHECKOUT
================================================ */
.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
	border-top: 1px solid #000;
}
.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text,
.woocommerce form .form-row select,
.woocommerce-page form .form-row select {
	border-bottom: 1px solid #000;
}

/* payment */
.woocommerce-checkout #payment {
	background-color: #f4f4f4;
	border-radius: 0;
}
/* payment box */
.woocommerce-checkout #payment div.payment_box {
	background-color: #fafafa;
	text-shadow: none;
}
.woocommerce-checkout #payment div.payment_box:before {
	border-bottom-color: #fafafa;
}
.woocommerce-checkout #payment ul.payment_methods {
	border-bottom: 1px solid #000;
}

/* message, info, error */
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce-page .woocommerce-error,
.woocommerce-page .woocommerce-info,
.woocommerce-page .woocommerce-message {
	border-top: 5px solid #000;
	background-color: #F7F7F7;
	box-shadow: none;
	border-radius: 0;
	text-shadow: none;
}
.woocommerce .woocommerce-error:before,
.woocommerce .woocommerce-info:before,
.woocommerce .woocommerce-message:before {
	color: inherit;
	text-shadow: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}