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

Version: 1.2.1

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

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

Text Domain: miramar

Miramar 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
	## Top Navigation
		### Top Menu
		### Social Menu
		### Search
	## Primary Navigation
	## Mobile Navigation
	## Scroll Navigation
# Footer
	## Footer Widget Area
		### Instagram
	## Footer Menu
# Home
	## Post Feed
	## Post Navigation
	## Featured Posts
	## Shopping Widget
	## Interstitial
# Single Post
	## Post Body
	## Related Posts
	## Comments
# Archives + Search
# 404 / Not Found
# Info Page
# Plugins
	## EmPress Shop the Post
--------------------------------------------------------------*/

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

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

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

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

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

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

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

h1 {
	font: 50px 'Italiana', serif;
	letter-spacing: .025em;
}

h2 {
	font: 40px 'Italiana', serif;
	letter-spacing: .025em;
}

h3 {
	font: 20px 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .1em;
}

h4 {
	font: 12px 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .1em;
}

h5 {
	font: 12px 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: .15em;
}

h6 {
	font: 10px 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: .15em;
}

.entry-title,
.em-fonts-primary {
	font: 50px 'Italiana', serif;
	letter-spacing: .025em;
	margin-bottom: 20px;
}

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

.em-fonts-secondary {
	font: 12px 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: .15em;
}

.em-fonts-tertiary {
	font: 20px 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .1em;
}

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

p {
	margin-bottom: 1.625em;
}

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

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

.wp-caption {
	margin-bottom: 1.5em;
	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: 10px 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: .15em;
	line-height: 2.5em;
	text-align: left;
}

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

.gallery .gallery-item {
	width: 48.823529%; /* 415/850 */
}

.arrow {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 38px;
	height: 2px;
	background: #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;
}

.arrow-left {
	margin-right: 10px;
}

.arrow-left:before {
	content: '';
	display:block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 6px 3px 0;
	border-color: transparent #000000 transparent transparent;
	position: absolute;
	left: -6px;
	top: 50%;
	transform: translateY(-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;
}

.arrow-right {
	margin-left: 10px;
}

.arrow-right:after {
	content: '';
	display:block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #000000;
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-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;
}

@media screen and (max-width: 767px) {
	.entry-title {
		font-size: 35px;
	}

	.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;
}

.post-single .entry-content a,
#info-page .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);
}

.post-single .entry-content a:hover,
#info-page .entry-content a:hover {
	-webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0), 0 6px 0 rgba(0,0,0,1);
	box-shadow: inset 0 0 0 rgba(0,0,0,0), 0 6px 0 rgba(0,0,0,1);
}

.post-single .entry-content .gallery a,
#info-page .entry-content .gallery a,
.post-single .entry-content .gallery a:hover,
#info-page .entry-content .gallery a:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	cursor: pointer;
	border: 2px solid #000;
	background: #000;
	color: #fff;
	font: 12px/1em 'Oswald', sans-serif;
	font-weight: 300;
	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: #fff;
	color: #000;
	border-color: #ebebeb;
}

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: 16px/1.625 'Quattrocento Sans', sans-serif;
	letter-spacing: .025em;
	box-sizing: border-box;
	width: 100%;
	border: none;
	padding: 15px;
	background: #F5F5F5;;
}

select {
	border: 1px solid #ccc;
}

label {
	display: block;
	font: 12px 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: .15em;
	color: #000000;
	margin-bottom: 5px;
}

::-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;
}

/*--------------------------------------------------------------
# Gutenberg
--------------------------------------------------------------*/

p.is-small-text {
    font-size: 80%;
	line-height: 1.5em;
}

p.is-regular-text {
    font-size: inherit;
}

p.is-large-text {
    font-size: 120%;
	line-height: 1.5em;
}

p.is-larger-text {
    font-size: 125%;
	line-height: 1.5em;
}

p.has-drop-cap:not(:focus):first-letter {
    font-size: 525%;
    font-style: normal;
    font-weight: inherit;
    line-height: 80%;
}

.has-small-font-size {
    font-size: 85%;
	line-height: 1.5em;
}

.has-normal-font-size,.has-regular-font-size {
    font-size: inherit;
}

.has-medium-font-size {
    font-size: 125%;
	line-height: 1.5em;
}

.has-large-font-size {
    font-size: 150%;
	line-height: 1.5em;
}

.has-huge-font-size,.has-larger-font-size {
    font-size: 200%;
	line-height: 1.5em;
}

