/*
Theme Name: MND WP17
Author: Monica
Author URI: http://monicandesign.com
Description: A responsive, easy to customize WordPress theme for blogs by MonicaNDesign.
Version: 1.0
*/

/*
Table of Contents:
1.0 - Main
2.0 - Structure
3.0 - Menu
4.0 - Header
5.0 - Content
  5.1 - Posts
  5.2 - Entry header
  5.3 - Entry content
  5.4 - Entry footer
  5.5 - Post thumbnail
  5.6 - Post navigation
  5.7 - Comments
  5.8 - Respond
  5.9 - Pages
  5.10 - Archives
  5.11 - 404 Page
6.0 - Sidebar
  6.1 - Widgets
7.0 - Footer
8.0 - Pagination
9.0 - Patterns
10.0 - Responsive
-------------------------------------------------------------- */


/* 1.0 Main
-------------------------------------------------------------- */

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font: 14px/25px 'Lato',sans-serif;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	color: #595959;
	background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
hr,
form {
	margin: 25px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Playfair Display',serif;
}

a {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	text-decoration: none;
	color: #c39f76;
}

a:hover,
a:focus {
	color: #222;
}

img {
	margin: 3px;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	border: 1px solid #ddd;
	box-shadow: 0 0 9px #eee;
}

img:hover {
	opacity: .9;
}

blockquote {
	margin-left: 60px;
	color: #999;
}

blockquote:before {
	font-family: FontAwesome;
	font-size: 20px;
	line-height: 20px;
	float: left;
	margin-top: 10px;
	margin-left: -60px;
	padding: 9px 10px;
	content: '\f10d';
	color: #fff;
	border-radius: 100%;
	background: #c39f76;
}

hr {
	height: 1px;
	color: #ddd;
	border: 0;
	background-color: #ddd;
}

input,
textarea,
select {
	max-width: 100%;
	padding: 7px;
	border: 1px solid #ddd;
	background: #fff;
}

button,
input[type='reset'],
input[type='submit'],
input[type='button'] {
	font-size: 11px;
	font-weight: 700;
	line-height: 17px;
	padding: 7px 20px;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	text-transform: uppercase;
	color: #fff;
	border: 1px solid #c39f76;
	background: #c39f76;
}

button:hover,
input[type='reset']:hover,
input[type='submit']:hover,
input[type='button']:hover,
button:focus,
input[type='reset']:focus,
input[type='submit']:focus,
input[type='button']:focus {
	color: #fff;
	border: 1px solid #222;
	background: #222;
}


/* 2.0 Structure
-------------------------------------------------------------- */

.site-content,
.site-container {
	max-width: 1100px;
	margin: 0 auto;
}


/* 3.0 Menu
-------------------------------------------------------------- */

.site-navigation {
	line-height: 20px;
}

.site-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation li,
.main-navigation,
.social-navigation {
	display: inline-block;
}

.site-navigation a {
	display: inline-block;
	color: #222;
}

.site-navigation a:hover,
.site-navigation a:focus {
	color: #c39f76;
}

.main-navigation {
	float: left;
	text-transform: uppercase;
}

.main-navigation li {
	margin: 0 25px 0 0;
}

.main-navigation a {
	font-size: 11px;
	padding: 15px 0;
	letter-spacing: 1px;
}

.social-navigation {
	float: right;
}

.social-navigation li {
	margin: 0 0 0 10px;
}

.social-navigation a {
	padding: 15px 0 14px 0;
}

.social-navigation a:before {
	font-family: FontAwesome;
	content: '\f1e0';
}

.social-navigation a[href*='facebook.com']:before {
	content: '\f09a';
}

.social-navigation a[href*='plus.google.com']:before {
	content: '\f0d5';
}

.social-navigation a[href*='instagram.com']:before {
	content: '\f16d';
}

.social-navigation a[href*='tumblr.com']:before {
	content: '\f173';
}

.social-navigation a[href*='twitter.com']:before {
	content: '\f099';
}

.social-navigation a[href*='youtube.com']:before {
	content: '\f16a';
}

