/*
Theme Name: Noted
License: Located in the 'Licensing' folder
License URI: Located in the 'Licensing' folder
Description: Blogging Theme.
Author: Daison
Author URI: https://daison.me/
Theme URI: https://daison.me/themes/noted
Version: 1.0
Tested up to: 6.7
Requires PHP: 7
Tags: two-columns, three-columns, threaded-comments, right-sidebar
Text Domain: noted
*/

/*

[Table of contents]

1. Reset
2. WordPress Classes Styling
3. Generic Styling
4. Main Header Styling
5. Main Nav Styling
6. Header Elements Styling
7. Modal Search Form Styling
8. Hidden Sidebar Styling
9. Homepage Intro Section Styling
10. Recent Posts Styling
11. Sidebar Styling
12. Single Post Styling
13. Page Templates Styling
14. Error Page Styling
15. Main Footer Styling

/*-------------------------------------------*\
	1. Reset
\*-------------------------------------------*/

* {
	margin: 0;
	padding: 0;
}

a img,
iframe,
fieldset {
	border: none;	
}

li {
	list-style: none;
	line-height: 24px;
}

.group::after {
  content: "";
  display: table;
  clear: both;
}

article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section { 
    display: block; 
}

.is_stuck,
.stick-it {
  	transform: translate3d(0,0,0);
}

.dark {
	color-scheme: dark;
}

:root {
	--accent-color: #CAF41F;
	--heading-font-family: 'Poppins', sans-serif;
	--heading-font-weight: 600;
	--body-font-family: 'Poppins', sans-serif;
}

/*-------------------------------------------*\
	2. WordPress Classes Styling
\*-------------------------------------------*/

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.gallery-caption a {
	display: inline;
}

img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img {
	max-width: 100%;
	height: auto;
}

.alignleft,
img.alignleft,
.wp-block-image.is-resized.alignleft {
	display: inline;
	float: left;
	margin: 6px 24px 6px 0;
}

.alignright,
img.alignright,
.wp-block-image.is-resized.alignright {
	display: inline;
	float: right;
	margin: 6px 0 6px 20px;
}

.aligncenter,
img.aligncenter {
	clear: both;
	display: block;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
}

.alignnone {
	margin-bottom: 30px;
}

img.alignnone {
	margin: 0;
	text-align: center;
}

.entry
.wp-caption-text {
  	font-size: 13px;
	font-style: italic;
	color: #a0a4ad;
}

address {
    font-style: italic;
    margin: 0 0 20px 0;
}

pre {
    background: #f5f5f5;
    font-family: monospace;
    margin: 20px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    line-height: 1.5;
}

code {
    padding: 3px;
    background: #f5f5f5;
    font-family: monospace;
}

/*** Blocks Styling ***/

.wp-block-group.has-background {
	padding: 20px 30px;
	margin-top: 30px;
	margin-bottom: 40px;
}

.wp-block-button
.wp-block-button__link {
	padding: 12px 38px;
	margin-bottom: 30px;
	color: #fff;
	border-radius: 10px;
	background-color: #222;
   	font-family: var(--body-font-family);
	font-size: 14px;
	font-weight: var(--heading-font-weight);
	text-decoration: none;
	text-transform: uppercase;
}

.wp-block-button
.wp-block-button__link:hover {
	background-color: var(--accent-color);
}

.is-style-outline .wp-block-button__link {
	color: #222;
   	background-color: #fff;
   	border: 2px solid #222;
}

.is-style-outline .wp-block-button__link:hover {
	color:  var(--accent-color);
   	background-color: transparent;
  	border-color:  var(--accent-color);
}

.is-style-squared 
.wp-block-button__link {
	border-radius: 0;
}

.entry .wp-block-image,
.entry .wp-block-cover {
	border-radius: 24px;
	margin-bottom: 34px;
}

.entry .wp-block-image img {
	border-radius: 24px;
}

.wp-block-cover.has-background-dim {
	background-color: #000;
}

.wp-block-image.is-resized > figcaption {
	display: block;
}

.wp-block-image figcaption,
.wp-block-video figcaption,
.wp-block-embed figcaption {
	margin-top: 0.7em;
	color: #555d66;
   	font-size: 14px;
	line-height: 1.4em;
   	text-align: center;
}

.wp-block-cover-image {
   margin-bottom: 40px;
}

.has-drop-cap:not(:focus):first-letter {
	font-size: 4em;
}

.wp-block-file .wp-block-file__button {
	background-color: #222;
}

/*** Separator Styling ***/

.wp-block-separator {
   width: 100px;
   margin: 40px 0;
   border-color: #222;
}

.wp-block-separator.is-style-wide {
   border-bottom-width: 0;
}

.wp-block-separator.is-style-wide,
.wp-block-separator.is-style-dots {
	width: 100%;
}

/*** List Blocks Styling ***/

.entry .wp-block-categories,
.entry .wp-block-archives,
.entry .wp-block-latest-posts {
	margin-bottom: 40px;
	padding-left: 0;
}

.entry 
.wp-block-categories li,
.entry 
.wp-block-archives li,
.entry 
.wp-block-latest-posts li {
	margin-bottom: 20px;
   	padding-bottom: 20px;
   	border-bottom: 1px solid #EAEAEA;
   	list-style: none;
   	color: #a0a4ad;
	list-style: none;
}

.entry 
.wp-block-categories li li:first-child,
.entry 
.wp-block-archives li li:first-child,
.entry 
.wp-block-latest-posts li li:first-child {
    padding-top: 20px;
}

.wp-block-categories.is-grid li:first-child,
.wp-block-archives.is-grid li:first-child,
.wp-block-latest-posts.is-grid li:first-child {
	padding-top: 0;
}

.entry 
.wp-block-categories li:last-child,
.entry 
.wp-block-archives li:last-child,
.entry 
.wp-block-latest-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.entry .wp-block-categories .children,
.entry .wp-block-archives .children,
.entry .wp-block-latest-posts .children {
    margin-top: 20px;
    margin-bottom: 0;
}

.entry .wp-block-categories .children li:first-child,
.entry .wp-block-archives .children li:first-child,
.entry .wp-block-latest-posts .children li:first-child {
    padding-top: 20px;
    border-top: 1px solid #EAEAEA;
}

.entry 
.wp-block-categories li a,
.entry 
.wp-block-archives li a,
.entry 
.wp-block-latest-posts li a {
	text-decoration: none;
}

.entry 
.wp-block-categories li a:hover,
.entry 
.wp-block-archives li a:hover,
.entry 
.wp-block-latest-posts li a:hover {
	color: #222;
}

/*-------------------------------------------*\
	3. Generic Styling
\*-------------------------------------------*/

.wrapper {
	position: relative;
	width: 1400px;
	margin: 0 auto;
}

.clear-both {
	clear: both;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--heading-font-family);
	font-weight: var(--heading-font-weight);
	overflow-wrap: break-word;
	color: #222;
}

h1 {
	font-size: 35px;
	line-height: 45px;
}

h2 {
	font-size: 29px;
	line-height: 35px;
}

h3 {
	font-size: 27px;
	line-height: 33px;
}

h4 {
	font-size: 23px;
	line-height: 31px;
}

h5 {
	font-size: 21px;
	line-height: 29px;
}

h6 {
	font-size: 19px;
	line-height: 25px;
}

p {
	line-height: 25px;
}

a {
	color: #222;
	text-decoration: underline;
	transition: all .3s;
}

a:hover {
	color: #A0A0A0;
	text-decoration: none;
}

body {
	color: #464646;
	background-color: #fff;
	font-family: var(--body-font-family);
	font-size: 17px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

/*** Default Styling ***/

.post-content {
	overflow-wrap: break-word;
}

.entry {
	clear: both;
	overflow-wrap: break-word;
}

.single-wrap .entry {
	margin-bottom: 37px;
}

.entry p {
	line-height: 1.59em;
}

.entry h1,
.entry h2,
.entry h3,
.entry h4,
.entry h5,
.entry h6,
.comment-text h1,
.comment-text h2,
.comment-text h3,
.comment-text h4,
.comment-text h5,
.comment-text h6 {
	margin-bottom: 18px;
}

.entry .wp-video {
	margin-top: 30px;
	margin-bottom: 34px;
}

.entry .wp-audio-shortcode {
	margin-bottom: 34px;
}

blockquote,
.wp-block-pullquote,
.wp-block-quote.is-large, 
.wp-block-quote.is-style-large {
	position: relative;
	padding-left: 51px;
	margin-bottom: 34px;
	text-align: left;
}

blockquote {
	padding: 40px 40px 42px 83px;
	background: url(images/quotation-marks.svg) 40px 40px no-repeat #fff;	
	border: 1px solid #E7E7E7;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
	border-radius: 24px;
}

.wp-block-pullquote {
    padding-top: 10px;
    padding-bottom: 0;
}

figure.wp-block-pullquote {
	padding-left: 0;
}
 
.wp-block-pullquote.is-style-solid-color {
	padding-top: 10px;
	padding-bottom: 10px;
}

.entry 
blockquote p {
	color: #222;
}

.entry 
blockquote p,
.wp-block-pullquote p,
.entry 
.wp-block-quote.is-large p, 
.entry 
.wp-block-quote.is-style-large p,
.comment-text
blockquote p,
.wp-block-pullquote.is-style-solid-color blockquote p {
   	clear: both;
   	margin-bottom: 0;
   	font-size: 23px;
    font-weight: var(--heading-font-weight);
    line-height: 1.40em;
}

.entry 
.wp-block-quote.is-large p,
.entry 
.wp-block-quote.is-style-large p {
   font-size: 28px;
   font-style: normal;
   line-height: 1.35em;
}

blockquote cite,
.wp-block-pullquote cite,
.wp-block-quote.is-large cite,
.wp-block-quote.is-style-large cite,
.wp-block-pullquote.is-style-solid-color blockquote cite,
.blockquote-footer {
	position: relative;
	display: block;
	clear: both;
	color: #8C8C8C;
	padding-left: 47px;
	margin-top: 11px;
   	font-size: 14px;
	font-style: normal;
	font-weight: var(--heading-font-weight);
	text-align: left;
   	text-transform: uppercase;
}

blockquote cite::before,
.wp-block-pullquote cite::before,
.wp-block-quote.is-large cite::before,
.wp-block-quote.is-style-large cite::before,
.wp-block-pullquote.is-style-solid-color blockquote cite::before,
.blockquote-footer::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	display: block;
	width: 40px;
	height: 2px;
	background-color: #8C8C8C;
}