.wp-block-button .wp-block-button__link {
	/* border-radius: 0; */
	font-size: 85%;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.entry-content .wp-block-button a.wp-block-button__link:hover {
	-webkit-box-shadow: none;
    box-shadow: none;
}

.wp-block-pullquote blockquote {
	padding: 0;
	margin: 0;
	border: none;
}

.wp-block-pullquote p,
.wp-block-pullquote.is-style-solid-color blockquote p {
	font-size: 150%;
	line-height: 1.5em;
	text-align: center;
}

.wp-block-pullquote cite {
	display: block;
	text-align: center;
	margin-top: 10px;
}

.wp-block-image {
	position: relative;
}

.wp-block-image figcaption {
	position: absolute;
	padding: 15px;
	background: #fff;
	bottom: 40px;
	right: 0;
	max-width: 140px;
	font-size: 70%;
	text-transform: uppercase;
	letter-spacing: .1em;
	line-height: 2.5em;
	text-align: left;
}

.wp-block-gallery {
	margin-left: 0;
	list-style: none;
}

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

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

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

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

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

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

#masthead {
	margin: 20px auto 50px;	
}

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

.site-title-text {
	font: 80px 'Italiana', serif;
	letter-spacing: .025em;
	text-align: center;
	text-transform: uppercase;
}

.site-description {
	font: 12px 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .1em;
	text-align: center;
	margin-top: 7px;
}

@media screen and (max-width: 767px) {
	.site-title-text {
		font-size: 12vw;
	}
}


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

#top-navigation {
	margin-top: 20px;
	position: relative;
	padding: 5px 25px 5px 0;
}

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

#top-menu li {
	font: 12px 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .1em;
	display: inline-block;
	margin-right: 10px;
}

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

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

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


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

.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: 14px 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';
}

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

.sb-search {
	position: absolute;
	top: 0;
	right: 0;
	width: 0%;
	max-width: 280px;
	min-width: 25px;
	height: 36px;
	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: 36px;
	margin: 0;
	z-index: 10;
	padding: 5px 25px 5px 10px;
	color: #000;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	font: 12px 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.sb-icon-search,
input[type="submit"].sb-search-submit  {
	width: 25px;
	height: 36px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0 0 0 12px;
	margin: 0;
	line-height: 36px !important;
	text-align: center;
	cursor: pointer;
	border: none;
	font-size: 14px !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;
}


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

#site-navigation {
	margin-top: 35px;
	text-align: center;
}

.primary-menu > li {
	display: inline-block;
	margin: 0 20px;
	font: 12px 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: .15em;
	padding: 10px 0;
}

	.primary-menu > li:first-of-type {
		margin-left: 0;
	}

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

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

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

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

.primary-menu > li > .sub-menu:before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #000;
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translateX(-50%);
}

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

		.primary-menu > li > .sub-menu > li > a {
			color: #fff;
		}

		.primary-menu > li > .sub-menu > li > a:hover {
			color: #c5c5c5;
		}

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

.primary-menu > li > .sub-menu > li > .sub-menu:before {
	content: '\f105';
	display: block;
	font-family: FontAwesome;
	font-size: 15px;
	padding: 9px 0;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
}

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

			.primary-menu > li > .sub-menu > li > .sub-menu > li > a {
				color: #fff;
			}

			.primary-menu > li > .sub-menu > li > .sub-menu > li > a:hover {
				color: #c5c5c5;
			}



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


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

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

.slicknav_menu a {
	color: #000;
}

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

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

.slicknav_menu .sub-menu {
	font-size: 12px;
}

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

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

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


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

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

#scroll-navigation .primary-menu > li > a,
#scroll-navigation .social-menu li a {
	color: #fff;
}

#scroll-navigation .primary-menu > li > a:hover,
#scroll-navigation .social-menu li a:hover {
	color: #c5c5c5;
}

#scroll-navigation a:hover {
	color: #c5c5c5;
}

#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-top: 4px;
}

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

#sb-scroll .sb-icon-search:hover,
#sb-scroll.sb-search-open .sb-icon-search:hover,
.no-js #sb-scroll .sb-icon-search:hover {
	color: #c5c5c5;
}


#scroll-navigation .slicknav_menu {
	font-size: 12px;
	padding: 10px 0;
}

#scroll-navigation .slicknav_menu a {
	color: #fff;
}