.social-navigation a[href*='mailto:']:before,
.social-navigation a[href$='/contact/']:before {
	content: '\f0e0';
}

.social-navigation a[href$='/feed/']:before {
	content: '\f09e';
}


/* 4.0 Header
-------------------------------------------------------------- */

.site-header {
	height: 430px;
	margin: 0 0 35px 0;
	background: url(images/header.jpg) no-repeat center;
}

.site-branding {
	text-align: center;
	text-transform: uppercase;
}

.site-branding .site-container {
	padding: 33px 0;
	border-bottom: 1px solid #eee;
}

.site-title {
	font: 400 37px/38px 'Playfair Display',serif;
	margin: 5px 0;
	letter-spacing: 4px;
	color: #000;
}

.site-title span {
	color: #c39f76;
}

.site-tagline {
	font-size: 11px;
	margin: 5px 0;
	letter-spacing: 2px;
	color: #aaa;
}


/* 5.0 Content
-------------------------------------------------------------- */

.content-area {
	float: left;
	width: 750px;
}


/* 5.1 Posts
-------------------------------------------------------------- */

.post {
	position: relative;
	margin: 0 0 50px 0;
}

.sticky-post {
	position: absolute;
	top: 0;
	right: 0;
	padding: 5px 8px;
	color: #fff;
	background: #222;
}


/* 5.2 Entry header
-------------------------------------------------------------- */

.entry-header {
	margin: 0 0 25px 0;
	text-align: center;
}

.entry-header:after {
	display: block;
	width: 70px;
	height: 1px;
	margin: 15px auto 25px auto;
	content: '';
	background: #eee;
}

.entry-cats {
	font-size: 10px;
	line-height: 17px;
	margin: 0 0 9px 0;
	text-transform: uppercase;
}

.entry-cats a,
.entry-cats a:hover,
.entry-cats a:focus {
	display: inline-block;
	margin: 0 3px;
	letter-spacing: 1px;
	color: #c39f76;
	border-bottom: 1px solid #c39f76;
}

.entry-title {
	font-size: 29px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
	color: #222;
}

.entry-title a {
	color: #222;
}

.entry-title a:hover,
.entry-title a:focus {
	color: #595959;
}


/* 5.3 Entry content
-------------------------------------------------------------- */

.entry-content {
	margin: 25px 0;
}

.more-link {
	font-size: 10px;
	display: table;
	margin: 25px auto;
	padding: 3px 24px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #aaa;
	border: 1px solid #eee;
}

.more-link:after {
	font-family: FontAwesome;
	font-weight: 400;
	display: inline-block;
	margin: 0 0 0 5px;
	content: '\f178';
}

.more-link:hover,
.more-link:focus {
	color: #fff;
	border: 1px solid #c39f76;
	background: #c39f76;
}


/* 5.4 Entry footer
-------------------------------------------------------------- */

.entry-meta {
	font-size: 13px;
	margin: 25px 0 0 0;
	padding: 0 0 10px 0;
	color: #aaa;
	border-bottom: 1px solid #eee;
}

.entry-meta a {
	color: #aaa;
}

.entry-meta a:hover,
.entry-meta a:focus {
	color: #595959;
}

.posted-on,
.byline,
.comments-link,
.edit-link {
	float: left;
}

.posted-on:before,
.byline:before,
.comments-link:before,
.edit-link:before {
	font-family: FontAwesome;
	font-size: 11px;
	margin: 0 4px 0 0;
	color: #c39f76;
}

.byline:before,
.comments-link:before,
.edit-link:before {
	margin: 0 4px 0 15px;
}

.posted-on:before {
	content: '\f017';
}

.byline:before {
	content: '\f007';
}

.comments-link:before {
	content: '\f0e5';
}

.edit-link:before {
	content: '\f040';
}

.updated:not(.published) {
	display: none;
}

.single .post {
	margin: 0 0 25px 0;
}

.tags-links {
	font-size: 10px;
	line-height: 11px;
	margin: 25px 0;
	text-transform: uppercase;
}

.tags-links a {
	display: inline-block;
	margin: 0 1px 3px 0;
	padding: 5px 8px;
	color: #595959;
	background: #f2f2f2;
}

