/*
Theme Name: Nimbo
Theme URI: http://birdwp.com/wp-nimbo/
Description: Nimbo is a WordPress theme for your blog. It has a minimalist design with various layout options: 2 types of header, 3 types of blog layout, and also there are 3 available areas for widgets in the footer. Nimbo also has some very interesting features and it is fully responsive and looks good on mobile devices. Use it to make something cool!
Version: 1.5
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.0
Author: Alexey Trofimov (BirdwpThemes)
Author URI: https://themeforest.net/user/birdwpthemes
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, grid-layout, one-column, two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, flexible-header, footer-widgets, post-formats, sticky-post, theme-options, threaded-comments, translation-ready, block-styles
Text Domain: nimbo

Copyright (C) 2024 Alexey Trofimov
*/

/**
 * Table of Contents:
 *
 * 1.0 - General styles (body, headings, links, tags, margins, etc.)
 * 2.0 - Animation
 * 3.0 - Styles for popup windows (magnificPopup)
 * 4.0 - Header type 1 (One row)
 *   4.1 - Logo
 *   4.2 - Search (dropdown search form)
 *   4.3 - Color switch
 *   4.4 - Menu
 *   4.5 - Mobile menu
 *   4.6 - Add animation to the sticky header (header type 1 - one row)
 * 5.0 - Header type 2 (Two rows)
 *   5.1 - Header type 2: Row 1 - Logo container
 *   5.2 - Header type 2: Row 2 - Navigation container
 * 6.0 - Container with introductory text and background image (Header Image and Header Text)
 * 7.0 - Archive page heading
 * 8.0 - "No results" message (content none)
 * 9.0 - Blog posts
 *   9.1 - Post media: image
 *   9.2 - Post media: slider (gallery)
 *   9.3 - Post media: video
 *   9.4 - Post media: audio
 *   9.5 - Post content
 * 10.0 - Pagination
 * 11.0 - Single post page
 *   11.1 - WordPress content styles: TinyMCE editor (Classic editor)
 *   11.2 - WordPress content styles: Block editor
 *   11.3 - About the author
 *   11.4 - Comments
 *   11.5 - Related posts / Posts on a single page
 * 12.0 - Page 404
 * 13.0 - Sidebar and Widgets
 * 14.0 - Footer
 * 15.0 - "Cookies information" window
 * 16.0 - "Back to top" button
 * 17.0 - Dark style
 * 18.0 - Responsive styles
 */

/**
 * 1.0 - General styles (body, headings, links, tags, margins, etc.)
 * -------------------------------------------------------------
 */

/* html, body */
html {
	font-size: 16px;
}
body {
	font-family: 'Lora', serif;
	font-size: 15px;
	font-style: normal;
	font-weight: normal;
	line-height: 1.2;
	background-color: #f7f8f8;
	color: #4c4f53;
}
.bwp-sticky-header-one-row {
	padding-top: 100px;
}

/* links */
a {
	text-decoration: none !important;
	outline: none !important;
	color: #4c4f53;

	-webkit-transition: color 0.2s ease, background-color 0.2s ease;
	-moz-transition: color 0.2s ease, background-color 0.2s ease;
	-o-transition: color 0.2s ease, background-color 0.2s ease;
	transition: color 0.2s ease, background-color 0.2s ease;
}
a:focus {
	color: #4c4f53;
}
a:hover {
	color: #6ca4db;
}

/* h1 - h6 */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 15px;
	font-family: 'Source Sans Pro', sans-serif;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	color: #2f3235;
}
h1,
.h1 {
	font-size: 29px;
}
h2,
.h2 {
	font-size: 26px;
}
h3,
.h3 {
	font-size: 23px;
}
h4,
.h4 {
	font-size: 20px;
}
h5,
.h5 {
	font-size: 17px;
}
h6,
.h6 {
	font-size: 15px;
	text-transform: uppercase;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus,
h5 a:focus,
h6 a:focus {
	color: #6ca4db;
}

/* button */
button {
	outline: none !important;

	-webkit-transition: color 0.2s ease, background 0.2s ease;
	-moz-transition: color 0.2s ease, background 0.2s ease;
	-o-transition: color 0.2s ease, background 0.2s ease;
	transition: color 0.2s ease, background 0.2s ease;
}

/* paragraph */
p {
	margin: 0 0 15px;
}

/* description list */
dl {
	margin: 0 0 15px;
}
dl dt {
	font-weight: 700;
	margin: 0 0 5px;
	line-height: 1.7;
}
dl dd {
	margin: 0 0 15px;
	padding: 0 0 0 15px;
	line-height: 1.7;
}
dl dt:last-child,
dl dd:last-child {
	margin-bottom: 0;
}

/* address */
address {
	display: block;
	margin: 0 0 15px;
	font-style: italic;
	line-height: 1.7;
}

/* superscript (sup) and subscript (sub) */
sup,
sub {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}

/* abbreviation */
abbr {
	font-weight: 400;
	text-decoration: none !important;
	border-bottom: 2px dotted #4c4f53 !important;
	cursor: help;
}

/* acronym */
acronym {
	font-weight: 400;
	text-decoration: none !important;
	border-bottom: 2px dashed #4c4f53 !important;
	cursor: help;
}

/* big */
big {
	text-transform: uppercase;
	font-size: larger;
}

/* cite */
cite {
	font-style: italic;
	border: none;
}

/* code, kbd, tt, preformatted text */
code,
kbd,
tt {
	box-shadow: none;
	border: none;
	padding: 4px 5px;
	font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
	font-size: 15px;
	color: inherit;
	background-color: rgba(46,46,52,0.06);
	border-radius: 0;
}
pre {
	font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
	font-size: 15px;
	line-height: 1.6;
	overflow: auto;
	white-space: pre;
	word-break: normal;
	margin: 0 0 15px;
	padding: 20px 30px;
	color: #4c4f53;
	background-color: #f7f8f8;
	border: none;
	border-radius: 0;
}
pre code,
pre kbd {
	padding: 4px 5px;
	font-family: inherit;
	font-size: inherit;
	background-color: rgba(46,46,52,0.06);
	border-radius: 0;
}

/* deleted or strikethrough text */
s,
strike,
del {
	text-decoration: line-through;
}

/* variable (var) */
var {
	font-style: italic;
	font-weight: 700;
}

/* bold text (strong, b) */
strong,
b {
	font-weight: 700;
}

/* italic text (em, q) */
em,
q {
	font-style: italic;
}
q {
	font-weight: 400;
}

/* insert (designed to highlight text that has been added to a new version of a document) */
ins {
	font-weight: 400;
	text-decoration: none !important;
	border-bottom: 3px double #4c4f53 !important;
}

/* details */
details > summary:first-of-type {
	display: list-item;
}

/* legend */
legend {
	margin: 0 0 15px;
	padding: 0 0 5px;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.35;
	color: #2f3235;
	border-bottom: 1px solid #eeefef;
}

/* horizontal rule */
hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border-color: #eeefef;
}

/* block quote */
blockquote {
	position: relative;
	margin: 0 0 15px;
	padding: 0 0 0 46px;
	border: none;
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-style: normal;
	line-height: 1.65;
	box-shadow: none;
}
blockquote::before {
	position: absolute;
	top: -4px;
	left: -4px;
	z-index: 0;
	font-family: 'Playfair Display', serif;
	content: '\201c';
	font-size: 90px;
	font-style: normal;
	line-height: 0.79;
	user-select: none;
	pointer-events: none;
	color: inherit;
	opacity: 0.2;
}
blockquote footer::before,
blockquote small::before,
blockquote .small::before {
	content: '';
}
blockquote p {
	margin: 0 0 15px;
	line-height: inherit;
}
blockquote p:last-child {
	margin-bottom: 0 !important;
}
blockquote cite {
	display: block;
	margin: 15px 0 0;
	font-style: italic;
	font-size: 18px;
	line-height: 1.4;
	text-align: left;
	color: #4c4f53;
}

/* video, iframe, embed, object */
video {
	max-width: 100%;
	width: 100%;
	height: auto;
}
embed,
iframe,
object {
	max-width: 100%;
}
embed,
iframe {
	width: 100%;
	border: none !important;
}

/* responsive images */
img {
	max-width: 100%;
	height: auto;
	border-radius: 0;
}

/* figure and figure caption */
figure,
figcaption {
	margin: 0;
}

/* text-align */
.bwp-ta-center {
	text-align: center;
}
.bwp-ta-right {
	text-align: right;
}
.bwp-ta-left {
	text-align: left;
}

/* float */
.bwp-f-left {
	float: left;
}
.bwp-f-right {
	float: right;
}

/* font-width */
.bwp-fw-300 {
	font-weight: 300 !important;
}
.bwp-fw-400 {
	font-weight: 400 !important;
}
.bwp-fw-500 {
	font-weight: 500 !important;
}
.bwp-fw-600 {
	font-weight: 600 !important;
}
.bwp-fw-700 {
	font-weight: 700 !important;
}

/* padding (none; 0) */
.bwp-pt-none {
	padding-top: 0 !important;
}
.bwp-pb-none {
	padding-bottom: 0 !important;
}
.bwp-pr-none {
	padding-right: 0 !important;
}
.bwp-pl-none {
	padding-left: 0 !important;
}

/* margin (none; 0) */
.bwp-mt-none {
	margin-top: 0 !important;
}
.bwp-mb-none {
	margin-bottom: 0 !important;
}
.bwp-mr-none {
	margin-right: 0 !important;
}
.bwp-ml-none {
	margin-left: 0 !important;
}

/* word wrap: break word */
.bwp-break-word {
	word-wrap: break-word;
}

/* overflow: hidden */
.bwp-o-hidden {
	overflow: hidden;
}

/* screen reader text (text meant only for screen readers) */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	overflow-wrap: normal !important;
}

/* override Bootstrap's default container */
@media (min-width: 1200px) {
	.container {
		width: 1030px;
	}
}


/**
 * 2.0 - Animation
 * -------------------------------------------------------------
 */

/**
 * SlideUpIn animation
 *
 * Used for the drop-down search form and for the drop-down mobile menu
 */

.bwpSlideUpIn {
	animation-name: bwpSlideUpIn;
	-webkit-animation-name: bwpSlideUpIn;

	animation-duration: 0.2s;
	-webkit-animation-duration: 0.2s;

	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;

	visibility: visible !important;
}

@keyframes bwpSlideUpIn {
	0% {
		transform: translateY(10px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@-webkit-keyframes bwpSlideUpIn {
	0% {
		-webkit-transform: translateY(10px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		opacity: 1;
	}
}


/**
 * SlideDownOut animation
 *
 * Used for the drop-down search form and for the drop-down mobile menu
 */

.bwpSlideDownOut {
	animation-name: bwpSlideDownOut;
	-webkit-animation-name: bwpSlideDownOut;

	animation-duration: 0.2s;
	-webkit-animation-duration: 0.2s;

	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;

	visibility: visible !important;
}

@keyframes bwpSlideDownOut {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(10px);
		opacity: 0;
	}
}

@-webkit-keyframes bwpSlideDownOut {
	0% {
		-webkit-transform: translateY(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(10px);
		opacity: 0;
	}
}


/**
 * SlideLeftIn animation
 *
 * Used for the main menu container
 */

.bwpSlideLeftIn {
	animation-name: bwpSlideLeftIn;
	-webkit-animation-name: bwpSlideLeftIn;

	animation-duration: 0.2s;
	-webkit-animation-duration: 0.2s;

	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;

	visibility: visible !important;
}

@keyframes bwpSlideLeftIn {
	0% {
		transform: translateX(10px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@-webkit-keyframes bwpSlideLeftIn {
	0% {
		-webkit-transform: translateX(10px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		opacity: 1;
	}
}


/**
 * SlideRightOut animation
 *
 * Used for the main menu container
 */

.bwpSlideRightOut {
	animation-name: bwpSlideRightOut;
	-webkit-animation-name: bwpSlideRightOut;

	animation-duration: 0.2s;
	-webkit-animation-duration: 0.2s;

	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;

	visibility: visible !important;
}

@keyframes bwpSlideRightOut {
	0% {
		transform: translateX(0);
		opacity: 1;
	}
	100% {
		transform: translateX(10px);
		opacity: 0;
	}
}

@-webkit-keyframes bwpSlideRightOut {
	0% {
		-webkit-transform: translateX(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(10px);
		opacity: 0;
	}
}


/**
 * 3.0 - Styles for popup windows (magnificPopup)
 * -------------------------------------------------------------
 */

/* caption */
.mfp-title,
.mfp-counter {
	font-family: 'PT Sans', sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
	color: #ccd1d7;
}

/* figure */
.mfp-figure::after {
	box-shadow: 0 14px 28px -4px rgba(0,0,0,0.35);
	background: #1f2123;
}

/* close button */
.mfp-close.bwp-mfp-close-button {
	font-size: 16px;
	color: #ccd1d7 !important;
	opacity: 1 !important;
}
.mfp-close.bwp-mfp-close-button::after {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.mfp-close.bwp-mfp-close-button::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900; /* solid style */
	content: '\f00d'; /* icon: times */
}
.mfp-close.bwp-mfp-close-button:hover {
	color: #ffffff !important;
}

/* gallery arrows */
.bwp-mfp-arrow {
	background: transparent !important;
	outline: none;
	position: absolute;
	z-index: 1046;
	top: 50%;
	width: 60px;
	height: 150px;
	line-height: 150px;
	margin: -75px 0 0;
	padding: 0;
	border: none;
	font-size: 42px;
	text-align: center;
	color: #ffffff;
	text-shadow: 0 5px 0 #000000;
	opacity: 0.65;

	-webkit-transition: width 0.2s ease, opacity 0.2s ease;
	-moz-transition: width 0.2s ease, opacity 0.2s ease;
	-o-transition: width 0.2s ease, opacity 0.2s ease;
	transition: width 0.2s ease, opacity 0.2s ease;
}
.bwp-mfp-arrow:hover {
	width: 70px;
	opacity: 1;
}
.bwp-mfp-arrow.bwp-mfp-arrow-left {
	left: 0;
}
.bwp-mfp-arrow.bwp-mfp-arrow-right {
	right: 0;
}
.bwp-mfp-arrow.bwp-mfp-arrow-left::after,
.bwp-mfp-arrow.bwp-mfp-arrow-right::after {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.bwp-mfp-arrow.bwp-mfp-arrow-left::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900; /* solid style */
	content: '\f0d9'; /* icon: caret-left */
}
.bwp-mfp-arrow.bwp-mfp-arrow-right::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900; /* solid style */
	content: '\f0da'; /* icon: caret-right */
}
.bwp-mfp-arrow.bwp-mfp-arrow-left:active::after,
.bwp-mfp-arrow.bwp-mfp-arrow-right:active::after {
	position: relative;
	top: 1px;
}

/* zoom-in and zoom-out animations */
.bwp-popup-zoom-in .mfp-container {
	opacity: 0;

	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;

	-webkit-transform: scale(0.98);
	-moz-transform: scale(0.98);
	-ms-transform: scale(0.98);
	-o-transform: scale(0.98);
	transform: scale(0.98);
}

/* animate in */
.bwp-popup-zoom-in.mfp-ready .mfp-container {
	opacity: 1;

	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/* animate out */
.bwp-popup-zoom-in.mfp-removing .mfp-container {
	-webkit-transform: scale(0.98);
	-moz-transform: scale(0.98);
	-ms-transform: scale(0.98);
	-o-transform: scale(0.98);
	transform: scale(0.98);

	opacity: 0;
}

/* dark overlay, start state */
.mfp-bg {
	background: #1f2123;
}
.bwp-popup-zoom-in.mfp-bg {
	opacity: 0;

	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

/* animate in */
.bwp-popup-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.9;
}

/* animate out */
.bwp-popup-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}

/* video and audio */
.bwp-video-popup-container,
.bwp-audio-popup-container {
	position: relative;
	max-width: 860px;
	margin: 0 auto;
	padding: 0;
	background-color: #1f2123;
	box-shadow: 0 14px 28px -4px rgba(0,0,0,0.35);
}

/* video and audio: close button */
.bwp-video-popup-container .mfp-close.bwp-mfp-close-button,
.bwp-audio-popup-container .mfp-close.bwp-mfp-close-button {
	top: -45px;
	right: -15px;
}
.bwp-video-popup-container .mfp-close.bwp-mfp-close-button:active::after,
.bwp-audio-popup-container .mfp-close.bwp-mfp-close-button:active::after {
	position: relative;
	top: 1px;
}


/**
 * 4.0 - Header type 1 (One row) - default
 * -------------------------------------------------------------
 */

#bwp-header {
	background-color: #ffffff;
}

/* sticky header */
.bwp-sticky-header-one-row #bwp-header {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;

	-webkit-transition: box-shadow 0.2s ease;
	-moz-transition: box-shadow 0.2s ease;
	-o-transition: box-shadow 0.2s ease;
	transition: box-shadow 0.2s ease;
}
.admin-bar.bwp-sticky-header-one-row #bwp-header {
	top: 32px;
}


/**
 * 4.1 - Logo
 * -------------------------------------------------------------
 */

.bwp-logo-container {
	float: left;
}

/* logo: text */
.bwp-logo-text {
	display: inline-block;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 26px;
	font-style: normal;
	font-weight: 700;
	line-height: 100px;
	color: #2f3235;
}
.bwp-logo-text:focus,
.bwp-logo-text:hover {
	color: #2f3235;
}
.bwp-logo-text:active {
	position: relative;
	top: 1px;
}

/* logo: image */
.bwp-logo-container .custom-logo-link {
	line-height: 100px;
}
.bwp-logo-container .custom-logo-link:active {
	position: relative;
	top: 1px;
}
.bwp-logo-container .custom-logo-link img {
	max-width: 100%;
	height: auto;
}


/**
 * 4.2 - Search (dropdown search form)
 * -------------------------------------------------------------
 */

.bwp-header-search-container {
	float: right;
	position: relative;
	margin-left: 5px;
}

/* search icon */
.bwp-header-search-icon {
	display: inline-block;
	width: 52px;
	line-height: 100px;
	text-align: center;
	font-family: sans-serif;
	font-size: 17px;
	color: #4c4f53;
}
.bwp-header-search-icon:focus {
	color: #4c4f53;
}
.bwp-header-search-icon:hover,
.bwp-header-search-icon.bwp-active {
	color: #6ca4db;
}
.bwp-header-search-icon i {
	position: relative;
	top: 1px;
}
.bwp-header-search-icon .fa-times {
	font-size: 19px;
}

/* container with search form */
.bwp-dropdown-search-container {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 1002;
	width: 320px;
	height: auto;
	padding: 25px 30px;
	background-color: #1f2123;
	box-shadow: 0 14px 28px -4px rgba(14,17,20,0.35);
}
.bwp-dropdown-search-container::after {
	content: '';
	position: absolute;
	z-index: 1002;
	right: 20px;
	bottom: 100%;
	margin-bottom: -1px;
	border: 6px solid transparent;
	border-bottom: 6px solid #1f2123;
}

/* search form */
#searchform {
	margin: 0;
	padding: 0;
}
#searchform .bwp-search-field {
	height: 45px;
	padding: 0 5px 0 0;
	border: none;
	border-radius: 0;
	box-shadow: none !important;
}
.bwp-dropdown-search-container #searchform .bwp-search-field {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	color: #ffffff;
	background: #1f2123;
	border-bottom: 2px solid #3f4246;
}
#searchform .bwp-search-field:active,
#searchform .bwp-search-field:focus {
	outline: none;
}

/* search form: placeholder */
/* Chrome/Opera/Safari */
.bwp-dropdown-search-container #searchform .bwp-search-field::-webkit-input-placeholder {
	color: #a7abb1;
	opacity: 1;
}
/* Firefox 18- */
.bwp-dropdown-search-container #searchform .bwp-search-field:-moz-placeholder {
	color: #a7abb1;
	opacity: 1;
}
/* Firefox 19+ */
.bwp-dropdown-search-container #searchform .bwp-search-field::-moz-placeholder {
	color: #a7abb1;
	opacity: 1;
}
/* IE 10+ */
.bwp-dropdown-search-container #searchform .bwp-search-field:-ms-input-placeholder {
	color: #a7abb1;
	opacity: 1;
}

/* search form: submit button */
#searchform .bwp-search-submit {
	padding: 0;
	margin-left: 0;
	border: none;
	width: 30px;
	height: 45px;
	line-height: 43px;
	font-family: sans-serif;
	font-size: 14px;
	border-radius: 0;
}
.bwp-dropdown-search-container #searchform .bwp-search-submit {
	color: #a7abb1;
	background: #1f2123;
	border-bottom: 2px solid #3f4246;
}
.bwp-dropdown-search-container #searchform .bwp-search-submit:hover {
	color: #ffffff;
}
#searchform .bwp-search-submit:focus,
#searchform .bwp-search-submit:active {
	outline: none;
	box-shadow: none;
}
#searchform .bwp-search-submit:active i {
	position: relative;
	top: 1px;
}


/**
 * 4.3 - Color switch
 * -------------------------------------------------------------
 */

.bwp-color-switch-icon {
	float: right;
	margin-left: 5px;
	width: 52px;
	line-height: 100px;
	text-align: center;
	font-family: sans-serif;
	font-size: 17px;
	color: #4c4f53;
}
.bwp-color-switch-icon:focus {
	color: #4c4f53;
}
.bwp-color-switch-icon:hover {
	color: #6ca4db;
}
.bwp-color-switch-icon i {
	position: relative;
	top: 1px;
}
.bwp-color-switch-icon .fa-sun {
	top: 2px;
	font-size: 19px;
}


/**
 * 4.4 - Menu
 * -------------------------------------------------------------
 */

.bwp-header-menu-container {
	float: right;
}
.bwp-header-menu-container.bwp-visible {
	margin-right: 10px;
}

/* menu icon (burger) */
.bwp-main-menu-icon {
	float: right;
	position: relative;
	width: 52px;
	height: 100px;
	margin-left: 5px;
}
.bwp-main-menu-icon span {
	display: block;
	position: absolute;
	top: 50%;
	right: 18px;
	left: 18px;
	margin-top: -2px;
	height: 3px;
	background: #4c4f53;
	border-radius: 1px;

	-webkit-transition: background 0.2s ease;
	-moz-transition: background 0.2s ease;
	-o-transition: background 0.2s ease;
	transition: background 0.2s ease;
}
.bwp-main-menu-icon span::before,
.bwp-main-menu-icon span::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background: #4c4f53;
	border-radius: 1px;

	-webkit-transition: background 0.2s ease, width 0.15s linear, left 0.15s linear;
	-moz-transition: background 0.2s ease, width 0.15s linear, left 0.15s linear;
	-o-transition: background 0.2s ease, width 0.15s linear, left 0.15s linear;
	transition: background 0.2s ease, width 0.15s linear, left 0.15s linear;
}
.bwp-main-menu-icon span::before {
	top: -7px;
}
.bwp-main-menu-icon span::after {
	bottom: -7px;
}

/* menu icon: hover + active */
.bwp-main-menu-icon:hover span,
.bwp-main-menu-icon:hover span::before,
.bwp-main-menu-icon:hover span::after,
.bwp-main-menu-icon.bwp-active span,
.bwp-main-menu-icon.bwp-active span::before,
.bwp-main-menu-icon.bwp-active span::after {
	background: #6ca4db;
}
.bwp-main-menu-icon.bwp-active span::before,
.bwp-main-menu-icon.bwp-active span::after {
	width: 50%;
	left: 4px;
}

/* container with menu */
.bwp-main-menu-container {
	float: right;
	margin-right: 10px;
	display: none;
}

/* main menu: important styles (superfish menu) */
.sf-menu,
.sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	right: 0;
	z-index: 1003;
}
.sf-menu li {
	position: relative;
}
.sf-menu > li {
	display: inline-block;
	margin-left: -2px;
}
.sf-menu > li:first-child {
	margin-left: 0;
}
.sf-menu li:hover > ul,
.sf-menu .sfHover > ul {
	display: block;
}
.sf-menu a {
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
	right: 100%;
}

/* main menu (superfish menu) */
.sf-menu {
	float: left;
	text-align: left;
}
.sf-menu li {
	white-space: nowrap;
}
.sf-menu a {
	padding: 0 10px;
	line-height: 100px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	color: #4c4f53;
}
.sf-menu a:hover,
.sf-menu > li:hover > a,
.sf-menu > .current-menu-item > a,
.sf-menu > .current-menu-ancestor > a,
.sf-menu > .current-menu-ancestor > .sf-with-ul::after {
	color: #6ca4db;
}
.sf-menu a i {
	margin-right: 8px;
}

/* main menu: dropdown menu (superfish menu) */
.sf-menu ul {
	min-width: 180px;
	margin-right: -12px;
	padding: 15px;
	background-color: #1f2123;
	box-shadow: 0 14px 28px -4px rgba(14,17,20,0.35);
}
.sf-menu ul::after {
	content: '';
	position: absolute;
	z-index: 1003;
	right: 20px;
	bottom: 100%;
	margin-bottom: -1px;
	border: 6px solid transparent;
	border-bottom: 6px solid #1f2123;
}
.sf-menu ul ul {
	top: -15px;
	margin-right: 15px;
}
.sf-menu ul ul::after {
	display: none;
}
.sf-menu ul li a {
	line-height: 32px !important;
	text-align: right;
	padding: 0 15px;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	color: #a7abb1;
}
.sf-menu ul li a:hover,
.sf-menu ul > li:hover > a,
.sf-menu ul > .current-menu-item > a,
.sf-menu ul > .current-menu-ancestor > a,
.sf-menu ul > .current-menu-ancestor > .sf-with-ul::after {
	color: #ffffff;
}

/* main menu: arrows (superfish menu) */
.sf-arrows .sf-with-ul::after {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.sf-arrows .sf-with-ul::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900; /* solid style */
	content: '\f0d7'; /* icon: caret-down */
	padding-left: 9px;
	color: #4c4f53;

	-webkit-transition: color 0.2s ease;
	-moz-transition: color 0.2s ease;
	-o-transition: color 0.2s ease;
	transition: color 0.2s ease;
}
.sf-arrows > li > .sf-with-ul:focus::after,
.sf-arrows > li:hover > .sf-with-ul::after,
.sf-arrows > .sfHover > .sf-with-ul::after {
	color: #6ca4db;
}

/* main menu: dropdown menu arrows (superfish menu) */
.sf-arrows ul .sf-with-ul {
	padding: 0 15px 0 20px;
}
.sf-arrows ul .sf-with-ul::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900; /* solid style */
	content: '\f0d9'; /* icon: caret-left */
	position: absolute;
	top: 0;
	left: 5px;
	padding-left: 0;
	color: #a7abb1;
}
.sf-arrows ul li > .sf-with-ul:focus::after,
.sf-arrows ul li:hover > .sf-with-ul::after,
.sf-arrows ul .sfHover > .sf-with-ul::after {
	color: #ffffff;
}


/**
 * 4.5 - Mobile menu
 * -------------------------------------------------------------
 */

.bwp-header-sm-menu-container {
	float: right;
	position: relative;
}

/* menu icon (burger) */
.bwp-header-sm-menu-container .bwp-main-menu-icon {
	margin-left: 0;
}

/* container with menu (dropdown container) */
.bwp-sm-main-menu-container {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 1001;
	width: auto;
	height: auto;
	padding: 15px 30px;
	background-color: #1f2123;
	box-shadow: 0 14px 28px -4px rgba(14,17,20,0.35);
}
.bwp-sm-main-menu-container::after {
	content: '';
	position: absolute;
	z-index: 1001;
	right: 20px;
	bottom: 100%;
	margin-bottom: -1px;
	border: 6px solid transparent;
	border-bottom: 6px solid #1f2123;
}

/* mobile menu */
.bwp-sm-menu {
	margin: 0;
	width: 190px;
	text-align: right;
}
.bwp-sm-menu li {
	margin: 2px 0;
}
.bwp-sm-menu li a {
	display: block;
	padding: 6px 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.4;
	color: #a7abb1;
}
.bwp-sm-menu li a:hover,
.bwp-sm-menu li a:focus,
.bwp-sm-menu .current-menu-item > a {
	color: #ffffff;
}
.bwp-sm-menu li a i {
	margin-right: 8px;
}
.bwp-sm-menu ul {
	list-style: none;
	margin: 5px 0;
	padding: 0 15px 0 0;
	border-right: 1px solid #3f4246;
}


/**
 * 4.6 - Add animation to the sticky header (header type 1 - one row)
 * -------------------------------------------------------------
 */

/* add transition */
.bwp-sticky-header-one-row .bwp-logo-text,
.bwp-sticky-header-one-row .bwp-logo-container .custom-logo-link,
.bwp-sticky-header-one-row .bwp-header-search-icon,
.bwp-sticky-header-one-row .bwp-color-switch-icon,
.bwp-sticky-header-one-row .sf-menu a {
	-webkit-transition: line-height 0.2s ease, color 0.2s ease, background-color 0.2s ease;
	-moz-transition: line-height 0.2s ease, color 0.2s ease, background-color 0.2s ease;
	-o-transition: line-height 0.2s ease, color 0.2s ease, background-color 0.2s ease;
	transition: line-height 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.bwp-sticky-header-one-row .bwp-main-menu-icon {
	-webkit-transition: height 0.2s ease;
	-moz-transition: height 0.2s ease;
	-o-transition: height 0.2s ease;
	transition: height 0.2s ease;
}

/* change styles */
.bwp-sticky-header-one-row #bwp-header.bwp-animate-header {
	box-shadow: 0 14px 28px -4px rgba(14,17,20,0.06);
}
.bwp-sticky-header-one-row .bwp-animate-header .bwp-logo-text,
.bwp-sticky-header-one-row .bwp-animate-header .bwp-logo-container .custom-logo-link,
.bwp-sticky-header-one-row .bwp-animate-header .bwp-header-search-icon,
.bwp-sticky-header-one-row .bwp-animate-header .bwp-color-switch-icon,
.bwp-sticky-header-one-row .bwp-animate-header .sf-menu a {
	line-height: 70px;
}
.bwp-sticky-header-one-row .bwp-animate-header .bwp-main-menu-icon {
	height: 70px;
}


/**
 * 5.0 - Header type 2 (Two rows)
 * -------------------------------------------------------------
 */

#bwp-header.bwp-header-two-rows {
	background-color: transparent !important;
}


/**
 * 5.1 - Header type 2: Row 1 - Logo container
 * -------------------------------------------------------------
 */

.bwp-header-logo-row-container {
	margin-top: 60px;
	margin-bottom: 60px;
	text-align: center;
}
.bwp-header-logo-row .bwp-logo-container {
	float: none;
}
.bwp-header-logo-row .bwp-logo-text,
.bwp-header-logo-row .bwp-logo-container .custom-logo-link {
	line-height: normal;
}


/**
 * 5.2 - Header type 2: Row 2 - Navigation container
 * -------------------------------------------------------------
 */

.bwp-header-nav-row {
	width: 100%;
}
.bwp-sticky-header-two-rows .bwp-header-nav-row.bwp-enable-sticky-nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}
.bwp-sticky-header-two-rows .bwp-header-nav-row.bwp-enable-sticky-nav-32 {
	position: fixed;
	top: 32px;
	left: 0;
	z-index: 1000;
}
.bwp-header-nav-row-container {
	background-color: #ffffff;

	-webkit-transition: box-shadow 0.2s ease;
	-moz-transition: box-shadow 0.2s ease;
	-o-transition: box-shadow 0.2s ease;
	transition: box-shadow 0.2s ease;
}
.bwp-sticky-header-two-rows .bwp-enable-sticky-nav .bwp-header-nav-row-container,
.bwp-sticky-header-two-rows .bwp-enable-sticky-nav-32 .bwp-header-nav-row-container {
	box-shadow: 0 14px 28px -4px rgba(14,17,20,0.08);
}

/* menu */
.bwp-header-nav-row .bwp-header-menu-container {
	float: left;
}
.bwp-header-nav-row .bwp-header-menu-container.bwp-visible {
	margin-right: 0;
	margin-left: 10px;
}

/* menu icon (burger) */
.bwp-header-nav-row .bwp-main-menu-icon {
	float: left;
	width: 61px;
	height: 70px;
	margin-left: 0;
	border-right: 1px solid #eeefef;
}
.bwp-header-nav-row .bwp-main-menu-icon span {
	right: 22px;
	left: 22px;
}

/* container with menu */
.bwp-header-nav-row .bwp-main-menu-container {
	float: left;
	margin-right: 0;
	margin-left: 10px;
}

/* main menu (superfish menu) */
.bwp-header-nav-row .sf-menu ul {
	right: auto;
	left: 0;
	margin-right: 0;
}
.bwp-header-nav-row .sf-menu > li:first-child > ul {
	margin-left: -10px;
}
.bwp-header-nav-row .sf-menu ul ul {
	right: auto;
	left: 100%;
}
.bwp-header-nav-row .sf-menu a {
	line-height: 70px;
}
.bwp-header-nav-row .sf-menu ul::after {
	right: auto;
	left: 24px;
}
.bwp-header-nav-row .sf-menu ul ul {
	margin-right: 0;
	margin-left: 15px;
}
.bwp-header-nav-row .sf-menu ul li a {
	text-align: left;
}

/* main menu: dropdown menu arrows (superfish menu) */
.bwp-header-nav-row .sf-arrows ul .sf-with-ul {
	padding: 0 20px 0 15px;
}
.bwp-header-nav-row .sf-arrows ul .sf-with-ul::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900; /* solid style */
	content: '\f0da'; /* icon: caret-right */
	left: auto;
	right: 5px;
}

/* mobile menu */
.bwp-header-nav-row .bwp-header-sm-menu-container {
	float: left;
}

/* mobile menu: container with menu (dropdown container) */
.bwp-header-nav-row .bwp-sm-main-menu-container {
	right: auto;
	left: 0;
}
.bwp-header-nav-row .bwp-sm-main-menu-container::after {
	right: auto;
	left: 24px;
}
.bwp-header-nav-row .bwp-sm-menu {
	text-align: left;
}
.bwp-header-nav-row .bwp-sm-menu ul {
	padding: 0 0 0 15px;
	border-right: none;
	border-left: 1px solid #3f4246;
}

/* search (dropdown search form) */
.bwp-header-nav-row .bwp-header-search-container {
	margin-left: 0;
}

/* search icon */
.bwp-header-nav-row .bwp-header-search-icon {
	width: 61px;
	line-height: 70px;
	border-left: 1px solid #eeefef;
}

/* container with search form */
.bwp-header-nav-row .bwp-dropdown-search-container::after {
	right: 24px;
}

/* color switch */
.bwp-header-nav-row .bwp-color-switch-icon {
	margin-left: 0;
	width: 61px;
	line-height: 70px;
	border-left: 1px solid #eeefef;
}


/**
 * 6.0 - Container with introductory text and background image (Header Image and Header Text)
 * -------------------------------------------------------------
 */

.bwp-intro-container {
	margin-top: 60px;
}

/* bg image */
.bwp-intro-bg {
	position: relative;
	width: 100%;
	height: 560px;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-color: #1f2123;

	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
}

/* bg overlay */
.bwp-intro-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background-color: #1f2123;
	opacity: 0.15;

	-webkit-transition: opacity 0.2s ease;
	-moz-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}
.bwp-intro-container:hover .bwp-intro-bg-overlay {
	opacity: 0.35;
}

/* content */
.bwp-intro-content {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
	padding: 60px;
	text-align: left;

	-webkit-transition: padding-bottom 0.2s ease;
	-moz-transition: padding-bottom 0.2s ease;
	-o-transition: padding-bottom 0.2s ease;
	transition: padding-bottom 0.2s ease;
}
.bwp-intro-container:hover .bwp-intro-content {
	padding-bottom: 70px;
}

/* heading */
.bwp-intro-heading {
	display: inline-block;
	max-width: 560px;
	padding: 15px 20px;
	background-color: #ffffff;
	box-shadow: 0 14px 28px -4px rgba(14,17,20,0.35);
}
.bwp-intro-heading h1 {
	margin-bottom: 0;
	font-size: 34px;
	font-style: normal;
	font-weight: 700;
	line-height: 37px;
	color: #2f3235;
}
.bwp-intro-heading a {
	color: #2f3235;
	text-decoration: underline !important;
}
.bwp-intro-heading a:hover,
.bwp-intro-heading a:focus {
	color: #6ca4db;
}

/* text */
.bwp-intro-text {
	display: block;
	width: 100%;
	max-width: 560px;
	margin: 20px 0 0;
	padding: 15px 20px;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	background-color: #ffffff;
	color: #4c4f53;
	box-shadow: 0 14px 28px -4px rgba(14,17,20,0.35);
}
.bwp-intro-text p {
	margin-bottom: 10px;
}
.bwp-intro-text p:last-child {
	margin-bottom: 0;
}
.bwp-intro-text a {
	color: #4c4f53;
	text-decoration: underline !important;
}
.bwp-intro-text a:hover,
.bwp-intro-text a:focus {
	color: #6ca4db;
}


/**
 * 7.0 - Archive page heading
 * -------------------------------------------------------------
 */

.bwp-archive-heading-container {
	margin-bottom: 60px;
	max-width: 500px;
	width: 100%;
}
.bwp-archive-title {
	margin: 0;
	font-size: 29px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	color: #2f3235;
}
.bwp-archive-description {
	margin: 15px 0 0;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.6;
	color: #4c4f53;
}
.bwp-archive-description p {
	margin-bottom: 10px;
}
.bwp-archive-description p:last-child {
	margin-bottom: 0;
}

/* search results page */
.bwp-archive-title .bwp-search-query-text {
	margin-left: 6px;
}
.bwp-archive-description .bwp-search-results-number {
	margin-right: 3px;
	margin-left: 6px;
	font-weight: 700;
}

