/**
 * Note : Use this table of contents to find the class you want to change.
 * 
 * >>> TABLE OF CONTENTS <<<
 * 
 * # Google Font
 * # Base Settings
 *   ## All Elements
 *   ## Body
 *   ## Colors
 *   ## Typhography
 *   ## Layout/Container
 * # Header
 *   ## Header Top
 * # Main
 *   ## Main Content
 *      ### Content Post Pinned
 *      ### Grid List Toggle
 * 		### Specific Page Title
 *      ### Main Post
 *      ### Load More Button
 *   ## Sidebar
 *   ## Main Content Single
 *   ## 404 Page
 * # Advertisement
 *   ## Top Ads
 *   ## Bottom Related Article
 *   ## Single Post Ads
 *   ## Sidebar Ads
 * # Fixed Tools
 * # Pop Up Element
 * # Footer
 *   ## Footer Menu
 *   ## Footer Copyright
 * # Dark Mode
 *   ## Dark Body
 *   ## Dark Post Pinned
 *   ## Dark Specific Page Title
 *   ## Dark Main Post
 *   ## Dark Main Content Single
 *   ## Dark 404 Page
 */

/**
 * # Google Font
 */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

/**
 * # Base Settings
 */

*, *:before, *:after {
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	padding: 0;
	background: var(--body_color);
	color: var(--black);
}

/**
 * ## Colors
 */

:root {
	--black: #14151f;
	--blue: #5840ef;
	--bluelight: #1ca1f2;
	--bluelight2: #4264f0;
	--bluefooter: #0a34d8;
	--white: #ffffff;

	--menu_hover: #f5f5f5;
	--grid_list_toggle: #dddfe2;
	--body_color: #F9FBFD;

	/*--- Dark Mode Colors ---*/
	--dark_body_bg: #15202B;
	--dark_article_bg: #213040;
}

/**
 * ## Typhography
 */

a {
	text-decoration: none;
}

/**
 * ## Layout/Container
 */

.container {
	max-width: 1100px;
	height: auto;
	margin: 0 auto;
	padding: 0 10px;
}

@media (max-width: 1068px) {
	.container {
		max-width: 668px;
	}
}

/**
 * # Header
 */

.header {
	position: relative;
	width: 100%;
	height: auto;
}

.header-overlay {
	position: absolute;
	width: 100%;
	height: 170px;
	background: var(--blue);
	top: 0;
	left: 0;
	box-shadow: rgba(0, 0, 0, 0.20) 0px 5px 15px;
}

@media (max-width: 1068px) {
	.header-overlay {
		height: 300px;
	}
}

/**
 * ## Header Top
 */

.header-top-top {
	width: 100%;
	height: 140px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 1068px) {
	.header-top-top {
		height: 210px;
		flex-direction: column;
		justify-content: center;
	}
}

.site-title h1 {
	margin: 0;
	font-weight: 600;
	font-size: 35px;
	text-shadow: 0 2px 5px rgb(0 0 0 / 30%);
}

@media (max-width: 1068px) {
	.site-title h1 {
		margin-bottom: 30px
	}
}

.site-title h1 a {
	color: var(--white);
}

/* ------- Code Separator ------- */

.social-and-search {
	display: flex;
	flex-direction: row;
	align-items: center;
}

/* ------- Code Separator ------- */

.social-media {
	margin-right: 10px;
}

.social-media ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.social-media ul li {
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 40px;
	margin-left: 5px;
	text-align: center;
	background: var(--white);
	float: left;
}

.social-media ul li a {
	display: block;
	color: var(--black);
}

/* ------- Code Separator ------- */

.search {
	position: relative;
}

.search .search-button {
	position: absolute;
	background: transparent;
	border: none;
	outline: none;
	padding: 12px 15px;
	font-size: 20px;
	cursor: pointer;
}

.search input[type=text] {
	display: block;
	width: 350px;
	padding: 15px 45px;
	outline: none;
	border-radius: 30px;
	border: none;
	background: var(--white);
	color: var(--black);
}