.tags-links a:hover,
.tags-links a:focus {
	color: #fff;
	background: #aaa;
}


/* 5.5 Post thumbnail
-------------------------------------------------------------- */

.post-thumbnail {
	display: block;
	overflow: hidden;
	width: auto;
	height: auto;
	max-height: 300px;
	margin: 0 0 25px 0;
}

.post-thumbnail img {
	width: 100%;
	margin: 0;
	padding: 0;
	opacity: 1;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
}

.post-thumbnail img:hover {
	opacity: .75;
}


/* 5.6 Post navigation
-------------------------------------------------------------- */

.post-navigation {
	line-height: 23px;
	margin: 25px 0;
	padding: 0 0 2px 0;
}

.post-navigation .meta-nav {
	font-size: 11px;
	font-weight: 700;
	line-height: 25px;
	display: block;
	text-transform: uppercase;
	color: #222;
}

.post-navigation .nav-previous .meta-nav:before,
.post-navigation .nav-next .meta-nav:after {
	font-family: FontAwesome;
	font-size: 9px;
	font-weight: 400;
}

.post-navigation .nav-previous .meta-nav:before {
	margin: 0 4px 0 0;
	content: '\f053';
}

.post-navigation .nav-next .meta-nav:after {
	margin: 0 0 0 4px;
	content: '\f054';
}


/* 5.7 Comments
-------------------------------------------------------------- */

.comments-area {
	margin: 50px 0 25px 0;
}

.comments-title {
	font-size: 19px;
	font-weight: 400;
	margin: 50px 0 25px 0;
	text-align: center;
	text-transform: uppercase;
	color: #222;
}

.comment-list {
	margin: 25px 0;
	padding: 0;
	list-style: none;
}

.comment,
.comment-content,
.comment-meta {
	margin: 25px 0;
}

.comment-body {
	border-bottom: 1px solid #eee;
}

.comment-author .avatar {
	float: left;
	margin: 5px 10px 0 0;
	border: 0;
	border-radius: 100%;
	box-shadow: none;
}

.comment-author .fn {
	font-weight: 700;
	color: #222;
}

.bypostauthor .comment-author .fn:after {
	font-family: FontAwesome;
	font-size: 10px;
	font-weight: 400;
	display: inline-block;
	padding: 0 5px;
	content: '\f007';
	color: #c39f76;
}

.comment-metadata {
	font-size: 11px;
	line-height: 17px;
	text-transform: uppercase;
	color: #aaa;
}

.comment-metadata a,
.comment-metadata a:hover,
.comment-metadata a:focus {
	color: #aaa;
}

.comment-metadata .edit-link {
	float: none;
	margin: 0 0 0 -5px;
}

.comment-list .reply {
	font-size: 11px;
	margin: 25px 0 0 0;
	text-transform: uppercase;
}

.comment-list .reply a {
	padding: 0 0 5px 0;
}

.comment-list .reply a:before {
	font-family: FontAwesome;
	font-size: 9px;
	margin: 0 5px 0 0;
	content: '\f112';
}

.comment-list .children {
	margin: 25px 0;
	padding: 0 0 0 20px;
	list-style: none;
	border-left: 1px solid #f2f2f2;
}

.comment-navigation {
	margin: 25px 0;
}

.comment-navigation .nav-previous a:before {
	margin: 0 4px 0 0;
	content: '\2190';
}

.comment-navigation .nav-next a:after {
	margin: 0 0 0 4px;
	content: '\2192';
}


/* 5.8 Respond
-------------------------------------------------------------- */

.comment-respond {
	margin: 50px 0 25px 0;
}

.comment-reply-title {
	font-size: 19px;
	font-weight: 400;
	margin: 50px 0 25px 0;
	text-align: center;
	text-transform: uppercase;
	color: #222;
}

.comment-form label {
	line-height: 1;
	display: block;
	padding: 0 0 5px 0;
}

.comment-form input[type='text'],
.comment-form input[type='email'],
.comment-form input[type='url'] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
}

.comment-form textarea {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 80%;
}


