/*
Theme Name: The Small Things
Theme URI: http://www.thesmallthingsblog.com/
Author: Design by Victoria McGinley, Code by Elembee
Author URI: http://elembee.com
Description: A custom theme for The Smalle Things designed by Victoria McGinley and coded by Elembee.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thesmallthings
Tags:

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.

The Small Things is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/*--------------------------------------------------------------
# Import Styles
--------------------------------------------------------------*/

@import url('css/reset.css');

@import url('css/elements.css');

@import url('css/superfish.css');

@import url('css/tooltipster.css');

@import url('css/superfish.css');

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	font-family: 'Lato', sans-serif;	
	font-size: 15px;
	line-height: 1.67em;
	color: #000;
}

h1 {
	font-family: 'Playfair Display', serif;
	font-size: 25px;
	line-height: 1.2em;
	text-transform: lowercase;
	letter-spacing: 0.05em;
	color: #000;
}

h2 {
	font-family: 'Playfair Display', serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.67em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #000;
}

h3 {
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.33em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #000;
}

h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	line-height: 1.67em;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #000;
}

h5 {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 20px;
	line-height: 1.25em;
	letter-spacing: 0.05em;
	color: #000;
}

h6 {
	font-family: 'Montserrat', sans-serif;
	font-size: 9px;
	line-height: 2.22em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #000;
}

p {
	margin-bottom: 1.5em;
}

	p:last-of-type {
		margin-bottom: 0;	
	}

blockquote {
	margin: 0 1.5em;
	font-style: italic;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
	color: #000;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.entry-content a {
	font-weight: bold;
	border-bottom: 5px solid rgba(216,203,203,0)
}

.entry-content a:hover {
	border-bottom: 5px solid rgba(216,203,203,1);
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
a.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
	border: none;
	background: #d6dad9;
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.33em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #000;
	padding: 5px 31px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

button:hover,
a.button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	color: #e5e2e5;
	background: #9f919e;
}

a.button {
	display: inline-block;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	font-family: 'Lato', sans-serif;	
	font-size: 15px;
	line-height: 1.67em;
	color: #000;
	box-sizing: border-box;
	width: 100%;
	border: 1px solid #e9dddd;
	padding: 10px;
	background: #fff;
}

select {
	border: 1px solid #ccc;
}

label {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	line-height: 1.67em;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #3c3c3c;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #000;
}
::-moz-placeholder { /* Firefox 19+ */
	color: #000;
}
:-ms-input-placeholder { /* IE 10+ */
	color: #000;
}
:-moz-placeholder { /* Firefox 18- */
	color: #000;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

body {
	background: url(images/header-paint.png) top center no-repeat;
}

.wrap {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

#content {
	padding-top: 60px;
	padding-bottom: 95px;
	position: relative;
	background: #e9dddd;
	z-index: 1;
}

#content:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 300px;
	background: -moz-linear-gradient(top,  #e9dddd 0%, #ffffff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #e9dddd 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #e9dddd 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9dddd', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	z-index: -1;
}

.home #content,
.single-post #content{
	background: #fff;
}

.home #content:before,
.single-post #content:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1950px;
	background: #e9dddd;
}

.home #content:after,
.single-post #content:after {
	bottom: auto;
	top: 1950px;
}

.home.paged #content {
	background: #e9dddd;
}

.home.paged #content:before {
	display: none;
}

.home.paged #content:after {
	bottom: 0;
	left: 0;
	top: auto;
}

#primary {
	margin-bottom: 40px;	
}

/*--------------------------------------------------------------
# Masthead
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Site Branding
--------------------------------------------------------------*/

#masthead {
	margin: 0 auto 65px;
}

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

#site-branding {
	width: 100%;
	max-width: 346px;
	display: inline-block;
}

#site-branding a {
	display: block;
	width: 100%;
	padding-top: 17.630058%; /* 61 / 346 */
	background: url(images/logo.svg) center no-repeat;
	background-size: contain;	
}

#site-branding span {
	display: none;	
}

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

#search-container {
	margin-top: 10px;
	margin-bottom: 7px;
	position: relative;
	height: 30px;
}

.sb-search {
	position: absolute;
	top: 0;
	right: 0;
	width: 0%;
	min-width: 30px;
	max-width: 320px;
	height: 30px;
	float: right;
	overflow: hidden;
	-webkit-transition: width 0.3s;
	-moz-transition: width 0.3s;
	transition: width 0.3s;
	-webkit-backface-visibility: hidden;
}

#scroll-navigation .sb-search {
	top: 27px;
}

.sb-search .search-form {
	margin-right: 40px;
}

input[type="search"].sb-search-input {
	border: none;
	outline: none;
	background: none;
	width: 100%;
	height: 30px;
	margin:0;
	z-index: 10;
	padding: 10px;
	color: #000;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 300;
	font-size: 12px;
	line-height: 1.33em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.sb-search-open input[type="search"].sb-search-input,
#scroll-navigation input[type="search"].sb-search-input {
	background: #fff;
}