@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 Widget Area
--------------------------------------------------------------*/

#footer-widget-area {
	padding: 50px 0;
	background: #f1f1f1;
	margin-top: 135px;
	position: relative;
}

#footer-widget-area .widget-title {
	font-size: 60px;
	text-transform: uppercase;
	letter-spacing: .1em;
	line-height: .65em;
	position: absolute;
	top: 0;
	left: 50%;
	width: 90%;
	max-width: 1200px;
	text-align: center;
	transform: translate(-50%,-100%);
}

/*--------------------------------------------------------------
### Instagram
--------------------------------------------------------------*/

#footer-widget-area .instagram-pics {
	display: flex;
	justify-content: space-between;
}

#footer-widget-area .instagram-pics li {
	margin-right: 5px;
}

#footer-widget-area .instagram-pics li:last-of-type {
	margin-right: 0;
}

#footer-widget-area .instagram-pics a,
#footer-widget-area .instagram-pics img {
	display: block;
	position: relative;
}

#footer-widget-area .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;
}

#footer-widget-area .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;
}

#footer-widget-area .instagram-pics a:hover:before,
#footer-widget-area .instagram-pics a:hover:after {
	opacity: 1;
}

#footer-widget-area .null-instagram-feed p {
	text-align: center;
	font: 20px 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-top: 30px;
}

#footer-widget-area .null-instagram-feed p a:hover {
	color: #c5c5c5;
}

@media screen and (max-width: 767px) {
	#footer-widget-area .widget-title {
		font-size: 8vw !important;
	}

	#footer-widget-area .null-instagram-feed p {
		font-size: 12px;
		margin-top: 0;
	}

	#footer-widget-area .instagram-pics {
		flex-wrap: wrap;
	}

	#footer-widget-area .instagram-pics li {
		width: 49.5%;
		margin-right: 0;
		margin-bottom: 5px;
	}

}

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

}

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

#footer-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px auto;
}

#footer-menu li,
.copyright {
	display: inline-block;
	margin: 0 10px;
	font: 12px 'Montserrat', sans-serif;
	line-height: 12px;
	text-transform: uppercase;
	letter-spacing: .15em;
}

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

	#footer-menu li a:hover {
		color: #000;	
	}
	
#empress-credit {
	display: inline-block;
	font-size: 11px;
	line-height: 12px;
	margin-left: 10px;
	color: #c5c5c5;
	margin-top: 3px;
}

#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;
	}

}


/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Post Feed
--------------------------------------------------------------*/

.post-excerpt {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 35px;
}

.post-excerpt .featured-image {
	width: 50%; /* 600/1200 */
}

.post-excerpt .entry-content {
	width: 45.833333%; /* 550/1200 */
}

.post-excerpt .entry-meta {
	font: 12px 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 15px;
}

.post-excerpt .entry-meta .sep {
	font-size: 4px;
	vertical-align: middle;
	margin: 0 15px;
}

.post-excerpt .entry-title {
	font-size: 40px;
	margin-bottom: 10px;
}

.post-excerpt .entry-excerpt {
	margin-bottom: 20px;
}

.post-excerpt .read-more {
	font: 12px 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
	.post-excerpt {
		display: block;
	}
	
	.post-excerpt .featured-image {
		width: 100%;
		max-width: 600px;
		margin: 0 auto 20px;
	}

	.post-excerpt .entry-content {
		width: 100%; /* 550/1200 */
		margin-top: 0;
	}

}

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

.nav-links {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	font: 12px 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.nav-links a {
	padding: 0 6px;
}

.nav-links a:hover {
	color: #c5c5c5;
}

.nav-links .arrow {
	background: #ebebeb;
}

.nav-links .arrow-left:before {
	border-color: transparent #c5c5c5 transparent transparent;
}

.nav-links .arrow-right:after {
	border-color: transparent transparent transparent #c5c5c5;
}


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

#featured-posts {
	margin-bottom: 55px;
}

.featured-post {
	position: relative;
}

.featured-post.post-1 {
	width: 58.333333%; /* 700/1200 */
}

	.featured-post.post-1.full-width {
		width: 100%;
	}

.featured-post.post-2 {
	width: 37.5%; /* 450/1200 */
}

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

.featured-post .entry-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .5);
	padding: 50px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	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;
}

