/*
Theme Name: Donovan
Theme URI: https://themezee.com/themes/donovan/
Author: ThemeZee
Author URI: https://themezee.com
Description: Donovan is a flexible, yet easy-to-use blogging theme with a clean and modern design. It features an elegant mobile-first design, three different blog layouts and extensive post settings. Donovan is perfect for your personal blog or for any content-focused website.
Version: 1.2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: donovan
Tags: two-columns, blog, news, custom-background, custom-logo, custom-header, custom-menu, grid-layout, entertainment, editor-style, rtl-language-support, featured-image-header, featured-images, flexible-header, custom-colors, full-width-template, sticky-post, threaded-comments, translation-ready, theme-options, one-column, left-sidebar, right-sidebar, three-columns

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Donovan is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# - CSS Variables
# - Normalize
# - Typography
# - Elements
# - Forms
# - Accessibility
# - Alignments
# - Clearings
# - Layout Structure
# - Header
# - Navigation
	## - Main Navigation
	## - Social Icons Menu
# - Widgets
# - Posts and pages
# - Comments
# - Footer
# - Media
	## - Captions
	## - Galleries
# - Plugins
# - Media Queries
	## - Greater than 320px
	## - Greater than 400px
	## - Greater than 480px
	## - Greater than 560px
	## - Greater than 640px
	## - Greater than 720px
	## - Greater than 800px
	## - Greater than 880px
	## - Greater than 960px
	## - Greater than 1040px
	## - Greater than 1120px
	## - Greater than 1200px
	## - Greater than 1280px
	## - Media Print Styles
# - Theme Layout
# - Sidebar Position
# - Customizer Preview
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# - CSS Variables
--------------------------------------------------------------*/
:root {
	--link-color: #ee1133;
	--button-color: #ee1133;
	--button-text-color: #fff;
	--button-hover-color: #D5001A;
	--button-hover-text-color: #fff;
	--title-color: #202020;
	--navi-color: #202020;
	--navi-text-color: #fff;
	--navi-hover-text-color: rgba(255, 255, 255, 0.5);
	--navi-border-color: rgba(255, 255, 255, 0.05);
	--submenu-color: #ee1133;
	--submenu-text-color: #fff;
	--submenu-hover-text-color: rgba(255, 255, 255, 0.5);
	--submenu-border-color: rgba(255, 255, 255, 0.075);
	--footer-color: #202020;
	--footer-text-color: #fff;
	--footer-hover-text-color: rgba(255, 255, 255, 0.5);
	--footer-border-color: rgba(255, 255, 255, 0.035);
	--text-font: Raleway, Arial, Helvetica;
	--title-font: Quicksand, Tahoma, Arial;
	--navi-font: Quicksand, Tahoma, Arial;
	--widget-title-font: Quicksand, Tahoma, Arial;
}

/*--------------------------------------------------------------
# - 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 {
	margin: 0.67em 0;
	font-size: 2em;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	position: relative;
	vertical-align: baseline;
	font-size: 75%;
	line-height: 0;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-size: 1em;
	font-family: monospace;
}

button,
input,
optgroup,
select,
textarea {
	margin: 0;
	color: inherit;
	font: inherit;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0;
	border: 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"] {
	box-sizing: content-box;
	-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
	border: 1px solid #c0c0c0;
}

legend {
	padding: 0;
	border: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# - Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #202020;
	font-size: 15px;
	font-size: 0.9375rem;
	font-family: Raleway, Arial, Helvetica;
	font-family: var(--text-font);
	line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	margin: 1em 0 0.75em;
	line-height: 1.4;
}

h1 {
	font-size: 32px;
	font-size: 2rem;
}

h2 {
	font-size: 26px;
	font-size: 1.625rem;
}

h3 {
	font-size: 22px;
	font-size: 1.375rem;
}

h4 {
	font-size: 20px;
	font-size: 1.25rem;
}

h5 {
	font-size: 19px;
	font-size: 1.1875rem;
}

h6 {
	font-size: 18px;
	font-size: 1.125rem;
}

p {
	margin-bottom: 1.25em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	overflow: auto;
	margin-bottom: 1.6em;
	padding: 1.6em;
	max-width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.075);
	font-size: 15px;
	font-size: 0.9375rem;
	font-family: "Courier 10 Pitch", Courier, monospace;
	line-height: 1.6;
}

code,
kbd,
tt,
var {
	font-size: 15px;
	font-size: 0.9375rem;
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# - 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: #ccc; /* Fallback for when there is no custom background color defined. */
}

blockquote {
	margin: 0 0 1.5em;
	padding-left: 1.25em;
	border-left: 4px solid #202020;
	color: #777;
	font-size: 18px;
	font-size: 1.125rem;
}

blockquote cite,
blockquote small {
	display: block;
	margin-top: 1em;
	color: #202020;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.75;
}

blockquote cite:before,
blockquote small:before {
	content: "\2014\00a0";
}

blockquote > :last-child {
	margin-bottom: 0.5em;
}

hr {
	margin-bottom: 1.5em;
	height: 1px;
	border: 0;
	background-color: #ccc;
}