/* 5.9 Pages
-------------------------------------------------------------- */

.page .edit-link {
	margin: 0 0 25px 0;
}

.page .edit-link a {
	color: #aaa;
}

.page .edit-link a:hover,
.page .edit-link a:focus {
	color: #595959;
}

.page .edit-link:before {
	margin: 0 4px 0 0;
	padding: 0;
}


/* 5.10 Archives
-------------------------------------------------------------- */

.page-title {
	font-family: 'Lato',sans-serif;
	font-size: 11px;
	font-weight: 700;
	margin: 0 0 25px 0;
	text-transform: uppercase;
	color: #222;
}

.search-results .page .entry-summary {
	margin-bottom: 50px;
	border-bottom: 1px solid #eee;
}


/* 5.11 404 Page
-------------------------------------------------------------- */

.page-content {
	margin: 25px 0;
}

.not-found input[type='search'] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
	padding: 10px;
}


/* 6.0 Sidebar
-------------------------------------------------------------- */

.widget-area {
	font-size: 13px;
	line-height: 20px;
	float: right;
	width: 310px;
}

.widget-area h1,
.widget-area h2,
.widget-area h3,
.widget-area h4,
.widget-area h5,
.widget-area h6,
.widget-area p,
.widget-area blockquote,
.widget-area hr,
.widget-area form {
	margin: 20px 0;
}

.widget-area blockquote {
	margin-left: 35px;
}

.widget-area blockquote:before {
	font-size: 10px;
	line-height: 11px;
	margin-top: 5px;
	margin-left: -35px;
	padding: 6px 7px;
}

.widget-area ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget-area li {
	padding: 7px 0;
	border-bottom: 1px solid #f2f2f2;
}

.widget-area button,
.widget-area input[type='reset'],
.widget-area input[type='submit'],
.widget-area input[type='button'] {
	line-height: 16px;
}

.widget-area input[type='search'] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	padding: 10px;
}


/* 6.1 Widgets
-------------------------------------------------------------- */

.widget {
	margin: 0 0 40px 0;
}

.widget-area .widget-title {
	font-size: 15px;
	font-weight: 400;
	margin: 0 0 20px 0;
	text-align: center;
	text-transform: uppercase;
	color: #222;
}

.widget-area .widget-title:after {
	display: block;
	width: 35px;
	height: 2px;
	margin: 7px auto 0 auto;
	content: '';
	background: #c39f76;
}

.textwidget {
	margin: 20px 0 40px 0;
}


/* 7.0 Footer
-------------------------------------------------------------- */

.site-footer {
	padding: 20px 0;
}

.site-info {
	font-family: 'Playfair Display',serif;
	text-transform: uppercase;
	color: #222;
}

.site-disclaimer {
	margin: 10px 0 0 0;
	padding: 10px 0 0 0;
	border-top: 1px solid #eee;
}


/* 8.0 Pagination
-------------------------------------------------------------- */

.posts-pagination {
	margin: 25px 0 20px 0;
}

.page-numbers {
	float: left;
	margin: 0 5px 5px 0;
	padding: 10px;
	color: #595959;
	border: 1px solid #ddd;
}

.posts-pagination a:hover,
.posts-pagination a:focus {
	color: #fff;
	border: 1px solid #222;
	background: #222;
}

.posts-pagination .next:after {
	content: '\003e';
}

.posts-pagination .prev:before {
	content: '\003c';
}


/* 9.0 Patterns
-------------------------------------------------------------- */

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

embed,
iframe,
object,
video {
	max-width: 100%;
	vertical-align: middle;
}

.wp-smiley,
.wp-smiley:hover,
.widget-area .wp-smiley,
.widget-area .wp-smiley:hover {
	margin: 0;
	padding: 0;
	opacity: 1;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
}

.site-content:before,
.site-content:after,
.nav-links:before,
.nav-links:after,
.site-navigation:before,
.site-navigation:after,
.entry-meta:before,
.entry-meta:after,
.hentry:before,
.hentry:after {
	display: table;
	content: '';
}

.site-content:after,
.nav-links:after,
.site-navigation:after,
.entry-meta:after,
.hentry:after {
	clear: both;
}

