/*
Theme Name: Presidio
Theme URI: https://empressthemes.com/shop/presidio-theme
Author: EmPress Themes
Author URI: https://empressthemes.com
Description: Presidio is a versatile magazine-style WordPress theme for fashion bloggers (or any blogger, really!). Features Home Page feed with optional sidebar, customizable post summaries and plenty of space for affiliate link widgets.

Version: 1.0.2

Please refer to the readme.txt file for full licensing information.

Tags: one-column, two-columns, left-sidebar, right-sidebar, flexible-header, custom-header, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, theme-options, threaded-comments, blog

Text Domain: presidio

Presidio 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.

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Import Styles
# Typography
# Links
# Forms
# Layout
# Masthead
	## Site Branding
	## Primary Navigation
	## Mobile Navigation
	## Social Menu
	## Search
# Footer
	## Instagram
	## Footer Menu
# Blog post feed
	## Posts
	## Post Navigation
	## Sidebar
		### About Widget
		### Topics Widget
		### Shop Widget
		### Featured Posts Widget
# Single Post
	## Comments
	## Related Posts
# Archives
# Info Page
# Search Form
# 404 / Not Found
# Plugins
	## EmPress Shop the Post
--------------------------------------------------------------*/

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

@import url('https://jonesyeverafter.com/wp-content/themes/presidio/css/reset.css');

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

@import url('https://jonesyeverafter.com/wp-content/themes/presidio/css/superfish.css');

@import url('https://jonesyeverafter.com/wp-content/themes/presidio/css/emfont.css');

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #000;
	font: 13px/1.538 'IBM Plex Sans', sans-serif;
	letter-spacing: .025em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2em;
}

h1 {
	font: 30px 'IBM Plex Serif', serif;
	letter-spacing: .05em;
	font-weight: 200;
}

h2 {
	font: 30px 'IBM Plex Serif', serif;
	letter-spacing: .05em;
	font-weight: 200;
}

h3 {
	font: 24px 'IBM Plex Serif', serif;
	font-style: italic;
	letter-spacing: .05em;
	font-weight: 200;
}

h4 {
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
}

h5 {
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
}

h6 {
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.entry-title,
.em-fonts-primary {
	font: 30px 'IBM Plex Serif', serif;
	letter-spacing: .05em;
	text-transform: none;
	font-weight: 200;
}

.em-fonts-primary-small {
	font-size: 20px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin-bottom: .5em;
}

.em-fonts-secondary,
.em-fonts-secondary-small {
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.em-fonts-tertiary {
	font: 20px 'IBM Plex Serif', serif;
	font-style: italic;
	font-weight: 200;
	text-transform: lowercase;
	letter-spacing: .05em;
}

p {
	margin-bottom: 1.928em;
}

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

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

.wp-caption {
	margin-bottom: 1.928em;
	max-width: 100%;
	position: relative;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	position: absolute;
	padding: 15px;
	background: #fff;
	bottom: 40px;
	right: 0;
	max-width: 140px;
}

.wp-caption-text {
	font: 9px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
	line-height: 2.5em;
	text-align: left;
}

.gallery {
	display: flex;
	justify-content: space-between;
}

.gallery .gallery-item {
	width: 48.571429%; /* 340/700 */
}

@media screen and (max-width: 767px) {
	.gallery {
		display: block;
	}

	.gallery .gallery-item {
		width: 100%;
		margin-bottom: 1.5em;
	}

}

/*--------------------------------------------------------------
# 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 {
	-webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,1);
	box-shadow: inset 0 -1px 0 rgba(0,0,0,1);
}

.entry-content a:hover {
	-webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0), 0 2px 0 rgba(0,0,0,1);
	box-shadow: inset 0 0 0 rgba(0,0,0,0), 0 2px 0 rgba(0,0,0,1);
}

.entry-content .gallery a,
.entry-content a.has-image {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	outline: none;
	cursor: pointer;
	border: none;
	background: #000;
	color: #fff;
	font: 11px/1em 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
	padding: 15px 40px;
	-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 {
	display: inline-block;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button:hover {
	background: #f1f1f1;
	color: #000;
}

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 {
	color: #000;
	font: 13px/1.538 'IBM Plex Sans', sans-serif;
	box-sizing: border-box;
	width: 100%;
	border: 3px solid #F1F1F1;
	padding: 15px;
	background: #fff;
}

select {
	border: 2px solid #F1F1F1;
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #000000;
}

label {
	display: block;
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #000000;
	margin-bottom: 5px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #000;
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
}
::-moz-placeholder { /* Firefox 19+ */
	color: #000;
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
}
:-ms-input-placeholder { /* IE 10+ */
	color: #000;
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
}
:-moz-placeholder { /* Firefox 18- */
	color: #000;
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
}

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

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

.flex {
	display: flex;
	justify-content: space-between;
}

.flex-wrap {
	flex-wrap: wrap;
}

#content {
	margin-bottom: 110px;
}

/* Default Layout: Sidebar Right */

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

.blog #content,
.single #content,
.search-no-results #content,
.error404 #content {
	display: block;
}

#primary,
.post-feed {
	width: 56.363636%; /* 620/1100 */
}

#secondary,
.post-feed-sidebar {
	width: 31.818181%; /* 350/1100 */
}

/* Layout: Sidebar Left */

#content.sidebar-left #primary,
#content.sidebar-left .post-feed {
	order: 2;
}

#content.sidebar-left #secondary,
#content.sidebar-left .post-feed-sidebar {
	order: 1;
}

/* Layout: One Column */

#content.one-column,
#content.one-column .post-feed-container {
	display: block;
}

#content.one-column #primary,
#content.one-column .post-feed {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.flex {
		display: block;
	}
	
	#content,
	.post-feed-container {
		display: block;
	}
	
	#primary,
	.post-feed {
		width: 100%;
		margin-bottom: 80px;
	}

	#secondary,
	.post-feed-sidebar {
		width: 100%;
		max-width: 350px;
		margin: 0 auto;
	}

}

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