ul,
ol {
	margin: 0 0 1.5em;
	padding: 0 0 0 1.25em;
}

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 {
	max-width: 100%; /* Adhere to container width. */
	height: auto; /* Make sure images are scaled correctly. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
	border: none;
	table-layout: fixed;
}

th,
td {
	padding: 0.3em 0.6em;
	border: 1px solid rgba(0, 0, 0, 0.075);
}

a,
a:link,
a:visited {
	color: #ee1133;
	color: var(--link-color);
	text-decoration: underline;
}

a:hover,
a:focus,
a:active {
	text-decoration: none;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
# - Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	margin: 0;
	padding: 0.5em 1em;
	border: none;
	color: #fff;
	color: var(--button-text-color);
	background: #ee1133;
	background: var(--button-color);
	text-decoration: none;
	font-weight: normal;
	font-size: 15px;
	font-size: 0.9375rem;
}

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 {
	color: #fff;
	color: var(--button-hover-text-color);
	background: #D5001A;
	background: var(--button-hover-color);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	padding: 0.3em 0.6em;
	max-width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.075);
	background: none;
	color: #666;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	border: 1px solid rgba(0, 0, 0, 0.2);
	color: #202020;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# - Accessibility
--------------------------------------------------------------*/

/* Text meant only for screen readers. */
.wigeku {
	position: absolute !important;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
}

.wigeku:hover,
.wigeku:active,
.wigeku:focus {
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar. */
	display: block;
	clip: auto !important;
	padding: 15px 23px 14px;
	width: auto;
	height: auto;
	border-radius: 3px;
	background-color: #f1f1f1;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	color: #21759b;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: normal;
}

/*--------------------------------------------------------------
# - Alignments
--------------------------------------------------------------*/
.alignleft,
.alignright,
.aligncenter {
	display: block;
	margin: 0.5em 0;
}

.aligncenter {
	clear: both;
	margin-right: auto;
	margin-left: auto;
}

/*--------------------------------------------------------------
# - Clearings
--------------------------------------------------------------*/
.wyqiku:before,
.wyqiku:after,
.tirydiw-navigation .nav-links:before,
.tirydiw-navigation .nav-links:after,
.nilecu-navigation:before,
.nilecu-navigation:after {
	display: table;
	content: "";
}

.wyqiku:after,
.tirydiw-navigation .nav-links:after,
.nilecu-navigation:after {
	clear: both;
}

/*--------------------------------------------------------------
# - Layout Structure
--------------------------------------------------------------*/
.wemivy {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	width: 100%;
}

.noce {
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0;
	max-width: 1440px;
}

/*--------------------------------------------------------------
# - Header
--------------------------------------------------------------*/
.laxu {
	background: #fff;
}

.sydum {
	display: block;
	text-align: center;
	padding-top: 1.25rem;
	padding-bottom: 1.5rem;
}

.zuxa {
	margin: 0;
	padding: 0;
	max-width: 100%;
}

.zuxa a:link,
.zuxa a:visited,
.zuxa a:hover {
	padding: 0;
	border: none;
	text-decoration: none;
}

.robad {
	display: block;
	margin: 0;
	padding: 0;
	color: #202020;
	color: var(--title-color);
	text-decoration: none;
	font-size: 32px;
	font-size: 2rem;
	font-family: Quicksand, Tahoma, Arial;
	font-family: var(--title-font);
	font-weight: normal;
	line-height: 1.4;
}

.robad a:link,
.robad a:visited {
	color: #202020;
	color: var(--title-color);
}

.robad a:hover,
.robad a:active {
	text-decoration: underline;
}

.zuxa .custom-logo {
	margin: 0 0 0.5em;
	padding: 0;
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: top;
}

.wyva {
	margin: 0;
	font-size: 14px;
	font-size: 0.875rem;
}

/* Header Social Icons */
.header-social-menu {
	margin-top: 1rem;
}

/* Custom Header Image */
.header-image {
	margin: 0;
	text-align: center;
}

.header-image img {
	max-width: 100%;
	vertical-align: top;
}

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

/*--------------------------------------------------------------
## - Main Navigation
--------------------------------------------------------------*/
.bosumo {
	position: relative;
	background: #202020;
	background: var(--navi-color);
}

.logiv {
	padding: 0;
}

/* Main Navigation Toggle */
.main-navigation-toggle {
	display: inline-block;
	margin: 0;
	padding: 1em 1.5em;
	border: none;
	background: none;
	color: #fff;
	color: var(--navi-text-color);
	text-decoration: none;
	font-size: 17px;
	font-size: 1.0625rem;
	font-family: Quicksand, Tahoma, Arial;
	font-family: var(--navi-font);
	font-weight: normal;
}

.main-navigation-toggle:focus {
	color: #fff;
	color: var(--navi-text-color);
	background: none;
}

.main-navigation-toggle:hover,
.main-navigation-toggle:active,
.main-navigation-toggle:focus:hover {
	color: rgba(255, 255, 255, 0.5);
	color: var(--navi-hover-text-color);
	background: none;
	cursor: pointer;
}

.main-navigation-toggle .zalafiz {
	margin: 0.25em 0.6em 0 0;
	width: 22px;
	height: 22px;
	vertical-align: top;
	fill: #fff;
	fill: var(--navi-text-color);
}

.main-navigation-toggle:hover .zalafiz,
.main-navigation-toggle:active .zalafiz {
	fill: rgba(255, 255, 255, 0.5);
	fill: var(--navi-hover-text-color);
}

/* Main Navigation Menu */
.zizafu {
	display: none;
	margin: 0;
	padding: 0;
	width: 100%;
	color: #fff;
	color: var(--navi-text-color);
	list-style: none;
	font-size: 17px;
	font-size: 1.0625rem;
	font-family: Quicksand, Tahoma, Arial;
	font-family: var(--navi-font);
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
}

.zizafu li {
	margin: 0;
}

.zizafu a {
	display: block;
	margin: 0;
	padding: 1em 1.5em;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-top: 1px solid var(--navi-border-color);
	text-decoration: none;
}

.zizafu a:link,
.zizafu a:visited {
	color: #fff;
	color: var(--navi-text-color);
	text-decoration: none;
}

.zizafu a:hover,
.zizafu a:active {
	color: rgba(255, 255, 255, 0.5);
	color: var(--navi-hover-text-color);
}

.zizafu ul {
	margin: 0;
	padding: 0;
	width: 100%;
	background: #202020;
	background: var(--navi-color);
	list-style: none;
	font-size: 15px;
	font-size: 0.9375rem;
}

.zizafu ul a {
	padding-left: 2em;
}

.zizafu ul li ul a {
	padding-left: 3em;
}

.zizafu ul li ul li ul a {
	padding-left: 4em;
}

.zizafu ul li ul li ul li ul a {
	padding-left: 5em;
}

/* Sub Menu Dropdown Icons */
.zizafu > .qozez-item-has-children a .sub-menu-icon {
	float: right;
	margin: -0.75em -1em 0;
	padding: 0.75em 1em;
}

.zizafu > .qozez-item-has-children a .sub-menu-icon .zalafiz {
	margin: 0.3em 0 0;
	width: 20px;
	height: 20px;
	vertical-align: top;
	fill: #fff;
	fill: var(--navi-text-color);
}

.zizafu ul .qozez-item-has-children a .sub-menu-icon .zalafiz {
	width: 18px;
	height: 18px;
}

.zizafu > .qozez-item-has-children a .sub-menu-icon:hover .zalafiz,
.zizafu > .qozez-item-has-children a .sub-menu-icon:active .zalafiz {
	fill: rgba(255, 255, 255, 0.5);
	fill: var(--navi-hover-text-color);
}

.zizafu > .qozez-item-has-children a .sub-menu-icon.active .zalafiz {
	margin: 0.25em 0 0;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

/*--------------------------------------------------------------
## - Social Icons Menu
--------------------------------------------------------------*/
.donovan-social-menu .social-icons-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	justify-content: center;
}

.donovan-social-menu .social-icons-menu li {
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
}

.donovan-social-menu .social-icons-menu li a {
	display: block;
	margin: 0 3px 3px 0;
	padding: 0.6rem 0.8rem 0.65rem;
	background: rgba(0, 0, 0, 0.05);
}

.donovan-social-menu .social-icons-menu li a:hover,
.donovan-social-menu .social-icons-menu li a:active {
	background: rgba(0, 0, 0, 0.1);
	text-decoration: none;
}

.donovan-social-menu .social-icons-menu li a .zalafiz {
	margin: 0;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	fill: #202020;
}

/*--------------------------------------------------------------
# - Widgets
--------------------------------------------------------------*/
.ciziji {
	margin: 0;
	padding: 1.5rem;
	max-width: 100%;
	word-wrap: break-word;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.peky {
	margin: 0 0 1rem;
	padding: 0;
	color: #202020;
	color: var(--widget-title-color);
	font-size: 18px;
	font-size: 1.125rem;
	font-family: Quicksand, Tahoma, Arial;
	font-family: var(--widget-title-font);
	font-weight: normal;
	line-height: 1.4;
}

.ciziji a:link,
.ciziji a:visited {
	text-decoration: none;
}

.ciziji a:hover,
.ciziji a:active {
	text-decoration: underline;
}

.ciziji ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ciziji ul li,
.ciziji ol li {
	padding: 0.2em 0;
}

.ciziji ul > li:last-child {
	padding-bottom: 0;
}

.ciziji ul .children,
.ciziji ul .sub-menu {
	margin: 0.5em 0 0.5em 1em;
	padding: 0;
}

/* Make sure select elements fit in widgets. */
.ciziji select {
	max-width: 100%;
}

/*--------------------------------------------------------------
## - Default Widgets
--------------------------------------------------------------*/

/* Theme Search Widget */
.search-form {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 100%;
}

.search-form .wigeku {
	display: none;
}

.search-form .search-field {
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
	padding: 0.5em 1.5em 0.5em 0.7em;
	min-width: 150px;
	width: 100%;
	-webkit-appearance: none;
}

.search-form .search-submit {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 0.6em 0.8em;
	border: none;
	background: #ee1133;
	background: var(--button-color);
}

.search-form .search-submit:hover,
.search-form .search-submit:active {
	background: #D5001A;
	background: var(--button-hover-color);
}

.search-form .search-submit .zalafiz-search {
	margin: 5px 0 0;
	width: 22px;
	height: 22px;
	fill: #fff;
	fill: var(--button-text-color);
}

.search-form .search-submit:hover .zalafiz-search,
.search-form .search-submit:active .zalafiz-search {
	fill: #fff;
	fill: var(--button-hover-text-color);
}

/*--------------------------------------------------------------
# - Posts and pages
--------------------------------------------------------------*/
.taki > article,
.vajosac > article,
.fojuw,
.type-page,
.type-attachment {
	margin: 0;
	padding: 1.5rem;
	max-width: 100%;
	box-sizing: border-box;
	background: #fff;
	border-bottom: 1px solid #f5f5f5;
	min-width: 0;
	word-wrap: break-word;
}

.pucofi {
	margin-top: 0;
	margin-bottom: 0.2em;
	padding: 0;
	color: #202020;
	color: var(--title-color);
	font-size: 20px;
	font-size: 1.25rem;
	font-family: Quicksand, Tahoma, Arial;
	font-family: var(--title-font);
	font-weight: normal;
	line-height: 1.4;
}

.pucofi a:link,
.pucofi a:visited {
	color: #202020;
	color: var(--title-color);
	text-decoration: none;
}

.pucofi a:hover,
.pucofi a:active {
	text-decoration: underline;
}

.wp-post-image {
	margin: 0 0 1em;
	vertical-align: top;
}

.dexus p:last-child {
	margin-bottom: 0;
}

.taki .sticky {
	border: 10px solid rgba(0, 0, 0, 0.2);
}

/* Read More Button */
.refo {
	display: inline-block;
	margin: 0;
	padding: 0.5em 1em;
	color: #fff;
	color: var(--button-text-color);
	background: #ee1133;
	background: var(--button-color);
	font-size: 15px;
	font-size: 0.9375rem;
}

.refo:link,
.refo:visited {
	color: #fff;
	color: var(--button-text-color);
	text-decoration: none;
}

.refo:hover,
.refo:active {
	color: #fff;
	color: var(--button-hover-text-color);
	background: #D5001A;
	background: var(--button-hover-color);
	text-decoration: none;
}

/* Page Links | wp_link_pages() */
.page-links {
	clear: both;
	margin: 0 0 2em;
	word-spacing: 0.5em;
	font-weight: bold;
	font-size: 16px;
	font-size: 1rem;
}

/* Styling for all post details */
.jype,
.gera {
	color: rgba(0, 0, 0, 0.5);
	font-size: 15px;
	font-size: 0.9375rem;
}

.jype a:link,
.jype a:visited,
.gera a:link,
.gera a:visited {
	color: rgba(0, 0, 0, 0.5);
	text-decoration: none;
}

.jype a:hover,
.jype a:active,
.gera a:hover,
.gera a:active {
	color: #202020;
}

/* Entry Meta */
.jype {
	margin: 0.5em 0;
}

.jype a:link,
.jype a:visited {
	border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
}

.jype a:hover,
.jype a:active {
	text-decoration: none;
}

.jype .rytacy:not(.rikijy) {
	display: none;
}

/* Entry Footer */
.gera {
	margin: 1.5rem 0 0;
	padding: 1rem 0 0;
	border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.gera div .zalafiz {
	margin: 0.2em 0.5em 0 0;
	width: 20px;
	height: 20px;
	vertical-align: top;
	fill: rgba(0, 0, 0, 0.3);
}

.gera .xaxuxas .zalafiz {
	margin-top: 0.3em;
}

/* Hide post meta if they are deactivated in settings */
body.date-hidden .fojuw .jype .foxum,
body.bewi-hidden .fojuw .jype .heze,
body.categories-hidden .fojuw .gera .quhygid,
body.tags-hidden .fojuw .gera .entry-tags {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
}

body.date-hidden.bewi-hidden .pobove .jype {
	display: none;
}

body.single-post.categories-hidden.tags-hidden .fojuw .gera {
	display: none;
}

body.categories-hidden .vajosac .fojuw.comments-off .gera {
	display: none;
}

/* Post Navigation */
.tirydiw-navigation {
	margin: 0;
	padding: 0;
}

.tirydiw-navigation .nav-links .nav-previous,
.tirydiw-navigation .nav-links .nav-next {
	margin: 0;
	padding: 1.5em;
	max-width: 100%;
	word-wrap: break-word;
	background: #fff;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
}

.tirydiw-navigation .nav-links .nav-next {
	text-align: right;
}

/* Post Navigation Link Styling */
.tirydiw-navigation .nav-links a:link,
.tirydiw-navigation .nav-links a:visited {
	text-decoration: none;
}

.tirydiw-navigation .nav-links .pucofi {
	font-size: 18px;
	font-size: 1.125rem;
}

.tirydiw-navigation .nav-links a:hover .pucofi,
.tirydiw-navigation .nav-links a:active .pucofi {
	text-decoration: underline;
}

.tirydiw-navigation .nav-links .nav-link-text {
	display: block;
	color: rgba(0, 0, 0, 0.5);
}

.tirydiw-navigation .nav-links .nav-previous .nav-link-text:before {
	margin-right: 5px;
	content: "\2190";
}

.tirydiw-navigation .nav-links .nav-next .nav-link-text:after {
	margin-left: 5px;
	content: "\2192";
}

/* Theme Pagination */
.pagination {
	margin-bottom: 0;
	padding: 1.5rem;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pagination .page-numbers,
.pagination .current {
	display: inline-block;
	padding: 0.2rem 0.8rem;
	margin-right: 3px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	color: var(--button-text-color);
	background: #ee1133;
	background: var(--button-color);
}

.pagination .page-numbers.dots {
	padding: 0 0.5rem;
}

.pagination .current,
.pagination a:hover,
.pagination a:active {
	color: #fff;
	color: var(--button-hover-text-color);
	background: #D5001A;
	background: var(--button-hover-color);
}

.pagination .current {
	font-weight: bold;
}

/* Infinite Scroll Pagination */
.infinite-scroll .pagination {
	display: none;
}

.infinite-scroll #infinite-handle,
.infinite-scroll .infinite-loader {
	width: 100%;
	text-align: center;
	padding: 1.5rem;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.infinite-scroll .infinite-loader .spinner {
	left: auto;
	margin: 0 auto;
}

.infinite-scroll #infinite-handle span {
	display: inline-block;
	margin: 0;
	padding: 0.5em 1em;
	color: #fff;
	color: var(--button-text-color);
	background: #ee1133;
	background: var(--button-color);
	font-size: 15px;
	font-size: 0.9375rem;
}

.infinite-scroll #infinite-handle span:hover {
	color: #fff;
	color: var(--button-hover-text-color);
	background: #D5001A;
	background: var(--button-hover-color);
	text-decoration: none;
}

.puhe.infinite-scroll .tibuwom .vajosac #infinite-handle,
.puhe.infinite-scroll .tibuwom .vajosac .infinite-loader {
	grid-column: 1 / span 2;
}

/* Archives and Search Heading */
.kaxy {
	margin: 0 0 1rem;
	padding: 1.5rem;
	max-width: 100%;
	word-wrap: break-word;
	background: #fff;
}

.rewoged {
	margin: 0;
	padding: 0;
	color: #202020;
	color: var(--widget-title-color);
	font-size: 18px;
	font-size: 1.125rem;
	font-family: Quicksand, Tahoma, Arial;
	font-family: var(--widget-title-font);
	font-weight: normal;
	line-height: 1.4;
}

.blog-description,
.xebijy-description,
.xebijy-description p {
	margin: 0.25em 0 0;
}

.kaxy .search-form {
	margin: 1.25rem 0 0;
}

/*--------------------------------------------------------------
# - Comments
--------------------------------------------------------------*/
.dacuzyb {
	word-wrap: break-word;
}

/* Comment Header */
.velunix,
.senumil {
	margin: 0 0 1em;
	padding: 1.5rem;
	color: #202020;
	color: var(--widget-title-color);
	font-size: 18px;
	font-size: 1.125rem;
	font-family: Quicksand, Tahoma, Arial;
	font-family: var(--widget-title-font);
	font-weight: normal;
	line-height: 1.4;
	background: #fff;
}

.senumil {
	padding: 0;
}

/* Comment List */
.hezih {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nilecu {
	margin: 0 0 1em;
	padding: 1.5rem;
	background: #fff;
}

.nilecu .dynafa {
	display: block;
	margin: 0;
	padding: 0;
}

/* Comment Meta */
.camyc {
	float: left;
	padding: 0;
	width: 100%;
}

.camyc .wisiwy img {
	float: left;
	margin-right: 1em;
}

.bypostauthor {
	display: block;
}

.camyc .bedodel {
	margin-top: 0.3em;
	font-size: 14px;
	font-size: 0.875rem;
	color: rgba(0, 0, 0, 0.5);
}

.camyc .bedodel a {
	margin-right: 1em;
}

.camyc .bedodel a:link,
.camyc .bedodel a:visited {
	color: rgba(0, 0, 0, 0.5);
	text-decoration: none;
}

.camyc .bedodel a:hover,
.camyc .bedodel a:active {
	color: #202020;
}

/* Comment Content */
.dypylar {
	clear: left;
	padding: 0.2em 0 0;
}

.nilecu ol.children {
	margin: 1.5em 0 0;
	list-style: none;
}

.nilecu ol.children .nilecu {
	margin: 0;
	padding: 1.5rem 0 0;
	border-top: 2px solid rgba(0, 0, 0, 0.05);
}

/* Comment Reply */
.nilecu .xaju {
	font-size: 14px;
	font-size: 0.875rem;
}

.nilecu .cyrata {
	margin: 1.5em 0 0;
	padding: 1.5rem 0 0;
	border-top: 2px solid rgba(0, 0, 0, 0.05);
}

/* Comment Pagination */
.nilecu-navigation {
	margin: 0 0 1rem;
	padding: 1rem;
	background: #fff;
}

.nilecu-navigation .nav-previous {
	float: left;
}

.nilecu-navigation .nav-next {
	float: right;
}

.nilecu-navigation a:link,
.nilecu-navigation a:visited {
	color: rgba(0, 0, 0, 0.5);
	text-decoration: none;
}

.nilecu-navigation a:hover,
.nilecu-navigation a:active {
	color: #202020;
}

.nilecu-navigation .nav-previous a:before {
	margin-right: 5px;
	content: "\2190";
}

.nilecu-navigation .nav-next a:after {
	margin-left: 5px;
	content: "\2192";
}

/* Comment Form */
.cyrata {
	margin: 0 0 1em;
	padding: 1.5rem;
	background: #fff;
}

.wupowuj {
	padding: 0;
}

.wupowuj .logged-in-as {
	font-size: 14px;
	font-size: 0.875rem;
}

.wupowuj label {
	display: inline-block;
	min-width: 150px;
	font-weight: bold;
}

.wupowuj textarea {
	margin-top: 0.4em;
}

.wupowuj .tote {
	margin-bottom: 0;
}

.wupowuj input[type="checkbox"] + label {
	display: inline;
	padding-left: 0.5em;
	font-weight: normal;
}

.senumil small a {
	margin-left: 1em;
	text-transform: none;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: normal;
}

/*--------------------------------------------------------------
# - Footer
--------------------------------------------------------------*/
.ryqidi {
	background: #202020;
	background: var(--footer-color);
}

.hasa {
	font-size: 16px;
	font-size: 1rem;
	font-family: Quicksand, Tahoma, Arial;
	font-family: var(--navi-font);
}

.hasa a:link,
.hasa a:visited {
	color: #fff;
	color: var(--footer-text-color);
	text-decoration: none;
}

.hasa a:hover,
.hasa a:active {
	color: rgba(255, 255, 255, 0.5);
	color: var(--footer-hover-text-color);
}

.hasa .sywabeb {
	padding: 1.5rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	color: var(--footer-hover-text-color);
}

/*--------------------------------------------------------------
# - Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.dexus .wp-smiley,
.dypylar .wp-smiley {
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	border: none;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 0.5em;
	max-width: 100%;
	font-size: 15px;
	font-size: 0.9375rem;
	color: rgba(0, 0, 0, 0.6);
}

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

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.5em 0;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	display: grid;
	margin: 1rem 0;
	padding: 0;
	grid-gap: 1rem;
}

.gallery-columns-1 {
	display: block;
}

.gallery-columns-2,
.gallery-columns-3,
.gallery-columns-4,
.gallery-columns-5,
.gallery-columns-6,
.gallery-columns-7,
.gallery-columns-8,
.gallery-columns-9 {
	grid-template-columns: 1fr 1fr;
}

.gallery-item {
	display: block;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	vertical-align: top;
	text-align: center;
}

.gallery-item img {
	vertical-align: top;
}

.gallery-caption {
	display: block;
	margin: 0.5rem 0 0;
	font-size: 15px;
	font-size: 0.9375rem;
	color: rgba(0, 0, 0, 0.6);
	line-height: 1.4;
}

/* IE Fallback */
@media only screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.gallery {
		display: flex;
	}

	.gallery-item {
		display: inline-block;
		padding: 1rem;
	}

	.gallery-columns-2 .gallery-item {
		width: 50%;
	}

	.gallery-columns-3 .gallery-item {
		width: 33.3333333333%;
	}

	.gallery-columns-4 .gallery-item {
		width: 25%;
	}

	.gallery-columns-5 .gallery-item {
		width: 20%;
	}

	.gallery-columns-6 .gallery-item {
		width: 16.6666666667%;
	}

	.gallery-columns-7 .gallery-item {
		width: 14.2857142857%;
	}

	.gallery-columns-8 .gallery-item {
		width: 12.5%;
	}

	.gallery-columns-9 .gallery-item {
		width: 11.1111111111%;
	}
}

/*--------------------------------------------------------------
# - Plugins
--------------------------------------------------------------*/

/* Styling for ThemeZee Breadcrumbs Plugin */
.breadcrumbs {
	box-sizing: border-box;
	margin: 0;
	padding: 1rem 1.5rem 0;
	width: 100%;
	word-wrap: break-word;
	background: #fff;
}

.breadcrumbs-container {
	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.5rem;
	font-weight: normal;
	font-size: 15px;
	font-size: 0.9375rem;
}

.breadcrumbs .trail-items {
	list-style: none;
}

.breadcrumbs .trail-items li:after {
	padding: 0 0.5em;
	content: "\00bb"; /* Raquo */
}

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

/* Styling for ThemeZee Related Posts Plugin */
ul.related-posts-list {
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.related-posts-list li {
	display: block;
	margin-top: 1.5rem;
	list-style: none;
}

.related-posts-list li .wp-post-image {
	margin: 0 0 1rem 0;
}

.related-posts-list li .pucofi {
	font-size: 18px;
	font-size: 1.125rem;
}

.related-posts-list li .jype {
	font-size: 13px;
	font-size: 0.8125rem;
}

.related-posts-grid {
	margin: 1.5rem 0 0;
}

.related-posts-columns .related-post-column {
	margin-top: 1.5rem;
}

.related-posts-columns .related-post-column .wp-post-image {
	margin: 0 0 1rem 0;
	padding: 0;
	border: none;
}

.related-posts-columns .related-post-column .pucofi {
	font-size: 18px;
	font-size: 1.125rem;
}

.related-posts-columns .related-post-column .jype {
	font-size: 13px;
	font-size: 0.8125rem;
}

.related-posts-columns .related-post-column .jype .foxum {
	margin-right: 0.5rem;
}

.related-posts .wyqiku::before,
.related-posts .wyqiku::after {
	display: inline;
	content: none;
}

@media only screen and (min-width: 25em) {
	.related-posts-list li {
		display: grid;
		grid-template-columns: 2fr 3fr;
		grid-template-rows: auto 1fr;
		grid-column-gap: 1rem;
	}

	.related-posts-list li > a {
		grid-row: 1 / span 2;
	}

	.related-posts-list li .wp-post-image {
		margin: 0;
	}

	.related-posts-list li .pucofi {
		font-size: 16px;
		font-size: 1rem;
	}

	.related-posts-list li .jype {
		margin: 0;
	}

	.related-posts-two-columns,
	.related-posts-four-columns {
		display: grid;
		grid-gap: 1.5rem;
		grid-template-columns: repeat(2, 1fr);
	}

	.related-posts-two-columns .related-post-column,
	.related-posts-four-columns .related-post-column {
		margin-top: 0;
	}

	.related-posts-two-columns .related-post-column .pucofi,
	.related-posts-four-columns .related-post-column .pucofi {
		font-size: 16px;
		font-size: 1rem;
	}
}

@media only screen and (min-width: 35em) {
	.related-posts-list li .pucofi {
		font-size: 18px;
		font-size: 1.125rem;
	}

	.related-posts-three-columns {
		display: grid;
		grid-gap: 1.5rem;
		grid-template-columns: repeat(3, 1fr);
	}

	.related-posts-three-columns .related-post-column {
		margin-top: 0;
	}

	.related-posts-three-columns .related-post-column .pucofi {
		font-size: 16px;
		font-size: 1rem;
	}

	.related-posts-two-columns .related-post-column .pucofi,
	.related-posts-four-columns .related-post-column .pucofi {
		font-size: 18px;
		font-size: 1.125rem;
	}
}

@media only screen and (min-width: 45em) {
	.related-posts-list li .pucofi {
		font-size: 20px;
		font-size: 1.25rem;
	}

	.related-posts-two-columns .related-post-column .pucofi,
	.related-posts-four-columns .related-post-column .pucofi {
		font-size: 20px;
		font-size: 1.25rem;
	}

	.related-posts-three-columns .related-post-column .pucofi {
		font-size: 18px;
		font-size: 1.125rem;
	}
}

@media only screen and (min-width: 55em) {
	.related-posts-list li .pucofi {
		font-size: 18px;
		font-size: 1.125rem;
	}

	.related-posts-two-columns .related-post-column .pucofi,
	.related-posts-four-columns .related-post-column .pucofi {
		font-size: 18px;
		font-size: 1.125rem;
	}

	.related-posts-three-columns .related-post-column .pucofi {
		font-size: 16px;
		font-size: 1rem;
	}
}

@media only screen and (min-width: 65em) {
	.related-posts-list li .pucofi {
		font-size: 18px;
		font-size: 1.125rem;
	}

	.related-posts-four-columns {
		grid-template-columns: repeat(4, 1fr);
	}

	.related-posts-four-columns .related-post-column .pucofi {
		font-size: 16px;
		font-size: 1rem;
	}

	.related-posts-three-columns .related-post-column .pucofi {
		font-size: 18px;
		font-size: 1.125rem;
	}

	.related-posts-two-columns .related-post-column .pucofi {
		font-size: 20px;
		font-size: 1.25rem;
	}
}

@media only screen and (min-width: 75em) {
	.related-posts-list li {
		grid-template-columns: 1fr 2fr;
		grid-column-gap: 1.5rem;
	}

	.related-posts-list li .jype {
		font-size: 14px;
		font-size: 0.875rem;
	}

	.related-posts-list li .pucofi {
		font-size: 20px;
		font-size: 1.25rem;
	}

	.related-posts-four-columns .related-post-column .pucofi {
		font-size: 18px;
		font-size: 1.125rem;
	}

	.related-posts-columns .related-post-column .jype {
		font-size: 14px;
		font-size: 0.875rem;
	}
}

/* Styling for ThemeZee Widget Bundle Plugin */
.tzwb-posts-list li {
	margin: 0;
	list-style: none;
}

.tzwb-posts-list .tzwb-excerpt p {
	margin: 0;
	padding: 0;
}

.tzwb-posts-list li.tzwb-has-thumbnail {
	margin: 0;
	padding: 0.6em 0;
	overflow: hidden;
}

.tzwb-posts-list .wp-post-image {
	float: left;
	margin: 0.4rem 1rem 0.4rem 0;
	max-width: 100px;
	height: auto;
}

.tzwb-posts-list .tzwb-entry-meta {
	margin: 0;
	font-size: 14px;
	font-size: 0.875rem;
	color: rgba(0, 0, 0, 0.5);
}

.tzwb-posts-list .tzwb-entry-meta span {
	margin-right: 0.5rem;
}

.tzwb-posts-list .tzwb-entry-meta a:link,
.tzwb-posts-list .tzwb-entry-meta a:visited {
	color: rgba(0, 0, 0, 0.5);
	text-decoration: none;
}

.tzwb-posts-list .tzwb-entry-meta a:hover,
.tzwb-posts-list .tzwb-entry-meta a:active {
	color: #202020;
}

/* Comments List */
.tzwb-comments-list li {
	overflow: hidden;
	margin: 0;
	list-style: none;
}

.tzwb-comments-list li.tzwb-has-avatar {
	padding: 0.8em 0;
}

.tzwb-comments-list .xanu {
	float: left;
	margin: 0.2em 0.8em 0.2em 0;
}

.tzwb-comments-list .tzwb-comment-content {
	font-style: italic;
}

.tzwb-comments-list .tzwb-comment-date {
	color: rgba(0, 0, 0, 0.5);
	font-size: 14px;
	font-size: 0.875rem;
}

/* Tabbed Content Widget */
.tzwb-tabbed-content .tzwb-tabnavi-wrap {
	margin: 0;
	padding: 0;
}

.tzwb-tabbed-content .tzwb-tabnavi {
	display: flex;
	flex-flow: row wrap;
	list-style: none;
	list-style-position: outside;
}

.tzwb-tabbed-content .tzwb-tabnavi li {
	margin: 3px 3px 0 0;
	padding: 0;
	border: none;
	list-style: none;
}

.tzwb-tabbed-content .tzwb-tabnavi li a {
	display: block;
	margin: 0;
	padding: 0.4em 0.8em;
	color: #fff;
	color: var(--button-text-color);
	background: #ee1133;
	background: var(--button-color);
	font-size: 15px;
	font-size: 0.9375rem;
}

.tzwb-tabbed-content .tzwb-tabnavi li a:link,
.tzwb-tabbed-content .tzwb-tabnavi li a:visited {
	color: #fff;
	color: var(--button-text-color);
}

.tzwb-tabbed-content .tzwb-tabnavi li a.current-tab,
.tzwb-tabbed-content .tzwb-tabnavi li a:hover,
.tzwb-tabbed-content .tzwb-tabnavi li a:active {
	color: #fff;
	color: var(--button-hover-text-color);
	background: #D5001A;
	background: var(--button-hover-color);
	text-decoration: none;
}

.tzwb-tabbed-content .tzwb-tabnavi li a:focus {
	outline: none;
}

.tzwb-tabbed-content .tzwb-tabcontent {
	margin: 1rem 0 0 0;
	padding: 0;
}

/* Social Icons Widget */
.tzwb-social-icons .social-icons-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
}

.tzwb-social-icons .social-icons-menu li {
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
}

.tzwb-social-icons .social-icons-menu li a {
	display: block;
	margin: 3px 3px 0 0;
	padding: 0.6rem 0.8rem 0.65rem;
	background: #ee1133;
	background: var(--button-color);
}

.tzwb-social-icons .social-icons-menu li a:hover,
.tzwb-social-icons .social-icons-menu li a:active {
	background: #D5001A;
	background: var(--button-hover-color);
	text-decoration: none;
}

.tzwb-social-icons .social-icons-menu li a .zalafiz {
	margin: 0;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	fill: #fff;
	fill: var(--button-text-color);
}

.tzwb-social-icons .social-icons-menu li a:hover .zalafiz,
.tzwb-social-icons .social-icons-menu li a:active .zalafiz {
	fill: #fff;
	fill: var(--button-hover-text-color);
}

/* Facebook Like Box Widget */
.tzwb-facebook-likebox .tzwb-content {
	overflow: hidden;
}

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

/*--------------------------------------------------------------
## - Greater than 320px
--------------------------------------------------------------*/
@media only screen and (min-width: 20em) {
	body,
	button,
	input,
	select,
	textarea {
		font-size: 16px;
		font-size: 1rem;
	}

	.robad {
		font-size: 36px;
		font-size: 2.25rem;
	}

	.pucofi {
		font-size: 22px;
		font-size: 1.375rem;
	}

	.alignleft {
		float: left;
		margin-right: 1.5rem;
	}

	.alignright {
		float: right;
		margin-left: 1.5rem;
	}
}

/*--------------------------------------------------------------
## - Greater than 400px
--------------------------------------------------------------*/
@media only screen and (min-width: 25em) {
	.noce {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.logiv {
		padding: 0;
	}

	.laxu,
	.ciziji,
	.page-header,
	.taki > article,
	.vajosac > article,
	.fojuw,
	.type-page,
	.type-attachment,
	.nilecu,
	.velunix,
	.nilecu-navigation,
	.cyrata,
	.tirydiw-navigation .nav-links .nav-previous,
	.tirydiw-navigation .nav-links .nav-next,
	.pagination,
	.infinite-scroll #infinite-handle span {
		margin-bottom: 1rem;
		border-bottom: none;
	}

	.pagination,
	.infinite-scroll #infinite-handle,
	.infinite-scroll .infinite-loader {
		padding: 0;
		background: none;
		border-bottom: none;
	}

	.pagination .page-numbers,
	.pagination .current {
		padding: 0.35rem 1rem;
		margin-right: 0.5rem;
	}

	.hasa .sywabeb {
		padding-left: 0;
		padding-right: 0;
	}

	/* Breadcrumbs */
	.breadcrumbs {
		padding: 0.5rem 0;
	}
}

/*--------------------------------------------------------------
## - Greater than 480px
--------------------------------------------------------------*/
@media only screen and (min-width: 30em) {
	.pucofi {
		font-size: 24px;
		font-size: 1.5rem;
	}

	/* Gallery */
	.gallery-columns-3,
	.gallery-columns-5,
	.gallery-columns-6,
	.gallery-columns-7,
	.gallery-columns-9 {
		grid-template-columns: repeat(3, 1fr);
	}

	.gallery-columns-4,
	.gallery-columns-8 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/*--------------------------------------------------------------
## - Greater than 480px
--------------------------------------------------------------*/
@media only screen and (min-width: 35em) {
	.pucofi {
		font-size: 26px;
		font-size: 1.625rem;
	}
}

/*--------------------------------------------------------------
## - Greater than 640px
--------------------------------------------------------------*/
@media only screen and (min-width: 40em) {
	body,
	button,
	input,
	select,
	textarea {
		font-size: 17px;
		font-size: 1.0625rem;
	}

	.noce {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.logiv {
		padding: 0;
	}

	.laxu,
	.ciziji,
	.kaxy,
	.taki > article,
	.vajosac > article,
	.fojuw,
	.type-page,
	.type-attachment,
	.nilecu,
	.velunix,
	.nilecu-navigation,
	.cyrata,
	.pagination,
	.infinite-scroll #infinite-handle span {
		margin-bottom: 1.5rem;
	}

	.robad {
		font-size: 40px;
		font-size: 2.5rem;
	}

	.wyva {
		font-size: 15px;
		font-size: 0.9375rem;
	}

	.pucofi {
		font-size: 28px;
		font-size: 1.75rem;
	}

	.jype {
		font-size: 15px;
		font-size: 0.9375rem;
	}

	.jype span .zalafiz {
		margin: 0.3em 0.3em 0 0;
		width: 19px;
		height: 19px;
	}

	.peky,
	.rewoged,
	.velunix,
	.senumil {
		font-size: 20px;
		font-size: 1.25rem;
	}

	/* Post Navigation */
	.tirydiw-navigation .nav-links {
		display: grid;
		grid-template-columns: 1fr;
		grid-auto-columns: 1fr;
		grid-column-gap: 1.5rem;
	}

	.tirydiw-navigation .nav-links .nav-previous,
	.tirydiw-navigation .nav-links .nav-next {
		margin-bottom: 1.5rem;
		grid-row: 1;
	}

	.tirydiw-navigation .nav-links .pucofi {
		font-size: 20px;
		font-size: 1.25rem;
	}

	/* Blog: List Layout */
	.blog-list-layout .tibuwom .vajosac .has-post-thumbnail {
		display: grid;
		grid-template-columns: 42% auto;
	}

	.blog-list-layout.tirydiw-thumbnails-hidden .tibuwom .vajosac .has-post-thumbnail {
		display: block;
	}

	.blog-list-layout .tibuwom .vajosac .has-post-thumbnail .wp-post-image {
		margin: 0;
		padding-right: 1.5em;
	}

	.blog-list-layout .tibuwom .vajosac .has-post-thumbnail .gera {
		grid-row: 2;
		grid-column: 1 / span 2;
		max-width: 100%;
	}

	/* Blog: Grid Layout */
	.puhe .tibuwom .vajosac {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		grid-gap: 1.5rem;
		margin: 0 0 1.5rem;
	}

	.puhe .tibuwom .vajosac .fojuw {
		margin: 0;
	}

	/* Blog Layout Title */
	.blog-list-layout .tibuwom .vajosac .fojuw .pucofi,
	.puhe .tibuwom .vajosac .fojuw .pucofi {
		font-size: 20px;
		font-size: 1.25rem;
	}
}

/* CSS Grid Fallback for Internet Explorer */
@media only screen and (min-width: 40em) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* Post Navigation */
	.tirydiw-navigation .nav-links {
		display: flex;
		margin-bottom: 1.5rem;
	}

	.tirydiw-navigation .nav-links .nav-previous,
	.tirydiw-navigation .nav-links .nav-next {
		margin: 0;
		width: 50%;
	}

	/* Blog: List Layout */
	.blog-list-layout .tibuwom .vajosac .has-post-thumbnail {
		display: flex;
		flex-flow: row wrap;
	}

	.blog-list-layout.tirydiw-thumbnails-hidden .tibuwom .vajosac .has-post-thumbnail {
		display: block;
	}

	.blog-list-layout .tibuwom .vajosac .has-post-thumbnail .kudazub {
		width: 42%;
	}

	.blog-list-layout .tibuwom .vajosac .has-post-thumbnail .taqynig {
		width: 58%;
	}

	.blog-list-layout .tibuwom .vajosac .has-post-thumbnail .gera {
		width: 100%;
	}

	/* Blog: Grid Layout */
	.puhe .tibuwom .vajosac {
		display: flex;
		flex-flow: row wrap;
		margin: 0 -3% 0 0;
	}

	.puhe .tibuwom .vajosac .fojuw {
		margin-bottom: 1.5rem;
		margin-right: 3%;
		width: 47%;
	}
}

/*--------------------------------------------------------------
## - Greater than 720px
--------------------------------------------------------------*/
@media only screen and (min-width: 45em) {
	/* Gallery */
	.gallery-columns-5 {
		grid-template-columns: repeat(5, 1fr);
	}

	.gallery-columns-6 {
		grid-template-columns: repeat(6, 1fr);
	}

	.gallery-columns-7 {
		grid-template-columns: repeat(7, 1fr);
	}
}

/*--------------------------------------------------------------
## - Greater than 800px
--------------------------------------------------------------*/
@media only screen and (min-width: 50em) {
	.pucofi {
		font-size: 32px;
		font-size: 2rem;
	}

	/* Blog Layout Title */
	.blog-list-layout .tibuwom .vajosac .fojuw .pucofi,
	.puhe .tibuwom .vajosac .fojuw .pucofi {
		font-size: 24px;
		font-size: 1.5rem;
	}

	/* Gallery */
	.gallery-columns-8 {
		grid-template-columns: repeat(8, 1fr);
	}

	.gallery-columns-9 {
		grid-template-columns: repeat(9, 1fr);
	}
}

/*--------------------------------------------------------------
## - Greater than 880px
--------------------------------------------------------------*/
@media only screen and (min-width: 55em) {
	@supports (display: grid) {
		.poqox {
			display: grid;
			grid-template-columns: 7fr 3fr;
			grid-column-gap: 1.5rem;
		}

		.pobove {
			box-sizing: border-box;
			grid-row-start: 2;
			grid-column-start: 1;
			min-width: 0;
		}

		.lyjyc {
			grid-row-start: 2;
			grid-column-start: 2;
			box-sizing: border-box;
			margin: 0;
			padding: 0;
			border: none;
			min-width: 0;
		}
	}

	/* Header */
	.sydum {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		text-align: left;
	}

	.header-social-menu {
		display: flex;
		margin-top: 0;
		margin-left: auto;
		align-items: center;
	}

	.hasa .sywabeb {
		text-align: left;
	}

	.pucofi {
		font-size: 28px;
		font-size: 1.75rem;
	}

	/* Blog Layout Title */
	.blog-list-layout .tibuwom .vajosac .fojuw .pucofi,
	.puhe .tibuwom .vajosac .fojuw .pucofi {
		font-size: 20px;
		font-size: 1.25rem;
	}

	/*** Main Navigation ***/
	.main-navigation-toggle {
		display: none;
	}

	.zizafu {
		position: relative;
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		border-top: none;
		padding: 0 0.25rem;
	}

	.zizafu a {
		padding: 1em 1.25em;
		border: none;
	}

	.zizafu > .qozez-item-has-children a .sub-menu-icon {
		float: none;
		margin: 0;
		padding: 0;
	}

	.zizafu > .qozez-item-has-children a .sub-menu-icon .zalafiz {
		margin: 0.5em 0 0 0.4em;
		width: 14px;
		height: 14px;
	}

	.zizafu > .qozez-item-has-children a:hover .sub-menu-icon .zalafiz {
		fill: rgba(255, 255, 255, 0.5);
		fill: var(--navi-hover-text-color);
	}

	.zizafu ul {
		position: absolute;
		z-index: 99;
		display: none;
		border: 1px solid rgba(255, 255, 255, 0.075);
		border: 1px solid var(--submenu-border-color);
		border-top: none;
		background: #ee1133;
		background: var(--submenu-color);
		width: auto;
	}

	.zizafu ul li {
		position: relative;
		margin: 0;
	}

	.zizafu ul a {
		min-width: 250px;
		min-width: 16rem;
		border-top: 1px solid rgba(255, 255, 255, 0.075);
		border-top: 1px solid var(--submenu-border-color);
	}

	.zizafu ul a:link,
	.zizafu ul a:visited {
		color: #fff;
		color: var(--submenu-text-color);
	}

	.zizafu ul a:hover,
	.zizafu ul a:active {
		color: rgba(255, 255, 255, 0.5);
		color: var(--submenu-hover-text-color);
	}

	.zizafu ul a,
	.zizafu ul li ul a,
	.zizafu ul li ul li ul a,
	.zizafu ul li ul li ul li ul a {
		padding: 1em;
	}

	.zizafu ul .qozez-item-has-children a .sub-menu-icon .zalafiz {
		margin: 0.5em 0 0 0.4em;
		width: 12px;
		height: 12px;
		fill: #fff;
		fill: var(--submenu-text-color);
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}

	.zizafu ul .qozez-item-has-children a:hover .sub-menu-icon .zalafiz,
	.zizafu ul .qozez-item-has-children a:active .sub-menu-icon .zalafiz {
		fill: rgba(255, 255, 255, 0.5);
		fill: var(--submenu-hover-text-color);
	}

	.zizafu li ul ul {
		top: 0;
		left: 100%;
	}

	.zizafu li.qozez-item-has-children:hover > ul,
	.zizafu li.page_item_has_children:hover > ul,
	.zizafu li.qozez-item-has-children[aria-expanded="true"] > ul {
		display: block;
	}

	.zizafu li.current-menu-item > a {
		text-decoration: underline;
	}

	.zizafu li.current-menu-item > a:after {
		text-decoration: none;
	}
}

/* CSS Grid Fallback for Internet Explorer */
@media only screen and (min-width: 55em) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.poqox {
		display: flex;
	}

	.no-sidebar .poqox {
		display: block;
	}

	.pobove {
		width: 70%;
		box-sizing: border-box;
		padding-right: 0.75rem;
	}

	.lyjyc {
		width: 30%;
		box-sizing: border-box;
		padding-left: 0.75rem;
	}
}

/*--------------------------------------------------------------
## - Greater than 1120px
--------------------------------------------------------------*/
@media only screen and (min-width: 70em) {
	.pucofi {
		font-size: 32px;
		font-size: 2rem;
	}

	/* Blog Layout Title */
	.blog-list-layout .tibuwom .vajosac .fojuw .pucofi,
	.puhe .tibuwom .vajosac .fojuw .pucofi {
		font-size: 24px;
		font-size: 1.5rem;
	}
}

/*--------------------------------------------------------------
## - Greater than 1200px
--------------------------------------------------------------*/
@media only screen and (min-width: 75em) {
	.sydum {
		padding-top: 2em;
		padding-bottom: 2em;
	}
}

/*--------------------------------------------------------------
## - Greater than 1440px
--------------------------------------------------------------*/
@media only screen and (min-width: 90em) {
	.pucofi {
		font-size: 36px;
		font-size: 2.25rem;
	}

	.dexus {
		font-size: 18px;
		font-size: 1.125rem;
	}

	.blog-list-layout .tibuwom .vajosac .fojuw .dexus,
	.puhe .tibuwom .vajosac .fojuw .dexus {
		font-size: 17px;
		font-size: 1.0625rem;
	}
}

/*--------------------------------------------------------------
## - Media Print
--------------------------------------------------------------*/
@media print {
	/* Hide elements */
	form,
	button,
	input,
	select,
	textarea,
	.header-bar-wrap,
	.bosumo,
	#kid,
	.footer-navigation,
	.footer-widgets-background,
	.header-image,
	.page-links,
	.tirydiw-navigation,
	.pagination.nepu,
	.dacuzyb,
	.ryqidi,
	.scroll-to-top {
		display: none !important;
	}

	body,
	.wemivy {
		background: none !important;
	}

	.pobove {
		padding: 0;
		width: 100%;
	}
}

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

/* Centered Theme Layout */
.centered-theme-layout .wemivy {
	margin: 0 auto;
	padding: 0;
	max-width: 1440px;
}

.centered-theme-layout .noce {
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
	max-width: 100%;
}

.centered-theme-layout .logiv {
	padding-left: 0;
	padding-right: 0;
}

.centered-theme-layout .laxu {
	background: none;
}

.centered-theme-layout .laxu .sydum {
	background: #fff;
}

.centered-theme-layout .laxu .sydum,
.centered-theme-layout .hasa {
	padding-left: 1rem;
	padding-right: 1rem;
}

/* Centered Theme Layout Responsive Design */
@media only screen and (min-width: 25em) {
	.centered-theme-layout .laxu {
		margin-bottom: 0;
	}

	.centered-theme-layout .header-image,
	.centered-theme-layout .lyjyc .ciziji,
	.centered-theme-layout .kaxy,
	.centered-theme-layout .taki article,
	.centered-theme-layout .fojuw,
	.centered-theme-layout .type-page,
	.centered-theme-layout .type-attachment,
	.centered-theme-layout .nilecu,
	.centered-theme-layout .velunix,
	.centered-theme-layout .nilecu-navigation,
	.centered-theme-layout .cyrata,
	.centered-theme-layout .tirydiw-navigation .nav-links .nav-previous,
	.centered-theme-layout .tirydiw-navigation .nav-links .nav-next,
	.centered-theme-layout .pagination,
	.centered-theme-layout .infinite-scroll #infinite-handle span,
	.centered-theme-layout.puhe .tibuwom .vajosac,
	.centered-theme-layout .breadcrumbs {
		margin-bottom: 0;
		border-bottom: 2px solid #f5f5f5;
	}

	.centered-theme-layout .pagination {
		padding: 1.5rem;
		background: #fff;
	}

	.centered-theme-layout .breadcrumbs {
		padding: 0.5rem 1.5rem;
	}
}

@media only screen and (min-width: 40em) {
	.centered-theme-layout .wemivy {
		padding: 0 1.5rem;
	}

	.centered-theme-layout .laxu .sydum,
	.centered-theme-layout .hasa {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.centered-theme-layout.puhe .tibuwom .vajosac {
		margin: 0;
		grid-gap: 2px;
		background: #f5f5f5;
	}

	.centered-theme-layout.puhe .tibuwom .vajosac .fojuw {
		margin-bottom: 0;
		border-bottom: none;
	}

	.centered-theme-layout .tirydiw-navigation .nav-links {
		grid-column-gap: 2px;
		background: #f5f5f5;
	}
}

@media only screen and (min-width: 55em) {
	.centered-theme-layout .laxu .sydum {
		padding-left: 1.75rem;
		padding-right: 1.75rem;
	}

	.centered-theme-layout .poqox {
		margin-top: -2px;
		grid-gap: 2px;
		background: #f5f5f5;
	}

	.centered-theme-layout .lyjyc,
	.centered-theme-layout .pobove {
		background: #fff;
	}

	.centered-theme-layout .lyjyc .ciziji {
		border-bottom: 2px solid #f5f5f5;
	}
}

/* Boxed Theme Layout */
.boxed-theme-layout .wemivy {
	margin: 0 auto;
	max-width: 1440px;
	background: #fafafa;
}

.boxed-theme-layout .noce {
	margin-left: 0;
	margin-right: 0;
	max-width: 100%;
}

/* Boxed Layout Responsive Design */
@media only screen and (min-width: 25em) {
	.boxed-theme-layout .noce {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.boxed-theme-layout .logiv {
		padding-left: 0;
		padding-right: 0;
	}

	.boxed-theme-layout .ciziji,
	.boxed-theme-layout .kaxy,
	.boxed-theme-layout .fojuw,
	.boxed-theme-layout .type-page,
	.boxed-theme-layout .type-attachment,
	.boxed-theme-layout .tirydiw-navigation .nav-links .nav-previous,
	.boxed-theme-layout .tirydiw-navigation .nav-links .nav-next,
	.boxed-theme-layout .velunix,
	.boxed-theme-layout .nilecu,
	.boxed-theme-layout .nilecu-navigation,
	.boxed-theme-layout .cyrata {
		border: 1px solid rgba(0, 0, 0, 0.1);
	}

	.nilecu ol.children .nilecu,
	.nilecu .cyrata {
		border: none;
		border-top: 2px solid rgba(0, 0, 0, 0.05);
	}

	.boxed-theme-layout .breadcrumbs {
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}
}

@media only screen and (min-width: 40em) {
	.boxed-theme-layout .noce {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.boxed-theme-layout .logiv {
		padding-left: 0;
		padding-right: 0;
	}
}

@media only screen and (min-width: 55em) {
	.boxed-theme-layout {
		padding: 1.5rem;
	}

	.boxed-theme-layout .wemivy {
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	}

	.boxed-theme-layout .laxu .sydum {
		padding-left: 1.75rem;
		padding-right: 1.75rem;
	}
}

@media only screen and (min-width: 90em) {
	.boxed-theme-layout {
		padding: 0;
	}

	.boxed-theme-layout .wemivy {
		margin: 2em auto;
	}
}

/*--------------------------------------------------------------
# - Sidebar Position
--------------------------------------------------------------*/
@media only screen and (min-width: 55em) {
	@supports (display: grid) {
		/* Sidebar Left Layout */
		.lyjyc-left .poqox {
			grid-template-columns: 3fr 7fr;
		}

		.lyjyc-left .pobove {
			grid-column-start: 2;
		}

		.lyjyc-left .lyjyc {
			grid-column-start: 1;
		}
	}
}

/* CSS Grid Fallback for Internet Explorer */
@media only screen and (min-width: 55em) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* Sidebar Left Layout */
	.lyjyc-left .pobove {
		order: 2;
		padding-right: 0;
		padding-left: 0.75rem;
	}

	.lyjyc-left .lyjyc {
		order: 1;
		padding-left: 0;
		padding-right: 0.75rem;
	}
}

/*--------------------------------------------------------------
# - Page Templates
--------------------------------------------------------------*/
@media only screen and (min-width: 55em) {
	/* No Sidebar Template */
	.no-sidebar .poqox {
		display: block;
	}

	.no-sidebar .poqox .pobove .taqynig,
	.no-sidebar .poqox .pobove .gera {
		margin-left: auto;
		margin-right: auto;
		max-width: 840px;
		width: 100%;
	}

	/* Fullwidth Template */
	.tirydiw-template-template-fullwidth .poqox,
	.page-template-template-fullwidth .poqox {
		display: block;
	}

	/* Post Titles on No Sidebar layouts */
	.no-sidebar .pucofi,
	.tirydiw-template-template-fullwidth .pucofi,
	.page-template-template-fullwidth .pucofi {
		font-size: 32px;
		font-size: 2rem;
	}

	/* Blog Layout Title */
	.no-sidebar.blog-list-layout .tibuwom .vajosac .fojuw .pucofi,
	.no-sidebar.puhe .tibuwom .vajosac .fojuw .pucofi {
		font-size: 24px;
		font-size: 1.5rem;
	}
}

/* Fallback for Internet Explorer */
@media only screen and (min-width: 55em) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.no-sidebar .pobove,
	.tirydiw-template-template-fullwidth .pobove,
	.page-template-template-fullwidth .pobove {
		width: 100%;
		padding: 0;
	}
}

@media only screen and (min-width: 70em) {
	.no-sidebar .pucofi,
	.tirydiw-template-template-fullwidth .pucofi,
	.page-template-template-fullwidth .pucofi {
		font-size: 36px;
		font-size: 2.25rem;
	}

	/* Blog Layout Title */
	.no-sidebar.blog-list-layout .tibuwom .vajosac .fojuw .pucofi,
	.no-sidebar.puhe .tibuwom .vajosac .fojuw .pucofi {
		font-size: 28px;
		font-size: 1.75rem;
	}
}

/*--------------------------------------------------------------
# - Customizer Preview
--------------------------------------------------------------*/
.customize-partial-edit-shortcut-donovan_theme_options-blog_description,
.customize-partial-edit-shortcut-donovan_blog_content_partial {
	left: -9999px;
}