.search .voice-button {
	position: absolute;
	right: 0;
	top: 0;
	background: transparent;
	border: none;
	outline: none;
	padding: 12px 15px;
	font-size: 20px;
	cursor: pointer;
}

@media (max-width: 668px) {
	.search {
		display: none;
		overflow: hidden;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		padding: 15px;
		margin-left: 0;
		z-index: 1100;
	}

	.search input[type=text] {
		width: 100%;
	}

	.search .voice-button {
		top: 15px;
		right: 15px;
	}
}

/* ------- Code Separator ------- */

.main-menu {
	overflow: hidden;
	background: var(--white);
	border-radius: 40px;
	box-shadow: rgba(0, 0, 0, 0.10) 0px 5px 15px;
}

.main-menu-button-mobile {
	display: none;
	float: left;
	padding: 15px 30px;
	margin: 10px;
	border-radius: 30px;
	background: var(--blue);
	color: var(--white);
	font-weight: 600;
	text-transform: uppercase;
}

.main-menu-search-mobile {
	display: none;
	float: right;
	padding: 15px 30px;
	margin: 10px;
	border-radius: 30px;
	background: var(--blue);
	color: var(--white);
	font-weight: 600;
	text-transform: uppercase;
}

.main-menu-mobile {
	display: flex;
	flex-direction: row;
}

@media (max-width: 1068px) {
	.main-menu-button-mobile, .main-menu-search-mobile {
		display: inline-block;
	}
	.main-menu-mobile {
		display: unset;
		margin-left: -100%;
		position: fixed;
		top: 0;
		left: 0;
		width: 80%;
		height: 100vh;
		background: var(--white);
		overflow: auto;
		transition: .2s;
		-webkit-transition: .2s;
		-moz-transition: .2s;
		-o-transition: .2s;
		z-index: 1200;
	}
}

.main-menu .home a {
	display: inline-block;
	color: var(--black);
	padding: 20px 30px;
}

.main-menu .home a.close-menu {
	display: none;
}

@media (max-width: 1068px) {
	.main-menu .home a {
		padding: 20px 15px;
	}

	.main-menu .home a.close-menu {
		display: inline-block;
		float: right;
		font-size: 14px;
	}
}

.main-menu .home a:hover {
	background: var(--menu_hover);
}

.main-menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.main-menu ul li {
	float: left;
}

.main-menu ul li a {
	display: inline-block;
	padding: 22px 15px;
	text-transform: uppercase;
	color: var(--black);
	font-size: 13px;
	font-weight: 600;
}

.main-menu ul li a:hover {
	background: var(--menu_hover);
}

.main-menu ul li .iconmenu {
	width: 16px;
	height: 16px;
	margin-right: 5px;
	vertical-align: middle;
}

.main-menu ul li a .plus-minus-icon {
	font-size: 11px;
	margin-left: 5px;
}

@media (max-width: 1068px) {
	.main-menu ul {
		width: 100%;
	}

	.main-menu ul li {
		float: none;
	}

	.main-menu ul li a {
		display: block;
		padding: 15px;
	}

	.main-menu ul li a .plus-minus-icon {
		float: right;
	}
}

/* ------- Child Menu ------- */

.main-menu ul li ul {
	display: none;
	position: absolute;
	background: var(--white);
	box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	z-index: 1000;
}

.main-menu ul li ul li {
	float: none;
	width: 150px;
}

@media (max-width: 1068px) {
	.main-menu ul li ul li {
		width: 100%;
	}
}

.main-menu ul li ul li a {
	display: block;
	padding: 10px 15px;
	text-transform: capitalize;
}

.main-menu ul li ul li a i {
	margin-right: 5px;
}

@media (max-width: 1068px) {
	.main-menu ul li ul {
		position: relative;
		box-shadow: none;
		background: var(--menu_hover);
	}

	.main-menu ul li ul li a {
		padding: 10px 25px;
	}
}

/* ------- Main Menu Dark Mode Checkbox ------- */