/* author page */
.bwp-author-heading-container {
	margin-bottom: 60px;
}
.bwp-author-heading-avatar {
	float: left;
	margin: 0 25px 0 0;
	overflow: hidden;
}
.bwp-author-heading-avatar img {
	display: block;
	margin: 0;
	padding: 0;
	width: 72px !important;
	height: 72px !important;
	border-radius: 36px;
}
.bwp-author-heading-bio-wrap {
	height: 72px;
	display: table-cell;
	vertical-align: middle;
}
.bwp-no-avatars .bwp-author-heading-bio-wrap {
	height: auto;
	display: block;
}
.bwp-author-heading-bio-wrap .bwp-archive-title,
.bwp-author-heading-bio-wrap .bwp-archive-description {
	max-width: 443px;
	width: 100%;
}
.bwp-author-heading-bio-wrap .bwp-archive-description a,
.bwp-author-heading-bio-wrap .bwp-archive-description a:hover,
.bwp-author-heading-bio-wrap .bwp-archive-description a:focus {
	text-decoration: underline !important;
}
.bwp-author-heading-social-links {
	margin-top: 5px;
	text-align: left;
}
.bwp-author-heading-social-links > span {
	margin-right: 8px;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	color: #4c4f53;
}
.bwp-author-heading-social-links ul {
	margin: 0 -10px 0 0;
	display: inline-block;
}
.bwp-author-heading-social-links ul li {
	display: inline-block;
	margin: 10px 10px 0 0;
}
.bwp-author-heading-social-links ul li a {
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	font-family: sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #4c4f53;
	background-color: #ffffff;
	border-radius: 50%;
}
.bwp-author-heading-social-links ul li a:active i {
	position: relative;
	top: 1px;
}
.bwp-author-heading-social-links .bwp-icon-twitter-x {
	display: inline-block;
	width: 13px;
	height: 14px;
	fill: currentColor;
	position: relative;
	top: 3px;
}
.bwp-author-heading-social-links ul li a:active .bwp-icon-twitter-x {
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
}
.bwp-ah-twitter-link:hover,
.bwp-ah-twitter-link:focus {
	color: #000000 !important;
}
.bwp-ah-facebook-f-link:hover,
.bwp-ah-facebook-f-link:focus {
	color: #6e8dd0 !important;
}
.bwp-ah-pinterest-p-link:hover,
.bwp-ah-pinterest-p-link:focus {
	color: #ff3158 !important;
}
.bwp-ah-vk-link:hover,
.bwp-ah-vk-link:focus {
	color: #6089b9 !important;
}
.bwp-ah-telegram-plane-link:hover,
.bwp-ah-telegram-plane-link:focus {
	color: #4bb5e9 !important;
}
.bwp-ah-flickr-link:hover,
.bwp-ah-flickr-link:focus {
	color: #3a7cf5 !important;
}
.bwp-ah-instagram-link:hover,
.bwp-ah-instagram-link:focus {
	color: #f24b73 !important;
}
.bwp-ah-500px-link:hover,
.bwp-ah-500px-link:focus {
	color: #3aadf6 !important;
}
.bwp-ah-youtube-link:hover,
.bwp-ah-youtube-link:focus {
	color: #ff3449 !important;
}
.bwp-ah-vimeo-v-link:hover,
.bwp-ah-vimeo-v-link:focus {
	color: #3bbff6 !important;
}
.bwp-ah-soundcloud-link:hover,
.bwp-ah-soundcloud-link:focus {
	color: #fe823c !important;
}
.bwp-ah-dribbble-link:hover,
.bwp-ah-dribbble-link:focus {
	color: #f65498 !important;
}
.bwp-ah-behance-link:hover,
.bwp-ah-behance-link:focus {
	color: #537fff !important;
}
.bwp-ah-github-link:hover,
.bwp-ah-github-link:focus {
	color: #010101;
}


/**
 * 8.0 - "No results" message (content none)
 * -------------------------------------------------------------
 */

.bwp-no-results {
	margin-bottom: 40px;
	max-width: 500px;
	width: 100%;
}
.bwp-no-results h3 {
	margin: -7px 0 15px 0;
	font-size: 26px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	color: #2f3235;
}
.bwp-no-results p {
	margin: 0 0 -3px;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.6;
	color: #4c4f53;
}
.bwp-no-results a {
	color: #4c4f53;
	text-decoration: underline !important;
}
.bwp-no-results a:hover,
.bwp-no-results a:focus {
	color: #6ca4db;
}


/**
 * 9.0 - Blog posts
 * -------------------------------------------------------------
 */

.bwp-posts-container {
	padding-top: 60px;
	padding-bottom: 20px;
	overflow: hidden;
}

/* masonry */
.bwp-masonry-container {
	margin-right: -30px;
}
.bwp-masonry-item {
	float: left;
}
.bwp-masonry-item.bwp-col-1 {
	float: none;
}
.bwp-post-wrap {
	position: relative;
	margin-right: 30px;
	margin-bottom: 40px;
	padding: 0;
	background-color: #ffffff;
}

/* masonry: 3 columns */
.bwp-col-3-default {
	width: 33.33%;
}
.bwp-col-3 {
	width: 33.33%;
}
.bwp-col-3.bwp-width-2x {
	width: 66.66%;
}

/* masonry: 2 columns */
.bwp-col-2-default {
	width: 50%;
}
.bwp-col-2 {
	width: 50%;
}
.bwp-col-2.bwp-width-2x {
	width: 100%;
}

/* 1 column */
.bwp-col-1 {
	width: 100%;
}


/**
 * 9.1 - Post media: image
 * -------------------------------------------------------------
 */

.bwp-post-media {
	position: relative;
	overflow: hidden;
}

/* img */
.bwp-post-media img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	margin: 0 auto;
}

/* img overlay */
.bwp-post-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 100%;
	background-color: #1f2123;
	opacity: 0;

	-webkit-transition: opacity 0.2s ease;
	-moz-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}
.bwp-post-media:hover .bwp-post-bg-overlay {
	opacity: 0.2;
}

/* hover buttons */
.bwp-post-hover-buttons {
	position: absolute;
	left: 0;
	bottom: 20px;
	z-index: 10;
	text-align: left;
	background-color: #ffffff;
	box-shadow: 6px 6px 18px -2px rgba(14,17,20,0.35);
	opacity: 0;

	-webkit-transition: bottom 0.2s ease, opacity 0.2s ease;
	-moz-transition: bottom 0.2s ease, opacity 0.2s ease;
	-o-transition: bottom 0.2s ease, opacity 0.2s ease;
	transition: bottom 0.2s ease, opacity 0.2s ease;
}
.bwp-post-media:hover .bwp-post-hover-buttons {
	bottom: 30px;
	opacity: 1;
}
.bwp-post-hover-buttons a {
	display: inline-block;
	margin-right: -4px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-family: sans-serif;
	font-size: 15px;
	color: #4c4f53;
	background-color: #ffffff;
}
.bwp-post-hover-buttons a:last-child {
	margin-right: 0;
}
.bwp-post-hover-buttons a:focus {
	color: #4c4f53;
}
.bwp-post-hover-buttons a:hover {
	color: #ffffff;
	background-color: #6ca4db;
}
.bwp-post-hover-buttons a:active i {
	position: relative;
	top: 1px;
}


/**
 * 9.2 - Post media: slider (gallery)
 * -------------------------------------------------------------
 */

.bwp-post-slider-item {
	position: relative;
	overflow: hidden;
}

/* img */
.owl-carousel .owl-item .bwp-post-slider-item img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	margin: 0 auto;
}

/* img overlay */
.bwp-post-media-slider:hover .bwp-post-bg-overlay {
	opacity: 0.2;
}

/* hover buttons */
.bwp-post-media-slider:hover .bwp-post-hover-buttons {
	bottom: 30px;
	opacity: 1;
}

/* slider: navigation */
.bwp-post-media-slider .owl-theme .owl-nav {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 11;
	margin-top: 0 !important;
	box-shadow: -6px 6px 18px -2px rgba(14,17,20,0.35);
}
.bwp-post-media-slider .owl-theme .owl-nav button {
	display: inline-block;
	margin: 0;
	padding: 0;
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-family: sans-serif;
	font-size: 14px;
	background: #1f2123;
	color: #ffffff;
	border-radius: 0;
	outline: none;
}
.bwp-post-media-slider .owl-theme .owl-nav button:hover {
	color: #ffffff;
	background: #6ca4db;
}
.bwp-post-media-slider .owl-theme .owl-nav button:active i {
	position: relative;
	top: 1px;
}


/**
 * 9.3 - Post media: video
 * -------------------------------------------------------------
 */

.bwp-iframe-video-wrap {
	overflow: hidden;
	height: 0;
	padding-bottom: 56.25%;
	position: relative;
	z-index: 10;
}
.bwp-iframe-video-wrap iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: none !important;
}


/**
 * 9.4 - Post media: audio
 * -------------------------------------------------------------
 */

.bwp-iframe-audio-wrap iframe {
	display: block;
	min-height: 160px;
	width: 100%;
	border: none !important;
}


/**
 * 9.5 - Post content
 * -------------------------------------------------------------
 */

.bwp-post-content {
	position: relative;
	padding: 30px;
	word-wrap: break-word;
	overflow: hidden;
}
.bwp-no-avatars .bwp-post-content {
	padding-bottom: 20px;
}

/* link to single page (it is displayed on some post formats (status and link) and if the post does not have a title) */
.bwp-post-link-to-single-page {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 3;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-family: sans-serif;
	font-size: 19px;
	font-weight: 400;
	color: #4c4f53;
	opacity: 0.2;

	-webkit-transition: color 0.2s ease, opacity 0.2s ease;
	-moz-transition: color 0.2s ease, opacity 0.2s ease;
	-o-transition: color 0.2s ease, opacity 0.2s ease;
	transition: color 0.2s ease, opacity 0.2s ease;
}
.bwp-post-link-to-single-page:hover,
.bwp-post-link-to-single-page:focus {
	color: #6ca4db;
	opacity: 1;
}
.bwp-post-link-to-single-page:active i {
	position: relative;
	top: 1px;
}

/* date */
.bwp-post-date {
	margin-bottom: 15px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	color: #989ea6;
}
.bwp-post-date a {
	color: #989ea6;
}
.bwp-post-date a:focus,
.bwp-post-date a:hover {
	color: #6ca4db;
	text-decoration: underline !important;
}
.bwp-post-date.bwp-no-title {
	margin-bottom: 15px;
}

/* title */
.bwp-post-title {
	margin: 0 0 15px;
	font-size: 26px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	color: #2f3235;
}
.bwp-post-title a {
	color: #2f3235;
}
.bwp-post-title a:hover,
.bwp-post-title a:focus {
	color: #4c4f53;
	text-decoration: underline !important;
}

/* post excerpt and post content */
.bwp-post-excerpt,
.bwp-content {
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
	color: #4c4f53;
}
.bwp-post-excerpt a,
.bwp-post-excerpt a:hover,
.bwp-post-excerpt a:focus,
.bwp-content a,
.bwp-content a:hover,
.bwp-content a:focus {
	text-decoration: underline !important;
}
.bwp-post-excerpt p {
	margin: 0;
}
.bwp-content p {
	margin-bottom: 15px;
}
.bwp-masonry-item .bwp-content p:last-child,
.bwp-related-posts .bwp-content p:last-child,
.bwp-page-posts .bwp-content p:last-child {
	margin-bottom: 0;
}

/* more link */
.bwp-content .more-link {
	display: inline-block;
	margin-bottom: 5px;
}
.bwp-content .more-link::after {
	content: '...';
	display: inline-block;
	margin-left: 4px;
}
.bwp-content p .more-link {
	margin-bottom: 0;
}
.bwp-content p .more-link::after {
	display: none;
}
.bwp-content p .more-link::before {
	content: '...';
	display: inline-block;
	margin-right: 4px;
}
.bwp-content .more-link:hover::before,
.bwp-content .more-link:focus::before {
	color: #4c4f53;
}

/* author */
.bwp-post-author {
	width: 60%;
	min-height: 1px;
	float: left;
	text-align: left;
	margin-top: 15px;
}
.bwp-no-avatars .bwp-post-author {
	margin-top: 5px;
}

/* author: avatar */
.bwp-post-author-avatar {
	float: left;
	margin-right: 10px;
	position: relative;
	overflow: hidden;
}
.bwp-post-author-avatar img {
	display: block;
	margin: 0;
	padding: 0;
	width: 36px;
	height: 36px !important;
	border-radius: 18px;
}
.bwp-avatar-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 100%;
	background-color: #1f2123;
	opacity: 0;

	-webkit-transition: opacity 0.2s ease;
	-moz-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}
.bwp-post-author-avatar .bwp-avatar-bg-overlay {
	border-radius: 18px;
}
.bwp-post-author-avatar:hover .bwp-avatar-bg-overlay {
	opacity: 0.2;
}

/* author: name */
.bwp-post-author-name {
	height: 36px;
	display: table-cell;
	vertical-align: middle;
}
.bwp-post-author-name a {
	display: inline-block;
	padding: 5px 0;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	color: #989ea6;
}
.bwp-post-author-name a:hover,
.bwp-post-author-name a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}

/* author name: cropping long names... */
.bwp-post-author-name .fn {
	display: block;
	max-width: 104px;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.bwp-no-avatars .bwp-post-author-name .fn {
	max-width: 150px; /* 104px name + 46px avatar img */
}

/* icons */
.bwp-post-icons {
	width: 40%;
	min-height: 1px;
	float: right;
	text-align: right;
	margin-top: 15px;
	font-family: sans-serif;
	font-weight: 400;
}
.bwp-post-icons > div {
	display: inline-block;
}
.bwp-no-avatars .bwp-post-icons {
	margin-top: 5px;
}

/* icons (if author is hidden) */
.bwp-post-icons.bwp-no-post-author {
	width: 100%;
	float: none;
	text-align: left;
	margin-top: 8px;
	margin-bottom: -10px;
}
.bwp-no-avatars .bwp-post-icons.bwp-no-post-author {
	margin-bottom: 0;
}

/* likes counter */
.bwp-post-likes a {
	display: inline-block;
	height: 36px;
	line-height: 36px;
	padding: 0 6px;
	color: #989ea6;
}
.bwp-post-likes a:hover {
	color: #6ca4db;
}
.bwp-post-likes .bwp-like {
	margin-right: 6px;
	font-size: 15px;
}
.bwp-post-likes .bwp-count {
	position: relative;
	top: -1px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
}
.bwp-post-icons .bwp-post-likes:last-child {
	margin-right: -6px;
}
.bwp-post-icons.bwp-no-post-author .bwp-post-likes:last-child {
	margin-right: 0;
}
.bwp-post-icons.bwp-no-post-author .bwp-post-likes:first-child {
	margin-left: -5px;
}

/* social share */
.bwp-post-share {
	position: relative;
}

/* social share: "share" icon */
.bwp-post-share-icon {
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	font-size: 15px;
	color: #989ea6;
}
.bwp-post-share-icon:focus {
	color: #989ea6;
}
.bwp-post-share:hover .bwp-post-share-icon,
.bwp-post-share-icon:hover {
	color: #6ca4db;
}
.bwp-post-icons .bwp-post-share:last-child {
	margin-right: -11px;
}
.bwp-post-icons.bwp-no-post-author .bwp-post-share:last-child {
	margin-right: 0;
}
.bwp-post-icons.bwp-no-post-author .bwp-post-share:first-child {
	margin-left: -10px;
}

/* social share: icons list */
.bwp-post-share-list-wrap {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	bottom: 100%;
	right: -6px;
	z-index: 10;
	margin-bottom: 10px;
	padding: 6px;

	-webkit-transition: all 0.15s ease 0.4s;
	-moz-transition: all 0.15s ease 0.4s;
	-o-transition: all 0.15s ease 0.4s;
	transition: all 0.15s ease 0.4s;
}
.bwp-post-share-list {
	display: block;
	position: relative;
	width: 162px; /* 30*5 + 6 + 6 */
	height: 40px;
	margin: 0;
	padding: 0 6px;
	background-color: #ffffff;
	box-shadow: 0 14px 28px -4px rgba(14,17,20,0.15);
}
.bwp-post-share-list::after {
	content: '';
	position: absolute;
	z-index: 10;
	top: 100%;
	right: 11px;
	margin-top: -1px;
	border: 6px solid transparent;
	border-top: 6px solid #ffffff;
}
.bwp-post-share-list li {
	float: left;
	margin: 0;
}
.bwp-post-share-list li a {
	display: inline-block;
	width: 30px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	color: #4c4f53;
}
.bwp-post-share-list li a:focus {
	color: #4c4f53;
}
.bwp-post-share-list .bwp-icon-twitter-x {
	display: inline-block;
	width: 13px;
	height: 14px;
	fill: currentColor;
	position: relative;
	top: 3px;
}
.bwp-post-share-list .bwp-twitter-share:hover {
	color: #000000 !important;
}
.bwp-post-share-list .bwp-facebook-share:hover {
	color: #6e8dd0 !important;
}
.bwp-post-share-list .bwp-pinterest-share:hover {
	color: #ff3158 !important;
}
.bwp-post-share-list .bwp-vk-share:hover {
	color: #517fb5 !important;
}
.bwp-post-share-list .bwp-reddit-share:hover {
	color: #fb411c !important;
}

/* social share: icons list (if author is hidden) */
.bwp-post-icons.bwp-no-post-author .bwp-post-share-list-wrap {
	right: auto;
	left: -6px;
}
.bwp-post-icons.bwp-no-post-author .bwp-post-share-list::after {
	right: auto;
	left: 11px;
}

/* show social share icons */
.bwp-post-share:hover .bwp-post-share-list-wrap {
	visibility: visible;
	opacity: 1;
	margin-bottom: 0;

	-webkit-transition: all 0.15s ease 0s;
	-moz-transition: all 0.15s ease 0s;
	-o-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}

/* recent comments */
.bwp-post-comments {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eeefef;
}
.bwp-no-avatars .bwp-post-comments {
	margin-top: 10px;
	padding-bottom: 10px;
}

/* recent comments: title */
.bwp-post-comments-title {
	margin-bottom: 20px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	color: #989ea6;
}
.bwp-post-comments-title i {
	position: relative;
	top: 1px;
	margin-right: 8px;
}

/* recent comments: comments list */
.bwp-post-comments-list {
	margin: 0;
}
.bwp-post-comments-list li {
	margin-bottom: 15px;
}
.bwp-post-comments-list li:last-child {
	margin-bottom: 0;
}

/* recent comments: comment author avatar */
.bwp-post-comment-author-avatar {
	float: left;
	margin-right: 10px;
	overflow: hidden;
}
.bwp-post-comment-author-avatar img {
	display: block;
	margin: 0;
	padding: 0;
	width: 36px;
	height: 36px !important;
	border-radius: 18px;
}

/* recent comments: comment content */
.bwp-post-comment-content {
	height: 36px;
	display: table-cell;
	vertical-align: middle;
}
.bwp-no-avatars .bwp-post-comment-content {
	height: auto;
	display: block;
}
.bwp-post-comment-author {
	display: block;
	margin-bottom: 5px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	color: #2f3235;
}
.bwp-post-comment-excerpt {
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.6;
	color: #4c4f53;
}
.bwp-post-comment-excerpt a {
	display: block;
	color: #4c4f53;
}
.bwp-post-comment-excerpt a:focus {
	color: #4c4f53;
}
.bwp-post-comment-excerpt a:hover {
	color: #4c4f53;
	text-decoration: underline !important;
}

/* add comment link */
.bwp-post-add-comment-link {
	display: inline-block;
	margin-top: 20px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	color: #989ea6;
}
.bwp-post-add-comment-link:hover,
.bwp-post-add-comment-link:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}
.bwp-post-add-comment-link i {
	margin-right: 8px;
}
.bwp-post-add-comment-link.bwp-post-comments-closed {
	font-weight: 400;
	text-transform: none;
}

/* post format: quote */
.bwp-post-quote-format .bwp-post-title {
	margin-bottom: 17px;
}
.bwp-masonry-item .bwp-post-quote-format .bwp-content blockquote p,
.bwp-related-posts .bwp-post-quote-format .bwp-content blockquote p,
.bwp-page-posts .bwp-post-quote-format .bwp-content blockquote p {
	margin-bottom: 10px;
}
.bwp-masonry-item .bwp-post-quote-format .bwp-content blockquote cite,
.bwp-related-posts .bwp-post-quote-format .bwp-content blockquote cite,
.bwp-page-posts .bwp-post-quote-format .bwp-content blockquote cite {
	margin-top: 10px;
}
.bwp-masonry-item .bwp-post-quote-format .bwp-content blockquote:last-child,
.bwp-related-posts .bwp-post-quote-format .bwp-content blockquote:last-child,
.bwp-page-posts .bwp-post-quote-format .bwp-content blockquote:last-child {
	margin-bottom: 2px;
}

/* post format: status */
.bwp-post-status-format .bwp-post-title {
	display: none;
}
.bwp-post-status-format .bwp-content {
	font-size: 19px;
}

/* post format: chat */
.bwp-post-chat-format .bwp-content p {
	background-color: #f7f8f8;
}
.bwp-masonry-item .bwp-post-chat-format .bwp-content p:last-child,
.bwp-related-posts .bwp-post-chat-format .bwp-content p:last-child,
.bwp-page-posts .bwp-post-chat-format .bwp-content p:last-child {
	margin-bottom: 2px;
}

/* sticky post: icon */
.bwp-post-sticky-mark {
	display: none;
}
.sticky .bwp-post-sticky-mark {
	display: inline-block;
	position: absolute;
	top: -18px;
	left: 18px;
	z-index: 20;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	font-family: sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	background-color: #1f2123;
	border-radius: 18px;
	box-shadow: 0 6px 18px -2px rgba(14,17,20,0.35);
}
.sticky .bwp-post-sticky-mark i {
	position: relative;
	top: 1px;
}


/**
 * 10.0 - Pagination (WordPress CSS classes)
 * -------------------------------------------------------------
 */

.pagination {
	overflow: hidden;
	display: block;
	margin: -10px 0 50px;
	padding: 0;
	border-radius: 0;
}
.pagination .nav-links {
	position: relative;
	text-align: center;
}
.pagination .nav-links::before,
.pagination .nav-links::after {
	content: " ";
	display: table;
}
.pagination .nav-links::after {
	clear: both;
}
.pagination .nav-links .page-numbers {
	display: inline-block;
	padding: 10px 12px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	color: #4c4f53;
}
.pagination .nav-links .page-numbers.dots {
	padding: 10px 5px;
}
.pagination .nav-links .prev.page-numbers,
.pagination .nav-links .next.page-numbers {
	position: absolute;
	top: 0;
}
.pagination .nav-links .prev.page-numbers {
	left: 0;
	padding-left: 0;
}
.pagination .nav-links .prev.page-numbers i {
	margin-right: 10px;
}
.pagination .nav-links .next.page-numbers {
	right: 0;
	padding-right: 0;
}
.pagination .nav-links .next.page-numbers i {
	margin-left: 10px;
}
.pagination .nav-links a.page-numbers:focus {
	color: #4c4f53;
}
.pagination .nav-links .page-numbers.current {
	color: #6ca4db;
}
.pagination .nav-links a.page-numbers:hover {
	color: #6ca4db;
	text-decoration: underline !important;
}


/**
 * 11.0 - Single post page
 * -------------------------------------------------------------
 */

.bwp-single-post-container {
	margin-top: 60px;
	padding-bottom: 20px;
}

/* container heading */
.bwp-container-title {
	margin-bottom: 25px;
	font-size: 26px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	color: #2f3235;
}

/* single post */
.bwp-single-post-article {
	position: relative;
	margin-bottom: 40px;
	padding: 0;
	background-color: #ffffff;
}

/* post media: image */
/* hover buttons */
.bwp-single-post-article .bwp-post-hover-buttons {
	bottom: 25px;
}
.bwp-single-post-article .bwp-post-hover-buttons a {
	font-size: 16px;
}
.bwp-single-post-article .bwp-post-media:hover .bwp-post-hover-buttons,
.bwp-single-post-article .bwp-post-media-slider:hover .bwp-post-hover-buttons {
	bottom: 35px;
	opacity: 1;
}

/* image caption */
.bwp-post-image-caption {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 11;
	max-width: 328px;
	width: auto;
	height: auto;
	padding: 4px 10px;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.6;
	color: #ffffff;
	background-color: #1f2123;
	word-wrap: break-word;
}

/* post content */
.bwp-single-post-article .bwp-post-content {
	padding: 30px 30px 20px;
}

/* page content */
.bwp-page-article .bwp-post-content.bwp-page-only-content {
	padding-top: 25px;
	padding-bottom: 10px;
}
.bwp-page-article .bwp-post-content.bwp-page-no-metadata {
	padding-top: 25px;
}
.bwp-page-article .bwp-post-content.bwp-page-no-social-share {
	padding-bottom: 10px;
}

/* attachment page content */
.bwp-single-post-article.attachment .bwp-post-content {
	padding-top: 25px;
	padding-bottom: 10px;
}

/* metadata */
.bwp-single-post-metadata {
	margin: 0 0 15px;
}
.bwp-single-post-metadata.bwp-no-title {
	margin-bottom: 20px;
}
.bwp-single-post-metadata li {
	display: inline;
	margin-right: 10px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.7;
	text-transform: uppercase;
	color: #989ea6;
}
.bwp-single-post-metadata li:last-child {
	margin-right: 0;
}
.bwp-single-post-metadata li > span:first-child {
	text-transform: none;
	margin-right: 2px;
}
.bwp-single-post-metadata li a {
	display: inline-block;
	color: #989ea6;
}
.bwp-single-post-metadata li a:hover,
.bwp-single-post-metadata li a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}

/* title */
.bwp-single-post-article .bwp-post-title {
	margin-bottom: 20px !important;
	font-size: 34px;
}

/* content */
.bwp-single-post-article .bwp-content {
	padding-bottom: 5px;
}

/* post format: quote */
.bwp-single-post-article.bwp-post-quote-format .bwp-content blockquote:nth-last-child(2) {
	margin-bottom: 17px;
}
.bwp-single-post-article.bwp-post-quote-format .bwp-content blockquote p {
	margin-bottom: 10px;
}
.bwp-single-post-article.bwp-post-quote-format .bwp-content blockquote cite {
	margin-top: 10px;
}

/* post format: status */
.bwp-single-post-article.bwp-post-status-format .bwp-single-post-metadata {
	margin-bottom: 20px !important;
}

/* tags */
.bwp-single-post-tags {
	padding-bottom: 20px;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
	color: #4c4f53;
}
.bwp-single-post-tags a {
	color: #4c4f53;
}
.bwp-single-post-tags a:first-child {
	margin-left: 4px;
}
.bwp-single-post-tags a::before {
	content: '#';
}
.bwp-single-post-tags a:hover,
.bwp-single-post-tags a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}

/* social share icons and counters */
.bwp-single-post-share,
.bwp-single-post-counters {
	display: inline-block;
	min-height: 1px;
	margin: 0 0 20px;
}

/* social share icons */
.bwp-single-post-share {
	width: 60%;
	float: left;
	text-align: left;
}
.bwp-single-post-share > span {
	margin-right: 5px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.6;
	text-transform: uppercase;
	color: #989ea6;
}
.bwp-single-post-share-list {
	margin: 0;
	display: inline-block;
}
.bwp-single-post-share-list li {
	display: inline-block;
	margin-left: 2px;
}
.bwp-single-post-share-list li a {
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	font-family: sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #ffffff;
	border-radius: 50%;
}
.bwp-single-post-share-list li a:hover,
.bwp-single-post-share-list li a:focus {
	color: #ffffff;
}
.bwp-single-post-share-list li a i {
	position: relative;
	top: 1px;
}
.bwp-single-post-share-list li a:active i {
	top: 2px;
}
.bwp-single-post-share-list .bwp-icon-twitter-x {
	display: inline-block;
	width: 13px;
	height: 14px;
	fill: currentColor;
	position: relative;
	top: 3px;
}
.bwp-single-post-share-list li a:active .bwp-icon-twitter-x {
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
}

/* social share icons: background-color */
.bwp-single-post-share-list .bwp-twitter-share {
	background-color: #000000;
}
.bwp-single-post-share-list .bwp-facebook-share {
	background-color: #6e8dd0;
}
.bwp-single-post-share-list .bwp-pinterest-share {
	background-color: #ff3158;
}
.bwp-single-post-share-list .bwp-vk-share {
	background-color: #517fb5;
}
.bwp-single-post-share-list .bwp-reddit-share {
	background-color: #fb411c;
}

/* social share icons: hover background-color */
.bwp-single-post-share-list .bwp-twitter-share:hover {
	background-color: #303030;
}
.bwp-single-post-share-list .bwp-facebook-share:hover {
	background-color: #7b9be0;
}
.bwp-single-post-share-list .bwp-pinterest-share:hover {
	background-color: #ff5071;
}
.bwp-single-post-share-list .bwp-vk-share:hover {
	background-color: #5f93d0;
}
.bwp-single-post-share-list .bwp-reddit-share:hover {
	background-color: #fe5f40;
}

/* counters */
.bwp-single-post-counters {
	width: 40%;
	float: right;
}
.bwp-single-post-counters-list {
	margin: 0 -3px 0 0;
	float: right;
	font-family: sans-serif;
	font-weight: 400;
}
.bwp-single-post-counters-list li {
	float: left;
	margin-right: 10px;
}
.bwp-single-post-counters-list li:last-child {
	margin-right: 0;
}
.bwp-single-post-counters-list li a {
	display: inline-block;
	height: 36px;
	line-height: 36px;
	padding: 0 6px;
	color: #989ea6;
}
.bwp-single-post-counters-list li a:hover {
	color: #6ca4db;
}
.bwp-single-post-comments-count i,
.bwp-single-post-likes-count .bwp-like {
	margin-right: 8px;
	font-size: 17px;
}
.bwp-single-post-comments-count .bwp-count,
.bwp-single-post-likes-count .bwp-count {
	position: relative;
	top: -2px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
}

/* social share icons on pages */
.bwp-page-article .bwp-single-post-share {
	width: 100%;
	float: none;
	margin-bottom: 15px;
}

/* section with tags and counters */
.bwp-single-post-tags-counters .bwp-single-post-tags {
	min-height: 1px;
	width: 60%;
	float: left;
}
.bwp-single-post-tags-counters .bwp-single-post-counters {
	margin-bottom: 12px;
}
.bwp-single-post-tags-counters .bwp-single-post-counters-list {
	margin-top: -3px;
}

/* post navigation (WordPress CSS classes) */
.post-navigation {
	margin: 5px 0 0;
	padding: 15px 0 0;
	border-top: 1px solid #eeefef;
}
.post-navigation::before,
.post-navigation::after {
	content: " ";
	display: table;
}
.post-navigation::after {
	clear: both;
}
.post-navigation {
	zoom: 1;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
	display: inline-block;
	min-height: 1px;
	width: 50%;
}
.post-navigation .nav-previous {
	float: left;
	text-align: left;
	padding-right: 15px;
}
.post-navigation .nav-next {
	float: right;
	text-align: right;
	padding-left: 15px;
}
.post-navigation .nav-links a {
	display: inline-block;
	width: 100%;
	padding: 10px 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
	color: #4c4f53; /* .post-title-nav color */
	word-wrap: break-word;
}
.post-navigation .nav-links a:hover,
.post-navigation .nav-links a:focus {
	color: #6ca4db; /* .post-title-nav color */
}
.post-navigation .nav-links a .meta-nav {
	display: block;
	margin-bottom: 5px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: #989ea6;
}
.post-navigation .nav-links a:hover .meta-nav,
.post-navigation .nav-links a:focus .meta-nav {
	color: #989ea6;
}
.post-navigation .nav-links a .post-title-nav {
	display: block;
}
.post-navigation .nav-links a:hover .post-title-nav,
.post-navigation .nav-links a:focus .post-title-nav {
	text-decoration: underline;
}
.post-navigation .nav-previous i {
	margin-right: 10px;
}
.post-navigation .nav-next i {
	margin-left: 10px;
}


/**
 * 11.1 - WordPress content styles: TinyMCE editor (Classic editor)
 * -------------------------------------------------------------
 */

/* alignment */
.alignleft {
	float: left;
	margin: 0 30px 15px 0;
}
.alignright {
	float: right;
	margin: 0 0 15px 30px;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 15px auto;
}
.alignnone {
	clear: both;
	display: block;
	margin: 15px 0;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.text-justify {
	text-align: justify;
}

/* ul, ol */
.bwp-content ul,
.comment-content ul {
	list-style-type: disc;
	margin: 0 0 15px;
	padding: 0 0 0 20px;
}
.bwp-content ol,
.comment-content ol {
	margin: 0 0 15px;
	padding: 0 0 0 27px;
}
.bwp-content ul ol,
.bwp-content ul ul,
.bwp-content ol ul,
.bwp-content ol ol,
.comment-content ul ol,
.comment-content ul ul,
.comment-content ol ul,
.comment-content ol ol {
	margin: 2px 0;
	padding: 0 0 0 20px;
}

/* figcaption */
.bwp-content figcaption {
	margin: 0;
	text-align: left;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
}

/* audio and video player */
.bwp-content .wp-audio-shortcode,
.bwp-content .wp-video {
	margin: 0 0 15px;
}
.bwp-content .wp-video {
	width: 100% !important;
}
.bwp-content .mejs-controls button:hover {
	background-color: transparent !important;
}

/* player with playlist */
.bwp-content .wp-playlist {
	width: 100%;
	margin: 0 0 15px;
	padding: 20px 20px 10px;
	font-size: 15px;
	line-height: 1.7;
	color: #4c4f53;
	background: #ffffff;
	border: 1px solid #eeefef;
}
.bwp-content .wp-playlist a {
	text-decoration: none !important;
}

/* playlist: current item */
.bwp-content .wp-playlist-current-item {
	margin: 0 0 20px;
}
.bwp-content .wp-playlist-current-item img {
	margin-right: 15px !important;
}
.bwp-content .wp-playlist-current-item .wp-playlist-item-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.7;
	color: #2f3235;
}
.bwp-content .wp-playlist-current-item .wp-playlist-item-album {
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: #989ea6;
}
.bwp-content .wp-playlist-current-item .wp-playlist-item-artist {
	font-size: 13px;
	text-transform: none;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: #989ea6;
}

/* playlist: tracks */
.bwp-content .wp-playlist-tracks {
	margin-top: 10px;
}
.bwp-content .wp-playlist-tracks .wp-playlist-item {
	padding: 10px 0;
	border-bottom: 1px solid #eeefef;
}
.bwp-content .wp-playlist-tracks .wp-playlist-item:last-child {
	border-bottom: none;
}
.bwp-content .wp-playlist-item a,
.bwp-content .wp-playlist-item a:focus {
	color: #4c4f53;
}
.bwp-content .wp-playlist-item a:hover {
	color: #6ca4db;
}
.bwp-content .wp-playlist-item.wp-playlist-playing {
	font-weight: 700;
	color: #4c4f53;
	background: #ffffff;
}
.bwp-content .wp-playlist-item.wp-playlist-playing a,
.bwp-content .wp-playlist-item.wp-playlist-playing a:hover,
.bwp-content .wp-playlist-item.wp-playlist-playing a:focus {
	color: #4c4f53;
}
.bwp-content .wp-playlist-item .wp-playlist-item-title {
	font-size: 15px;
	line-height: 1.7;
}
.bwp-content .wp-playlist-item .wp-playlist-item-artist {
	font-size: 13px;
	font-weight: 400;
	text-transform: none;
	color: #989ea6;
}
.bwp-content .wp-playlist-item .wp-playlist-item-length {
	top: 11px;
	font-size: 13px;
	line-height: 1.7;
	color: #4c4f53;
}

/* image with caption */
.wp-caption {
	max-width: 100%;
	margin-top: 0;
	margin-bottom: 15px;
	padding: 0;
}
.wp-caption img {
	border: none;
	margin: 0;
	padding: 0;
	max-width: 100%;
	height: auto;
}
.wp-caption .wp-caption-text {
	margin: 0;
	padding: 10px 0 0;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	text-align: left;
	line-height: 1.7;
}

/* gallery with images */
.gallery {
	margin: 0 -10px;
	padding: 0;
}
.gallery .gallery-item {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
	margin: 0 0 15px;
	padding: 0 10px;
}
.gallery .gallery-item .gallery-caption {
	margin: 0;
	padding: 10px 10px 0 0;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.6;
	text-align: left;
}
.gallery.gallery-columns-5 .gallery-item .gallery-caption,
.gallery.gallery-columns-6 .gallery-item .gallery-caption,
.gallery.gallery-columns-7 .gallery-item .gallery-caption,
.gallery.gallery-columns-8 .gallery-item .gallery-caption,
.gallery.gallery-columns-9 .gallery-item .gallery-caption {
	display: none;
}
.gallery .gallery-icon a {
	display: block;
}
.gallery .gallery-icon img {
	display: block;
	max-width: 100%;
	height: auto;
	border: none !important;
	margin: 0;
	padding: 0;
}
.gallery.gallery-columns-1 .gallery-item {
	width: 100%;
}
.gallery.gallery-columns-2 .gallery-item {
	width: 50%;
}
.gallery.gallery-columns-3 .gallery-item {
	width: 33.3333336%;
}
.gallery.gallery-columns-4 .gallery-item {
	width: 25%;
}
.gallery.gallery-columns-5 .gallery-item {
	width: 20%;
}
.gallery.gallery-columns-6 .gallery-item {
	width: 16.6666667%;
}
.gallery.gallery-columns-7 .gallery-item {
	width: 14.2857143%;
}
.gallery.gallery-columns-8 .gallery-item {
	width: 12.5%;
}
.gallery.gallery-columns-9 .gallery-item {
	width: 11.1111111%;
}

/* twitter tweet */
.twitter-tweet {
	margin-top: 0 !important;
	margin-bottom: 15px !important;
}

/* table */
.bwp-content table,
.comment-content table {
	margin: 0 0 15px;
}
.bwp-content table td,
.comment-content table td,
.bwp-content table th,
.comment-content table th {
	padding: 10px 15px;
	border: 1px solid #eeefef;
}
.bwp-content table th,
.comment-content table th {
	font-weight: 700;
}

