/*--------------------------------------------------------------

>>> TABLE OF CONTENTS:

----------------------------------------------------------------

1.0 - Normalize

2.0 - Typography

3.0 - Elements

4.0 - Forms

5.0 - Accessibility

6.0 - Alignments

7.0 - Clearings

8.0 - Layout Structure

9.0 - Header

10.0 - Navigation

	10.1 - Main Navigation

	10.2 - Social Icon Menu

11.0 - Widgets

	11.1 - Default Widgets

	11.2 - Magazine Posts Widgets

12.0 - Posts and pages

11.0 - Comments

12.0 - Footer

13.0 - Media

	13.1 - Captions

	13.2 - Galleries

14.0 - Media Queries

	14.1 - Desktop Large ( < 1120px )

	14.2 - Desktop Medium ( < 1040px )

	14.3 - Desktop Small ( < 960px )

	14.4 - Tablet Large ( < 880px )

	14.5 - Tablet Medium ( < 800px )

	14.6 - Tablet Small ( < 720px )

	14.7 - Mobile Extra Large ( < 640px )

	14.8 - Mobile Large ( < 560px )

	14.9 - Mobile Medium ( < 480px )

	14.10 - Mobile Small ( < 320px )

15.0 - Media Query Fixes

--------------------------------------------------------------*/





/*--------------------------------------------------------------

# 1.0 - Normalize

--------------------------------------------------------------*/



html {

	font-family: sans-serif;

	-webkit-text-size-adjust: 100%;

	-ms-text-size-adjust: 100%;

}



body {

	margin: 0;

}



article,

aside,

details,

figcaption,

figure,

footer,

header,

main,

menu,

nav,

section,

summary {

	display: block;

}



audio,

canvas,

progress,

video {

	display: inline-block;

	vertical-align: baseline;

}



audio:not([controls]) {

	display: none;

	height: 0;

}



[hidden],

template {

	display: none;

}



a {

	background-color: transparent;

}



a:active,

a:hover {

	outline: 0;

}



abbr[title] {

	border-bottom: 1px dotted;

}



b,

strong {

	font-weight: bold;

}



dfn {

	font-style: italic;

}



h1 {

	font-size: 2em;

	margin: 0.67em 0;

}



mark {

	background: #ff0;

	color: #000;

}



small {

	font-size: 80%;

}



sub,

sup {

	font-size: 75%;

	line-height: 0;

	position: relative;

	vertical-align: baseline;

}



sup {

	top: -0.5em;

}



sub {

	bottom: -0.25em;

}



img {

	border: 0;

}



svg:not(:root) {

	overflow: hidden;

}



figure {

	margin: 1em 0;

}



hr {

	box-sizing: content-box;

	height: 0;

}



pre {

	overflow: auto;

}



code,

kbd,

pre,

samp {

	font-family: monospace, monospace;

	font-size: 1em;

}



button,

input,

optgroup,

select,

textarea {

	color: inherit;

	font: inherit;

	margin: 0;

}



button {

	overflow: visible;

}



button,

select {

	text-transform: none;

}



button,

html input[type="button"],

input[type="reset"],

input[type="submit"] {

	-webkit-appearance: button;

	cursor: pointer;

}



button[disabled],

html input[disabled] {

	cursor: default;

}



button::-moz-focus-inner,

input::-moz-focus-inner {

	border: 0;

	padding: 0;

}



input {

	line-height: normal;

}



input[type="checkbox"],

input[type="radio"] {

	box-sizing: border-box;

	padding: 0;

}



input[type="number"]::-webkit-inner-spin-button,

input[type="number"]::-webkit-outer-spin-button {

	height: auto;

}



input[type="search"] {

	-webkit-appearance: textfield;

	box-sizing: content-box;

}



input[type="search"]::-webkit-search-cancel-button,

input[type="search"]::-webkit-search-decoration {

	-webkit-appearance: none;

}



fieldset {

	border: 1px solid #c0c0c0;

	margin: 0 2px;

	padding: 0.35em 0.625em 0.75em;

}



legend {

	border: 0;

	padding: 0;

}



textarea {

	overflow: auto;

}



optgroup {

	font-weight: bold;

}



table {

	border-collapse: collapse;

	border-spacing: 0;

}



td,

th {

	padding: 0;

}





/*--------------------------------------------------------------

# 2.0 - Typography

--------------------------------------------------------------*/



body,

button,

input,

select,

textarea {

	color: #303030;

	font-family: 'Open Sans', Tahoma, Arial;

	font-size: 16px;

	font-size: 1rem;

	/*

	line-height: 1.75;

	*/

}



h1,

h2,

h3,

h4,

h5,

h6 {

	clear: both;

}



p {

	margin-bottom: 1.5em;

}



dfn,

cite,

em,

i {

	font-style: italic;

}



blockquote {

	margin: 0 1.5em;

}



address {

	margin: 0 0 1.5em;

}



pre {

	background: #fff;

	border: 1px solid #ddd;

	font-family: "Courier 10 Pitch", Courier, monospace;

	font-size: 15px;

	font-size: 0.9375rem;

	line-height: 1.6;

	margin-bottom: 1.6em;

	max-width: 100%;

	overflow: auto;

	padding: 1.6em;

}



code,

kbd,

tt,

var {

	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;

	font-size: 15px;

	font-size: 0.9375rem;

}



abbr,

acronym {

	border-bottom: 1px dotted #666;

	cursor: help;

}



mark,

ins {

	text-decoration: none;

}



big {

	font-size: 125%;

}





/*--------------------------------------------------------------

# 3.0 - Elements

--------------------------------------------------------------*/



html {

	box-sizing: border-box;

}



*,

*:before,

*:after {

	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */

	box-sizing: inherit;

}



body {

	background: #404040;

	/* Fallback for when there is no custom background color defined. */

}



blockquote:before,

blockquote:after,

q:before,

q:after {

	content: "";

}



blockquote,

q {

	quotes: none;

}



blockquote {

	margin: 0 0 1.5em;

	border-left: 2px solid #ddd;

	padding-left: 1.5em;

	font-size: 19px;

	font-size: 1.1875rem;

	font-style: italic;

	color: #777;

}



blockquote cite,

blockquote small {

	margin-top: 1em;

	display: block;

	font-size: 16px;

	font-size: 1rem;

	line-height: 1.75;

	color: #404040;

}



blockquote cite:before,

blockquote small:before {

	content: "\2014\00a0";

}



blockquote em,

blockquote i,

blockquote cite {

	font-style: normal;

}



blockquote> :last-child {

	margin-bottom: 0.5em;

}



hr {

	background-color: #ccc;

	border: 0;

	height: 1px;

	margin-bottom: 1.5em;

}



ul,

ol {

	margin: 0 0 1.5em 1.5em;

	padding: 0;

}



ul {

	list-style: disc;

}



ol {

	list-style: decimal;

}



li>ul,

li>ol {

	margin-bottom: 0;

	margin-left: 1.5em;

}



dt {

	font-weight: bold;

}



dd {

	margin: 0 0 1.5em;

}



img {

	height: auto;

	/* Make sure images are scaled correctly. */

	max-width: 100%;

	/* Adhere to container width. */

}



table {

	margin: 0 0 1.5em;

	border: none;

	table-layout: fixed;

	width: 100%;

}



th,