#masthead {
	margin: 35px auto 40px;	
	align-items: center;
}

#masthead.stacked-header {
	text-align: center;
	margin-top: 30px;
}

.site-title-image {
	text-align: center;
}

.site-title-text {
	font: 28px 'IBM Plex Serif', serif;
	letter-spacing: .05em;
	text-transform: none;
	font-weight: 200;
}

.site-description {
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-top: 8px;
}

.stacked-header #site-branding {
	margin-bottom: 20px;
}

.inline-header #site-branding {
	margin-right: 20px;
	flex-grow: 1;
}

@media screen and (max-width: 767px) {
	#masthead.inline-header {
		text-align: center;
		margin-top: 30px;
	}
	
	.inline-header #site-branding {
		margin-right: 0;
		margin-bottom: 20px;
	}
}

/*--------------------------------------------------------------
## Top Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
### Top Menu
--------------------------------------------------------------*/

#top-navigation {
	margin-top: 20px;
	position: relative;
	padding: 0 25px 0 0;
	line-height: 25px !important;
}

	#top-navigation.no-search {
		padding-right: 0;
	}

#top-menu li {
	font-size: 9px;
	line-height: 25px !important;
	display: inline-block;
	margin-right: 20px;
}

#top-menu li a {
	color: #9B9B9B;
}

#top-menu li a:hover {
	color: #000;
}

@media screen and (max-width: 767px) {
	#top-navigation {
		display: none;
	}
}

/*--------------------------------------------------------------
### Social Menu
--------------------------------------------------------------*/

#top-navigation .social-menu,
#scroll-navigation .social-menu {
	line-height: 25px !important;
}

.social-menu {
	margin-left: auto;
}

.social-menu li {
	display: inline-block;
	margin-left: 12px;
}

.social-menu li a {
	color: #000;
}

.social-menu li a:hover {
	color: #C5C5C5;
}

.social-menu li a span {
	display: none;
}

.social-menu li a:before {
	content: '';
	font: 11px FontAwesome;
}

.social-menu li a[href*="instagram"]:before {
	content: '\f16d';
}

.social-menu li a[href*="pinterest"]:before {
	content: '\f0d2';
}

.social-menu li a[href*="twitter"]:before {
	content: '\f099';
}

.social-menu li a[href*="facebook"]:before {
	content: '\f09a';
}

.social-menu li a[href*="snapchat"]:before {
	content: '\f2ac';
}

.social-menu li a[href*="bloglovin"]:before {
	content: '\f004';
}

.social-menu li a[href*="youtube"]:before {
	content: '\f16a';
}

.social-menu li a[href*="eepurl"]:before,
.social-menu li a[href*="subscribe"]:before {
	content: '\f0e0';
}

.social-menu li a[href*="mailto"]:before,
.social-menu li a[href*="contact"]:before {
	content: '\f1d8';
}

.social-menu li a[href*="feed"]:before {
	content: '\f09e';
}

.social-menu li a[href*="shop"]:before {
	content: '\f290';
}

.social-menu li a[href*="liketoknow.it"]:before,
.social-menu li a[href*="liketk.it"]:before {
	content: '\f02b';
}

.social-menu li a[href*="tumblr"]:before {
	content: '\f173';
}

@media screen and (max-width: 1024px) {
	.inline-header .social-menu {
		display: none;
	}
}

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

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

input[type="search"].sb-search-input {
	border: none;
	outline: none;
	background: #F1F1F1;
	width: 100%;
	height: 25px;
	margin: 0;
	z-index: 10;
	padding: 5px 25px 5px 10px;
	color: #000;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	font: 9px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.sb-icon-search,
input[type="submit"].sb-search-submit  {
	width: 25px;
	height: 25px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0 0 0 12px;
	margin: 0;
	line-height: 25px !important;
	text-align: center;
	cursor: pointer;
	border: none;
	font-size: 11px !important;
	box-sizing: border-box;
}

input[type="submit"].sb-search-submit {
    opacity: 0;
	color: transparent;
	border: none;
	outline: none;
	z-index: -1;
}

.sb-icon-search {
	color: #000;
	background: #fff;
	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 {
		color: #c5c5c5;
	}

.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: #fff;
	color: #000;
	z-index: 11;
}

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

@media screen and (max-width: 1024px) {
	.inline-header .sb-search {
		display: none;
	}
}

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

.inline-header #site-navigation {
	position: relative;
	padding-right: 25px;
	align-items: center;
}

	.inline-header #site-navigation.no-search {
		padding-right: 0;
	}

.primary-menu > li {
	display: inline-block;
	margin: 0 40px 0 0;
}

	#site-navigation.no-search.no-social .primary-menu > li:last-of-type,
	.stacked-header .primary-menu > li:last-of-type {
		margin-right: 0;
	}

	.primary-menu > li > a {
		color: #000;
		display: block;
		padding: 5px 0;
		position: relative;
	}

	.primary-menu > li > a:after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0;
		height: 1px;
		background: #000;
		opacity: 0;
		transform: translate(-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;
	}

	.primary-menu > li > a:hover:after,
	.primary-menu > li.sfHover > a:after {
		opacity: 1;
		width: 100%;
	}