/* forms: buttons */
.bwp-content input[type="button"],
.bwp-content input[type="reset"],
.bwp-content input[type="submit"] {
	border: none;
	outline: none;
	display: inline-block;
	padding: 0 35px;
	height: 48px;
	line-height: 48px;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	color: #ffffff;
	background-color: #1f2123;
	border-radius: 0;

	-webkit-transition: background-color 0.2s ease;
	-moz-transition: background-color 0.2s ease;
	-o-transition: background-color 0.2s ease;
	transition: background-color 0.2s ease;
}
.bwp-content input[type="button"]:focus,
.bwp-content input[type="reset"]:focus,
.bwp-content input[type="submit"]:focus {
	color: #ffffff;
}
.bwp-content input[type="button"]:hover,
.bwp-content input[type="reset"]:hover,
.bwp-content input[type="submit"]:hover {
	color: #ffffff;
	background-color: #6ca4db;
}
.bwp-content input[type="button"]:active,
.bwp-content input[type="reset"]:active,
.bwp-content input[type="submit"]:active {
	position: relative;
	top: 1px;
}
.bwp-content .post-password-form input[type="submit"] {
	margin-left: 12px;
	padding: 0 20px;
	height: 47px;
	line-height: 47px;
}
.bwp-masonry-item .bwp-content .post-password-form input[type="submit"],
.bwp-related-posts .bwp-content .post-password-form input[type="submit"],
.bwp-page-posts .bwp-content .post-password-form input[type="submit"] {
	margin-left: 0;
	margin-bottom: 5px;
}

/* forms: input tags; select element */
.bwp-content input[type="text"],
.bwp-content input[type="email"],
.bwp-content input[type="url"],
.bwp-content input[type="password"],
.bwp-content input[type="search"],
.bwp-content input[type="tel"],
.bwp-content input[type="number"],
.bwp-content input[type="date"],
.bwp-content textarea,
.bwp-content select {
	max-width: 100%;
	width: 100%;
	height: 40px;
	padding: 0 10px;
	font-weight: 400;
	color: #4c4f53;
	background: #ffffff;
	border: 2px solid #eeefef;
	border-top-width: 1px;
	border-radius: 0;

	-webkit-transition: border-color 0.2s ease;
	-moz-transition: border-color 0.2s ease;
	-o-transition: border-color 0.2s ease;
	transition: border-color 0.2s ease;
}
.bwp-content input[type="password"] {
	letter-spacing: 3px;
}
.bwp-content .post-password-form input[type="password"] {
	margin-top: 5px;
	height: 47px;
}
.bwp-content input[type="date"] {
	padding-top: 7px;
	padding-bottom: 7px;
}
.bwp-content textarea {
	height: 110px;
	margin-bottom: -7px;
	padding: 10px;
	line-height: 1.7;
	resize: vertical;
}
.bwp-content select {
	padding-left: 6px;
}
.bwp-content select[multiple] {
	height: 110px;
	margin-bottom: -2px;
	padding: 5px 8px;
}
.bwp-content input[type="text"]:hover,
.bwp-content input[type="email"]:hover,
.bwp-content input[type="url"]:hover,
.bwp-content input[type="password"]:hover,
.bwp-content input[type="search"]:hover,
.bwp-content input[type="tel"]:hover,
.bwp-content input[type="number"]:hover,
.bwp-content input[type="date"]:hover,
.bwp-content textarea:hover,
.bwp-content select:hover {
	border-color: #6ca4db;
}
.bwp-content input[type="text"]:focus,
.bwp-content input[type="email"]:focus,
.bwp-content input[type="url"]:focus,
.bwp-content input[type="password"]:focus,
.bwp-content input[type="search"]:focus,
.bwp-content input[type="tel"]:focus,
.bwp-content input[type="number"]:focus,
.bwp-content input[type="date"]:focus,
.bwp-content textarea:focus,
.bwp-content select:active,
.bwp-content select:focus {
	outline: none;
	border-color: #6ca4db;
}
.bwp-content input[type="file"] {
	width: 100%;
	margin: 0;
	padding: 10px;
	font-size: 15px;
	border: 2px dashed #eeefef;
	border-top-width: 1px;

	-webkit-transition: border-color 0.2s ease;
	-moz-transition: border-color 0.2s ease;
	-o-transition: border-color 0.2s ease;
	transition: border-color 0.2s ease;
}
.bwp-content input[type="file"]:hover {
	border-color: #6ca4db;
}
.bwp-content input[type="file"]:focus {
	outline: none;
	border-color: #6ca4db;
}

/* label */
.bwp-content label {
	display: inline-block;
	width: 100%;
	max-width: 100%;
	text-align: left;
	margin: 0;
	padding: 0 0 5px;
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.7;
}
.bwp-content p label:last-child {
	padding-bottom: 0;
}
.bwp-content .post-password-form label {
	width: auto;
	margin-bottom: 5px;
	padding-bottom: 0;
}
.bwp-masonry-item .bwp-content .post-password-form label,
.bwp-related-posts .bwp-content .post-password-form label,
.bwp-page-posts .bwp-content .post-password-form label {
	margin-bottom: 10px;
}

/* checkbox and radio buttons */
input[type="checkbox"],
input[type="radio"] {
	display: inline-block;
	margin: 0 5px 0 0;
	padding: 0;
	width: 16px;
	min-width: 16px;
	height: 16px;
	line-height: 0;
	position: relative;
	top: -2px;
	border: 2px solid #e3e5e6;
	background: #ffffff;
	clear: none;
	cursor: pointer;
	outline: none !important;
	text-align: center;
	vertical-align: middle;
	appearance: none;
	-webkit-appearance: none;

	-webkit-transition: border-color 0.2s ease;
	-moz-transition: border-color 0.2s ease;
	-o-transition: border-color 0.2s ease;
	transition: border-color 0.2s ease;
}
input[type="checkbox"] {
	border-radius: 0;
	border-top-width: 1px;
}
input[type="radio"] {
	border-radius: 50%;
	border-top-width: 2px;
}
input[type="checkbox"]:hover,
input[type="radio"]:hover {
	border-color: #6ca4db;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
	background: #6ca4db;
	border-color: #6ca4db;
}
input[type="checkbox"]:checked::before {
	content: "\2714";
	line-height: 13px;
	color: #ffffff;
}
input[type="radio"]:checked::before {
	content: "\2022";
	font-size: 22px;
	line-height: 12px;
	color: #ffffff;
}

/* Contact Form 7: additional styles */
/* label */
.bwp-content .wpcf7 span[class*="quiz"] label {
	padding-bottom: 0;
}
/* input, textarea */
.bwp-content .wpcf7 label input,
.bwp-content .wpcf7 label textarea {
	margin-top: 5px;
	font-weight: 400;
}
/* submit */
.bwp-content .wpcf7 input[type="submit"] {
	margin: 5px 0;
	font-weight: 700;
}
/* checkboxes, radio buttons */
.bwp-content .wpcf7 .wpcf7-list-item {
	margin: 0 20px 0 0;
}
.bwp-content .wpcf7 .wpcf7-list-item:last-child {
	margin-right: 0;
}
.bwp-content .wpcf7 .wpcf7-list-item label {
	font-weight: 400;
}
.bwp-content .wpcf7 .wpcf7-list-item input[type="checkbox"]:first-child,
.bwp-content .wpcf7 .wpcf7-list-item input[type="radio"]:first-child {
	margin-right: 5px;
}
.bwp-content .wpcf7 .wpcf7-list-item input[type="checkbox"]:last-child,
.bwp-content .wpcf7 .wpcf7-list-item input[type="radio"]:last-child {
	margin-right: 0;
	margin-left: 5px;
}
.bwp-content .wpcf7 .wpcf7-list-item label input[type="checkbox"],
.bwp-content .wpcf7 .wpcf7-list-item label input[type="radio"] {
	margin-top: 0;
}
/* action styles */
.bwp-content .wpcf7 .ajax-loader {
	margin: 0 0 0 15px;
	top: 7px;
	background-color: #eeefef;
	opacity: 1;
}
.bwp-content .wpcf7 .ajax-loader::before {
	background-color: #1f2123;
}
.bwp-content .wpcf7 .wpcf7-form .wpcf7-spinner {
	position: relative;
	top: 7px;
	background-color: #1f2123;
	opacity: 1;
}
.bwp-content .wpcf7 .wpcf7-form .wpcf7-spinner::before {
	background-color: #eeefef;
}
.bwp-content .wpcf7 .wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 13px;
	font-weight: 700;
	color: #f46180;
}
.bwp-content .wpcf7 .wpcf7-response-output {
	margin: 15px 0 20px;
	padding: 10px 15px;
	text-align: left;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.6;
	border: none !important;
	background-color: #6ca4db;
	color: #ffffff;
}
.bwp-content .wpcf7 .wpcf7-mail-sent-ok,
.bwp-content .wpcf7 .wpcf7-mail-sent-ng,
.bwp-content .wpcf7 .wpcf7-aborted,
.bwp-content .wpcf7 .wpcf7-spam-blocked,
.bwp-content .wpcf7 .wpcf7-validation-errors,
.bwp-content .wpcf7 .wpcf7-acceptance-missing {
	border: none !important;
}
.bwp-content .wpcf7 .wpcf7-mail-sent-ok,
.bwp-content .wpcf7 form.sent .wpcf7-response-output {
	background-color: #59d36c;
}
.bwp-content .wpcf7 .wpcf7-mail-sent-ng,
.bwp-content .wpcf7 .wpcf7-aborted,
.bwp-content .wpcf7 form.failed .wpcf7-response-output,
.bwp-content .wpcf7 form.aborted .wpcf7-response-output {
	background-color: #f46180;
}
.bwp-content .wpcf7 .wpcf7-spam-blocked,
.bwp-content .wpcf7 form.spam .wpcf7-response-output {
	background-color: #e0a73e;
}
.bwp-content .wpcf7 .wpcf7-validation-errors,
.bwp-content .wpcf7 .wpcf7-acceptance-missing,
.bwp-content .wpcf7 form.invalid .wpcf7-response-output,
.bwp-content .wpcf7 form.unaccepted .wpcf7-response-output {
	background-color: #f46180;
}

/* single page: pagination */
.bwp-content .bwp-single-post-pagination {
	padding: 5px 0 15px;
	text-align: left;
}
.bwp-content .bwp-single-post-pagination > span:first-child,
.bwp-content .bwp-single-post-pagination a:first-child {
	margin-left: 2px;
}
.bwp-content .bwp-single-post-pagination > span,
.bwp-content .bwp-single-post-pagination a {
	display: inline-block;
	padding: 0 6px;
	font-weight: 700;
}
.bwp-content .bwp-single-post-pagination > span {
	color: #6ca4db;
}


/**
 * 11.2 - WordPress content styles: Block editor
 * -------------------------------------------------------------
 */

/* "wide" and "full" blocks */
.bwp-content .alignwide,
.bwp-content .alignfull {
	margin-left: -30px !important;
	margin-right: -30px !important;
	width: auto;
	max-width: 100vw;
}

/* block has background */
.bwp-content .has-background {
	padding: 20px 30px;
}

/* text sizes */
.bwp-body .bwp-content .has-small-font-size {
	font-size: 13px;
	line-height: 1.8;
}
.bwp-body .bwp-content .has-normal-font-size {
	font-size: 16px;
}
.bwp-body .bwp-content .has-medium-font-size {
	font-size: 20px;
}
.bwp-body .bwp-content .has-large-font-size {
	font-size: 36px;
	line-height: 1.4;
}
.bwp-body .bwp-content .has-huge-font-size,
.bwp-body .bwp-content .has-larger-font-size,
.bwp-body .bwp-content .has-x-large-font-size {
	font-size: 42px;
	line-height: 1.3;
}

/* text alignment */
.bwp-body .bwp-content .has-text-align-left {
	text-align: left;
}
.bwp-body .bwp-content .has-text-align-center {
	text-align: center;
}
.bwp-body .bwp-content .has-text-align-right {
	text-align: right;
}

/* drop cap */
.bwp-content .has-drop-cap::first-letter {
	float: left;
	margin: 10px 14px 0 0;
	font-size: 82px;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	line-height: .68;
}


/**
 * 11.2.1 - Block: Heading
 * -------------------------------------------------------------
 */

/* wide and full alignment */
.bwp-content h1.alignwide,
.bwp-content h2.alignwide,
.bwp-content h3.alignwide,
.bwp-content h4.alignwide,
.bwp-content h5.alignwide,
.bwp-content h6.alignwide,
.bwp-content h1.alignfull,
.bwp-content h2.alignfull,
.bwp-content h3.alignfull,
.bwp-content h4.alignfull,
.bwp-content h5.alignfull,
.bwp-content h6.alignfull {
	padding-right: 30px;
	padding-left: 30px;
}


/**
 * 11.2.2 - Block: List
 * -------------------------------------------------------------
 */

/* block has background */
.bwp-content ul.has-background,
.bwp-content ol.has-background {
	padding-left: 45px;
}


/**
 * 11.2.3 - Block: Quote (3 styles: default, large, and plain)
 * -------------------------------------------------------------
 */

/* style: default */
.bwp-content .wp-block-quote:not(.is-large):not(.is-style-large):not(.is-style-plain) {
	padding: 15px 0 15px 26px;
	border-left: 4px solid #4c4f53;
	font-size: 18px;
	line-height: 1.65;
}
.bwp-content .wp-block-quote:not(.is-large):not(.is-style-large):not(.is-style-plain)::before {
	display: none;
}
.bwp-content .wp-block-quote:not(.is-large):not(.is-style-large):not(.is-style-plain) p {
	font-size: 18px;
	line-height: 1.65;
}
.bwp-content .wp-block-quote:not(.is-large):not(.is-style-large):not(.is-style-plain) cite,
.bwp-content .wp-block-quote:not(.is-large):not(.is-style-large):not(.is-style-plain) footer {
	display: block;
	margin-top: 15px;
	font-size: 18px;
	font-style: normal;
	line-height: 1.65;
	text-align: left;
	color: inherit;
}

/* text alignment (style: default) */
/* center */
.bwp-content .wp-block-quote.has-text-align-center:not(.is-large):not(.is-style-large):not(.is-style-plain) {
	padding: 15px 0;
	border-left: none;
}
.bwp-content .wp-block-quote.has-text-align-center:not(.is-large):not(.is-style-large):not(.is-style-plain) cite,
.bwp-content .wp-block-quote.has-text-align-center:not(.is-large):not(.is-style-large):not(.is-style-plain) footer {
	text-align: center;
}
/* right */
.bwp-content .wp-block-quote.has-text-align-right:not(.is-large):not(.is-style-large):not(.is-style-plain) {
	padding: 15px 26px 15px 0;
	border-left: none;
	border-right: 4px solid #4c4f53;
}
.bwp-content .wp-block-quote.has-text-align-right:not(.is-large):not(.is-style-large):not(.is-style-plain) cite,
.bwp-content .wp-block-quote.has-text-align-right:not(.is-large):not(.is-style-large):not(.is-style-plain) footer {
	text-align: right;
}

/* style: large */
.bwp-content .wp-block-quote.is-large,
.bwp-content .wp-block-quote.is-style-large,
.bwp-content .wp-block-quote.is-style-plain {
	border: none;
	margin: 0 0 15px;
	padding: 0 0 0 40px;
	font-size: 22px;
	font-style: italic;
	line-height: 1.6;
}
.bwp-content .wp-block-quote.is-large p,
.bwp-content .wp-block-quote.is-style-large p,
.bwp-content .wp-block-quote.is-style-plain p {
	font-size: 22px;
	font-style: italic;
	line-height: 1.6;
}
.bwp-content .wp-block-quote.is-large cite,
.bwp-content .wp-block-quote.is-large footer,
.bwp-content .wp-block-quote.is-style-large cite,
.bwp-content .wp-block-quote.is-style-large footer,
.bwp-content .wp-block-quote.is-style-plain cite,
.bwp-content .wp-block-quote.is-style-plain footer {
	display: block;
	margin-top: 15px;
	font-size: 18px;
	font-style: italic;
	line-height: 1.65;
	text-align: left;
	color: inherit;
}

/* text alignment (style: large) */
/* center */
.bwp-content .wp-block-quote.is-large.has-text-align-center,
.bwp-content .wp-block-quote.is-style-large.has-text-align-center,
.bwp-content .wp-block-quote.is-style-plain.has-text-align-center {
	padding: 0;
}
.bwp-content .wp-block-quote.is-large.has-text-align-center::before,
.bwp-content .wp-block-quote.is-style-large.has-text-align-center::before,
.bwp-content .wp-block-quote.is-style-plain.has-text-align-center::before {
	display: none;
}
.bwp-content .wp-block-quote.is-large.has-text-align-center cite,
.bwp-content .wp-block-quote.is-large.has-text-align-center footer,
.bwp-content .wp-block-quote.is-style-large.has-text-align-center cite,
.bwp-content .wp-block-quote.is-style-large.has-text-align-center footer,
.bwp-content .wp-block-quote.is-style-plain.has-text-align-center cite,
.bwp-content .wp-block-quote.is-style-plain.has-text-align-center footer {
	text-align: center;
}
/* right */
.bwp-content .wp-block-quote.is-large.has-text-align-right,
.bwp-content .wp-block-quote.is-style-large.has-text-align-right,
.bwp-content .wp-block-quote.is-style-plain.has-text-align-right {
	padding: 0 40px 0 0;
}
.bwp-content .wp-block-quote.is-large.has-text-align-right::before,
.bwp-content .wp-block-quote.is-style-large.has-text-align-right::before,
.bwp-content .wp-block-quote.is-style-plain.has-text-align-right::before {
	top: -2px;
	right: -3px;
	left: auto;
	content: '\201d';
}
.bwp-content .wp-block-quote.is-large.has-text-align-right cite,
.bwp-content .wp-block-quote.is-large.has-text-align-right footer,
.bwp-content .wp-block-quote.is-style-large.has-text-align-right cite,
.bwp-content .wp-block-quote.is-style-large.has-text-align-right footer,
.bwp-content .wp-block-quote.is-style-plain.has-text-align-right cite,
.bwp-content .wp-block-quote.is-style-plain.has-text-align-right footer {
	text-align: right;
}


/**
 * 11.2.4 - Block: Pullquote
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-pullquote {
	margin: 0 0 15px;
}
.bwp-content .wp-block-pullquote blockquote {
	margin: 0;
	padding: 0;
	border: none;
	font-family: 'Lora', serif;
	font-style: normal;
}
.bwp-content .wp-block-pullquote blockquote::before {
	display: none;
}
.bwp-content .wp-block-pullquote cite {
	color: inherit;
}

/* style: default */
.bwp-content .wp-block-pullquote:not(.is-style-solid-color) {
	background: none;
}
.bwp-content .wp-block-pullquote {
	padding: 20px 0;
	text-align: center;
	border: none;
	border-top: 4px solid #4c4f53;
	border-bottom: 4px solid #4c4f53;
}
.bwp-content .wp-block-pullquote blockquote {
	max-width: 86%;
	margin: 0 auto;
}
.bwp-content .wp-block-pullquote p,
.bwp-content .wp-block-pullquote blockquote p {
	font-size: 18px;
	font-style: normal;
	line-height: 1.65;
}
.bwp-content .wp-block-pullquote cite,
.bwp-content .wp-block-pullquote footer {
	margin: 15px 0 0;
	text-align: inherit;
	font-size: 14px;
	font-style: normal;
	line-height: 1.7;
	text-transform: uppercase;
}

/* style: solid color */
.bwp-content .wp-block-pullquote.is-style-solid-color {
	padding: 30px 0;
	text-align: left;
	border: none;
}
.bwp-content .wp-block-pullquote.is-style-solid-color.has-background {
	padding: 30px 0;
}
.bwp-content .wp-block-pullquote.is-style-solid-color blockquote {
	max-width: 60%;
	margin: 0 auto;
}
.bwp-content .wp-block-pullquote.is-style-solid-color p,
.bwp-content .wp-block-pullquote.is-style-solid-color blockquote p {
	margin: 0 0 15px;
	font-size: 22px;
	font-style: normal;
	line-height: 1.6;
}
.bwp-content .wp-block-pullquote.is-style-solid-color cite,
.bwp-content .wp-block-pullquote.is-style-solid-color footer {
	margin: 15px 0 0;
	text-align: inherit;
	font-size: 15px;
	font-style: normal;
	line-height: 1.7;
	text-transform: none;
}

/* block alignment */
.bwp-content .wp-block-pullquote.alignleft,
.bwp-content .wp-block-pullquote.alignright {
	max-width: 283.33px;
}
.bwp-content .wp-block-pullquote.alignleft {
	margin-right: 30px;
}
.bwp-content .wp-block-pullquote.alignright {
	margin-left: 30px;
}

/* style: default */
.bwp-content .wp-block-pullquote.alignleft blockquote,
.bwp-content .wp-block-pullquote.alignright blockquote {
	max-width: 85%;
}
.bwp-content .wp-block-pullquote.alignleft p,
.bwp-content .wp-block-pullquote.alignleft blockquote p,
.bwp-content .wp-block-pullquote.alignright p,
.bwp-content .wp-block-pullquote.alignright blockquote p {
	font-size: 18px;
	line-height: 1.65;
}

/* style: solid color */
.bwp-content .wp-block-pullquote.is-style-solid-color.alignleft,
.bwp-content .wp-block-pullquote.is-style-solid-color.alignright,
.bwp-content .wp-block-pullquote.is-style-solid-color.has-background.alignleft,
.bwp-content .wp-block-pullquote.is-style-solid-color.has-background.alignright {
	padding-right: 30px;
	padding-left: 30px;
}
.bwp-content .wp-block-pullquote.is-style-solid-color.alignleft blockquote,
.bwp-content .wp-block-pullquote.is-style-solid-color.alignright blockquote {
	max-width: 100%;
}
.bwp-content .wp-block-pullquote.is-style-solid-color.alignleft p,
.bwp-content .wp-block-pullquote.is-style-solid-color.alignright p,
.bwp-content .wp-block-pullquote.is-style-solid-color.alignleft blockquote p,
.bwp-content .wp-block-pullquote.is-style-solid-color.alignright blockquote p {
	font-size: 20px;
	line-height: 1.6;
}

/* block with background */
.bwp-content .wp-block-pullquote.has-background {
	padding: 20px 0;
}

/* text alignment */
.bwp-content .wp-block-pullquote.has-text-align-left,
.bwp-content .wp-block-pullquote.has-text-align-right {
	max-width: 100%;
}
.bwp-content .wp-block-pullquote.has-text-align-left.alignleft,
.bwp-content .wp-block-pullquote.has-text-align-right.alignleft,
.bwp-content .wp-block-pullquote.has-text-align-left.alignright,
.bwp-content .wp-block-pullquote.has-text-align-right.alignright {
	max-width: 283.33px;
}
.bwp-content .wp-block-pullquote.has-text-align-left.alignwide,
.bwp-content .wp-block-pullquote.has-text-align-right.alignwide,
.bwp-content .wp-block-pullquote.has-text-align-left.alignfull,
.bwp-content .wp-block-pullquote.has-text-align-right.alignfull {
	max-width: 100vw;
}


/**
 * 11.2.5 - Block: Code
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-code {
	line-height: 1.5;
}
.bwp-content .wp-block-code code {
	display: block;
	padding: 0;
	font-family: inherit;
	font-size: inherit;
	background: none;
	border-radius: 0;
	overflow-wrap: break-word;
	white-space: pre-wrap;
	color: inherit;
}


/**
 * 11.2.6 - Block: Preformatted
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-preformatted {
	padding: 0;
	white-space: pre-wrap;
	word-break: normal;
	font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
	font-size: 15px;
	line-height: 1.6;
	background: none;
	border: none;
	border-radius: 0;
}


/**
 * 11.2.7 - Block: Verse
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-verse {
	padding: 0;
	overflow: visible;
	white-space: pre-wrap;
	word-break: normal;
	font-family: inherit;
	font-size: 15px;
	font-style: normal;
	line-height: 1.7;
	background: none;
	border: none;
	border-radius: 0;
	color: inherit;
}
.bwp-content .wp-block-verse code,
.bwp-content .wp-block-verse kbd {
	font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
}


/**
 * 11.2.8 - Block: Table
 * -------------------------------------------------------------
 */

/* table style: default */
.bwp-content .wp-block-table {
	margin: 0 0 15px;
	overflow-x: auto;
}
.bwp-content .wp-block-table table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
}
.bwp-content .wp-block-table thead {
	border-bottom: 4px solid #eeefef;
}
.bwp-content .wp-block-table tfoot {
	border-top: 4px solid #eeefef;
}
.bwp-content .wp-block-table td,
.bwp-content .wp-block-table th {
	word-break: normal;
}
.bwp-content .wp-block-table th {
	text-align: left;
}
.bwp-content .wp-block-table th.has-text-align-center {
	text-align: center;
}
.bwp-content .wp-block-table th.has-text-align-right {
	text-align: right;
}

/* table style: stripes */
.bwp-content .wp-block-table.is-style-stripes {
	border-spacing: 0;
	border-collapse: collapse;
	background-color: transparent;
	border: none;
}
.bwp-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background-color: #f7f8f8;
}
.bwp-content .wp-block-table.is-style-stripes td,
.bwp-content .wp-block-table.is-style-stripes th {
	border: none;
	border-right: 1px solid #eeefef;
}
.bwp-content .wp-block-table.is-style-stripes tr td:last-child,
.bwp-content .wp-block-table.is-style-stripes tr th:last-child {
	border-right: none;
}

/* table with background */
.bwp-content .wp-block-table .has-background {
	padding: 0;
}
.bwp-content .wp-block-table.is-style-stripes .has-background tbody tr:nth-child(odd) {
	background-color: #ffffff;
}

/* table: caption */
.bwp-content .wp-block-table figcaption {
	margin: 0;
	padding: 10px 0 0;
	text-align: left;
	font-size: 14px;
	font-style: normal;
	line-height: 1.7;
}

/* table: alignment */
.bwp-content .wp-block-table.aligncenter,
.bwp-content .wp-block-table.alignleft,
.bwp-content .wp-block-table.alignright {
	display: table;
	width: auto;
}
.bwp-content .wp-block-table.aligncenter {
	margin-right: auto;
	margin-left: auto;
}
.bwp-content .wp-block-table.alignleft {
	margin: 0 30px 15px 0;
}
.bwp-content .wp-block-table.alignright {
	margin: 0 0 15px 30px;
}
.bwp-content .wp-block-table.aligncenter td,
.bwp-content .wp-block-table.aligncenter th,
.bwp-content .wp-block-table.alignleft td,
.bwp-content .wp-block-table.alignleft th,
.bwp-content .wp-block-table.alignright td,
.bwp-content .wp-block-table.alignright th {
	word-break: break-word;
}
.bwp-content .wp-block-table.alignwide,
.bwp-content .wp-block-table.alignfull {
	margin-left: -31px !important;
	margin-right: -31px !important;
}
.bwp-content .wp-block-table.alignwide figcaption,
.bwp-content .wp-block-table.alignfull figcaption {
	padding-right: 30px;
	padding-left: 30px;
}


/**
 * 11.2.9 - Block: Image
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-image {
	margin: 0 0 15px;
}
.bwp-content .wp-block-image img {
	max-width: 100%;
}
.bwp-content .wp-block-image:not(.is-style-rounded) img {
	border-radius: 0;
}
.bwp-content .wp-block-image figcaption {
	margin: 0;
	padding: 10px 0 0;
	text-align: left;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
}

/* block alignment */
.bwp-content .wp-block-image .alignleft {
	margin: 0 30px 15px 0;
}
.bwp-content .wp-block-image .alignright {
	margin: 0 0 15px 30px;
}
.bwp-content .wp-block-image .aligncenter {
	margin: 15px auto;
	text-align: center;
}
.bwp-content .wp-block-image.alignwide figcaption,
.bwp-content .wp-block-image.alignfull figcaption {
	padding-right: 30px;
	padding-left: 30px;
}

/* lightbox */
.bwp-content .wp-lightbox-container button,
.bwp-content .wp-lightbox-container .lightbox-trigger {
	top: 15px !important;
	right: 15px !important;
}
.bwp-body .wp-lightbox-overlay.zoom.active {
	outline: none;
}
.bwp-body .wp-lightbox-overlay .wp-block-image:not(.is-style-rounded) img {
	border-radius: 0;
}
.bwp-body .wp-lightbox-overlay .close-button {
	top: 0;
}


/**
 * 11.2.10 - Block: Gallery
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-gallery {
	margin: 0 0 15px;
}
.bwp-content .wp-block-gallery ul {
	list-style: none;
	margin: 0 0 -15px;
	padding: 0;
}
.bwp-content .wp-block-gallery ul li {
	list-style-type: none;
}
.bwp-content .wp-block-gallery .blocks-gallery-grid figcaption,
.bwp-content .wp-block-gallery figure.wp-block-image figcaption {
	margin: 0;
	padding: 15px 12px 8px;
	max-height: 80%;
	text-align: left;
	font-size: 13px;
	line-height: 1.55;
	color: #ffffff;
	text-shadow: 0 1px 3px rgba(0,0,0,0.1);
	background: rgba(12,12,14,0.3);
	background: linear-gradient(to bottom, rgba(12,12,14,0) 0%, rgba(12,12,14,0.5) 65%, rgba(12,12,14,0.6) 100%);
	overflow-wrap: break-word;
	overflow-x: hidden;
}
.bwp-content .wp-block-gallery .blocks-gallery-caption {
	margin: 0;
	padding: 10px 0 0;
	text-align: left;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
}
.bwp-content .wp-block-gallery.has-nested-images .blocks-gallery-caption {
	margin-top: -6px;
	padding-top: 0;
}

/* hide captions for a large number of columns */
.bwp-content .wp-block-gallery.columns-5 .blocks-gallery-grid figcaption,
.bwp-content .wp-block-gallery.columns-6 .blocks-gallery-grid figcaption,
.bwp-content .wp-block-gallery.columns-7 .blocks-gallery-grid figcaption,
.bwp-content .wp-block-gallery.columns-8 .blocks-gallery-grid figcaption,
.bwp-content .wp-block-gallery.columns-5 figure.wp-block-image figcaption,
.bwp-content .wp-block-gallery.columns-6 figure.wp-block-image figcaption,
.bwp-content .wp-block-gallery.columns-7 figure.wp-block-image figcaption,
.bwp-content .wp-block-gallery.columns-8 figure.wp-block-image figcaption {
	display: none;
}

/* block alignment */
.bwp-content .wp-block-gallery.alignleft,
.bwp-content .wp-block-gallery.alignright {
	max-width: 360px;
	width: 100%;
}
.bwp-content .wp-block-gallery.alignleft {
	margin: 0 30px 15px 0;
}
.bwp-content .wp-block-gallery.alignright {
	margin: 0 0 15px 30px;
}
.bwp-content .wp-block-gallery.alignwide .blocks-gallery-caption,
.bwp-content .wp-block-gallery.alignfull .blocks-gallery-caption {
	padding-right: 30px;
	padding-left: 30px;
}

/* WordPress 6+ */
.wp-block-gallery {
	--wp--style--gallery-gap-default: 16px;
}


/**
 * 11.2.11 - Block: Audio
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-audio {
	margin: 0 0 15px;
}
.bwp-content .wp-block-audio audio {
	min-width: 283.33px;
	margin-bottom: -7px;
}
.bwp-content .wp-block-audio figcaption {
	margin: 0;
	padding: 10px 0 0;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
}

/* block alignment */
.bwp-content .wp-block-audio.alignleft {
	margin: 0 30px 15px 0;
}
.bwp-content .wp-block-audio.alignright {
	margin: 0 0 15px 30px;
}
.bwp-content .wp-block-audio.aligncenter {
	margin-right: auto;
	margin-left: auto;
}


/**
 * 11.2.12 - Block: Video
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-video {
	margin: 0 0 15px;
}
.bwp-content .wp-block-video video {
	margin-bottom: 0;
}
.bwp-content .wp-block-video figcaption {
	margin: 0;
	padding: 10px 0 0;
	text-align: left;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
}

/* block alignment */
.bwp-content .wp-block-video.alignleft {
	margin: 0 30px 15px 0;
}
.bwp-content .wp-block-video.alignright {
	margin: 0 0 15px 30px;
}
.bwp-content .wp-block-video.aligncenter {
	margin-right: auto;
	margin-left: auto;
}
.bwp-content .wp-block-video.alignleft video,
.bwp-content .wp-block-video.alignright video {
	width: 100%;
	max-width: 283.33px;
}
.bwp-content .wp-block-video.alignwide figcaption,
.bwp-content .wp-block-video.alignfull figcaption {
	padding-right: 30px;
	padding-left: 30px;
}


/**
 * 11.2.13 - Block: Cover
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-cover,
.bwp-content .wp-block-cover-image {
	margin: 0 0 15px;
	padding: 30px 30px 15px;
	color: #ffffff;
}
.bwp-content .wp-block-cover .wp-block-cover__inner-container > :first-child,
.bwp-content .wp-block-cover-image .wp-block-cover__inner-container > :first-child {
	margin-top: 0 !important;
}
.bwp-content .wp-block-cover .wp-block-cover__inner-container,
.bwp-content .wp-block-cover-image .wp-block-cover__inner-container {
	max-width: 596.66px;
	color: #ffffff;
}

/* text inside a block */
.bwp-content .wp-block-cover-image .wp-block-cover-image-text,
.bwp-content .wp-block-cover .wp-block-cover-text,
.bwp-content section.wp-block-cover-image > h2 {
	font-size: 36px;
	line-height: 1.4;
	max-width: 596.66px;
	margin: 0 0 15px;
	padding: 0;
}
.bwp-content .wp-block-cover a,
.bwp-content .wp-block-cover-image a,
.bwp-content .wp-block-cover a:hover,
.bwp-content .wp-block-cover-image a:hover {
	color: inherit;
}

/* block alignment */
.bwp-content .wp-block-cover.alignleft,
.bwp-content .wp-block-cover.alignright,
.bwp-content .wp-block-cover-image.alignleft,
.bwp-content .wp-block-cover-image.alignright {
	width: 100%;
	max-width: 360px;
}
.bwp-content .wp-block-cover.alignleft,
.bwp-content .wp-block-cover-image.alignleft {
	margin: 0 30px 15px 0;
}
.bwp-content .wp-block-cover.alignright,
.bwp-content .wp-block-cover-image.alignright {
	margin: 0 0 15px 30px;
}
.bwp-content .wp-block-cover.aligncenter,
.bwp-content .wp-block-cover-image.aligncenter {
	margin-right: auto;
	margin-left: auto;
}


/**
 * 11.2.14 - Block: File
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-file {
	margin: 0 0 15px;
}
.bwp-content .wp-block-file a:not(.wp-block-file__button) {
	margin-right: 0;
	font-size: 15px;
	text-decoration: underline !important;
}
.bwp-content .wp-block-file a.wp-block-file__button {
	text-decoration: none !important;
	display: inline-block;
	margin: 0 0 0 15px;
	padding: 7px 20px 8px 20px;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	color: #ffffff;
	background: #1f2123;
	border-radius: 21px;
	box-shadow: none;

	-webkit-transition: color 0.2s ease, background 0.2s ease;
	transition: color 0.2s ease, background 0.2s ease;
}
.bwp-content .wp-block-file a.wp-block-file__button:active,
.bwp-content .wp-block-file a.wp-block-file__button:focus,
.bwp-content .wp-block-file a.wp-block-file__button:hover {
	color: #ffffff;
	background: #6ca4db;
	opacity: 1;
	text-decoration: none !important;
	box-shadow: none;
}
.bwp-content .wp-block-file a.wp-block-file__button:visited {
	color: #ffffff;
	background: #2f3235;
	opacity: 1;
	text-decoration: none !important;
	box-shadow: none;
}

/* block alignment */
.bwp-content .wp-block-file.alignleft {
	margin: 0 30px 15px 0;
}
.bwp-content .wp-block-file.alignright {
	margin: 0 0 15px 30px;
}
.bwp-content .wp-block-file.aligncenter {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
.bwp-content .wp-block-file.alignwide,
.bwp-content .wp-block-file.alignfull {
	padding-right: 30px;
	padding-left: 30px;
}


/**
 * 11.2.15 - Block: Media and Text
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-media-text {
	margin: 0 0 15px;
}
.bwp-content .wp-block-media-text .wp-block-media-text__content > :first-child {
	margin-top: 15px;
}
.bwp-content .wp-block-media-text.has-text-color .wp-block-media-text__content > * {
	color: inherit;
}


/**
 * 11.2.16 - Block: Buttons
 * -------------------------------------------------------------
 */

/* single button */
.bwp-content .wp-block-button {
	margin-bottom: 15px;
}

/* buttons */
.bwp-content .wp-block-buttons {
	margin: 0 0 15px;
}
.bwp-content .wp-block-buttons > .wp-block-button {
	margin: 10px 10px 10px 0 !important;
}
.bwp-content .wp-block-buttons > .wp-block-button.wp-block-button__width-100 {
	margin-right: 0 !important;
}
.bwp-content .wp-block-button__link {
	border: none;
	box-shadow: none;
	text-decoration: none !important;
	display: inline-block;
	padding: 15px 20px;
	text-align: center;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.3;
	border-radius: 9999px;
}
.bwp-content .wp-block-button__link:hover,
.bwp-content .wp-block-button__link:focus {
	text-decoration: none !important;
}
.bwp-content .wp-block-button__link:not(.has-text-color) {
	color: #ffffff;
}
.bwp-content .wp-block-button__link:not(.has-background) {
	background-color: #1f2123;
}
.bwp-content .wp-block-button__link.has-background {
	padding: 15px 20px;
	border-radius: 9999px;
}
.bwp-content .wp-block-button.no-border-radius,
.bwp-content .wp-block-button__link.no-border-radius,
.bwp-content .no-border-radius > .wp-block-button__link {
	border-radius: 0 !important;
}

/* button style: outline */
.bwp-content .wp-block-button .wp-block-button__link.is-style-outline,
.bwp-content .wp-block-button.is-style-outline > .wp-block-button__link {
	padding: 15px 20px;
}
.bwp-content .is-style-outline > .wp-block-button__link:not(.has-background),
.bwp-content .wp-block-button__link.is-style-outline:not(.has-background) {
	background-color: transparent;
}
.bwp-content .is-style-outline > .wp-block-button__link:not(.has-text-color),
.bwp-content .wp-block-button__link.is-style-outline:not(.has-text-color) {
	color: #4c4f53;
}
.bwp-content .is-style-outline > .wp-block-button__link,
.bwp-content .wp-block-button__link.is-style-outline {
	border: 1px solid #4c4f53;
}

/* button style: squared */
.bwp-content .wp-block-button.is-style-squared,
.bwp-content .wp-block-button.is-style-squared .wp-block-button__link,
.bwp-content .wp-block-button__link.wp-block-button.is-style-squared,
.bwp-content .is-style-squared > .wp-block-button__link,
.bwp-content .wp-block-button__link.is-style-squared {
	border-radius: 0 !important;
}

/* block alignment */
.bwp-content .wp-block-buttons.is-vertical > .wp-block-button,
.bwp-content .wp-block-buttons.is-content-justification-center > .wp-block-button:last-child,
.bwp-content .wp-block-buttons.is-content-justification-right > .wp-block-button:last-child {
	margin-right: 0 !important;
}
.bwp-content .wp-block-buttons.alignwide,
.bwp-content .wp-block-buttons.alignfull {
	padding-right: 30px;
	padding-left: 30px;
}


/**
 * 11.2.17 - Block: Columns
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-columns {
	margin: 15px 0;
}
.bwp-content .wp-block-columns .wp-block-column > *:first-child {
	margin-top: 15px !important;
}
.bwp-content .wp-block-columns.has-background {
	padding-top: 15px;
	padding-bottom: 15px;
}

/* block alignment */
.bwp-content .wp-block-columns.alignwide:not(.has-background),
.bwp-content .wp-block-columns.alignfull:not(.has-background) {
	padding-right: 30px;
	padding-left: 30px;
}


/**
 * 11.2.18 - Block: Group
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-group {
	margin-top: 15px;
	margin-bottom: 15px;
}
.bwp-content .wp-block-group:first-child,
.bwp-content .wp-block-group > *,
.bwp-content .wp-block-group .wp-block-group__inner-container > :first-child {
	margin-top: 0;
}
.bwp-content .wp-block-group .wp-block-group__inner-container > :last-child {
	margin-bottom: 0;
}


/**
 * 11.2.19 - Block: Separator
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-separator {
	margin-top: 20px;
	margin-bottom: 20px;
	border: none;
	border-bottom: 4px solid #eeefef;
	opacity: 1;
}

/* separator style: default */
.bwp-content .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
	max-width: 100px;
	margin-right: auto;
	margin-left: auto;
}
.bwp-content .wp-block-separator.alignwide:not(.is-style-wide):not(.is-style-dots),
.bwp-content .wp-block-separator.alignfull:not(.is-style-wide):not(.is-style-dots) {
	margin-right: auto !important;
	margin-left: auto !important;
}