.sb-search-input::-webkit-input-placeholder {
	color: #000;
}

.sb-search-input:-moz-placeholder {
	color: #000;
}

.sb-search-input::-moz-placeholder {
	color: #000;
}

.sb-search-input:-ms-input-placeholder {
	color: #000;
}

.sb-icon-search,
.sb-search-submit  {
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0;
	margin: 0;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
}

.sb-search-submit {
    opacity: 0;
	color: transparent;
	border: none;
	outline: none;
	z-index: -1;
}

.sb-icon-search {
	color: #fff;
	background: #e9dddd;
	border-radius: 50%;
	z-index: 90;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

	.sb-icon-search:hover {
		background: #e9dddd;
		color: #fff;
	}

.sb-search.sb-search-open,
.no-js .sb-search {
	width: 100%;
}

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
	background: #e9dddd;
	color: #fff;
	z-index: 11;
}

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
	z-index: 90;
}

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

#primary-menu {
	border-right: 1px solid #d8cbcb;
	margin-right: 30px;
	display: none;
}

#primary-menu li {
	display: inline-block;
	margin-right: 50px;
	padding: 10px 0 0;
	vertical-align: middle;
}

#primary-menu li:last-of-type {
	margin-right: 30px;
}

	#primary-menu li a {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	line-height: 1.67em;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #9f919e;
	display: block;
	padding-bottom: 10px;
	position: relative;
	}

	#primary-menu > li > a:after,
	#top-right-menu > li > a:after {
		content: '';
		display: block;
		width: 100%;
		height: 5px;
		background: #d8cbcb;
		position: absolute;
		bottom: -2px;
		left: 0;
		opacity: 0;
		z-index: 100;
		-webkit-transition: all .5s ease-in-out;
		-moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		-o-transition: all .5s ease-in-out;
		transition: all .5s ease-in-out;
	}
	
	#primary-menu > li > a:hover:after,
	#primary-menu > li.sfHover > a:after,
	#top-right-menu > li > a:hover:after,
	#top-right-menu > li.sfHover > a:after {
		opacity: 1;
	}
	
	#primary-menu > li > .sub-menu {
		text-align: center;
		background: #fff;
		width: 150px;
		padding: 0;
		border: 1px solid #d8cbcb;
		left: 50%;
		transform: translateX(-50%);
	}
	
		#primary-menu > li > .sub-menu > li {
			margin: 0;
			padding: 0;
			display: block;
		}
		
			#primary-menu > li > .sub-menu > li > a {
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 300;
				font-size: 15px;
				line-height: 1.33em;
				letter-spacing: 0.05em;
				text-transform: uppercase;
				color: #000;
				padding: 10px 0;
				background: #fff;
				-webkit-transition: all .3s ease-in-out;
				-moz-transition: all .3s ease-in-out;
				-ms-transition: all .3s ease-in-out;
				-o-transition: all .3s ease-in-out;
				transition: all .3s ease-in-out;
			}
			
			#primary-menu > li > .sub-menu > li > a:hover {
				background: #d6dad9;
			}
		
#top-right-menu li {
	display: inline-block;
	margin-right: 5px;
	padding: 5px 0;
}

#top-right-menu li:after {
	content: '\f111';
	font-family: FontAwesome;
	font-size: 3px;
	color: #000;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

#top-right-menu li:last-of-type {
	margin-right: 0;
}

#top-right-menu li:last-of-type:after {
	display: none;
}

	#top-right-menu li a {
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 300;
		font-size: 12px;
		line-height: 1.33em;
		letter-spacing: 0.05em;
		text-transform: uppercase;
		color: #000;
		margin-right: 7px;
		padding-bottom: 10px;
		position: relative;
	}

	#top-right-menu > li > .sub-menu {
		text-align: center;
		background: #fff;
		width: 195px;
		border: 1px solid #d8cbcb;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		visibility: hidden;
	}

		#top-right-menu > li.sfHover > .sub-menu {
			visibility: visible;
		}
	
		#top-right-menu > li > .sub-menu > li {
			padding: 0;
			margin: 0;
			width: 50%;
		}
		
		#top-right-menu > li > .sub-menu > li:after {
			display: none;
		}
	
			#top-right-menu > li > .sub-menu > li > a {
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 300;
				font-size: 15px;
				line-height: 1.33em;
				letter-spacing: 0.05em;
				text-transform: uppercase;
				color: #000;
				display: block;
				padding: 10px 0;
				margin: 0;
				background: #fff;
				-webkit-transition: all .3s ease-in-out;
				-moz-transition: all .3s ease-in-out;
				-ms-transition: all .3s ease-in-out;
				-o-transition: all .3s ease-in-out;
				transition: all .3s ease-in-out;
			}
			
			#top-right-menu > li > .sub-menu > li > a:hover {
				background: #d6dad9;
			}