.primary-menu > li > .sub-menu {
	width: 180px;
	padding: 10px 0;
	background: #F1F1F1;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

	.primary-menu > li > .sub-menu > li {
		position: relative;
		padding: 0 10px;
	}

		.primary-menu > li > .sub-menu > li > a {
			color: #000;
			display: inline-block;
			padding: 5px 0;
			position: relative;
		}

			.primary-menu > li > .sub-menu > li > a:after {
				content: '';
				display: block;
				position: absolute;
				bottom: 0;
				left: 50%;
				width: 0;
				height: 1px;
				background: #000;
				opacity: 0;
				transform: translate(-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;
			}

			.primary-menu > li > .sub-menu > li > a:hover:after,
			.primary-menu > li > .sub-menu > li.sfHover > a:after {
				opacity: 1;
				width: 100%;
			}

	.primary-menu > li > .sub-menu > li > .sub-menu {
		width: 180px;
		background: #F1F1F1;
		padding: 10px 0;
		top: -10px;
		right: 0;
		text-align: center;
	}

		.primary-menu > li > .sub-menu > li > .sub-menu > li {
			padding: 0 10px;
			position: relative;
		}

			.primary-menu > li > .sub-menu > li > .sub-menu > li > a {
				color: #000;
				display: inline-block;
				padding: 5px 0;
				position: relative;
			}

				.primary-menu > li > .sub-menu > li > .sub-menu > li > a:after {
					content: '';
					display: block;
					position: absolute;
					bottom: 0;
					left: 50%;
					width: 0;
					height: 1px;
					background: #000;
					opacity: 0;
					transform: translate(-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;
				}

				.primary-menu > li > .sub-menu > li > .sub-menu > li > a:hover:after {
					opacity: 1;
					width: 100%;
				}

@media screen and (max-width: 1024px) {
	.inline-header #site-navigation {
		padding-right: 0;
	}
	
	.inline-header .primary-menu > li:last-of-type {
		margin-right: 0;
	}
}

@media screen and (max-width: 767px) {
	.primary-menu {
		display: none;
	}
}

@media screen and (max-width: 420px) {
	#site-navigation .wrap {
		width: 100%;
		padding-left: 20px;
	}
}

/*--------------------------------------------------------------
## Mobile Navigation
--------------------------------------------------------------*/

.slicknav_menu {
	display: none;
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .15em;
}

.slicknav_menu a {
	color: #000;
}

.slicknav_btn {
	display: block;
	padding: 10px 0;
}

.slicknav_menutxt:before {
	content: '\f0c9';
	font-family: FontAwesome;
	margin-right: 5px;
}

.slicknav_nav li {
	margin-top: 10px;
}

.slicknav_menu .sub-menu {
	margin-left: 20px;
}

.slicknav_nav .sf-with-ul:after {
	content: '\f107';
	font-family: FontAwesome;
	margin-left: 5px;
}

.slicknav_nav .slicknav_open > .slicknav_item > .sf-with-ul:after {
	content: '\f106';
}

@media screen and (max-width: 767px) {
	.slicknav_menu {
		display: block;
	}
}

@media screen and (max-width: 420px) {
	.slicknav_menu {
		margin-right: auto;
	}
}

/*--------------------------------------------------------------
## Scroll Navigation
--------------------------------------------------------------*/

#scroll-navigation {
	background: #F1F1F1;
	color: #000;
	padding: 15px 0;
	position: fixed;
	top: -100%;
	left: 0;
	width: 100%;
	z-index: 99999;
}

#scroll-navigation > .wrap > ul > li {
	line-height: 25px !important;
}

#scroll-navigation .wrap {
	padding-right: 25px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

	#scroll-navigation.aligncenter .wrap {
		justify-content: center;
		align-content: center;
		text-align: center;
	}

	#scroll-navigation.no-search .wrap {
		padding-right: 0;
	}

#scroll-navigation .social-menu li {
	padding: 2px 0;
}

#sb-scroll .sb-icon-search,
#sb-scroll.sb-search-open .sb-icon-search,
.no-js #sb-scroll .sb-icon-search {
	background: #F1F1F1;
}

@media screen and (max-width: 1024px) {
	#primary-menu-scroll {
		display: none;
	}
	
	#scroll-navigation .slicknav_menu {
		display: block;
	}
}

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

	#scroll-navigation .social-menu {
		display: none;
	}
	
	#sb-scroll {
		max-width: 100%;
	}

}

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

#footer {
	border-top: 2px solid #F1F1F1;
}

#footer.instagram-active,
#footer.footer-box-active {
	border-top: none;
}


/*--------------------------------------------------------------
## Feature Box
--------------------------------------------------------------*/

#footer-feature-box {
	position: relative;
}

#footer-feature-box .featured-image {
	margin-bottom: 0;
}

#footer-feature-box .featured-image img,
#footer-feature-box .featured-image a {
	display: block;
	margin: 0 auto;
}

#footer-feature-box .box-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
	max-width: 430px;
	padding: 50px 40px;
	background: rgba(255, 255, 255, .9);
	text-align: center;
}

#footer-feature-box .cta {
	display: inline-block;
	padding: 15px 40px;
	margin-top: 25px;
	background: #000;
	color: #fff;
}


/*--------------------------------------------------------------
## Instagram Widget Area
--------------------------------------------------------------*/

#instagram {
	padding: 15px 0 55px;
	background: #F1F1F1;
}

#instagram .widget-title {
	margin-bottom: 25px;
	text-align: center;
}

.instagram-pics {
	display: flex;
	justify-content: space-between;
}

	.instagram-pics li {
		margin-right: 10px; 
	}

	.instagram-pics li:last-of-type {
		margin-right: 0; 
	}

	.instagram-pics a,
	.instagram-pics img {
		display: block;
		position: relative;
	}

	.instagram-pics a:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
		background: rgba(0,0,0,.5);
		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;
		-webkit-backface-visibility: none;
		backface-visibility: none;
	}

	.instagram-pics a:after {
		content: '\f16d';
		display: block;
		font: 45px FontAwesome;
		color: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: 3;
		transform: translate(-50%,-50%);
		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;
		-webkit-backface-visibility: none;
		backface-visibility: none;
	}

	.instagram-pics a:hover:before,
	.instagram-pics a:hover:after {
		opacity: 1;
	}

	.null-instagram-feed p.clear {
		display: none;
	}

@media screen and (max-width: 767px) {
	.instagram-pics {
		flex-wrap: wrap;
	}

		.instagram-pics li {
			width: 49%;
			margin-bottom: 10px;
			margin-right: 0;
		}

		.instagram-pics li:last-of-type {
			margin-bottom: 0;
		}
}