.flexing-the-dark-mode {
	display: flex !important;
	flex-direction: row;
	align-items: center;
}

.dark-mode-toggle {
	position: relative;
	overflow: hidden;
	display: inline-block;
	margin-right: 5px;
}

.dark-mode-checkbox {
	-webkit-appearance: none;
  	visibilty: hidden;
  	display: none;
}

.dark-mode-check {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 15px;
	background: #ddd;
	cursor: pointer;
	border-radius: 30px;
	transition: ease-in 0.5s;
}

.dark-mode-check:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    background: #fff;
    width: 11px;
    height: 11px;
    border-radius: 20px;
    transition: 0.5s;
}

.dark-mode-check:after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    background: #fff;
    width: 11px;
    height: 11px;
    border-radius: 20px;
    transition: 0.5s;
    transform: translateX(50px);
}

.dark-mode-checkbox:checked ~ .dark-mode-check {
  	background: var(--dark_body_bg);
}

.dark-mode-checkbox:checked ~ .dark-mode-check:after {
	transform: translateX(0);
}

.dark-mode-checkbox:checked ~ .dark-mode-check:before {
	transform: translateX(-50px);
}

/**
 * # Main
 */

.main {
	margin-top: 40px;
}

@media (max-width: 1068px) {
	.main {
		margin-top: 30px;
	}
}

/**
 * ## Main Content
 */

.main-content {
	float: left;
	width: 730px;
}

@media (max-width: 1068px) {
	.main-content {
		float: none;
		width: 100%;
	}
}

/**
 * ### Content Post Pinned
 */

.pinned-post {
	overflow: hidden;
	border-radius: 15px;
	border: 1px solid var(--menu_hover);
	box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px;

	display: flex;
	flex-direction: row;
}

.pinned-post-image {
	overflow: hidden;
	position: relative;
	margin: 0;
	padding: 0;
	width: 40%;
	height: auto;
	cursor: pointer;
}

.pinned-post-image:hover .pinned-post-overlay {
	opacity: 1;
}

.pinned-post-overlay {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-o-transition: .2s;
	z-index: 1;
}

.pinned-post-image:hover img {
	transform: scale(1.1);
}

.pinned-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-o-transition: .2s;
}

.pinned-post-detail {
	padding: 15px;
	width: 60%;
}