/*--------------------------------------------------------------
## Mobile Menu
--------------------------------------------------------------*/

.slicknav_menu {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	line-height: 1.67em;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #9f919e;
}

.slicknav_menu a {
	color: #9f919e;
}

.slicknav_menu > ul > li > ul {
	padding-bottom: 10px;
	margin-left: 15px;
}

/*--------------------------------------------------------------
## Scroll Navigation
--------------------------------------------------------------*/
		
#scroll-navigation {
	background: #fff;
	color: #7b7a7a;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 10000;
	display: none;
}

	#scroll-navigation a {
		color: #000;
	}

	#scroll-navigation .wrap {
		max-width: 1200px;
		margin: 0 auto;
		padding: 20px 0;
		display: flex;
		justify-content: center;
		align-items: center;
		position:relative;
	}

	#scroll-navigation ul li {
		display: inline-block;
	}
	
#scroll-nav-menu {
	margin: 0;
	border-right: 1px solid #9f919e;
	margin-right: 70px;
}

	#scroll-nav-menu li {
		margin-right: 40px;
	}
	
	#scroll-nav-menu li:last-of-type {
		margin-right: 70px;
	}
	
		#scroll-nav-menu li a {
			font-family: 'Open Sans Condensed', sans-serif;
			font-weight: 300;
			font-size: 15px;
			line-height: 1.33em;
			letter-spacing: 0.05em;
			text-transform: uppercase;
			color: #000;
			padding: 10px 0;
			position: relative;
			display: block;
		}

	#scroll-nav-menu > li > a:after {
		content: '';
		display: block;
		width: 100%;
		height: 5px;
		background: #d8cbcb;
		position: absolute;
		bottom: -2px;
		left: 0;
		opacity: 0;
		z-index: 100;
		-webkit-transition: all .5s ease-in-out;
		-moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		-o-transition: all .5s ease-in-out;
		transition: all .5s ease-in-out;
	}
	
	#scroll-nav-menu > li > a:hover:after,
	#scroll-nav-menu > li.sfHover > a:after {
		opacity: 1;
	}
	
	#scroll-nav-menu > li > .sub-menu {
		text-align: center;
		background: #fff;
		width: 150px;
		padding: 0;
		border: 1px solid #d8cbcb;
		left: 50%;
		transform: translateX(-50%);
	}
	
		#scroll-nav-menu > li > .sub-menu > li {
			margin: 0;
			padding: 0;
			display: block;
		}
		
			#scroll-nav-menu > li > .sub-menu > li > a {
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 300;
				font-size: 15px;
				line-height: 1.33em;
				letter-spacing: 0.05em;
				text-transform: uppercase;
				color: #000;
				padding: 10px 0;
				background: #fff;
				-webkit-transition: all .3s ease-in-out;
				-moz-transition: all .3s ease-in-out;
				-ms-transition: all .3s ease-in-out;
				-o-transition: all .3s ease-in-out;
				transition: all .3s ease-in-out;
			}
			
			#scroll-nav-menu > li > .sub-menu > li > a:hover {
				background: #d6dad9;
			}

#scroll-social-menu {
	margin: 0;
}

	#scroll-social-menu li {
		margin-right: 20px;
	}
	
		#scroll-social-menu li a {
			color: #9f919e;
		}
		
			#scroll-social-menu li a .fontawesome-text {
				display: none;
			}

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

h2.footer-title {
	font-family: 'Playfair Display', serif;
	font-size: 25px;
	line-height: 1.2em;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #3c3c3c;
	text-align: center;
	display: flex;
	flex-shrink: 0;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

	h2.footer-title:before,
	h2.footer-title:after {
		border-top: 1px solid #d6dad9;
		content: '';
		display: block;
		flex-grow: 1;
		position: relative;
	}

	h2.footer-title:before {
		margin-right: 20px;
	}

	h2.footer-title:after {
		margin-left: 15px;
	}

#footer-cta-widget {
	margin-bottom: 45px;
	padding-top: 30px;
	position: relative;
	z-index: 1;
}

.home #footer-cta-widget:before,
.single-post #footer-cta-widget:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	background: -moz-linear-gradient(top,  #e9dddd 0%, #ffffff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #e9dddd 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #e9dddd 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9dddd', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	z-index: -1;
}

.home #footer-cta-widget:after,
.single-post #footer-cta-widget:after {
	content: '';
	display: block;
	width: 100%;
	height: 450px;
	background: url(images/footer-paint.png) right top no-repeat;
	position: absolute;
	top: 20px;
	right: 0;
	z-index: -1;
}

.home.paged #footer-cta-widget:before,
.home.paged #footer-cta-widget:after {
	display: none;
}