@media screen and (max-width: 400px) {
	.instagram-pics li {
		width: 100%;
	}

}


/*--------------------------------------------------------------
## Footer Widget Area
--------------------------------------------------------------*/

#footer-widget-area {
	padding: 15px 0;
	display: flex;
	justify-content: space-between;
}

#footer-widget-area .widget-title {
	text-align: center;
	margin-bottom: 20px;
}

	#footer-widget-area .widget-title a {
		color: #000;
	}

#footer-widget-area .widget {
	width: 0;
	flex-grow: 1;
	padding: 0 25px;
	border-right: 2px solid #F1F1F1;
}

#footer-widget-area .widget:last-of-type {
	border-right: none;
}

@media screen and (max-width: 767px) {
	#footer-widget-area {
		display: block;
	}
	
	#footer-widget-area .widget {
		width: 100%;
		padding: 25px 0;
		border-right: none;
		border-bottom: 2px solid #F1F1F1;
	}

	#footer-widget-area .widget:last-of-type {
		border-bottom: none;
	}
}


/*--------------------------------------------------------------
### Social Widget
--------------------------------------------------------------*/

.presidio_social_widget .social-menu {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

	.presidio_social_widget .social-menu li {
		width: 50%;
		display: block;
		margin: 0 0 20px;
	}

	.presidio_social_widget .social-menu li a {
		padding: 0 10px;
	}

	.presidio_social_widget .social-menu li a:before {
		font-size: 16px;
		margin-right: 10px;
		vertical-align: middle;
	}

	.presidio_social_widget .social-menu li a:after {
		content: '';
		vertical-align: middle;
	}

		.presidio_social_widget .social-menu li a[href*="instagram"]:after {
			content: 'Instagram';
		}

		.presidio_social_widget .social-menu li a[href*="pinterest"]:after {
			content: 'Pinterest';
		}

		.presidio_social_widget .social-menu li a[href*="twitter"]:after {
			content: 'Twitter';
		}

		.presidio_social_widget .social-menu li a[href*="facebook"]:after {
			content: 'Facebook';
		}

		.presidio_social_widget .social-menu li a[href*="snapchat"]:after {
			content: 'Snapchat';
		}

		.presidio_social_widget .social-menu li a[href*="bloglovin"]:after {
			content: 'Bloglovin';
		}

		.presidio_social_widget .social-menu li a[href*="youtube"]:after {
			content: 'YouTube';
		}

		.presidio_social_widget .social-menu li a[href*="eepurl"]:after,
		.presidio_social_widget .social-menu li a[href*="subscribe"]:after {
			content: 'Subscribe';
		}

		.presidio_social_widget .social-menu li a[href*="mailto"]:after,
		.presidio_social_widget .social-menu li a[href*="contact"]:after {
			content: 'Email';
		}

		.presidio_social_widget .social-menu li a[href*="feed"]:after {
			content: 'RSS';
		}

		.presidio_social_widget .social-menu li a[href*="shop"]:after {
			content: 'Shop';
		}

		.presidio_social_widget .social-menu li a[href*="liketoknow.it"]:after,
		.presidio_social_widget .social-menu li a[href*="liketk.it"]:after {
			content: 'LikeToKnow.It';
		}

		.presidio_social_widget .social-menu li a[href*="tumblr"]:after {
			content: 'Tumblr';
		}

@media screen and (max-width: 1024px) {
	.presidio_social_widget .social-menu {
		display: block;
		text-align: center;
	}
	
	.presidio_social_widget .social-menu li {
		width: 100%;
		text-align: center;
	}
	
	#footer-widget-area .presidio_social_widget .social-menu li {
		width: auto;
		display: inline-block;
		margin: 10px 5px;
	}

	#footer-widget-area .presidio_social_widget .social-menu li a {
		padding: 0;
	}
	
	#footer-widget-area .presidio_social_widget .social-menu li a:before {
		font-size: 13px;
	}
	
	#footer-widget-area .presidio_social_widget .social-menu li a:after {
		display: none;
	}

}


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

.search-form .input-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 45px;
	height: 49px;
	border: 2px solid #F1F1F1;
	position: relative;
	margin-bottom: 15px;
}

.search-form .input-group i {
	position: absolute;
	top: 0;
	left: 0;
	width: 45px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 16px;
	line-height: 16px;
}

.search-form .search-text {
	text-align: center;
	padding: 0;
	border: none;
	background: none;
}

.search-form button {
	display: block;
	width: 100%;
	text-align: center;
	background: none;
	border: none;
	color: #000;
	padding: 0;
	font-size: 11px;
}

.search-form button:hover {
	background: none;
}

.sidebar .search-form .input-group {
	background: #fff;
}


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

#footer-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0 15px;
	border-top: 2px solid #F1F1F1;
}

#footer-menu li,
.copyright {
	display: inline-block;
	margin: 0 10px;
}

	#footer-menu li a,
	.copyright {
		color: #9B9B9B;	
	}

	#footer-menu li a:hover {
		color: #000;	
	}
	
#empress-credit {
	display: inline-block;
	margin-left: 10px;
	color: #9B9B9B;
}

#empress-credit:hover {
	color: #000;
}

@media screen and (max-width: 767px) {
	#footer-navigation {
		display: block;
		text-align: center;
	}

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

	#empress-credit {
		display: block;
		margin-left: 0;
		margin-top: 10px;
	}

}

/*--------------------------------------------------------------
# Blog post feed
--------------------------------------------------------------*/

.post-feed-container.first {
	padding-top: 50px;
}


/*--------------------------------------------------------------
## Posts
--------------------------------------------------------------*/

.post-home {
	margin-bottom: 80px;
}

.featured-image {
	margin-bottom: 15px;
}

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

	.featured-image img {
		margin: 0 auto;
	}

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

.entry-meta {
	margin-bottom: 10px;
	font-size: 9px;
}

.entry-meta .sep {
	margin: 0 5px;
}