td {

	border: 1px solid #ddd;

	padding: 0.3em 0.6em;

}



a {

	color: #ee4444;

	text-decoration: underline;

}



a:link,

a:visited {

	color: #ee4444;

}



a:hover,

a:focus,

a:active {

	color: #303030;

	text-decoration: none;

}



a:focus {

	outline: thin dotted;

}



a:hover,

a:active {

	outline: 0;

}





/*--------------------------------------------------------------

# 4.0 - Forms

--------------------------------------------------------------*/



button,

input[type="button"],

input[type="reset"],

input[type="submit"] {

	margin: 0;

	padding: 0.6em 1em;

	font-family: 'Montserrat', Tahoma, Arial;

	font-size: 15px;

	font-size: 0.9375rem;

	font-weight: bold;

	text-transform: uppercase;

	color: #fff;

	background: #ee4444;

	border: none;

	text-decoration: none;

	-webkit-transition: all 0.2s ease;

	transition: all 0.2s ease;

}



button:hover,

input[type="button"]:hover,

input[type="reset"]:hover,

input[type="submit"]:hover,

button:focus,

input[type="button"]:focus,

input[type="reset"]:focus,

input[type="submit"]:focus,

button:active,

input[type="button"]:active,

input[type="reset"]:active,

input[type="submit"]:active {

	background: #303030;

}



input[type="text"],

input[type="email"],

input[type="url"],

input[type="password"],

input[type="search"],

textarea {

	max-width: 100%;

	padding: 0.3em 0.6em;

	color: #666;

	border: 1px solid #ddd;

}



input[type="text"]:focus,

input[type="email"]:focus,

input[type="url"]:focus,

input[type="password"]:focus,

input[type="search"]:focus,

textarea:focus {

	color: #111;

	border: 1px solid #ccc;

}



textarea {

	width: 100%;

}





/*--------------------------------------------------------------

# 5.0 - Accessibility

--------------------------------------------------------------*/





/* Text meant only for screen readers. */



.screen-reader-text {

	clip: rect(1px, 1px, 1px, 1px);

	position: absolute !important;

	height: 1px;

	width: 1px;

	overflow: hidden;

}



.screen-reader-text:hover,

.screen-reader-text:active,

.screen-reader-text:focus {

	background-color: #f1f1f1;

	border-radius: 3px;

	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);

	clip: auto !important;

	color: #21759b;

	display: block;

	font-size: 14px;

	font-size: 0.875rem;

	font-weight: bold;

	height: auto;

	left: 5px;

	line-height: normal;

	padding: 15px 23px 14px;

	text-decoration: none;

	top: 5px;

	width: auto;

	z-index: 100000;

	/* Above WP toolbar. */

}





/*--------------------------------------------------------------

# 6.0 - Alignments

--------------------------------------------------------------*/



.alignleft {

	display: inline;

	float: left;

	margin-right: 1.5em;

}



.alignright {

	display: inline;

	float: right;

	margin-left: 1.5em;

}



.aligncenter {

	clear: both;

	display: block;

	margin-left: auto;

	margin-right: auto;

}





/*--------------------------------------------------------------

# 7.0 - Clearings

--------------------------------------------------------------*/



.clearfix:before,

.clearfix:after,

.post-navigation .nav-links:before,

.post-navigation .nav-links:after,

.comment-navigation:before,

.comment-navigation:after {

	content: "";

	display: table;

}



.clearfix:after,

.post-navigation .nav-links:after,

.comment-navigation:after {

	clear: both;

}



.clearfix.footer-content {

	text-align: center;

}





/*--------------------------------------------------------------

# 8.0 - Layout Structure

--------------------------------------------------------------*/



.container {

	/*

	max-width: 1440px;

	*/

	width: 100%;

	margin: 0 auto;

	padding: 0 2em;

}



.site-content {

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;

	-ms-flex-flow: row wrap;

	flex-flow: row wrap;

	margin-top: -3.5rem;

}



.content-area {

	-webkit-box-ordinal-group: 3;

	-ms-flex-order: 2;

	order: 2;

	width: 55%;

	background: #fff;

	/*

	border-left: 1px solid #eee;

	border-right: 1px solid #eee;

	*/

	padding: 0 2em;

	box-sizing: border-box;

}



.main-sidebar {

	width: 25%;

	-webkit-box-ordinal-group: 2;

	-ms-flex-order: 1;

	order: 1;

	background: #f5f5f5;

}



.small-sidebar {

	width: 20%;

	-webkit-box-ordinal-group: 4;

	-ms-flex-order: 3;

	order: 3;

	background: #f5f5f5;

}



.sidebar-toggle {

	display: none;

}





/*--------------------------------------------------------------

# 9.0 - Header

--------------------------------------------------------------*/



.site-header {

	background: #404040;

	padding-bottom: 3.5rem;

}



.header-main {

	padding: 2.5em 2em;

}



.site-branding {

	float: left;

	max-width: 100%;

	margin: 0;

	padding: 0;

}



.site-branding a:link,

.site-branding a:visited,

.site-branding a:hover {

	text-decoration: none;

	padding: 0;

	border: none;

}



.site-title {

	display: inline-block;

	margin: 0;

	padding: 0;

	color: #fff;

	/*

	font-family: 'Montserrat', sans-serif;

	*/

	font-size: 40px;

	font-size: 2.5rem;

	font-weight: bold;

	text-decoration: none;

}



.site-title a:link,

.site-title a:visited {

	color: #fff;

	-webkit-transition: all 0.2s ease;

	transition: all 0.2s ease;

}



.site-title a:hover,

.site-title a:active {

	color: #e44;

}



.site-branding .custom-logo {

	margin: 0.25em 1em 0.25em 0;

	padding: 0;

	border: none;

	vertical-align: top;

	max-width: 100%;

	height: auto;

}



.site-description {

	float: right;

	display: inline-block;

	margin: 0.75em 0 0 1em;

	font-size: 22px;

	font-size: 1.375rem;

	color: #fff;

}





/*--------------------------------------------------------------

# 10.0 - Navigation

--------------------------------------------------------------*/





/*--------------------------------------------------------------

## 10.1 - Main Navigation

--------------------------------------------------------------*/



.header-bar-wrap {

	background: #404040;

	border-bottom: 1px solid rgba(255, 255, 255, 0.2);

}



.main-navigation-toggle {

	display: none;

}



.main-navigation-menu {

	display: inline;

	margin: 0;

	padding: 0;

	list-style-type: none;

	list-style-position: outside;

	position: relative;

}



.main-navigation-menu li {

	float: left;

	position: relative;

}



.main-navigation-menu a {

	display: block;

	font-family: 'Montserrat', Tahoma, Arial;

	font-size: 14px;

	font-size: 0.875rem;

	font-weight: bold;

	padding: 1em 1.5em;

	text-transform: uppercase;

	text-decoration: none;

	-webkit-transition: all 0.2s ease;

	transition: all 0.2s ease;

}



.main-navigation-menu>.menu-item-has-children>a:after {

	display: inline-block;

	margin: 0.2em 0 0 0.2em;

	font-size: 16px;

	line-height: 1;

	font-family: 'Genericons';

	-webkit-font-smoothing: antialiased;

	-moz-osx-font-smoothing: grayscale;

	text-decoration: inherit;

	vertical-align: top;

	content: '\f431';

	color: #fff;

}