#footer-cta-widget .wrap {
	display: flex;
	justify-content: space-between;
	max-width: 1020px;
}

	#footer-cta-widget p {
		margin: 0;
	}

	#footer-cta-widget .widget {
		width: 29.411765%; /* 300/1020 */
		position: relative;
	}

		#footer-cta-widget .widget a,
		#footer-cta-widget .widget img {
			display: block;
		}

			#footer-cta-widget .widget .more a {
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 300;
				font-size: 15px;
				line-height: 1.33em;
				letter-spacing: 0.05em;
				text-transform: uppercase;
				color: #000;
				display: block;
				text-align: center;
				width: 90%;
				max-width: 170px;
				min-height: 35px;
				background: #fff;
				padding: 10px;
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translate(-50%,-50%);
}

			#footer-cta-widget .widget .simple-image a:before {
				content: '';
				display: block;
				position: absolute;
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				background: #fff;
				margin: 0;
				opacity: 0;
				transition: opacity .3s ease-in-out;
}

			#footer-cta-widget .widget:hover .simple-image a:before {
				opacity: .5;
}

.instagram-slider {
	display: flex;
}

.instagram-slider .widget-title {
	display: flex;
	width: 12.33333%; /* 148/1200 */
	text-align: center;
	background: #d8cbcb;
	color: #fff;
	padding: 5px;
}

	.instagram-slider .widget-title a {
		font-family: 'Playfair Display', serif;
		font-style: italic;
		font-size: 20px;
		line-height: normal;
		letter-spacing: 0.05em;
		text-transform: lowercase;
		color: #fff;
		margin: auto;
	}

		.instagram-slider .widget-title a {
			display: block;
		}

	.instagram-slider .widget-title a:after {
		content: '@k8_smallthings';
		display: block;
		padding-top: 10px;
		font-family: 'Montserrat', sans-serif;
		font-size: 9px;
		font-style: normal;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: #fff;
	}

.jr-insta-thumb {
	width: 87.666667%; /* 1052/1200 */
}

	.instagram-slider .jr-insta-thumb li {
		border-left: 11px solid #fff !important;
	}

	.instagram-slider .jr-insta-thumb img,
	.instagram-slider .jr-insta-thumb a {
		display: block;
	}

	.instagram-slider .jr-insta-thumb img {
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}

	.instagram-slider .jr-insta-thumb img:hover {
		opacity: .5;
	}

#footer-menu {
	padding: 30px 0;
	text-align: center;
}

	#footer-menu li {
		display: inline-block;
		margin-right: 20px;	
	}

	#footer-menu li:last-of-type {
		margin-right: 0;
	}

		#footer-menu li a {
			font-family: 'Montserrat', sans-serif;
			font-size: 9px;
			line-height: 2.22em;
			letter-spacing: 0.1em;
			text-transform: uppercase;
			color: #9f919e;	
}

/*--------------------------------------------------------------
# Home Page Feed
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Home Page Full Posts
--------------------------------------------------------------*/

#primary .post-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

	#primary .post-container .post-feed {
		width: 67.9166667%; /* 815/1200 */
	}
	
	#primary .post-container #sidebar {
		width: 27.5%; /* 330/1200 */
	}

#primary .post-feed .post {
	margin-bottom: 75px;
}

#primary .post-feed .post .post-body {
	background: #fff;
	padding: 25px 50px 50px 50px;
	border: 1px solid #e9dddd;
	position: relative;
}

#primary .post-feed .post .posted-on {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 2.5em;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #9f919e;
	background: #f4f4f4;
	text-align: center;
	padding: 20px 12px;
	position: absolute;
	top: 25px;
	left: 0;
	transform: translateX(-50%);
}

#primary .post-feed .post .entry-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 30px;
}

#primary .post-feed .post .entry-title {
	font-family: 'Playfair Display', serif;
	font-size: 25px;
	line-height: 1.2em;
	text-transform: lowercase;
	letter-spacing: 0.05em;
	margin: 0;
	max-width: 545px;
	color: #3c3c3c;	
}

#primary .entry-meta {
	max-width: 105px;
	text-align: right;
}

	#primary .entry-meta .comments-link a {
		font-size: 15px;
		color: #9f919e;
		margin-bottom: 5px;
	}

		.comments-link .comment-number {
			font-family: 'Open Sans Condensed', sans-serif;
			font-weight: 300;
			font-size: 15px;
			line-height: 1.33em;
			letter-spacing: 0.05em;
			text-transform: uppercase;
			color: #3c3c3c;
		}


		#primary .entry-meta .comments-link a .icon-solid {
			color: #9f919e;
			opacity: 0;
			-webkit-transition: all .3s ease-in-out;
			-moz-transition: all .3s ease-in-out;
			-ms-transition: all .3s ease-in-out;
			-o-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
		}

		#primary .entry-meta .comments-link a:hover .icon-solid {
			opacity: 1;
		}

#primary .posted-in a {
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.33em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #3c3c3c;
}

#primary .entry-content {
	max-width: 715px;
	margin-bottom: 20px;
}