.nav-next {
	display: inline-block;
	float: right;
	width: 49.5%;
	text-align: right;
	vertical-align: top;
}

.nav-previous {
	display: inline-block;
	float: left;
	width: 49.5%;
	vertical-align: top;
}

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.wp-caption {
	max-width: 100%;
	padding: 5px 0;
	text-align: center;
	border: 1px solid #ccc;
	background: #fff;
}

.widget-area .wp-caption {
	padding: 5px;
	border: 0;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img,
.widget-area .wp-caption img {
	margin: 0;
	padding: 0;
	opacity: 1;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
}

.wp-caption p.wp-caption-text,
.widget-area .wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
	color: #595959;
}

.gallery-caption {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0;
}

.sticky,
.bypostauthor {
	display: block;
}

.says,
.screen-reader-text {
	position: absolute !important;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	font-size: 14px;
	font-size: .875rem;
	font-weight: bold;
	line-height: normal;
	z-index: 100000;
	top: 5px;
	left: 5px;
	display: block;
	clip: auto !important;
	width: auto;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	color: #21759b;
	border-radius: 3px;
	background-color: #f1f1f1;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
}


/* 10.0 Responsive
-------------------------------------------------------------- */

@-webkit-viewport {
	width: device-width;
}

@-moz-viewport {
	width: device-width;
}

@-ms-viewport {
	width: device-width;
}

@-o-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}

.show-menu,
.main-navigation input[type=checkbox] {
	display: none;
}

.main-navigation input[type=checkbox]:checked ~ .rpv-menu {
	display: block;
}

@media (max-width: 954px) {
	.site-content,
    .site-container {
		padding: 0 3%;
	}

	.show-menu {
		font-size: 14px;
		display: block;
		padding: 10px 3%;
		color: #222;
	}

	.show-menu:before {
		font-family: FontAwesome;
		margin: 0 5px 0 0;
		content: '\f0c9';
	}

	.site-navigation {
		line-height: 25px;
		margin: 0 0 50px 0;
		border-bottom: 1px solid #eee;
	}

	.site-navigation .site-container,
    .site-navigation a {
		padding: 0;
	}

	.main-navigation {
		display: block;
		float: none;
	}

	.main-navigation a {
		display: block;
	}

	.main-navigation ul,
    .main-navigation a:after,
    .social-navigation {
		display: none;
	}

	.main-navigation ul li,
    .main-navigation li a {
		width: 100%;
	}

	.main-navigation li {
		margin: 0;
		padding: 7px 3%;
		border-top: 1px solid #eee;
	}

	.main-navigation a:after,
    .main-navigation a:hover:after,
    .main-navigation a:before,
    .main-navigation a:hover:before {
		display: none;
	}

	.site-header {
		display: none;
	}

	.site-branding .site-container {
		padding: 20px 3%;
		border-bottom: 1px solid #eee;
	}

	.site-tagline {
		line-height: 17px;
		padding: 4px 0;
	}

	.content-area,
    .widget-area {
		float: none;
		width: auto;
	}

	.widget-area {
		padding-top: 20px;
	}
}

@media (max-width: 739px) {
	blockquote,
    .widget-area blockquote {
		margin-left: 0;
		padding-left: 4%;
		border-left: 1px solid #ddd;
	}

	blockquote:before,
    .widget-area blockquote:before {
		display: none;
	}

	.site-title,
    .site-tagline {
		letter-spacing: 0;
	}

	.nav-next,
    .nav-previous {
		display: block;
		float: none;
		width: 100%;
		text-align: left;
		vertical-align: top;
	}

	.comment-list .children {
		padding: 0 0 0 3%;
	}

	.comment-form input[type='text'],
    .comment-form input[type='email'],
    .comment-form input[type='url'],
    .comment-form textarea,
    .not-found input[type='search'] {
		width: 100%;
	}
}

@media (max-width: 1119px) and (min-width: 955px) {
	.site-content,
    .site-container {
		margin: 0 10px;
	}

	.content-area {
		width: 68.2%;
	}

	.widget-area {
		width: 28%;
	}
}