blockquote.has-text-align-right cite {
	text-align: right;
}

.wp-block-quote.is-large cite,
.wp-block-quote.is-style-large cite {
	text-align: right;
}

.wp-block-pullquote.is-style-solid-color blockquote,
.wp-block-pullquote.is-style-solid-color blockquote cite {
	color: #fff;
	background-color: transparent;
}

.wp-block-pullquote.is-style-solid-color blockquote {
	padding-left: 43px;
	margin-top: 28px;
	background-image: url(images/quotation-marks-white.svg);
}

.post-nav-links {
	margin-bottom: 40px;
}

.entry p,
.widget p,
.comment-text p,
.entry 
.post-nav-links {
	margin-bottom: 34px;
}

.entry .wp-block-column {
	margin-bottom: 40px;
}

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

.entry figure,
.entry figure.wp-block-embed {
	margin-bottom: 34px;
}

.entry .is-provider-soundcloud,
.entry .wp-block-embed-youtube {
    border-radius: 24px;
    overflow: hidden;
    line-height: 0;
}

.entry .wp-block-embed-spotify iframe {
	width: 100%;
	height: 443px;
}

.blocks-gallery-caption {
	font-size: 14px;
}

.entry .wp-block-gallery ul {
	margin-bottom: 0;
}

.entry iframe,
.entry img,
.widget iframe,
.widget img,
.wp-block-audio audio {
	max-width: 100%;
}

.entry iframe {
	border-radius: 24px;
}

.widget img,
.entry img {
	height: auto;
}

.entry div {
    max-width: 100%;
}

select {
	max-width: 100%;
	height: 45px;
	padding: 0 12px;
	color: #787878;
	border-radius: 10px;
	border: none;
	border-right: 10px solid transparent;
   	background-color: #efefef;
   	font-size: 14px;
   	font-weight: var(--heading-font-weight);
   	font-family: var(--body-font-family);
	cursor: pointer;
	transition: all .3s;
}

.entry select {
	background-color: #f5f5f5;
}

select:hover {
	color: #555;
	background-color: #ebebeb;
}

.widget select {
	width: 100%;
}

.post-thumb {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
}

.post-thumb img {
	max-width: 100%;
	height: auto;
	transition: all .6s;
}

.post-thumb .thumb-link {
	display: block;
	width: 100%;
	height: inherit;
	line-height: 0;
}

.post-thumb .thumb-link:hover img,
.post-thumb.thumb-link:hover img {
	transform: scale(1.04);
}

.post-title a {
	color: #222;
	text-decoration: none;
}
  
.post-title:hover a {
	color: #555;
}

/*** Lists Styling ***/

.entry ol,
.entry ul,
.comment-text ol,
.comment-text ul {
	margin-bottom: 34px;
	padding-left: 30px;
}

.entry 
.wp-block-gallery {
	display: flex;
   flex-wrap: wrap;
	padding-left: 0;
}

.entry ul > li,
.comment-text ul > li {
	list-style: disc;
}

.entry ul ul > li,
.entry ol ul > li,
.comment-text ul ul > li,
.comment-text ol ul > li {
	list-style: circle;
}

.entry ol > li,
.comment-text ol > li {
	list-style: decimal;
}

.entry
li,
.comment-text
li {
	list-style-position: inside;
	margin-bottom: 12px;
}

.entry
li ul,
.comment-text
li ul,
.entry
li ol,
.comment-text
li ol {
	margin-top: 12px;
	margin-bottom: 12px;
}

.entry
dt,
.comment-text
dt {
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 6px;
}

.entry
dd,
.comment-text
dd {
	margin: 0;
	padding: 0 0 1.5em 0;
}

/*** Tables Styling ***/

.entry table,
.comment table {
  margin: 0 0 2rem;
  border-collapse: collapse;
  width: 100%;
}

.entry table td,
.entry table th,
.comment table td,
.comment table th,
.wp-block-table.is-style-stripes td, 
.wp-block-table.is-style-stripes th {
  	padding: 20px;
  	border: 1px solid #e7e7e7;
  	font-size: 15px;
}

.wp-block-table.is-style-stripes td, 
.wp-block-table.is-style-stripes th {
	border: transparent;
}

/*** Password Protected Posts Syling ***/

.post-password-form 
input[type=password] {
	width: 29%;
	height: 39px;
	clear: both;
	margin-left: 8px;
	padding-left: 20px;
	border-radius: 7px;
   	border: 1px solid #E0E0E0;
   	background-color: #FBFBFB;
	font-size: 16px;
   	font-family: var(--body-font-family);
   	font-weight: 400;
	color: #9e9e9e;
}

.post-password-form 
input[type=password]:focus {
	color: #464646;
    outline: none;
    border-color: #C9C9C9;
}

.post-password-form label {
	color: #222;
	font-size: 13px;
    font-weight: var(--heading-font-weight);
    text-transform: uppercase;
}

.post-password-form 
input[type=submit] {
   	height: 42px;
   	padding: 0 32px;
   	color: #fff;
   	border: none;
	border-radius: 42px;
  	background-color: #222;
   	font-family: var(--body-font-family);
   	font-weight: var(--heading-font-weight);
   	font-size: 15px;
   	line-height: 44px;
   	text-transform: uppercase;
   	cursor: pointer;
   	transition: all .3s;
}

.post-password-form 
input[type=submit]:hover {
    background-color: var(--accent-color);
	box-shadow: none;
}

/*** WordPress Blocks ***/

.entry 
.wp-block-embed-spotify {
	margin-bottom: 34px;
}

.wp-block-embed-spotify.aligncenter iframe {
	width: 100%;
}

.entry 
.blocks-gallery-grid {
	padding-left: 0;
}

.wp-block-gallery .blocks-gallery-image figcaption, 
.wp-block-gallery .blocks-gallery-item figcaption {
	width: 100%;
	max-height: 100%;
}

.wp-block-cover-image-text, 
.wp-block-cover-text, 
section.wp-block-cover-image h2 {
	color: #fff !important;
}

.wp-block-cover p {
	margin-bottom: 0;
}

.wp-block-cover a {
	color: #fff;
	text-decoration: underline;
}

.wp-block-cover__inner-container p {
	color: #fff;
}

.wp-block-cover a:hover {
	text-decoration: none;
}

.wp-block-gallery.is-cropped 
.blocks-gallery-item img {
    height: 100%;
    flex: 1;
    object-fit: cover;
}

.wp-block-media-text {
	margin-bottom: 34px;
}

.alignleft 
.wp-block-cover-text {
	text-align: left;
}

.alignright 
.wp-block-cover-text {
	text-align: right;
}

.aligncenter 
.wp-block-cover-text {
	text-align: center;
}

/*-------------------------------------------*\
	4. Main Header Styling
\*-------------------------------------------*/

#main-header-wrap {
	position: relative;
	z-index: 100;
	height: 140px;
	margin-bottom: 88px;
}

#main-header {
	height: 140px;
	background-color: #fff;
}

.main-header-inner-wrap {
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-col {
	min-width: 10%;
}

.header-col-1 {
    margin-right: auto;
}

.header-col-2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.header-col-3 {
    margin-left: auto;
}

#logo-wrap {
	float: left;
}

.site-logo {
	line-height: 140px;
}

.dark .site-logo.light-logo,
.site-logo.dark-logo {
	display: none;
}

.dark 
.site-logo.dark-logo {
	display: block;
}

.custom-logo-link {
	transition: none;
}

.site-logo img {
	width: auto;
	max-height: 45px;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}

.site-text-logo h1 {
	line-height: 140px;
	text-transform: uppercase;
}

.site-text-logo a {
	color: #222;
	text-decoration: none;
	transition: none;
}