.main-navigation-menu a:link,

.main-navigation-menu a:visited {

	color: #fff;

	text-decoration: none;

}



.main-navigation-menu a:hover {

	background: rgba(0, 0, 0, 0.2);

}



.main-navigation-menu ul {

	position: absolute;

	display: none;

	z-index: 99;

	margin: 0;

	padding: 0;

	list-style-type: none;

	list-style-position: outside;

	background: #404040;

	text-align: left;

	border-top: 1px solid rgba(255, 255, 255, 0.2);

}



.main-navigation-menu ul li {

	display: block;

	margin: 0;

}



.main-navigation-menu ul a {

	width: 250px;

	width: 16rem;

	padding: 0.75em 1em;

	float: left;

	font-size: 13px;

	font-size: 0.8125rem;

	background: rgba(0, 0, 0, 0.2);

	border-bottom: 1px solid rgba(255, 255, 255, 0.1);

	-webkit-transition: none;

	transition: none;

}



.main-navigation-menu ul li:last-child a {

	border-bottom: none;

}



.main-navigation-menu ul a:hover {

	background: rgba(0, 0, 0, 0.05);

}



.main-navigation-menu ul .menu-item-has-children>a:after {

	display: inline-block;

	margin: 0.4em 0 0 0.2em;

	font-size: 14px;

	line-height: 1;

	font-family: 'Genericons';

	-webkit-font-smoothing: antialiased;

	-moz-osx-font-smoothing: grayscale;

	text-decoration: inherit;

	vertical-align: top;

	content: '\f431';

	color: #fff;

	-webkit-transform: rotate(270deg);

	-moz-transform: rotate(270deg);

	-o-transform: rotate(270deg);

	-ms-transform: rotate(270deg);

}



.main-navigation-menu li ul ul {

	margin-left: 250px;

	margin-left: 16rem;

	margin-top: -1px;

	border-left: 1px solid rgba(255, 255, 255, 0.1);

}



.main-navigation-menu li:hover ul ul,

.main-navigation-menu li:hover ul ul ul,

.main-navigation-menu li:hover ul ul ul ul {

	display: none;

}



.main-navigation-menu li:hover ul,

.main-navigation-menu li li:hover ul,

.main-navigation-menu li li li:hover ul,

.main-navigation-menu li li li li:hover ul {

	display: block;

}



.main-navigation-menu li.current-menu-item>a {

	text-decoration: underline;

}





/*--------------------------------------------------------------

## 10.2 - Sidebar Navigation

--------------------------------------------------------------*/



.secondary-navigation-wrap {

	margin: -1em 0 2em;

}



.sidebar-navigation-menu {

	margin: 0;

	padding: 0;

	list-style: none;

}



.sidebar-navigation-menu li {

	margin: 0;

	padding: 0;

}



.sidebar-navigation-menu a {

	display: block;

	font-family: 'Montserrat', Tahoma, Arial;

	font-size: 14px;

	font-size: 0.875rem;

	font-weight: bold;

	text-transform: uppercase;

	text-decoration: none;

	padding: 1em 1.5em;

	border-bottom: 1px solid #e5e5e5;

}



.sidebar-navigation-menu a:link,

.sidebar-navigation-menu a:visited {

	color: #303030;

}



.sidebar-navigation-menu a:hover,

.sidebar-navigation-menu a:active {

	background: #fff;

}



.sidebar-navigation-menu ul {

	display: inline-block;

	margin: 0;

	padding: 0;

	list-style: none;

	width: 100%;

}



.sidebar-navigation-menu ul a {

	display: block;

	padding-left: 3em;

	font-size: 13px;

	font-size: 0.8125rem;

}



.sidebar-navigation-menu ul a:before {

	margin: 0.1em 0.3em 0 0;

	font-size: 18px;

}



.sidebar-navigation-menu ul li ul a {

	padding-left: 4.5em;

}



.sidebar-navigation-menu ul li ul li ul a {

	padding-left: 6em;

}



.sidebar-navigation-menu ul li ul li ul li ul a {

	padding-left: 7.5em;

}



.sidebar-navigation-menu li.current-menu-item>a {

	background: #fcfcfc;

}





/*--------------------------------------------------------------

## 10.3 - Social Icons Menu

--------------------------------------------------------------*/



.social-icons-menu {

	margin: 0;

	padding: 0;

	list-style-type: none;

	list-style-position: outside;

	line-height: 1;

}



.social-icons-menu li {

	float: left;

	display: inline-block;

	margin: 0;

	padding: 0;

}



.social-icons-menu li a {

	position: relative;

	display: inline-block;

	padding: 0.5em;

	text-decoration: none;

	-webkit-transition: all 0.2s ease;

	transition: all 0.2s ease;

}



.social-icons-menu li a .screen-reader-text {

	display: none;

}





/* Add Genericons */



.social-icons-menu li a:before {

	color: #fff;

	display: inline-block;

	-webkit-font-smoothing: antialiased;

	-moz-osx-font-smoothing: grayscale;

	font-size: 16px;

	line-height: 1;

	font-family: 'Genericons';

	text-decoration: inherit;

	vertical-align: top;

}



.social-icons-menu li a:before {

	content: '\f408';

}





/* Default Icon */



.social-icons-menu li a[href*="codepen.io"]:before {

	content: '\f216';

}



.social-icons-menu li a[href*="digg.com"]:before {

	content: '\f221';

}



.social-icons-menu li a[href*="dribbble.com"]:before {

	content: '\f201';

}



.social-icons-menu li a[href*="facebook.com"]:before {

	content: '\f204';

}



.social-icons-menu li a[href*="flickr.com"]:before {

	content: '\f211';

}



.social-icons-menu li a[href*="plus.google.com"]:before {

	content: '\f218';

}



.social-icons-menu li a[href*="github.com"]:before {

	content: '\f200';

}



.social-icons-menu li a[href*="instagram.com"]:before {

	content: '\f215';

}



.social-icons-menu li a[href*="linkedin.com"]:before {

	content: '\f207';

}



.social-icons-menu li a[href*="pinterest.com"]:before {

	content: '\f209';

}



.social-icons-menu li a[href*="polldaddy.com"]:before {

	content: '\f217';

}



.social-icons-menu li a[href*="getpocket.com"]:before {

	content: '\f224';

}



.social-icons-menu li a[href*="reddit.com"]:before {

	content: '\f222';

}



.social-icons-menu li a[href*="spotify.com"]:before {

	content: '\f515';

}



.social-icons-menu li a[href*="skype.com"]:before,

.social-icons-menu li a[href*="skype:"]:before {

	content: '\f220';

}



.social-icons-menu li a[href*="stumbleupon.com"]:before {

	content: '\f223';

}



.social-icons-menu li a[href*="tumblr.com"]:before {

	content: '\f214';

}



.social-icons-menu li a[href*="twitch.tv"]:before {

	content: '\f516';

}



.social-icons-menu li a[href*="twitter.com"]:before {

	content: '\f202';

}



.social-icons-menu li a[href*="vimeo.com"]:before {

	content: '\f212';

}



.social-icons-menu li a[href*="wordpress.org"]:before {

	content: '\f205';

}



.social-icons-menu li a[href*="wordpress.com"]:before {

	content: '\f205';

}



.social-icons-menu li a[href*="youtube.com"]:before {

	content: '\f213';

}