/* separator style: wide line */
.bwp-content .wp-block-separator.is-style-wide {
	border-bottom-width: 1px;
}

/* separator style: dots */
.bwp-content .wp-block-separator.is-style-dots {
	margin-top: 15px;
	margin-bottom: 15px;
	background: none !important;
	border: none;
	text-align: center;
	max-width: none;
	line-height: 1;
	height: auto;
}
.bwp-content .wp-block-separator.is-style-dots::before {
	font-size: 25px;
	font-weight: 700;
	color: inherit;
}

/* separator with background color */
.bwp-content .wp-block-separator.has-background {
	padding: 0;
	border-radius: 0;
}
.bwp-content .wp-block-separator.has-background:not(.is-style-dots) {
	border: none;
	height: 1px;
}
.bwp-content .wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {
	height: 4px;
}


/**
 * 11.2.20 - Block: Spacer
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-spacer {
	margin-top: 0;
	margin-bottom: 15px;
}


/**
 * 11.2.21 - Block: Archives
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-archives-list {
	list-style: none;
	margin: 0 0 15px;
	padding: 0;
}
.bwp-content .wp-block-archives-list li {
	margin-bottom: 5px;
	color: #989ea6;
}
.bwp-content .wp-block-archives-list li:last-child {
	margin-bottom: 0;
}
.bwp-content .wp-block-archives-list li::before {
	content: '-';
	margin-right: 5px;
	color: #4c4f53;
}
.bwp-content .wp-block-archives-list li a {
	margin-right: 2px;
	text-decoration: none !important;
}
.bwp-content .wp-block-archives-list li a:hover,
.bwp-content .wp-block-archives-list li a:focus {
	text-decoration: underline !important;
}

/* dropdown list */
.bwp-content .wp-block-archives-dropdown {
	margin-top: 0;
	margin-bottom: 15px;
}

/* block alignment */
.bwp-content .wp-block-archives-list.alignleft,
.bwp-content .wp-block-archives-dropdown.alignleft {
	margin: 0 30px 15px 0;
}
.bwp-content .wp-block-archives-list.alignright,
.bwp-content .wp-block-archives-dropdown.alignright {
	margin: 0 0 15px 30px;
}
.bwp-content .wp-block-archives-list.aligncenter {
	text-align: center;
}
.bwp-content .wp-block-archives-list.aligncenter li::before {
	display: none;
}
.bwp-content .wp-block-archives-dropdown.alignleft,
.bwp-content .wp-block-archives-dropdown.alignright {
	width: 283.33px;
}
.bwp-content .wp-block-archives-list.alignwide,
.bwp-content .wp-block-archives-dropdown.alignwide,
.bwp-content .wp-block-archives-list.alignfull,
.bwp-content .wp-block-archives-dropdown.alignfull {
	padding-right: 30px;
	padding-left: 30px;
}


/**
 * 11.2.22 - Block: Calendar
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-calendar {
	margin-top: 0;
	margin-bottom: 15px;
	max-width: 298px;
}
.bwp-content .wp-block-calendar table {
	max-width: 100%;
	width: 100%;
	margin: 0;
	line-height: 1.2;
}

/* caption (month) */
.bwp-content .wp-block-calendar table caption {
	margin: 0;
	padding: 0 0 15px;
	text-align: left;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.7;
	color: #4c4f53;
}

/* thead (days of the week) */
.bwp-content .wp-block-calendar table thead th {
	padding: 0 0 10px;
	text-align: left;
	font-size: 15px;
	font-weight: 700;
	cursor: default;
	color: #4c4f53;
	background: transparent;
	border: none;
}

/* tbody (days) */
.bwp-content .wp-block-calendar table tbody td {
	padding: 5px 0 5px 2px;
	text-align: left;
	cursor: default;
	color: #4c4f53;
	border: none;
}
.bwp-content .wp-block-calendar table tbody td a {
	text-decoration: underline !important;
}
.bwp-content .wp-block-calendar table tbody #today {
	font-weight: 700;
}

/* prev/next links */
.bwp-content .wp-block-calendar .wp-calendar-nav {
	margin: 10px 0 0;
}
.bwp-content .wp-block-calendar .wp-calendar-nav::after {
	content: '';
	display: table;
	clear: both;
}
.bwp-content .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev {
	float: left;
	text-align: left;
}
.bwp-content .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next {
	float: right;
	text-align: right;
}
.bwp-content .wp-block-calendar .wp-calendar-nav a {
	display: inline-block;
	padding: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.7;
	text-decoration: none !important;
	color: #4c4f53;
}
.bwp-content .wp-block-calendar .wp-calendar-nav a:hover,
.bwp-content .wp-block-calendar .wp-calendar-nav a:focus {
	text-decoration: underline !important;
	color: #6ca4db;
}
.bwp-content .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev a {
	padding-right: 5px;
}
.bwp-content .wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next a {
	padding-left: 5px;
}

/* block alignment */
.bwp-content .wp-block-calendar.alignleft table,
.bwp-content .wp-block-calendar.alignright table {
	width: 283.33px !important;
}
.bwp-content .wp-block-calendar.aligncenter {
	margin: 15px auto;
	max-width: 298px;
}
.bwp-content .wp-block-calendar.alignwide,
.bwp-content .wp-block-calendar.alignfull {
	padding-right: 30px;
	padding-left: 30px;
	max-width: 343.33px;
}


/**
 * 11.2.23 - Block: Categories
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-categories-list {
	list-style: none;
	margin: 0 0 15px;
	padding: 0;
}
.bwp-content .wp-block-categories-list ul {
	list-style: none;
	margin: 5px 0 0;
	padding: 0 0 1px 20px;
}
.bwp-content .wp-block-categories-list li {
	margin-bottom: 5px;
	color: #989ea6;
}
.bwp-content .wp-block-categories-list li:last-child {
	margin-bottom: 0;
}
.bwp-content .wp-block-categories-list li::before {
	content: '-';
	margin-right: 5px;
	color: #4c4f53;
}
.bwp-content .wp-block-categories-list li a {
	margin-right: 2px;
	text-decoration: none !important;
}
.bwp-content .wp-block-categories-list li a:hover,
.bwp-content .wp-block-categories-list li a:focus {
	text-decoration: underline !important;
}

/* dropdown list */
.bwp-content .wp-block-categories-dropdown {
	margin-top: 0;
	margin-bottom: 15px;
}

/* block alignment */
.bwp-content .wp-block-categories-list.alignleft,
.bwp-content .wp-block-categories-dropdown.alignleft {
	margin: 0 30px 15px 0;
}
.bwp-content .wp-block-categories-list.alignright,
.bwp-content .wp-block-categories-dropdown.alignright {
	margin: 0 0 15px 30px;
}
.bwp-content .wp-block-categories-list.aligncenter {
	text-align: center;
}
.bwp-content .wp-block-categories-list.aligncenter li::before {
	display: none;
}
.bwp-content .wp-block-categories-list.aligncenter ul {
	padding: 0;
}
.bwp-content .wp-block-categories-dropdown.alignleft select,
.bwp-content .wp-block-categories-dropdown.alignright select {
	width: 283.33px;
}
.bwp-content .wp-block-categories-list.alignwide,
.bwp-content .wp-block-categories-dropdown.alignwide,
.bwp-content .wp-block-categories-list.alignfull,
.bwp-content .wp-block-categories-dropdown.alignfull {
	padding-right: 30px;
	padding-left: 30px;
}


/**
 * 11.2.24 - Block: Latest Comments
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-latest-comments {
	list-style: none;
	margin: 20px 0;
	padding: 0;
}
.bwp-content .wp-block-latest-comments:first-child {
	margin-top: 0;
}
.bwp-content .wp-block-latest-comments li {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eeefef;
}
.bwp-content .wp-block-latest-comments li:last-child {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
	border-bottom: none !important;
}

/* avatar */
.bwp-content .wp-block-latest-comments .avatar,
.bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-avatar {
	float: left;
	display: block;
	margin: 0 15px 0 0;
	padding: 0;
	width: 46px !important;
	height: 46px !important;
	border-radius: 23px;
	box-shadow: none;
}

/* comment metadata */
.bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
	color: #4c4f53;
}
.bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta a {
	text-decoration: underline !important;
	color: #4c4f53;
}
.bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta a:hover,
.bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta a:focus {
	text-decoration: underline !important;
	color: #6ca4db;
}
.bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta time {
	display: block;
	margin: 5px 0 0;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.3;
	color: #989ea6;
}

/* comment content */
.bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt {
	margin: 10px 0 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
}
.bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
}
.bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt > :first-child {
	margin-top: 0;
}
.bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt > :last-child {
	margin-bottom: 0;
}

/* comment with avatar */
.bwp-content .wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment-meta {
	height: 46px;
	display: table-cell;
	vertical-align: middle;
}
.bwp-content .wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment-excerpt {
	margin-top: 10px;
}

/* block alignment */
.bwp-content .wp-block-latest-comments.alignleft,
.bwp-content .wp-block-latest-comments.alignright {
	max-width: 360px;
}
.bwp-content .wp-block-latest-comments.alignleft {
	margin: 0 30px 20px 0;
}
.bwp-content .wp-block-latest-comments.alignright {
	margin: 0 0 20px 30px;
}
.bwp-content .wp-block-latest-comments.aligncenter {
	margin: 20px auto;
}
.bwp-content .wp-block-latest-comments.alignwide,
.bwp-content .wp-block-latest-comments.alignfull {
	padding-right: 30px;
	padding-left: 30px;
}


/**
 * 11.2.25 - Block: Latest Posts
 * -------------------------------------------------------------
 */

.bwp-content ul.wp-block-latest-posts {
	list-style: none;
	margin: 20px 0;
	padding: 0;
}
.bwp-content ul.wp-block-latest-posts > li {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eeefef;
}
.bwp-content ul.wp-block-latest-posts:not(.is-grid) > li:last-child {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
	border-bottom: none;
}
.bwp-content ul.wp-block-latest-posts > li::after {
	content: '';
	display: table;
	clear: both;
}

/* post title */
.bwp-content ul.wp-block-latest-posts > li > a {
	text-decoration: none !important;
	color: #2f3235;
}
.bwp-content ul.wp-block-latest-posts > li > a:hover,
.bwp-content ul.wp-block-latest-posts > li > a:focus {
	text-decoration: underline !important;
	color: #4c4f53;
}
.bwp-content ul.wp-block-latest-posts > li > a {
	margin: 0;
	padding: 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.35;
}

/* post excerpt */
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-excerpt {
	margin: 10px 0 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
}
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-excerpt > :first-child {
	margin-top: 0;
}
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-excerpt > :last-child {
	margin-bottom: 0;
}

/* post content */
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
	margin: 15px 0 0;
}
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-full-content > :first-child {
	margin-top: 15px !important;
}
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-full-content > :last-child {
	margin-bottom: 0 !important;
}

/* post excerpt and post content: links */
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-excerpt a,
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-full-content a {
	color: #4c4f53;
	text-decoration: underline !important;
}
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-excerpt a:hover,
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-excerpt a:focus,
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-full-content a:hover,
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-full-content a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}

/* post metadata */
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-author,
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-date {
	display: block;
	margin: 5px 0;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.3;
	color: #989ea6;
}

/* featured image */
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__featured-image {
	margin: 0 0 15px;
}
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__featured-image.alignleft {
	margin: 0 30px 7px 0;
}
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__featured-image.alignright {
	margin: 0 0 7px 30px;
}
.bwp-content .wp-block-latest-posts .wp-block-latest-posts__featured-image img {
	max-width: 100% !important;
	border-radius: 0;
	box-shadow: none;
}

/* grid style */
.bwp-content ul.wp-block-latest-posts.is-grid {
	margin-bottom: 0;
}
.bwp-content .wp-block-latest-posts.is-grid > li {
	margin: 0 30px 20px 0;
	width: 100%;
}
.bwp-content .wp-block-latest-posts.is-grid.columns-2 > li {
	width: calc(50% - 15px); /* 30/2=15 */
}
.bwp-content .wp-block-latest-posts.is-grid.columns-3 > li {
	width: calc(33.33333% - 20px); /* (30/3)*2=20 */
}
.bwp-content .wp-block-latest-posts.is-grid.columns-4 > li {
	width: calc(25% - 22.5px); /* (30/4)*3=22.5 */
}
.bwp-content .wp-block-latest-posts.is-grid.columns-5 > li {
	width: calc(20% - 24px); /* (30/5)*4=24 */
}
.bwp-content .wp-block-latest-posts.is-grid.columns-6 > li {
	width: calc(16.66667% - 25px); /* (30/6)*5=25 */
}
.bwp-content .wp-block-latest-posts.is-grid.columns-2 > li:nth-child(2n),
.bwp-content .wp-block-latest-posts.is-grid.columns-3 > li:nth-child(3n),
.bwp-content .wp-block-latest-posts.is-grid.columns-4 > li:nth-child(4n),
.bwp-content .wp-block-latest-posts.is-grid.columns-5 > li:nth-child(5n),
.bwp-content .wp-block-latest-posts.is-grid.columns-6 > li:nth-child(6n) {
	margin-right: 0;
}

/* grid style: post title */
.bwp-content .wp-block-latest-posts.is-grid.columns-4 > li > a,
.bwp-content .wp-block-latest-posts.is-grid.columns-5 > li > a,
.bwp-content .wp-block-latest-posts.is-grid.columns-6 > li > a {
	font-size: 16px;
	line-height: 1.45;
}
.bwp-content .wp-block-latest-posts.is-grid.columns-6 > li > a {
	font-size: 15px;
}

/* block alignment */
/* list style */
.bwp-content ul.wp-block-latest-posts.alignleft,
.bwp-content ul.wp-block-latest-posts.alignright {
	max-width: 360px;
}
.bwp-content ul.wp-block-latest-posts.alignleft {
	margin: 5px 35px 20px 0;
}
.bwp-content ul.wp-block-latest-posts.alignright {
	margin: 5px 0 20px 35px;
}
.bwp-content ul.wp-block-latest-posts.alignwide,
.bwp-content ul.wp-block-latest-posts.alignfull {
	padding-right: 30px;
	padding-left: 30px;
}
/* grid style */
.bwp-content ul.wp-block-latest-posts.is-grid.alignleft,
.bwp-content ul.wp-block-latest-posts.is-grid.alignright {
	margin-bottom: 0;
}
.bwp-content ul.wp-block-latest-posts.is-grid.alignwide,
.bwp-content ul.wp-block-latest-posts.is-grid.alignfull {
	margin-bottom: 0 !important;
}


/**
 * 11.2.26 - Block: RSS
 * -------------------------------------------------------------
 */

.bwp-content ul.wp-block-rss {
	list-style: none;
	margin: 20px 0;
	padding: 0;
}
.bwp-content .wp-block-rss > li {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eeefef;
}
.bwp-content .wp-block-rss:not(.is-grid) > li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.bwp-content .wp-block-rss li .wp-block-rss__item-title a {
	font-weight: 700;
	text-decoration: none !important;
}
.bwp-content .wp-block-rss li .wp-block-rss__item-title a:hover,
.bwp-content .wp-block-rss li .wp-block-rss__item-title a:focus {
	text-decoration: underline !important;
}
.bwp-content .wp-block-rss li .wp-block-rss__item-publish-date,
.bwp-content .wp-block-rss li .wp-block-rss__item-author {
	display: block;
	margin: 4px 0;
	padding: 0;
	text-align: left;
	font-size: 13px;
	font-style: normal;
	color: #989ea6;
}
.bwp-content .wp-block-rss li .wp-block-rss__item-excerpt {
	margin: 4px 0;
	padding: 0;
	font-size: 14px;
	font-style: normal;
}

/* grid style */
.bwp-content ul.wp-block-rss.is-grid {
	margin-bottom: 0;
}
.bwp-content .wp-block-rss.is-grid > li {
	margin: 0 25px 20px 0;
	padding: 0 0 20px;
	width: 100%;
}
.bwp-content .wp-block-rss.is-grid.columns-2 > li {
	width: calc(50% - 12.5px);
}
.bwp-content .wp-block-rss.is-grid.columns-3 > li {
	width: calc(33.33333% - 16.66667px);
}
.bwp-content .wp-block-rss.is-grid.columns-4 > li {
	width: calc(25% - 18.75px);
}
.bwp-content .wp-block-rss.is-grid.columns-5 > li {
	width: calc(20% - 20px);
}
.bwp-content .wp-block-rss.is-grid.columns-6 > li {
	width: calc(16.66667% - 20.83333px);
}
.bwp-content .wp-block-rss.is-grid.columns-2 > li:nth-child(2n),
.bwp-content .wp-block-rss.is-grid.columns-3 > li:nth-child(3n),
.bwp-content .wp-block-rss.is-grid.columns-4 > li:nth-child(4n),
.bwp-content .wp-block-rss.is-grid.columns-5 > li:nth-child(5n),
.bwp-content .wp-block-rss.is-grid.columns-6 > li:nth-child(6n) {
	margin-right: 0;
}

/* block alignment */
/* list style */
.bwp-content .wp-block-rss.alignleft,
.bwp-content .wp-block-rss.alignright {
	max-width: 360px;
}
.bwp-content .wp-block-rss.alignleft {
	margin: 0 30px 20px 0;
}
.bwp-content .wp-block-rss.alignright {
	margin: 0 0 20px 30px;
}
.bwp-content .wp-block-rss.alignwide,
.bwp-content .wp-block-rss.alignfull {
	padding-right: 30px;
	padding-left: 30px;
}
/* grid style */
.bwp-content .wp-block-rss.is-grid.alignleft,
.bwp-content .wp-block-rss.is-grid.alignright {
	margin-bottom: 0;
}
.bwp-content .wp-block-rss.is-grid.alignwide,
.bwp-content .wp-block-rss.is-grid.alignfull {
	margin-bottom: 0 !important;
}


/**
 * 11.2.27 - Block: Social Icons
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-social-links {
	list-style: none;
	margin: 15px 0;
	padding: 0;
}
.bwp-content .wp-block-social-links.has-small-icon-size {
	font-size: 20px;
}
.bwp-content .wp-block-social-links,
.bwp-content .wp-block-social-links.has-normal-icon-size {
	font-size: 25px;
}
.bwp-content .wp-block-social-links.has-large-icon-size {
	font-size: 30px;
}
.bwp-content .wp-block-social-links.has-huge-icon-size {
	font-size: 40px;
}
.bwp-content .wp-block-social-links .wp-social-link {
	margin: 5px 10px 5px 0 !important;
	font-size: inherit;
	line-height: 1;
}
.bwp-content .wp-block-social-links.is-style-logos-only .wp-social-link {
	padding: 0;
}

/* block alignment */
.bwp-content .wp-block-social-links.alignleft,
.bwp-content .wp-block-social-links.alignright {
	max-width: 283.33px;
}
.bwp-content .wp-block-social-links.alignleft {
	margin: 0 30px 30px 0;
}
.bwp-content .wp-block-social-links.alignright {
	margin: 0 -10px 30px 40px;
}


/**
 * 11.2.28 - Block: Tag Cloud
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-tag-cloud {
	margin: 20px 0;
	line-height: 1.7 !important;
}
.bwp-content .wp-block-tag-cloud a {
	display: inline-block;
	margin-right: 6px;
	text-decoration: none !important;
}
.bwp-content .wp-block-tag-cloud a:hover,
.bwp-content .wp-block-tag-cloud a:focus {
	text-decoration: underline !important;
}
.bwp-content .wp-block-tag-cloud a .tag-link-count {
	display: inline-block;
	margin: 0 0 0 3px;
	color: #4c4f53;

	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}
.bwp-content .wp-block-tag-cloud a:hover .tag-link-count,
.bwp-content .wp-block-tag-cloud a:focus .tag-link-count {
	color: #6ca4db;
	text-decoration: underline !important;
}

/* style: outline */
.bwp-content .wp-block-tag-cloud.is-style-outline a {
	margin-right: 2px;
	margin-bottom: 2px;
	padding: 6px 12px;
	border-radius: 2px;
}

/* block alignment */
.bwp-content .wp-block-tag-cloud.alignleft,
.bwp-content .wp-block-tag-cloud.alignright {
	max-width: 360px;
}
.bwp-content .wp-block-tag-cloud.alignleft {
	margin: 0 30px 20px 0;
}
.bwp-content .wp-block-tag-cloud.alignright {
	margin: 0 0 20px 30px;
}
.bwp-content .wp-block-tag-cloud.aligncenter {
	text-align: center;
}
.bwp-content .wp-block-tag-cloud.alignwide,
.bwp-content .wp-block-tag-cloud.alignfull {
	padding-right: 30px;
	padding-left: 30px;
}


/**
 * 11.2.29 - Block: Search
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-search {
	margin: 0 0 15px;
}

/* search form: input */
.bwp-content .wp-block-search .wp-block-search__input {
	border: 2px solid #eeefef;
	border-top-width: 1px;
}
.bwp-content .wp-block-search .wp-block-search__input:hover,
.bwp-content .wp-block-search .wp-block-search__input:focus {
	border-color: #6ca4db;
}

/* search form: button */
.bwp-content .wp-block-search .wp-block-search__button {
	border: none;
	outline: none;
	margin: 0 0 0 10px;
	padding: 0 20px !important;
	height: 40px;
	line-height: 40px;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	color: #ffffff;
	background: #1f2123;
	border-radius: 0;
	box-shadow: none;
	white-space: nowrap;
}
.bwp-content .wp-block-search .wp-block-search__button:hover,
.bwp-content .wp-block-search .wp-block-search__button:focus {
	color: #ffffff;
	background: #6ca4db;
}
.bwp-content .wp-block-search .wp-block-search__button.has-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.bwp-content .wp-block-search .wp-block-search__button svg {
	fill: currentColor;
	outline: none;
}

/* search form: button inside */
.bwp-content .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
	padding: 5px;
	background-color: #ffffff;
	border: 2px solid #eeefef;
	border-top-width: 1px;
	border-radius: 0;
}
.bwp-content .wp-block-search.wp-block-search__button-inside .wp-block-search__input {
	border: none;
	padding: 0 10px;
	border-radius: 0;
}

/* block alignment */
.bwp-content .wp-block-search.alignleft,
.bwp-content .wp-block-search.alignright {
	width: 283.33px;
}
.bwp-content .wp-block-search.alignleft {
	margin: 0 30px 15px 0;
}
.bwp-content .wp-block-search.alignright {
	margin: 0 0 15px 30px;
}
.bwp-content .wp-block-search.aligncenter .wp-block-search__label {
	text-align: center;
}


/**
 * 11.2.30 - Block: Embed
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-embed {
	margin: 0 0 15px;
}
.bwp-content .wp-block-embed iframe {
	border-radius: 0;
	box-shadow: none;
}
.bwp-content .wp-block-embed figcaption {
	margin: 0;
	padding: 10px 0 0;
	text-align: left;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
	color: #4c4f53;
}

/* block alignment */
.bwp-content .wp-block-embed.alignleft,
.bwp-content .wp-block-embed.alignright {
	max-width: 360px;
	width: 100%;
}
.bwp-content .wp-block-embed.alignleft {
	margin: 0 30px 15px 0;
}
.bwp-content .wp-block-embed.alignright {
	margin: 0 0 15px 30px;
}
.bwp-content .wp-block-embed.alignwide figcaption,
.bwp-content .wp-block-embed.alignfull figcaption {
	padding-right: 30px;
	padding-left: 30px;
}


/**
 * 11.2.31 - Block: Site Logo
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-site-logo {
	margin: 0 0 15px;
}
.bwp-content .wp-block-site-logo img {
	border-radius: 0;
	box-shadow: none;
}


/**
 * 11.2.32 - Block: Post Categories and Post Tags
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-post-terms {
	margin: 0 0 15px;
}
.bwp-content .wp-block-post-terms.has-text-color a,
.bwp-content .wp-block-post-terms.has-text-color a:hover,
.bwp-content .wp-block-post-terms.has-text-color a:focus {
	color: inherit;
}


/**
 * 11.2.33 - Block: Page List
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-page-list {
	list-style: none;
	margin: 0 0 15px;
	padding: 0;
}
.bwp-content .wp-block-page-list li {
	margin-bottom: 5px;
}
.bwp-content .wp-block-page-list li:last-child {
	margin-bottom: 0;
}
.bwp-content .wp-block-page-list li::before {
	content: '-';
	margin-right: 5px;
}
.bwp-content .wp-block-page-list li a {
	text-decoration: none !important;
}
.bwp-content .wp-block-page-list li a:hover,
.bwp-content .wp-block-page-list li a:focus {
	text-decoration: underline !important;
}
.bwp-content .wp-block-page-list ul {
	list-style: none;
	margin: 5px 0 0;
	padding: 0 0 1px 20px;
}
.bwp-content .wp-block-page-list .wp-block-page-list__submenu-icon {
	display: none;
}


/**
 * 11.2.34 - Blocks: Post title, Featured image, Excerpt, Date
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-post-title,
.bwp-content .wp-block-post-featured-image,
.bwp-content .wp-block-post-excerpt,
.bwp-content .wp-block-post-date {
	margin-top: 15px;
	margin-bottom: 15px;
}
.bwp-content .wp-block-post-excerpt__more-text {
	margin-top: 15px;
}


/**
 * 11.2.35 - Block: Query Loop
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-query {
	margin: 30px 0;
}
.bwp-content .wp-block-post-template,
.bwp-content .wp-block-query .wp-block-post-template {
	list-style: none;
	margin: 0;
	padding: 0;
}
.bwp-content .wp-block-post-template > li,
.bwp-content .wp-block-query .wp-block-post-template > li {
	margin-bottom: 30px;
}
.bwp-content .wp-block-post-template > li:last-child,
.bwp-content .wp-block-query .wp-block-post-template > li:last-child {
	margin-bottom: 0;
}
.bwp-content .wp-block-post-template > li > :first-child,
.bwp-content .wp-block-query .wp-block-post-template > li > :first-child {
	margin-top: 15px;
}
.bwp-content .wp-block-post-template .has-text-color a,
.bwp-content .wp-block-post-template .has-text-color a:hover,
.bwp-content .wp-block-post-template .has-text-color a:focus {
	color: inherit !important;
}

/* post template: post title */
.bwp-content .wp-block-post-template .wp-block-post-title {
	margin-top: 15px;
	margin-bottom: 15px;
	text-align: left;
}
.bwp-content .wp-block-post-template .wp-block-post-title a {
	text-decoration: none !important;
	color: #2f3235;
}
.bwp-content .wp-block-post-template .wp-block-post-title a:hover,
.bwp-content .wp-block-post-template .wp-block-post-title a:focus {
	text-decoration: underline !important;
	color: #4c4f53;
}

/* post template: featured image */
.bwp-content .wp-block-post-template .wp-block-post-featured-image {
	margin-bottom: 15px;
}
.bwp-content .wp-block-post-template .wp-block-post-featured-image img {
	max-width: 100%;
	border-radius: 0;
	box-shadow: none;
}

/* post template: read more link */
.bwp-content .wp-block-post-template .wp-block-post-excerpt__more-link {
	font-size: 14px;
	font-weight: 700;
}

/* block: read more */
.bwp-content .wp-block-read-more {
	margin-bottom: 15px;
	text-decoration: underline;
}

/* post template: separator */
.bwp-content .wp-block-post-template .wp-block-separator {
	margin-top: 15px;
	margin-bottom: 15px;
}

/* post template: date */
.bwp-content .wp-block-post-template .wp-block-post-date {
	font-size: 14px;
}
.bwp-content .wp-block-post-template .wp-block-post-date a {
	font-weight: 700;
}

/* post template: group */
.bwp-content .wp-block-post-template .wp-block-group {
	margin-top: 0;
	margin-bottom: 0;
	padding: 20px !important;
}
.bwp-content .wp-block-group .wp-block-query {
	margin-top: 0;
	margin-bottom: 0;
}
.bwp-content .wp-block-post-template .wp-block-group .wp-block-group__inner-container > :first-child {
	margin-top: 0 !important;
}

/* post template: columns */
.bwp-content .wp-block-post-template.is-flex-container .alignwide {
	width: auto;
	max-width: 100%;
	margin: 0 0 15px !important;
}

/* pagination */
.bwp-content .wp-block-query-pagination {
	margin-top: 30px;
	margin-bottom: 30px;
}
.bwp-content .wp-block-query-pagination a {
	text-decoration: none !important;
}
.bwp-content .wp-block-query-pagination a:hover,
.bwp-content .wp-block-query-pagination a:focus {
	text-decoration: underline !important;
}
.bwp-content .wp-block-query-pagination .wp-block-query-pagination-next,
.bwp-content .wp-block-query-pagination .wp-block-query-pagination-numbers,
.bwp-content .wp-block-query-pagination .wp-block-query-pagination-previous {
	margin: 0;
}
.bwp-content .wp-block-query-pagination .wp-block-query-pagination-next {
	margin-left: 10px;
}
.bwp-content .wp-block-query-pagination .wp-block-query-pagination-previous {
	margin-right: 10px;
}
.bwp-content .wp-block-query-pagination .wp-block-query-pagination-next,
.bwp-content .wp-block-query-pagination .wp-block-query-pagination-previous {
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
}
.bwp-content .wp-block-query-pagination .page-numbers {
	display: inline-block;
	padding: 0 15px;
	height: 40px;
	line-height: 40px;
	font-size: 15px;
	font-weight: 700;
}
.bwp-content .wp-block-query-pagination .page-numbers.dots {
	padding-right: 0;
	padding-left: 0;
}
.bwp-content .wp-block-query-pagination .page-numbers.current {
	cursor: default;
	color: #ffffff;
	background-color: #6ca4db;
	border-radius: 0;
}


/**
 * 11.2.36 - Block: Navigation
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-navigation {
	margin-top: 15px;
	margin-bottom: 15px;
}
.bwp-content .wp-block-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.bwp-content .wp-block-navigation button {
	padding: 0;
	height: auto;
	line-height: 0;
	color: currentColor;
	background: transparent !important;
}

/* menu item */
.bwp-content .wp-block-navigation .wp-block-navigation-item {
	margin-top: 0;
	margin-bottom: 0;
	font-size: inherit;
	line-height: inherit;
}
.bwp-content .wp-block-navigation .wp-block-navigation-item__content {
	padding: 15px 0;
}
.bwp-content .wp-block-navigation .wp-block-navigation-item a {
	color: inherit;
	text-decoration: none !important;
}
.bwp-content .wp-block-navigation .wp-block-navigation-item a:hover,
.bwp-content .wp-block-navigation .wp-block-navigation-item a:focus {
	color: inherit;
	text-decoration: underline !important;
}

/* submenu */
.bwp-content .wp-block-navigation .wp-block-navigation__submenu-container {
	color: inherit;
	border: none;
	box-shadow: 0 14px 28px -4px rgba(14,17,20,0.15);
}
.bwp-content .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content,
.bwp-content .wp-block-navigation.is-vertical .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	padding: 10px 15px;
}
.bwp-content .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item.has-child {
	padding-right: 15px;
}
.bwp-content .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item.has-child > .wp-block-navigation-item__content {
	padding-right: 0;
}

/* has background */
.bwp-content .wp-block-navigation.has-background {
	padding: 0 20px;
}
.bwp-content .wp-block-navigation .has-background {
	padding: 0;
}

/* orientation: vertical */
.bwp-content .wp-block-navigation.is-vertical .wp-block-navigation-item__content {
	padding-top: 0;
	padding-bottom: 0;
}
.bwp-content .wp-block-navigation.is-vertical.has-background {
	padding-top: 15px;
	padding-bottom: 15px;
}

/* mobile menu */
.bwp-content .wp-block-navigation .wp-block-navigation__responsive-container-close,
.bwp-content .wp-block-navigation .wp-block-navigation__responsive-container-open {
	padding: 15px;
}
.bwp-content .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open {
	padding: 30px;
	color: inherit;
}
.bwp-content .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
	padding-top: 5px;
	padding-bottom: 5px;
	border: none;
	box-shadow: none;
}
.bwp-content .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	padding: 2px 0;
}
.bwp-content .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item.has-child {
	padding-right: 0;
}

/* mobile menu: has background */
.bwp-content .wp-block-navigation.has-background .wp-block-navigation__responsive-container-open,
.bwp-content .wp-block-navigation.has-background.items-justified-left .wp-block-navigation__responsive-container-open,
.bwp-content .wp-block-navigation.has-background.items-justified-space-between .wp-block-navigation__responsive-container-open {
	margin-left: -20px;
}
.bwp-content .wp-block-navigation.has-background.items-justified-center .wp-block-navigation__responsive-container-open {
	margin-left: 0;
}
.bwp-content .wp-block-navigation.has-background.items-justified-right .wp-block-navigation__responsive-container-open {
	margin-left: 0;
	margin-right: -20px;
}

/* navigation: page list */
.bwp-content .wp-block-navigation .wp-block-page-list {
	gap: 1em;
}
.bwp-content .wp-block-navigation .wp-block-page-list li::before {
	display: none;
}
.bwp-content .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list {
	gap: inherit;
}


/**
 * 11.2.37 - Block: Site title
 * ----------------------------------------------------------------------------
 */

.bwp-content h1.wp-block-site-title {
	margin-top: 15px;
	margin-bottom: 15px;
}


/**
 * 11.2.38 - Block: Post Author
 * ----------------------------------------------------------------------------
 */

.bwp-content .wp-block-post-author {
	margin-top: 15px;
	margin-bottom: 15px;
}

/* avatar */
.bwp-content .wp-block-post-author__avatar {
	margin-right: 20px;
}
.bwp-content .wp-block-post-author__avatar img {
	border-radius: 50%;
}

/* content */
.bwp-content .wp-block-post-author__content {
	font-size: inherit;
}
.bwp-content .wp-block-post-author__content p {
	margin: 0;
}
.bwp-content .wp-block-post-author__content .wp-block-post-author__byline {
	font-size: 90%;
}
.bwp-content .wp-block-post-author__content .wp-block-post-author__name {
	margin: 0;
	font-size: 110%;
	font-weight: 700;
	line-height: inherit;
}
.bwp-content .wp-block-post-author__content .wp-block-post-author__bio {
	margin: 10px 0 0;
	font-size: 100%;
	line-height: inherit;
}


/**
 * 11.2.39 - Block: Post Navigation Link (Next and Previous)
 * ----------------------------------------------------------------------------
 */

.bwp-content .wp-block-post-navigation-link {
	margin-top: 15px;
	margin-bottom: 15px;
}
.bwp-content .wp-block-post-navigation-link.has-text-color a,
.bwp-content .wp-block-post-navigation-link.has-text-color a:hover,
.bwp-content .wp-block-post-navigation-link.has-text-color a:focus {
	color: inherit;
}


/**
 * 11.2.40 - Block: Post Comments
 * ----------------------------------------------------------------------------
 */

.bwp-content .wp-block-comments {
	margin: 30px 0;
}