#primary .share {
	position: absolute;
	right: 20px;
	bottom: 0;
	transform: translateY(50%);
}

	#primary .share li {
		display: inline-block;
		margin-right: 10px;
	}

	#primary .share li:last-of-type {
		margin-right: 0;
	}

		#primary .share li .fa-stack-1x {
			font-size: 17px;
			color: #fff;
		}

		#primary .share li .icon-background {
			color: #9f919e;
			-webkit-transition: all .3s ease-in-out;
			-moz-transition: all .3s ease-in-out;
			-ms-transition: all .3s ease-in-out;
			-o-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
		}

		#primary .share li:hover .icon-background {
			color: #3c3c3c;
		}

.shop-the-post {
	background: #fff;
	padding: 40px 25px 25px 25px;
	border: 1px solid #e9dddd;
	position: relative;
	margin-top: 35px;
}

.shop-the-post h3 {
	position: absolute;
	top: -5px;
	left: 20px;
	background: #9f919e;
	color: #fff;
	padding: 5px 10px;
	width: 140px;
	text-align: center;
}

/*--------------------------------------------------------------
## Home Page Grid Posts
--------------------------------------------------------------*/

#recent-posts-title {
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	line-height: 0.8em;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-align: left;
	color: #3c3c3c;
	margin-bottom: 25px;
	display: flex;
	flex-shrink: 0;
	justify-content: space-between;
	align-items: center;
}

	#recent-posts-title:after {
		border-top: 1px solid #d8cbcb;
		content: '';
		display: block;
		flex-grow: 1;
		position: relative;
	}

	#recent-posts-title:after {
		margin-left: 10px;
	}

.post-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: stretch;
}

.post-grid .post {
	width: 31.25%;
	margin-bottom: 50px;
}

	.post-grid .post .featured-image {
		position: relative;
	}

		.post-grid .post .featured-image a,
		.post-grid .post .featured-image img {
			display: block;
		}

.post-grid .entry-all {
	width: 100%;
	background: #fff;
	text-align: center;
	padding: 10px 20px 15px;
	min-height: 220px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	border: 2px solid #e9dddd; 
	border-top: none;
}

	.post-grid .entry-all .posted-on {
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 300;
		font-size: 15px;
		line-height: 1.33em;
		letter-spacing: 0.05em;
		text-transform: uppercase;
		color: #3c3c3c;
		margin-bottom: 5px;
	}

	.post-grid .entry-all .entry-header {
		margin-bottom: 10px;
	}

		.post-grid .entry-all .entry-header a {
			display: block;
		}

			.post-grid .entry-all .entry-header a .entry-title {
				font-family: 'Playfair Display', serif;
				font-style: italic;
				font-size: 20px;
				line-height: 1.25em;
				letter-spacing: 0.05em;
				text-transform: none;
				color: #3c3c3c;
			}

	.post-grid .entry-all .entry-summary {
		margin-bottom: 10px;
	}

.post-grid .entry-all a.button {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%,50%);
}

/*--------------------------------------------------------------
# SideBar
--------------------------------------------------------------*/

#sidebar .widget {
	padding: 15px;
	margin-bottom: 30px;
	border: 2px solid #fff;
	position: relative;
}

	#sidebar .widget.no-border {
		border: none;
		padding: 0;
		text-align: center;
	}

	#sidebar .widget .widget-title {
		color: #3c3c3c;
		background: #e9dddd;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%,-50%);
		padding: 0 15px;
		white-space: nowrap;
	}


#sidebar .follow-widget #menu-sidebar-social {
	display: flex;
	flex-wrap: wrap;
	background: #fff;
	padding: 5px 10px;
}

	#sidebar .follow-widget #menu-sidebar-social li {
		width: 50%;
		margin: 3px 0;
}

		#sidebar .follow-widget #menu-sidebar-social li a {
			font-family: 'Open Sans Condensed', sans-serif;
			font-weight: 300;
			font-size: 14px;
			line-height: 1.33em;
			letter-spacing: 0.05em;
			text-transform: uppercase;
			color: #9f919e;
			-webkit-transition: all .3s ease-in-out;
			-moz-transition: all .3s ease-in-out;
			-ms-transition: all .3s ease-in-out;
			-o-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
	}

		#sidebar .follow-widget #menu-sidebar-social li a:hover {
			color: #000;
	}

			#sidebar .follow-widget #menu-sidebar-social li a i {
				margin-right: 9px;
			}

			#sidebar .follow-widget #menu-sidebar-social li a .fa-facebook {
				margin-left: 2px;
				margin-right: 13px;
			}

			#sidebar .follow-widget #menu-sidebar-social li a .fa-heart {
				margin-right: 6px;
			}

#sidebar .popular-widget .rpwe-li {
	position: relative;
	margin-bottom: 18px;
}