.social-icons-menu li a[href*="newsletter"]:before,

.social-icons-menu li a[href*="mailto"]:before {

	content: '\f410';

}



.social-icons-menu li a[href*="/feed"]:before,

.social-icons-menu li a[href*="/feed/"]:before,

.social-icons-menu li a[href*="?feed=rss2"]:before,

.social-icons-menu li a[href*="feedburner.google.com"]:before,

.social-icons-menu li a[href*="feedburner.com"]:before {

	content: '\f413';

}





/* Header Bar */



.header-bar .social-icons-navigation {

	float: right;

}



.header-bar .social-icons-menu li a {

	padding: 0.9em;

}



.header-bar .social-icons-menu li a:before {

	font-size: 24px;

}



.header-bar .social-icons-menu li a:hover:before {

	text-decoration: none;

}



.header-bar .social-icons-menu li a:hover,

.header-bar .social-icons-menu li a:active {

	background: rgba(0, 0, 0, 0.25);

}





/*--------------------------------------------------------------

# 11.0 - Widgets

--------------------------------------------------------------*/



.widget {

    font-size: .9em;

    padding: 1.5em;

    max-width: 100%;

    -ms-word-wrap: break-word;

    word-wrap: inherit;

}



.widget-header {

	margin: 0 0 1em;

}



.widget-title {

	display: block;

	margin: 0;

	padding: 0;

	font-family: 'Montserrat', Tahoma, Arial;

	font-size: 15px;

	font-size: 0.9375rem;

	text-transform: uppercase;

	color: #303030;

}



.widget ul {

	margin: 0;

	padding: 0;

	list-style: circle inside;

}



.widget ul .children,

.widget ul .sub-menu {

	padding: 0;

	margin: 0.5em 0 0.5em 1em;

}





/* Make sure select elements fit in widgets. */



.widget select {

	max-width: 100%;

}



.widget a:link,

.widget a:visited {

	text-decoration: none;

}



.widget-title a:link,

.widget-title a:visited {

	color: #303030;

	-webkit-transition: all 0.2s ease;

	transition: all 0.2s ease;

}



.widget-title a:hover,

.widget-title a:active {

	color: #ee4444;

}





/*--------------------------------------------------------------

## 11.1 - Default Widgets

--------------------------------------------------------------*/





/* Theme Search Widget */



.search-form {

	display: block;

	position: relative;

	width: 100%;

	margin: 0;

	padding: 0;

	overflow: hidden;

}



.search-form .screen-reader-text {

	display: none;

}



.search-form .search-field {

	display: inline-block;

	margin: 0;

	min-width: 300px;

	width: 100%;

	padding: 0.5em 1.5em 0.5em 0.7em;

	box-sizing: border-box;

	-webkit-appearance: none;

}



.search-form .search-submit {

	position: absolute;

	top: 0;

	right: 0;

	border: none;

	padding: 0.65em 0.75em 0 0.2em;

	cursor: pointer;

}



.search-form .search-submit .genericon-search {

	display: inline-block;

	padding: 0.05em 0 0.55em 0.45em;

	-webkit-font-smoothing: antialiased;

	-moz-osx-font-smoothing: grayscale;

	font-size: 24px;

	line-height: 1;

	font-family: 'Genericons';

	text-decoration: inherit;

	font-weight: normal;

	font-style: normal;

	vertical-align: middle;

	color: #fff;

	content: '\f400';

}





/*--------------------------------------------------------------

## 11.2 - Magazine Posts Widgets

--------------------------------------------------------------*/



.magazine-homepage-widget-area .widget {

	margin: 0 0 2em;

	padding: 0 0 2em;

	border-bottom: 1px solid #eee;

}



.magazine-homepage-widget-area .widget:last-child {

	padding: 0;

	border-bottom: none;

}



.widget-magazine-posts {

	margin-bottom: -2em;

}



.widget-magazine-posts .type-post {

	margin: 0 0 2em 0;

	padding: 0;

	border: none;

	box-shadow: none;

	background: none;

}



.widget-magazine-posts .type-post .entry-title {

	display: inline;

}



.widget-magazine-posts .type-post .entry-meta {

	margin: 0;

}



.widget-magazine-posts .type-post .entry-content {

	font-size: 16px;

	font-size: 1rem;

}



.widget-magazine-posts .type-post .entry-content p {

	margin-bottom: 0.5em;

}



.widget-magazine-posts .large-post .entry-title {

	font-size: 20px;

	font-size: 1.25rem;

}



.widget-magazine-posts .medium-post {

	float: left;

	display: block;

	width: 33.33333333%;

	padding-right: 2em;

	box-sizing: border-box;

}



.widget-magazine-posts .medium-post .entry-title,

.widget-magazine-posts .small-post .entry-title {

	font-size: 15px;

	font-size: 0.9375rem;

}



.widget-magazine-posts .small-post {

	float: left;

	display: block;

	width: 100%;

	box-sizing: border-box;

}



.widget-magazine-posts .small-post .wp-post-image {

	float: left;

	margin: 0 1.5em 0 0;

	max-width: 40%;

}



.widget-magazine-posts .medium-post .entry-meta,

.widget-magazine-posts .small-post .entry-meta {

	font-size: 13px;

	font-size: 0.8125rem;

}





/* Magazine Posts Grid Widget */



.widget-magazine-posts-grid .magazine-posts-grid-row {

	margin-right: -2em;

}



.widget-magazine-posts-grid .magazine-posts-grid-row .large-post {

	float: left;

	width: 50%;

	padding-right: 2em;

	box-sizing: border-box;

}





/* Magazine Posts Columns Widget */



.widget-magazine-posts-columns .magazine-posts-columns .magazine-posts-columns-content {

	float: left;

	width: 100%;

}



.widget-magazine-posts-columns .magazine-posts-column-left {

	float: left;

	width: 50%;

	padding-right: 1em;

	box-sizing: border-box;

}



.widget-magazine-posts-columns .magazine-posts-column-right {

	margin-left: 50%;

	width: 50%;

	padding-left: 1em;

	box-sizing: border-box;

}



.widget-magazine-posts-columns .medium-post {

	width: 100%;

	padding-right: 0;

}





/* Magazine Posts Sidebar Widget */



.main-sidebar .widget-magazine-posts-sidebar .entry-title {

	font-size: 20px;

	font-size: 1.25rem;

}



.small-sidebar .widget-magazine-posts-sidebar .entry-title {

	font-size: 16px;

	font-size: 1rem;

}





/*--------------------------------------------------------------

# 12.0 - Posts and pages

--------------------------------------------------------------*/



.type-post,

.type-page,

.type-attachment,

.comments-area {

	margin: 0 0 2em;

	padding: 0;

	max-width: 100%;

}



.entry-title {

	font-family: 'Montserrat', Tahoma, Arial;

	font-size: 28px;

	font-size: 1.75rem;

	padding: 0;

	margin: 0;

	color: #303030;

	-ms-word-wrap: break-word;

	word-wrap: break-word;

}



.entry-title a:link,

.entry-title a:visited {

	color: #303030;

	text-decoration: none;

	-webkit-transition: all 0.2s ease;

	transition: all 0.2s ease;

}



.entry-title a:hover,

.entry-title a:active {

	color: #ee4444;

}



.type-post .wp-post-image,