.pinned-post-detail h2 {
	font-size: 20px;
	line-height: 1.3;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.pinned-post-detail h2 a {
	color: var(--black);
}

.pinned-post-detail p {
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 520px) {
	.pinned-post {
		flex-direction: column;
	}

	.pinned-post-image {
		width: 100%;
	}

	.pinned-post-detail {
		width: 100%;
	}
}

/**
 * ### Grid List Toggle
 */

.grid-list-toggle {
	overflow: hidden;
	width: 100%;
	padding: 15px 20px;
	background: var(--white);
	margin: 30px 0;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 15px;
	font-size: 14px;
	border-radius: 30px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.grid-list-title {
	display: inline-block;
	margin-right: 10px;
}

.grid-view-button {
	background: var(--grid_list_toggle);
	padding: 2px 4px;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-right: 6px;
	cursor: pointer;
	border-radius: 2px;
}

.grid-view-button i {
	font-size: 20px;
	margin-right: 5px;
}

.list-view-button {
	background: var(--grid_list_toggle);
	padding: 2px 4px;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-right: 10px;
	cursor: pointer;
	border-radius: 2px;
}

.list-view-button i {
	font-size: 20px;
	margin-right: 5px;
}

.grid-view-button.active, .list-view-button.active {
	background: var(--bluelight);
	color: var(--white);
}

/**
 * ### Specific Page Title
 */

.specific-page-title {
	overflow: hidden;
	text-align: center;
}

.specific-page-title h3 {
	display: block;
	font-size: 15px;
	font-weight: 400;
	margin: 0 0 20px 0;
	line-height: 1.4;
}

.specific-page-title h3 a {
	font-weight: 600;
	color: var(--bluelight);
}

/**
 * ### Main Post
 */

.main-post {
	margin-bottom: 5px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}

.main-post-the-post {
	width: 48.5%;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 15px;
	margin-bottom: 20px;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-o-transition: .2s;
}

@media (max-width: 468px) {
	.main-post-the-post {
		margin-bottom: 15px;
	}
}

.main-post-image {
	position: relative;
	width: 100%;
	height: 240px;
	overflow: hidden;
	margin: 0;
}

@media (max-width: 668px) {
	.main-post-image {
		height: 200px;
	}
}

@media (max-width: 568px) {
	.main-post-image {
		height: 150px;
	}
}

@media (max-width: 368px) {
	.main-post-image {
		height: 100px;
	}
}

.main-post-image:hover .main-post-overlay {
	opacity: 1;
}

.main-post-overlay {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-o-transition: .2s;
	z-index: 1;
}

.main-post-image:hover img {
	transform: scale(1.1);
}

.main-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-o-transition: .2s;
}

.main-post-detail {
	padding: 20px;
}

.main-post-detail h2 {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0;
}

@media (max-width: 468px) {
	.main-post-detail h2 {
		font-size: 14px;
	}
}

.main-post-detail h2 a {
	color: var(--black);
}

/* ------- Main Post List View ------- */

.main-post.list-view {
	display: flex;
	flex-direction: column;
	justify-content: unset;
}

.main-post.list-view .main-post-the-post {
	width: 100%;
	display: flex;
	flex-direction: row;
	margin-bottom: 30px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
}

@media (max-width: 468px) {
	.main-post.list-view .main-post-the-post {
		margin-bottom: 20px;
	}
}

.main-post.list-view .main-post-image {
	width: 40%;
	height: 200px;
}

@media (max-width: 668px) {
	.main-post.list-view .main-post-image {
		height: 160px;
	}
}

@media (max-width: 468px) {
	.main-post.list-view .main-post-image {
		height: 100px;
	}
}

.main-post.list-view .main-post-detail {
	width: 60%;
}

@media (max-width: 468px) {
	.main-post.list-view .main-post-detail {
		padding: 10px;
	}
}

/**
 * ### Load More Button
 */

.load-more-button {
	overflow: hidden;
	width: 100%;
	padding: 15px;
	background: var(--white);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
	font-size: 13px;
	cursor: pointer;
	border-radius: 30px;
	text-align: center;
	margin-bottom: 20px;
	font-weight: 600;
}

/**
 * ## Sidebar
 */

.sidebar {
	-webkit-position: sticky;
	position: sticky;
	top: 20px;
	float: right;
	width: 330px;
}

@media (max-width: 1068px) {
	.sidebar {
		float: none;
		width: 100%;
	}
}

.sidebar .widget {
	margin: 0 0 20px 0;
}

.widget_media_image {
	width: 100%;
	height: auto;
}

.widget_media_image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/**
 * ## Main Content Single
 */

.main-content-single {
	background: var(--white);
	border-radius: 3px;
	margin-bottom: 40px;
}

.breadcrumbs {
	padding: 20px;
	font-size: 15px;
}

.breadcrumbs span {
	margin-right: 5px;
}

.breadcrumbs span a {
	color: var(--black);
}

.single-post-thumbnail-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
 	margin: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.5));
}

.single-post-thumbnail-title {
	position: relative;
	width: 100%;
	height: 350px;
}

@media (max-width: 468px) {
	.single-post-thumbnail-title {
		height: 250px;
	}
}

.single-post-thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
 	margin: 0;
	width: 100%;
	height: 100%;
}

.single-post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-post-title {
	position: absolute;
	bottom: 0;
 	margin: 0;
	width: 100%;
	height: auto;
	padding: 20px 30px;
}

.single-post-title h1 {
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.5px;
}

@media (max-width: 468px) {
	.single-post-title {
		padding: 15px 20px;
	}

	.single-post-title h1 {
		font-size: 20px;
	}
}