#sidebar .popular-widget .rpwe-li:last-of-type {
	margin-bottom: 0;
}

	#sidebar .popular-widget .rpwe-li .rpwe-img,
	#sidebar .popular-widget .rpwe-li .rpwe-title a {
		display: block;
	}

		#sidebar .popular-widget .rpwe-li .rpwe-title a {
			font-family: 'Montserrat', sans-serif;
			font-size: 13px;
			line-height: 1.67em;
			letter-spacing: 0.15em;
			text-transform: uppercase;
			color: #3c3c3c;
			display: block;
			text-align: center;
			width: 80%;
			max-width: 300px;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%,-50%);
			-webkit-transition: all .3s ease-in-out;
			-moz-transition: all .3s ease-in-out;
			-ms-transition: all .3s ease-in-out;
			-o-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
	}

		#sidebar .popular-widget .rpwe-li .rpwe-img:before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 7px;
			background: rgba(255,255,255,0.7);
			-webkit-transition: all .3s ease-in-out;
			-moz-transition: all .3s ease-in-out;
			-ms-transition: all .3s ease-in-out;
			-o-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
			margin: 0;
		}

		#sidebar .popular-widget .rpwe-li:hover .rpwe-img:before {
			background: rgba(0,0,0,0.7);
			opacity: 0.7;
		}

		#sidebar .popular-widget .rpwe-li:hover .rpwe-title a {
			color: #fff;
		}

.sidebar-search .search-form {
	text-align: center;
	padding: 35px 30px;
	background: #f4f4f4;
}

.sidebar-search .search-text {
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.33em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #000;
	min-height: 40px;
	max-width: 230px;
	padding: 0;
	text-align: center;
	border: none;
}

.sidebar-search .search-submit {
	display: none;
}

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

	.subscribe-widget .textwidget {
		background: #f4f4f4;
		padding: 10px;
	}

	.subscribe-widget h4 {
		color: #9f919e;
		padding-top: 23px;
		margin-bottom: 15px;
	}

	.subscribe-widget .mc-field-group {
		padding: 0 25px;
		margin: 0 auto;
}

		.subscribe-widget .mc-field-group .email {
			font-family: 'Open Sans Condensed', sans-serif;
			font-weight: 300;
			font-size: 15px;
			line-height: 1.33em;
			letter-spacing: 0.05em;
			color: #000;
			text-align: center;
			border: none;
	}

	.subscribe-widget .button {
		font-family: 'Montserrat', sans-serif;
		font-size: 9px;
		line-height: 2.22em;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: #9f919e;
		background: #f4f4f4;
		margin-bottom: 10px;
	}

	.subscribe-widget .button:hover {
		color: #000;
		background: #f4f4f4;
	}

/*--------------------------------------------------------------
# Single Post Page
--------------------------------------------------------------*/

#primary .post-container .post-single {
	width: 67.9166667%; /* 815/1200 */
}

	#primary .post-container .post-single .post {
		width: 100%;
	}

#spp-ad {
	margin-top: 35px;
}

#cancel-comment-reply-link {
	display: block;
	font-family: 'Montserrat', 'arial', sans-serif; 
	font-size: 8px; 
	letter-spacing:.1em; 
	text-transform: uppercase;
}

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

.comment-respond {
	margin-bottom: 70px;
}

.comment-reply-title,
.comments-title {
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	line-height: 1.2em;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #3c3c3c;
	text-align: center;
}

#commentform {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 64.417178%; /* 525 / 815 */
	margin: 0 auto;
}

#commentform p {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 0;
}

.form-submit {
	text-align: right;
	margin-top: 10px;	
}

.comments-title {
	margin-bottom: 70px;
}

	.comment-list,
	.comment-list ol,
	.comment-list ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	
	.comment-list > li {
		margin-bottom: 30px;	
	}
	
		.comment-list > li:last-of-type {
			margin-bottom: 0;	
		}
		
	.comment-list .children > li {
		margin-left: 50px;
		position: relative;	
	}

		.comment-list .children > li .comment-container {
			padding: 15px 30px;
			margin-top: 12px;
			background: #f4f4f4;
		}

.comment-author {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 15px;
	line-height: 1.25px;
	letter-spacing: 0.05em;
	color: #3c3c3c;
	margin-bottom: 5px;
	display: inline-block;
}

	.comment-author .author-name {
		font-family: 'Montserrat', sans-serif;
		font-size: 12px;
		font-style: normal;
		line-height: 1.67em;
		letter-spacing: 0.2em;
		text-transform: uppercase;
		color: #3c3c3c;
	}
	
.comment-date {
	font-family: 'Montserrat', sans-serif;
	font-size: 9px;
	line-height: 2.22em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #3c3c3c;
	float: right;
	margin-top: 5px;
}

.comment-meta {
	
}

	.comment-meta a {
		font-family: 'Montserrat', sans-serif;
		font-size: 9px;
		line-height: 2.22em;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: #3c3c3c;
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}

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


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

.page-header {
	padding-bottom: 40px;
	text-align: center;
}

	.page-header .page-title {
		font-family: 'Playfair Display', serif;
		font-style: italic;
		font-size: 35px;
		text-transform: none;
		line-height: 1.25em;
		letter-spacing: 0.05em;
		color: #3c3c3c;
	}