.type-page .wp-post-image {

	width: 100%;

	height: auto;

	margin: 0 0 0.5em;

}



.entry-content {

	font-size: 17px;

	font-size: 1.0625rem;

}



.entry-content p:first-child {

	margin-top: 0.5em;

}



.entry-content p:last-child {

	margin-bottom: 0;

}



/*

.sticky {}

*/



/* Page Links | wp_link_pages() */



.page-links {

	margin: 0;

	word-spacing: 1em;

	font-weight: bold;

}





/* Entry Meta */



.entry-meta {

	margin: 0.5em 0 0;

	padding: 0;

	color: #999;

	font-size: 14px;

	font-size: 0.875rem;

}



.entry-meta a:link,

.entry-meta a:visited {

	color: #999;

	text-decoration: none;

}



.entry-meta a:hover,

.entry-meta a:active {

	color: #666;

}



.entry-meta span:after {

	display: inline-block;

	-webkit-font-smoothing: antialiased;

	font: normal 16px 'Genericons';

	vertical-align: middle;

	color: #999;

	content: '\f428';

	margin-left: 0.2em;

}



.entry-meta span:last-child:after {

	display: none;

}





/* Entry Author */



.posted-by {

	margin: 1em 0;

}



.posted-by .avatar {

	float: left;

	margin: 0 0.75em 0 0;

	border-radius: 3em;

}





/* Entry Tags & Tagcloud Widget */



.entry-tags {

	margin: 0 0 1.5em;

}



.widget_tag_cloud .tagcloud,

.entry-tags .meta-tags {

	font-size: 14px;

	font-size: 0.875rem;

}



.widget_tag_cloud .tagcloud:before,

.widget_tag_cloud .tagcloud:after,

.entry-tags .meta-tags:before,

.entry-tags .meta-tags:after {

	content: "";

	display: table;

}



.widget_tag_cloud .tagcloud:after,

.entry-tags .meta-tags:after {

	clear: both;

}



.widget_tag_cloud .tagcloud a,

.entry-tags .meta-tags a {

	float: left;

	display: inline-block;

	margin: 0 2px 2px 0;

	padding: 0.2em 0.5em;

	text-decoration: none;

	background: #303030;

	font-size: 13px !important;

	font-size: 0.8125rem !important;

	text-transform: uppercase;

	margin-top: 20px;

}



.widget_tag_cloud .tagcloud a:link,

.widget_tag_cloud .tagcloud a:visited,

.entry-tags .meta-tags a:link,

.entry-tags .meta-tags a:visited {

	color: #fff;

}



.widget_tag_cloud .tagcloud a:hover,

.widget_tag_cloud .tagcloud a:active,

.entry-tags .meta-tags a:hover,

.entry-tags .meta-tags a:active {

	color: #fff;

	background: #ee4444;

}





/* Post Navigation */



.post-navigation {

	margin: 1em 0 0;

	padding: 0.6em 0 0;

	border-top: 1px solid #ddd;

}



.post-navigation .nav-links .nav-previous {

	float: left;

}



.post-navigation .nav-links .nav-next {

	float: right;

}



.post-navigation .nav-links .nav-previous a:before {

	margin-right: 3px;

	content: "\00AB";

}



.post-navigation .nav-links .nav-next a:after {

	margin-left: 4px;

	content: "\00BB";

}



.post-navigation .nav-links a {

	text-decoration: none;

}





/* Theme Pagination */



.post-pagination {

	margin: 0 0 3em;

}



.post-pagination a,

.post-pagination .current {

	display: inline-block;

	margin: 0 3px 3px 0;

	padding: 0.4em 1em;

	text-align: center;

	text-decoration: none;

	color: #fff;

	background: #303030;

}



.post-pagination a:link,

.post-pagination a:visited {

	color: #fff;

	-webkit-transition: all 0.2s ease;

	transition: all 0.2s ease;

}



.post-pagination a:hover,

.post-pagination a:active,

.post-pagination .current {

	background: #ee4444;

}





/* Infinite Scroll Pagination */



.infinite-scroll .post-pagination {

	display: none;

}



.infinite-scroll #infinite-handle,

.infinite-scroll .infinite-loader {

	width: 100%;

	text-align: center;

}



.infinite-scroll .infinite-loader .spinner {

	left: auto;

	margin: 0 auto;

	bottom: -1em;

}



.infinite-scroll #infinite-handle span {

	display: inline-block;

	margin: 0 0 2em;

	background: #303030;

	padding: 0.6em 1em;

	font-family: 'Montserrat', Tahoma, Arial;

	font-size: 15px;

	font-size: 0.9375rem;

	font-weight: bold;

	text-transform: uppercase;

	text-decoration: none;

	-webkit-transition: all 0.2s ease;

	transition: all 0.2s ease;

}



.infinite-scroll #infinite-handle span:hover {

	background: #ee4444;

}





/* Archives and Search Heading */



.blog-header,

.archive-header,

.page-header,

.sidebar-header {

	margin: 0 0 1em;

	padding: 0 1.25em 0.75em;

	min-height: 3.5em;

	color: #303030;

}



/*

.blog-header,

.archive-header,

.page-header {

	

	margin: 0 -2rem 2em;

	background: #fff;

	border-bottom: 1px solid #eee;

	

}

*/



.main-sidebar .sidebar-header {

	color: #fff;

	background: #ee4444;

}



.small-sidebar .sidebar-header {

	color: #fff;

	background: #ee4444;

}



.blog-title,

.page-title,

.sidebar-title,

.archive-title {

	font-family: 'Montserrat', Tahoma, Arial;

	font-size: 15px;

	font-size: 0.9375rem;

	text-transform: uppercase;

	padding: 1em 0 0;

	margin: 0;

	-ms-word-wrap: break-word;

	word-wrap: break-word;

}



.blog-title a,

.page-title a,

.sidebar-title a,

.archive-title a {

	text-decoration: none;

}





/* Breadcrumbs */



.breadcrumbs {

	margin: -0.5em 0 1.5em;

	padding: 0;

	-ms-word-wrap: break-word;

	word-wrap: break-word;

}



.breadcrumbs-container {

	color: #222;

	font-size: 14px;

	font-size: 0.875rem;

}



.breadcrumbs .trail-browse,

.breadcrumbs .trail-items,

.breadcrumbs .trail-items li {

	display: inline;

	margin: 0;

	padding: 0;

}



.breadcrumbs .trail-browse {

	margin-right: 0.5em;

	font-size: 14px;

	font-size: 0.875rem;

	font-weight: normal;

}



.breadcrumbs .trail-items {

	list-style: none;

}



.breadcrumbs .trail-items li::after {

	content: "\00bb";

	/* Raquo */

	padding: 0 0.5em;

}



.trail-separator-slash .trail-items li::after {

	content: "\002F";

}



.trail-separator-dash .trail-items li::after {

	content: "\2013";

}



.trail-separator-bull .trail-items li::after {

	content: "\2022";

}



.trail-separator-arrow-bracket .trail-items li::after {

	content: "\003e";

}



.trail-separator-raquo .trail-items li::after {

	content: "\00bb";

}



.trail-separator-single-arrow .trail-items li::after {

	content: "\2192";

}



.trail-separator-double-arrow .trail-items li::after {

	content: "\21D2";

}



.breadcrumbs .trail-items li:last-of-type::after {

	display: none;

}