/* comment list */
.bwp-content .wp-block-comment-template {
	list-style: none outside none;
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 0;
}
.bwp-content .wp-block-comment-template .wp-block-column > :first-child {
	margin-top: 0;
}

/* avatar */
.bwp-content .wp-block-avatar {
	margin: 15px 0;
}
.bwp-content .wp-block-avatar img {
	box-shadow: none;
	border-radius: 50% !important;
}

/* comment author name */
.bwp-content .wp-block-comment-template .wp-block-comment-author-name {
	margin: 15px 0;
	font-weight: 700;
}

/* date and edit link */
.bwp-content .wp-block-comment-template .wp-block-comment-date,
.bwp-content .wp-block-comment-template .wp-block-comment-edit-link {
	margin: 0;
}
.bwp-content .wp-block-comment-template .wp-block-comment-date a,
.bwp-content .wp-block-comment-template .wp-block-comment-edit-link a {
	color: #989ea6;
}
.bwp-content .wp-block-comment-template .wp-block-comment-date a:hover,
.bwp-content .wp-block-comment-template .wp-block-comment-edit-link a:hover,
.bwp-content .wp-block-comment-template .wp-block-comment-date a:focus,
.bwp-content .wp-block-comment-template .wp-block-comment-edit-link a:focus {
	color: #6ca4db;
}

/* comment content */
.bwp-content .wp-block-comment-template .wp-block-comment-content {
	margin: 15px 0;
}

/* reply link */
.bwp-content .wp-block-comment-template .wp-block-comment-reply-link {
	margin: 15px 0;
}
.bwp-content .wp-block-comment-template .wp-block-comment-reply-link a {
	color: #989ea6;
}
.bwp-content .wp-block-comment-template .wp-block-comment-reply-link a:hover,
.bwp-content .wp-block-comment-template .wp-block-comment-reply-link a:focus {
	color: #6ca4db;
}

/* comments pagination */
.bwp-content .wp-block-comments-pagination a {
	text-decoration: none !important;
}
.bwp-content .wp-block-comments-pagination a:hover,
.bwp-content .wp-block-comments-pagination a:focus {
	text-decoration: underline !important;
}
.bwp-content .wp-block-comments-pagination .wp-block-comments-pagination-previous,
.bwp-content .wp-block-comments-pagination .wp-block-comments-pagination-numbers,
.bwp-content .wp-block-comments-pagination .wp-block-comments-pagination-next {
	margin: 0;
}
.bwp-content .wp-block-comments-pagination .wp-block-comments-pagination-previous {
	margin-right: 10px;
}
.bwp-content .wp-block-comments-pagination .wp-block-comments-pagination-next {
	margin-left: 10px;
}
.bwp-content .wp-block-comments-pagination .wp-block-comments-pagination-previous,
.bwp-content .wp-block-comments-pagination .wp-block-comments-pagination-next {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
}
.bwp-content .wp-block-comments-pagination .page-numbers {
	display: inline-block;
	padding: 0 14px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	font-weight: 700;
}
.bwp-content .wp-block-comments-pagination .page-numbers.dots {
	padding-right: 0;
	padding-left: 0;
}
.bwp-content .wp-block-comments-pagination .page-numbers.current {
	cursor: default;
	color: #ffffff;
	background-color: #6ca4db;
	border-radius: 0;
}

/* block: comment form */
.bwp-content .wp-block-post-comments-form {
	margin: 30px 0;
	padding: 0;
	max-width: 100%;
}
.bwp-content .wp-block-comments .wp-block-post-comments-form {
	margin-top: 15px;
}
.bwp-content .wp-block-post-comments-form .comment-reply-title {
	margin-top: 0;
	margin-bottom: 15px;
	max-width: 100%;
	text-align: inherit;
	font-size: 23px;
	line-height: 1.2;
	text-transform: none;
}
.bwp-content .wp-block-post-comments-form .comment-reply-title a {
	text-decoration: none !important;
}
.bwp-content .wp-block-post-comments-form .comment-form {
	margin: 0 !important;
	padding: 0 !important;
}
.bwp-content .wp-block-post-comments-form .comment-form-cookies-consent input {
	margin-top: 7px !important;
}
.bwp-content .wp-block-post-comments-form .comment-form .form-submit {
	padding-bottom: 0;
}


/**
 * 11.2.41 - Block: Login - Out
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-loginout {
	margin-top: 15px;
	margin-bottom: 15px;
}
.bwp-content .wp-block-loginout.has-login-form {
	margin-top: 20px;
	margin-bottom: 20px;
}
.bwp-content .wp-block-loginout form {
	padding: 30px;
	border: 1px solid #eeefef;
}
.bwp-content .wp-block-loginout form > :last-child,
.bwp-content .wp-block-loginout form .login-submit {
	margin-bottom: 0;
}
.bwp-content .wp-block-loginout form .login-submit input[type="submit"] {
	font-weight: 400;
}


/**
 * 11.2.42 - Block: Author avatar
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-avatar {
	margin: 0 0 15px;
}


/**
 * 11.2.43 - Block: Post author biography
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-post-author-biography {
	margin: 0 0 15px;
}


/**
 * 11.2.44 - Block: Details
 * -------------------------------------------------------------
 */

.bwp-content .wp-block-details {
	margin: 15px 0;
}
.bwp-content .wp-block-details summary {
	font-size: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	font-weight: 700;
}
.bwp-content .wp-block-details > *:nth-child(2) {
	margin-top: 15px;
}
.bwp-content .wp-block-details.has-background[open] {
	padding-bottom: 15px;
}

/* block alignment */
.bwp-content .wp-block-details.alignwide,
.bwp-content .wp-block-details.alignfull {
	padding-right: 30px;
	padding-left: 30px;
}


/**
 * 11.3 - About the author
 * -------------------------------------------------------------
 */

.bwp-about-author {
	position: relative;
	margin-bottom: 40px;
	padding: 30px;
	background-color: #ffffff;
}

/* avatar */
.bwp-about-author-avatar {
	float: left;
	margin: 0 20px 0 0;
	position: relative;
	overflow: hidden;
}
.bwp-about-author-avatar img {
	display: block;
	margin: 0;
	padding: 0;
	width: 72px;
	height: 72px !important;
	border-radius: 36px;
}
.bwp-about-author-avatar .bwp-avatar-bg-overlay {
	border-radius: 36px;
}
.bwp-about-author-avatar:hover .bwp-avatar-bg-overlay {
	opacity: 0.2;
}

/* biographical info */
.bwp-about-author-bio-wrap {
	padding-left: 92px;
}
.bwp-no-avatars .bwp-about-author-bio-wrap {
	padding-left: 0 !important;
}
.bwp-about-author-name {
	margin-bottom: 0;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.3;
	color: #2f3235;
}
.bwp-about-author-name a {
	display: inline-block;
	color: #2f3235;
}
.bwp-about-author-name a:hover,
.bwp-about-author-name a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}
.bwp-about-author-name .bwp-about-author-posts-num {
	display: block;
	margin-top: 5px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #989ea6;
}
.bwp-about-author-name .bwp-about-author-posts-num i {
	margin-right: 8px;
}
.bwp-about-author-bio {
	margin-top: 12px;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
	color: #4c4f53;
}
.bwp-about-author-bio p {
	margin-bottom: 10px;
}
.bwp-about-author-bio p:last-child {
	margin-bottom: 0;
}
.bwp-about-author-bio a,
.bwp-about-author-bio a:hover,
.bwp-about-author-bio a:focus {
	text-decoration: underline !important;
}
.bwp-about-author-posts-link {
	display: inline-block;
	margin-top: 12px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.3;
	color: #989ea6;
}
.bwp-about-author-posts-link i {
	margin-right: 8px;
}
.bwp-about-author-posts-link:hover,
.bwp-about-author-posts-link:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}


/**
 * 11.4 - Comments
 * -------------------------------------------------------------
 * 11.4.1 - Comment form
 * -------------------------------------------------------------
 */

/* comments area: comment form, comment list, and navigation */
.comments-area {
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
	color: #4c4f53;
}

/* comments area: styles for Font Awesome icons */
.comment-reply-title #cancel-comment-reply-link::before,
.bypostauthor > article .fn::after {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

/* comment form title, comments title */
.comment-reply-title,
.comments-title {
	margin: 0 0 25px;
	font-size: 26px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	color: #2f3235;
}

/* comment form */
.comment-form {
	margin-bottom: 40px;
	padding: 30px;
	background-color: #ffffff;
}
.comment-form-comment {
	margin-bottom: 7px;
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
	margin-bottom: 10px;
}
.comment-form label {
	display: block;
	margin-bottom: 0;
	padding-bottom: 5px;
	font-weight: 700;
	line-height: 1.7;
	color: #4c4f53;
}
.comment-form-cookies-consent {
	margin-bottom: 10px;
	padding-top: 12px;
}
.comment-form-cookies-consent input[type="checkbox"] {
	margin: 0 10px 0 0;
}
.comment-form-cookies-consent label {
	display: inline;
	padding-bottom: 0;
	font-weight: 400;
}
#author,
#email,
#url,
#comment {
	width: 100%;
	height: 40px;
	padding: 0 10px;
	color: #4c4f53;
	background: #ffffff;
	border: 2px solid #eeefef;
	border-top-width: 1px;
	border-radius: 0;

	-webkit-transition: border-color 0.2s ease;
	-moz-transition: border-color 0.2s ease;
	-o-transition: border-color 0.2s ease;
	transition: border-color 0.2s ease;
}
#comment {
	height: 110px;
	padding: 10px;
	resize: vertical;
}
#author:hover,
#email:hover,
#url:hover,
#comment:hover {
	border-color: #6ca4db;
}
#author:active,
#email:active,
#url:active,
#comment:active,
#author:focus,
#email:focus,
#url:focus,
#comment:focus {
	outline: none;
	border-color: #6ca4db;
}

/* allowed tags */
.comment-form .form-allowed-tags {
	display: none;
}

/* comment form: submit button */
.comment-form .form-submit {
	padding: 15px 0 7px;
	margin-bottom: 0;
}
.comment-form #submit {
	border: none;
	outline: none;
	display: inline-block;
	padding: 0 35px;
	height: 48px;
	line-height: 48px;
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	color: #ffffff;
	background-color: #1f2123;
	border-radius: 0;

	-webkit-transition: background-color 0.2s ease;
	-moz-transition: background-color 0.2s ease;
	-o-transition: background-color 0.2s ease;
	transition: background-color 0.2s ease;
}
.comment-form #submit:hover,
.comment-form #submit:focus {
	color: #ffffff;
}
.comment-form #submit:hover {
	background-color: #6ca4db;
}
.comment-form #submit:active {
	position: relative;
	top: 1px;
}

/* "must login" message */
.comment-respond .must-log-in {
	margin-bottom: 40px;
	padding: 30px;
	background-color: #ffffff;
}
.comment-respond .must-log-in a {
	color: #4c4f53;
	text-decoration: underline !important;
}
.comment-respond .must-log-in a:hover,
.comment-respond .must-log-in a:focus {
	color: #6ca4db;
}

/* "logged-in as ..." message */
.comment-form .logged-in-as a {
	color: #4c4f53;
	text-decoration: underline !important;
}
.comment-form .logged-in-as a:hover,
.comment-form .logged-in-as a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}

/* cancel comment reply link */
.comment-reply-title small {
	float: right;
	margin-top: 10px;
}
.comment-reply-title #cancel-comment-reply-link {
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	color: #989ea6;
}
.comment-reply-title #cancel-comment-reply-link::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900; /* solid style */
	content: '\f057'; /* icon: times-circle */
	margin-right: 8px;
}
.comment-reply-title #cancel-comment-reply-link:hover {
	color: #6ca4db;
}


/**
 * 11.4.2 - Comment list
 * -------------------------------------------------------------
 */

/* comments */
.comment-list-wrap {
	margin-bottom: 40px;
	padding: 30px 30px 15px;
	background-color: #ffffff;
}
.comment-list {
	list-style: none outside none;
	margin: 0;
	padding: 0 0 15px;
}
.comment-list .children {
	list-style: none outside none;
	margin: 0;
	padding: 0 0 0 30px;
}

/* comment body */
.comment .comment-body {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #eeefef;
	word-wrap: break-word;
}
.comment-list > .comment:first-child > .comment-body {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

/* pingbacks and trackbacks */
.comment-list .trackback .comment-body,
.comment-list .pingback .comment-body {
	margin-top: 25px;
	padding-top: 25px;
	padding-left: 36px;
	border-top: 1px solid #eeefef;
	word-wrap: break-word;
	position: relative;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.3;
	color: #989ea6;
}
.comment-list .trackback .comment-body::before,
.comment-list .pingback .comment-body::before {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900; /* solid style */
	content: '\f35d'; /* icon: external-link-alt */
	position: absolute;
	top: auto;
	left: 0;
	margin-top: -2px;
	line-height: 1;
	font-size: 19px;
	color: #4c4f53;
	opacity: 0.2;
}
.comment-list > .trackback:first-child > .comment-body,
.comment-list > .pingback:first-child > .comment-body {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}
.comment-list .trackback .comment-body > a,
.comment-list .pingback .comment-body > a {
	display: block;
	margin-top: 12px;
	font-family: 'Lora', serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	color: #4c4f53;
}
.comment-list .trackback .comment-body > a:hover,
.comment-list .trackback .comment-body > a:focus,
.comment-list .pingback .comment-body > a:hover,
.comment-list .pingback .comment-body > a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}
.comment-list .trackback .comment-body .edit-link,
.comment-list .pingback .comment-body .edit-link {
	display: inline-block;
	margin-top: 12px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.3;
}
.comment-list .trackback .comment-body .edit-link .comment-edit-link,
.comment-list .pingback .comment-body .edit-link .comment-edit-link {
	color: #989ea6;
	text-decoration: none !important;
}
.comment-list .trackback .comment-body .edit-link .comment-edit-link:hover,
.comment-list .trackback .comment-body .edit-link .comment-edit-link:focus,
.comment-list .pingback .comment-body .edit-link .comment-edit-link:hover,
.comment-list .pingback .comment-body .edit-link .comment-edit-link:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}

/* comment metadata: avatar */
.comment-meta .comment-author img {
	float: left;
	display: block;
	width: 46px !important;
	height: 46px !important;
	margin: 0 15px 0 0;
	padding: 0;
	border-radius: 23px;
}

/* comment metadata: author */
.comment-meta .comment-author .fn {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.3;
	color: #2f3235;
}
.comment-meta .comment-author .fn .url {
	color: #2f3235;
	text-decoration: underline !important;
}
.comment-meta .comment-author .fn .url:hover,
.comment-meta .comment-author .fn .url:focus {
	color: #6ca4db;
}
.comment-meta .comment-author .says {
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	word-wrap: normal !important;
}

/* comment metadata: post author */
.bypostauthor > article .fn::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900; /* solid style */
	content: '\f5ac'; /* icon: pen-fancy */
	margin-left: 8px;
	font-size: 75%;
}

/* comment metadata: date and edit links */
.comment-meta .comment-metadata {
	margin-top: 2px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.3;
	color: #989ea6;
}
.comment-meta .comment-metadata a {
	color: #989ea6;
}
.comment-meta .comment-metadata a:hover,
.comment-meta .comment-metadata a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}

/* comment metadata: edit link */
.comment-meta .edit-link {
	margin-left: 10px;
}

/* comment metadata: "comment awaiting moderation" message */
.comment-meta .comment-awaiting-moderation {
	display: block;
	margin: 15px 0 0 61px;
	padding: 4px 0;
	background-color: #f7f8f8;
}

/* comment content */
.comment-content {
	padding: 12px 0 0 61px;
}
.bwp-no-avatars .comment-content {
	padding-left: 0 !important;
}
.comment-content p {
	margin-bottom: 15px;
}
.comment-content a {
	color: #4c4f53;
	text-decoration: underline !important;
}
.comment-content a:hover,
.comment-content a:focus {
	color: #6ca4db;
}

/* comment reply */
.comment-body .reply {
	padding: 0 0 0 61px;
	margin-top: -6px;
	line-height: 1.3;
}
.bwp-no-avatars .comment-body .reply {
	padding-left: 0 !important;
}
.comment-body .reply .comment-reply-link {
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	color: #989ea6;
}
.comment-body .reply .comment-reply-link:focus {
	color: #989ea6;
}
.comment-body .reply .comment-reply-link:hover {
	color: #6ca4db;
	text-decoration: underline !important;
}

/* comment reply: comment form */
.comment-list li .comment-respond {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #eeefef;
}
.comment-list li .comment-reply-title {
	margin-bottom: 16px;
}
.comment-list li .comment-form {
	margin-bottom: 0;
	padding: 0;
	box-shadow: none;
}
.comment-list li .comment-form .form-submit {
	padding-bottom: 5px;
}

/* comments are closed */
.comment-list-wrap.comments-closed .comment-list {
	padding-bottom: 0;
}
.comments-area .no-comments {
	margin-bottom: 40px;
	padding: 30px;
	background-color: #ffffff;
}


/**
 * 11.4.3 - Comments navigation
 * -------------------------------------------------------------
 */

.comment-navigation {
	margin: 10px 0 0;
	padding: 20px 0 15px;
	border-top: 1px solid #eeefef;
}
.comment-list-wrap.comments-closed .comment-navigation {
	margin-top: 25px;
}
.comment-navigation::before,
.comment-navigation::after {
	content: " ";
	display: table;
}
.comment-navigation::after {
	clear: both;
}
.comment-navigation {
	zoom: 1;
}
.comment-navigation .nav-previous,
.comment-navigation .nav-next {
	display: inline-block;
	min-height: 1px;
	width: 50%;
	line-height: 1.6;
}
.comment-navigation .nav-previous {
	float: left;
	text-align: left;
	padding-right: 15px;
}
.comment-navigation .nav-next {
	float: right;
	text-align: right;
	padding-left: 15px;
}
.comment-navigation .nav-links a {
	display: inline-block;
	width: 100%;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	word-wrap: break-word;
	color: #989ea6;
}
.comment-navigation .nav-links a:hover,
.comment-navigation .nav-links a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}
.comment-navigation .nav-previous i {
	margin-right: 10px;
}
.comment-navigation .nav-next i {
	margin-left: 10px;
}


/**
 * 11.5 - Related posts / Posts on a single page
 * -------------------------------------------------------------
 */

.bwp-page-posts,
.bwp-related-posts {
	overflow: hidden;
}
.bwp-page-posts-list,
.bwp-related-posts-list {
	margin-right: -30px;
}
.bwp-page-posts .post,
.bwp-related-posts .post {
	float: left;
}
.bwp-page-posts.bwp-show-2-page-posts .post,
.bwp-related-posts.bwp-show-2-related-posts .post {
	width: 50%;
}
.bwp-page-posts.bwp-show-3-page-posts .post,
.bwp-related-posts.bwp-show-3-related-posts .post {
	width: 33.33%;
}


/**
 * 12.0 - Page 404
 * -------------------------------------------------------------
 */

.bwp-page-404-container {
	margin: 60px 0;
	padding: 120px 30px;
	text-align: center;
	background-color: #ffffff;
}
.bwp-page-404-content {
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
}
.bwp-page-404-content h1,
.bwp-page-404-content h2 {
	margin-bottom: 15px;
	font-style: normal;
	font-weight: 700;
	color: #2f3235;
}
.bwp-page-404-content h1 {
	font-size: 29px;
	line-height: 1.2;
}
.bwp-page-404-content h2 {
	font-size: 23px;
	line-height: 1.3;
}
.bwp-page-404-content p {
	margin-bottom: 5px;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
	color: #4c4f53;
}
.bwp-page-404-content a {
	color: #4c4f53;
	text-decoration: underline !important;
}
.bwp-page-404-content a:hover,
.bwp-page-404-content a:focus {
	color: #6ca4db;
}


/**
 * 13.0 - Sidebar and Widgets
 * -------------------------------------------------------------
 */

/* sidebar container */
.bwp-sidebar-container {
	margin-top: 60px;
	padding-bottom: 20px;
}

/* widget container */
.bwp-widget,
.widget {
	overflow: hidden;
	word-wrap: break-word;
	margin-bottom: 40px;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
	color: #4c4f53;
}
.bwp-widget a,
.widget a {
	color: #4c4f53;
	text-decoration: none !important;
}
.bwp-widget a:hover,
.bwp-widget a:focus,
.widget a:hover,
.widget a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}
.widget {
	margin: 0;
}

/* widget title */
.bwp-widget .bwp-widget-title,
.widget .widgettitle {
	padding: 15px;
	margin-bottom: 20px;
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	color: #2f3235;
	background-color: #ffffff;
}
.bwp-widget .bwp-widget-title a,
.widget .widgettitle a {
	color: #2f3235;
	text-decoration: none !important;
}
.bwp-widget .bwp-widget-title a:hover,
.bwp-widget .bwp-widget-title a:focus,
.widget .widgettitle a:hover,
.widget .widgettitle a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}
.widget .widgettitle {
	box-shadow: inset 0 0 0 1px rgba(41,42,45,0.05);
}

/* widget area: list unstyled */
.bwp-sidebar-content .list-unstyled {
	list-style: none;
}

/* widget area: h1 - h6 */
.bwp-sidebar-content h1,
.bwp-sidebar-content h2,
.bwp-sidebar-content h3:not(.bwp-widget-title),
.bwp-sidebar-content h4,
.bwp-sidebar-content h5,
.bwp-sidebar-content h6 {
	margin: 0 0 15px;
}
.bwp-sidebar-content h1 {
	font-size: 27px;
}
.bwp-sidebar-content h2 {
	font-size: 23px;
}
.bwp-sidebar-content h3:not(.bwp-widget-title) {
	font-size: 20px;
	line-height: 1.3;
}
.bwp-sidebar-content h4 {
	font-size: 17px;
	line-height: 1.4;
}
.bwp-sidebar-content h5 {
	font-size: 15px;
	line-height: 1.7;
}
.bwp-sidebar-content h6 {
	font-size: 14px;
	text-transform: uppercase;
	line-height: 1.7;
}
.bwp-sidebar-content .wp-block-group h1,
.bwp-sidebar-content .wp-block-group h2,
.bwp-sidebar-content .wp-block-group h3:not(.bwp-widget-title),
.bwp-sidebar-content .wp-block-group h4,
.bwp-sidebar-content .wp-block-group h5,
.bwp-sidebar-content .wp-block-group h6,
.bwp-sidebar-content .widget_block .widget-title {
	margin: 0 0 20px;
	padding: 15px;
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	background-color: #ffffff;
}
.bwp-sidebar-content .widget_block .widget-title {
	margin-top: 25px;
}
.bwp-sidebar-content .widget_block:first-child .widget-title {
	margin-top: 0;
}

/* widget area: block */
.widget_block {
	margin: 0;
}
.bwp-sidebar-content .widget_block:last-child {
	margin-bottom: 25px;
}
.bwp-sidebar-content .widget_block > :first-child:not(.widget-title) {
	margin-top: 0 !important;
}
.bwp-sidebar-content.bwp-content .alignwide,
.bwp-sidebar-content.bwp-content .alignfull {
	margin-left: 0 !important;
	margin-right: 0 !important;
	width: auto;
	max-width: 100%;
}
.bwp-sidebar-content.bwp-content .wp-block-table.alignwide,
.bwp-sidebar-content.bwp-content .wp-block-table.alignfull {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.bwp-sidebar-content.bwp-content h1.alignwide,
.bwp-sidebar-content.bwp-content h2.alignwide,
.bwp-sidebar-content.bwp-content h3.alignwide,
.bwp-sidebar-content.bwp-content h4.alignwide,
.bwp-sidebar-content.bwp-content h5.alignwide,
.bwp-sidebar-content.bwp-content h6.alignwide,
.bwp-sidebar-content.bwp-content h1.alignfull,
.bwp-sidebar-content.bwp-content h2.alignfull,
.bwp-sidebar-content.bwp-content h3.alignfull,
.bwp-sidebar-content.bwp-content h4.alignfull,
.bwp-sidebar-content.bwp-content h5.alignfull,
.bwp-sidebar-content.bwp-content h6.alignfull,
.bwp-sidebar-content.bwp-content .wp-block-table.alignwide figcaption,
.bwp-sidebar-content.bwp-content .wp-block-table.alignfull figcaption,
.bwp-sidebar-content.bwp-content .wp-block-image.alignwide figcaption,
.bwp-sidebar-content.bwp-content .wp-block-image.alignfull figcaption,
.bwp-sidebar-content.bwp-content .wp-block-gallery.alignwide .blocks-gallery-caption,
.bwp-sidebar-content.bwp-content .wp-block-gallery.alignfull .blocks-gallery-caption,
.bwp-sidebar-content.bwp-content .wp-block-video.alignwide figcaption,
.bwp-sidebar-content.bwp-content .wp-block-video.alignfull figcaption,
.bwp-sidebar-content.bwp-content .wp-block-file.alignwide,
.bwp-sidebar-content.bwp-content .wp-block-file.alignfull,
.bwp-sidebar-content.bwp-content .wp-block-buttons.alignwide,
.bwp-sidebar-content.bwp-content .wp-block-buttons.alignfull,
.bwp-sidebar-content.bwp-content .wp-block-columns.alignwide:not(.has-background),
.bwp-sidebar-content.bwp-content .wp-block-columns.alignfull:not(.has-background),
.bwp-sidebar-content.bwp-content .wp-block-archives-list.alignwide,
.bwp-sidebar-content.bwp-content .wp-block-archives-dropdown.alignwide,
.bwp-sidebar-content.bwp-content .wp-block-archives-list.alignfull,
.bwp-sidebar-content.bwp-content .wp-block-archives-dropdown.alignfull,
.bwp-sidebar-content.bwp-content .wp-block-calendar.alignwide,
.bwp-sidebar-content.bwp-content .wp-block-calendar.alignfull,
.bwp-sidebar-content.bwp-content .wp-block-categories-list.alignwide,
.bwp-sidebar-content.bwp-content .wp-block-categories-dropdown.alignwide,
.bwp-sidebar-content.bwp-content .wp-block-categories-list.alignfull,
.bwp-sidebar-content.bwp-content .wp-block-categories-dropdown.alignfull,
.bwp-sidebar-content.bwp-content .wp-block-latest-comments.alignwide,
.bwp-sidebar-content.bwp-content .wp-block-latest-comments.alignfull,
.bwp-sidebar-content.bwp-content ul.wp-block-latest-posts.alignwide,
.bwp-sidebar-content.bwp-content ul.wp-block-latest-posts.alignfull,
.bwp-sidebar-content.bwp-content .wp-block-rss.alignwide,
.bwp-sidebar-content.bwp-content .wp-block-rss.alignfull,
.bwp-sidebar-content.bwp-content .wp-block-tag-cloud.alignwide,
.bwp-sidebar-content.bwp-content .wp-block-tag-cloud.alignfull,
.bwp-sidebar-content.bwp-content .wp-block-embed.alignwide figcaption,
.bwp-sidebar-content.bwp-content .wp-block-embed.alignfull figcaption,
.bwp-sidebar-content.bwp-content .wp-block-details.alignwide,
.bwp-sidebar-content.bwp-content .wp-block-details.alignfull {
	padding-right: 0;
	padding-left: 0;
}

/* widget area: group block */
.bwp-sidebar-content .wp-block-group {
	margin: 0 0 40px;
}
.bwp-sidebar-content .widget_block:last-child .wp-block-group {
	margin-bottom: 15px;
}
.bwp-sidebar-content .wp-block-group .wp-block-group__inner-container > :last-child:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
	margin-bottom: 0;
}

/* widget area: widget group (WordPress 5.9+) */
.bwp-sidebar-content .wp-widget-group__inner-blocks {
	margin: 0 0 40px;
}
.bwp-sidebar-content .widget_block:last-child .wp-widget-group__inner-blocks {
	margin-bottom: 15px;
}
.bwp-sidebar-content .wp-widget-group__inner-blocks > :last-child {
	margin-bottom: 0;
}

/* widget area: separator */
.bwp-sidebar-content .widget_block .wp-block-separator {
	margin-top: 0 !important;
	margin-bottom: 15px;
}


/**
 * 13.1 - Widget: Archives
 * -------------------------------------------------------------
 */

.widget_archive ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget_archive ul li {
	color: #989ea6; /* counter */
	margin-bottom: 10px;
}
.widget_archive ul li:last-child {
	margin-bottom: 0;
}
.widget_archive ul li a {
	margin-right: 4px;
}
.widget_archive select {
	margin-top: 5px;
	padding: 8px 20px 8px 10px;
	max-width: 100%;
	width: 100%;
	color: #4c4f53;
	background: #ffffff;
	border: 1px solid #ffffff;
}
.widget_archive select:active,
.widget_archive select:focus {
	outline: none;
}

/* block: archives */
.widget_block.widget_archive {
	margin-bottom: 25px;
}
.bwp-sidebar-content .wp-block-archives-list li::before {
	display: none;
}
.bwp-sidebar-content .wp-block-archives-dropdown select {
	margin-top: 0;
}


/**
 * 13.2 - Widget: Pages
 * -------------------------------------------------------------
 */

.widget_pages ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget_pages ul li {
	color: #989ea6;
	margin-bottom: 10px;
}
.widget_pages ul li:last-child {
	margin-bottom: 0;
}
.widget_pages ul ul {
	margin: 10px 0 0;
	padding: 0 0 1px 10px;
}
.widget_pages ul ul li::before {
	content: '- ';
	color: #4c4f53;
}

/* block: page list */
.widget_block > .wp-block-page-list {
	margin-bottom: 40px;
}
.bwp-sidebar-content .widget_block:last-child > .wp-block-page-list {
	margin-bottom: 15px;
}
.bwp-sidebar-content .wp-block-page-list li::before {
	content: '';
	margin-right: 0;
}
.bwp-sidebar-content .wp-block-page-list ul li::before {
	content: '-';
	margin-right: 5px;
}


/**
 * 13.3 - Widget: Categories
 * -------------------------------------------------------------
 */

.widget_categories ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget_categories ul li {
	color: #989ea6; /* counter */
	margin-bottom: 10px;
}
.widget_categories ul li:last-child {
	margin-bottom: 0;
}
.widget_categories ul li a {
	margin-right: 4px;
}
.widget_categories ul ul {
	margin: 10px 0 0;
	padding: 0 0 1px 10px;
}
.widget_categories ul ul li::before {
	content: '- ';
	color: #4c4f53;
}
.widget_categories:not(.widget_block) select {
	margin-top: 5px;
	padding: 8px 20px 8px 10px;
	max-width: 100%;
	width: 100%;
	color: #4c4f53;
	background: #ffffff;
	border: 1px solid #ffffff;
}
.widget_categories select:active,
.widget_categories select:focus {
	outline: none;
}

/* block: categories */
.widget_block.widget_categories {
	margin-bottom: 25px;
}
.bwp-sidebar-content .wp-block-categories-list li::before {
	content: '';
	margin-right: 0;
}
.bwp-sidebar-content .wp-block-categories-list ul li::before {
	content: '-';
	margin-right: 5px;
}
.bwp-sidebar-content .wp-block-categories select {
	margin-top: 5px;
}


/**
 * 13.4 - Widget: Recent Posts
 * -------------------------------------------------------------
 */

.widget_recent_entries ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget_recent_entries ul li {
	margin-bottom: 10px;
}
.widget_recent_entries ul li:last-child {
	margin-bottom: 0;
}
.widget_recent_entries ul li .post-date {
	display: block;
	font-size: 14px;
	color: #989ea6;
}

/* block with latest posts */
.widget_block.widget_recent_entries {
	margin-bottom: 25px;
}
.bwp-sidebar-content ul.wp-block-latest-posts,
.bwp-sidebar-content ul.wp-block-latest-posts.is-grid {
	margin-top: 0;
	margin-bottom: 15px;
}
.bwp-sidebar-content ul.wp-block-latest-posts > li {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom-color: #e6e7e8;
}

/* block with latest posts: post title */
.bwp-sidebar-content ul.wp-block-latest-posts > li > a {
	font-family: 'Lora', serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	color: #4c4f53;
}
.bwp-sidebar-content ul.wp-block-latest-posts > li > a:hover,
.bwp-sidebar-content ul.wp-block-latest-posts > li > a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}

/* block with latest posts: post excerpt */
.bwp-sidebar-content .wp-block-latest-posts .wp-block-latest-posts__post-excerpt {
	margin: 10px 0 0;
	font-size: 14px;
}

/* block with latest posts: featured image */
.bwp-sidebar-content .wp-block-latest-posts .wp-block-latest-posts__featured-image {
	margin-bottom: 12px;
}
.bwp-sidebar-content .wp-block-latest-posts .wp-block-latest-posts__featured-image.alignleft {
	margin: 0 20px 7px 0;
}
.bwp-sidebar-content .wp-block-latest-posts .wp-block-latest-posts__featured-image.alignright {
	margin: 0 0 7px 20px;
}

/* block with latest posts: grid style */
.bwp-sidebar-content .wp-block-latest-posts.is-grid > li {
	margin: 0 0 10px;
	width: 100% !important;
}
.bwp-sidebar-content .wp-block-latest-posts.is-grid > li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.bwp-sidebar-content .wp-block-latest-posts.is-grid.columns-4 > li > a,
.bwp-sidebar-content .wp-block-latest-posts.is-grid.columns-5 > li > a,
.bwp-sidebar-content .wp-block-latest-posts.is-grid.columns-6 > li > a {
	font-size: 15px;
	line-height: 1.7;
}


/**
 * 13.5 - Widget: Tag Cloud
 * -------------------------------------------------------------
 */

.widget_tag_cloud .tagcloud {
	overflow: hidden;
	margin-right: -4px;
}
.widget_tag_cloud a {
	margin-right: 4px;
}

/* block: tag cloud */
.widget_block.widget_tag_cloud {
	margin-bottom: 25px;
}
.bwp-sidebar-content .wp-block-tag-cloud {
	margin-top: 0;
	margin-bottom: 15px;
}


/**
 * 13.6 - Widget: Calendar
 * -------------------------------------------------------------
 */

.widget_calendar .wp-calendar-table {
	margin: 0;
	max-width: 100%;
	width: 100%;
	line-height: 1.2;
}

/* caption */
.widget_calendar .wp-calendar-table caption {
	padding: 0 0 15px;
	font-weight: 700;
	line-height: 1.7;
	color: #4c4f53;
}

/* thead */
.widget_calendar .wp-calendar-table thead th {
	padding: 0 0 10px;
	font-weight: 700;
	border: none;
}

/* tbody */
.widget_calendar .wp-calendar-table tbody td {
	padding: 5px 0 5px 2px;
	border: none;
}
.widget_calendar .wp-calendar-table tbody a {
	text-decoration: underline !important;
}
.widget_calendar .wp-calendar-table tbody #today {
	font-weight: 700;
}

/* prev/next links: new styles (WordPress 5.4+) */
.widget_calendar .wp-calendar-nav {
	margin: 10px 0 0;
	font-weight: 700;
}
.widget_calendar .wp-calendar-nav::after {
	content: '';
	display: table;
	clear: both;
}
.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev {
	float: left;
	text-align: left;
}
.widget_calendar .wp-calendar-nav .wp-calendar-nav-next {
	float: right;
	text-align: right;
}

/* prev/next links: old styles */
.widget_calendar .wp-calendar-table #next {
	text-align: right;
}
.widget_calendar .wp-calendar-table #prev,
.widget_calendar .wp-calendar-table #next {
	margin: 10px 0 0;
	font-weight: 700;
}

/* block: calendar */
.widget_block.widget_calendar {
	margin-bottom: 25px;
}


/**
 * 13.7 - Widget: Navigation Menu
 * -------------------------------------------------------------
 */

.widget_nav_menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget_nav_menu ul li {
	margin-bottom: 10px;
}
.widget_nav_menu ul li:last-child {
	margin-bottom: 0;
}
.widget_nav_menu ul li i {
	margin-right: 8px;
}
.widget_nav_menu ul ul {
	margin: 10px 0 0;
	padding: 0 0 1px 10px;
}
.widget_nav_menu ul ul li::before {
	content: '- ';
	color: #4c4f53;
}


/**
 * 13.8 - Widget: Meta
 * -------------------------------------------------------------
 */

.widget_meta ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget_meta ul li {
	margin-bottom: 10px;
}
.widget_meta ul li:last-child {
	margin-bottom: 0;
}


/**
 * 13.9 - Widget: Recent Comments
 * -------------------------------------------------------------
 */

.widget_recent_comments ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget_recent_comments ul li {
	margin-bottom: 10px;
}
.widget_recent_comments ul li:last-child {
	margin-bottom: 0;
}
.widget_recent_comments ul li .comment-author-link a,
.widget_recent_comments ul li a {
	text-decoration: underline !important;
}

/* block with recent comments */
.widget_block.widget_recent_comments {
	margin-bottom: 25px;
}
.bwp-sidebar-content .wp-block-latest-comments,
.bwp-sidebar-content .wp-block-latest-comments.aligncenter {
	margin-top: 0;
	margin-bottom: 15px;
}
.bwp-sidebar-content .wp-block-latest-comments li {
	margin-bottom: 15px;
	padding-bottom: 0;
	border-bottom: none;
}
.bwp-sidebar-content .wp-block-latest-comments.has-dates li,
.bwp-sidebar-content .wp-block-latest-comments.has-excerpts li,
.bwp-sidebar-content .wp-block-latest-comments.has-avatars li {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e6e7e8;
}
.bwp-sidebar-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt,
.bwp-sidebar-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
	font-size: 14px;
}
.bwp-sidebar-content .wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment-excerpt {
	margin-top: 10px;
}


/**
 * 13.10 - Widgets: Text and Custom HTML
 * -------------------------------------------------------------
 */

.bwp-widget.widget_text:not(.widget_block) {
	margin-bottom: 25px;
}
.bwp-widget.widget_text.widget_custom_html {
	margin-bottom: 40px;
}
.textwidget > :first-child {
	margin-top: 0 !important;
}