.single-post-title h1 a {
	color: var(--white);
}

.single-post-title-category a {
	font-size: 13px;
	padding: 4px 8px;
	border: 1px solid var(--white);
	color: var(--white);
}

.single-post-author-date {
	padding: 15px 0;
	margin: 0 20px 20px 20px;
	font-size: 13px;
	border-bottom: 3px dashed #ddd;
	color: var(--black);
}

.single-post-author-date a {
	font-weight: 700;
	color: var(--black);
}

.single-post-page-title {
	overflow: hidden;
	padding: 0 20px;
}

.single-post-page-title h1 {
	margin: 15px 0;
}

.single-post-the-post {
	padding: 0 20px 20px 20px;
}

.single-post-the-post p {
	display: inline-block;
	line-height: 2.0;
	font-size: 14px;
}

.single-post-the-post h1 {
	display: inline-block;
	line-height: 1.3;
}

.single-post-the-post h2,
.single-post-the-post h3,
.single-post-the-post h4,
.single-post-the-post h5,
.single-post-the-post h6 {
	display: inline-block;
	line-height: 1.4;
}

.single-post-the-post figure {
	margin: 20px 0 15px 0;
	width: 100% !important;
}

.single-post-the-post figure:hover img {
	transform: scale(1.1);
}

.single-post-the-post figure img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-o-transition: .2s;
}

.single-post-the-post figure figcaption {
	text-align: center;
	font-size: 13px;
}

.single-post-the-post pre {
	padding: 20px;
	background: #f3f3f3;
	border-left: 6px solid var(--blue);
	height: 300px;
	overflow: auto;
}

.single-post-the-post pre code {
	font-size: 14px;
	line-height: 1.3;
}

.single-post-the-post ul li,
.single-post-the-post ol li {
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.6;
}

.single-post-share {
	padding: 30px 0;
}

.single-post-share-title {
	text-align: center;
	position: relative;
	margin-bottom: 10px;
}

.single-post-share-title span.line {
	position: absolute;
	left: 0;
	top: 10px;
	width: 100%;
	height: 2px;
	background: #efefef;
}

.single-post-share-title span.title {
	position: relative;
	padding: 0 10px;
	font-size: 17px;
	font-weight: 600;
	background: var(--white);
}

.single-post-share-social ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.single-post-share-social ul li {
	float: left;
	width: 25%;
}

.single-post-share-social ul li a {
	display: block;
	padding: 5px 0;
	text-align: center;
	color: var(--white);
	font-size: 18px;
}

.single-post-share-social ul li a.fb {
	background: #627AAD;
}

.single-post-share-social ul li a.tw {
	background: #77BDF1;
}

.single-post-share-social ul li a.in {
	background: #0077B5;
}

.single-post-share-social ul li a.pin {
	background: #D54D52;
}

/* ------- Donation Box ------- */

.single-post-donation {
	padding: 20px;
	margin: 30px 20px;
	border-radius: 15px;
	background: #eaeaea;
	color: var(--black);
	display: flex;
	flex-direction: row;
}

.donation-icon {
	padding: 10px;
	border-radius: 10px;
	background: var(--blue);
	color: var(--white);
	text-align: center;
	margin-right: 15px;
	-webkit-animation: donasibnc 1s linear 1s infinite normal;
	animation: donasibnc 1s linear 1s infinite normal;
}

@keyframes donasibnc {
	0%, 100% {
		-webkit-transform: scale3d(1,1,1);
		transform: scale3d(1,1,1);
	}

	30% {
		-webkit-transform: scale3d(1.25,.75,1);
		transform: scale3d(1.25,.75,1);
	}

	40% {
		-webkit-transform: scale3d(.75,1.25,1);
		transform: scale3d(.75,1.25,1);
	}

	50% {
		-webkit-transform: scale3d(1.15,.85,1);
		transform: scale3d(1.15,.85,1);
	}

	65% {
		-webkit-transform: scale3d(.95,1.05,1);
		transform: scale3d(.95,1.05,1);
	}

	75% {
		-webkit-transform: scale3d(1.05,.95,1);
		transform: scale3d(1.05,.95,1);
	}
}