.archive .post-grid .entry-all,
.search .post-grid .entry-all {
	border: none;
}

.nav-links {
	text-align: center;
	margin-top: 45px;
	position: relative;
	z-index: 2;
}

	.nav-links .nav-previous a {
		font-family: 'Playfair Display', serif;
		font-style: italic;
		font-size: 25px;
		line-height: normal;
		letter-spacing: 0.05em;
		text-transform: lowercase;
		color: #fff;
		background: #d8cbcb;
		padding: 11px 49px 16px;
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}

	.nav-links .nav-previous a:hover {
		background: #9f919e;
	}

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

#gallery-menu {
	background: #3c3c3c;
	text-align: center;
	margin: 0 0 25px 0;
	padding: 0;
	list-style: none;
}

#gallery-menu li {
	display: inline-block;
	position: relative;
}

#gallery-menu li a {
	display: block;
	padding: 20px;
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 300;
	font-size: 15px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	position: relative;
}

#gallery-menu li a:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 16px 12px 16px;
	border-color: transparent transparent #e9dddd transparent;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
}

#gallery-menu li a:hover:after,
#gallery-menu li.current-menu-item a:after,
#gallery-menu li.sfHover a:after{
	opacity: 1;
}

	#gallery-menu > li > .sub-menu {
		text-align: center;
		background: #fff;
		width: 150px;
		padding: 0;
		border: 1px solid #d8cbcb;
		left: 50%;
		transform: translateX(-50%);
		margin-top: 10px;
	}
		#gallery-menu > li > .sub-menu > li {
			margin: 0;
			padding: 0;
			display: block;
		}
		
			#gallery-menu > li > .sub-menu > li > a {
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 300;
				font-size: 15px;
				line-height: 1.33em;
				letter-spacing: 0.05em;
				text-transform: uppercase;
				color: #000;
				padding: 10px 0;
				background: #fff;
				-webkit-transition: all .3s ease-in-out;
				-moz-transition: all .3s ease-in-out;
				-ms-transition: all .3s ease-in-out;
				-o-transition: all .3s ease-in-out;
				transition: all .3s ease-in-out;
			}
			
			#gallery-menu > li > .sub-menu > li > a:hover {
				background: #d6dad9;
			}

			#gallery-menu > li > .sub-menu > li > a:after {
				display: none;
				opacity: 0;
				visibility: hidden;
			}

.gallery-post-title {
	font-size: 13px;
	max-width: 300px;
	margin: 10px auto 0;
	text-align: center;
}

.video-icon {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 7px;
	font-size: 15px;
	color: #fff;
	z-index: 1;
}

.video-icon:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 50px 50px 0 0;
	border-color: #9f919e transparent transparent transparent;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

/*--------------------------------------------------------------
# Search Results
--------------------------------------------------------------*/

.no-results {
	max-width: 500px;
	margin: 0 auto;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px; 
	text-transform: uppercase; 
	letter-spacing:.1em; 
	text-align: center;
}

.no-results p:last-of-type {
	margin-bottom:20px;
}

.no-results .search-form {
	display: flex;
	justify-content: space-between;
}

.no-results .search-form input.search-text {
	margin-right: 20px;
}

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

.not-found-info {
	max-width: 500px;
	margin: 0 auto;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px; 
	text-transform: uppercase; 
	letter-spacing:.1em; 
	text-align: center;
}

.error-404 .search-form {
	display: flex;
	justify-content: space-between;
	max-width: 500px;
	margin: 20px auto 40px auto;
}

.error-404 .search-form input.search-text {
	margin-right: 20px;
}


/*--------------------------------------------------------------
# Info Page
--------------------------------------------------------------*/

#info-page {
	margin: 0 auto;
}

	#info-page .entry-title {
		font-family: 'Playfair Display', serif;
		font-style: italic;
		font-size: 35px;
		text-transform: none;
		line-height: 1.25em;
		letter-spacing: 0.05em;
		color: #3c3c3c;
		margin-bottom: 35px;
		text-align: center;
	}

	#info-page .entry-content {
		background: #fff;
		max-width: 1100px;
		padding: 60px 60px 40px;
		margin: 0 auto 50px;
	}

#info-page .entry-content h4 {
	color: #a598a4;
}

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

#shop-page .entry-title {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 35px;
	text-transform: none;
	line-height: 1.25em;
	letter-spacing: 0.05em;
	color: #3c3c3c;
	margin-bottom: 35px;
	text-align: center;
}

#shop-page #featured-widget {
	margin-bottom: 25px;
}

#featured-widget.shop-the-post {
	padding: 35px 20px 0px;
	margin-top: 0;
}

#featured-widget.shop-the-post h3 {
	left: 40px;
	padding: 10px 30px;
	width: auto;
}

#tabs {
	background: #fff;
	padding: 35px 0 45px 0;
}