.entry-content {
	margin-bottom: 25px;
}

.entry-footer {
	display: flex;
	justify-content: space-between;
	border: 2px solid #F1F1F1;
}

.entry-footer.no-comments.no-shares {
	border: none;
}

.entry-footer a:hover {
	color: #9B9B9B;
}

.entry-footer > div {
	padding: 15px 25px;
	border-right: 2px solid #F1F1F1;
	flex-grow: 1;
	text-align: center;
}

.entry-footer > div:last-of-type {
	border-right: none;
}

.entry-footer .share {
	flex-grow: 2;
}

.share h4 {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.share ul {
	margin: 0;
	list-style: none;
	display: inline-block;
	vertical-align: middle;
}

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

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

.entry-footer .read-more-button {
	border-right: none;
	padding: 0;
}

.entry-footer .read-more-button a {
	display: block;
	padding: 16px 25px;
	background: #000;
	color: #fff;
}

.entry-footer .read-more-button a:hover {
	background: #F1F1F1;
	color: #000;
}

@media screen and (max-width: 1024px) {
	.entry-footer {
		flex-wrap: wrap;
	}
	
	.entry-footer .read-more-button {
		order: 1;
		width: 100%;
	}
	
	.entry-footer .comments-link {
		order: 2;
	}
	
	.entry-footer .share {
		order: 3;
		border-right: none;
	}
}

@media screen and (max-width: 400px) {
	.entry-footer .comments-link {
		border-right: none;
		border-bottom: 2px solid #f1f1f1;
		width: 100%;
	}
	
	.entry-footer .share {
		width: 100%;
	}
}

/*--------------------------------------------------------------
## Post Navigation
--------------------------------------------------------------*/

.posts-navigation,
.post-navigation {
	text-align: center;
}

.nav-links {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font: 12px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .15em;
}

.nav-links a {
	display: block;
	padding: 15px 30px;
	background: #000;
	color: #fff;
	border-right: 2px solid #fff;
}

.nav-links > div:last-of-type a {
	border-right: none;
}

.nav-links a:hover {
	background: #f1f1f1;
	color: #000;
}


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

.intro {
	padding-bottom: 50px;
	border-bottom: 2px solid #979797;
}

/*--------------------------------------------------------------
### Featured Post
--------------------------------------------------------------*/

.post-featured {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}

.post-featured .featured-image {
	width: 61.363636%; /* 675/1100 */
	margin-bottom: 0;
}

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

.post-featured .entry-summary {
	width: 43.636363%; /* 480/1100 */
	margin-left: -5%; /* 55/1100 */
	padding: 25px;
	background: #FAFAFA;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.post-featured .entry-meta,
.post-featured .entry-title {
	text-align: left;
}

.post-featured .entry-header {
	margin-bottom: 10px;
	text-align: left;
}

.post-featured .excerpt {
	margin-bottom: 25px;
}

.post-featured .entry-footer {
	border: none;
	justify-content: flex-start;
	align-items: center;
}

	.post-featured .entry-footer > div {
		border-right: 1px solid #000;
		flex-grow: 0;
		padding: 5px 15px;
	}

	.post-featured .entry-footer > div:first-of-type,
	.post-featured .entry-footer > div:last-of-type {
		border-right: none;
	}

	.post-featured .entry-footer .read-more-button {
		padding: 0;
		border: none;
		margin-right: 15px;
	}

	.post-featured .em-shop-the-post {
		border: none;
	}

		.post-featured .em-shop-the-post:before {
			content: '\f290';
			font-family: FontAwesome;
			margin-right: 5px;
			cursor: pointer;
		}

		.post-featured .em-shop-the-post:after {
			content: 'Shop';
			cursor: pointer;
		}

		.post-featured .em-shop-title {
			display: none;
		}

		.post-featured .em-shop-code {
			position: absolute;
			z-index: 2;
			bottom: 25px;
			left: 25px;
			right: 25px;
			background: #fff;
			transform: translateY(calc(100% + 25px));
			opacity: 0;
			-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;
		}

		.post-featured .em-shop-the-post:hover .em-shop-code {
			transform: translateY(0);
			opacity: 1;
		}

.post-featured .share {
	position: relative;
}

	.post-featured .share h4 {
		margin-bottom: 0;
		cursor: pointer;
	}

	.post-featured .share h4:before {
		content: '\f1e0';
		font-family: FontAwesome;
		margin-right: 5px;
		cursor: pointer;
	}

	.post-featured .share ul {
		position: absolute;
		z-index: 2;
		top: 0;
		bottom: 0;
		left: 30px;
		width: 100px;
		padding: 6px 0;
		background: #FAFAFA;
		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;
	}

	.post-featured .share:hover ul {
		opacity: 1;
	}

@media screen and (max-width: 1024px) {
	.post-featured {
		display: block;
	}
	
	.post-featured .featured-image {
		width: 100%;
	}

	.post-featured .entry-summary {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		margin-top: -55px;
	}
	
	.post-featured .entry-footer {
		display: block;
	}
	
	.post-featured .entry-footer .read-more-button {
		text-align: left;
	}
	
	.post-featured .entry-footer .read-more-button a {
		display: inline-block;
	}
	
	.post-featured .entry-footer > div.em-shop-the-post {
		border: none;
		padding: 0;
		margin: 25px 0 0;
	}

	.post-featured .em-shop-the-post:before {
		display: none;
	}

	.post-featured .em-shop-the-post:after {
		display: none;
	}

	.post-featured .em-shop-title {
		display: block;
		text-transform: lowercase;
	}

	.post-featured .em-shop-code {
		position: static;
		transform: translateY(0);
		opacity: 1;
	}
	
	.post-featured .share {
		margin-top: 15px;
	}
	
	.post-featured .share ul {
		position: static;
		width: auto;
		padding: 0;
		background: none;
		opacity: 1;
	}
}


/*--------------------------------------------------------------
### Shopping Widget
--------------------------------------------------------------*/

.shopping-widget-title {
	text-align: center;
	margin-bottom: 20px;
	font-size: 30px;
}


/*--------------------------------------------------------------
## Sidebar
--------------------------------------------------------------*/

.sidebar .widget {
	margin-bottom: 45px;
	padding: 25px;
	background: #F1F1F1;
}

.sidebar .widget-title {
	text-align: center;
	margin-bottom: 20px;
	font-size: 16px;
}


/*--------------------------------------------------------------
## Interstitials
--------------------------------------------------------------*/

.interstitial {
	padding: 25px 0;
	position: relative;
	margin-bottom: 80px;
}

.interstitial:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100vw;
	background: #F1F1F1;
	margin-left: calc(50% - 50vw);
	z-index: -1;
}

.interstitial .widget {
	margin-bottom: 25px;
}

.interstitial .widget:last-of-type {
	margin-bottom: 0;
}

.interstitial .widget-title {
	margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
	.interstitial .widget-title {
		text-align: center;
	}
}


/*--------------------------------------------------------------
### About Widget
--------------------------------------------------------------*/

.presidio_about_widget {
	text-align: center;
}

	.presidio_about_widget .widget-image {
		margin-bottom: 20px;
	}

		.presidio_about_widget .widget-image img,
		.presidio_about_widget .widget-image a {
			display: block;
		}

	.presidio_about_widget .widget-content {
		padding: 25px;
		background: #fff;
	}

	#footer-widget-area .presidio_about_widget .widget-content {
		padding: 0;
		background: none;
	}

	.presidio_about_widget .widget-text {
		margin-bottom: 20px;
		font-size: 90%;
	}

	.presidio_about_widget .widget-links li {
		display: inline-block;
	}

		.presidio_about_widget .widget-links li:after {
			content: '\b7';
			display: inline-block;
			margin: 0 10px;
		}

		.presidio_about_widget .widget-links li:last-of-type:after {
			display: none;
		}

		.presidio_about_widget .widget-links li a {
			border-bottom: 1px solid transparent;
		}

		.presidio_about_widget .widget-links li a:hover {
			border-color: #000;
		}