.donation-icon .love-icon {
	font-size: 35px;
	color: red;
	margin-bottom: 5px;
}

.donation-icon p {
	margin: 0;
	font-weight: bold;
	font-size: 14px;
}

.donation-detail h3 {
	margin: 0 0 10px 0;
	font-size: 18px;
}

.donation-detail p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

@media (max-width: 468px) {
	.donation-detail p {
		font-size: 12px;
	}
}

/* ------- Single Post Comments ------- */

#disqus_thread {
	padding: 0 20px;
}

#reactions {
	color: var(--white);
}

.single-post-comments {
	overflow: hidden;
	margin: 30px 20px;
}

.single-post-comments #reply-title {
	display: block;
	font-size: 16px;
	font-weight: bold;
	text-transform: capitalize;
}

.single-post-comments .logged-in-as a {
	display: inline-block;
	font-size: small;
	color: var(--black);
	text-decoration: none;
}

.single-post-comments .logged-in-as a:hover {
	color: var(--black);
}

.single-post-comments .comment-notes {
	font-size: 14px;
	color: var(--black);
	line-height: 1.3;
}

.single-post-comments .comment-form-comment {
	display: block;
	padding: 10px 0 0 0;
}

.single-post-comments label {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: bold;
}

.single-post-comments .comment-form-comment textarea {
	display: block;
	width: 100%;
	padding: 15px;
	outline: none;
	border: 1px solid #ddd;
	font-family: inherit;
	font-size: 14px;
	border-radius: 5px;
}

.single-post-comments input[type=text],
.single-post-comments input[type=email],
.single-post-comments input[type=url] {
	display: block;
	width: 100%;
	padding: 10px;
	outline: none;
	border: 1px solid #ddd;
	font-family: inherit;
	font-size: 14px;
	border-radius: 5px;
}

.single-post-comments .comment-form-cookies-consent {
	display: flex;
	flex-direction: row;
}

.single-post-comments .comment-form-cookies-consent label {
	display: inline-block;
	font-weight: normal;
	margin-left: 10px;
	line-height: 1.3;
	margin-top: -4px;
}

.single-post-comments .form-submit input[type=submit] {
	display: block;
	width: 100%;
	border: none;
	padding: 10px;
	font-size: 14px;
	background: var(--blue);
	color: var(--white);
	font-family: inherit;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	outline: none;
}

.single-post-comments .post-comments {
	list-style-type: none;
	margin: 40px 0;
	padding: 0;
}

.single-post-comments .post-comments li ul {
	list-style-type: none;
}

.single-post-comments .post-comments .comment-body {
	display: block;
	padding: 20px;
	background: #f4f4f4;
	border-radius: 5px;
	margin-bottom: 20px;
}

.single-post-comments .post-comments .comment-meta {
	overflow: hidden;
	margin-bottom: 10px;
}

.single-post-comments .post-comments .comment-author {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 10px;
}

.single-post-comments .post-comments .comment-author img {
	width: 30px;
	height: 30px;
	object-fit: cover;
	border-radius: 30px;
	margin-right: 10px;
}

.single-post-comments .post-comments .comment-author a {
	font-size: 14px;
	color: var(--blue);
	text-decoration: none;
	margin-right: 5px;
}

.single-post-comments .post-comments .comment-author .says {
	display: none;
	font-size: 12px;
	color: var(--black);
}

.single-post-comments .post-comments .comment-metadata a {
	font-size: 13px;
	color: var(--black);
	text-decoration: none;
}

.single-post-comments .post-comments .comment-metadata .edit-link a {
	color: var(--blue);
	font-weight: bold;
	margin-left: 5px;
}

.single-post-comments .post-comments .comment-content {
	overflow: hidden;
	font-size: 15px;
	padding-bottom: 10px;
	line-height: 1.5;
}