/*** Sticky Header Styling ***/

.admin-bar 
#main-header.stick-it {
	top: 32px;
}

#main-header.stick-it {
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	height: 88px;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.06);
	animation: fadeIn .5s linear;
}

#main-header.stick-it 
.main-header-inner-wrap {
	height: 88px;
}

#main-header.stick-it 
#main-nav li {
    margin-top: 26px;
}

/*-------------------------------------------*\
	5. Main Nav Styling
\*-------------------------------------------*/

#mobile-nav, #menu-icon {
	display: none;
}

#main-nav {
	height: 140px;
	font-size: 14px;
	font-weight: var(--heading-font-weight);
	text-transform: uppercase;
}

.stick-it #main-nav {
	height: 88px;
}

#main-nav li {
	position: relative;
	height: 50px;
	margin-top: 52px;
	margin-right: 4px;
	float: left;
}

#main-nav li:last-child {
	margin-right: 0;
}

#main-nav a {
	position: relative;
	display: inline-block;
	height: 36px;
	padding: 0 18px;
	list-style: none;
	border-radius: 36px;
	border: 1px solid transparent;
	line-height: 36px;
	text-decoration: none;
}

#main-nav a:hover {
	color: #222;
	border-color: #f1f1f1;
	background-color: #f1f1f1;
}

#main-nav .current-menu-item > a,
#main-nav .current-menu-item > a:hover {
	color: #222;
	border-color: #E7E7E7;
	background-color: #fff;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
}

#main-nav 
.menu-item-has-children > a::before {
	content: "";
	position: absolute;
	right: 0;
	left: 0;
	top: 30px;
	display: block;
    width: 8px;
    height: 8px;
	margin: 0 auto;
	border-radius: 8px;
	border: 3px solid #fff;
	background-color: var(--accent-color);
	transition: backgorund .3s;
}

#main-nav 
.current-menu-item.menu-item-has-children > a::before {
	background-color: #E7E7E7;
}

#main-nav 
.menu-item-has-children > a:hover::before {
	background-color: #E7E7E7;
}

/*** Drop Menu Styling ***/

#main-nav ul li ul {
	position: absolute;
	left: -2px;
    top: 46px;
	z-index: 100;
	visibility: hidden;
	opacity: 0;
	float: none;
	padding: 4px 20px;
    border-radius: 10px;
	background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  	from {
    	opacity: 0;
  	}

  	to {
    	opacity: 1;
  	}
}

#main-nav ul li:hover > ul {
   	visibility: visible;
    animation-name: fadeIn;
    animation-duration: .5s;
    animation-fill-mode: both;
}

#main-header.stick-it #main-nav ul li ul li,
#main-nav ul li ul li {
	height: auto;
	clear: both;
	padding: 0;
	margin: 0;
	float: none;
	border-bottom: 1px solid #E7E7E7;
	line-height: normal;
}

#main-header.stick-it #main-nav ul li ul li:last-child,
#main-nav ul li ul li:last-child {
	border-bottom: none;
}

#main-header.stick-it #main-nav ul li ul a,
#main-nav ul li ul a {
	min-width: 222px;
    height: auto;
    padding: 14px 0;
    border: none;
    line-height: 20px;
	transition: all .3s;
}

#main-nav ul li ul .current-menu-item a,
#main-nav ul li ul a:hover {
	opacity: .6;
	background-color: transparent;
	box-shadow: none;
}

#main-nav ul li ul
.menu-item-has-children > a::before {
    right: 0;
    top: 18px;
}

/*** Second Level Styling ***/

#main-nav ul li ul ul {
	left: 100%;
	top: -4px;
    border-radius: 6px;
}

/*-------------------------------------------*\
	6. Header Elements Styling
\*-------------------------------------------*/

#header-elements li {
	position: relative;
	width: 40px;
	height: 40px;
	float: left;
	margin-left: 10px;
}

.header-elements-icon {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
	transition: all .3s;
}

.header-elements-icon:hover {
	background-color: #f1f1f1;
}

.dark-mode .dark-icon,
.light-mode .light-icon {
	visibility: hidden;
	opacity: 0;
}

.dark-mode .light-icon {
	visibility: visible;
	opacity: 1;
}

.dark-icon {
	background-image: url(images/dark-icon.svg);
}

.light-icon {
	background-image: url(images/light-icon.svg);
}

.cart-customlocation {
	position: relative;
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-top: 9px;
    margin-left: 9px;
	background: url(images/cart-customlocation.svg) no-repeat;
}

.cart-count-wrap {
	position: absolute;
	right: -12px;
    top: -8px;
	display: inline-block;
	height: 15px;
	color: #222;
	padding: 0 4px;
	border-radius: 24px;
	background-color: var(--accent-color);
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	transition: background .3s;
}

.cart-customlocation:hover .cart-count-wrap {
	background-color: #f1f1f1;
}

#header-search-icon {
	background-position: 10px 9px;
	background-image: url(images/search-icon.svg);
}

#header-elements .header-button-li {
	width: auto;
	height: auto;
	margin-left: 15px;
}

.header-button {
	display: inline-block;
	height: 44px;
	padding: 0 24px;
	color: #222;
	border-radius: 44px;
	background-color: var(--accent-color);
	font-size: 14px;
	font-weight: var(--heading-font-weight);
	line-height: 44px;
	text-decoration: none;
	text-transform: uppercase;
}

.header-button:hover {
	color: #222;
	background-color: #f1f1f1;
}

/*-------------------------------------------*\
	7. Modal Search Form Styling
\*-------------------------------------------*/

#modal-search {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 5555;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.97);
	visibility: hidden;
	opacity: 0;
	transition: opacity .6s;
}

#modal-search-inner {
	width: 700px;
	margin: 210px auto 0 auto;
}

#modal-search 
#searchform {
	position: relative;
	width: 100%;
	height: 108px;
}

#modal-search 
#searchform #s {
	border-bottom: 3px solid #eee;
}

#modal-search 
#searchform #s:focus {
	border-bottom-color: #e1e1e1;
}

#modal-search.search-show {
	visibility: visible;
	opacity: 1;
}

#modal-search #s {
	width: inherit;
	height: inherit;
    color: #222;
    border: none;
	background-color: transparent;
	font-family: var(--body-font-family);
	font-size: 42px;
    font-weight: var(--heading-font-weight);
}

#modal-search #s:focus {
	outline: none;
}

#modal-search 
#searchsubmit {
	display: none;
}

.modal-close {
	position: absolute;
	right: 54px;
	top: 46px;
	width: 46px;
	height: 46px;
	border-radius: 46px;
	border: 1px solid #e3e3e3;
	background: url(images/modal-close.svg) no-repeat center center;
	cursor: pointer;
	transition: all .3s;
}

.modal-close:hover {
	border-color: #f1f1f1;
	background-color: #f1f1f1;
	transform: scale(1.1);
}

.search-info {
	display: block;
	margin-top: 26px;
	color: #BCBCBC;
}

/*-------------------------------------------*\
	8. Hidden Sidebar Styling
\*-------------------------------------------*/

#hidden-sidebar-icon {
	position: relative;
	display: block;
	width: 43px;
	height: 31px;
	float: left;
	margin-top: 56px;
	margin-right: 17px;
	cursor: pointer;
}

#hidden-sidebar-icon span {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 23px;
	height: 1px;
	background-color: #222;
	transition: width .4s;
}

#hidden-sidebar-icon span::before,
#hidden-sidebar-icon span::after {
	content: "";
	position: absolute;
	left: 0;
	display: block;
	height: 1px;
	background-color: #222;
	transition: width .2s;
}

#hidden-sidebar-icon span::after {
	transition: width .4s;
}

#hidden-sidebar-icon span::before {
	top: 14px;
	width: 33px;
}

#hidden-sidebar-icon span::after {
	top: 28px;
	width: 43px;
}

#hidden-sidebar-icon:hover span::before,
#hidden-sidebar-icon:hover span {
	width: 43px;
}

#hidden-sidebar-wrap {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    display: none;
    width: 417px;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #fff;
}

.hidden-sidebar-close {
	position: absolute;
	right: 18px;
    top: 22px;
    z-index: 2;
	width: 40px;
    height: 40px;
	border-color: #E7E7E7;
}

.admin-bar .hidden-sidebar-close {
    top: 58px;
}

#hidden-sidebar {
	display: block;
	padding: 87px 20px 0;
}

.admin-bar #hidden-sidebar {
	padding-top: 110px;
}

#hidden-sidebar .widget {
	width: 308px;
}

.body-overlay {
	position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    background: rgba(21,21,21,.6);
    animation-name: fadeIn;
  	animation-duration: .8s;
  	animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*** Hidden Sidebar Widgets ***/

#hidden-sidebar.widget-sidebar > div::after {
	width: 288px;
}

/*-------------------------------------------*\
	9. Homepage Intro Section Styling
\*-------------------------------------------*/

.intro-section {
	position: relative;
	margin-bottom: 86px;
	text-align: center;
}

.intro-text {
	width: 856px;
	margin: 0 auto;
}