/*--------------------------------------------------------------
### Highlight Widget
--------------------------------------------------------------*/

.presidio_highlight_widget {
	text-align: center;
}

	.presidio_highlight_widget .widget-image img,
	.presidio_highlight_widget .widget-image a {
		display: block;
	}

	.presidio_highlight_widget .widget-image a:hover {
		opacity: .7;
	}

.presidio_highlight_widget .widget-cta {
	margin-top: 20px;
}

	#footer-widget-area .presidio_highlight_widget .widget-cta {
		margin-top: 15px;
	}

	.presidio_highlight_widget .widget-cta a {
		display: block;
		padding: 25px;
		background: #fff;
	}

	#footer-widget-area .presidio_highlight_widget .widget-cta a {
		padding: 15px;
		background: #f1f1f1;
	}

	.presidio_highlight_widget .widget-cta a:hover {
		background: #000;
		color: #fff;
	}

	#footer-widget-area .presidio_highlight_widget .widget-cta a:hover {
		background: #000;
	}

.interstitial .presidio_highlight_widget {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-top: -25px;
	position: relative;
}

.interstitial .presidio_highlight_widget:last-of-type {
	margin-bottom: -25px;
}

.interstitial .presidio_highlight_widget img {
	margin: 0 auto;
}

.interstitial .presidio_highlight_widget .widget-cta {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
	max-width: 430px;
}


/*--------------------------------------------------------------
### Subscription Widget
--------------------------------------------------------------*/

.presidio_subscription_widget .widget-image {
	margin-bottom: 20px;
}

.presidio_subscription_widget .widget-image img {
	display: block;
}

.presidio_subscription_widget .widget-container {
	text-align: center;
}

.presidio_subscription_widget .widget-text {
	max-width: 250px;
	margin: 0 auto 20px;
}

.presidio_subscription_widget input:not([type="submit"]) {
	text-align: center;
	margin-bottom: 10px;
}

.presidio_subscription_widget input[type="submit"],
.presidio_subscription_widget button {
	padding: 0;
	background: none;
	color: #000;
	font: 14px 'IBM Plex Serif', serif;
	font-style: italic;
	font-weight: 200;
	text-transform: lowercase;
	letter-spacing: .05em;
}

.interstitial .presidio_subscription_widget .widget-container {
	display: flex;
}

.interstitial .presidio_subscription_widget .widget-container > div {
	width: 0;
	flex-grow: 1;
	margin-right: 10px;
}

.interstitial .presidio_subscription_widget .widget-container > div:last-of-type {
	margin-right: 0;
}

.interstitial .presidio_subscription_widget .widget-image {
	margin-bottom: 0;
}

.interstitial .presidio_subscription_widget .widget-content {
	display: flex;
	flex-direction: column;
	padding: 25px;
	background: #fff;
	justify-content: center;
	align-items: center;
}

.interstitial .presidio_subscription_widget .widget-text {
	width: 100%;
	max-width: none;
}

.interstitial .presidio_subscription_widget .widget-form-code {
	width: 100%;
}

#footer-widget-area .presidio_subscription_widget input:not([type="submit"]),
.interstitial .presidio_subscription_widget input:not([type="submit"]) {
	border: none;
	background: #f1f1f1;
}

/*--------------------------------------------------------------
### Shop Widget
--------------------------------------------------------------*/

.presidio_shop_widget {
	text-align: center;
}

	.presidio_shop_widget img,
	.presidio_shop_widget a {
		display: block;
	}

.presidio_shop_widget .shop-links {
	padding: 25px;
	background: #fff;
}

.presidio_shop_widget .shop-links li {
	margin-bottom: 20px;
}

.presidio_shop_widget .shop-links li:last-of-type {
	margin-bottom: 0;
}

.presidio_shop_widget .shop-cta {
	margin-top: 25px;
	font-size: 11px;
}