/*--------------------------------------------------------------

## 12.1 - Post Layouts

--------------------------------------------------------------*/





/* Post Styling */



.post-wrapper .type-post .entry-title {

	font-size: 20px;

	font-size: 1.25rem;

}



.post-wrapper .type-post .entry-content {

	font-size: 16px;

	font-size: 1rem;

}





/* One Column Layout */



.post-layout-one-column .post-wrapper .type-post {

	padding: 0 0 1.5em;

	border-bottom: 1px solid #c7c7c7;

}



.post-layout-one-column .post-wrapper .type-post .wp-post-image {

	float: left;

	max-width: 35%;

	margin: 0 2em 1em 0;

	padding: 0;

}



.post-layout-one-column .post-wrapper .type-post .entry-title {

	display: inline;

}





/* Two Column Layout */



.post-layout-two-columns .post-wrapper {

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;

	-ms-flex-wrap: wrap;

	flex-wrap: wrap;

	margin-right: -2em;

}



.post-layout-two-columns .post-wrapper .post-column {

	width: 50%;

	padding-right: 2em;

	box-sizing: border-box;

}



.post-layout-two-columns .post-wrapper .post-column .type-post .entry-meta {

	margin: 0;

}





/* Fix Render Bug for Safari */



@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) {

	@media {

		.post-layout-two-columns .post-wrapper .post-column {

			margin-right: -1px;

		}

	}

}





/*--------------------------------------------------------------

# 11.0 - Comments

--------------------------------------------------------------*/





/* Comment Header */



.comments-header,

.comment-reply-title {

	margin: 0 0 1em 0;

}



.comments-header .comments-title,

.comment-reply-title span {

	font-family: 'Montserrat', Tahoma, Arial;

	font-size: 15px;

	font-size: 0.9375rem;

	text-transform: uppercase;

	padding: 0.95em 0 0;

	margin: 0;

	-ms-word-wrap: break-word;

	word-wrap: break-word;

}





/* Comment List */



.comment-list {

	margin: 0;

	padding: 0;

	list-style: none;

}



.comment {

	margin: 0 0 1.5em;

	padding: 1.5em 0 0;

	border-top: 1px solid #eee;

	-ms-word-wrap: break-word;

	word-wrap: break-word;

}



.comment-meta {

	float: left;

	width: 100%;

	padding: 0;

}



.comment-meta .comment-author img {

	float: left;

	margin-right: 1em;

}



.bypostauthor {

	display: block;

}



.comment-meta .comment-metadata {

	margin-top: 0.3em;

	font-size: 14px;

	font-size: 0.875rem;

}



.comment-meta .comment-metadata a {

	margin-right: 1em;

	text-decoration: none;

}



.comment-content {

	clear: left;

	padding: 0.2em 0 0;

}



.comment-content a {

	word-wrap: break-word;

}



.comment ol.children {

	list-style: none;

	margin: 1.5em 0 0;

}



.comment .comment-respond {

	margin-top: 1.5em;

}





/* Comment Pagination */



.comment-navigation {

	margin: 0 0 1.5em;

	padding: 0;

	font-size: 14px;

	font-size: 0.875rem;

}



.comment-navigation .nav-previous {

	float: left;

}



.comment-navigation .nav-next {

	float: right;

}



.comment-navigation .nav-previous a:before {

	margin-right: 3px;

	content: "\00AB";

}



.comment-navigation .nav-next a:after {

	margin-left: 4px;

	content: "\00BB";

}



.comment-navigation a {

	text-decoration: none;

}





/* Comment Form */



.comment-form {

	padding: 0;

}



.comment-form label {

	display: inline-block;

	min-width: 150px;

	font-weight: bold;

}



.comment-form textarea {

	margin-top: 0.4em;

}



.comment-form .form-submit {

	margin-bottom: 1em;

}



.comment-reply-title small a {

	margin-left: 1em;

	text-decoration: underline;

	font-size: 14px;

	font-size: 0.875rem;

	font-weight: normal;

}





/*--------------------------------------------------------------

# 12.0 - Footer

--------------------------------------------------------------*/



.footer-wrap {

	background: #404040;

}



.footer-content {

	font-size: 15px;

	font-size: 0.9375rem;

}



.footer-content a:link,

.footer-content a:visited {

	color: #fff;

}





/*копирайт*/



.footer-content .site-info {

	float: center;

	padding: 1em 0;

	color: #fff;

}





/*--------------------------------------------------------------

# 13.0 - Media

--------------------------------------------------------------*/



.page-content .wp-smiley,

.entry-content .wp-smiley,

.comment-content .wp-smiley {

	border: none;

	margin-bottom: 0;

	margin-top: 0;

	padding: 0;

}





/* Make sure embeds and iframes fit their containers. */



embed,

iframe,

object {

	max-width: 100%;

}





/*--------------------------------------------------------------

## 13.1 - Captions

--------------------------------------------------------------*/



.wp-caption {

	margin-bottom: 1.5em;

	max-width: 100%;

}



.wp-caption img[class*="wp-image-"] {

	display: block;

	margin: 0 auto;

}



.wp-caption-text {

	text-align: center;

}



.wp-caption .wp-caption-text {

	margin: 0.8075em 0;

}





/*--------------------------------------------------------------

## 13.2 - Galleries

--------------------------------------------------------------*/



.gallery {

	margin-bottom: 1.5em;

}



.gallery-item {

	display: inline-block;

	text-align: center;

	vertical-align: top;

	width: 100%;

}



.gallery-columns-2 .gallery-item {

	max-width: 50%;

}



.gallery-columns-3 .gallery-item {

	max-width: 33.33%;

}



.gallery-columns-4 .gallery-item {

	max-width: 25%;

}



.gallery-columns-5 .gallery-item {

	max-width: 20%;

}



.gallery-columns-6 .gallery-item {

	max-width: 16.66%;

}



.gallery-columns-7 .gallery-item {

	max-width: 14.28%;

}



.gallery-columns-8 .gallery-item {

	max-width: 12.5%;

}



.gallery-columns-9 .gallery-item {

	max-width: 11.11%;

}



.gallery-caption {

	display: block;

}





/*--------------------------------------------------------------

# 14.0 - Media Queries

--------------------------------------------------------------*/





/*--------------------------------------------------------------

## 14.1 - Desktop X-Large ( < 1200px )

--------------------------------------------------------------*/



@media only screen and (max-width: 80em) {

	.site-content {

		position: relative;

	}

	.content-area {

		width: 70%;

		border-right: none;

	}

	.main-sidebar {

		width: 30%;

	}

	.blog-header,

	.archive-header,

	.page-header {

		padding-right: 5rem;

	}

	.small-sidebar-toggle {

		display: block;

		position: absolute;

		top: 0;

		right: 2rem;

		z-index: 300;

		padding: 1rem 1.6rem;

		min-height: 3.5rem;

		background: #ee4444;

	}

	.small-sidebar-toggle:hover,

	.small-sidebar-toggle:active,

	.small-sidebar-toggle:focus {

		background: #ee4444;

	}

	.small-sidebar-toggle:after {

		float: left;

		display: inline-block;

		font-size: 24px;

		vertical-align: top;

		line-height: 1;

		color: #fff;

		margin: -6px 0 0;

		content: "\00AB";

	}

	.small-sidebar .sidebar-header:hover,

	.small-sidebar .sidebar-header:active,

	.small-sidebar .sidebar-header:focus {

		cursor: pointer;

	}

	.small-sidebar .sidebar-header .sidebar-title:after {

		float: right;

		display: inline-block;

		font-size: 24px;

		vertical-align: top;

		line-height: 1;

		color: #fff;

		margin: -2px 5px 0 0;

		content: "\00BB";

	}

	.small-sidebar {

		display: none;

		position: absolute;

		top: 0;

		right: 2em;

		width: 80%;

		height: 100%;

		overflow: auto;

		z-index: 200;

	}

}