#intro-heading {
	position: relative;
}

#intro-heading h1 {
	position: relative;
	z-index: 2;
	margin-bottom: 29px;
	font-size: 64px;
	line-height: 72px;
}

#intro-heading .highlight {
	background-color: var(--accent-color);
}

.intro-text p {
	position: relative;
	z-index: 2;
	width: 90%;
	margin: 0 auto 38px;
	color: #929292;
	font-size: 18px;
	line-height: 28px;
}

#intro-deco {
	position: absolute;
	left: 23px;
	top: -52px;
	z-index: 1;
	color: var(--accent-color);
	animation: rotate 60s linear infinite;
	transform-origin: center;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/*** Intro Tags / Categories Styling ***/

.intro-tags-wrap {
	position: relative;
}

.intro-tags {
	position: relative;
	z-index: 2;
	max-width: 690px;
	clear: both;
	margin: 0 auto;
	background-color: #fff;
}

.intro-tags-wrap::after {
	content: "";
	position: absolute;
	top: 21px;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 1px;
	background-color: #E7E7E7;
}

.tagged-btns a {
	position: relative;
	display: inline-block;
	height: 34px;
	padding: 0 24px;
	margin-left: 18px;
	margin-bottom: 17px;
	color: #222;
	border-radius: 40px;
	border: 3px solid var(--accent-color);
	background-color: var(--accent-color);
	font-size: 13px;
	font-weight: var(--heading-font-weight);
	line-height: 35px;
	text-transform: uppercase;
	text-decoration: none;
}

.tagged-btns a:first-child {
	margin-left: 0;
}

.tagged-btns a:hover {
	border-color: #f1f1f1;
	background-color: #f1f1f1;
}

.tagged-btns .post-count {
	height: 20px;
	margin-left: -33px;
	padding: 0 6px;
	border-radius: 20px;
	border: 3px solid var(--accent-color);
	background-color: #fff;
	font-size: 11px;
	line-height: 20px;
	text-align: center;
	transition: all .3s;
}

.tagged-btns a:hover .post-count {
	border-color: #f1f1f1;
	background-color: #fff;
}

.tag-name {
	padding-left: 12px;
}

/*-------------------------------------------*\
	10. Recent Posts Styling
\*-------------------------------------------*/

.recent-posts-full {
	clear: both;
}

.recent-posts-full 
.medium-post {
	margin-right: 40px;
}

.recent-posts-full 
.medium-post:nth-child(3n) {
	margin-right: 0;
}

.recent-posts-full 
.medium-post:nth-child(3n+1) {
    clear: left;
}

.recent-posts-wrap {
	width: 922px;
	float: left;
}

.medium-post {
	position: relative;
	width: 388px;
	padding: 40px 25px 39px;
	margin-right: 42px;
	margin-bottom: 54px;
	float: left;
	background: #FFFFFF;
	border: 1px solid #E7E7E7;
	border-radius: 24px;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.recent-posts 
.medium-post:nth-child(2n) {
	margin-right: 0;
}

.medium-post::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	margin: 0 auto;
	display: block;
	width: 340px;
	height: 1px;
	background-color: #222;
}

.category-highlight {
	position: relative;
	display: inline-block;
	height: 34px;
	padding-left: 16px;
	margin-bottom: 15px;
	font-size: 13px;
	font-weight: var(--heading-font-weight);
	text-decoration: none;
	text-transform: uppercase;
	line-height: 35px;
}

.category-highlight:hover {
	color: #222;
}

.category-highlight::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 34px;
	background-color: var(--accent-color);
	transition: background .3s;
}

.category-highlight:hover::before {
	background-color: #f1f1f1;
}

.category-highlight span {
	position: relative;
	z-index: 2;
}

.medium-post .post-title {
	margin-bottom: 14px;
}

.post-date {
	position: relative;
	display: inline-block;
	height: 24px;
	padding-left: 51px;
	margin-bottom: 26px;
	font-size: 13px;
	line-height: 24px;
	text-decoration: none;
	text-transform: uppercase;
}

.post-date:hover {
	color: #555;
}

.post-date::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	display: block;
	width: 44px;
	height: 1px;
	background-color: #222;
}

.medium-post .post-thumb {
	margin-bottom: 25px;
}

.medium-post .post-content {
	padding: 0 24px;
}

.excerpt {
	margin-bottom: 20px;
	font-size: 16px;
	color: #929292;
}

.more-btn {
	display: inline-block;
	height: 38px;
	font-size: 15px;
	line-height: 38px;
	font-weight: var(--heading-font-weight);
	text-decoration: none;
	text-transform: uppercase;
}

.more-btn:hover {
	color: #222;
}

.more-btn-text {
	float: left;
	margin-right: 4px;
}

.more-arrow {
	position: relative;
	display: inline-block;
	width: 38px;
	height: 38px;
	border-radius: 38px;
	background: url(images/more-arrow.svg) left center no-repeat var(--accent-color);
	transition: all .3s;
}

.more-btn:hover .more-arrow {
	background-color: #f1f1f1;
	background-position-x: 8px;
}

/*** Large Posts Styling ***/

.large-post {
	width: 628px;
	margin-right: 40px;
}

.large-post:nth-child(2n) {
	margin-right: 0;
}

.large-post .post-content {
    padding: 0 50px;
}

.large-post .post-title {
	font-size: 30px;
	line-height: 38px;
}

.large-post::after {
	width: 500px;
}

/*** List Posts Styling ***/

.list-post {
	position: relative;
	min-height: 342px;
	margin-bottom: 54px;
}

.list-post-large {
	min-height: 492px;
	margin-bottom: 78px;
}

.list-post-large:last-child {
	margin-bottom: 48px;
}

.list-post .post-content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    margin: 0 auto;
    display: block;
    width: 350px;
    height: 1px;
    background-color: #222;
}

.list-post-large .post-content::after {
	width: 500px;
}

.list-post .post-thumb {
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 1;
	max-height: 342px;
	transform: translateY(-50%);
}

.list-post-large .post-thumb {
	max-height: 492px;
}

.list-post.has-post-thumbnail .post-content {
	position: relative;
	width: 438px;
	min-height: 192px;
	z-index: 2;
	padding: 35px;
	margin-top: 39px;
	float: right;
	background: #FFFFFF;
    border: 1px solid #E7E7E7;
    border-radius: 24px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
}

.list-post-large.has-post-thumbnail .post-content {
	width: 670px;
	padding: 60px 60px 40px;
	min-height: 312px;
}

.list-post .post-title {
	margin-bottom: 9px;
}

.list-post-large .post-title {
	margin-bottom: 11px;
	font-size: 36px;
	line-height: 46px;
}

.list-post-large .excerpt {
    margin-bottom: 21px;
}

.author-meta-all, .author-meta-all li {
	float: left;
}

.author-avatar-li {
	position: relative;
	width: 38px;
    height: 38px;
    padding-left: 10px;
}

.author-meta-all li {
	line-height: 38px;
}

.author-meta-ul .post-date::before {
    top: 18px;
}

.author-meta-ul.author-meta-all .author-avatar {
	position: absolute;
	right: 0;
	top: 0;
	width: 38px;
	height: 38px;
	margin-right: 5px;
}

.author-avatar-li::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	display: block;
	width: 38px;
	height: inherit;
	border-radius: 50%;
	background-color: var(--accent-color);
}

.list-post .post-date {
	height: 38px;
	margin-bottom: 0;
	line-height: 38px;
}

.list-post .post-date::before {
    top: 18px;
}

.author-meta-ul.author-meta-all .post-date::before {
    top: 18px;
}

.list-post .more-btn {
	float: right;
}

/*** Pagination Styling ***/

.pagination {
	width: 100%;
	clear: both;
	margin-bottom: 48px;
	color: #222;
	font-size: 15px;
    font-weight: var(--heading-font-weight);
    text-transform: uppercase;
}

.pagination a,
.post-nav-links a {
	display: block;
	float: left;
	padding: 11px 18px 10px;
	margin-right: 8px;
	margin-bottom: 8px;
	color: #222;
	border-radius: 44px;
	border: 1px solid #E7E7E7;
    background-color: #fff;
	text-decoration: none;
	transition: all .3s;
}

.pagination a:hover,
.post-nav-links a:hover {
	border-color: #E7E7E7;
    background-color: #E7E7E7;
}

.pagination
.current,
.post-nav-links .current {
	display: block;
	float: left;
	padding: 11px 18px 10px;
	margin-right: 8px;
	margin-bottom: 8px;
	border-radius: 40px;
	border-color: #E7E7E7;
    background-color: #E7E7E7;
}

.pagination .dots,
.post-nav-links .dots {
	height: 28px;
    margin: 19px 20px 0 10px;
	float: left;
}

.post-nav-links a,
.post-nav-links .current,
.post-nav-links .dots {
	display: inline-block;
	float: none;
	margin-right: 5px;
	margin-left: 8px;
}

/*** Sticky Posts Styling ***/

article.sticky 
.post-title a {
	position: relative;
	padding-left: 26px;
}