#tabs .shop-tabs {
	margin-left: 55px;
	display: flex;
	align-items: center;
	margin-bottom: 35px;
}

#tabs .shop-tabs h3 {
	margin-right: 25px;
	flex-shrink: 0;
}

#tabs .shop-tabs ul {
	background: #e9dddd;
	flex-grow: 1;
}

#tabs .shop-tabs li {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	position: relative;
}

#tabs .shop-tabs li a {
	display: block;
	padding: 20px;
	color: #9f919e;
}

#tabs .shop-tabs li a:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 16px 12px 16px;
	border-color: transparent transparent #ffffff transparent;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
}

#tabs .shop-tabs li a:hover,
#tabs .shop-tabs li.tab-current a {
	color: #3c3c3c;
}

#tabs .shop-tabs li a:hover:after,
#tabs .shop-tabs li.tab-current a:after {
	opacity: 1;
}

#tabs .content {
	position: relative;
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}

#tabs .content section {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
}

#tabs .content section.content-current {
	opacity: 1;
	position: static;
}


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

@media screen and (min-width: 840px) {

	#primary-menu {
		display: inline-block;	
	}

	.slicknav_menu {
		display: none;	
	}

	#masthead #site-navigation {
		display: flex;
		justify-content: flex-end;
	}

	#masthead {
		margin: 0 auto 65px;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}

}

@media screen and (min-width: 1181px) and (max-width: 1280px) {
	
	#primary-menu li {
		margin-right: 30px;
	}

}

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

	#primary-menu {
		border-right: none;
		margin-right: 0;
	}

	#primary-menu li:last-of-type {
		margin-right: 0;
	}

	#top-right-menu {
		display: none;
	}

}

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

	#primary-menu li {
		margin-right: 20px;
	}

}

@media screen and (min-width: 1161px) and (max-width: 1280px) {

	#scroll-nav-menu {
		margin-right: 40px;
	}

		#scroll-nav-menu li {
			margin-right: 40px;
		}

		#scroll-nav-menu li:last-of-type {
			margin-right: 40px;
		}

}

@media screen and (min-width: 768px) and (max-width: 1160px) {

	#scroll-nav-menu {
		margin-right: 20px;
	}

		#scroll-nav-menu li {
			margin-right: 20px;
		}

		#scroll-nav-menu li:last-of-type {
			margin-right: 20px;
		}

}

@media screen and (max-width: 900px) {
	#scroll-navigation {
		display: none !important;
	}
}

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

.instagram-slider {
	display: block;
}

.instagram-slider .widget-title {
	display: none;
}

	.jr-insta-thumb {
		width: 100%;
	}

	.instagram-slider .jr-insta-thumb li {
		border-left: none !important;
	}

}

@media screen and (min-width: 768px) and (max-width: 1260px) {
	#sidebar .follow-widget #menu-sidebar-social li {
		width: 100%;
	}
	
	#sidebar .popular-widget .rpwe-li .rpwe-title a {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		transform: translate(0, 0);
		margin-top: 10px;
	}
	
	#sidebar .popular-widget .rpwe-li .rpwe-img {
		position: relative;
	}

	.sidebar-search .search-form {
		padding: 25px 20px;
	}
}

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

#tabs .shop-tabs {
	margin-left: 20px;
}

#tabs .shop-tabs h3 {
	margin-right: 10px;
}

#tabs .shop-tabs li {
	font-size: 11px;
}

#tabs .shop-tabs li a {
	padding: 20px 10px;
}

}

@media screen and (max-width: 1140px) { 
	
	#tabs .shop-tabs h3 {
		margin-bottom: 10px;
	}
	
	#tabs .shop-tabs {
		display: block;
	}
	
}

@media screen and (max-width: 910px) {
	#tabs .shop-tabs li {
		display: block;
	}
	
	#tabs .shop-tabs li a {
		padding: 10px 20px;
	}
	
	#tabs .shop-tabs li a:after {
		display: none;
		opacity: 0;
		visibility: hidden;
	}

}

/*--------------------------------------------------------------
## Tablet
--------------------------------------------------------------*/

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

	#primary .post-container {
		display: block;
	}

		#primary .post-container .post-feed {
			width: 100%;
			margin-bottom: 60px;
		}

		#primary .post-container #sidebar {
			width: 100%;
			max-width: 330px;
			margin: 0 auto;
		}

		#primary .post-feed .post .entry-header {
			display: block;
		}

		#primary .post-feed .post .entry-title {
			margin-bottom: 10px;	
		}

		#primary .entry-meta {
			display: none;
		}

	.post-grid .post {
		width: 100%;
		max-width: 500px;
		margin: 0 auto 50px;
	}
	
	#footer-cta-widget .wrap {
		display: block;
	}

		#footer-cta-widget .widget {
			width: 100%;
			max-width: 300px;
			margin: 0 auto 20px auto;
		}

		#footer-menu li {
			display: block;
			margin-right: 0;	
		}

}