/*--------------------------------------------------------------

## 14.2 - Desktop Large ( < 1120px )

--------------------------------------------------------------*/



@media only screen and (max-width: 70em) {

	.header-widget {

		max-width: 70%;

	}

	.site-description {

		margin-top: 0.8em;

		font-size: 20px;

		font-size: 1.25rem;

	}

}





/*--------------------------------------------------------------

## 14.2 - Desktop Medium ( < 1040px )

--------------------------------------------------------------*/



@media only screen and (max-width: 65em) {}





/*--------------------------------------------------------------

## 14.3 - Desktop Small ( < 960px )

--------------------------------------------------------------*/



@media only screen and (max-width: 60em) {

	.content-area {

		width: 100%;

		border-left: none;

	}

	.blog-header,

	.archive-header,

	.page-header {

		padding-left: 5.25rem;

	}

	.main-sidebar-toggle {

		display: block;

		position: absolute;

		top: 0;

		left: 2rem;

		z-index: 300;

		padding: 1rem 1.6rem;

		min-height: 3.5rem;

		background: #ee4444;

	}

	.main-sidebar-toggle:hover,

	.main-sidebar-toggle:active,

	.main-sidebar-toggle:focus {

		background: #ee4444;

	}

	.main-sidebar-toggle:after {

		float: left;

		display: inline-block;

		font-size: 24px;

		vertical-align: top;

		line-height: 1;

		color: #fff;

		margin: -6px 0 0;

		content: "\00BB";

	}

	.main-sidebar .sidebar-header:hover,

	.main-sidebar .sidebar-header:active,

	.main-sidebar .sidebar-header:focus {

		cursor: pointer;

	}

	.main-sidebar .sidebar-header .sidebar-title:before {

		float: left;

		display: inline-block;

		font-size: 24px;

		vertical-align: top;

		line-height: 1;

		color: #fff;

		margin: -2px 1em 0 5px;

		content: "\00AB";

	}

	.main-sidebar {

		display: none;

		position: absolute;

		top: 0;

		right: left;

		width: 90%;

		height: 100%;

		overflow: auto;

		z-index: 200;

	}

	.header-main {

		padding-top: 2em;

		padding-bottom: 2em;

	}

	.site-branding {

		float: none;

		text-align: center;

		margin: 0;

	}

	.site-description {

		float: none;

		display: block;

		margin: 0 0 0.75em;

		text-align: center;

	}

	/*** Mobile Main Navigation ***/

	.header-bar {

		padding: 0;

	}

	.header-bar .social-icons-navigation {

		margin-right: 1em;

	}

	/* Reset */

	.primary-navigation,

	.main-navigation-menu li {

		float: none;

		position: static;

	}

	.main-navigation-menu ul {

		position: static;

		display: block;

	}

	.main-navigation-menu ul a {

		width: auto;

		float: none;

	}

	.main-navigation-menu li ul ul {

		margin-left: 0;

	}

	.main-navigation-menu li:hover ul ul,

	.main-navigation-menu li:hover ul ul ul,

	.main-navigation-menu li:hover ul ul ul ul,

	.main-navigation-menu li:hover ul,

	.main-navigation-menu li li:hover ul,

	.main-navigation-menu li li li:hover ul,

	.main-navigation-menu li li li li:hover ul {

		display: inline;

	}

	.main-navigation-menu>.menu-item-has-children>a:after,

	.main-navigation-menu ul .menu-item-has-children>a:after {

		display: none;

	}

	/* Main Navigation Toggle */

	.main-navigation-toggle {

		float: left;

		display: inline-block;

		font-size: 16px;

		font-size: 1rem;

		margin-left: 1em;

		padding: 0.9em;

		background: none;

		text-align: left;

	}

	.main-navigation-toggle:hover,

	.main-navigation-toggle:focus,

	.main-navigation-toggle:active {

		cursor: pointer;

		background: rgba(0, 0, 0, 0.25);

	}

	.main-navigation-toggle:after {

		float: left;

		display: inline-block;

		margin: 0;

		font-size: 24px;

		line-height: 1;

		font-family: 'Genericons';

		-webkit-font-smoothing: antialiased;

		-moz-osx-font-smoothing: grayscale;

		text-decoration: inherit;

		vertical-align: middle;

		content: '\f419';

		color: #fff;

	}

	/* Main Navigation Menu */

	.main-navigation-menu-wrap {

		float: left;

		width: 100%;

		display: none;

		border-top: 1px solid rgba(255, 255, 255, 0.1);

	}

	.main-navigation-menu a {

		display: block;

		clear: left;

		border-bottom: 1px solid rgba(255, 255, 255, 0.1);

	}

	.main-navigation-menu li:last-child a {

		border-bottom: none;

	}

	.main-navigation-menu ul {

		float: none;

		width: 100%;

		border: none;

	}

	.main-navigation-menu ul a {

		display: block;

		width: 100%;

		padding-left: 3em;

	}

	.main-navigation-menu ul li ul a {

		padding-left: 4.5em;

	}

	.main-navigation-menu ul li ul li ul a {

		padding-left: 6em;

	}

	.main-navigation-menu ul li ul li ul li ul a {

		padding-left: 7.5em;

	}

	.main-navigation-menu ul li:last-child a {

		border-bottom: 1px solid rgba(255, 255, 255, 0.1);

	}

	.main-navigation-menu li ul ul {

		border: none;

		border-top: 1px solid rgba(255, 255, 255, 0.1);

	}

	.main-navigation-menu li.current-menu-item>a {

		background: none;

		text-decoration: underline;

	}

	/* Mobile Submenu Dropdowns */

	.main-navigation-menu .submenu-dropdown-toggle {

		float: right;

		display: block;

		margin: 0;

		padding: 0.65em 1.2em 0.6em;

	}

	.main-navigation-menu .submenu-dropdown-toggle:hover {

		cursor: pointer;

		background: rgba(0, 0, 0, 0.25);

	}

	.main-navigation-menu .submenu-dropdown-toggle:before {

		font-size: 32px;

		line-height: 1;

		font-family: 'Genericons';

		-webkit-font-smoothing: antialiased;

		-moz-osx-font-smoothing: grayscale;

		text-decoration: inherit;

		vertical-align: middle;

		content: '\f431';

		color: #fff;

	}

	.main-navigation-menu .submenu-dropdown-toggle.active:before {

		content: '\f432';

	}

	.main-navigation-menu ul .submenu-dropdown-toggle {

		padding: 0.45em 1em;

	}

	.main-navigation-menu ul .submenu-dropdown-toggle:before {

		font-size: 24px;

	}

}





/*--------------------------------------------------------------

## 14.4 - Tablet Large ( < 880px )

--------------------------------------------------------------*/



@media only screen and (max-width: 55em) {}