.single-post-comments .post-comments .reply a {
	display: inline-block;
	padding: 4px 8px;
	background: var(--blue);
	color: var(--white);
	font-size: 13px;
	border-radius: 2px;
	text-decoration: none;
}

/* ------- Single Post Comments ------- */

.single-post-next-prev {
	overflow: hidden;
	padding: 30px 20px;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}

.single-post-next-prev a {
	display: inline-block;
	padding: 15px;
	border-radius: 30px;
	background: var(--white);
	color: var(--blue);
	font-size: 14px;
	box-shadow: rgba(0, 0, 0, 0.07) 0px 5px 15px;
}

@media (max-width: 368px) {
	.single-post-next-prev a {
		padding: 10px;
		font-size: 12px;
	}
}

/**
 * # 404 Page
 */

.main-404 {
	background: var(--white);
}

.main-404-the-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 70vh;
}

.main-404-the-content > p {
	color: var(--black);
	line-height: 1.5;
	font-weight: 600;
	margin: 10px 0;
	text-align: center;
}

.main-404-the-content > p a {
	color: var(--blue);
}

.main-404-the-content h2 {
	text-align: center;
	margin: 0;
	font-size: 140px;
	font-weight: 700;
	color: #e86e6e;
	text-shadow: 6px 6px #efefef;
}

/**
 * # Advertisement
 */

/**
 * ## Top Ads
 */

.top-ads {
	overflow: hidden;
	margin-top: 40px;
}

@media (max-width: 1068px) {
	.top-ads {
		margin-top: 50px;
	}
}

.top-ads img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/**
 * ## Single Post Ads
 */

.single-post-ads {
	overflow: hidden;
	margin: 30px 20px;
}

.single-post-ads img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/**
 * ## Bottom Related Article
 */

.bottom-related-article-title {
	overflow: hidden;
	background: var(--white);
	box-shadow: rgba(0, 0, 0, 0.09) 0px 5px 15px;
	padding: 15px;
	text-align: center;
	font-size: 14px;
	margin: 40px 50px 20px 50px;
	border-radius: 30px;
}

@media (max-width: 768px) {
	.bottom-related-article-title {
		margin: 40px 15px 20px 15px;
	}
}

.bottom-related-article {
	background: var(--white);
}

.bottom-related-article .container {
	overflow: hidden;
	max-width: unset;
	padding: 0;
	margin: 0 50px;
}

@media (max-width: 768px) {
	.bottom-related-article .container {
		margin: 0 15px;
	}
}

.bottom-related-article-container {
	padding: 25px 0;
	text-align: center;
}

.bottom-related-article-container img {
	height: auto;
	object-fit: cover;
}

@media (max-width: 468px) {
	.bottom-related-article-container img {
		width: 100%;
	}
}

/**
 * ## Bottom Related Article
 */

.sidebar-ads {
	width: 100%;
	height: auto;
}

.sidebar-ads img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/**
 * # Fixed Tools
 */

.fixed-tools {
	position: fixed;
	bottom: 20px;
	right: 20px;
}

.go-to-top {
	display: none;
	margin-bottom: 10px;
}

.go-to-top span {
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 30px;
	text-align: center;
	background: var(--blue);
	color: var(--white);
	font-size: 18px;
	cursor: pointer;
}

.increase-font-size {
	margin-bottom: 10px;
}

.increase-font-size span, .decrease-font-size span {
	display: block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 30px;
	text-align: center;
	background: var(--blue);
	color: var(--white);
	font-size: 18px;
	cursor: pointer;
	font-weight: bold;
}

/**
 * # Pop Up Element
 */

.pop-up-container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1500;
	width: 100%;
	height: 100vh;
	display: none;
	justify-content: center;
	align-items: center;
}