/* Contact Form 7: additional styles */
/* p */
.bwp-sidebar-content .wpcf7 p {
	margin-bottom: 10px;
}
/* label */
.bwp-sidebar-content label {
	font-size: 14px;
}
.bwp-sidebar-content .wpcf7 span[class*="quiz"] label {
	padding-bottom: 0;
}
/* input, textarea */
.bwp-sidebar-content .wpcf7 input[type="text"],
.bwp-sidebar-content .wpcf7 input[type="email"],
.bwp-sidebar-content .wpcf7 input[type="url"],
.bwp-sidebar-content .wpcf7 input[type="tel"],
.bwp-sidebar-content .wpcf7 input[type="number"],
.bwp-sidebar-content .wpcf7 input[type="date"],
.bwp-sidebar-content .wpcf7 textarea,
.bwp-sidebar-content .wpcf7 select {
	height: 38px;
	border: 1px solid #ffffff;
	border-bottom-color: #e3e5e6;
	outline: none !important;
}
.bwp-sidebar-content .wpcf7 textarea,
.bwp-sidebar-content .wpcf7 select[multiple] {
	height: 90px;
}
.bwp-sidebar-content .wpcf7 label input,
.bwp-sidebar-content .wpcf7 label textarea {
	margin-top: 5px;
	font-size: 15px;
	font-weight: 400;
}
.bwp-sidebar-content .wpcf7 input[type="text"]:hover,
.bwp-sidebar-content .wpcf7 input[type="email"]:hover,
.bwp-sidebar-content .wpcf7 input[type="url"]:hover,
.bwp-sidebar-content .wpcf7 input[type="tel"]:hover,
.bwp-sidebar-content .wpcf7 input[type="number"]:hover,
.bwp-sidebar-content .wpcf7 input[type="date"]:hover,
.bwp-sidebar-content .wpcf7 textarea:hover,
.bwp-sidebar-content .wpcf7 select:hover,
.bwp-sidebar-content .wpcf7 input[type="text"]:focus,
.bwp-sidebar-content .wpcf7 input[type="email"]:focus,
.bwp-sidebar-content .wpcf7 input[type="url"]:focus,
.bwp-sidebar-content .wpcf7 input[type="tel"]:focus,
.bwp-sidebar-content .wpcf7 input[type="number"]:focus,
.bwp-sidebar-content .wpcf7 input[type="date"]:focus,
.bwp-sidebar-content .wpcf7 textarea:focus,
.bwp-sidebar-content .wpcf7 select:focus {
	border-color: #ffffff;
	border-bottom-color: #6ca4db;
}
.bwp-sidebar-content .wpcf7 input[type="file"] {
	padding: 9px;
	border: 1px dashed #e3e5e6;
	outline: none !important;
}
.bwp-sidebar-content .wpcf7 input[type="file"]:hover,
.bwp-sidebar-content .wpcf7 input[type="file"]:focus {
	border-color: #6ca4db;
}
/* submit */
.bwp-sidebar-content .wpcf7 input[type="submit"] {
	margin: 10px 0 5px;
	padding: 0 30px;
	height: 42px;
	line-height: 42px;
	font-size: 14px;
	font-weight: 700;
}
/* checkboxes, radio buttons */
.bwp-sidebar-content .wpcf7 .wpcf7-list-item {
	margin: 0 20px 0 0;
}
.bwp-sidebar-content .wpcf7 .wpcf7-list-item:last-child {
	margin-right: 0;
}
.bwp-sidebar-content .wpcf7 .wpcf7-list-item label {
	font-size: 15px;
	font-weight: 400;
}
.bwp-sidebar-content .wpcf7 input[type="checkbox"],
.bwp-sidebar-content .wpcf7 input[type="radio"] {
	border-width: 1px;
}
.bwp-sidebar-content .wpcf7 .wpcf7-list-item input[type="checkbox"]:first-child,
.bwp-sidebar-content .wpcf7 .wpcf7-list-item input[type="radio"]:first-child {
	margin-right: 5px;
}
.bwp-sidebar-content .wpcf7 .wpcf7-list-item input[type="checkbox"]:last-child,
.bwp-sidebar-content .wpcf7 .wpcf7-list-item input[type="radio"]:last-child {
	margin-right: 0;
	margin-left: 5px;
}
.bwp-sidebar-content .wpcf7 .wpcf7-list-item label input[type="checkbox"],
.bwp-sidebar-content .wpcf7 .wpcf7-list-item label input[type="radio"] {
	margin-top: 0;
}
.bwp-sidebar-content .wpcf7 input[type="checkbox"]:checked::before,
.bwp-sidebar-content .wpcf7 input[type="radio"]:checked::before {
	line-height: 14px;
}
/* action styles */
.bwp-sidebar-content .wpcf7 .ajax-loader {
	margin: 0 0 0 15px;
	top: 7px;
	background-color: #ffffff;
	opacity: 1;
}
.bwp-sidebar-content .wpcf7 .ajax-loader::before {
	background-color: #1f2123;
}
.bwp-sidebar-content .wpcf7 .wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 12px;
	font-weight: 700;
	color: #f46180;
}
.bwp-sidebar-content .wpcf7 .wpcf7-response-output {
	margin: 15px 0;
	padding: 10px 15px;
	text-align: left;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.6;
	border: none !important;
	background-color: #6ca4db;
	color: #ffffff;
}
.bwp-sidebar-content .wpcf7 .wpcf7-mail-sent-ok,
.bwp-sidebar-content .wpcf7 .wpcf7-mail-sent-ng,
.bwp-sidebar-content .wpcf7 .wpcf7-aborted,
.bwp-sidebar-content .wpcf7 .wpcf7-spam-blocked,
.bwp-sidebar-content .wpcf7 .wpcf7-validation-errors,
.bwp-sidebar-content .wpcf7 .wpcf7-acceptance-missing {
	border: none !important;
}
.bwp-sidebar-content .wpcf7 .wpcf7-mail-sent-ok,
.bwp-sidebar-content .wpcf7 form.sent .wpcf7-response-output {
	background-color: #59d36c;
}
.bwp-sidebar-content .wpcf7 .wpcf7-mail-sent-ng,
.bwp-sidebar-content .wpcf7 .wpcf7-aborted,
.bwp-sidebar-content .wpcf7 form.failed .wpcf7-response-output,
.bwp-sidebar-content .wpcf7 form.aborted .wpcf7-response-output {
	background-color: #f46180;
}
.bwp-sidebar-content .wpcf7 .wpcf7-spam-blocked,
.bwp-sidebar-content .wpcf7 form.spam .wpcf7-response-output {
	background-color: #e0a73e;
}
.bwp-sidebar-content .wpcf7 .wpcf7-validation-errors,
.bwp-sidebar-content .wpcf7 .wpcf7-acceptance-missing,
.bwp-sidebar-content .wpcf7 form.invalid .wpcf7-response-output,
.bwp-sidebar-content .wpcf7 form.unaccepted .wpcf7-response-output {
	background-color: #f46180;
}


/**
 * 13.11 - Widget: Search
 * -------------------------------------------------------------
 */

/* search form */
.widget_search #searchform .bwp-search-field {
	font-family: 'Lora', serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	color: #4c4f53;
	background: transparent;
	border-bottom: 2px solid #e3e5e6;
}

/* search form: placeholder */
/* Chrome/Opera/Safari */
.widget_search #searchform .bwp-search-field::-webkit-input-placeholder {
	color: #4c4f53;
	opacity: 1;
}
/* Firefox 18- */
.widget_search #searchform .bwp-search-field:-moz-placeholder {
	color: #4c4f53;
	opacity: 1;
}
/* Firefox 19+ */
.widget_search #searchform .bwp-search-field::-moz-placeholder {
	color: #4c4f53;
	opacity: 1;
}
/* IE 10+ */
.widget_search #searchform .bwp-search-field:-ms-input-placeholder {
	color: #4c4f53;
	opacity: 1;
}

/* search form: submit button */
.widget_search #searchform .bwp-search-submit {
	color: #4c4f53;
	background: transparent;
	border-bottom: 2px solid #e3e5e6;
}
.widget_search #searchform .bwp-search-submit:hover {
	color: #6ca4db;
}

/* block: search */
.widget_block.widget_search {
	margin-bottom: 25px;
}


/**
 * 13.12 - Widget: RSS
 * -------------------------------------------------------------
 */

.rsswidget img {
	display: none;
}
.widget_rss .bwp-widget-title .rsswidget:first-child::before,
.widget_rss .widgettitle .rsswidget:first-child::before {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900; /* solid style */
	content: '\f09e'; /* icon: rss */
	margin-right: 8px;
	font-size: 80%;
}
.widget_rss ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget_rss ul li {
	margin-bottom: 10px;
}
.widget_rss ul li:last-child {
	margin-bottom: 0;
}
.widget_rss ul li .rss-date {
	display: block;
	font-size: 14px;
	color: #989ea6;
}
.widget_rss ul li .rssSummary {
	margin-bottom: 2px;
	font-size: 14px;
}
.widget_rss ul li cite {
	display: block;
	margin: 0;
	text-align: left;
	font-style: normal;
	font-size: 14px;
	color: #989ea6;
}

/* block with rss */
.widget_block.widget_rss {
	margin-bottom: 25px;
}
.bwp-sidebar-content ul.wp-block-rss {
	margin-top: 0;
	margin-bottom: 15px;
}
.bwp-sidebar-content .wp-block-rss > li {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom-color: #e6e7e8;
}
.bwp-sidebar-content .wp-block-rss li .wp-block-rss__item-title a {
	font-weight: 400;
}

/* block with rss: grid style */
.bwp-sidebar-content ul.wp-block-rss.is-grid {
	margin-bottom: 15px;
}
.bwp-sidebar-content .wp-block-rss.is-grid > li {
	margin: 0 0 10px;
	padding: 0 0 10px;
	width: 100% !important;
}
.bwp-sidebar-content .wp-block-rss.is-grid > li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}


/**
 * 13.13 - Widget: Audio
 * -------------------------------------------------------------
 */

.bwp-widget.widget_media_audio .bwp-widget-title,
.widget.widget_media_audio .widgettitle {
	margin-bottom: 25px;
}
.bwp-widget.widget_media_audio .wp-audio-shortcode,
.widget.widget_media_audio .wp-audio-shortcode {
	margin-bottom: 5px;
}


/**
 * 13.14 - Widget: Image
 * -------------------------------------------------------------
 */

.bwp-widget.widget_media_image .bwp-widget-title,
.widget.widget_media_image .widgettitle {
	margin-bottom: 25px;
}
.widget_media_image .wp-caption {
	margin-bottom: 0;
}


/**
 * 13.15 - Widget: Video
 * -------------------------------------------------------------
 */

.bwp-widget.widget_media_video .bwp-widget-title,
.widget.widget_media_video .widgettitle {
	margin-bottom: 25px;
}
.bwp-widget.widget_media_video .wp-video,
.widget.widget_media_video .wp-video {
	margin-bottom: 5px;
}


/**
 * 13.16 - Widget: Gallery
 * -------------------------------------------------------------
 */

.bwp-widget.widget_media_gallery:not(.widget_block) {
	margin-bottom: 25px;
}
.widget_media_gallery .bwp-widget-title,
.widget_media_gallery .widgettitle {
	margin-bottom: 25px;
}
.widget_media_gallery .gallery:not(.gallery-columns-1) {
	margin: 0 -5px;
}
.widget_media_gallery .gallery.gallery-columns-1 {
	margin-bottom: -10px;
}
.widget_media_gallery .gallery:not(.gallery-columns-1) .gallery-item {
	margin: 0 0 10px;
	padding: 0 5px;
}
.widget_media_gallery .gallery:not(.gallery-columns-1) .gallery-item .gallery-caption {
	padding: 5px 5px 5px 0;
	line-height: 1.6;
}
.widget_media_gallery .gallery.gallery-columns-4 .gallery-item .gallery-caption,
.widget_media_gallery .gallery.gallery-columns-5 .gallery-item .gallery-caption,
.widget_media_gallery .gallery.gallery-columns-6 .gallery-item .gallery-caption,
.widget_media_gallery .gallery.gallery-columns-7 .gallery-item .gallery-caption,
.widget_media_gallery .gallery.gallery-columns-8 .gallery-item .gallery-caption,
.widget_media_gallery .gallery.gallery-columns-9 .gallery-item .gallery-caption {
	display: none;
}

/* block: gallery */
.bwp-sidebar-content .wp-block-gallery .blocks-gallery-grid figcaption,
.bwp-sidebar-content .wp-block-gallery figure.wp-block-image figcaption {
	padding: 10px 10px 8px;
	font-size: 12px;
	line-height: 1.4;
}
.bwp-sidebar-content .wp-block-gallery.columns-3 .blocks-gallery-grid figcaption,
.bwp-sidebar-content .wp-block-gallery.columns-4 .blocks-gallery-grid figcaption,
.bwp-sidebar-content .wp-block-gallery.columns-3 figure.wp-block-image figcaption,
.bwp-sidebar-content .wp-block-gallery.columns-4 figure.wp-block-image figcaption {
	display: none;
}


/**
 * 13.17 - Widget: Social icons
 * -------------------------------------------------------------
 */

.bwp-sidebar-content .wp-block-social-links {
	margin: 0 0 10px;
}
.widget_block > .wp-block-social-links {
	margin: 0 0 35px;
}
.bwp-sidebar-content .widget_block:last-child > .wp-block-social-links {
	margin-bottom: 10px;
}


/**
 * 13.18 - Widget: Login - Out
 * -------------------------------------------------------------
 */

.bwp-sidebar-content .wp-block-loginout form {
	border: none;
	background-color: #ffffff;
}
.bwp-sidebar-content .wp-block-loginout form .login-submit input[type="submit"] {
	padding: 0 30px;
	height: 42px;
	line-height: 42px;
	font-size: 14px;
	font-weight: 700;
}


/**
 * 13.19 - Nimbo theme: Several new widgets
 *
 * - Nimbo: List of posts
 * - Nimbo: Slider with posts
 * - Nimbo: Random posts
 * - Nimbo: Recent posts
 * - Nimbo: Popular posts
 * -------------------------------------------------------------
 */

/* bg overlay */
.widget_bwp_dark_bg_overlay,
.widget_bwp_bg_overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background-color: #1f2123;

	-webkit-transition: opacity 0.2s ease;
	-moz-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}
.widget_bwp_dark_bg_overlay {
	opacity: 0.15;
}
.widget_bwp_bg_overlay {
	opacity: 0;
}

/* list with posts (ul, li) */
.widget_bwp_posts_list > ul,
.widget_bwp_random_posts > ul,
.widget_bwp_recent_posts > ul,
.widget_bwp_popular_posts > ul {
	list-style: none;
	margin: 0;
	padding: 5px 0 0;
}
.widget_bwp_posts_list > ul > li,
.widget_bwp_random_posts > ul > li,
.widget_bwp_recent_posts > ul > li,
.widget_bwp_popular_posts > ul > li {
	margin-bottom: 20px;
}
.widget_bwp_posts_list > ul > li:last-child,
.widget_bwp_random_posts > ul > li:last-child,
.widget_bwp_recent_posts > ul > li:last-child,
.widget_bwp_popular_posts > ul > li:last-child {
	margin-bottom: 0;
}
.widget_bwp_popular_posts > ul > li {
	position: relative;
}

/* thumbnail image */
.widget_bwp_thumbnail {
	position: relative;
	overflow: hidden;
	float: left;
	margin: 0 15px 0 0;
}
.widget_bwp_thumbnail img {
	display: block;
	width: 100px;
	height: 100px;
}
.widget_bwp_thumbnail:hover .widget_bwp_bg_overlay {
	opacity: 0.2;
}

/* content (title and metadata) */
.widget_bwp_content {
	height: 100px;
	display: table-cell;
	vertical-align: middle;
}
.widget_bwp_content.widget_bwp_no_thumbnail {
	height: auto;
}
.widget_bwp_popular_posts .widget_bwp_content.widget_bwp_no_thumbnail {
	padding-left: 35px;
}
.bwp-widget.widget_bwp_popular_posts,
.widget.widget_bwp_popular_posts {
	overflow: visible;
}

/* popular post number */
.widget_bwp_popular_post_num {
	position: absolute;
	top: -10px;
	left: -10px;
	z-index: 3;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 15px;
	background-color: #ffffff;
	color: #4c4f53;
	font-size: 13px;
	font-style: normal;
	font-weight: 700;

	-webkit-transition: box-shadow 0.2s ease;
	-moz-transition: box-shadow 0.2s ease;
	-o-transition: box-shadow 0.2s ease;
	transition: box-shadow 0.2s ease;
}
.widget_bwp_popular_posts > ul > li:hover .widget_bwp_popular_post_num {
	box-shadow: 0 6px 18px -2px rgba(14,17,20,0.35);
}
.widget_bwp_popular_post_num.widget_bwp_no_thumbnail {
	top: -4px;
}

/* no posts found... */
.widget_bwp_no_posts {
	margin-bottom: 0;
}

/* content: post title */
.widget_bwp_content h4,
.widget_bwp_posts_slider_item figcaption h4,
.widget_bwp_posts_list_item figcaption h4 {
	margin-bottom: 0;
	font-size: 17px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	color: #4c4f53;
}

/* metadata */
.widget_bwp_meta {
	list-style: none;
	margin: 0 -10px 0 0 !important;
	padding: 4px 0 0 !important;
}
.widget_bwp_meta li {
	float: left;
	margin-right: 10px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.6;
	color: #989ea6;
}
.widget_bwp_meta li a {
	color: #989ea6;
}
.widget_bwp_meta li a:hover,
.widget_bwp_meta li a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}
.widget_bwp_meta .widget_bwp_comments_count {
	text-transform: none;
}
.widget_bwp_meta .widget_bwp_likes_count i {
	margin-right: 4px;
	margin-left: 5px;
	font-size: 88%;
}

/* widgets: posts slider and posts list */
/* posts slider */
.widget-bwp-posts-slider-wrap,
.widgetbwppostssliderwrap {
	padding-top: 5px;
}

/* widget item */
.widget_bwp_posts_slider_item,
.widget_bwp_posts_list_item {
	position: relative;
	overflow: hidden;
}
.widget_bwp_posts_slider_item img,
.widget_bwp_posts_list_item img {
	display: block;
	max-width: 100%;
	width: 100%;
	height: auto;
}

/* widget item: bg overlay */
.widget_bwp_posts_slider_item:hover .widget_bwp_dark_bg_overlay,
.widget_bwp_posts_list_item:hover .widget_bwp_dark_bg_overlay {
	opacity: 0.35;
}

/* widget item: caption (title and metadata) */
.widget_bwp_posts_slider_item figcaption,
.widget_bwp_posts_list_item figcaption {
	position: absolute;
	left: 0;
	bottom: 20px;
	z-index: 3;
	width: 100%;
	max-width: 70%;
	padding: 15px;
	background-color: #ffffff;
	box-shadow: 6px 6px 18px -2px rgba(14,17,20,0.35);

	-webkit-transition: bottom 0.2s ease;
	-moz-transition: bottom 0.2s ease;
	-o-transition: bottom 0.2s ease;
	transition: bottom 0.2s ease;
}
.widget_bwp_posts_slider_item:hover figcaption,
.widget_bwp_posts_list_item:hover figcaption {
	bottom: 30px;
}
.site-content .widget_bwp_posts_slider_item figcaption,
.site-content .widget_bwp_posts_list_item figcaption {
	max-width: 70%;
}

/* slider widget: navigation */
.widget_bwp_posts_slider .owl-theme .owl-nav,
.widget_bwp_posts_slider .owltheme .owlnav {
	margin-top: 15px;
}
.widget_bwp_posts_slider .owl-theme .owl-nav button,
.widget_bwp_posts_slider .owltheme .owlnav button {
	display: inline-block;
	margin: 0 1px;
	padding: 0;
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-family: sans-serif;
	font-size: 14px;
	background: #1f2123;
	color: #ffffff;
	border-radius: 0;
	outline: none;
}
.widget_bwp_posts_slider .owl-theme .owl-nav button:hover,
.widget_bwp_posts_slider .owltheme .owlnav button:hover {
	color: #ffffff;
	background: #6ca4db;
}
.widget_bwp_posts_slider .owl-theme .owl-nav button:active i,
.widget_bwp_posts_slider .owltheme .owlnav button:active i {
	position: relative;
	top: 1px;
}


/**
 * 13.20 - Footer widgets
 * -------------------------------------------------------------
 */

.bwp-footer-widgets-container {
	position: relative;
	padding: 60px 0 20px;
	border-top: 1px solid #e3e5e6;
}
.bwp-footer-widgets-container::before {
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	z-index: 10;
	display: block;
	width: 40px;
	height: 2px;
	background-color: #2f3235;
}


/**
 * 14.0 - Footer
 * -------------------------------------------------------------
 */

.bwp-footer-container {
	position: relative;
	padding: 55px 0;
	border-top: 1px solid #e3e5e6;
}
.bwp-footer-container::before {
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	z-index: 10;
	display: block;
	width: 40px;
	height: 2px;
	background-color: #2f3235;
}

/* footer text */
.bwp-footer-text {
	float: left;
	width: 50%;
	text-align: left;
	padding-right: 15px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
	color: #4c4f53;
}
.bwp-footer-text a {
	color: #4c4f53;
	text-decoration: underline !important;
}
.bwp-footer-text a:hover,
.bwp-footer-text a:focus {
	color: #6ca4db;
}
.bwp-footer-text p {
	margin: 0 0 15px;
}
.bwp-footer-text p:last-child {
	margin: 0;
}

/* footer social links */
.bwp-footer-social-links {
	float: right;
	width: 50%;
	text-align: right;
	margin: -5px -8px -5px 0;
	padding-left: 15px;
}
.bwp-footer-social-links a {
	display: inline-block;
	padding: 10px 8px;
	font-family: sans-serif;
	font-size: 14px;
	color: #4c4f53;
}
.bwp-footer-social-links a:hover,
.bwp-footer-social-links a:focus {
	color: #6ca4db;
}

/* footer menu */
.bwp-footer-menu-wrap {
	float: right;
	width: 50%;
	padding-left: 15px;
}
.bwp-footer-menu {
	float: right;
	margin: 0 -10px 0 0;
}
.bwp-footer-menu li {
	float: left;
}
.bwp-footer-menu li a {
	display: inline-block;
	padding: 0 10px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.7;
	color: #4c4f53;
}
.bwp-footer-menu li a:hover,
.bwp-footer-menu li a:focus {
	color: #6ca4db;
	text-decoration: underline !important;
}
.bwp-footer-menu li ul {
	display: none;
}
.bwp-footer-menu li i {
	margin-right: 8px;
}


/**
 * 15.0 - "Cookies information" window
 * -------------------------------------------------------------
 */

.bwp-cookies-info-container {
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 1041;
	width: 280px;
	padding: 25px 30px;
	word-wrap: break-word;
	background-color: #ffffff;
	box-shadow: 0 14px 28px -4px rgba(14,17,20,0.15);

	-webkit-transition: bottom 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
	-moz-transition: bottom 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
	-o-transition: bottom 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
	transition: bottom 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}
.bwp-cookies-info-container.bwp-hidden {
	bottom: 20px;
	opacity: 0;
	visibility: hidden;
}

/* close icon (for mobile devices) */
.bwp-cookies-close-icon {
	display: none;
	cursor: pointer;
	position: absolute;
	top: -15px;
	right: -15px;
	z-index: 1041;
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	font-family: sans-serif;
	font-size: 15px;
	color: #4c4f53;
	background-color: #ffffff;
	box-shadow: 0 14px 28px -4px rgba(14,17,20,0.15);
	border-radius: 50%;

	-webkit-transition: color 0.2s ease, background-color 0.2s ease;
	-moz-transition: color 0.2s ease, background-color 0.2s ease;
	-o-transition: color 0.2s ease, background-color 0.2s ease;
	transition: color 0.2s ease, background-color 0.2s ease;
}
.bwp-cookies-close-icon:hover {
	color: #ffffff;
	background-color: #6ca4db;
}
.bwp-cookies-close-icon:active i {
	position: relative;
	top: 1px;
}

/* left icon (info) */
.bwp-cookies-info-icon {
	float: left;
	padding-top: 5px;
	font-family: sans-serif;
	font-size: 27px;
	color: #4c4f53;
	opacity: 0.2;
}

/* window content */
.bwp-cookies-info-content {
	padding-left: 30px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.6;
	color: #4c4f53;
}
.bwp-cookies-info-content p {
	margin-bottom: 15px;
}
.bwp-cookies-info-content p:last-child {
	margin-bottom: 0;
}
.bwp-cookies-info-content a {
	color: #4c4f53;
	text-decoration: underline !important;
}
.bwp-cookies-info-content a:hover,
.bwp-cookies-info-content a:focus {
	color: #6ca4db;
}

/* "accept cookies" button */
.bwp-accept-cookies-btn {
	border: none;
	outline: none;
	display: inline-block;
	margin: 20px 0 5px 30px;
	padding: 0 20px;
	height: 40px;
	line-height: 40px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	color: #ffffff;
	background: #1f2123;
}
.bwp-accept-cookies-btn:hover,
.bwp-accept-cookies-btn:focus {
	color: #ffffff;
}
.bwp-accept-cookies-btn:hover {
	background-color: #6ca4db;
}
.bwp-accept-cookies-btn:active {
	position: relative;
	top: 1px;
}

/* info icon (for mobile devices) */
.bwp-mobile-cookies-info-icon {
	display: none;
	visibility: hidden;
	opacity: 0;
	cursor: pointer;
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 1041;
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	font-family: sans-serif;
	font-size: 15px;
	color: #4c4f53;
	background-color: #ffffff;
	box-shadow: 0 14px 28px -4px rgba(14,17,20,0.15);
	border-radius: 50%;

	-webkit-transition: color 0.2s ease, background-color 0.2s ease, visibility 0.2s ease, opacity 0.2s ease;
	-moz-transition: color 0.2s ease, background-color 0.2s ease, visibility 0.2s ease, opacity 0.2s ease;
	-o-transition: color 0.2s ease, background-color 0.2s ease, visibility 0.2s ease, opacity 0.2s ease;
	transition: color 0.2s ease, background-color 0.2s ease, visibility 0.2s ease, opacity 0.2s ease;
}
.bwp-mobile-cookies-info-icon:hover {
	color: #ffffff;
	background-color: #6ca4db;
}
.bwp-mobile-cookies-info-icon:active i {
	position: relative;
	top: 1px;
}


/**
 * 16.0 - "Back to top" button
 * -------------------------------------------------------------
 */

#bwp-scroll-top {
	position: fixed;
	right: 30px;
	bottom: 20px;
	z-index: 1041;
	display: inline-block;
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	font-family: sans-serif;
	font-size: 16px;
	color: #4c4f53;
	background-color: #ffffff;
	border-radius: 50%;
	box-shadow: 0 14px 28px -4px rgba(14,17,20,0.15);
	opacity: 0;
	visibility: hidden;

	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
#bwp-scroll-top:focus {
	color: #4c4f53;
}
#bwp-scroll-top:hover {
	color: #ffffff;
	background-color: #6ca4db;
}
#bwp-scroll-top:active i {
	position: relative;
	top: 1px;
}
#bwp-scroll-top.bwp-visible {
	bottom: 30px;
	opacity: 1;
	visibility: visible;
}


/**
 * 17.0 - Dark style
 * -------------------------------------------------------------
 */

/* body: background color */
body.bwp-dark-style {
	background-color: #0b0b0c !important;
}

/* content: background color 1 */
.bwp-dark-style #bwp-header,
.bwp-dark-style .bwp-header-nav-row-container,
.bwp-dark-style .bwp-intro-bg,
.bwp-dark-style .bwp-intro-heading,
.bwp-dark-style .bwp-intro-text,
.bwp-dark-style .bwp-author-heading-social-links ul li a,
.bwp-dark-style .bwp-post-wrap,
.bwp-dark-style .bwp-single-post-article,
.bwp-dark-style .bwp-about-author,
.bwp-dark-style .comment-form,
.bwp-dark-style .comment-respond .must-log-in,
.bwp-dark-style .comment-list-wrap,
.bwp-dark-style .comments-area .no-comments,
.bwp-dark-style .bwp-page-404-container,
.bwp-dark-style .bwp-widget .bwp-widget-title,
.bwp-dark-style .widget_bwp_popular_post_num,
.bwp-dark-style .widget_bwp_posts_slider_item figcaption,
.bwp-dark-style .widget_bwp_posts_list_item figcaption,
.bwp-dark-style .bwp-cookies-info-container,
.bwp-dark-style #bwp-scroll-top {
	background-color: #18191b;
}
.bwp-dark-style .bwp-content .wp-playlist,
.bwp-dark-style .bwp-content .wp-playlist-item.wp-playlist-playing,
.bwp-dark-style .bwp-content input[type="text"],
.bwp-dark-style .bwp-content input[type="email"],
.bwp-dark-style .bwp-content input[type="url"],
.bwp-dark-style .bwp-content input[type="password"],
.bwp-dark-style .bwp-content input[type="search"],
.bwp-dark-style .bwp-content input[type="tel"],
.bwp-dark-style .bwp-content input[type="number"],
.bwp-dark-style .bwp-content input[type="date"],
.bwp-dark-style .bwp-content textarea,
.bwp-dark-style .bwp-content select,
.bwp-dark-style #author,
.bwp-dark-style #email,
.bwp-dark-style #url,
.bwp-dark-style #comment,
.bwp-dark-style .widget_archive select,
.bwp-dark-style .widget_categories:not(.widget_block) select,
.bwp-dark-style input[type="checkbox"],
.bwp-dark-style input[type="radio"] {
	background: #18191b;
}
.bwp-dark-style .widget_bwp_posts_slider .owl-theme .owl-nav button {
	background: #18191b;
	color: #ffffff;
}

/* content: background color 2 */
.bwp-dark-style .mfp-figure::after,
.bwp-dark-style .mfp-bg {
	background: #050606;
}
.bwp-dark-style .bwp-post-media-slider .owl-theme .owl-nav button,
.bwp-dark-style .bwp-accept-cookies-btn {
	background: #050606;
	color: #ffffff;
}
.bwp-dark-style .bwp-video-popup-container,
.bwp-dark-style .bwp-audio-popup-container,
.bwp-dark-style .bwp-post-hover-buttons,
.bwp-dark-style .bwp-post-hover-buttons a,
.bwp-dark-style .bwp-post-share-list {
	background-color: #050606;
}
.bwp-dark-style .bwp-post-share-list::after {
	border-top-color: #050606;
}
.bwp-dark-style .sticky .bwp-post-sticky-mark,
.bwp-dark-style .bwp-post-image-caption,
.bwp-dark-style .bwp-cookies-close-icon,
.bwp-dark-style .bwp-mobile-cookies-info-icon {
	color: #ffffff;
	background-color: #050606;
}
.bwp-dark-style .bwp-content input[type="button"],
.bwp-dark-style .bwp-content input[type="reset"],
.bwp-dark-style .bwp-content input[type="submit"],
.bwp-dark-style .comment-form #submit {
	color: #ffffff;
	background-color: #050606;
}
.bwp-dark-style .bwp-content input[type="button"]:focus,
.bwp-dark-style .bwp-content input[type="reset"]:focus,
.bwp-dark-style .bwp-content input[type="submit"]:focus,
.bwp-dark-style .comment-form #submit:hover,
.bwp-dark-style .comment-form #submit:focus,
.bwp-dark-style .bwp-accept-cookies-btn:hover,
.bwp-dark-style .bwp-accept-cookies-btn:focus {
	color: #ffffff;
}

/* content: background color 3 */
.bwp-dark-style .bwp-post-chat-format .bwp-content p,
.bwp-dark-style .comment-meta .comment-awaiting-moderation {
	background-color: #0b0b0c;
}

/* box-shadow */
.bwp-dark-style .mfp-figure::after,
.bwp-dark-style .bwp-video-popup-container,
.bwp-dark-style .bwp-audio-popup-container,
.bwp-dark-style .bwp-intro-heading,
.bwp-dark-style .bwp-intro-text {
	box-shadow: 0 14px 28px -4px rgba(0,0,0,0.45);
}
.bwp-dark-style.bwp-sticky-header-one-row #bwp-header.bwp-animate-header,
.bwp-dark-style.bwp-sticky-header-two-rows .bwp-enable-sticky-nav .bwp-header-nav-row-container,
.bwp-dark-style.bwp-sticky-header-two-rows .bwp-enable-sticky-nav-32 .bwp-header-nav-row-container {
	box-shadow: 0 14px 28px -4px rgba(0,0,0,0.55);
}
.bwp-dark-style .bwp-post-share-list,
.bwp-dark-style .bwp-cookies-info-container,
.bwp-dark-style .bwp-cookies-close-icon,
.bwp-dark-style .bwp-mobile-cookies-info-icon,
.bwp-dark-style #bwp-scroll-top {
	box-shadow: 0 14px 28px -4px rgba(0,0,0,0.6);
}
.bwp-dark-style .bwp-post-hover-buttons,
.bwp-dark-style .widget_bwp_posts_slider_item figcaption,
.bwp-dark-style .widget_bwp_posts_list_item figcaption {
	box-shadow: 6px 6px 18px -2px rgba(0,0,0,0.45);
}
.bwp-dark-style .bwp-post-media-slider .owl-theme .owl-nav {
	box-shadow: -6px 6px 18px -2px rgba(0,0,0,0.45);
}
.bwp-dark-style .sticky .bwp-post-sticky-mark,
.bwp-dark-style .widget_bwp_popular_posts > ul > li:hover .widget_bwp_popular_post_num {
	box-shadow: 0 6px 18px -2px rgba(0,0,0,0.6);
}

/* border color 1 */
.bwp-dark-style hr,
.bwp-dark-style .bwp-content .wp-playlist,
.bwp-dark-style .bwp-content table td,
.bwp-dark-style .comment-content table td,
.bwp-dark-style .bwp-content table th,
.bwp-dark-style .comment-content table th,
.bwp-dark-style .bwp-content input[type="text"],
.bwp-dark-style .bwp-content input[type="email"],
.bwp-dark-style .bwp-content input[type="url"],
.bwp-dark-style .bwp-content input[type="password"],
.bwp-dark-style .bwp-content input[type="search"],
.bwp-dark-style .bwp-content input[type="tel"],
.bwp-dark-style .bwp-content input[type="number"],
.bwp-dark-style .bwp-content input[type="date"],
.bwp-dark-style .bwp-content textarea,
.bwp-dark-style .bwp-content select,
.bwp-dark-style .bwp-content input[type="file"],
.bwp-dark-style #author,
.bwp-dark-style #email,
.bwp-dark-style #url,
.bwp-dark-style #comment,
.bwp-dark-style input[type="checkbox"],
.bwp-dark-style input[type="radio"] {
	border-color: #2e3034;
}
.bwp-dark-style .bwp-post-comments,
.bwp-dark-style .post-navigation,
.bwp-dark-style .comment .comment-body,
.bwp-dark-style .comment-list .trackback .comment-body,
.bwp-dark-style .comment-list .pingback .comment-body,
.bwp-dark-style .comment-list li .comment-respond,
.bwp-dark-style .comment-navigation,
.bwp-dark-style .bwp-footer-widgets-container,
.bwp-dark-style .bwp-footer-container {
	border-top-color: #2e3034;
}
.bwp-dark-style legend,
.bwp-dark-style .bwp-content .wp-playlist-tracks .wp-playlist-item,
.bwp-dark-style .widget_search #searchform .bwp-search-field,
.bwp-dark-style .widget_search #searchform .bwp-search-submit {
	border-bottom-color: #2e3034;
}
.bwp-dark-style .bwp-header-nav-row .bwp-main-menu-icon {
	border-right-color: #2e3034;
}
.bwp-dark-style .bwp-header-nav-row .bwp-header-search-icon,
.bwp-dark-style .bwp-header-nav-row .bwp-color-switch-icon {
	border-left-color: #2e3034;
}

/* border color 2 */
.bwp-dark-style .widget_archive select,
.bwp-dark-style .widget_categories:not(.widget_block) select {
	border-color: #18191b;
}

/* drop-down search form */
.bwp-dark-style .bwp-dropdown-search-container {
	background-color: #050606;
	box-shadow: 0 14px 28px -4px rgba(0,0,0,0.65);
}
.bwp-dark-style .bwp-dropdown-search-container::after {
	border-bottom-color: #050606;
}
.bwp-dark-style .bwp-dropdown-search-container #searchform .bwp-search-field {
	color: #ffffff;
	background: #050606;
	border-bottom-color: #18191b;
}
.bwp-dark-style .bwp-dropdown-search-container #searchform .bwp-search-submit {
	color: #878c92;
	background: #050606;
	border-bottom-color: #18191b;
}
.bwp-dark-style .bwp-dropdown-search-container #searchform .bwp-search-submit:hover {
	color: #ffffff;
}
.bwp-dark-style .bwp-dropdown-search-container #searchform .bwp-search-field::-webkit-input-placeholder {
	color: #878c92;
	opacity: 1;
}
.bwp-dark-style .bwp-dropdown-search-container #searchform .bwp-search-field:-moz-placeholder {
	color: #878c92;
	opacity: 1;
}
.bwp-dark-style .bwp-dropdown-search-container #searchform .bwp-search-field::-moz-placeholder {
	color: #878c92;
	opacity: 1;
}
.bwp-dark-style .bwp-dropdown-search-container #searchform .bwp-search-field:-ms-input-placeholder {
	color: #878c92;
	opacity: 1;
}