article.sticky 
.post-title a::before {
	position: absolute;
	left: -6px;
    top: 1px;
    content: "";
    display: inline-block;
    width: 32px;
    height: 30px;
	background: url(images/sticky-pin.svg) no-repeat;
	transition: opacity .3s;
}

article.sticky 
.post-title a:hover::before {
	opacity: .85;
}

/*-------------------------------------------*\
	11. Sidebar Styling
\*-------------------------------------------*/

.main-sidebar-wrap {
	position: sticky;
	top: 54px;
	float: right;
}

.main-sidebar {
	width: 438px;
	float: right;
	margin-bottom: 54px;
}

.widget-sidebar > div {
	position: relative;
	width: 388px;
	padding: 42px 25px 46px;
	margin-bottom: 54px;
	float: left;
	background: #FFFFFF;
	border: 1px solid #E7E7E7;
	border-radius: 24px;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
}

.widget-sidebar > div::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	z-index: 3;
	bottom: -1px;
	margin: 0 auto;
	display: block;
	width: 340px;
	height: 1px;
	background-color: #222;
}

.widget-sidebar .wp-block-image {
	margin-bottom: 0;
}

/*** Widget Titles Styling ***/

.widget-title,
.widget-sidebar .wp-block-group__inner-container 
h2:first-of-type {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 24px;
    margin-bottom: 35px;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	text-align: center;
}

.widget-title::after,
.widget-sidebar .wp-block-group__inner-container 
h2:first-of-type::after {
	content: "";
	position: absolute;
	right: 0;
	left: 0;
	bottom: 1px;
	z-index: -1;
	display: block;
	width: 84px;
	height: 9px;
	margin: 0 auto;
	background: var(--accent-color);
}

/*** Table Block ***/

.wp-block-table thead {
	border: none;
}

/*** Comments Block Widget ***/

.entry 
.wp-block-latest-comments {
    padding-left: 0;
}

.entry 
.wp-block-latest-comments > li {
	list-style: none;
}

.entry 
.wp-block-latest-comments__comment-date {
	margin-top: 5px;
}

/*** Social Profile Widget ***/

.main-sidebar .widget_noted_social_profile_widget {
	text-align: center;
}

.widget .social-profile-description {
	margin-bottom: 18px;
	color: #828282;
	font-size: 16px;
	line-height: 24px;
}

.noted-social-links a {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-right: 6px;
	border-radius: 40px;
	background: var(--accent-color) no-repeat center center;
}

.noted-social-links a:last-child {
	margin-right: 0;
}

.noted-social-links a:hover {
	background-color: #f1f1f1;
}

.noted-social-links .x {
	background-image: url(images/x.svg);
}

.noted-social-links .facebook {
	background-image: url(images/facebook.svg);
}

.noted-social-links .instagram {
	background-image: url(images/instagram.svg);
}

.noted-social-links .tiktok {
	background-image: url(images/tiktok.svg);
}

.noted-social-links .youtube {
	background-image: url(images/youtube.svg);
}

/*** Noted Slider Widget ***/

.widget-sidebar .widget_noted_category_slider_widget {
	width: 100%;
	height: 504px;
	padding: 0;
	border: none;
	overflow: hidden;
}

.widget-sidebar 
.widget_noted_category_slider_widget::after {
	bottom: 0;
}

.widget_noted_category_slider_widget 
.wp-post-image {
	border-radius: 0 0 26px 26px;
}

.category-slider,
.noted-slider-item {
	position: relative;
	height: inherit;
}

.noted-slider-item {
	float: left;
}

.noted-slider-item::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 383px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.97) 72%);
	border-radius: 0px 0px 24px 24px;
}

.slick-arrow {
	position: absolute;
	top: 50%;
  	transform: translateY(-50%);
	z-index: 8;
	display: block;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: none;
	background: var(--accent-color) no-repeat center center;
	text-indent: -9999px;
	cursor: pointer;
    transition: all .3s;
	opacity: 0;
}

.widget_noted_category_slider_widget:hover .slick-arrow {
	opacity: 1;
}

.slick-arrow:hover {
	background-color: #f1f1f1;
}

.slick-next {
	right: 0;
	background-position-x: 20px;
	background-image: url(images/slick-next.svg);
}

.widget_noted_category_slider_widget:hover .slick-next {
	right: 24px;
}

.slick-prev {
	left: 0;
	background-position-x: 18px;
	background-image: url(images/slick-prev.svg);
}

.widget_noted_category_slider_widget:hover .slick-prev {
	left: 24px;
}

.slick-dots {
	position: absolute;
	right: 30px;
	top: 30px;
	z-index: 4;
}

.slick-dots li button {
	position: absolute;
	left: 1px;
	top: 1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #222;
    border: none;
    text-indent: -9999px;
    cursor: pointer;
}

.slick-dots li {
	position: relative;
	width: 8px;
	height: 8px;
	float: left;
	margin-left: 2px;
	border-radius: 50%;
	border: 1px solid transparent;
}

.slick-dots li.slick-active {
	border-color: #222;
}

.slick-dots li button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #222;
    border: none;
    text-indent: -9999px;
    cursor: pointer;
}

.noted-slider-item .post-content {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 5;
	padding: 34px 39px;
	text-align: center;
}

.noted-slider-item .post-title {
	margin-bottom: 17px;
	font-size: 25px;
	line-height: 33px;
}

.noted-slider-item .author-meta-ul {
	display: inline-block;
}

.noted-slider-item .author-meta-ul li {
	height: 30px;
	float: left;
	line-height: 30px;
}

.author-meta-ul a {
	text-decoration: none;
}

.author-meta-ul .author-avatar {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 4px;
	overflow: hidden;
	border-radius: 50%;
}

.author-meta-ul .author-name {
	margin-right: 7px;
}

.author-meta-ul .post-date {
	height: 30px;
	margin-bottom: 0;
}

.author-meta-ul .post-date::before {
	top: 14px;
}

.author-meta-ul .author-name {
	font-size: 13px;
	text-transform: uppercase;
}

/*** Recent / Popular Posts Widget ***/

.small-post {
	padding-bottom: 36px;
	margin-bottom: 36px;
	border-bottom: 1px solid #EFEFEF;
}

.small-post:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.small-thumb {
	width: 120px;
	height: 120px;
	margin-right: 12px;
	border-radius: 120px;
	overflow: hidden;
	float: left;
}

.small-content {
	overflow: hidden;
}

.small-content .category-highlight {
	margin-bottom: 12px;
}

.small-post .post-title {
	margin-bottom: 8px;
	font-size: 15px;
	line-height: 21px;
}

.small-post .post-date {
	margin-bottom: 0;
}

/*** MailChimp Form Widget ***/

.widget .mc4wp-form {
	text-align: center;
}

.widget .mc4wp-form h1 {
	margin-bottom: 10px;
	font-size: 23px;
    line-height: 31px;
}

.widget 
.mc4wp-form p {
	color: #919191;
	margin-bottom: 17px;
	font-size: 15px;
}

.widget 
.mc4wp-form input[type=email], 
.widget 
.mc4wp-form input[type=text] {
	width: 294px;
	height: 44px;
	color: #919191;
	clear: both;
	border-radius: 7px;
	border: 1px solid #E0E0E0;
	background-color: #FBFBFB;
    padding: 0 10px;
	margin-bottom: 6px;
    font-family: var(--body-font-family);
    font-size: 15px;
    text-align: center;
}

.widget 
.mc4wp-form input[type=email]::placeholder, 
.widget 
.mc4wp-form input[type=text]::placeholder {
	color: #919191;
}

input:focus,
textarea:focus {
	outline-color: #222;
}

.widget 
.mc4wp-form input[type=email]:focus, 
.widget 
.mc4wp-form input[type=text]:focus {
	color: #fff;
	outline: none;
	border-color: #626262;
}

.widget 
.mc4wp-form input[type=submit] {
	height: 52px;
    color: #222;
    padding: 0 38px;
    border: none;
    border-radius: 50px;
    background-color: var(--accent-color);
    font-family: var(--body-font-family);
    font-size: 15px;
    font-weight: var(--heading-font-weight);
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    cursor: pointer;
}

.widget 
.mc4wp-form input[type=submit]:hover {
	color: #222;
    background-color: #f1f1f1;
}

.widget 
.mc4wp-form p:last-child {
	margin-bottom: 0;
}

/*** Search Widget ***/

.widget .wp-block-search,
.widget .wc-block-product-search {
	text-align: center;
}

.widget 
.wp-block-search .wp-block-search__label,
.widget .wc-block-product-search__label {
	position: relative;
    z-index: 1;
	display: inline-block;
    width: 100%;
    height: 24px;
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 24px;
	font-weight: var(--heading-font-weight);
    text-transform: uppercase;
    text-align: center;
}

.widget 
.wp-block-search .wp-block-search__label::after,
.widget .wc-block-product-search__label::after {
	content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 1px;
    z-index: -1;
    display: block;
    width: 84px;
    height: 9px;
    margin: 0 auto;
    background: var(--accent-color);
}

.widget #searchform,
.entry #searchform {
	position: relative;
	width: 100%;
}

.entry .wp-block-search {
	margin-bottom: 34px;
}