.pop-up-glassmorphism {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: -1;

	background: rgba( 255, 255, 255, 0.25 );
	box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
	backdrop-filter: blur( 5.0px );
	-webkit-backdrop-filter: blur( 2.5px );
	border-radius: 10px;
	border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.pop-up-content {
	background: var(--white);
	padding: 20px;
	width: 450px;
	height: auto;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
}

@media (max-width: 470px) {
	.pop-up-content {
		width: 100%;
		margin: 0 20px;
	}
}

.pop-up-content > .the-title {
	margin-top: 5px;
	font-size: 16px;
}

.pop-up-content p {
	font-size: 14px;
	line-height: 1.5;
}

.pop-up-content p span {
	display: block;
	margin-bottom: 5px;
}

.pop-up-close {
	margin-top: 20px;
	width: 100%;
	text-align: right;
}

.pop-up-close button {
	display: inline-block;
	outline: none;
	border: 0;
	padding: 5px 15px;
	background: var(--bluelight);
	font-size: 14px;
	color: var(--white);
	border-radius: 4px;
	cursor: pointer;
	transition: .1s;
	-webkit-transition: .1s;
	-moz-transition: .1s;
	-o-transition: .1s;
}

.pop-up-close button:hover {
	background: orangered;
}

/**
 * # Footer
 */

/**
 * ## Footer Menu
 */

.footer-menu {
	background: var(--bluelight2);
	color: var(--white);
	padding: 20px 0;
	display: flex;
	justify-content: center;

}

.footer-menu-menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.footer-menu-menu ul li {
	float: left;
}

.footer-menu-menu ul li a {
	font-size: 14px;
	color: inherit;
	margin: 0 15px;
	border-bottom: 2px solid transparent;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-o-transition: .2s;
}

@media (max-width: 468px) {
	.footer-menu-menu ul li a {
		margin: 0 10px;
		font-size: 13px;
	}
}

.footer-menu-menu ul li a:hover {
	border-bottom: 2px solid var(--white);
}

.footer-menu-menu ul li:last-child:after {
	content: "";
}

.footer-menu-menu ul li:after {
	content: "/";
}

/**
 * ## Footer Copyright
 */

.footer-copyright {
	background: var(--bluefooter);
	color: var(--white);
	padding: 20px 0;
	display: flex;
	justify-content: center;
}

.footer-copyright-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 13px;
}

.footer-copyright-text a.dmca-badge {
	margin-bottom: 5px;
}

.footer-copyright-text a.dmca-badge img {
	background: #d7dee0;
}

.footer-copyright-text span {
	text-align: center;
	line-height: 1.3;
}

.footer-copyright-text a {
	color: #ddd;
}

/**
 * # Dark Mode
 */

/**
 * ## Dark Body
 */

body.dark-mode {
	background: var(--dark_body_bg);
}

/**
 * ## Dark Post Pinned
 */

.dark-mode .pinned-post {
	background: var(--dark_article_bg);
}

.dark-mode .pinned-post-detail {
	color: var(--white);
}

.dark-mode .pinned-post-detail h2 a {
	color: inherit;
}

/**
 * ## Dark Specific Page Title
 */

.dark-mode .specific-page-title {
	color: var(--white);
}

/**
 * ## Dark Main Post
 */

.dark-mode .main-post-the-post {
	background: var(--dark_article_bg);
}

.dark-mode .main-post-detail h2 a {
	color: var(--white);
}

/**
 * ## Dark Main Content Single
 */

.dark-mode .main-content-single {
	background: var(--dark_article_bg);
	color: var(--white);
}

.dark-mode .breadcrumbs a {
	color: inherit;
}

.dark-mode .single-post-author-date {
	color: inherit;
}

.dark-mode .single-post-author-date a {
	color: inherit;
}

.dark-mode .single-post-the-post pre {
	color: var(--black);
}

.dark-mode .single-post-share-title span.title {
	background: var(--dark_article_bg);
}

.dark-mode .single-post-comments {
	color: var(--white) !important;
}

/**
 * ## Dark 404 Page
 */

.dark-mode .main-404 {
	background: var(--dark_body_bg);
	color: var(--white);
}

.dark-mode .main-404-the-content > p {
	color: inherit;
}