#footer-widget-area .presidio_shop_widget .shop-links,
.interstitial .presidio_shop_widget .shop-links {
	padding: 0;
	background: none;
}

.interstitial .presidio_shop_widget {
	text-align: left;
}

.interstitial .presidio_shop_widget .shop-links {
	display: flex;
}

.interstitial .presidio_shop_widget .shop-links li {
	padding: 25px;
	background: #fff;
	margin-bottom: 0;
	margin-right: 10px;
	text-align: center;
	width: 0;
	flex-grow: 1;
}

.interstitial .presidio_shop_widget .shop-links li:last-of-type {
	margin-right: 0;
}

.interstitial .presidio_shop_widget .shop-cta {
	text-align: right;
}

@media screen and (max-width: 767px) {
	.interstitial .presidio_shop_widget .shop-links {
		display: block;
	}

	.interstitial .presidio_shop_widget .shop-links li {
		width: 100%;
		margin-bottom: 10px;
		margin-right: 0;
	}

	.interstitial .presidio_shop_widget .shop-links li:last-of-type {
		margin-bottom: 0;
	}
	
	.interstitial .presidio_shop_widget .shop-cta {
		text-align: center;
	}
}

/*--------------------------------------------------------------
### Topics Widget
--------------------------------------------------------------*/

.presidio_topics_widget .widget-links li {
	position: relative;
	margin-bottom: 20px;
}

		.presidio_topics_widget .widget-links li:last-of-type {
			margin-bottom: 0;
		}

	.presidio_topics_widget .widget-links li img,
	.presidio_topics_widget .widget-links li a {
		display: block;
		-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;
	}

		.presidio_topics_widget .widget-links li:hover img {
			opacity: .8;
		}

	.presidio_topics_widget .widget-links .category-title {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 90%;
		max-width: 160px;
		background: rgba(255, 255, 255, .9);
		padding: 20px;
		text-align: center;
		-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;
	}

.interstitial .presidio_topics_widget .widget-links {
	display: flex;
}

.interstitial .presidio_topics_widget .widget-links li {
	width: 0;
	flex-grow: 1;
	margin-right: 10px;
}

.interstitial .presidio_topics_widget .widget-links li:last-of-type {
	margin-right: 0;
}

@media screen and (max-width: 767px) {
	.interstitial .presidio_topics_widget .widget-links {
		display: block;
	}

	.interstitial .presidio_topics_widget .widget-links li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	.interstitial .presidio_topics_widget .widget-links li:last-of-type {
		margin-bottom: 0;
	}
}

/*--------------------------------------------------------------
### Featured Posts Widget
--------------------------------------------------------------*/

.presidio_featured_posts_widget .featured-posts li {
	margin-bottom: 25px;
}

	.presidio_featured_posts_widget .featured-posts li:last-of-type {
		margin-bottom: 0;
	}

	.presidio_featured_posts_widget .featured-posts li a,
	.presidio_featured_posts_widget .featured-posts li img {
		display: block;
	}

	.presidio_featured_posts_widget .featured-posts .featured-image {
		margin-bottom: 15px;
	}

	.presidio_featured_posts_widget .featured-posts li .entry-title {
		text-align: center;
	}

.interstitial .presidio_featured_posts_widget .featured-posts {
	display: flex;
}

	.interstitial .presidio_featured_posts_widget .featured-posts li {
		margin-bottom: 0;
		width: 0;
		flex-grow: 1;
		margin-right: 10px;
	}

	.interstitial .presidio_featured_posts_widget .featured-posts li:last-of-type {
		margin-right: 0;
	}

@media screen and (max-width: 767px) {
	.interstitial .presidio_featured_posts_widget .featured-posts {
		display: block;
	}

	.interstitial .presidio_featured_posts_widget .featured-posts li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	.interstitial .presidio_featured_posts_widget .featured-posts li:last-of-type {
		margin-bottom: 0;
	}
}

/*--------------------------------------------------------------
### Text Widget
--------------------------------------------------------------*/

.sidebar .widget_text {
	background: #fff;
	border: 25px solid #f1f1f1;
}

.widget_text li {
	text-align: center;
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 10px;
}

.widget_text li:last-of-type {
	margin-bottom: 0;
}

.widget_text a {
	border-bottom: 1px solid transparent;	
}

.widget_text a:hover {
	border-bottom: 1px solid transparent;
}



/*--------------------------------------------------------------
### Archives Widget
--------------------------------------------------------------*/

.sidebar .widget_archive {
	background: #fff;
	border: 25px solid #f1f1f1;
}

.widget_archive li {
	font: 11px 'IBM Plex Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 10px;
}

.widget_archive li:last-of-type {
	margin-bottom: 0;
}

.widget_archive a {
	border-bottom: 1px solid transparent;
}

.widget_archive a:hover {
	border-color: #000;
}

.widget_archive select {
	width: 100%;
	border: 2px solid #F1F1F1;
	background: #fff;
	padding: 10px;
}

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

.single #content {
	margin-top: 80px;
}

.post-single {
	margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
	.single #content {
		margin-top: 50px;
	}
}


/*--------------------------------------------------------------
## Related Posts
--------------------------------------------------------------*/

#related-posts h3 {
	margin-bottom: 15px;
}

.related-post {
	width: 0;
	flex-grow: 1;
	margin-right: 10px;
	text-align: center;
}

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

.related-post a,
.related-post img {
	display: block;
	margin: 0 auto;
}

.related-post h4 {
	margin-top: 15px;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.related-post {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	.related-post:last-of-type {
		margin-bottom: 0;
	}
}

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

#comments {
	margin-bottom: 80px;
	max-width: 720px;
	margin: 0 auto 80px;
}

#respond {
	margin-bottom: 80px;
}

	#reply-title {
		font-style: normal;
		font-size: 30px;
		text-align: center;
		margin-bottom: 15px;
	}