.widget #s,
.wp-block-search .wp-block-search__input,
.wc-block-product-search__field {
    height: 40px;
    color: #9e9e9e;
	border-radius: 7px;
    border: 1px solid #E0E0E0;
    padding: 0 20px;
	background-color: #FBFBFB;
    font-family: var(--body-font-family);
    font-size: 14px;
}

.widget #s {
	width: 230px;
}

.wp-block-search .wp-block-search__input,
.wc-block-product-search__field {
	height: 42px;
	padding: 0 12px;
	margin-bottom: 5px;
}

#hidden-sidebar 
.widget #s {
    width: 196px;
}

.widget #s:focus,
.wp-block-search .wp-block-search__input:focus,
.wc-block-product-search__field:focus {
	color: #464646;
    outline: none;
    border-color: #C9C9C9;
}

.widget #searchsubmit,
.wp-block-search .wp-block-search__button,
.wc-block-product-search__button {
	height: 42px;
    color: #222;
    padding: 0 20px;
    border: none;
	border-radius: 7px;
    background-color: var(--accent-color);
    font-family: var(--body-font-family);
    font-size: 14px;
    font-weight: var(--heading-font-weight);
    text-transform: uppercase;
    transition: all .3s;
    cursor: pointer;
}

.widget #searchsubmit:hover,
.wp-block-search .wp-block-search__button:hover,
.wc-block-product-search__button:hover {
	background-color: #f1f1f1;
}

/*** Calendar Widget ***/

#wp-calendar {
	width: 100%;
}

#wp-calendar caption {
	color: #222;
	margin-top: 10px;
	margin-bottom: 15px;
	font-size: 12px;
	font-weight: var(--heading-font-weight);
	text-align: right;
	text-transform: uppercase;
}

#wp-calendar thead,
.wp-block-calendar thead {
	color: #222;
	font-size: 11px;
	font-weight: var(--heading-font-weight);
}

#wp-calendar thead th,
.wp-block-calendar thead th {
	padding: 20px;
	border: none;
	background-color: transparent;
	font-weight: var(--heading-font-weight);
}

#wp-calendar tbody,
.wp-block-calendar tbody {
	color: #656565;
	font-size: 13px;
	font-weight: 500;
}

#wp-calendar tbody td,
.wp-block-calendar tbody td { 
	background: #f5f5f5;
	border: 1px solid #e6e6e6;
	border-radius: 2px;
	text-align: center; 
	padding: 12px 10px;
}

#wp-calendar tbody td:hover { 
	background: #fff;
}

#wp-calendar tbody .pad,
.wp-block-calendar tbody .pad { 
	background: none; 
}

.wp-block-calendar a {
	text-decoration: none;
}

.wp-block-calendar a:hover {
	color: #222;
}

.wp-calendar-nav-prev,
.wp-calendar-nav-next {
	float: left;
	padding-top: 12px;
	font-size: 13px;
	text-transform: uppercase;
}

.wp-calendar-nav-next {
	float: right;
	text-align: right;
}

/*** RSS Widget Styling ***/

ul .wp-block-rss__item {
	margin-bottom: 34px;
}

ul .wp-block-rss__item:last-child {
	margin-bottom: 0;
}

.wp-block-rss__item-title {
	margin-bottom: 5px;
}

.wp-block-rss__item-publish-date {
	padding-left: 18px;
	margin-bottom: 5px;
	background: url(images/list-calendar.svg) no-repeat left 6px;
}

.widget_rss 
.rssSummary {
	margin-bottom: 6px;
}

.widget_rss cite {
	margin-bottom: 5px;
	color: #a0a4ad;
	font-size: 14px;
	font-style: normal;
	text-transform: uppercase;
}

.wp-block-rss__item-author {
	padding-left: 18px;
	margin-bottom: 5px;
	background: url(images/list-cite.svg) no-repeat left 5px;
}

/*** Tag Cloud Styling ***/

.widget
.tagcloud,
.wp-block-tag-cloud {
	margin-bottom: -5px;
	overflow: hidden;
}

p.wp-block-tag-cloud {
	margin-bottom: 0;
}

.widget .tagcloud a,
.wp-block-tag-cloud a {
	position: relative;
	display: block;
	height: 30px;
	padding: 0 12px;
	margin: 0 5px 5px 0;
	float: left;
	color: #222;
	border-radius: 30px;
	background-color: var(--accent-color);
	font-family: var(--body-font-family);
	font-size: 11px !important;
	font-weight: var(--heading-font-weight);
	text-transform: uppercase;
	line-height: 31px;
	text-decoration: none;
	transition: all .3s;
}

.tagcloud a:hover,
.wp-block-tag-cloud a:hover {
	background-color: #f1f1f1;
}

/*** List Widgets Styling ***/

.entry .wp-block-rss {
	padding-left: 0;
}

.entry .wp-block-rss li a {
	color: #222;
	text-transform: none;
}

.entry .wp-block-rss li a:hover {
	color: #555;
}

.wp-block-categories-list li,
.wp-block-archives-list li,
.widget .menu li,
.widget_pages li,
.wp-block-latest-posts__list li,
.widget_recent_entries li,
.widget_recent_comments li,
.widget_archive li,
.widget_categories li,
.widget_meta li,
.entry .wp-block-rss li,
.wc-block-product-categories-list li,
.wp-block-latest-comments li {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e6e6e6;
	list-style: none;
	color: #bbb;
	font-size: 15px;
}

.widget .menu li li {
	background-position-y: 25px;
}

.wp-block-categories-list li,
.wp-block-archives-list li,
.widget .menu li,
.widget_pages li,
.widget_archive li,
.widget_categories li,
.widget_meta li,
.wc-block-product-categories-list li {
	padding-left: 16px;
	background: url(images/list-circle.svg) no-repeat left 6px;
}

.widget_recent_comments li {
	font-weight: 400;
	text-transform: none;
}

.widget_recent_comments 
.comment-author-link a,
.wp-block-latest-comments__comment-author {
	display: inline-block;
	margin-top: 0;
	margin-right: 0;
	padding-left: 0;
	font-size: 12px;
	font-style: italic;
	font-weight: 400;
	text-transform: uppercase;
}

.widget_recent_comments a,
.wp-block-latest-comments__comment-link {
	font-weight: 500;
	line-height: 18px;
	text-transform: none;
}

.widget_recent_comments li,
.wp-block-latest-comments li {
	padding-left: 20px;
	background: url(images/list-comment.svg) no-repeat left 5px;
}

.wp-block-latest-comments li::before {
	float: left;
}

.widget_recent_entries li,
.wp-block-latest-posts__list li {
	padding-left: 19px;
	background: url(images/list-clock.svg) no-repeat left 5px;
}

.wp-block-categories-list li:last-child,
.wp-block-archives-list li:last-child,
.widget .menu li:last-child,
.widget_pages li:last-child,
.widget_recent_entries li:last-child,
.wp-block-latest-posts__list li:last-child,
.widget_recent_comments li:last-child,
.widget_archive li:last-child,
.widget_categories li:last-child,
.widget_meta li:last-child,
.wp-block-rss li:last-child,
.wc-block-product-categories-list li:last-child,
.wp-block-latest-comments li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.wp-block-categories-list .children,
.wp-block-archives-list .children,
.widget .children,
.widget .sub-menu,
.wc-block-product-categories-list li ul {
	padding-top: 20px;
	margin-left: 10px;
}

.widget
.children li:first-child,
.widget
.sub-menu li:first-child {
	padding-top: 20px;
	border-top: 1px solid #e6e6e6;
}

.widget_recent_entries
.post-date,
.wp-block-latest-comments__comment-date {
	display: block;
	padding-left: 22px;
	float: none;
	color: #a0a4ad;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
}

.wp-block-latest-comments__comment-date {
	padding-left: 0;
	font-size: 14px;
}

.wp-block-categories-list li a,
.wp-block-archives-list li a,
.widget .menu li a,
.widget_pages li a,
.wp-block-latest-posts__list li a,
.widget_recent_entries li a,
.widget_recent_comments li a,
.widget_archive li a,
.widget_categories li a,
.widget_meta li a,
.wc-block-product-categories-list li a,
.wp-block-latest-comments li a {
	color: #555;
	margin-right: 5px;
	text-decoration: none;
}

.widget .menu li a {
	position: relative;
}

.widget .navbubble {
    top: -15px;
}

.wp-block-categories-list li a:hover,
.wp-block-archives-list li a:hover,
.widget .menu li a:hover,
.widget_pages li a:hover,
.wp-block-latest-posts__list li a:hover,
.widget_recent_entries li a:hover,
.widget_recent_comments li a:hover,
.widget_archive li a:hover,
.widget_categories li a:hover,
.widget_meta li a:hover,
.wc-block-product-categories-list li a:hover,
.wp-block-latest-comments li a:hover {
	color: #222;
	text-decoration: none;
}

/*-------------------------------------------*\
	12. Single Post Styling
\*-------------------------------------------*/

.single-wrap-left {
	width: 919px;
	float: left;
	margin-bottom: 82px;
}