.featured-post:hover .entry-content {
	opacity: 1;
}

	.featured-post .post-category a {
		font: 12px 'Oswald', sans-serif;
		font-weight: 300;
		text-transform: uppercase;
		letter-spacing: .1em;
		margin-bottom: 15px;
		color: #fff;
	}

	.featured-post .entry-title {
		margin-bottom: 15px;
	}

		.featured-post .entry-title a {
			color: #fff;
		}

	.featured-post .button {
		background: #fff;
		color: #000;
		border-color: #fff;
	}

@media screen and (max-width: 767px) {
	.featured-post.post-1 {
		width: 100%;
		margin-bottom: 35px;
	}

	.featured-post.post-2 {
		width: 100%;
	}
	
	.featured-post.post-1.hide-mobile,
	.featured-post.post-2.hide-mobile {
		display: none;
	}
	
	.featured-post .entry-content {
		position: static;
		background: none;
		padding: 0;
		margin-top: 25px;
		text-align: center;
		opacity: 1;
	}
	
	.featured-post .post-category a {
		color: #000;
	}

	.featured-post .entry-title a {
		color: #000;
	}

	.featured-post .button {
		background: #000;
		color: #fff;
		border-color: #000;
	}
}

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

#shopping-widget {
	margin-bottom: 65px;
	border: 2px solid #EBEBEB;
	padding: 35px 20px;
	text-align: center;
	position: relative;
}

#shopping-widget h3 {
	font: 40px 'Italiana', serif;
	letter-spacing: .025em;
	text-transform: lowercase;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 0 20px;
	background: #fff;
	white-space: nowrap;
}

@media screen and (max-width: 767px) {
	
	#shopping-widget.hide-mobile {
		display: none;
	}

}

@media screen and (max-width: 500px) {
	
	#shopping-widget h3 {
		font-size: 8vw;
	}
}

/*--------------------------------------------------------------
## Interstitial
--------------------------------------------------------------*/

#interstitial {
	padding: 50px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	position: relative;
	margin: 100px 0;
}

.interstitial-title {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	white-space: nowrap;
	padding: 0 20px;
	background: #fff;
	font: 60px 'Italiana', serif;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.feature-box {
	position: relative;
	width: 31.6666667%; /* 380/1200 */
}

.feature-box a,
.feature-box img {
	display: block;
}

.feature-box h3 {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	max-width: 200px;
	padding: 16px;
	background: #fff;
	text-align: center;
	transform: translate(-50%,-50%);
	font-size: 12px;
	-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;
}

.feature-box a:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	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;
}

.feature-box a:hover:before {
	opacity: 1;
}

@media screen and (max-width: 767px) {	
	#interstitial.hide-mobile {
		display: none;
	}
	
	.feature-box {
		width: 100%;
		margin-bottom: 25px;
	}
	
	.feature-box:last-of-type {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 500px) {
	.interstitial-title {
		font-size: 10vw;
	}
}

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

#single-post #main {
	padding: 50px 0;
	background: #f5f5f5;
}

#single-post-container {
	max-width: 1100px;
	background: #fff;
}

.post-single {
	padding: 4.5% 11.363636%; /* 50/125/1100 */
	position: relative;
}

.post-single .entry-meta {
	position: absolute;
	top: 20px;
	left: -20px;
	z-index: 2;
	display: flex;
	flex-direction: column;
}

.post-single .entry-meta > span {
	display: block;
	font: 12px/1em 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 10px;
}

.post-single .entry-meta a,
.post-single .entry-meta .posted-on {
	display: block;
	padding: 7px 15px;
	background: #000;
	color: #fff;
	text-align: center;
}

.post-single .entry-meta a:hover {
	background: #c5c5c5;
}

.post-single .entry-title {
	text-align: center;
	width: 90%;
	margin: 0 auto 40px;
}

@media screen and (max-width: 767px) {
	.post-single {
		padding: 4.5%;
	}
	
	.post-single .entry-meta {
		display: none;
	}
}

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

#after-post {
	max-width: 1100px;
	padding-top: 80px;
	position: relative;
}

.comments-jump-link a {
	display: block;
	font: 12px/1em 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .1em;
	padding: 7px 25px;
	background: #000;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
}

.comments-jump-link a:hover {
	background: #c5c5c5;
}

#related-posts {
	padding: 50px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	position: relative;
	margin-bottom: 50px;
}

#related-posts h3 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	white-space: nowrap;
	padding: 0 20px;
	background: #fff;
	font: 40px 'Italiana', serif;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.related-post {
	position: relative;
	width: 31.6666667%; /* 380/1200 */
}

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