/*--------------------------------------------------------------

## 14.5 - Tablet Medium ( < 800px )

--------------------------------------------------------------*/



@media only screen and (max-width: 50em) {

	.site-header {

		padding-bottom: 0;

	}

	.site-content {

		padding-left: 0;

		padding-right: 0;

		margin-top: 0;

	}

	.main-sidebar,

	.main-sidebar-toggle {

		left: 0;

	}

	.small-sidebar,

	.small-sidebar-toggle {

		right: 0;

	}

	/* Magazine Widgets */

	.widget-magazine-posts .small-post .entry-meta span:after,

	.widget-magazine-posts .small-post .entry-meta .meta-author {

		display: none;

	}

}





/*--------------------------------------------------------------

## 14.6 - Tablet Small ( < 720px )

--------------------------------------------------------------*/



@media only screen and (max-width: 45em) {}





/*--------------------------------------------------------------

## 14.7 - Mobile Extra Large ( < 640px )

--------------------------------------------------------------*/



@media only screen and (max-width: 40em) {

	.blog-header,

	.archive-header,

	.page-header {

		margin-right: -2rem;

		padding-right: 2em;

	}

	.small-sidebar .sidebar-header .sidebar-title {

		margin-right: 0;

	}

	.small-sidebar-toggle {

		display: none !important;

	}

	.small-sidebar {

		display: block !important;

		position: static;

		top: auto;

		right: auto;

		max-width: 100% !important;

		width: 100%;

		height: auto;

		overflow: auto;

	}

	.small-sidebar .sidebar-header:hover,

	.small-sidebar .sidebar-header:active,

	.small-sidebar .sidebar-header:focus {

		cursor: default;

	}

	.small-sidebar .sidebar-header .sidebar-title:after {

		display: none;

	}

	.entry-title,

	.post-wrapper .type-post .entry-title {

		font-size: 24px;

		font-size: 1.5rem;

	}

	.post-wrapper .type-post .entry-content {

		font-size: 17px;

		font-size: 1.0625rem;

	}

	.entry-meta {

		margin: 0;

	}

	/* One Column Layout */

	.post-layout-one-column .post-wrapper .type-post {

		padding: 0;

		border-bottom: none;

	}

	.post-layout-one-column .post-wrapper .type-post .wp-post-image {

		float: none;

		max-width: 100%;

		margin: 0 0 0.5em;

	}

	/* Two Column Layout */

	.post-layout-two-columns .post-wrapper {

		display: block;

		margin-right: 0;

	}

	.post-layout-two-columns .post-wrapper .post-column {

		width: 100%;

		padding-right: 0;

	}

	/* Magazine Post Widgets */

	.widget-magazine-posts-grid .large-post-row,

	.widget-magazine-posts-grid .medium-post-row {

		margin-right: 0;

	}

	.widget-magazine-posts-grid .magazine-posts-grid-row .large-post,

	.widget-magazine-posts-columns .magazine-posts-column-left,

	.widget-magazine-posts .medium-post {

		float: none;

		width: 100%;

		padding: 0;

	}

	.widget-magazine-posts-columns .magazine-posts-column-right {

		width: 100%;

		padding-top: 1em;

		margin-left: 0;

		padding-left: 0;

	}

	.widget-magazine-posts .large-post .wp-post-image {

		margin: 0 0 0.5em;

	}

	.widget-magazine-posts .medium-post .wp-post-image {

		float: left;

		margin: 0 1.5em 0 0;

		max-width: 40%;

	}

	.widget-magazine-posts .large-post .entry-title {

		font-size: 24px;

		font-size: 1.5rem;

	}

	.widget-magazine-posts .medium-post .entry-title,

	.widget-magazine-posts .small-post .entry-title {

		font-size: 18px;

		font-size: 1.125rem;

	}

	.widget-magazine-posts .small-post .entry-meta span:after,

	.widget-magazine-posts .small-post .entry-meta .meta-author {

		display: inline-block;

	}

	.widget-magazine-posts .small-post .entry-meta span:last-child:after {

		display: none;

	}

}





/*--------------------------------------------------------------

## 14.9 - Mobile Medium ( < 480px )

--------------------------------------------------------------*/



@media only screen and (max-width: 30em) {

	.site-branding .site-title {

		font-size: 36px;

		font-size: 2.25rem;

	}

	.site-description {

		margin: 0 0 0.5em;

		font-size: 18px;

		font-size: 1.125rem;

	}

	.entry-title,

	.post-wrapper .type-post .entry-title {

		font-size: 22px;

		font-size: 1.375rem;

	}

	.entry-content,

	.post-wrapper .type-post .entry-content {

		font-size: 16px;

		font-size: 1rem;

	}

	.alignright,

	.alignleft {

		float: none;

		margin: 1em 0;

	}

	.main-navigation-toggle,

	.header-bar .social-icons-navigation {

		margin: 0;

	}

	.header-bar .social-icons-menu li a {

		padding: 1.1em 0.9em;

	}

	.header-bar .social-icons-menu li a:before {

		font-size: 18px;

	}

	/* Magazine Homepage: Category Post Widgets */

	.widget-magazine-posts .large-post .entry-title {

		font-size: 22px;

		font-size: 1.375rem;

	}

	.widget-magazine-posts .medium-post .entry-title,

	.widget-magazine-posts .small-post .entry-title {

		font-size: 16px;

		font-size: 1rem;

	}

	.widget-magazine-posts .small-post .entry-meta span:after,

	.widget-magazine-posts .small-post .entry-meta .meta-author {

		display: none;

	}

}





/*--------------------------------------------------------------

## 14.10 - Mobile Small ( < 320px )

--------------------------------------------------------------*/



@media only screen and (max-width: 20em) {

	.site-branding .site-title {

		font-size: 32px;

		font-size: 2rem;

	}

	.site-description {

		font-size: 16px;

		font-size: 1rem;

	}

	.entry-title,

	.post-wrapper .type-post .entry-title {

		font-size: 20px;

		font-size: 1.25rem;

	}

	.entry-meta .meta-date,

	.entry-meta .meta-comments {

		display: block;

	}

	.entry-meta span:after {

		display: none;

	}

	/* Magazine Homepage: Category Post Widgets */

	.widget-magazine-posts .large-post .entry-title {

		font-size: 20px;

		font-size: 1.25rem;

	}

	.widget-magazine-posts .medium-post .entry-title,

	.widget-magazine-posts .small-post .entry-title {

		font-size: 15px;

		font-size: 0.9375rem;

	}

	.widget-magazine-posts .medium-post .entry-meta,

	.widget-magazine-posts .small-post .entry-meta {

		display: none;

	}

}





/*--------------------------------------------------------------

# 16.0 - Media Query Fixes

--------------------------------------------------------------*/





/* Ensure small sidebar is visible on desktop view */



@media only screen and (min-width: 80.001em) {

	.small-sidebar {

		display: block !important;

		max-width: 100% !important;

	}

	.small-sidebar-toggle {

		display: none !important;

	}

}





/* Ensure main sidebar is visible on desktop view */



@media only screen and (min-width: 60.001em) {

	.main-sidebar {

		display: block !important;

		max-width: 100% !important;

	}

	.main-navigation-menu-wrap {

		display: block !important;

	}

	.main-sidebar-toggle {

		display: none !important;

	}

}