/* main menu: submenu container (superfish menu) */
.bwp-dark-style .sf-menu ul {
	background-color: #050606;
	box-shadow: 0 14px 28px -4px rgba(0,0,0,0.65);
}
.bwp-dark-style .sf-menu ul::after {
	border-bottom-color: #050606;
}
.bwp-dark-style .sf-menu ul li a,
.bwp-dark-style .sf-arrows ul .sf-with-ul::after {
	color: #878c92;
}
.bwp-dark-style .sf-menu ul li a:hover,
.bwp-dark-style .sf-menu ul > li:hover > a,
.bwp-dark-style .sf-menu ul > .current-menu-item > a,
.bwp-dark-style .sf-menu ul > .current-menu-ancestor > a,
.bwp-dark-style .sf-menu ul > .current-menu-ancestor > .sf-with-ul::after,
.bwp-dark-style .sf-arrows ul li > .sf-with-ul:focus::after,
.bwp-dark-style .sf-arrows ul li:hover > .sf-with-ul::after,
.bwp-dark-style .sf-arrows ul .sfHover > .sf-with-ul::after {
	color: #ffffff;
}

/* mobile menu */
.bwp-dark-style .bwp-sm-main-menu-container {
	background-color: #050606;
	box-shadow: 0 14px 28px -4px rgba(0,0,0,0.65);
}
.bwp-dark-style .bwp-sm-main-menu-container::after {
	border-bottom-color: #050606;
}
.bwp-dark-style .bwp-sm-menu li a {
	color: #878c92;
}
.bwp-dark-style .bwp-sm-menu li a:hover,
.bwp-dark-style .bwp-sm-menu li a:focus,
.bwp-dark-style .bwp-sm-menu .current-menu-item > a {
	color: #ffffff;
}
.bwp-dark-style .bwp-sm-menu ul {
	border-right-color: #18191b;
}
.bwp-dark-style .bwp-header-nav-row .bwp-sm-menu ul {
	border-left-color: #18191b;
}

/* text color 1 */
.bwp-dark-style h1,
.bwp-dark-style h2,
.bwp-dark-style h3,
.bwp-dark-style h4,
.bwp-dark-style h5,
.bwp-dark-style h6,
.bwp-dark-style legend,
.bwp-dark-style .bwp-logo-text,
.bwp-dark-style .bwp-logo-text:focus,
.bwp-dark-style .bwp-logo-text:hover,
.bwp-dark-style .bwp-intro-heading h1,
.bwp-dark-style .bwp-intro-heading a,
.bwp-dark-style .bwp-archive-title,
.bwp-dark-style .bwp-no-results h3,
.bwp-dark-style .bwp-post-title,
.bwp-dark-style .bwp-post-title a,
.bwp-dark-style .bwp-post-comment-author,
.bwp-dark-style .bwp-container-title,
.bwp-dark-style .bwp-content .wp-playlist-current-item .wp-playlist-item-title,
.bwp-dark-style .bwp-about-author-name,
.bwp-dark-style .bwp-about-author-name a,
.bwp-dark-style .comment-reply-title,
.bwp-dark-style .comments-title,
.bwp-dark-style .comment-meta .comment-author .fn,
.bwp-dark-style .comment-meta .comment-author .fn .url,
.bwp-dark-style .bwp-page-404-content h1,
.bwp-dark-style .bwp-page-404-content h2,
.bwp-dark-style .bwp-widget .bwp-widget-title,
.bwp-dark-style .bwp-widget .bwp-widget-title a {
	color: #eaedf1;
}
.bwp-dark-style .bwp-post-title a:hover,
.bwp-dark-style .bwp-post-title a:focus {
	color: #ffffff !important;
}

/* text color 2 */
.bwp-dark-style,
.bwp-dark-style a,
.bwp-dark-style a:focus,
.bwp-dark-style blockquote cite,
.bwp-dark-style .bwp-header-search-icon,
.bwp-dark-style .bwp-header-search-icon:focus,
.bwp-dark-style .bwp-color-switch-icon,
.bwp-dark-style .bwp-color-switch-icon:focus,
.bwp-dark-style .sf-menu a,
.bwp-dark-style .sf-arrows .sf-with-ul::after,
.bwp-dark-style .bwp-intro-text,
.bwp-dark-style .bwp-intro-text a,
.bwp-dark-style .bwp-archive-description,
.bwp-dark-style .bwp-author-heading-social-links > span,
.bwp-dark-style .bwp-author-heading-social-links ul li a,
.bwp-dark-style .bwp-no-results p,
.bwp-dark-style .bwp-no-results a,
.bwp-dark-style .bwp-post-hover-buttons a,
.bwp-dark-style .bwp-post-hover-buttons a:focus,
.bwp-dark-style .bwp-post-link-to-single-page,
.bwp-dark-style .bwp-post-excerpt,
.bwp-dark-style .bwp-content,
.bwp-dark-style .bwp-content .more-link:hover::before,
.bwp-dark-style .bwp-content .more-link:focus::before,
.bwp-dark-style .bwp-post-share-list li a,
.bwp-dark-style .bwp-post-share-list li a:focus,
.bwp-dark-style .bwp-post-comment-excerpt,
.bwp-dark-style .bwp-post-comment-excerpt a,
.bwp-dark-style .bwp-post-comment-excerpt a:focus,
.bwp-dark-style .bwp-post-comment-excerpt a:hover,
.bwp-dark-style .pagination .nav-links .page-numbers,
.bwp-dark-style .pagination .nav-links a.page-numbers:focus,
.bwp-dark-style .bwp-single-post-tags,
.bwp-dark-style .bwp-single-post-tags a,
.bwp-dark-style .post-navigation .nav-links a,
.bwp-dark-style .bwp-content .wp-playlist,
.bwp-dark-style .bwp-content .wp-playlist-item a,
.bwp-dark-style .bwp-content .wp-playlist-item a:focus,
.bwp-dark-style .bwp-content .wp-playlist-item.wp-playlist-playing,
.bwp-dark-style .bwp-content .wp-playlist-item .wp-playlist-item-length,
.bwp-dark-style .bwp-content input[type="text"],
.bwp-dark-style .bwp-content input[type="email"],
.bwp-dark-style .bwp-content input[type="url"],
.bwp-dark-style .bwp-content input[type="password"],
.bwp-dark-style .bwp-content input[type="search"],
.bwp-dark-style .bwp-content input[type="tel"],
.bwp-dark-style .bwp-content input[type="number"],
.bwp-dark-style .bwp-content input[type="date"],
.bwp-dark-style .bwp-content textarea,
.bwp-dark-style .bwp-content select,
.bwp-dark-style .bwp-about-author-bio,
.bwp-dark-style .comments-area,
.bwp-dark-style .comment-form label,
.bwp-dark-style #author,
.bwp-dark-style #email,
.bwp-dark-style #url,
.bwp-dark-style #comment,
.bwp-dark-style .comment-respond .must-log-in a,
.bwp-dark-style .comment-form .logged-in-as a,
.bwp-dark-style .comment-list .trackback .comment-body::before,
.bwp-dark-style .comment-list .trackback .comment-body > a,
.bwp-dark-style .comment-list .pingback .comment-body::before,
.bwp-dark-style .comment-list .pingback .comment-body > a,
.bwp-dark-style .comment-content a,
.bwp-dark-style .bwp-page-404-content p,
.bwp-dark-style .bwp-page-404-content a,
.bwp-dark-style .bwp-widget,
.bwp-dark-style .bwp-widget a,
.bwp-dark-style .widget_archive select,
.bwp-dark-style .widget_pages ul ul li::before,
.bwp-dark-style .widget_categories ul ul li::before,
.bwp-dark-style .widget_categories:not(.widget_block) select,
.bwp-dark-style .widget_calendar .wp-calendar-table caption,
.bwp-dark-style .widget_nav_menu ul ul li::before,
.bwp-dark-style .widget_search #searchform .bwp-search-field,
.bwp-dark-style .widget_search #searchform .bwp-search-submit,
.bwp-dark-style .widget_bwp_popular_post_num,
.bwp-dark-style .widget_bwp_content h4,
.bwp-dark-style .widget_bwp_posts_slider_item figcaption h4,
.bwp-dark-style .widget_bwp_posts_list_item figcaption h4,
.bwp-dark-style .bwp-footer-text,
.bwp-dark-style .bwp-footer-text a,
.bwp-dark-style .bwp-footer-social-links a,
.bwp-dark-style .bwp-footer-menu li a,
.bwp-dark-style .bwp-cookies-info-icon,
.bwp-dark-style .bwp-cookies-info-content,
.bwp-dark-style .bwp-cookies-info-content a,
.bwp-dark-style #bwp-scroll-top,
.bwp-dark-style #bwp-scroll-top:focus {
	color: #d6dade;
}
.bwp-dark-style .widget_search #searchform .bwp-search-field::-webkit-input-placeholder {
	color: #d6dade;
	opacity: 1;
}
.bwp-dark-style .widget_search #searchform .bwp-search-field:-moz-placeholder {
	color: #d6dade;
	opacity: 1;
}
.bwp-dark-style .widget_search #searchform .bwp-search-field::-moz-placeholder {
	color: #d6dade;
	opacity: 1;
}
.bwp-dark-style .widget_search #searchform .bwp-search-field:-ms-input-placeholder {
	color: #d6dade;
	opacity: 1;
}
.bwp-dark-style .bwp-main-menu-icon span,
.bwp-dark-style .bwp-main-menu-icon span::before,
.bwp-dark-style .bwp-main-menu-icon span::after {
	background: #d6dade;
}
.bwp-dark-style .bwp-footer-widgets-container::before,
.bwp-dark-style .bwp-footer-container::before {
	background-color: #d6dade;
}
.bwp-dark-style abbr,
.bwp-dark-style acronym,
.bwp-dark-style ins {
	border-bottom-color: #d6dade !important;
}

/* text color 3 */
.bwp-dark-style .bwp-post-date,
.bwp-dark-style .bwp-post-date a,
.bwp-dark-style .bwp-post-author-name a,
.bwp-dark-style .bwp-post-likes a,
.bwp-dark-style .bwp-post-share-icon,
.bwp-dark-style .bwp-post-share-icon:focus,
.bwp-dark-style .bwp-post-comments-title,
.bwp-dark-style .bwp-post-add-comment-link,
.bwp-dark-style .bwp-single-post-metadata li,
.bwp-dark-style .bwp-single-post-metadata li a,
.bwp-dark-style .bwp-single-post-share > span,
.bwp-dark-style .bwp-single-post-counters-list li a,
.bwp-dark-style .post-navigation .nav-links a .meta-nav,
.bwp-dark-style .post-navigation .nav-links a:hover .meta-nav,
.bwp-dark-style .post-navigation .nav-links a:focus .meta-nav,
.bwp-dark-style .bwp-content .wp-playlist-current-item .wp-playlist-item-artist,
.bwp-dark-style .bwp-content .wp-playlist-item .wp-playlist-item-artist,
.bwp-dark-style .bwp-content .wp-playlist-current-item .wp-playlist-item-album,
.bwp-dark-style .bwp-about-author-name .bwp-about-author-posts-num,
.bwp-dark-style .bwp-about-author-posts-link,
.bwp-dark-style .comment-reply-title #cancel-comment-reply-link,
.bwp-dark-style .comment-list .trackback .comment-body,
.bwp-dark-style .comment-list .trackback .comment-body .edit-link .comment-edit-link,
.bwp-dark-style .comment-list .pingback .comment-body,
.bwp-dark-style .comment-list .pingback .comment-body .edit-link .comment-edit-link,
.bwp-dark-style .comment-meta .comment-metadata,
.bwp-dark-style .comment-meta .comment-metadata a,
.bwp-dark-style .comment-body .reply .comment-reply-link,
.bwp-dark-style .comment-body .reply .comment-reply-link:focus,
.bwp-dark-style .comment-navigation .nav-links a,
.bwp-dark-style .widget_archive ul li,
.bwp-dark-style .widget_pages ul li,
.bwp-dark-style .widget_categories ul li,
.bwp-dark-style .widget_recent_entries ul li .post-date,
.bwp-dark-style .widget_rss ul li .rss-date,
.bwp-dark-style .widget_rss ul li cite,
.bwp-dark-style .widget_bwp_meta li,
.bwp-dark-style .widget_bwp_meta li a {
	color: #858b91;
}

/* active and hover color */
.bwp-dark-style a:hover,
.bwp-dark-style .bwp-header-search-icon:hover,
.bwp-dark-style .bwp-header-search-icon.bwp-active,
.bwp-dark-style .bwp-color-switch-icon:hover,
.bwp-dark-style .sf-menu a:hover,
.bwp-dark-style .sf-menu > li:hover > a,
.bwp-dark-style .sf-menu > .current-menu-item > a,
.bwp-dark-style .sf-menu > .current-menu-ancestor > a,
.bwp-dark-style .sf-menu > .current-menu-ancestor > .sf-with-ul::after,
.bwp-dark-style .sf-arrows > li > .sf-with-ul:focus::after,
.bwp-dark-style .sf-arrows > li:hover > .sf-with-ul::after,
.bwp-dark-style .sf-arrows > .sfHover > .sf-with-ul::after,
.bwp-dark-style .bwp-intro-heading a:hover,
.bwp-dark-style .bwp-intro-heading a:focus,
.bwp-dark-style .bwp-intro-text a:hover,
.bwp-dark-style .bwp-intro-text a:focus,
.bwp-dark-style .bwp-no-results a:hover,
.bwp-dark-style .bwp-no-results a:focus,
.bwp-dark-style .bwp-post-link-to-single-page:hover,
.bwp-dark-style .bwp-post-link-to-single-page:focus,
.bwp-dark-style .bwp-post-date a:focus,
.bwp-dark-style .bwp-post-date a:hover,
.bwp-dark-style .bwp-post-author-name a:hover,
.bwp-dark-style .bwp-post-author-name a:focus,
.bwp-dark-style .bwp-post-likes a:hover,
.bwp-dark-style .bwp-post-share:hover .bwp-post-share-icon,
.bwp-dark-style .bwp-post-share-icon:hover,
.bwp-dark-style .bwp-post-add-comment-link:hover,
.bwp-dark-style .bwp-post-add-comment-link:focus,
.bwp-dark-style .pagination .nav-links .page-numbers.current,
.bwp-dark-style .pagination .nav-links a.page-numbers:hover,
.bwp-dark-style .bwp-single-post-metadata li a:hover,
.bwp-dark-style .bwp-single-post-metadata li a:focus,
.bwp-dark-style .bwp-single-post-tags a:hover,
.bwp-dark-style .bwp-single-post-tags a:focus,
.bwp-dark-style .bwp-single-post-counters-list li a:hover,
.bwp-dark-style .post-navigation .nav-links a:hover,
.bwp-dark-style .post-navigation .nav-links a:focus,
.bwp-dark-style .bwp-content .wp-playlist-item a:hover,
.bwp-dark-style .bwp-content .bwp-single-post-pagination > span,
.bwp-dark-style .bwp-about-author-name a:hover,
.bwp-dark-style .bwp-about-author-name a:focus,
.bwp-dark-style .bwp-about-author-posts-link:hover,
.bwp-dark-style .bwp-about-author-posts-link:focus,
.bwp-dark-style .comment-respond .must-log-in a:hover,
.bwp-dark-style .comment-respond .must-log-in a:focus,
.bwp-dark-style .comment-form .logged-in-as a:hover,
.bwp-dark-style .comment-form .logged-in-as a:focus,
.bwp-dark-style .comment-reply-title #cancel-comment-reply-link:hover,
.bwp-dark-style .comment-list .trackback .comment-body > a:hover,
.bwp-dark-style .comment-list .trackback .comment-body > a:focus,
.bwp-dark-style .comment-list .pingback .comment-body > a:hover,
.bwp-dark-style .comment-list .pingback .comment-body > a:focus,
.bwp-dark-style .comment-list .trackback .comment-body .edit-link .comment-edit-link:hover,
.bwp-dark-style .comment-list .trackback .comment-body .edit-link .comment-edit-link:focus,
.bwp-dark-style .comment-list .pingback .comment-body .edit-link .comment-edit-link:hover,
.bwp-dark-style .comment-list .pingback .comment-body .edit-link .comment-edit-link:focus,
.bwp-dark-style .comment-meta .comment-author .fn .url:hover,
.bwp-dark-style .comment-meta .comment-author .fn .url:focus,
.bwp-dark-style .comment-meta .comment-metadata a:hover,
.bwp-dark-style .comment-meta .comment-metadata a:focus,
.bwp-dark-style .comment-content a:hover,
.bwp-dark-style .comment-content a:focus,
.bwp-dark-style .comment-body .reply .comment-reply-link:hover,
.bwp-dark-style .comment-navigation .nav-links a:hover,
.bwp-dark-style .comment-navigation .nav-links a:focus,
.bwp-dark-style .bwp-page-404-content a:hover,
.bwp-dark-style .bwp-page-404-content a:focus,
.bwp-dark-style .bwp-widget a:hover,
.bwp-dark-style .bwp-widget a:focus,
.bwp-dark-style .bwp-widget .bwp-widget-title a:hover,
.bwp-dark-style .bwp-widget .bwp-widget-title a:focus,
.bwp-dark-style .widget_search #searchform .bwp-search-submit:hover,
.bwp-dark-style .widget_bwp_meta li a:hover,
.bwp-dark-style .widget_bwp_meta li a:focus,
.bwp-dark-style .bwp-footer-text a:hover,
.bwp-dark-style .bwp-footer-text a:focus,
.bwp-dark-style .bwp-footer-social-links a:hover,
.bwp-dark-style .bwp-footer-social-links a:focus,
.bwp-dark-style .bwp-footer-menu li a:hover,
.bwp-dark-style .bwp-footer-menu li a:focus,
.bwp-dark-style .bwp-cookies-info-content a:hover,
.bwp-dark-style .bwp-cookies-info-content a:focus {
	color: #6ca4db;
}
.bwp-dark-style .bwp-main-menu-icon:hover span,
.bwp-dark-style .bwp-main-menu-icon:hover span::before,
.bwp-dark-style .bwp-main-menu-icon:hover span::after,
.bwp-dark-style .bwp-main-menu-icon.bwp-active span,
.bwp-dark-style .bwp-main-menu-icon.bwp-active span::before,
.bwp-dark-style .bwp-main-menu-icon.bwp-active span::after,
.bwp-dark-style input[type="checkbox"]:checked,
.bwp-dark-style input[type="radio"]:checked {
	background: #6ca4db;
}
.bwp-dark-style .bwp-post-hover-buttons a:hover,
.bwp-dark-style .bwp-cookies-close-icon:hover,
.bwp-dark-style .bwp-mobile-cookies-info-icon:hover,
.bwp-dark-style #bwp-scroll-top:hover {
	color: #ffffff;
	background-color: #6ca4db;
}
.bwp-dark-style .bwp-post-media-slider .owl-theme .owl-nav button:hover,
.bwp-dark-style .widget_bwp_posts_slider .owl-theme .owl-nav button:hover {
	color: #ffffff;
	background: #6ca4db;
}
.bwp-dark-style .bwp-content input[type="button"]:hover,
.bwp-dark-style .bwp-content input[type="reset"]:hover,
.bwp-dark-style .bwp-content input[type="submit"]:hover {
	color: #ffffff;
	background-color: #6ca4db;
}
.bwp-dark-style .comment-form #submit:hover,
.bwp-dark-style .bwp-accept-cookies-btn:hover {
	background-color: #6ca4db;
}
.bwp-dark-style .bwp-content input[type="text"]:hover,
.bwp-dark-style .bwp-content input[type="email"]:hover,
.bwp-dark-style .bwp-content input[type="url"]:hover,
.bwp-dark-style .bwp-content input[type="password"]:hover,
.bwp-dark-style .bwp-content input[type="search"]:hover,
.bwp-dark-style .bwp-content input[type="tel"]:hover,
.bwp-dark-style .bwp-content input[type="number"]:hover,
.bwp-dark-style .bwp-content input[type="date"]:hover,
.bwp-dark-style .bwp-content textarea:hover,
.bwp-dark-style .bwp-content select:hover,
.bwp-dark-style .bwp-content input[type="text"]:focus,
.bwp-dark-style .bwp-content input[type="email"]:focus,
.bwp-dark-style .bwp-content input[type="url"]:focus,
.bwp-dark-style .bwp-content input[type="password"]:focus,
.bwp-dark-style .bwp-content input[type="search"]:focus,
.bwp-dark-style .bwp-content input[type="tel"]:focus,
.bwp-dark-style .bwp-content input[type="number"]:focus,
.bwp-dark-style .bwp-content input[type="date"]:focus,
.bwp-dark-style .bwp-content textarea:focus,
.bwp-dark-style .bwp-content select:active,
.bwp-dark-style .bwp-content select:focus,
.bwp-dark-style .bwp-content input[type="file"]:hover,
.bwp-dark-style .bwp-content input[type="file"]:focus,
.bwp-dark-style #author:hover,
.bwp-dark-style #email:hover,
.bwp-dark-style #url:hover,
.bwp-dark-style #comment:hover,
.bwp-dark-style #author:active,
.bwp-dark-style #email:active,
.bwp-dark-style #url:active,
.bwp-dark-style #comment:active,
.bwp-dark-style #author:focus,
.bwp-dark-style #email:focus,
.bwp-dark-style #url:focus,
.bwp-dark-style #comment:focus,
.bwp-dark-style input[type="checkbox"]:hover,
.bwp-dark-style input[type="radio"]:hover,
.bwp-dark-style input[type="checkbox"]:checked,
.bwp-dark-style input[type="radio"]:checked {
	border-color: #6ca4db;
}

/* images: bg overlay */
.bwp-dark-style .bwp-intro-bg-overlay,
.bwp-dark-style .bwp-post-bg-overlay,
.bwp-dark-style .bwp-avatar-bg-overlay,
.bwp-dark-style .widget_bwp_dark_bg_overlay,
.bwp-dark-style .widget_bwp_bg_overlay {
	background-color: #050606;
}
.bwp-dark-style .bwp-post-media:hover .bwp-post-bg-overlay,
.bwp-dark-style .bwp-post-media-slider:hover .bwp-post-bg-overlay,
.bwp-dark-style .bwp-post-author-avatar:hover .bwp-avatar-bg-overlay,
.bwp-dark-style .bwp-about-author-avatar:hover .bwp-avatar-bg-overlay,
.bwp-dark-style .widget_bwp_thumbnail:hover .widget_bwp_bg_overlay {
	opacity: 0.35;
}

/* other colors */
.bwp-dark-style .bwp-ah-github-link:hover,
.bwp-dark-style .bwp-ah-github-link:focus,
.bwp-dark-style input[type="checkbox"]:checked::before,
.bwp-dark-style input[type="radio"]:checked::before {
	color: #ffffff;
}
.bwp-dark-style .mejs-button > button,
.bwp-dark-style .wp-playlist .mejs-controls .mejs-button button {
	background-color: transparent !important;
}
.bwp-dark-style .bwp-content .wpcf7 .ajax-loader {
	background-color: #050606;
}
.bwp-dark-style .bwp-sidebar-content .wpcf7 .ajax-loader {
	background-color: #18191b;
}
.bwp-dark-style .bwp-content .wpcf7 .ajax-loader::before,
.bwp-dark-style .bwp-sidebar-content .wpcf7 .ajax-loader::before {
	background-color: #ffffff;
}

/* h1 - h6 */
.bwp-dark-style h1 a,
.bwp-dark-style h2 a,
.bwp-dark-style h3 a,
.bwp-dark-style h4 a,
.bwp-dark-style h5 a,
.bwp-dark-style h6 a {
	color: inherit;
}
.bwp-dark-style h1 a:hover,
.bwp-dark-style h2 a:hover,
.bwp-dark-style h3 a:hover,
.bwp-dark-style h4 a:hover,
.bwp-dark-style h5 a:hover,
.bwp-dark-style h6 a:hover,
.bwp-dark-style h1 a:focus,
.bwp-dark-style h2 a:focus,
.bwp-dark-style h3 a:focus,
.bwp-dark-style h4 a:focus,
.bwp-dark-style h5 a:focus,
.bwp-dark-style h6 a:focus {
	color: #6ca4db;
}

/* code, kbd, tt, preformatted text */
.bwp-dark-style code,
.bwp-dark-style kbd,
.bwp-dark-style tt {
	color: inherit;
	background-color: rgba(0,0,0,0.4);
}
.bwp-dark-style pre {
	color: #d6dade;
	background-color: #0b0b0c;
}
.bwp-dark-style pre code,
.bwp-dark-style pre kbd {
	background-color: rgba(0,0,0,0.4);
}

/* audio and video player (classic editor) */
.bwp-dark-style .bwp-content .wp-playlist-item.wp-playlist-playing a,
.bwp-dark-style .bwp-content .wp-playlist-item.wp-playlist-playing a:hover,
.bwp-dark-style .bwp-content .wp-playlist-item.wp-playlist-playing a:focus {
	color: #d6dade;
}

/* blockquote */
.bwp-dark-style blockquote::before {
	color: inherit;
}

/* WordPress content styles: block editor */
.bwp-dark-style .bwp-content .wp-block-quote:not(.is-large):not(.is-style-large):not(.is-style-plain) {
	border-left-color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-quote.has-text-align-right:not(.is-large):not(.is-style-large):not(.is-style-plain) {
	border-right-color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-pullquote cite {
	color: inherit;
}
.bwp-dark-style .bwp-content .wp-block-pullquote:not(.is-style-solid-color) {
	background: none;
}
.bwp-dark-style .bwp-content .wp-block-pullquote {
	border-top-color: #d6dade;
	border-bottom-color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-code code {
	background: none;
	color: inherit;
}
.bwp-dark-style .bwp-content .wp-block-preformatted {
	background: none;
}
.bwp-dark-style .bwp-content .wp-block-verse {
	background: none;
	color: inherit;
}
.bwp-dark-style .bwp-content .wp-block-table thead {
	border-bottom-color: #2e3034;
}
.bwp-dark-style .bwp-content .wp-block-table tfoot {
	border-top-color: #2e3034;
}
.bwp-dark-style .bwp-content .wp-block-table.is-style-stripes {
	background-color: transparent;
}
.bwp-dark-style .bwp-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background-color: #0b0b0c;
}
.bwp-dark-style .bwp-content .wp-block-table.is-style-stripes td,
.bwp-dark-style .bwp-content .wp-block-table.is-style-stripes th {
	border-right-color: #2e3034;
}
.bwp-dark-style .bwp-content .wp-block-table.is-style-stripes .has-background tbody tr:nth-child(odd) {
	background-color: #18191b;
}
.bwp-dark-style.bwp-body .wp-lightbox-overlay .scrim {
	background-color: #18191b !important;
}
.bwp-dark-style.bwp-body .wp-lightbox-overlay .close-button {
	fill: #ffffff !important;
}
.bwp-dark-style .bwp-content .wp-block-gallery .blocks-gallery-grid figcaption,
.bwp-dark-style .bwp-content .wp-block-gallery figure.wp-block-image figcaption {
	color: #ffffff;
	text-shadow: 0 1px 3px rgba(0,0,0,0.2);
	background: rgba(0,0,0,0.4);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 65%, rgba(0,0,0,0.7) 100%);
}
.bwp-dark-style .bwp-content .wp-block-cover,
.bwp-dark-style .bwp-content .wp-block-cover-image,
.bwp-dark-style .bwp-content .wp-block-cover .wp-block-cover__inner-container,
.bwp-dark-style .bwp-content .wp-block-cover-image .wp-block-cover__inner-container {
	color: #ffffff;
}
.bwp-dark-style .bwp-content .wp-block-cover a,
.bwp-dark-style .bwp-content .wp-block-cover-image a,
.bwp-dark-style .bwp-content .wp-block-cover a:hover,
.bwp-dark-style .bwp-content .wp-block-cover-image a:hover {
	color: inherit;
}
.bwp-dark-style .bwp-content .wp-block-file a.wp-block-file__button {
	color: #ffffff;
	background: #050606;
}
.bwp-dark-style .bwp-content .wp-block-file a.wp-block-file__button:active,
.bwp-dark-style .bwp-content .wp-block-file a.wp-block-file__button:focus,
.bwp-dark-style .bwp-content .wp-block-file a.wp-block-file__button:hover {
	color: #ffffff;
	background: #6ca4db;
}
.bwp-dark-style .bwp-content .wp-block-file a.wp-block-file__button:visited {
	color: #ffffff;
	background: #050606;
}
.bwp-dark-style .bwp-content .wp-block-media-text.has-text-color .wp-block-media-text__content > * {
	color: inherit;
}
.bwp-dark-style .bwp-content .wp-block-button__link:not(.has-text-color) {
	color: #ffffff;
}
.bwp-dark-style .bwp-content .wp-block-button__link:not(.has-background) {
	background-color: #050606;
}
.bwp-dark-style .bwp-content .is-style-outline > .wp-block-button__link:not(.has-background),
.bwp-dark-style .bwp-content .wp-block-button__link.is-style-outline:not(.has-background) {
	background-color: transparent;
}
.bwp-dark-style .bwp-content .is-style-outline > .wp-block-button__link:not(.has-text-color),
.bwp-dark-style .bwp-content .wp-block-button__link.is-style-outline:not(.has-text-color) {
	color: #d6dade;
}
.bwp-dark-style .bwp-content .is-style-outline > .wp-block-button__link,
.bwp-dark-style .bwp-content .wp-block-button__link.is-style-outline {
	border-color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-separator {
	border-bottom-color: #2e3034;
}
.bwp-dark-style .bwp-content .wp-block-separator.is-style-dots::before {
	color: inherit;
}
.bwp-dark-style .bwp-content .wp-block-archives-list li {
	color: #858b91;
}
.bwp-dark-style .bwp-content .wp-block-archives-list li::before {
	color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-calendar table caption {
	color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-calendar table thead th {
	color: #d6dade;
	background: transparent;
}
.bwp-dark-style .bwp-content .wp-block-calendar table tbody td {
	color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-calendar .wp-calendar-nav a {
	color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-calendar .wp-calendar-nav a:hover,
.bwp-dark-style .bwp-content .wp-block-calendar .wp-calendar-nav a:focus {
	color: #6ca4db;
}
.bwp-dark-style .bwp-content .wp-block-categories-list li {
	color: #858b91;
}
.bwp-dark-style .bwp-content .wp-block-categories-list li::before {
	color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-latest-comments li {
	border-bottom-color: #2e3034;
}
.bwp-dark-style .bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
	color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta a {
	color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta a:hover,
.bwp-dark-style .bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta a:focus {
	color: #6ca4db;
}
.bwp-dark-style .bwp-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta time {
	color: #858b91;
}
.bwp-dark-style .bwp-content ul.wp-block-latest-posts > li {
	border-bottom-color: #2e3034;
}
.bwp-dark-style .bwp-content ul.wp-block-latest-posts > li > a {
	color: #eaedf1;
}
.bwp-dark-style .bwp-content ul.wp-block-latest-posts > li > a:hover,
.bwp-dark-style .bwp-content ul.wp-block-latest-posts > li > a:focus {
	color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-excerpt a,
.bwp-dark-style .bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-full-content a {
	color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-excerpt a:hover,
.bwp-dark-style .bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-excerpt a:focus,
.bwp-dark-style .bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-full-content a:hover,
.bwp-dark-style .bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-full-content a:focus {
	color: #6ca4db;
}
.bwp-dark-style .bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-author,
.bwp-dark-style .bwp-content .wp-block-latest-posts .wp-block-latest-posts__post-date {
	color: #858b91;
}
.bwp-dark-style .bwp-content .wp-block-rss > li {
	border-bottom-color: #2e3034;
}
.bwp-dark-style .bwp-content .wp-block-rss li .wp-block-rss__item-publish-date,
.bwp-dark-style .bwp-content .wp-block-rss li .wp-block-rss__item-author {
	color: #858b91;
}
.bwp-dark-style .bwp-content .wp-block-tag-cloud a .tag-link-count {
	color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-tag-cloud a:hover .tag-link-count,
.bwp-dark-style .bwp-content .wp-block-tag-cloud a:focus .tag-link-count {
	color: #6ca4db;
}
.bwp-dark-style .bwp-content .wp-block-search .wp-block-search__input {
	border-color: #2e3034;
}
.bwp-dark-style .bwp-content .wp-block-search .wp-block-search__input:hover,
.bwp-dark-style .bwp-content .wp-block-search .wp-block-search__input:focus {
	border-color: #6ca4db;
}
.bwp-dark-style .bwp-content .wp-block-search .wp-block-search__button {
	color: #ffffff;
	background: #050606;
}
.bwp-dark-style .bwp-content .wp-block-search .wp-block-search__button:hover,
.bwp-dark-style .bwp-content .wp-block-search .wp-block-search__button:focus {
	color: #ffffff;
	background: #6ca4db;
}
.bwp-dark-style .bwp-content .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
	background-color: #18191b;
	border-color: #2e3034;
}
.bwp-dark-style .bwp-content .wp-block-embed figcaption {
	color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-post-terms.has-text-color a,
.bwp-dark-style .bwp-content .wp-block-post-terms.has-text-color a:hover,
.bwp-dark-style .bwp-content .wp-block-post-terms.has-text-color a:focus {
	color: inherit;
}
.bwp-dark-style .bwp-content .wp-block-post-template .wp-block-post-title a {
	color: #eaedf1;
}
.bwp-dark-style .bwp-content .wp-block-post-template .wp-block-post-title a:hover,
.bwp-dark-style .bwp-content .wp-block-post-template .wp-block-post-title a:focus {
	color: #d6dade;
}
.bwp-dark-style .bwp-content .wp-block-query-pagination .page-numbers.current {
	color: #ffffff;
	background-color: #6ca4db;
}
.bwp-dark-style .bwp-content .wp-block-navigation button {
	color: currentColor;
}
.bwp-dark-style .bwp-content .wp-block-navigation .wp-block-navigation-item a,
.bwp-dark-style .bwp-content .wp-block-navigation .wp-block-navigation-item a:hover,
.bwp-dark-style .bwp-content .wp-block-navigation .wp-block-navigation-item a:focus {
	color: inherit;
}
.bwp-dark-style .bwp-content .wp-block-navigation .wp-block-navigation__submenu-container {
	color: inherit;
	border: none;
	box-shadow: 0 14px 28px -4px rgba(0,0,0,0.65);
}
.bwp-dark-style .bwp-content .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open {
	color: inherit;
}
.bwp-dark-style .bwp-content .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
	border: none;
	box-shadow: none;
}
.bwp-dark-style .bwp-content .wp-block-comment-template .wp-block-comment-date a,
.bwp-dark-style .bwp-content .wp-block-comment-template .wp-block-comment-edit-link a {
	color: #858b91;
}
.bwp-dark-style .bwp-content .wp-block-comment-template .wp-block-comment-date a:hover,
.bwp-dark-style .bwp-content .wp-block-comment-template .wp-block-comment-edit-link a:hover,
.bwp-dark-style .bwp-content .wp-block-comment-template .wp-block-comment-date a:focus,
.bwp-dark-style .bwp-content .wp-block-comment-template .wp-block-comment-edit-link a:focus {
	color: #6ca4db;
}
.bwp-dark-style .bwp-content .wp-block-comment-template .wp-block-comment-reply-link a {
	color: #858b91;
}
.bwp-dark-style .bwp-content .wp-block-comment-template .wp-block-comment-reply-link a:hover,
.bwp-dark-style .bwp-content .wp-block-comment-template .wp-block-comment-reply-link a:focus {
	color: #6ca4db;
}
.bwp-dark-style .bwp-content .wp-block-comments-pagination .page-numbers.current {
	color: #ffffff;
	background-color: #6ca4db;
}
.bwp-dark-style .bwp-content .wp-block-loginout form {
	border-color: #2e3034;
}

/* widget blocks */
.bwp-dark-style .bwp-sidebar-content .wp-block-group h1,
.bwp-dark-style .bwp-sidebar-content .wp-block-group h2,
.bwp-dark-style .bwp-sidebar-content .wp-block-group h3:not(.bwp-widget-title),
.bwp-dark-style .bwp-sidebar-content .wp-block-group h4,
.bwp-dark-style .bwp-sidebar-content .wp-block-group h5,
.bwp-dark-style .bwp-sidebar-content .wp-block-group h6,
.bwp-dark-style .bwp-sidebar-content .widget_block .widget-title {
	background-color: #18191b;
}
.bwp-dark-style .bwp-sidebar-content ul.wp-block-latest-posts > li {
	border-bottom-color: #2e3034;
}
.bwp-dark-style .bwp-sidebar-content ul.wp-block-latest-posts > li > a {
	color: #d6dade;
}
.bwp-dark-style .bwp-sidebar-content ul.wp-block-latest-posts > li > a:hover,
.bwp-dark-style .bwp-sidebar-content ul.wp-block-latest-posts > li > a:focus {
	color: #6ca4db;
}
.bwp-dark-style .bwp-sidebar-content .wp-block-latest-comments.has-dates li,
.bwp-dark-style .bwp-sidebar-content .wp-block-latest-comments.has-excerpts li,
.bwp-dark-style .bwp-sidebar-content .wp-block-latest-comments.has-avatars li {
	border-bottom-color: #2e3034;
}
.bwp-dark-style .bwp-sidebar-content .wp-block-rss > li {
	border-bottom-color: #2e3034;
}
.bwp-dark-style .bwp-sidebar-content .wp-block-search .wp-block-search__button {
	background: #18191b;
}
.bwp-dark-style .bwp-sidebar-content .wp-block-loginout form {
	background-color: #18191b;
}
.bwp-dark-style .bwp-sidebar-content .wp-block-loginout form .login-submit input[type="submit"] {
	background-color: #0b0b0c;
}
.bwp-dark-style .bwp-sidebar-content .wp-block-loginout form .login-submit input[type="submit"]:hover {
	background-color: #6ca4db;
}

/* contact form */
.bwp-dark-style .bwp-content .wpcf7 .wpcf7-form .wpcf7-spinner {
	background-color: #050606;
}
.bwp-dark-style .bwp-content .wpcf7 .wpcf7-form .wpcf7-spinner::before {
	background-color: #ffffff;
}
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="text"],
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="email"],
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="url"],
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="tel"],
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="number"],
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="date"],
.bwp-dark-style .bwp-sidebar-content .wpcf7 textarea,
.bwp-dark-style .bwp-sidebar-content .wpcf7 select {
	border-color: #18191b;
	border-bottom-color: #2e3034;
}
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="text"]:hover,
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="email"]:hover,
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="url"]:hover,
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="tel"]:hover,
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="number"]:hover,
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="date"]:hover,
.bwp-dark-style .bwp-sidebar-content .wpcf7 textarea:hover,
.bwp-dark-style .bwp-sidebar-content .wpcf7 select:hover,
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="text"]:focus,
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="email"]:focus,
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="url"]:focus,
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="tel"]:focus,
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="number"]:focus,
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="date"]:focus,
.bwp-dark-style .bwp-sidebar-content .wpcf7 textarea:focus,
.bwp-dark-style .bwp-sidebar-content .wpcf7 select:focus {
	border-color: #18191b;
	border-bottom-color: #6ca4db;
}
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="file"] {
	border-color: #2e3034;
}
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="file"]:hover,
.bwp-dark-style .bwp-sidebar-content .wpcf7 input[type="file"]:focus {
	border-color: #6ca4db;
}
.bwp-dark-style .bwp-sidebar-content button,
.bwp-dark-style .bwp-sidebar-content input[type="button"],
.bwp-dark-style .bwp-sidebar-content input[type="reset"],
.bwp-dark-style .bwp-sidebar-content input[type="submit"] {
	background-color: #18191b;
	color: #ffffff;
}
.bwp-dark-style .bwp-sidebar-content .wpcf7 .wpcf7-form .wpcf7-spinner {
	background-color: #18191b;
}