.single-header-left {
	margin-bottom: 52px;
}

.single-header-left .single-categories {
	margin-bottom: 10px;
}

.single-header-left .single-post-title {
	clear: both;
	margin-bottom: 28px;
	font-size: 40px;
    line-height: 48px;
}

.single-header-left .single-share-wrap {
	float: right;
	margin-bottom: 0;
}

.single-thumb-left {
	margin-bottom: 50px;
}

.single-wrap-left-inner {
	padding: 0 70px;
}

.single-header-center {
	width: 920px;
	margin: 0 auto 50px;
	text-align: center;
}

.single-header-center .single-categories {
	display: inline-block;
}

.single-categories li {
	float: left;
	margin-right: 15px;
}

.single-categories li:last-child {
	margin-right: 0;
}

.single-header .category-highlight::before {
	z-index: -1;
}

.single-header-center .single-post-title {
	margin-bottom: 22px;
	font-size: 46px;
	line-height: 58px;
}

.single-header-center .author-meta-all {
	display: inline-block;
	float: none;
}

.single-thumb {
	line-height: 0;
}

.single-thumb-center {
	max-width: 1200px;
	margin: 0 auto 50px;
	text-align: center;
}

.inner-single-wrap-center {
	width: 779px;
	margin: 0 auto 72px;
}

/*** Single Tags Styling ***/

.single-tags {
	margin-bottom: 40px;
}

.single-elements-heading {
    position: relative;
    display: block;
    height: 34px;
    padding-left: 16px;
	margin-right: 4px;
    margin-bottom: 15px;
	float: left;
    font-size: 13px;
    font-weight: var(--heading-font-weight);
    text-decoration: none;
    text-transform: uppercase;
    line-height: 42px;
}

.single-elements-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    z-index: -1;
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 34px;
    background-color: #E8E8E8;
}

.single-tags.tagged-btns a {
	height: 40px;
    border: 1px solid #E7E7E7;
    background-color: #fff;
	line-height: 40px;
}

.single-tags.tagged-btns a:hover {
	background-color: #E7E7E7;
}

.single-tags.tagged-btns .post-count {
    margin-left: -33px;
    border: 1px solid #E7E7E7;
    background-color: #fff;
}

/*** Prev/Next Posts Styling ***/

.small-nav-post {
	width: 306px;
	padding: 32px 32px 8px;
	margin-bottom: 52px;
	float: left;
	border: 1px solid #E7E7E7;
	background-color: #fff;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
}

.small-nav-post:first-child {
	margin-right: 35px;
}

.small-nav-post .post-title {
	margin-bottom: 8px;
}

.highlight-move {
	visibility: hidden;
}

.small-nav-post .highlight-move {
	visibility: visible;
}

/*** Single Share Buttons ***/

.single-share-wrap {
	margin-bottom: 52px;
}

.single-share-wrap li {
	float: left;
}

.single-share-wrap a {
	position: relative;
	display: inline-block;
	height: 40px;
	padding: 0 22px 0 24px;
	margin-left: 20px;
	border-radius: 40px;
	border: 1px solid #E7E7E7;
	font-weight: var(--heading-font-weight);
	font-size: 13px;
	text-decoration: none;
	line-height: 40px;
	text-transform: uppercase;
}

.single-share-wrap a::before {
	content: "";
	position: absolute;
	left: -11px;
	top: 10px;
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 50%;
}

.single-share-wrap a.x {
	color: #222;
}

.single-share-wrap a.x:hover {
	border-color: #222;
}

.single-share-wrap a.x::before {
	background: url(images/single-x.svg) no-repeat center center #222;
}

.single-share-wrap .facebook {
	color: #0866FF;
}

.single-share-wrap a.facebook:hover {
	border-color: #0866FF;
}

.single-share-wrap a.facebook::before {
	background: url(images/single-facebook.svg) no-repeat center center #0866FF;
}

.single-share-wrap .linkedin {
	color: #007BB6;
}

.single-share-wrap a.linkedin:hover {
	border-color: #007BB6;
}

.single-share-wrap a.linkedin::before {
	background: url(images/single-linkedin.svg) no-repeat center center #007BB6;
}

.single-share-wrap .reddit {
	color: #FF5700;
}

.single-share-wrap a.reddit:hover {
	border-color: #FF5700;
}

.single-share-wrap a.reddit::before {
	background: url(images/single-reddit.svg) no-repeat center center #FF5700;
}

/*** Comments Styling ***/

#comments {
	padding: 40px 32px 16px;
	margin-bottom: 50px;
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
}

.comments-heading h2 {
	margin-bottom: 28px;
	font-size: 24px;
}

.comment-body {
	position: relative;
	padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid #E8E8E8;
}

.comment:last-child .comment-body {
	padding-bottom: 0;
	border-bottom: none;
}

.comment .children {
	padding-top: 36px;
	border-top: 1px solid #E8E8E8;
}

.comment-body
.avatar-wrap {
	position: relative;
	display: block;
	width: 64px;
	height: 64px;
	float: left;
	margin-right: 14px;
	border-radius: 50%;
	overflow: hidden;
}

.comment-body
.avatar-wrap img {
	width: 100%;
	height: auto;
}

.pingback 
.avatar-wrap,
.trackback 
.avatar-wrap {
	display: none;
}

.comment
.children {
	margin-left: 74px;
}

.comment-contents {
	overflow: hidden;
}

.comment-meta {
	color: #222;
	font-family: var(--body-font-family);
	font-size: 13px;
	text-transform: uppercase;
}

.comment-meta li {
	position: relative;
	float: left;
	margin-bottom: 9px;
}

.comment-author::after {
	content: "";
    display: inline-block;
    width: 44px;
    height: 1px;
	margin: 0 7px 4px;
    background-color: #222;
}

.comment-author, .comment-author a {
	color: #222;
	text-decoration: none;
}

.comment-author a:hover {
	color: #777;
}

.comment-text p {
	color: #8C8C8C;
	margin-bottom: 14px;
	font-size: 16px;
    line-height: 22px;
}

.comment-reply-link {
	position: relative;
    height: 22px;
   	float: right;
    color: #222;
	font-family: var(--body-font-family);
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
    text-transform: uppercase;
    transition: all .3s;
}

.comment-reply-link::before {
	content: "";
    display: inline-block;
    width: 44px;
    height: 1px;
    margin: 0 7px 4px;
    background-color: #222;
}

.comment-text 
.comment-reply-link {
	text-decoration: none;
}

.comment-text 
.comment-reply-link:hover {
	color: #555;
}

.comment-text {
	clear: both;
}

.awaiting-mod-txt {
	display: block;
	color: #959595;
	margin-bottom: 20px;
	font-size: 15px;
}

/*** Comments Form Styling ***/

#respond {
	padding: 40px 32px 52px;
	background: #FFFFFF;
	border: 1px solid #E7E7E7;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
	border-radius: 24px;
}

.comment #respond {
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
}

#respond .section-heading {
	font-size: 24px;
}

#cancel-comment-reply-link {
	position: relative;
	display: table;
    padding-top: 4px;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .3s;
}

#cancel-comment-reply-link::before {
	content: "\2715";
	padding-right: 2px;
}

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

#respond
.comment-notes,
.logged-in-as {
	color: #8C8C8C;
	margin-top: 14px;
    margin-bottom: 26px;
	font-size: 16px;
}

#respond
.required {
	color: #FF0000;
	font-family: var(--body-font-family);
    font-weight: 400;
	font-size: 16px;
	line-height: 0;
}

#respond
.comment-form-url {
	margin-right: 0;
}

#respond 
.comment-form-comment label {
	display: none;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
	clear: both;
    line-height: 46px;
}

#respond #author,
#respond #email,
#respond #url,
#respond #comment {
	color: #9e9e9e;
	padding-left: 16px;
	margin-bottom: 10px;
	border: none;
	border-radius: 7px;
	background: #FBFBFB;
	border: 1px solid #E0E0E0;
	font-size: 16px;
	font-family: var(--body-font-family);
    font-weight: 400;
	transition: all .3s;
}

#respond #author:focus,
#respond #email:focus,
#respond #url:focus,
#respond #comment:focus {
	outline: none;
    color: #464646;
	border-color: #D1D1D1;
}

#respond #author, #respond #email, #respond #url {
	width: 36%;
    height: 42px;
}

#comment {
	width: 97.3%;
	height: 180px;
	padding: 16px 0 16px 16px;
	line-height: 31px;
}

#respond p label {
	display: block;
	font-family: var(--body-font-family);
    font-size: 15px;
}
.comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 20px 0 28px;
	font-size: 14px;
}
  
.comment-form-cookies-consent input {
	width: 16px;
	height: 16px;
	accent-color: var(--accent-color);
	cursor: pointer;
}
  
.comment-form-cookies-consent label {
	cursor: pointer;
	user-select: none;
	color: #8C8C8C;
	margin-left: 0;
	font-family: var(--body-font-family);
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
}

.form-submit {
	clear: both;
}

.comment
.form-submit {
	margin-bottom: 15px;
}