#commentform {
	display: grid;
	grid-template-columns: 38.75% 50%;
	grid-template-rows: auto auto auto auto;
	grid-column-gap: 11.25%;
}

	#commentform label {
		margin-bottom: 5px;
	}

	#commentform p {
		margin-bottom: 20px;
	}

	#commentform .comment-form-author {
		grid-column-start: 1;
		grid-row-start: 1;
	}

	#commentform .comment-form-email {
		grid-column-start: 1;
		grid-row-start: 2;
	}

	#commentform .comment-form-url {
		grid-column-start: 1;
		grid-row-start: 3;
		margin-bottom: 10px;
	}

	#commentform .comment-form-comment {
		grid-column-start: 2;
		grid-row-start: 1;
		grid-row-end: span 3;
		margin-bottom: 0;
	}

	#commentform .form-submit {
		grid-column-start: 2;
		text-align: right;
	}

	#commentform textarea {
		height: 242px;
	}

	#commentform input[type="submit"] {
		padding: 0;
		border: none;
		background: none;
		color: #000;
		font: 14px 'IBM Plex Serif', serif;
		font-style: italic;
		letter-spacing: .05em;
		font-weight: 200;
		text-transform: lowercase;
	}

.comments-title {
	text-align: center;
	margin-bottom: 15px;
}

#comments-section ol,
#comments-section ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.comment-list > li {
	padding-bottom: 25px;
	margin-bottom: 25px;
	border-bottom: 1px solid #979797;
}

.comment-list > li:last-of-type {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}
	.comment-list .children li {
		padding-left: 60px;
		margin-top: 25px;
		position: relative;
	}

	.comment-list .children li:before {
		content: '';
		display: block;
		width: 45px;
		height: 1px;
		background: #000;
		position: absolute;
		top: 7px;
		left: 0;
	}

	.comment-author {
		margin-bottom: 15px;
	}

	.comment-meta {
		font-size: 9px;
		text-align: right;
		color: #9B9B9B;
		margin-top: 15px;
	}

	.comment-date {
		margin-right: 10px;
		padding-right: 10px;
		border-right: 1px solid #9B9B9B;
	}

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

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


/*--------------------------------------------------------------
# Archives
--------------------------------------------------------------*/

#archive {
	margin-top: 55px;
}

.archive-header {
	display: table;
	padding: 10px 20px;
	background: #F1F1F1;
}

	.archive-header.no-list {
		display: flex;
		padding: 0;
		background: none;
		align-items: center;
		text-align: center;
		margin-bottom: 35px;
	}

	.archive-header.no-list .archive-title {
		padding: 10px 20px;
		background: #F1F1F1;
	}

	.archive-header.no-list:before,
	.archive-header.no-list:after {
		content: '';
		height: 2px;
		flex-grow: 1;
		background: #F1F1F1;
	}

.post-list {
	padding: 25px 40px 25px 25px;
	border: 3px solid #F1F1F1;
	margin-bottom: 35px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.post-list .featured-image {
	width: 39.130435%; /* 405/1035 */
	margin-bottom: 0;
}

.post-list .entry-summary {
	width: 54.589372%; /* 565/1035 */
}

.post-list .entry-summary .entry-meta,
.post-list .entry-summary .entry-title {
	text-align: left;
}

.post-list .entry-summary .excerpt {
	margin-bottom: 15px;
}

.post-list .em-shop-the-post {
	padding: 0;
	border: none;
}

.post-list .em-shop-title {
	display: none;
}

@media screen and (max-width: 767px) {
	.post-list {
		padding: 25px;
		display: block;
	}
	
	.post-list .featured-image {
		width: 100%;
		margin-bottom: 25px;
	}

	.post-list .entry-summary {
		width: 100%;
	}
}


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

.page-title {
	text-align: center;
	margin-bottom: 25px;
}

.page #content {
	margin-top: 80px;
}

.page-template-template-full-width #content.one-column #primary {
	max-width: none;
}

.page-template-template-full-width #content.one-column #primary .page {
	max-width: 720px;
	margin: 0 auto;
}

.page-template-template-full-width #content.one-column #primary .page.has-post-thumbnail {
	max-width: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.page-template-template-full-width #content.one-column #primary .page.has-post-thumbnail .page-header {
	width: 100%;
}

.page-template-template-full-width #content.one-column #primary .page.has-post-thumbnail .featured-image {
	width: 50%; /* 550/1100 */
}

.page-template-template-full-width #content.one-column #primary .page.has-post-thumbnail .entry-content {
	width: 47.272727%; /* 520/1100 */
}

@media screen and (max-width: 767px) {
	.page-template-template-full-width #content.one-column #primary .page.has-post-thumbnail .featured-image {
		width: 100%; /* 550/1100 */
		margin-bottom: 25px;
	}

	.page-template-template-full-width #content.one-column #primary .page.has-post-thumbnail .entry-content {
		width: 100%; /* 520/1100 */
	}

}

/*--------------------------------------------------------------
# 404 / Not Found
--------------------------------------------------------------*/

.not-found {
	max-width: 580px;
	margin: 80px auto;
	text-align: center;
}

.not-found .search-form {
	margin-top: 20px;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## EmPress Shop the Post
--------------------------------------------------------------*/

.em-shop-the-post {
	padding: 20px;
	border-left: 2px solid #F1F1F1;
	border-right: 2px solid #F1F1F1;
	border-bottom: 2px solid #F1F1F1;
}

.em-shop-title {
	font-size: 16px;
	text-align: center;
}

/*--------------------------------------------------------------
## EmPress Grid
--------------------------------------------------------------*/

.presidio #template-em-grid {
	margin: 80px auto 0;
}

@media screen and (max-width: 1280px) {
	.presidio #template-em-grid {
		width: 100%;
	}
}

/*--------------------------------------------------------------
## EmPress Boutiques
--------------------------------------------------------------*/

.presidio .template-em-boutiques {
	margin: 0 auto;
}

@media screen and (max-width: 1024px) {
	.presidio .template-em-boutiques {
		width: 100%;
	}

}