.related-post h4 {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	max-width: 200px;
	min-height: 70px;
	padding: 16px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	transform: translate(-50%,-50%);
	font-size: 12px;
	-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;
}

.related-post a:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	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;
}

.related-post a:hover:before {
	opacity: 1;
}

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

@media screen and (max-width: 500px) {
	#related-posts h3 {
		font-size: 8vw;
	}
}

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

#comments {
	max-width: 770px;
	margin: 0 auto 50px;
}

#respond {
	max-width: 440px;
	margin: 0 auto 100px;
	position: relative;
}

	#reply-title {
		font: 40px 'Italiana', serif;
		letter-spacing: .025em;
		text-transform: lowercase;
		text-align: center;
		margin-bottom: 30px;
	}

	#cancel-comment-reply-link {
		position: absolute;
		top: 0;
		right: 0;
		font-size: 14px;
		color: #ebebeb;
	}

	#cancel-comment-reply-link:hover {
		color: #000;
	}

	#commentform .form-submit {
		text-align: center;
	}

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

	.comments-title {
		font: 40px 'Italiana', serif;
		letter-spacing: .025em;
		text-transform: lowercase;
		text-align: center;
		margin-bottom: 30px;
	}

	#comments-section ol.comment-list > li {
		padding: 25px 35px;
		border: 1px solid #c5c5c5;
		margin-bottom: 20px;
	}

		#comments-section ol.comment-list > li:last-of-type {
			margin-bottom: 0;
		}

	#comments-section ul.children {
		margin-left: 40px;
	}

		#comments-section ul.children > li {
			margin-top: 35px;
		}

	.comment-author {
		font: 12px 'Montserrat', sans-serif;
		text-transform: uppercase;
		letter-spacing: .15em;
		margin-bottom: 15px;
	}

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

	.comment-meta {
		font: 12px 'Montserrat', sans-serif;
		text-transform: uppercase;
		letter-spacing: .15em;
		color: #c5c5c5;
	}

		.comment-meta a {
			color: #c5c5c5;
		}

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

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


/*--------------------------------------------------------------
# Archives + Search
--------------------------------------------------------------*/

.archive-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
	font: 12px 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: .15em;
}

.archive-title {
	font: 12px 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: .15em;
	flex-shrink: 0;
	margin-right: 20px;
}

.archive-title .pre {
	font: 12px 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: .15em;
	color: #c5c5c5;
	margin-right: 10px;
}

.archive-header:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #000;
	flex-grow: 1;
}

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

.not-found {
	max-width: 600px;
	margin: 0 auto;
}

.not-found .page-title {
	text-align: center;
	margin-bottom: 20px;
}

.not-found .page-content {
	text-align: center;
	font: 12px 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: .15em;
	line-height: 2em;
}

.not-found .search-form {
	display: flex;
	margin-top: 40px;
}

.not-found .search-text {
	font: 12px 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.not-found .search-submit {
	padding: 15px 20px;
	background: #F5F5F5;
	border-color: #F5F5F5;
	color: #000;
}

.not-found .search-submit:hover {
	background: #000;
	border-color: #000;
	color: #fff;
}

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

#info-page .featured-image {
	width: 50%; /* 600/1200 */
}

#info-page .entry-content.half-width {
	width: 43.75%; /* 525/1200 */
}

#info-page .wrap.text-only {
	max-width: 900px;
}

#info-page .text-only .entry-title {
	text-align: center;
}

@media screen and (max-width: 767px) {
	#info-page .featured-image {
		width: 100%;
		margin-bottom: 1.5em;
	}

	#info-page .entry-content.half-width {
		width: 100%;
	}

}

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

.post-excerpt .em-shop-the-post {
	border: 1px solid #000;
	margin-top: 40px;
}

.post-excerpt .em-shop-title {
	display: table;
	padding: 10px 40px;
	background: #000;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
}

.post-excerpt .em-shop-code {
	padding: 20px;
}

.post-single .em-shop-the-post {
	margin-top: 60px;
}

.post-single .em-shop-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 300;
}

.post-single .em-shop-title:before {
	content: '';
	display: block;
	height: 1px;
	background: #000;
	flex-grow: 1;
	margin-right: 20px;
}

.post-single .em-shop-title:after {
	content: '';
	display: block;
	height: 1px;
	background: #000;
	flex-grow: 1;
	margin-left: 20px;
}