#submit {
	height: 44px;
    color: #222;
    padding: 0 34px;
    border-radius: 44px;
    border: none;
    background-color: var(--accent-color);
    font-family: var(--body-font-family);
    font-size: 14px;
    font-weight: var(--heading-font-weight);
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    cursor: pointer;
}

#submit:hover {
    color: #222;
    background-color: #f1f1f1;
}

/*** Related Posts Styling ***/

#related-posts {
	margin-bottom: 50px;
}

.related-heading {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 38px;
    margin-bottom: 35px;
    font-size: 24px;
    line-height: 38px;
    text-transform: uppercase;
    text-align: center;
}

.related-heading::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 6px;
    z-index: -1;
    display: block;
    width: 84px;
    height: 9px;
    margin: 0 auto;
    background: var(--accent-color);
}

#related-posts .medium-post {
	margin-right: 40px;
}

#related-posts .medium-post:last-child {
	margin-right: 0;
}

/*-------------------------------------------*\
	13. Page Templates Styling
\*-------------------------------------------*/

#full-width-page {
	margin-bottom: 70px;
}

/*** Contact Form 7 Styling ***/

.main-page-heading {
	margin-bottom: 34px;
}

.entry .wpcf7 {
	overflow: hidden;
	margin-bottom: 34px;
}

.wpcf7 p {
	float: left;
	clear: both;
	margin-bottom: 10px;
}

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

.wpcf7-form
label {
	display: block;
    font-family: var(--body-font-family);
    font-size: 15px;
	font-weight: var(--heading-font-weight);
}

.wpcf7-text {
	width: 300px;
	height: 46px;
}

.wpcf7-textarea {
	width: 766px;
	height: 240px;
	padding-top: 10px;
}

.wpcf7-text,
.wpcf7-textarea,
.wpcf7-select {
	color: #9e9e9e;
    padding-left: 16px;
	margin-top: 6px;
    margin-bottom: 10px;
    border: none;
    border-radius: 7px;
    background: #FBFBFB;
    border: 1px solid #E0E0E0;
    font-size: 16px;
    font-family: var(--body-font-family);
    font-weight: 400;
    transition: all .3s;
}

.wpcf7-text.wpcf7-not-valid {
	margin-bottom: 2px;
}

.wpcf7-text:focus,
.wpcf7-textarea:focus {
	outline: none;
    color: #464646;
    border-color: #D1D1D1;
}

.wpcf7-response-output {
	float: left;
}

.wpcf7-submit {
	height: 44px;
    color: #222;
    padding: 0 34px;
    border-radius: 44px;
    border: none;
    background-color: var(--accent-color);
    font-family: var(--body-font-family);
    font-size: 14px;
    font-weight: var(--heading-font-weight);
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    cursor: pointer;
}

.wpcf7-submit:hover {
	color: #222;
    background-color: #f1f1f1;
}

input::-moz-focus-inner { 
	border: 0; 
	padding: 0; 
	margin-top:-2px; 
	margin-bottom: -2px; 
}

/*-------------------------------------------*\
	14. Error Page Styling
\*-------------------------------------------*/

.error-content-wrap {
	margin: 70px 0 140px;
	text-align: center;
}

.error-content-wrap::before {
	content: "";
	display: inline-block;
	width: 98px;
	height: 98px;
	margin-bottom: 25px;
	background: url(images/error-broken.svg) no-repeat center top;
}

.error-content-wrap h1 {
	margin-bottom: 23px;
	font-size: 46px;
}

.error-content-wrap h3 {
	margin-bottom: 20px;
}

.error-content-wrap p {
	margin-bottom: 28px;
	color: #9c9c9c;
}

.error-wrap #searchform {
	width: 318px;
	margin: 0 auto 22px auto;
}

.error-wrap input {
	display: inline-block;
	clear: both;
}

.error-wrap #s {
	width: 280px;
    height: 44px;
    color: #868686;
    padding: 0 16px;
	margin-bottom: 28px;
    border-radius: 44px;
    border: 1px solid #E1E1E1;
    background-color: #fff;
    font-family: var(--body-font-family);
    font-size: 15px;
    font-weight: 400;
	text-align: center;
}

.error-wrap #s:focus {
	color: #464646;
	border-color: #cecece;
	outline: none;
}

.error-wrap #searchsubmit {
	height: 46px;
    color: #222;
    padding: 0 34px;
    border-radius: 46px;
    border: none;
    background-color: var(--accent-color);
    font-family: var(--body-font-family);
    font-size: 15px;
    font-weight: var(--heading-font-weight);
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    cursor: pointer;
}

.error-wrap #searchsubmit:hover {
    background-color: #f1f1f1;
}

/*-------------------------------------------*\
	15. Main Footer Styling
\*-------------------------------------------*/

#main-footer {
	border-radius: 80px 80px 0 0;
	background-color: #222;
}

#copyright {
	height: 112px;
}

.footer-copy-text {
	color: #828282;
	font-size: 14px;
	line-height: 112px;
	text-align: center;
	text-transform: uppercase;
}

.footer-copy-text a {
	color: #fff;
}

/*** Back To Top Styling ***/

#back-to-top {
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 99;
	visibility: hidden;
	width: 54px;
	height: 54px;
	border-radius: 54px;
	background: url(images/back-to-top.svg) center center no-repeat var(--accent-color);
	opacity: 0;
	transition: all .3s;
	cursor: pointer;
}

#back-to-top.show-back-top {
	visibility: visible;
	opacity: 1;
}

#back-to-top:hover {
	background-color: #f1f1f1;
}

/*** MailChimp Form Widget ***/

.footer-newsletter-wrap {
	text-align: center;
	border-bottom: 1px solid #313131;
}

.footer-newsletter {
	display: inline-block;
	width: 610px;
	padding-top: 100px;
    margin-bottom: 90px;
	color: #828282;
}

.footer-newsletter h1 {
	position: relative;
	z-index: 1;
	margin-bottom: 15px;
	color: #fff;
	font-size: 46px;
	line-height: 54px;
}

.footer-newsletter h1::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 39px;
	z-index: -1;
	width: 177px;
	height: 9px;
	margin: 0 auto;
	background: #595959;
}

.footer-newsletter .sub-info {
	display: inline-block;
	max-width: 352px;
}

.footer-newsletter p {
	margin-bottom: 30px;
}

#main-footer 
.footer-newsletter input[type=email],
#main-footer 
.footer-newsletter input[type=text] {
	width: 326px;
	height: 52px;
	padding: 0 35px;
	color: #565656;
	border-radius: 50px 0 0 50px;
	border: none;
	background: #2D2D2D;
}

.footer-newsletter .noted-inputs {
	position: relative;
	width: 556px;
	height: 52px;
	margin: 0 auto 23px;
}

.footer-newsletter .noted-inputs input[type=email] {
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50px 0 0 50px;
}

.footer-newsletter input::placeholder {
	color: #565656;
	font-size: 16px;
	font-family: var(--body-font-family);
}

.footer-newsletter input[type=email]:focus,
.footer-newsletter input[type=text]:focus {
	outline: none;
	color: #fff;
	background-color: #333;
}

.footer-newsletter input[type=submit] {
	height: 52px;
	color: #222;
	padding: 0 38px;
	border: none;
	border-radius: 50px;
	background-color: var(--accent-color);
	font-family: var(--body-font-family);
    font-size: 15px;
    font-weight: var(--heading-font-weight);
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
	cursor: pointer;
}

.footer-newsletter .noted-inputs input[type=submit] {
	position: absolute;
	right: 0;
	top: 0;
	min-width: 158px;
	border-radius: 0 50px 50px 0;
}

.footer-newsletter input[type=submit]:hover {
	background-color: #f1f1f1;
}

.footer-newsletter .noted-sub-form .no-spam {
	font-size: 12px;
	font-weight: var(--heading-font-weight);
}

/*** Footer Widgets Styling ***/

.footer-widgets {
	padding-top: 96px;
    padding-bottom: 92px;
	border-bottom: 1px solid #313131;
}

.footer-widgets .widget {
	float: left;
	width: 240px;
	margin-right: 50px;
}

.footer-widgets .widget:first-child {
	width: 476px;
	margin-right: 104px;
}

.footer-widgets .widget:nth-child(4n) {
	margin-right: 0;
}

.widget-title-f,
.footer-widgets .wp-block-heading {
	margin-bottom: 16px;
	font-size: 16px;
	text-transform: uppercase;
}

.footer-widgets #wp-calendar thead th,
.footer-widgets .wp-block-calendar thead th {
    padding: 10px;
}

.footer-widgets #wp-calendar tbody td,
.footer-widgets .wp-block-calendar tbody td {
	padding: 8px 8px;
}

#main-footer .footer-widgets ul,
#main-footer .footer-widgets li {
	padding: 0;
	margin: 0 0 14px;
	border-top: none;
	border-bottom: none;
	background: none;
	font-size: 15px;
}

#main-footer .footer-widgets li ul {
	margin-top: 14px;
}

#main-footer .footer-widgets li a {
	color: #828282;
	text-decoration: none;
}

#main-footer .footer-widgets li a:hover {
	color: #fff;
}