/* twitter x */
.bwp-dark-style .bwp-ah-twitter-link:hover,
.bwp-dark-style .bwp-ah-twitter-link:focus,
.bwp-dark-style .bwp-post-share-list .bwp-twitter-share:hover {
	color: #ffffff !important;
}
.bwp-dark-style .bwp-single-post-share-list .bwp-twitter-share {
	background-color: #000000;
}
.bwp-dark-style .bwp-single-post-share-list .bwp-twitter-share:hover {
	background-color: #090909;
}


/**
 * 18.0 - Responsive styles
 * -------------------------------------------------------------
 */

/* 1199px */
@media (max-width: 1199px) {

	/* header (type 1) */
	.bwp-header-container {
		padding-right: 15px;
		padding-left: 15px;
	}

	/* header (type 1): icons (search, color switch, and menu) */
	.bwp-header-search-container,
	.bwp-color-switch-icon,
	.bwp-main-menu-icon {
		margin-left: 0;
	}
	.bwp-header-search-icon,
	.bwp-color-switch-icon,
	.bwp-main-menu-icon {
		width: 48px;
	}
	.bwp-main-menu-icon span {
		right: 16px;
		left: 16px;
	}

	/* header (type 1): dropdown search form */
	.bwp-dropdown-search-container::after {
		right: 18px;
	}

	/* header: menu */
	.sf-menu a {
		padding-right: 8px;
		padding-left: 8px;
	}
	.sf-menu ul::after {
		right: 18px;
	}

	/* header (type 2) */
	.bwp-header-logo-row-container {
		padding-right: 15px;
		padding-left: 15px;
	}
	.bwp-header-nav-row-container {
		margin-right: 15px;
		margin-left: 15px;
	}
	.bwp-header-nav-row .bwp-main-menu-container {
		margin-left: 12px;
	}

	/* container with introductory text and background image */
	.bwp-intro-container {
		padding-right: 15px;
		padding-left: 15px;
	}
	.bwp-intro-bg {
		height: 540px;
	}

	/* container with posts */
	.bwp-posts-container {
		padding-right: 15px;
		padding-left: 15px;
	}
	.bwp-sidebar-left .bwp-posts-container {
		padding-left: 0;
	}
	.bwp-sidebar-right .bwp-posts-container {
		padding-right: 0;
	}

	/* metadata: author */
	.bwp-post-author-name .fn {
		max-width: 85px;
	}
	.bwp-no-avatars .bwp-post-author-name .fn {
		max-width: 131px; /* 85px name + 46px avatar img */
	}

	/* pagination */
	.pagination {
		padding-right: 15px;
		padding-left: 15px;
	}
	.bwp-sidebar-left .pagination {
		padding-left: 0;
	}
	.bwp-sidebar-right .pagination {
		padding-right: 0;
	}

	/* single page */
	.bwp-sidebar-right .bwp-sidebar-container,
	.bwp-sidebar-left .bwp-single-post-container {
		padding-right: 15px;
	}
	.bwp-sidebar-right .bwp-single-post-container,
	.bwp-sidebar-left .bwp-sidebar-container {
		padding-left: 15px;
	}
	.bwp-single-post-container.bwp-full-width-layout {
		padding-right: 15px;
		padding-left: 15px;
	}

	/* single page: post navigation */
	.post-navigation .nav-previous {
		padding-right: 10px;
	}
	.post-navigation .nav-next {
		padding-left: 10px;
	}

	/* page 404 */
	.bwp-page-404-container {
		margin-right: 15px;
		margin-left: 15px;
	}

	/* widgets */
	.widget_bwp_posts_slider_item figcaption,
	.widget_bwp_posts_list_item figcaption {
		max-width: 80%;
	}

	/* footer widgets */
	.bwp-footer-widgets-container {
		margin-right: 15px;
		margin-left: 15px;
	}

	/* footer */
	.bwp-footer-container {
		margin-right: 15px;
		margin-left: 15px;
	}

	/* footer: menu */
	.bwp-footer-menu {
		margin-right: -8px;
	}
	.bwp-footer-menu li a {
		padding-right: 8px;
		padding-left: 8px;
	}

}

/* 1142px */
@media (max-width: 1142px) {

	/* hide "back to top" button */
	#bwp-scroll-top {
		display: none;
	}

}

/* 991px */
@media (max-width: 991px) {

	/* body */
	.bwp-sticky-header-one-row {
		padding-top: 0;
	}
	.bwp-sticky-header-two-rows {
		padding-top: 0 !important;
	}

	/* header (type 1) */
	.bwp-sticky-header-one-row #bwp-header {
		position: static;
	}
	.bwp-sticky-header-one-row #bwp-header.bwp-animate-header {
		box-shadow: none !important;
	}
	.bwp-sticky-header-one-row .bwp-animate-header .bwp-logo-text,
	.bwp-sticky-header-one-row .bwp-animate-header .bwp-logo-container .custom-logo-link,
	.bwp-sticky-header-one-row .bwp-animate-header .bwp-header-search-icon,
	.bwp-sticky-header-one-row .bwp-animate-header .bwp-color-switch-icon,
	.bwp-sticky-header-one-row .bwp-animate-header .sf-menu a {
		line-height: 100px;
	}
	.bwp-sticky-header-one-row .bwp-animate-header .bwp-main-menu-icon {
		height: 100px;
	}

	/* header (type 1): icons (search, color switch, and menu) */
	.bwp-header-search-icon,
	.bwp-color-switch-icon,
	.bwp-main-menu-icon {
		width: 52px;
	}
	.bwp-main-menu-icon span {
		right: 18px;
		left: 18px;
	}

	/* header (type 1): dropdown search form */
	.bwp-dropdown-search-container::after {
		right: 20px;
	}

	/* header (type 2) */
	.bwp-sticky-header-two-rows .bwp-header-nav-row.bwp-enable-sticky-nav,
	.bwp-sticky-header-two-rows .bwp-header-nav-row.bwp-enable-sticky-nav-32 {
		position: static;
	}
	.bwp-sticky-header-two-rows .bwp-enable-sticky-nav .bwp-header-nav-row-container,
	.bwp-sticky-header-two-rows .bwp-enable-sticky-nav-32 .bwp-header-nav-row-container {
		box-shadow: none !important;
	}

	/* container with introductory text and background image */
	.bwp-intro-bg {
		height: 480px;
	}
	.bwp-intro-content {
		padding: 50px;
	}
	.bwp-intro-container:hover .bwp-intro-content {
		padding-bottom: 60px;
	}

	/* container with posts */
	.bwp-sidebar-left .bwp-posts-container {
		padding-left: 15px;
	}
	.bwp-sidebar-right .bwp-posts-container {
		padding-right: 15px;
	}

	/* masonry layout: 3 columns > 2 columns */
	.bwp-col-3-default {
		width: 50%;
	}
	.bwp-col-3 {
		width: 50%;
	}
	.bwp-col-3.bwp-width-2x {
		width: 100%;
	}

	/* metadata: author */
	.bwp-post-author-name .fn {
		max-width: 114px;
	}
	.bwp-no-avatars .bwp-post-author-name .fn {
		max-width: 160px; /* 114px name + 46px avatar img */
	}

	/* pagination */
	.bwp-sidebar-left .pagination {
		padding-left: 15px;
	}
	.bwp-sidebar-right .pagination {
		padding-right: 15px;
	}
	.pagination .nav-links .next.page-numbers {
		padding-left: 0;
	}
	.pagination .nav-links .prev.page-numbers {
		padding-right: 0;
	}

	/* archive heading (author page): social links */
	.bwp-author-heading-social-links > span {
		display: none;
	}

	/* single page */
	.bwp-single-post-container {
		padding-right: 15px !important;
		padding-left: 15px !important;
	}

	/* related posts, page posts */
	.bwp-show-3-related-posts .bwp-related-posts-list .post:last-child,
	.bwp-show-3-page-posts .bwp-page-posts-list .post:last-child {
		display: none; /* hide last post */
	}
	.bwp-page-posts.bwp-show-3-page-posts .post,
	.bwp-related-posts.bwp-show-3-related-posts .post {
		width: 50%;
	}

	/* sidebar */
	.bwp-sidebar-container {
		position: relative;
		margin-top: 0;
		margin-right: 15px;
		margin-left: 15px;
		padding-top: 60px;
		padding-right: 0 !important;
		padding-left: 0 !important;
		border-top: 1px solid #e3e5e6;
	}
	.bwp-sidebar-container::before {
		content: '';
		position: absolute;
		top: -2px;
		left: 0;
		z-index: 10;
		display: block;
		width: 40px;
		height: 2px;
		background-color: #2f3235;
	}
	.bwp-dark-style .bwp-sidebar-container {
		border-top-color: #2e3034;
	}
	.bwp-dark-style .bwp-sidebar-container::before {
		background-color: #d6dade;
	}

	/* widgets */
	.widget_calendar .wp-calendar-table {
		max-width: 45%;
		width: 100%;
	}
	.widget_bwp_posts_slider_item figcaption,
	.widget_bwp_posts_list_item figcaption {
		max-width: 40%;
	}

	/* footer */
	.bwp-footer-container {
		padding-bottom: 40px;
	}

	/* footer: copyright text (or some other text) */
	.bwp-footer-text {
		float: none;
		width: 100%;
		margin-bottom: 15px;
		padding-right: 0;
	}

	/* footer: social links */
	.bwp-footer-social-links {
		float: none;
		width: 100%;
		text-align: left;
		margin: -5px -8px 10px;
		padding-left: 0;
	}

	/* footer: menu */
	.bwp-footer-menu-wrap {
		float: none;
		width: 100%;
		margin-bottom: 15px;
		padding-left: 0;
	}
	.bwp-footer-menu {
		float: none;
		margin-right: -10px;
		margin-left: -10px;
	}
	.bwp-footer-menu li a {
		padding-right: 10px;
		padding-left: 10px;
	}

	/* "cookies information" window */
	.bwp-cookies-info-container {
		bottom: 15px;
		left: 15px;
	}

}

/* 781px */
@media (max-width: 781px) {

	/* block: columns */
	.bwp-content :where(.wp-block-columns.is-layout-flex) {
		gap: 0.5em !important;
	}

}

/* 767px */
@media (max-width: 767px) {

	/* metadata: author */
	.bwp-post-author-name .fn {
		max-width: 100px;
	}
	.bwp-no-avatars .bwp-post-author-name .fn {
		max-width: 146px; /* 100px name + 46px avatar img */
	}

	/* comments */
	.comment-list .children {
		padding-left: 25px;
	}

	/* widgets */
	.widget_bwp_posts_slider_item figcaption,
	.widget_bwp_posts_list_item figcaption {
		max-width: 45%;
	}

	/* "cookies information" window */
	.bwp-cookies-info-container {
		display: none;
		visibility: visible;
		opacity: 1;
		bottom: 0;
		left: 30px;
		width: calc(100% - 60px);
		box-shadow: 0 -14px 28px -4px rgba(14,17,20,0.15);
	}
	.bwp-dark-style .bwp-cookies-info-container {
		box-shadow: 0 -14px 28px -4px rgba(0,0,0,0.6);
	}
	.bwp-cookies-info-container.bwp-visible-on-mobile {
		display: block;
	}
	.bwp-cookies-info-container.bwp-hidden-on-mobile {
		visibility: hidden;
		opacity: 0;
		bottom: -10px;
	}
	.bwp-cookies-info-container.bwp-hidden {
		bottom: -10px;
	}
	.bwp-cookies-close-icon {
		display: block;
	}
	.bwp-mobile-cookies-info-icon {
		display: block;
		visibility: visible;
		opacity: 1;
	}
	.bwp-mobile-cookies-info-icon.bwp-hidden-on-mobile {
		visibility: hidden;
		opacity: 0;
	}

}

/* 720px */
@media (max-width: 720px) {

	/* header (type 2) */
	.bwp-header-logo-row-container {
		margin-top: 40px;
		margin-bottom: 40px;
	}

	/* container with introductory text and background image */
	.bwp-intro-container {
		margin-top: 40px;
	}
	.bwp-intro-content {
		padding: 30px;
	}
	.bwp-intro-container:hover .bwp-intro-content {
		padding-bottom: 40px;
	}

	/* archive heading */
	.bwp-archive-heading-container {
		margin-bottom: 40px;
		max-width: 450px;
	}
	.bwp-author-heading-container {
		margin-bottom: 40px;
	}
	.bwp-author-heading-avatar {
		margin-right: 20px;
	}

	/* container with posts */
	.bwp-posts-container {
		padding-top: 40px;
		padding-bottom: 0;
	}
	.bwp-masonry-item {
		float: none;
	}
	.bwp-masonry-container,
	.bwp-post-wrap {
		margin-right: 0;
	}

	/* masonry layout: 3 columns > 1 column */
	.bwp-col-3-default {
		width: 100%;
	}
	.bwp-col-3 {
		width: 100%;
	}
	.bwp-col-3.bwp-width-2x {
		width: 100%;
	}

	/* masonry layout: 2 columns > 1 column */
	.bwp-col-2-default {
		width: 100%;
	}
	.bwp-col-2 {
		width: 100%;
	}
	.bwp-col-2.bwp-width-2x {
		width: 100%;
	}

	/* metadata: author */
	.bwp-post-author-name .fn {
		max-width: 231px;
	}
	.bwp-no-avatars .bwp-post-author-name .fn {
		max-width: 277px; /* 231px name + 46px avatar img */
	}

	/* pagination */
	.pagination {
		margin-top: 10px;
	}

	/* single page */
	.bwp-single-post-container {
		margin-top: 40px;
		padding-bottom: 0;
	}
	.bwp-single-post-share > span {
		display: none;
	}

	/* WordPress content styles */
	.bwp-masonry-item .bwp-content .post-password-form input[type="submit"],
	.bwp-related-posts .bwp-content .post-password-form input[type="submit"],
	.bwp-page-posts .bwp-content .post-password-form input[type="submit"] {
		margin-left: 12px;
	}
	.bwp-masonry-item .bwp-content .post-password-form label,
	.bwp-related-posts .bwp-content .post-password-form label,
	.bwp-page-posts .bwp-content .post-password-form label {
		margin-bottom: 5px;
	}

	/* comments */
	.comment-list .children {
		padding-left: 20px;
	}

	/* related posts, page posts */
	.bwp-page-posts-list,
	.bwp-related-posts-list {
		margin-right: 0;
	}
	.bwp-page-posts .post,
	.bwp-related-posts .post {
		float: none;
	}
	.bwp-page-posts.bwp-show-2-page-posts .post,
	.bwp-related-posts.bwp-show-2-related-posts .post,
	.bwp-page-posts.bwp-show-3-page-posts .post,
	.bwp-related-posts.bwp-show-3-related-posts .post {
		width: 100%;
	}
	.bwp-show-3-related-posts .bwp-related-posts-list .post:last-child,
	.bwp-show-3-page-posts .bwp-page-posts-list .post:last-child {
		display: block;
	}

	/* page 404 */
	.bwp-page-404-container {
		margin-top: 40px;
		margin-bottom: 40px;
		padding: 120px 40px;
	}

	/* sidebar */
	.bwp-sidebar-container {
		padding-top: 40px;
		padding-bottom: 0;
	}

	/* widgets */
	.widget_calendar .wp-calendar-table {
		max-width: 60%;
	}

	/* footer widgets */
	.bwp-footer-widgets-container {
		padding-top: 40px;
		padding-bottom: 0;
	}

	/* footer */
	.bwp-footer-container {
		padding-top: 35px;
		padding-bottom: 20px;
	}

}

/* 699px */
@media (max-width: 699px) {

	/* block: latest posts */
	.bwp-content .wp-block-latest-posts.is-grid.columns-3 > li,
	.bwp-content .wp-block-latest-posts.is-grid.columns-4 > li,
	.bwp-content .wp-block-latest-posts.is-grid.columns-5 > li,
	.bwp-content .wp-block-latest-posts.is-grid.columns-6 > li {
		margin-right: 0;
		width: 100%; /* 1 column */
	}

	/* block: RSS */
	.bwp-content .wp-block-rss.is-grid.columns-4 > li,
	.bwp-content .wp-block-rss.is-grid.columns-5 > li,
	.bwp-content .wp-block-rss.is-grid.columns-6 > li {
		margin-right: 0;
		width: 100%; /* 1 column */
	}

}

/* 600px */
@media (max-width: 600px) {

	/* header (type 1): icons */
	.bwp-header-search-icon,
	.bwp-color-switch-icon,
	.bwp-main-menu-icon {
		width: 46px;
	}
	.bwp-main-menu-icon span {
		right: 15px;
		left: 15px;
	}

	/* header (type 1): dropdown containers (menu and search form) */
	.bwp-dropdown-search-container::after,
	.bwp-sm-main-menu-container::after {
		right: 17px;
	}

	/* container with introductory text and background image */
	.bwp-intro-bg {
		height: 450px;
	}
	.bwp-intro-heading h1 {
		font-size: 26px;
		line-height: 31px;
	}
	.bwp-intro-text {
		font-size: 16px;
		line-height: 26px;
	}

	/* metadata: author */
	.bwp-post-author-name .fn {
		max-width: 159px;
	}
	.bwp-no-avatars .bwp-post-author-name .fn {
		max-width: 205px; /* 159px name + 46px avatar img */
	}

	/* single page: hide image caption */
	.bwp-post-image-caption {
		display: none;
	}

	/* WordPress content styles */
	.gallery.gallery-columns-4 .gallery-item .gallery-caption {
		display: none;
	}
	.bwp-content .post-password-form p:last-child {
		margin-bottom: 20px;
	}
	.bwp-page-only-content .bwp-content .post-password-form p:last-child {
		margin-bottom: 15px;
	}
	.bwp-content .post-password-form label {
		display: block;
		margin-bottom: 10px;
	}
	.bwp-content .post-password-form input[type="submit"] {
		margin-left: 0;
		padding: 0 25px;
	}
	.bwp-masonry-item .bwp-content .post-password-form p:last-child,
	.bwp-related-posts .bwp-content .post-password-form p:last-child,
	.bwp-page-posts .bwp-content .post-password-form p:last-child {
		margin-bottom: 0;
	}
	.bwp-masonry-item .bwp-content .post-password-form label,
	.bwp-related-posts .bwp-content .post-password-form label,
	.bwp-page-posts .bwp-content .post-password-form label {
		margin-bottom: 10px;
	}
	.bwp-masonry-item .bwp-content .post-password-form input[type="submit"],
	.bwp-related-posts .bwp-content .post-password-form input[type="submit"],
	.bwp-page-posts .bwp-content .post-password-form input[type="submit"] {
		margin-left: 0;
	}
	/* block: pullquote */
	.bwp-content .wp-block-pullquote blockquote {
		max-width: 90%;
	}
	.bwp-content .wp-block-pullquote.is-style-solid-color blockquote {
		max-width: 80%;
	}
	/* block: latest posts */
	.bwp-content .wp-block-latest-posts.is-grid.columns-2 > li {
		margin-right: 0;
		width: 100%; /* 1 column */
	}
	/* block: RSS */
	.bwp-content .wp-block-rss.is-grid.columns-2 > li,
	.bwp-content .wp-block-rss.is-grid.columns-3 > li {
		margin-right: 0;
		width: 100%; /* 1 column */
	}

	/* comments */
	.comment-reply-title span,
	.comment-reply-title small {
		display: block;
	}
	.comment-reply-title small {
		float: none;
	}
	.comment-list .children {
		padding-left: 15px;
	}

	/* widgets */
	.widget_calendar .wp-calendar-table {
		max-width: 70%;
	}
	.widget_bwp_posts_slider_item figcaption,
	.widget_bwp_posts_list_item figcaption {
		max-width: 55%;
	}

}

/* 480px */
@media (max-width: 480px) {

	/* header (type 1) */
	.bwp-header-container {
		position: relative;
		margin-right: -10px;
	}
	.bwp-header-search-container,
	.bwp-header-sm-menu-container {
		position: static;
	}

	/* header (type 1): icons */
	.bwp-header-search-icon,
	.bwp-color-switch-icon,
	.bwp-main-menu-icon {
		width: 40px;
	}
	.bwp-main-menu-icon span {
		right: 12px;
		left: 12px;
	}
	.bwp-main-menu-icon::after {
		content: '';
		position: absolute;
		z-index: 1001;
		top: 100%;
		right: 13px;
		margin-top: -2px;
		border: 6px solid transparent;
		border-bottom: 6px solid #1f2123;
		opacity: 0;

		-webkit-transition: margin-top 0.2s ease, opacity 0.2s ease;
		-moz-transition: margin-top 0.2s ease, opacity 0.2s ease;
		-o-transition: margin-top 0.2s ease, opacity 0.2s ease;
		transition: margin-top 0.2s ease, opacity 0.2s ease;
	}
	.bwp-dark-style .bwp-main-menu-icon::after {
		border-bottom-color: #050606;
	}
	.bwp-main-menu-icon.bwp-active::after {
		margin-top: -11px;
		opacity: 1;
	}

	/* header (type 1): dropdown containers (menu and search form) */
	.bwp-dropdown-search-container,
	.bwp-sm-main-menu-container {
		right: -5px;
	}
	.bwp-dropdown-search-container::after {
		right: 33px;
	}
	.bwp-sm-main-menu-container::after {
		display: none;
	}

	/* header (type 2) */
	.bwp-header-nav-row-container {
		margin-right: -15px;
		margin-left: -15px;
		position: relative;
	}
	.bwp-header-nav-row .bwp-main-menu-icon::after {
		right: auto;
		left: 24px;
	}
	.bwp-header-nav-row .bwp-dropdown-search-container {
		right: 0;
	}

	/* container with introductory text and background image */
	.bwp-intro-container {
		margin-right: -15px;
		margin-left: -15px;
		padding-right: 0;
		padding-left: 0;
	}

	/* archive heading */
	.bwp-archive-heading-container,
	.bwp-author-heading-container {
		padding-right: 30px;
		padding-left: 30px;
	}
	.bwp-author-heading-avatar {
		display: none;
	}
	.bwp-author-heading-bio-wrap {
		height: auto;
		display: block;
	}

	/* container with posts */
	.bwp-posts-container {
		margin-right: -15px;
		margin-left: -15px;
		padding-right: 0;
		padding-left: 0;
	}
	.bwp-sidebar-left .bwp-posts-container {
		padding-left: 0;
	}
	.bwp-sidebar-right .bwp-posts-container {
		padding-right: 0;
	}

	/* metadata: author */
	.bwp-post-author-name .fn {
		max-width: 123px;
	}
	.bwp-no-avatars .bwp-post-author-name .fn {
		max-width: 169px; /* 123px name + 46px avatar img */
	}

	/* "no posts found" message */
	.bwp-no-results {
		padding-right: 30px;
		padding-left: 30px;
	}

	/* pagination */
	.pagination {
		margin-right: -15px;
		margin-left: -15px;
		padding-right: 0;
		padding-left: 0;
	}
	.bwp-sidebar-left .pagination {
		padding-left: 0;
	}
	.bwp-sidebar-right .pagination {
		padding-right: 0;
	}
	.pagination .nav-links .next.page-numbers,
	.pagination .nav-links .prev.page-numbers {
		display: none;
	}

	/* single page */
	.bwp-single-post-container {
		margin-right: -15px;
		margin-left: -15px;
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	/* single page: tags, social share icons, and counters */
	.bwp-single-post-share,
	.bwp-single-post-counters,
	.bwp-single-post-tags-counters .bwp-single-post-tags {
		width: 100%;
		float: none;
	}
	.bwp-single-post-counters,
	.bwp-single-post-tags-counters .bwp-single-post-counters {
		margin-bottom: 15px;
	}
	.bwp-single-post-counters-list {
		float: none;
		margin-left: -3px;
	}
	.bwp-single-post-tags-counters .bwp-single-post-counters-list {
		margin-top: -5px;
	}

	/* single page: container heading */
	.bwp-container-title {
		padding-right: 30px;
		padding-left: 30px;
	}

	/* single page: about the author */
	.bwp-about-author-avatar {
		margin-right: 15px;
	}
	.bwp-about-author-bio-wrap {
		padding-left: 87px;
	}

	/* comments */
	.comment-reply-title,
	.comments-title {
		padding-right: 30px;
		padding-left: 30px;
	}
	.comment-list li .comment-reply-title {
		padding-right: 0;
		padding-left: 0;
	}
	.comment-list .children {
		padding-left: 10px;
	}
	.comment-navigation .nav-previous {
		padding-right: 5px;
	}
	.comment-navigation .nav-next {
		padding-left: 5px;
	}

	/* page 404 */
	.bwp-page-404-container {
		margin-right: -15px;
		margin-left: -15px;
		padding-right: 30px;
		padding-left: 30px;
		text-align: left;
	}

	/* sidebar and widgets */
	.bwp-sidebar-col {
		padding-top: 1px;
		overflow: hidden;
	}
	.bwp-sidebar-container {
		margin-right: -15px;
		margin-left: -15px;
	}
	.bwp-widget {
		padding-right: 30px;
		padding-left: 30px;
	}
	.bwp-widget .bwp-widget-title {
		margin-right: -30px;
		margin-left: -30px;
		padding-right: 30px;
		padding-left: 30px;
	}
	.widget_calendar .wp-calendar-table {
		max-width: 85%;
	}
	.widget_bwp_posts_slider_item figcaption,
	.widget_bwp_posts_list_item figcaption {
		max-width: 70%;
	}

	/* footer widgets */
	#bwp-footer-widgets {
		padding-top: 1px;
		overflow: hidden;
	}
	.bwp-footer-widgets-container {
		margin-right: -15px;
		margin-left: -15px;
	}

	/* footer */
	#bwp-footer {
		padding-top: 1px;
		overflow: hidden;
	}
	.bwp-footer-container {
		margin-right: -15px;
		margin-left: -15px;
		padding-right: 30px;
		padding-left: 30px;
	}

}

/* 360px */
@media (max-width: 360px) {

	/* header (type 1) */
	.bwp-header-container {
		padding-right: 0;
		padding-left: 0;
	}

	/* header (type 1): dropdown search form */
	.bwp-dropdown-search-container {
		width: 250px;
	}
	.bwp-dropdown-search-container::after {
		right: 18px;
	}

	/* header (type 2) */
	.bwp-header-logo-row-container {
		padding-right: 0;
		padding-left: 0;
	}

	/* container with introductory text and background image */
	.bwp-intro-heading,
	.bwp-intro-text {
		padding-right: 15px;
		padding-left: 15px;
	}

	/* containers with content: reduce left and right indents to 15 pixels */
	pre,
	.bwp-intro-content,
	.bwp-archive-heading-container,
	.bwp-author-heading-container,
	.bwp-post-content,
	.bwp-no-results,
	.bwp-single-post-article .bwp-post-content,
	.bwp-container-title,
	.bwp-about-author,
	.comment-reply-title,
	.comments-title,
	.comment-form,
	.comment-list-wrap,
	.comments-area .no-comments,
	.comment-respond .must-log-in,
	.bwp-page-404-container,
	.bwp-widget,
	.bwp-footer-container {
		padding-right: 15px;
		padding-left: 15px;
	}

	/* metadata: author */
	.bwp-post-author-name .fn {
		max-width: 117px;
	}
	.bwp-no-avatars .bwp-post-author-name .fn {
		max-width: 163px; /* 117px name + 46px avatar img */
	}

	/* single page: full post content */
	/* "wide" and "full" blocks */
	.bwp-content .alignwide,
	.bwp-content .alignfull {
		margin-left: -15px !important;
		margin-right: -15px !important;
	}
	.bwp-sidebar-content.bwp-content .alignwide,
	.bwp-sidebar-content.bwp-content .alignfull {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.bwp-content h1.alignwide,
	.bwp-content h2.alignwide,
	.bwp-content h3.alignwide,
	.bwp-content h4.alignwide,
	.bwp-content h5.alignwide,
	.bwp-content h6.alignwide,
	.bwp-content h1.alignfull,
	.bwp-content h2.alignfull,
	.bwp-content h3.alignfull,
	.bwp-content h4.alignfull,
	.bwp-content h5.alignfull,
	.bwp-content h6.alignfull,
	.bwp-content .wp-block-table.alignwide figcaption,
	.bwp-content .wp-block-table.alignfull figcaption,
	.bwp-content .wp-block-image.alignwide figcaption,
	.bwp-content .wp-block-image.alignfull figcaption,
	.bwp-content .wp-block-gallery.alignwide .blocks-gallery-caption,
	.bwp-content .wp-block-gallery.alignfull .blocks-gallery-caption,
	.bwp-content .wp-block-video.alignwide figcaption,
	.bwp-content .wp-block-video.alignfull figcaption,
	.bwp-content .wp-block-file.alignwide,
	.bwp-content .wp-block-file.alignfull,
	.bwp-content .wp-block-buttons.alignwide,
	.bwp-content .wp-block-buttons.alignfull,
	.bwp-content .wp-block-columns.alignwide:not(.has-background),
	.bwp-content .wp-block-columns.alignfull:not(.has-background),
	.bwp-content .wp-block-archives-list.alignwide,
	.bwp-content .wp-block-archives-dropdown.alignwide,
	.bwp-content .wp-block-archives-list.alignfull,
	.bwp-content .wp-block-archives-dropdown.alignfull,
	.bwp-content .wp-block-calendar.alignwide,
	.bwp-content .wp-block-calendar.alignfull,
	.bwp-content .wp-block-categories-list.alignwide,
	.bwp-content .wp-block-categories-dropdown.alignwide,
	.bwp-content .wp-block-categories-list.alignfull,
	.bwp-content .wp-block-categories-dropdown.alignfull,
	.bwp-content .wp-block-latest-comments.alignwide,
	.bwp-content .wp-block-latest-comments.alignfull,
	.bwp-content ul.wp-block-latest-posts.alignwide,
	.bwp-content ul.wp-block-latest-posts.alignfull,
	.bwp-content .wp-block-rss.alignwide,
	.bwp-content .wp-block-rss.alignfull,
	.bwp-content .wp-block-tag-cloud.alignwide,
	.bwp-content .wp-block-tag-cloud.alignfull,
	.bwp-content .wp-block-embed.alignwide figcaption,
	.bwp-content .wp-block-embed.alignfull figcaption,
	.bwp-content .wp-block-details.alignwide,
	.bwp-content .wp-block-details.alignfull {
		padding-right: 15px;
		padding-left: 15px;
	}
	.bwp-content .wp-block-table.alignwide,
	.bwp-content .wp-block-table.alignfull {
		margin-left: -15px !important;
		margin-right: -15px !important;
	}
	.bwp-sidebar-content.bwp-content .wp-block-table.alignwide,
	.bwp-sidebar-content.bwp-content .wp-block-table.alignfull {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	/* text sizes */
	.bwp-body .bwp-content .has-large-font-size {
		font-size: 30px !important;
		line-height: 1.45;
	}
	.bwp-body .bwp-content .has-huge-font-size,
	.bwp-body .bwp-content .has-larger-font-size,
	.bwp-body .bwp-content .has-x-large-font-size {
		font-size: 35px !important;
		line-height: 1.35;
	}
	/* block: quote */
	.bwp-content .wp-block-quote:not(.is-large):not(.is-style-large):not(.is-style-plain) {
		padding-left: 15px;
	}
	.bwp-content .wp-block-quote.has-text-align-right:not(.is-large):not(.is-style-large):not(.is-style-plain) {
		padding-right: 15px;
	}
	/* block: pullquote */
	.bwp-content .wp-block-pullquote blockquote,
	.bwp-content .wp-block-pullquote.alignleft blockquote,
	.bwp-content .wp-block-pullquote.alignright blockquote,
	.bwp-content .wp-block-pullquote.is-style-solid-color.alignleft blockquote,
	.bwp-content .wp-block-pullquote.is-style-solid-color.alignright blockquote {
		max-width: 90%;
	}
	/* block: audio */
	.bwp-content .wp-block-audio audio {
		min-width: 230px;
	}
	/* block: cover */
	.bwp-content .wp-block-cover,
	.bwp-content .wp-block-cover-image {
		padding-right: 15px;
		padding-left: 15px;
	}
	/* block: calendar */
	.bwp-content .wp-block-calendar.alignleft table,
	.bwp-content .wp-block-calendar.alignright table {
		width: 230px;
	}
	/* block: search */
	.bwp-content .wp-block-search.alignleft,
	.bwp-content .wp-block-search.alignright {
		width: 230px;
	}
	/* block: login - out */
	.bwp-content .wp-block-loginout form {
		padding-right: 15px;
		padding-left: 15px;
	}

	/* single page: post navigation */
	.post-navigation .nav-previous {
		padding-right: 5px;
	}
	.post-navigation .nav-next {
		padding-left: 5px;
	}

	/* page 404 */
	.bwp-page-404-container {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	/* widgets */
	.bwp-widget .bwp-widget-title {
		margin-right: -15px;
		margin-left: -15px;
		padding-right: 15px;
		padding-left: 15px;
	}
	.widget_calendar .wp-calendar-table {
		max-width: 100%;
	}
	.widget_bwp_posts_slider_item figcaption,
	.widget_bwp_posts_list_item figcaption {
		max-width: 80%;
	}

	/* "cookies information" window */
	.bwp-cookies-info-container {
		left: 0;
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
	}
	.bwp-cookies-close-icon {
		top: -22px;
		right: 15px;
	}
	.bwp-cookies-info-content {
		padding-left: 25px;
	}
	.bwp-accept-cookies-btn {
		margin-left: 25px;
	}

}

/* 349px */
@media (max-width: 349px) {

	/* block: gallery */
	.bwp-content .wp-block-gallery .blocks-gallery-grid figcaption,
	.bwp-content .wp-block-gallery figure.wp-block-image figcaption {
		display: none;
	}

}

/* 320px */
@media (max-width: 320px) {

	/* metadata: author */
	.bwp-post-author-name .fn {
		max-width: 87px;
	}
	.bwp-no-avatars .bwp-post-author-name .fn {
		max-width: 133px; /* 87px name + 46px avatar img */
	}

	/* single page: full width layout */
	.bwp-full-width-layout .bwp-single-post-article .bwp-post-hover-buttons {
		display: none;
	}
	.bwp-full-width-layout .bwp-single-post-article .bwp-full-image .bwp-post-hover-buttons {
		display: block;
	}

	/* single page: post navigation */
	.post-navigation .nav-previous,
	.post-navigation .nav-next {
		width: 100%;
		float: none;
	}
	.post-navigation .nav-previous {
		padding-right: 0;
	}
	.post-navigation .nav-next {
		padding-left: 0;
		text-align: left;
	}

	/* single page: about the author */
	.bwp-about-author-avatar img {
		width: 46px;
		height: 46px !important;
		border-radius: 23px;
	}
	.bwp-about-author-avatar .bwp-avatar-bg-overlay {
		border-radius: 23px;
	}
	.bwp-about-author-bio-wrap {
		padding-left: 0;
	}
	.bwp-about-author-name {
		margin-bottom: 10px;
	}
	.bwp-about-author-name a {
		display: block;
	}
	.bwp-about-author-name .bwp-about-author-posts-num {
		display: block;
		margin-left: 0;
	}

	/* page 404 */
	.bwp-page-404-container {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	/* widgets */
	.bwp-widget.widget_bwp_posts_list,
	.bwp-widget.widget_bwp_posts_slider {
		padding-right: 0;
		padding-left: 0;
	}
	.bwp-widget.widget_bwp_posts_list .bwp-widget-title,
	.bwp-widget.widget_bwp_posts_slider .bwp-widget-title {
		margin-right: 0;
		margin-left: 0;
	}

	/* comments */
	.comment-list-wrap {
		overflow: hidden;
	}
	.comment-meta .comment-awaiting-moderation {
		margin-left: 0;
	}
	.comment-content,
	.comment-body .reply {
		padding-left: 0;
	}
	.comment-navigation {
		padding-top: 15px;
		padding-bottom: 5px;
	}
	.comment-navigation .nav-previous,
	.comment-navigation .nav-next {
		float: none;
		width: 100%;
		line-height: 1.3;
	}
	.comment-navigation .nav-previous {
		padding-right: 0;
	}
	.comment-navigation .nav-next {
		padding-left: 0;
		text-align: left;
	}
	.comment-navigation .nav-links a {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.comment-navigation .nav-previous i {
		display: none;
	}
	.comment-navigation .nav-previous a::after {
		font-family: 'Font Awesome 5 Free';
		font-weight: 900; /* solid style */
		content: '\f0da'; /* icon: caret-right */
		display: inline-block;
		font-style: normal;
		font-variant: normal;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		margin-left: 8px;
	}

}
