/* =Infinity Styles
-------------------------------------------------------------- */

.infinite-loader {
	color: #000;
	display: block;
	height: 28px;
	text-align: center;
}
#infinite-handle span {
	background: #333;
	border-radius: 1px;
	color: #f0f0f1;
	cursor: pointer;
	font-size: 13px;
	padding: 6px 16px;
}

/**
 * CSS Spinner Styles
 */
@keyframes spinner-inner {
	0% { opacity: 1 }
	100% { opacity: 0 }
}
.infinite-loader .spinner-inner div {
	left: 47px;
	top: 24px;
	position: absolute;
	animation: spinner-inner linear 1s infinite;
	background: #000000;
	outline: 1px solid white;
	width: 6px;
	height: 12px;
	border-radius: 3px / 6px;
	transform-origin: 3px 26px;
}
.infinite-loader .spinner-inner div:nth-child(1) {
	transform: rotate(0deg);
	animation-delay: -0.9166666666666666s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(2) {
	transform: rotate(30deg);
	animation-delay: -0.8333333333333334s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(3) {
	transform: rotate(60deg);
	animation-delay: -0.75s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(4) {
	transform: rotate(90deg);
	animation-delay: -0.6666666666666666s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(5) {
	transform: rotate(120deg);
	animation-delay: -0.5833333333333334s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(6) {
	transform: rotate(150deg);
	animation-delay: -0.5s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(7) {
	transform: rotate(180deg);
	animation-delay: -0.4166666666666667s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(8) {
	transform: rotate(210deg);
	animation-delay: -0.3333333333333333s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(9) {
	transform: rotate(240deg);
	animation-delay: -0.25s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(10) {
	transform: rotate(270deg);
	animation-delay: -0.16666666666666666s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(11) {
	transform: rotate(300deg);
	animation-delay: -0.08333333333333333s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(12) {
	transform: rotate(330deg);
	animation-delay: 0s;
	background: #000000;
}
.infinite-loader .spinner {
	width: 28px;
	height: 28px;
	display: inline-block;
	overflow: hidden;
	background: none;
}
.infinite-loader .spinner-inner {
	width: 100%;
	height: 100%;
	position: relative;
	transform: translateZ(0) scale(0.28);
	backface-visibility: hidden;
	transform-origin: 0 0; /* see note above */
}
.infinite-loader .spinner-inner div {
	box-sizing: content-box;
}

/**
 * Using a highly-specific rule to make sure that all button styles
 * will be reset
 */
#infinite-handle span button,
#infinite-handle span button:hover,
#infinite-handle span button:focus {
	display: inline;
	position: static;
	padding: 0;
	margin: 0;
	border: none;
	line-height: inherit;
	background: transparent;
	color: inherit;
	cursor: inherit;
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
}

/**
 * This is used to avoid unnecessary inner button spacing in Firefox
 */
#infinite-handle span button::-moz-focus-inner {
	margin: 0;
	padding: 0;
	border: none;
}

/**
 * For smaller viewports, remove the down-arrow icon and turn
 * the button into a block element, spanning the content's full width.
 */
@media (max-width: 800px) {
	#infinite-handle span:before {
		display: none;
	}
	#infinite-handle span {
		display: block;
	}
}

/**
 * Footer
 */
#infinite-footer {
	position: fixed;
		bottom: -50px;
		left: 0;
	width: 100%;
}
#infinite-footer a {
	text-decoration: none;
}
#infinite-footer .blog-info a:hover,
#infinite-footer .blog-credits a:hover {
	color: #444;
	text-decoration: underline;
}
#infinite-footer .container {
	background: rgba( 255, 255, 255, 0.8 );
	border-color: #ccc;
	border-color: rgba( 0, 0, 0, 0.1 );
	border-style: solid;
	border-width: 1px 0 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
	overflow: hidden;
	padding: 1px 20px;
	width: 780px;
}
#infinite-footer .blog-info,
#infinite-footer .blog-credits {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 25px;
}
#infinite-footer .blog-info {
	float: left;
	overflow: hidden;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 40%;
}
#infinite-footer .blog-credits {
	font-weight: normal;
	float: right;
	width: 60%;
}
#infinite-footer .blog-info a {
	color: #111;
	font-size: 14px;
	font-weight: bold;
}
#infinite-footer .blog-credits {
	color: #888;
	font-size: 12px;
	text-align: right;
}
#infinite-footer .blog-credits a {
	color: #646970;
}

/**
 * Hooks to infinity-end body class to restore footer
 */
.infinity-end.neverending #infinite-footer {
	display: none;
}

/**
 * Responsive structure for the footer
 */
@media (max-width: 640px) {
	#infinite-footer .container {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		width: 100%;
	}
	#infinite-footer .blog-info {
		width: 30%;
	}
	#infinite-footer .blog-credits {
		width: 70%;
	}
	#infinite-footer .blog-info a,
	#infinite-footer .blog-credits {
		font-size: 10px;
	}
}

/**
 * No fixed footer on small viewports
 */
@media ( max-width: 640px ) {
	#infinite-footer {
		position: static;
	}
}

/**
 * Hide infinite aria feedback visually
 */
#infinite-aria {
	position: absolute;
	overflow: hidden;
	clip: rect(0 0 0 0);
	height: 1px; width: 1px;
	margin: -1px; padding: 0; border: 0;
}

/**
 * Hide focus on infinite wrappers
 */
.infinite-wrap:focus {
	outline: 0 !important;
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/* Include */
/*--------------------------------------------------------------*/
@font-face {
	font-family: 'premiumkits-icons';
	src: url(/wp-content/plugins/premiumkits/assets/css/../fonts/premiumkits-icons.woff) format("woff"), url(/wp-content/plugins/premiumkits/assets/css/../fonts/premiumkits-icons.ttf) format("truetype"), url(/wp-content/plugins/premiumkits/assets/css/../fonts/premiumkits-icons.svg) format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

[class^="pk-icon-"],
[class*=" pk-icon-"] {
	font-family: 'premiumkits-icons' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pk-icon-twitter:before {
	content: "\e94c";
}

.pk-icon-alert-circle:before {
	content: "\e946";
}

.pk-icon-star-half:before {
	content: "\e938";
}

.pk-icon-star-full:before {
	content: "\e939";
}

.pk-icon-star-empty:before {
	content: "\e93a";
}

.pk-icon-discord:before {
	content: "\e947";
}

.pk-icon-tiktok:before {
	content: "\e948";
}

.pk-icon-mix:before {
	content: "\e93c";
}

.pk-icon-strava:before {
	content: "\e93b";
}

.pk-icon-microblog:before {
	content: "\e937";
}

.pk-icon-mastodon:before {
	content: "\e935";
}

.pk-icon-goodreads:before {
	content: "\e934";
}

.pk-icon-codepen:before {
	content: "\e924";
}

.pk-icon-medium:before {
	content: "\e906";
}

.pk-icon-premiumkits:before {
	content: "\e904";
}

.pk-icon-line:before {
	content: "\e90e";
}

.pk-icon-fb-messenger:before {
	content: "\e90a";
}

.pk-icon-pixelfed:before {
	content: "\e936";
}

.pk-icon-steam:before {
	content: "\e932";
}

.pk-icon-thumbtack:before {
	content: "\e933";
}

.pk-icon-tripadvisor:before {
	content: "\e931";
}

.pk-icon-slideshare:before {
	content: "\e925";
}

.pk-icon-producthunt:before {
	content: "\e930";
}

.pk-icon-meetup:before {
	content: "\e92f";
}

.pk-icon-houzz:before {
	content: "\e92e";
}

.pk-icon-deviantart:before {
	content: "\e92d";
}

.pk-icon-delicious:before {
	content: "\e92c";
}

.pk-icon-500px:before {
	content: "\e92b";
}

.pk-icon-bitbucket:before {
	content: "\e929";
}

.pk-icon-jsfiddle:before {
	content: "\e928";
}

.pk-icon-freecodecamp:before {
	content: "\e927";
}

.pk-icon-gitlab:before {
	content: "\e926";
}

.pk-icon-stackoverflow:before {
	content: "\e923";
}

.pk-icon-wechat:before {
	content: "\e91e";
}

.pk-icon-xing:before {
	content: "\e91c";
}

.pk-icon-ok:before {
	content: "\e91d";
}

.pk-icon-snapchat:before {
	content: "\e917";
}

.pk-icon-behance:before {
	content: "\f1b4";
}

.pk-icon-diamond:before {
	content: "\f219";
}

.pk-icon-dribbble:before {
	content: "\f17d";
}

.pk-icon-facebook:before {
	content: "\e949";
}

.pk-icon-feed:before {
	content: "\f09e";
}

.pk-icon-rss:before {
	content: "\f09e";
}

.pk-icon-get-pocket:before {
	content: "\f265";
}

.pk-icon-pocket:before {
	content: "\f265";
}

.pk-icon-google-plus:before {
	content: "\f0d5";
}

.pk-icon-googleplus:before {
	content: "\f0d5";
}

.pk-icon-linkedin:before {
	content: "\f0e1";
}

.pk-icon-map-marker:before {
	content: "\f041";
}

.pk-icon-phone:before {
	content: "\f095";
}

.pk-icon-viber:before {
	content: "\f095";
}

.pk-icon-pinterest:before {
	content: "\f0d2";
}

.pk-icon-retweet:before {
	content: "\f079";
}

.pk-icon-soundcloud:before {
	content: "\f1be";
}

.pk-icon-spotify:before {
	content: "\f1bc";
}

.pk-icon-stumbleupon:before {
	content: "\f1a4";
}

.pk-icon-tumblr:before {
	content: "\f173";
}

.pk-icon-old-twitter:before {
	content: "\f099";
}

.pk-icon-vimeo:before {
	content: "\f27d";
}

.pk-icon-vk:before {
	content: "\f189";
}

.pk-icon-vkontakte:before {
	content: "\f189";
}

.pk-icon-whatsapp:before {
	content: "\f232";
}

.pk-icon-youtube:before {
	content: "\e945";
}

.pk-icon-foursquare:before {
	content: "\e92a";
}

.pk-icon-yelp:before {
	content: "\e922";
}

.pk-icon-weibo:before {
	content: "\e91f";
}

.pk-icon-apple:before {
	content: "\e921";
}

.pk-icon-flickr:before {
	content: "\e918";
}

.pk-icon-bloglovin:before {
	content: "\e944";
}

.pk-icon-twitch:before {
	content: "\e905";
}

.pk-icon-flipboard:before {
	content: "\e94a";
}

.pk-icon-googlenews:before {
	content: "\e94b";
}

.pk-icon-github:before {
	content: "\e90f";
}

.pk-icon-instagram:before {
	content: "\e90c";
}

.pk-icon-telegram:before {
	content: "\e909";
}

.pk-icon-reddit:before {
	content: "\e90b";
}

.pk-icon-android:before {
	content: "\e920";
}

.pk-icon-link:before {
	content: "\e91b";
}

.pk-icon-globe:before {
	content: "\e91a";
}

.pk-icon-website:before {
	content: "\e91a";
}

.pk-icon-bell:before {
	content: "\e919";
}

.pk-icon-zoom-in:before {
	content: "\e916";
}

.pk-icon-check:before {
	content: "\e912";
}

.pk-icon-minus:before {
	content: "\e90d";
}

.pk-icon-chevron-right:before {
	content: "\e914";
}

.pk-icon-chevron-left:before {
	content: "\e915";
}

.pk-icon-x:before {
	content: "\e913";
}

.pk-icon-arrow-right-circle:before {
	content: "\e911";
}

.pk-icon-arrow-left-circle:before {
	content: "\e910";
}

.pk-icon-up:before {
	content: "\e908";
}

.pk-icon-comment:before {
	content: "\e900";
}

.pk-icon-refresh-cw:before {
	content: "\e902";
}

.pk-icon-reply:before {
	content: "\e903";
}

.pk-icon-like:before {
	content: "\e901";
}

.pk-icon-mail:before {
	content: "\e002";
}

.pk-icon-email:before {
	content: "\e002";
}

.pk-icon-video:before {
	content: "\e018";
}

.pk-icon-share:before {
	content: "\e93d";
}

.pk-icon-watch:before {
	content: "\e93f";
}

.pk-icon-eye:before {
	content: "\e93e";
}

.pk-icon-arrow-right:before {
	content: "\e940";
}

.pk-icon-arrow-left:before {
	content: "\e941";
}

.pk-icon-arrow-down:before {
	content: "\e942";
}

.pk-icon-arrow-up:before {
	content: "\e943";
}

.pk-container {
	width: 100%;
	padding-right: 20px;
	padding-left: 20px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.pk-container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.pk-container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.pk-container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.pk-container {
		max-width: 1140px;
	}
}

.pk-container-fluid {
	width: 100%;
	padding-right: 20px;
	padding-left: 20px;
	margin-right: auto;
	margin-left: auto;
}

.pk-row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
	margin-left: -20px;
}

.pk-col-1, .pk-col-2, .pk-col-3, .pk-col-4, .pk-col-5, .pk-col-6, .pk-col-7, .pk-col-8, .pk-col-9, .pk-col-10, .pk-col-11, .pk-col-12, .pk-col-sm-1, .pk-col-sm-2, .pk-col-sm-3, .pk-col-sm-4, .pk-col-sm-5, .pk-col-sm-6, .pk-col-sm-7, .pk-col-sm-8, .pk-col-sm-9, .pk-col-sm-10, .pk-col-sm-11, .pk-col-sm-12, .pk-col-md-1, .pk-col-md-2, .pk-col-md-3, .pk-col-md-4, .pk-col-md-5, .pk-col-md-6, .pk-col-md-7, .pk-col-md-8, .pk-col-md-9, .pk-col-md-10, .pk-col-md-11, .pk-col-md-12, .pk-col-lg-1, .pk-col-lg-2, .pk-col-lg-3, .pk-col-lg-4, .pk-col-lg-5, .pk-col-lg-6, .pk-col-lg-7, .pk-col-lg-8, .pk-col-lg-9, .pk-col-lg-10, .pk-col-lg-11, .pk-col-lg-12, .pk-col-xl-1, .pk-col-xl-2, .pk-col-xl-3, .pk-col-xl-4, .pk-col-xl-5, .pk-col-xl-6, .pk-col-xl-7, .pk-col-xl-8, .pk-col-xl-9, .pk-col-xl-10, .pk-col-xl-11, .pk-col-xl-12 {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 20px;
	padding-left: 20px;
}

.pk-col-1 {
	flex: 0 0 8.3333333333%;
	max-width: 8.3333333333%;
}

.pk-col-2 {
	flex: 0 0 16.6666666667%;
	max-width: 16.6666666667%;
}

.pk-col-3 {
	flex: 0 0 25%;
	max-width: 25%;
}

.pk-col-4 {
	flex: 0 0 33.3333333333%;
	max-width: 33.3333333333%;
}

.pk-col-5 {
	flex: 0 0 41.6666666667%;
	max-width: 41.6666666667%;
}

.pk-col-6 {
	flex: 0 0 50%;
	max-width: 50%;
}

.pk-col-7 {
	flex: 0 0 58.3333333333%;
	max-width: 58.3333333333%;
}

.pk-col-8 {
	flex: 0 0 66.6666666667%;
	max-width: 66.6666666667%;
}

.pk-col-9 {
	flex: 0 0 75%;
	max-width: 75%;
}

.pk-col-10 {
	flex: 0 0 83.3333333333%;
	max-width: 83.3333333333%;
}

.pk-col-11 {
	flex: 0 0 91.6666666667%;
	max-width: 91.6666666667%;
}

.pk-col-12 {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width: 576px) {
	.pk-col-sm-1 {
		flex: 0 0 8.3333333333%;
		max-width: 8.3333333333%;
	}
	.pk-col-sm-2 {
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}
	.pk-col-sm-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.pk-col-sm-4 {
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}
	.pk-col-sm-5 {
		flex: 0 0 41.6666666667%;
		max-width: 41.6666666667%;
	}
	.pk-col-sm-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.pk-col-sm-7 {
		flex: 0 0 58.3333333333%;
		max-width: 58.3333333333%;
	}
	.pk-col-sm-8 {
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}
	.pk-col-sm-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}
	.pk-col-sm-10 {
		flex: 0 0 83.3333333333%;
		max-width: 83.3333333333%;
	}
	.pk-col-sm-11 {
		flex: 0 0 91.6666666667%;
		max-width: 91.6666666667%;
	}
	.pk-col-sm-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 768px) {
	.pk-col-md-1 {
		flex: 0 0 8.3333333333%;
		max-width: 8.3333333333%;
	}
	.pk-col-md-2 {
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}
	.pk-col-md-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.pk-col-md-4 {
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}
	.pk-col-md-5 {
		flex: 0 0 41.6666666667%;
		max-width: 41.6666666667%;
	}
	.pk-col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.pk-col-md-7 {
		flex: 0 0 58.3333333333%;
		max-width: 58.3333333333%;
	}
	.pk-col-md-8 {
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}
	.pk-col-md-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}
	.pk-col-md-10 {
		flex: 0 0 83.3333333333%;
		max-width: 83.3333333333%;
	}
	.pk-col-md-11 {
		flex: 0 0 91.6666666667%;
		max-width: 91.6666666667%;
	}
	.pk-col-md-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 992px) {
	.pk-col-lg-1 {
		flex: 0 0 8.3333333333%;
		max-width: 8.3333333333%;
	}
	.pk-col-lg-2 {
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}
	.pk-col-lg-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.pk-col-lg-4 {
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}
	.pk-col-lg-5 {
		flex: 0 0 41.6666666667%;
		max-width: 41.6666666667%;
	}
	.pk-col-lg-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.pk-col-lg-7 {
		flex: 0 0 58.3333333333%;
		max-width: 58.3333333333%;
	}
	.pk-col-lg-8 {
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}
	.pk-col-lg-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}
	.pk-col-lg-10 {
		flex: 0 0 83.3333333333%;
		max-width: 83.3333333333%;
	}
	.pk-col-lg-11 {
		flex: 0 0 91.6666666667%;
		max-width: 91.6666666667%;
	}
	.pk-col-lg-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 1200px) {
	.pk-col-xl-1 {
		flex: 0 0 8.3333333333%;
		max-width: 8.3333333333%;
	}
	.pk-col-xl-2 {
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}
	.pk-col-xl-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.pk-col-xl-4 {
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}
	.pk-col-xl-5 {
		flex: 0 0 41.6666666667%;
		max-width: 41.6666666667%;
	}
	.pk-col-xl-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.pk-col-xl-7 {
		flex: 0 0 58.3333333333%;
		max-width: 58.3333333333%;
	}
	.pk-col-xl-8 {
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}
	.pk-col-xl-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}
	.pk-col-xl-10 {
		flex: 0 0 83.3333333333%;
		max-width: 83.3333333333%;
	}
	.pk-col-xl-11 {
		flex: 0 0 91.6666666667%;
		max-width: 91.6666666667%;
	}
	.pk-col-xl-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.pk-d-none {
	display: none;
}

.pk-clearfix {
	clear: both;
}

.pk-clearfix:after {
	content: '';
	clear: both;
	display: table;
}

.pk-post-meta {
	--pk-post-meta-color: #dee2e6;
	padding-left: 0;
	list-style: none;
	color: var(--pk-post-meta-color);
	padding: 0;
	margin: 0;
}

.pk-post-meta > li {
	display: inline-block;
}

.pk-post-meta > li:not(:last-child) {
	margin-right: 0.5rem;
}

.pk-post-meta li + li:before {
	margin-right: 0.5rem;
	content: "\b7";
}

.pk-post-meta .pk-icon {
	margin-right: 0.25rem;
}

.pk-meta-category .post-categories {
	padding-left: 0;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pk-meta-category .post-categories > li {
	display: inline-block;
}

.pk-meta-category .post-categories > li:not(:last-child) {
	margin-right: 0.5rem;
}

.pk-meta-category .post-categories li:not(:last-child):after {
	content: ",";
}

.post-meta .pk-meta-category .post-categories {
	margin-bottom: 0;
}

.pk-meta-author span + a,
.pk-meta-author a + span {
	margin-left: 0.25rem;
}

/* Blocks */
/*--------------------------------------------------------------*/
.wp-block-button.is-pk-button-full-width,
.entry-content .wp-block-button.is-pk-button-full-width {
	width: 100%;
}

.wp-block-button.is-pk-button-full-width .wp-block-button__link,
.entry-content .wp-block-button.is-pk-button-full-width .wp-block-button__link {
	width: 100%;
}

.wp-block-button.is-pk-button-size-sm .wp-block-button__link,
.entry-content .wp-block-button.is-pk-button-size-sm .wp-block-button__link {
	padding: 0.25rem 0.5rem;
}

.wp-block-button.is-pk-button-size-lg .wp-block-button__link,
.entry-content .wp-block-button.is-pk-button-size-lg .wp-block-button__link {
	padding: 1rem 2rem;
}

/* Color Styles */
/*--------------------------------------------------------------*/
.pk-color-primary {
	--pk-primary-color: #343a40;
	color: var(--pk-primary-color);
}

.pk-color-secondary {
	--pk-secondary-color: #A0A0A0;
	color: var(--pk-secondary-color);
}

.pk-bg-primary {
	--pk-primary-background: #343a40;
	background-color: var(--pk-primary-background);
}

.pk-bg-overlay {
	--pk-overlay-background: rgba(52, 58, 64, 0.5);
	background-color: var(--pk-overlay-background);
}

/* Font Styles */
/*--------------------------------------------------------------*/
.pk-font-primary {
	--pk-primary-font-weight: 700;
	font-weight: var(--pk-primary-font-weight);
}

.pk-font-secondary {
	--pk-secondary-font-size: 80%;
	--pk-secondary-font-color: #6c757d;
	font-size: var(--pk-secondary-font-size);
	color: var(--pk-secondary-font-color);
}

.pk-font-heading {
	--pk-heading-font-weight: 700;
	--pk-heading-font-color: #212529;
	font-weight: var(--pk-heading-font-weight);
	color: var(--pk-heading-font-color);
}

/* Background */
/*--------------------------------------------------------------*/
.pk-bg-primary {
	background-color: #007bff;
}

a.pk-bg-primary:hover, a.pk-bg-primary:focus,
button.pk-bg-primary:hover,
button.pk-bg-primary:focus {
	background-color: #0062cc;
}

.pk-bg-secondary {
	background-color: #A0A0A0;
}

a.pk-bg-secondary:hover, a.pk-bg-secondary:focus,
button.pk-bg-secondary:hover,
button.pk-bg-secondary:focus {
	background-color: #878686;
}

.pk-bg-success {
	background-color: #28a745;
}

a.pk-bg-success:hover, a.pk-bg-success:focus,
button.pk-bg-success:hover,
button.pk-bg-success:focus {
	background-color: #1e7e34;
}

.pk-bg-info {
	background-color: #17a2b8;
}

a.pk-bg-info:hover, a.pk-bg-info:focus,
button.pk-bg-info:hover,
button.pk-bg-info:focus {
	background-color: #117a8b;
}

.pk-bg-warning {
	background-color: #ffc107;
}

a.pk-bg-warning:hover, a.pk-bg-warning:focus,
button.pk-bg-warning:hover,
button.pk-bg-warning:focus {
	background-color: #d39e00;
}

.pk-bg-danger {
	background-color: #dc3545;
}

a.pk-bg-danger:hover, a.pk-bg-danger:focus,
button.pk-bg-danger:hover,
button.pk-bg-danger:focus {
	background-color: #bd2130;
}

.pk-bg-light {
	background-color: #f8f9fa;
}

a.pk-bg-light:hover, a.pk-bg-light:focus,
button.pk-bg-light:hover,
button.pk-bg-light:focus {
	background-color: #dae0e5;
}

.pk-bg-dark {
	background-color: #343a40;
}

a.pk-bg-dark:hover, a.pk-bg-dark:focus,
button.pk-bg-dark:hover,
button.pk-bg-dark:focus {
	background-color: #1d2124;
}

.pk-bg-white {
	--pk-bg-white: #fff;
	background-color: var(--pk-bg-white);
}

.pk-bg-transparent {
	--pk-bg-transparent: transparent;
	background-color: var(--pk-bg-transparent);
}

/* Alerts */
/*--------------------------------------------------------------*/
.pk-alert {
	--pk-alert-background: #f8f9fa;
	--pk-alert-heading-color: inherit;
	--pk-alert-close-color: #000;
	--pk-alert-close-hover-color: #000;
	--pk-alert-font-size: 1.6rem;
	--pk-alert-link-font-weight: 700;
	--pk-alert-close-font-size: 1rem;
	--pk-alert-close-line-height: 1;
	--pk-alert-close-text-shadow: 0 1px 0 #fff;
	--pk-alert-close-opacity: .75;
}

/*--------------------------------------------------------------*/
.pk-alert {
	position: relative;
	padding: 0.5rem 1rem;
	margin-bottom: 1rem;
	background: var(--pk-alert-background);
	font-size: var(--pk-alert-font-size);
}

.pk-alert a {
	text-decoration: underline;
	text-shadow: none;
	border: none;
}

.pk-alert a:hover {
	text-decoration: none;
	text-shadow: none;
	border: none;
}

.pk-alert p {
	margin-bottom: 0.5rem;
}

.pk-alert > *:last-child {
	margin-bottom: 0;
}

.pk-alert-multiline {
	padding: 1.25rem 1.75rem;
}

.pk-alert-heading {
	color: var(--pk-alert-heading-color);
}

.pk-alert-link {
	font-weight: var(--pk-alert-link-font-weight);
}

.pk-alert-dismissible {
	padding-right: 4rem;
}

.pk-alert-dismissible .pk-close {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	padding: 0 1rem;
	color: inherit;
}

.pk-close {
	float: right;
	font-size: var(--pk-alert-close-font-size);
	line-height: var(--pk-alert-close-line-height);
	color: var(--pk-alert-close-color);
	text-shadow: var(--pk-alert-close-text-shadow);
	opacity: var(--pk-alert-close-opacity);
}

.pk-close:hover, .pk-close:focus {
	color: var(--pk-alert-close-hover-color);
	text-decoration: none;
	opacity: 1;
}

button.pk-close {
	padding: 0;
	text-decoration: none !important;
	border: none !important;
	-webkit-appearance: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

.pk-alert-primary {
	border-left: #007bff 2px solid;
}

.pk-alert-primary .pk-icon-close,
.pk-alert-primary .pk-alert-title {
	color: #0062cc;
}

.pk-alert-secondary {
	border-left: #A0A0A0 2px solid;
}

.pk-alert-secondary .pk-icon-close,
.pk-alert-secondary .pk-alert-title {
	color: #878686;
}

.pk-alert-success {
	border-left: #28a745 2px solid;
}

.pk-alert-success .pk-icon-close,
.pk-alert-success .pk-alert-title {
	color: #1e7e34;
}

.pk-alert-info {
	border-left: #17a2b8 2px solid;
}

.pk-alert-info .pk-icon-close,
.pk-alert-info .pk-alert-title {
	color: #117a8b;
}

.pk-alert-warning {
	border-left: #ffc107 2px solid;
}

.pk-alert-warning .pk-icon-close,
.pk-alert-warning .pk-alert-title {
	color: #d39e00;
}

.pk-alert-danger {
	border-left: #dc3545 2px solid;
}

.pk-alert-danger .pk-icon-close,
.pk-alert-danger .pk-alert-title {
	color: #bd2130;
}

.pk-alert-light {
	border-left: #f8f9fa 2px solid;
}

.pk-alert-light .pk-icon-close,
.pk-alert-light .pk-alert-title {
	color: #dae0e5;
}

.pk-alert-dark {
	border-left: #343a40 2px solid;
}

.pk-alert-dark .pk-icon-close,
.pk-alert-dark .pk-alert-title {
	color: #1d2124;
}

/* ToolTip */
/*--------------------------------------------------------------*/
.pk-tippy .pk-alert {
	display: none;
}

.tippy-content .pk-alert {
	border: none;
	background: none;
	color: inherit;
	font-size: inherit;
	padding: 0;
	margin: 0;
	max-width: 600px;
}

/* Badges */
/*--------------------------------------------------------------*/
.pk-badge {
	--pk-badge-background: #f8f9fa;
	--pk-badge-color: inherit;
	--pk-badge-primary-background: #00A0D2;
	--pk-badge-primary-color: #FFFFFF;
	--pk-badge-light-background: #FFFFFF;
	--pk-badge-light-color: #000000;
	--pk-badge-border-radius: 30px;
	--pk-badge-font-size: 75%;
	--pk-badge-line-height: 1;
}

/*--------------------------------------------------------------*/
.pk-badge {
	background: var(--pk-badge-background);
	color: var(--pk-badge-color);
	display: inline-block;
	padding: 0.3em 0.6em;
	font-size: var(--pk-badge-font-size);
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: var(--pk-badge-border-radius);
	text-transform: uppercase;
	line-height: var(--pk-badge-line-height);
}

.pk-badge:empty {
	display: none;
}

.menu-item .pk-badge {
	margin-left: 0.5rem;
}

.pk-button .pk-badge {
	position: relative;
	top: -1px;
}

.pk-badge-primary {
	background: rgba(0, 123, 255, 0.1);
	color: #0056b3;
}

.pk-badge-secondary {
	background: rgba(160, 160, 160, 0.1);
	color: #7a7a7a;
}

.pk-badge-success {
	background: rgba(40, 167, 69, 0.1);
	color: #19692c;
}

.pk-badge-info {
	background: rgba(23, 162, 184, 0.1);
	color: #0f6674;
}

.pk-badge-warning {
	background: rgba(255, 193, 7, 0.1);
	color: #ba8b00;
}

.pk-badge-danger {
	background: rgba(220, 53, 69, 0.1);
	color: #a71d2a;
}

.pk-badge-light {
	background: rgba(248, 249, 250, 0.1);
	color: #cbd3da;
}

.pk-badge-dark {
	background: rgba(52, 58, 64, 0.1);
	color: #121416;
}

.pk-badge-primary {
	background: var(--pk-badge-primary-background);
	color: var(--pk-badge-primary-color);
}

.pk-badge-light {
	background: var(--pk-badge-light-background);
	color: var(--pk-badge-light-color);
}

/* Tippy */
/*--------------------------------------------------------------*/
.tippy-tooltip {
	color: #fff;
}

.tippy-tooltip a {
	text-decoration: underline;
	color: inherit;
}

.tippy-tooltip a:hover {
	text-decoration: none;
	color: inherit;
}

/* Flickity */
/*--------------------------------------------------------------*/
[pk-flickity="init"] {
	--pk-flickity-button-background: hsla(0, 0%, 100%, 0.75);
	--pk-flickity-button-color: #333;
	--pk-flickity-button-hover-background: white;
	--pk-flickity-button-focus-box-shadow: 0 0 0 5px #19F;
	--pk-flickity-button-active-opacity: 0.6;
	--pk-flickity-button-disabled-opacity: 0.3;
	--pk-flickity-button-icon-fill: #333;
	--pk-flickity-prev-next-border-radius: 50%;
	--pk-flickity-page-info-font-size: .75rem;
	--pk-flickity-page-info-line-height: 1;
	--pk-flickity-dot-width: 10px;
	--pk-flickity-dot-height: 10px;
	--pk-flickity-dot-margin: 0 3px;
	--pk-flickity-dot-background: #333;
	--pk-flickity-dot-border-radius: 50%;
	--pk-flickity-dot-opacity: 0.25;
}

[pk-flickity="init"].flickity-enabled {
	position: relative;
	padding-bottom: 0;
}

[pk-flickity="init"].flickity-enabled:focus {
	outline: none;
}

[pk-flickity="init"].flickity-enabled.is-animate .flickity-viewport {
	transition: height 0.2s;
}

[pk-flickity="init"].flickity-enabled.is-draggable {
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

[pk-flickity="init"].flickity-enabled.is-draggable .flickity-viewport {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}

[pk-flickity="init"].flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

[pk-flickity="init"] .flickity-viewport {
	overflow: hidden;
	position: relative;
	height: 100%;
}

[pk-flickity="init"] .flickity-slider {
	position: absolute;
	width: 100%;
	height: 100%;
}

[pk-flickity="init"] .flickity-button {
	position: absolute;
	background: var(--pk-flickity-button-background);
	border: none;
	color: var(--pk-flickity-button-color);
}

[pk-flickity="init"] .flickity-button:hover {
	background: var(--pk-flickity-button-hover-background);
	cursor: pointer;
}

[pk-flickity="init"] .flickity-button:focus {
	outline: none;
	box-shadow: var(--pk-flickity-button-focus-box-shadow);
}

[pk-flickity="init"] .flickity-button:active {
	opacity: var(--pk-flickity-button-active-opacity);
}

[pk-flickity="init"] .flickity-button:disabled {
	opacity: var(--pk-flickity-button-disabled-opacity);
	cursor: auto;
	/* prevent disabled button from capturing pointer up event. #716 */
	pointer-events: none;
}

[pk-flickity="init"] .flickity-button-icon {
	fill: var(--pk-flickity-button-icon-fill);
}

[pk-flickity="init"] .flickity-prev-next-button {
	top: 50%;
	width: 44px;
	height: 44px;
	border-radius: var(--pk-flickity-prev-next-border-radius);
	/* vertically center */
	margin-top: -22px;
}

[pk-flickity="init"] .flickity-prev-next-button.previous {
	left: 1rem;
}

[pk-flickity="init"] .flickity-prev-next-button.next {
	right: 1rem;
}

[pk-flickity="init"] .flickity-rtl .flickity-prev-next-button.previous {
	left: auto;
	right: 10px;
}

[pk-flickity="init"] .flickity-rtl .flickity-prev-next-button.next {
	right: auto;
	left: 10px;
}

[pk-flickity="init"] .flickity-prev-next-button .flickity-button-icon {
	position: absolute;
	left: 30%;
	top: 30%;
	width: 40%;
	height: 40%;
}

[pk-flickity="init"] [data-sg-page-info="true"],
[pk-flickity="init"] [data-sg-page-dots="true"] {
	padding-bottom: 50px;
}

[pk-flickity="init"] [data-sg-page-info="true"] .flickity-prev-next-button,
[pk-flickity="init"] [data-sg-page-dots="true"] .flickity-prev-next-button {
	/* vertically center */
	margin-top: -52px;
}

[pk-flickity="init"] .flickity-pages {
	position: relative;
}

[pk-flickity="init"] .flickity-page-info {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	font-size: var(--pk-flickity-page-info-font-size);
	line-height: var(--pk-flickity-page-info-line-height);
}

[pk-flickity="init"] .flickity-page-info span:not(:last-child) {
	margin-right: .25rem;
}

[pk-flickity="init"] .flickity-page-dots {
	padding: 1rem 3rem 0;
	list-style: none;
	text-align: center;
	list-style: none;
	text-align: center;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
}

[pk-flickity="init"] .flickity-rtl .flickity-page-dots {
	direction: rtl;
}

[pk-flickity="init"] .flickity-page-dots .dot {
	display: inline-block;
	width: var(--pk-flickity-dot-width);
	height: var(--pk-flickity-dot-height);
	margin: var(--pk-flickity-dot-margin);
	background: var(--pk-flickity-dot-background);
	border-radius: var(--pk-flickity-dot-border-radius);
	opacity: var(--pk-flickity-dot-opacity);
	cursor: pointer;
}

[pk-flickity="init"] .flickity-page-dots .dot.is-selected {
	opacity: 1;
}
@charset "UTF-8";.wp-block-archives{box-sizing:border-box}.wp-block-archives-dropdown label{display:block}.wp-block-avatar{line-height:0}.wp-block-avatar,.wp-block-avatar img{box-sizing:border-box}.wp-block-avatar.aligncenter{text-align:center}.wp-block-audio{box-sizing:border-box}.wp-block-audio figcaption{margin-bottom:1em;margin-top:.5em}.wp-block-audio audio{min-width:300px;width:100%}.wp-block-button__link{box-sizing:border-box;cursor:pointer;display:inline-block;text-align:center;word-break:break-word}.wp-block-button__link.aligncenter{text-align:center}.wp-block-button__link.alignright{text-align:right}:where(.wp-block-button__link){border-radius:9999px;box-shadow:none;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}.wp-block-button[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons>.wp-block-button.has-custom-width{max-width:none}.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link{width:100%}.wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons>.wp-block-button.wp-block-button__width-25{width:calc(25% - var(--wp--style--block-gap, .5em)*.75)}.wp-block-buttons>.wp-block-button.wp-block-button__width-50{width:calc(50% - var(--wp--style--block-gap, .5em)*.5)}.wp-block-buttons>.wp-block-button.wp-block-button__width-75{width:calc(75% - var(--wp--style--block-gap, .5em)*.25)}.wp-block-buttons>.wp-block-button.wp-block-button__width-100{flex-basis:100%;width:100%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25{width:25%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50{width:50%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75{width:75%}.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{border-radius:0}.wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{border-radius:0!important}:root :where(.wp-block-button .wp-block-button__link.is-style-outline),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link){border:2px solid;padding:.667em 1.333em}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color)){color:currentColor}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background)){background-color:initial;background-image:none}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-button.aligncenter,.wp-block-calendar{text-align:center}.wp-block-calendar td,.wp-block-calendar th{border:1px solid;padding:.25em}.wp-block-calendar th{font-weight:400}.wp-block-calendar caption{background-color:inherit}.wp-block-calendar table{border-collapse:collapse;width:100%}.wp-block-calendar table:where(:not(.has-text-color)){color:#40464d}.wp-block-calendar table:where(:not(.has-text-color)) td,.wp-block-calendar table:where(:not(.has-text-color)) th{border-color:#ddd}.wp-block-calendar table.has-background th{background-color:inherit}.wp-block-calendar table.has-text-color th{color:inherit}:where(.wp-block-calendar table:not(.has-background) th){background:#ddd}.wp-block-categories{box-sizing:border-box}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-categories.wp-block-categories-dropdown.aligncenter{text-align:center}.wp-block-code{box-sizing:border-box}.wp-block-code code{display:block;font-family:inherit;overflow-wrap:break-word;white-space:pre-wrap}.wp-block-columns{align-items:normal!important;box-sizing:border-box;display:flex;flex-wrap:wrap!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis]{flex-grow:0}}.wp-block-columns.is-not-stacked-on-mobile{flex-wrap:nowrap!important}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis]{flex-grow:0}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;overflow-wrap:break-word;word-break:break-word}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-stretch{align-self:stretch}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.wp-block-post-comments{box-sizing:border-box}.wp-block-post-comments .alignleft{float:left}.wp-block-post-comments .alignright{float:right}.wp-block-post-comments .navigation:after{clear:both;content:"";display:table}.wp-block-post-comments .commentlist{clear:both;list-style:none;margin:0;padding:0}.wp-block-post-comments .commentlist .comment{min-height:2.25em;padding-left:3.25em}.wp-block-post-comments .commentlist .comment p{font-size:1em;line-height:1.8;margin:1em 0}.wp-block-post-comments .commentlist .children{list-style:none;margin:0;padding:0}.wp-block-post-comments .comment-author{line-height:1.5}.wp-block-post-comments .comment-author .avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;margin-top:.5em;width:2.5em}.wp-block-post-comments .comment-author cite{font-style:normal}.wp-block-post-comments .comment-meta{font-size:.875em;line-height:1.5}.wp-block-post-comments .comment-meta b{font-weight:400}.wp-block-post-comments .comment-meta .comment-awaiting-moderation{display:block;margin-bottom:1em;margin-top:1em}.wp-block-post-comments .comment-body .commentmetadata{font-size:.875em}.wp-block-post-comments .comment-form-author label,.wp-block-post-comments .comment-form-comment label,.wp-block-post-comments .comment-form-email label,.wp-block-post-comments .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments .comment-form textarea{box-sizing:border-box;display:block;width:100%}.wp-block-post-comments .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments .comment-reply-title{margin-bottom:0}.wp-block-post-comments .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-left:.5em}.wp-block-post-comments .reply{font-size:.875em;margin-bottom:1.4em}.wp-block-post-comments input:not([type=submit]),.wp-block-post-comments textarea{border:1px solid #949494;font-family:inherit;font-size:1em}.wp-block-post-comments input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments textarea{padding:calc(.667em + 2px)}:where(.wp-block-post-comments input[type=submit]){border:none}.wp-block-comments-pagination>.wp-block-comments-pagination-next,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers,.wp-block-comments-pagination>.wp-block-comments-pagination-previous{margin-bottom:.5em;margin-right:.5em}.wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child{margin-right:0}.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow{display:inline-block;margin-right:1ch}.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow{display:inline-block;margin-left:1ch}.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-comments-pagination.aligncenter{justify-content:center}.wp-block-comment-template{box-sizing:border-box;list-style:none;margin-bottom:0;max-width:100%;padding:0}.wp-block-comment-template li{clear:both}.wp-block-comment-template ol{list-style:none;margin-bottom:0;max-width:100%;padding-left:2rem}.wp-block-comment-template.alignleft{float:left}.wp-block-comment-template.aligncenter{margin-left:auto;margin-right:auto;width:-moz-fit-content;width:fit-content}.wp-block-comment-template.alignright{float:right}.wp-block-cover,.wp-block-cover-image{align-items:center;background-position:50%;box-sizing:border-box;display:flex;justify-content:center;min-height:430px;overflow:hidden;overflow:clip;padding:1em;position:relative}.wp-block-cover .has-background-dim:not([class*=-background-color]),.wp-block-cover-image .has-background-dim:not([class*=-background-color]),.wp-block-cover-image.has-background-dim:not([class*=-background-color]),.wp-block-cover.has-background-dim:not([class*=-background-color]){background-color:#000}.wp-block-cover .has-background-dim.has-background-gradient,.wp-block-cover-image .has-background-dim.has-background-gradient{background-color:initial}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{background-color:inherit;content:""}.wp-block-cover .wp-block-cover__background,.wp-block-cover .wp-block-cover__gradient-background,.wp-block-cover-image .wp-block-cover__background,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover.has-background-dim:not(.has-background-gradient):before{bottom:0;left:0;opacity:.5;position:absolute;right:0;top:0;z-index:1}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0{opacity:0}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10{opacity:.1}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20{opacity:.2}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30{opacity:.3}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40{opacity:.4}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50{opacity:.5}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60{opacity:.6}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70{opacity:.7}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80{opacity:.8}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90{opacity:.9}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:420px;width:100%}.wp-block-cover-image.aligncenter,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.aligncenter,.wp-block-cover.alignleft,.wp-block-cover.alignright{display:flex}.wp-block-cover .wp-block-cover__inner-container,.wp-block-cover-image .wp-block-cover__inner-container{color:inherit;width:100%;z-index:1}.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left{align-items:flex-start;justify-content:flex-start}.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center{align-items:flex-start;justify-content:center}.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right{align-items:flex-start;justify-content:flex-end}.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left{align-items:center;justify-content:flex-start}.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center{align-items:center;justify-content:center}.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right{align-items:center;justify-content:flex-end}.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left{align-items:flex-end;justify-content:flex-start}.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center{align-items:flex-end;justify-content:center}.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right{align-items:flex-end;justify-content:flex-end}.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container{margin:0}.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container{margin:0;width:auto}.wp-block-cover .wp-block-cover__image-background,.wp-block-cover video.wp-block-cover__video-background,.wp-block-cover-image .wp-block-cover__image-background,.wp-block-cover-image video.wp-block-cover__video-background{border:none;bottom:0;box-shadow:none;height:100%;left:0;margin:0;max-height:none;max-width:none;object-fit:cover;outline:none;padding:0;position:absolute;right:0;top:0;width:100%}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:fixed;background-repeat:no-repeat;background-size:cover}@supports (-webkit-touch-callout:inherit){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:scroll}}.wp-block-cover-image.is-repeated,.wp-block-cover.is-repeated,.wp-block-cover__image-background.is-repeated,video.wp-block-cover__video-background.is-repeated{background-repeat:repeat;background-size:auto}.wp-block-cover__image-background,.wp-block-cover__video-background{z-index:0}.wp-block-cover-image-text,.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{color:#fff}.wp-block-cover-image .wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image .wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-right:0;text-align:right}.wp-block-cover .wp-block-cover-text,.wp-block-cover-image .wp-block-cover-image-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;margin-bottom:0;max-width:840px;padding:.44em;text-align:center;z-index:1}:where(.wp-block-cover-image:not(.has-text-color)),:where(.wp-block-cover:not(.has-text-color)){color:#fff}:where(.wp-block-cover-image.is-light:not(.has-text-color)),:where(.wp-block-cover.is-light:not(.has-text-color)){color:#000}:root :where(.wp-block-cover h1:not(.has-text-color)),:root :where(.wp-block-cover h2:not(.has-text-color)),:root :where(.wp-block-cover h3:not(.has-text-color)),:root :where(.wp-block-cover h4:not(.has-text-color)),:root :where(.wp-block-cover h5:not(.has-text-color)),:root :where(.wp-block-cover h6:not(.has-text-color)),:root :where(.wp-block-cover p:not(.has-text-color)){color:inherit}.wp-block-details{box-sizing:border-box}.wp-block-details summary{cursor:pointer}.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type="core/embed"],.wp-block[data-align=right]>[data-type="core/embed"]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper{min-width:280px}.wp-block-cover .wp-block-embed{min-height:240px;min-width:320px}.wp-block-embed{overflow-wrap:break-word}.wp-block-embed figcaption{margin-bottom:1em;margin-top:.5em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{padding-top:177.77%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}.wp-block-file{box-sizing:border-box}.wp-block-file:not(.wp-element-button){font-size:.8em}.wp-block-file.aligncenter{text-align:center}.wp-block-file.alignright{text-align:right}.wp-block-file *+.wp-block-file__button{margin-left:.75em}:where(.wp-block-file){margin-bottom:1.5em}.wp-block-file__embed{margin-bottom:1em}:where(.wp-block-file__button){border-radius:2em;display:inline-block;padding:.5em 1em}:where(.wp-block-file__button):is(a):active,:where(.wp-block-file__button):is(a):focus,:where(.wp-block-file__button):is(a):hover,:where(.wp-block-file__button):is(a):visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-form-input__label{display:flex;flex-direction:column;gap:.25em;margin-bottom:.5em;width:100%}.wp-block-form-input__label.is-label-inline{align-items:center;flex-direction:row;gap:.5em}.wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content{margin-bottom:.5em}.wp-block-form-input__label:has(input[type=checkbox]){flex-direction:row-reverse;width:-moz-fit-content;width:fit-content}.wp-block-form-input__label-content{width:-moz-fit-content;width:fit-content}.wp-block-form-input__input{font-size:1em;margin-bottom:.5em;padding:0 .5em}.wp-block-form-input__input[type=date],.wp-block-form-input__input[type=datetime-local],.wp-block-form-input__input[type=datetime],.wp-block-form-input__input[type=email],.wp-block-form-input__input[type=month],.wp-block-form-input__input[type=number],.wp-block-form-input__input[type=password],.wp-block-form-input__input[type=search],.wp-block-form-input__input[type=tel],.wp-block-form-input__input[type=text],.wp-block-form-input__input[type=time],.wp-block-form-input__input[type=url],.wp-block-form-input__input[type=week]{border:1px solid;line-height:2;min-height:2em}textarea.wp-block-form-input__input{min-height:10em}.blocks-gallery-grid:not(.has-nested-images),.wp-block-gallery:not(.has-nested-images){display:flex;flex-wrap:wrap;list-style-type:none;margin:0;padding:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item{display:flex;flex-direction:column;flex-grow:1;justify-content:center;margin:0 1em 1em 0;position:relative;width:calc(50% - 1em)}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure{align-items:flex-end;display:flex;height:100%;justify-content:flex-start;margin:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img{display:block;height:auto;max-width:100%;width:auto}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption{background:linear-gradient(0deg,#000000b3,#0000004d 70%,#0000);bottom:0;box-sizing:border-box;color:#fff;font-size:.8em;margin:0;max-height:100%;overflow:auto;padding:3em .77em .7em;position:absolute;text-align:center;width:100%;z-index:2}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid:not(.has-nested-images) figcaption,.wp-block-gallery:not(.has-nested-images) figcaption{flex-grow:1}.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img{flex:1;height:100%;object-fit:cover;width:100%}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item{margin-right:0;width:100%}@media (min-width:600px){.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item{margin-right:1em;width:calc(33.33333% - .66667em)}.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item{margin-right:1em;width:calc(25% - .75em)}.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item{margin-right:1em;width:calc(20% - .8em)}.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item{margin-right:1em;width:calc(16.66667% - .83333em)}.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item{margin-right:1em;width:calc(14.28571% - .85714em)}.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item{margin-right:1em;width:calc(12.5% - .875em)}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child{margin-right:0}.blocks-gallery-grid:not(.has-nested-images).alignleft,.blocks-gallery-grid:not(.has-nested-images).alignright,.wp-block-gallery:not(.has-nested-images).alignleft,.wp-block-gallery:not(.has-nested-images).alignright{max-width:420px;width:100%}.blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-gallery:not(.is-cropped) .blocks-gallery-item{align-self:flex-start}figure.wp-block-gallery.has-nested-images{align-items:normal}.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image){margin:0;width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)/2)}.wp-block-gallery.has-nested-images figure.wp-block-image{box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;max-width:100%;position:relative}.wp-block-gallery.has-nested-images figure.wp-block-image>a,.wp-block-gallery.has-nested-images figure.wp-block-image>div{flex-direction:column;flex-grow:1;margin:0}.wp-block-gallery.has-nested-images figure.wp-block-image img{display:block;height:auto;max-width:100%!important;width:auto}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{background:linear-gradient(0deg,#000000b3,#0000004d 70%,#0000);bottom:0;box-sizing:border-box;color:#fff;font-size:13px;left:0;margin-bottom:0;max-height:60%;overflow:auto;padding:0 8px 8px;position:absolute;scrollbar-color:#0000 #0000;scrollbar-gutter:stable both-edges;scrollbar-width:thin;text-align:center;width:100%;will-change:transform}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar{height:12px;width:12px}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track{background-color:initial}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:initial;border:3px solid #0000;border-radius:8px}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb{background-color:#fffc}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover{scrollbar-color:#fffc #0000}@media (hover:none){.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{scrollbar-color:#fffc #0000}}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img{display:inline}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a{color:inherit}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a,.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div{flex:1 1 auto}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption{background:none;color:inherit;flex:initial;margin:0;padding:10px 10px 9px;position:relative}.wp-block-gallery.has-nested-images figcaption{flex-basis:100%;flex-grow:1;text-align:center}.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image){margin-bottom:auto;margin-top:0}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image){align-self:inherit}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone){display:flex}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img{flex:1 0 0%;height:100%;object-fit:cover;width:100%}.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image){width:100%}@media (min-width:600px){.wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image){width:calc(33.33333% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)}.wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image){width:calc(25% - var(--wp--style--unstable-gallery-gap, 16px)*.75)}.wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image){width:calc(20% - var(--wp--style--unstable-gallery-gap, 16px)*.8)}.wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image){width:calc(16.66667% - var(--wp--style--unstable-gallery-gap, 16px)*.83333)}.wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image){width:calc(14.28571% - var(--wp--style--unstable-gallery-gap, 16px)*.85714)}.wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image){width:calc(12.5% - var(--wp--style--unstable-gallery-gap, 16px)*.875)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image){width:calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image){width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)*.5)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child{width:100%}}.wp-block-gallery.has-nested-images.alignleft,.wp-block-gallery.has-nested-images.alignright{max-width:420px;width:100%}.wp-block-gallery.has-nested-images.aligncenter{justify-content:center}.wp-block-group{box-sizing:border-box}:where(.wp-block-group.wp-block-group-is-layout-constrained){position:relative}h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.aligncenter,.wp-block-image.alignleft,.wp-block-image.alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image.alignright>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{margin-bottom:1em;margin-top:.5em}.wp-block-image.is-style-circle-mask img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{border-radius:0;-webkit-mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-mode:alpha;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain}}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}.wp-lightbox-container{display:flex;flex-direction:column;position:relative}.wp-lightbox-container img{cursor:zoom-in}.wp-lightbox-container img:hover+button{opacity:1}.wp-lightbox-container button{align-items:center;-webkit-backdrop-filter:blur(16px) saturate(180%);backdrop-filter:blur(16px) saturate(180%);background-color:#5a5a5a40;border:none;border-radius:4px;cursor:zoom-in;display:flex;height:20px;justify-content:center;opacity:0;padding:0;position:absolute;right:16px;text-align:center;top:16px;transition:opacity .2s ease;width:20px;z-index:100}.wp-lightbox-container button:focus-visible{outline:3px auto #5a5a5a40;outline:3px auto -webkit-focus-ring-color;outline-offset:3px}.wp-lightbox-container button:hover{cursor:pointer;opacity:1}.wp-lightbox-container button:focus{opacity:1}.wp-lightbox-container button:focus,.wp-lightbox-container button:hover,.wp-lightbox-container button:not(:hover):not(:active):not(.has-background){background-color:#5a5a5a40;border:none}.wp-lightbox-overlay{box-sizing:border-box;cursor:zoom-out;height:100vh;left:0;overflow:hidden;position:fixed;top:0;visibility:hidden;width:100%;z-index:100000}.wp-lightbox-overlay .close-button{align-items:center;cursor:pointer;display:flex;justify-content:center;min-height:40px;min-width:40px;padding:0;position:absolute;right:calc(env(safe-area-inset-right) + 16px);top:calc(env(safe-area-inset-top) + 16px);z-index:5000000}.wp-lightbox-overlay .close-button:focus,.wp-lightbox-overlay .close-button:hover,.wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background){background:none;border:none}.wp-lightbox-overlay .lightbox-image-container{height:var(--wp--lightbox-container-height);left:50%;overflow:hidden;position:absolute;top:50%;transform:translate(-50%,-50%);transform-origin:top left;width:var(--wp--lightbox-container-width);z-index:9999999999}.wp-lightbox-overlay .wp-block-image{align-items:center;box-sizing:border-box;display:flex;height:100%;justify-content:center;margin:0;position:relative;transform-origin:0 0;width:100%;z-index:3000000}.wp-lightbox-overlay .wp-block-image img{height:var(--wp--lightbox-image-height);min-height:var(--wp--lightbox-image-height);min-width:var(--wp--lightbox-image-width);width:var(--wp--lightbox-image-width)}.wp-lightbox-overlay .wp-block-image figcaption{display:none}.wp-lightbox-overlay button{background:none;border:none}.wp-lightbox-overlay .scrim{background-color:#fff;height:100%;opacity:.9;position:absolute;width:100%;z-index:2000000}.wp-lightbox-overlay.active{animation:turn-on-visibility .25s both;visibility:visible}.wp-lightbox-overlay.active img{animation:turn-on-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active){animation:turn-off-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active) img{animation:turn-off-visibility .25s both}@media (prefers-reduced-motion:no-preference){.wp-lightbox-overlay.zoom.active{animation:none;opacity:1;visibility:visible}.wp-lightbox-overlay.zoom.active .lightbox-image-container{animation:lightbox-zoom-in .4s}.wp-lightbox-overlay.zoom.active .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.active .scrim{animation:turn-on-visibility .4s forwards}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active){animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container{animation:lightbox-zoom-out .4s}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim{animation:turn-off-visibility .4s forwards}}@keyframes turn-on-visibility{0%{opacity:0}to{opacity:1}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible}99%{opacity:0;visibility:visible}to{opacity:0;visibility:hidden}}@keyframes lightbox-zoom-in{0%{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}to{transform:translate(-50%,-50%) scale(1)}}@keyframes lightbox-zoom-out{0%{transform:translate(-50%,-50%) scale(1);visibility:visible}99%{visibility:visible}to{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}}ol.wp-block-latest-comments{box-sizing:border-box;margin-left:0}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment)){line-height:1.1}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment-excerpt p)){line-height:1.8}.has-dates :where(.wp-block-latest-comments:not([style*=line-height])),.has-excerpts :where(.wp-block-latest-comments:not([style*=line-height])){line-height:1.5}.wp-block-latest-comments .wp-block-latest-comments{padding-left:0}.wp-block-latest-comments__comment{list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{list-style:none;min-height:2.25em}.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{margin-left:3.25em}.wp-block-latest-comments__comment-excerpt p{font-size:.875em;margin:.36em 0 1.4em}.wp-block-latest-comments__comment-date{display:block;font-size:.75em}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;width:2.5em}.wp-block-latest-comments[class*=-font-size] a,.wp-block-latest-comments[style*=font-size] a{font-size:inherit}.wp-block-latest-posts{box-sizing:border-box}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both;overflow-wrap:break-word}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap}.wp-block-latest-posts.is-grid li{margin:0 1.25em 1.25em 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - .625em)}.wp-block-latest-posts.columns-2 li:nth-child(2n){margin-right:0}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - .83333em)}.wp-block-latest-posts.columns-3 li:nth-child(3n){margin-right:0}.wp-block-latest-posts.columns-4 li{width:calc(25% - .9375em)}.wp-block-latest-posts.columns-4 li:nth-child(4n){margin-right:0}.wp-block-latest-posts.columns-5 li{width:calc(20% - 1em)}.wp-block-latest-posts.columns-5 li:nth-child(5n){margin-right:0}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 1.04167em)}.wp-block-latest-posts.columns-6 li:nth-child(6n){margin-right:0}}:root :where(.wp-block-latest-posts.is-grid){padding:0}:root :where(.wp-block-latest-posts.wp-block-latest-posts__list){padding-left:0}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;font-size:.8125em}.wp-block-latest-posts__post-excerpt{margin-bottom:1em;margin-top:.5em}.wp-block-latest-posts__featured-image a{display:inline-block}.wp-block-latest-posts__featured-image img{height:auto;max-width:100%;width:auto}.wp-block-latest-posts__featured-image.alignleft{float:left;margin-right:1em}.wp-block-latest-posts__featured-image.alignright{float:right;margin-left:1em}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}ol,ul{box-sizing:border-box}:root :where(ul.has-background,ol.has-background){padding:1.25em 2.375em}.wp-block-media-text{box-sizing:border-box;direction:ltr;display:grid;grid-template-columns:50% 1fr;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{grid-template-columns:1fr 50%}.wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__media{align-self:start}.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media,.wp-block-media-text>.wp-block-media-text__content,.wp-block-media-text>.wp-block-media-text__media{align-self:center}.wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__media{align-self:end}.wp-block-media-text>.wp-block-media-text__media{grid-column:1;grid-row:1;margin:0}.wp-block-media-text>.wp-block-media-text__content{direction:ltr;grid-column:2;grid-row:1;padding:0 8%;word-break:break-word}.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__media{grid-column:2;grid-row:1}.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content{grid-column:1;grid-row:1}.wp-block-media-text__media img,.wp-block-media-text__media video{height:auto;max-width:unset;vertical-align:middle;width:100%}.wp-block-media-text.is-image-fill>.wp-block-media-text__media{background-size:cover;height:100%;min-height:250px}.wp-block-media-text.is-image-fill>.wp-block-media-text__media>a{display:block;height:100%}.wp-block-media-text.is-image-fill>.wp-block-media-text__media img{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media{grid-column:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content{grid-column:1;grid-row:2}}.wp-block-navigation{--navigation-layout-justification-setting:flex-start;--navigation-layout-direction:row;--navigation-layout-wrap:wrap;--navigation-layout-justify:flex-start;--navigation-layout-align:center;position:relative}.wp-block-navigation ul{margin-bottom:0;margin-left:0;margin-top:0;padding-left:0}.wp-block-navigation ul,.wp-block-navigation ul li{list-style:none;padding:0}.wp-block-navigation .wp-block-navigation-item{align-items:center;display:flex;position:relative}.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty{display:none}.wp-block-navigation .wp-block-navigation-item__content{display:block}.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content{color:inherit}.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus{text-decoration:underline}.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus{text-decoration:line-through}.wp-block-navigation:where(:not([class*=has-text-decoration])) a{text-decoration:none}.wp-block-navigation:where(:not([class*=has-text-decoration])) a:active,.wp-block-navigation:where(:not([class*=has-text-decoration])) a:focus{text-decoration:none}.wp-block-navigation .wp-block-navigation__submenu-icon{align-self:center;background-color:inherit;border:none;color:currentColor;display:inline-block;font-size:inherit;height:.6em;line-height:0;margin-left:.25em;padding:0;width:.6em}.wp-block-navigation .wp-block-navigation__submenu-icon svg{stroke:currentColor;display:inline-block;height:inherit;margin-top:.075em;width:inherit}.wp-block-navigation.is-vertical{--navigation-layout-direction:column;--navigation-layout-justify:initial;--navigation-layout-align:flex-start}.wp-block-navigation.no-wrap{--navigation-layout-wrap:nowrap}.wp-block-navigation.items-justified-center{--navigation-layout-justification-setting:center;--navigation-layout-justify:center}.wp-block-navigation.items-justified-center.is-vertical{--navigation-layout-align:center}.wp-block-navigation.items-justified-right{--navigation-layout-justification-setting:flex-end;--navigation-layout-justify:flex-end}.wp-block-navigation.items-justified-right.is-vertical{--navigation-layout-align:flex-end}.wp-block-navigation.items-justified-space-between{--navigation-layout-justification-setting:space-between;--navigation-layout-justify:space-between}.wp-block-navigation .has-child .wp-block-navigation__submenu-container{align-items:normal;background-color:inherit;color:inherit;display:flex;flex-direction:column;height:0;left:-1px;opacity:0;overflow:hidden;position:absolute;top:100%;transition:opacity .1s linear;visibility:hidden;width:0;z-index:2}.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content{display:flex;flex-grow:1}.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon{margin-left:auto;margin-right:0}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content{margin:0}@media (min-width:782px){.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:-1px}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before{background:#0000;content:"";display:block;height:100%;position:absolute;right:100%;width:.5em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon{margin-right:.25em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg{transform:rotate(-90deg)}}.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container,.wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container,.wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container{height:auto;min-width:200px;opacity:1;overflow:visible;visibility:visible;width:auto}.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container{left:0;top:100%}@media (min-width:782px){.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:0}}.wp-block-navigation-submenu{display:flex;position:relative}.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg{stroke:currentColor}button.wp-block-navigation-item__content{background-color:initial;border:none;color:currentColor;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;text-align:left;text-transform:inherit}.wp-block-navigation-submenu__toggle{cursor:pointer}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle{padding-left:0;padding-right:.85em}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon{margin-left:-.6em;pointer-events:none}.wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle){padding:0}.wp-block-navigation .wp-block-page-list,.wp-block-navigation__container,.wp-block-navigation__responsive-close,.wp-block-navigation__responsive-container,.wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-dialog{gap:inherit}:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)){padding:.5em 1em}:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content){padding:.5em 1em}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container{left:auto;right:0}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:-1px;right:-1px}@media (min-width:782px){.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:auto;right:100%}}.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container{background-color:#fff;border:1px solid #00000026}.wp-block-navigation.has-background .wp-block-navigation__submenu-container{background-color:inherit}.wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container{color:#000}.wp-block-navigation__container{align-items:var(--navigation-layout-align,initial);display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial);list-style:none;margin:0;padding-left:0}.wp-block-navigation__container .is-responsive{display:none}.wp-block-navigation__container:only-child,.wp-block-page-list:only-child{flex-grow:1}@keyframes overlay-menu__fade-in-animation{0%{opacity:0;transform:translateY(.5em)}to{opacity:1;transform:translateY(0)}}.wp-block-navigation__responsive-container{bottom:0;display:none;left:0;position:fixed;right:0;top:0}.wp-block-navigation__responsive-container :where(.wp-block-navigation-item a){color:inherit}.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content{align-items:var(--navigation-layout-align,initial);display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial)}.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open){background-color:inherit!important;color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open{animation:overlay-menu__fade-in-animation .1s ease-out;animation-fill-mode:forwards;background-color:inherit;display:flex;flex-direction:column;overflow:auto;padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20em);z-index:100000}@media (prefers-reduced-motion:reduce){.wp-block-navigation__responsive-container.is-menu-open{animation-delay:0s;animation-duration:1ms}}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content{align-items:var(--navigation-layout-justification-setting,inherit);display:flex;flex-direction:column;flex-wrap:nowrap;overflow:visible;padding-top:calc(2rem + 24px)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{justify-content:flex-start}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container{border:none;height:auto;min-width:200px;opacity:1;overflow:initial;padding-left:2rem;padding-right:2rem;position:static;visibility:visible;width:auto}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{gap:inherit}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{padding-top:var(--wp--style--block-gap,2em)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content{padding:0}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{align-items:var(--navigation-layout-justification-setting,initial);display:flex;flex-direction:column}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list{background:#0000!important;color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:auto;right:auto}@media (min-width:600px){.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open){background-color:inherit;display:block;position:relative;width:100%;z-index:auto}.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:0}}.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open{background-color:#fff}.wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open{color:#000}.wp-block-navigation__toggle_button_label{font-size:1rem;font-weight:700}.wp-block-navigation__responsive-container-close,.wp-block-navigation__responsive-container-open{background:#0000;border:none;color:currentColor;cursor:pointer;margin:0;padding:0;text-transform:inherit;vertical-align:middle}.wp-block-navigation__responsive-container-close svg,.wp-block-navigation__responsive-container-open svg{fill:currentColor;display:block;height:24px;pointer-events:none;width:24px}.wp-block-navigation__responsive-container-open{display:flex}.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open{font-family:inherit;font-size:inherit;font-weight:inherit}@media (min-width:600px){.wp-block-navigation__responsive-container-open:not(.always-shown){display:none}}.wp-block-navigation__responsive-container-close{position:absolute;right:0;top:0;z-index:2}.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close{font-family:inherit;font-size:inherit;font-weight:inherit}.wp-block-navigation__responsive-close{width:100%}.has-modal-open .wp-block-navigation__responsive-close{margin-left:auto;margin-right:auto;max-width:var(--wp--style--global--wide-size,100%)}.wp-block-navigation__responsive-close:focus{outline:none}.is-menu-open .wp-block-navigation__responsive-close,.is-menu-open .wp-block-navigation__responsive-container-content,.is-menu-open .wp-block-navigation__responsive-dialog{box-sizing:border-box}.wp-block-navigation__responsive-dialog{position:relative}.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog{margin-top:46px}@media (min-width:782px){.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog{margin-top:32px}}html.has-modal-open{overflow:hidden}.wp-block-navigation .wp-block-navigation-item__label{overflow-wrap:break-word}.wp-block-navigation .wp-block-navigation-item__description{display:none}.link-ui-tools{border-top:1px solid #f0f0f0;padding:8px}.link-ui-block-inserter{padding-top:8px}.link-ui-block-inserter__back{margin-left:8px;text-transform:uppercase}.wp-block-navigation .wp-block-page-list{align-items:var(--navigation-layout-align,initial);background-color:inherit;display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial)}.wp-block-navigation .wp-block-navigation-item{background-color:inherit}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}.wp-block-post-author{display:flex;flex-wrap:wrap}.wp-block-post-author__byline{font-size:.5em;margin-bottom:0;margin-top:0;width:100%}.wp-block-post-author__avatar{margin-right:1em}.wp-block-post-author__bio{font-size:.7em;margin-bottom:.7em}.wp-block-post-author__content{flex-basis:0;flex-grow:1}.wp-block-post-author__name{margin:0}.wp-block-post-comments-form{box-sizing:border-box}.wp-block-post-comments-form[style*=font-weight] :where(.comment-reply-title){font-weight:inherit}.wp-block-post-comments-form[style*=font-family] :where(.comment-reply-title){font-family:inherit}.wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title),.wp-block-post-comments-form[style*=font-size] :where(.comment-reply-title){font-size:inherit}.wp-block-post-comments-form[style*=line-height] :where(.comment-reply-title){line-height:inherit}.wp-block-post-comments-form[style*=font-style] :where(.comment-reply-title){font-style:inherit}.wp-block-post-comments-form[style*=letter-spacing] :where(.comment-reply-title){letter-spacing:inherit}.wp-block-post-comments-form input[type=submit]{box-shadow:none;cursor:pointer;display:inline-block;overflow-wrap:break-word;text-align:center}.wp-block-post-comments-form input:not([type=submit]),.wp-block-post-comments-form textarea{border:1px solid #949494;font-family:inherit;font-size:1em}.wp-block-post-comments-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments-form textarea{padding:calc(.667em + 2px)}.wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden]),.wp-block-post-comments-form .comment-form textarea{box-sizing:border-box;display:block;width:100%}.wp-block-post-comments-form .comment-form-author label,.wp-block-post-comments-form .comment-form-email label,.wp-block-post-comments-form .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments-form .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments-form .comment-reply-title{margin-bottom:0}.wp-block-post-comments-form .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-left:.5em}.wp-block-post-date{box-sizing:border-box}:where(.wp-block-post-excerpt){margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}.wp-block-post-excerpt__excerpt{margin-bottom:0;margin-top:0}.wp-block-post-excerpt__more-text{margin-bottom:0;margin-top:var(--wp--style--block-gap)}.wp-block-post-excerpt__more-link{display:inline-block}.wp-block-post-featured-image{margin-left:0;margin-right:0}.wp-block-post-featured-image a{display:block;height:100%}.wp-block-post-featured-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom;width:100%}.wp-block-post-featured-image.alignfull img,.wp-block-post-featured-image.alignwide img{width:100%}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim{background-color:#000;inset:0;position:absolute}.wp-block-post-featured-image{position:relative}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient{background-color:initial}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0{opacity:0}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10{opacity:.1}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20{opacity:.2}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30{opacity:.3}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40{opacity:.4}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50{opacity:.5}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60{opacity:.6}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70{opacity:.7}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80{opacity:.8}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90{opacity:.9}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100{opacity:1}.wp-block-post-featured-image:where(.alignleft,.alignright){width:100%}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous{display:inline-block;margin-right:1ch}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next{display:inline-block;margin-left:1ch}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-post-navigation-link.has-text-align-left[style*="writing-mode: vertical-lr"],.wp-block-post-navigation-link.has-text-align-right[style*="writing-mode: vertical-rl"]{rotate:180deg}.wp-block-post-terms{box-sizing:border-box}.wp-block-post-terms .wp-block-post-terms__separator{white-space:pre-wrap}.wp-block-post-time-to-read,.wp-block-post-title{box-sizing:border-box}.wp-block-post-title{word-break:break-word}.wp-block-post-title a{display:inline-block}.wp-block-preformatted{box-sizing:border-box;white-space:pre-wrap}:where(.wp-block-preformatted.has-background){padding:1.25em 2.375em}.wp-block-pullquote{box-sizing:border-box;margin:0 0 1em;overflow-wrap:break-word;padding:4em 0;text-align:center}.wp-block-pullquote blockquote,.wp-block-pullquote cite,.wp-block-pullquote p{color:inherit}.wp-block-pullquote blockquote{margin:0}.wp-block-pullquote p{margin-top:0}.wp-block-pullquote p:last-child{margin-bottom:0}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:420px}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote.has-text-align-left blockquote{text-align:left}.wp-block-pullquote.has-text-align-right blockquote{text-align:right}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{font-size:2em;margin-bottom:0;margin-top:0}.wp-block-pullquote.is-style-solid-color blockquote cite{font-style:normal;text-transform:none}.wp-block-pullquote cite{color:inherit}.wp-block-post-template{list-style:none;margin-bottom:0;margin-top:0;max-width:100%;padding:0}.wp-block-post-template.is-flex-container{display:flex;flex-direction:row;flex-wrap:wrap;gap:1.25em}.wp-block-post-template.is-flex-container>li{margin:0;width:100%}@media (min-width:600px){.wp-block-post-template.is-flex-container.is-flex-container.columns-2>li{width:calc(50% - .625em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-3>li{width:calc(33.33333% - .83333em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-4>li{width:calc(25% - .9375em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-5>li{width:calc(20% - 1em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-6>li{width:calc(16.66667% - 1.04167em)}}@media (max-width:600px){.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid{grid-template-columns:1fr}}.wp-block-post-template-is-layout-constrained>li>.alignright,.wp-block-post-template-is-layout-flow>li>.alignright{float:right;margin-inline-end:0;margin-inline-start:2em}.wp-block-post-template-is-layout-constrained>li>.alignleft,.wp-block-post-template-is-layout-flow>li>.alignleft{float:left;margin-inline-end:2em;margin-inline-start:0}.wp-block-post-template-is-layout-constrained>li>.aligncenter,.wp-block-post-template-is-layout-flow>li>.aligncenter{margin-inline-end:auto;margin-inline-start:auto}.wp-block-query-pagination>.wp-block-query-pagination-next,.wp-block-query-pagination>.wp-block-query-pagination-numbers,.wp-block-query-pagination>.wp-block-query-pagination-previous{margin-bottom:.5em;margin-right:.5em}.wp-block-query-pagination>.wp-block-query-pagination-next:last-child,.wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child,.wp-block-query-pagination>.wp-block-query-pagination-previous:last-child{margin-right:0}.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type{margin-inline-start:auto}.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child{margin-inline-end:auto}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow{display:inline-block;margin-right:1ch}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-query-pagination .wp-block-query-pagination-next-arrow{display:inline-block;margin-left:1ch}.wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-query-pagination.aligncenter{justify-content:center}.wp-block-query-title,.wp-block-quote{box-sizing:border-box}.wp-block-quote{overflow-wrap:break-word}.wp-block-quote.is-large:where(:not(.is-style-plain)),.wp-block-quote.is-style-large:where(:not(.is-style-plain)){margin-bottom:1em;padding:0 1em}.wp-block-quote.is-large:where(:not(.is-style-plain)) p,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) p{font-size:1.5em;font-style:italic;line-height:1.6}.wp-block-quote.is-large:where(:not(.is-style-plain)) cite,.wp-block-quote.is-large:where(:not(.is-style-plain)) footer,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer{font-size:1.125em;text-align:right}.wp-block-quote>cite{display:block}.wp-block-read-more{display:block;width:-moz-fit-content;width:fit-content}.wp-block-read-more:where(:not([style*=text-decoration])){text-decoration:none}.wp-block-read-more:where(:not([style*=text-decoration])):active,.wp-block-read-more:where(:not([style*=text-decoration])):focus{text-decoration:none}ul.wp-block-rss{list-style:none;padding:0}ul.wp-block-rss.wp-block-rss{box-sizing:border-box}ul.wp-block-rss.alignleft{margin-right:2em}ul.wp-block-rss.alignright{margin-left:2em}ul.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;list-style:none;padding:0}ul.wp-block-rss.is-grid li{margin:0 1em 1em 0;width:100%}@media (min-width:600px){ul.wp-block-rss.columns-2 li{width:calc(50% - 1em)}ul.wp-block-rss.columns-3 li{width:calc(33.33333% - 1em)}ul.wp-block-rss.columns-4 li{width:calc(25% - 1em)}ul.wp-block-rss.columns-5 li{width:calc(20% - 1em)}ul.wp-block-rss.columns-6 li{width:calc(16.66667% - 1em)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;font-size:.8125em}.wp-block-search__button{margin-left:10px;word-break:normal}.wp-block-search__button.has-icon{line-height:0}.wp-block-search__button svg{fill:currentColor;height:1.25em;min-height:24px;min-width:24px;vertical-align:text-bottom;width:1.25em}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px}.wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search__label{width:100%}.wp-block-search__input{-webkit-appearance:initial;appearance:none;border:1px solid #949494;flex-grow:1;margin-left:0;margin-right:0;min-width:3rem;padding:8px;text-decoration:unset!important}.wp-block-search.wp-block-search__button-only .wp-block-search__button{flex-shrink:0;margin-left:0;max-width:100%}.wp-block-search.wp-block-search__button-only .wp-block-search__button[aria-expanded=true]{max-width:calc(100% - 100px)}.wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{min-width:0!important;transition-property:width}.wp-block-search.wp-block-search__button-only .wp-block-search__input{flex-basis:100%;transition-duration:.3s}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden,.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper{overflow:hidden}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input{border-left-width:0!important;border-right-width:0!important;flex-basis:0;flex-grow:0;margin:0;min-width:0!important;padding-left:0!important;padding-right:0!important;width:0!important}:where(.wp-block-search__input){font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-transform:inherit}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){border:1px solid #949494;box-sizing:border-box;padding:4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input{border:none;border-radius:0;padding:0 4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus{outline:none}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px}.wp-block-search.aligncenter .wp-block-search__inside-wrapper{margin:auto}.wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{float:right}.wp-block-separator{border:none;border-top:2px solid}:root :where(.wp-block-separator.is-style-dots){height:auto;line-height:1;text-align:center}:root :where(.wp-block-separator.is-style-dots):before{color:currentColor;content:"···";font-family:serif;font-size:1.5em;letter-spacing:2em;padding-left:2em}.wp-block-separator.is-style-dots{background:none!important;border:none!important}.wp-block-site-logo{box-sizing:border-box;line-height:0}.wp-block-site-logo a{display:inline-block;line-height:0}.wp-block-site-logo.is-default-size img{height:auto;width:120px}.wp-block-site-logo img{height:auto;max-width:100%}.wp-block-site-logo a,.wp-block-site-logo img{border-radius:inherit}.wp-block-site-logo.aligncenter{margin-left:auto;margin-right:auto;text-align:center}:root :where(.wp-block-site-logo.is-style-rounded){border-radius:9999px}:root :where(.wp-block-site-title a){color:inherit}.wp-block-social-links{background:none;box-sizing:border-box;margin-left:0;padding-left:0;padding-right:0;text-indent:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{border-bottom:0;box-shadow:none;text-decoration:none}.wp-block-social-links .wp-social-link svg{height:1em;width:1em}.wp-block-social-links .wp-social-link span:not(.screen-reader-text){font-size:.65em;margin-left:.5em;margin-right:.5em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{display:flex;justify-content:center}.wp-block-social-links.alignright{justify-content:flex-end}.wp-block-social-link{border-radius:9999px;display:block;height:auto;transition:transform .1s ease}@media (prefers-reduced-motion:reduce){.wp-block-social-link{transition-delay:0s;transition-duration:0s}}.wp-block-social-link a{align-items:center;display:flex;line-height:0;transition:transform .1s ease}.wp-block-social-link:hover{transform:scale(1.1)}.wp-block-social-links .wp-block-social-link.wp-social-link{display:inline-block;margin:0;padding:0}.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited{fill:currentColor;color:currentColor}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link{background-color:#f0f0f0;color:#444}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon{background-color:#f90;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance{background-color:#0757fe;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bluesky{background-color:#0a7aff;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy{background-color:#f45800;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook{background-color:#1778f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr{background-color:#0461dd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare{background-color:#e65678;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github{background-color:#24292d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google{background-color:#ea4434;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-gravatar{background-color:#1d4fc4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram{background-color:#f00075;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup{background-color:#f6405f;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest{background-color:#e60122;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket{background-color:#ef4155;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit{background-color:#ff4500;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype{background-color:#0478d7;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat{stroke:#000;background-color:#fefc00;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify{background-color:#1bd760;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram{background-color:#2aabee;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-threads,.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr{background-color:#011835;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch{background-color:#6440a4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk{background-color:#4680c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-whatsapp{background-color:#25d366;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-x{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube{background-color:red;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link{background:none}.wp-block-social-links.is-style-logos-only .wp-social-link svg{height:1.25em;width:1.25em}.wp-block-social-links.is-style-logos-only .wp-social-link-amazon{color:#f90}.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp{color:#1ea0c3}.wp-block-social-links.is-style-logos-only .wp-social-link-behance{color:#0757fe}.wp-block-social-links.is-style-logos-only .wp-social-link-bluesky{color:#0a7aff}.wp-block-social-links.is-style-logos-only .wp-social-link-codepen{color:#1e1f26}.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart{color:#02e49b}.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble{color:#e94c89}.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox{color:#4280ff}.wp-block-social-links.is-style-logos-only .wp-social-link-etsy{color:#f45800}.wp-block-social-links.is-style-logos-only .wp-social-link-facebook{color:#1778f2}.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-flickr{color:#0461dd}.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare{color:#e65678}.wp-block-social-links.is-style-logos-only .wp-social-link-github{color:#24292d}.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads{color:#382110}.wp-block-social-links.is-style-logos-only .wp-social-link-google{color:#ea4434}.wp-block-social-links.is-style-logos-only .wp-social-link-gravatar{color:#1d4fc4}.wp-block-social-links.is-style-logos-only .wp-social-link-instagram{color:#f00075}.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm{color:#e21b24}.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin{color:#0d66c2}.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon{color:#3288d4}.wp-block-social-links.is-style-logos-only .wp-social-link-medium{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-meetup{color:#f6405f}.wp-block-social-links.is-style-logos-only .wp-social-link-patreon{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest{color:#e60122}.wp-block-social-links.is-style-logos-only .wp-social-link-pocket{color:#ef4155}.wp-block-social-links.is-style-logos-only .wp-social-link-reddit{color:#ff4500}.wp-block-social-links.is-style-logos-only .wp-social-link-skype{color:#0478d7}.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat{stroke:#000;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud{color:#ff5600}.wp-block-social-links.is-style-logos-only .wp-social-link-spotify{color:#1bd760}.wp-block-social-links.is-style-logos-only .wp-social-link-telegram{color:#2aabee}.wp-block-social-links.is-style-logos-only .wp-social-link-threads,.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr{color:#011835}.wp-block-social-links.is-style-logos-only .wp-social-link-twitch{color:#6440a4}.wp-block-social-links.is-style-logos-only .wp-social-link-twitter{color:#1da1f2}.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo{color:#1eb7ea}.wp-block-social-links.is-style-logos-only .wp-social-link-vk{color:#4680c2}.wp-block-social-links.is-style-logos-only .wp-social-link-whatsapp{color:#25d366}.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress{color:#3499cd}.wp-block-social-links.is-style-logos-only .wp-social-link-x{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-yelp{color:#d32422}.wp-block-social-links.is-style-logos-only .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}:root :where(.wp-block-social-links .wp-social-link a){padding:.25em}:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a){padding:0}:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a){padding-left:.66667em;padding-right:.66667em}.wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label{color:#000}.wp-block-spacer{clear:both}.wp-block-tag-cloud{box-sizing:border-box}.wp-block-tag-cloud.aligncenter{justify-content:center;text-align:center}.wp-block-tag-cloud.alignfull{padding-left:1em;padding-right:1em}.wp-block-tag-cloud a{display:inline-block;margin-right:5px}.wp-block-tag-cloud span{display:inline-block;margin-left:5px;text-decoration:none}:root :where(.wp-block-tag-cloud.is-style-outline){display:flex;flex-wrap:wrap;gap:1ch}:root :where(.wp-block-tag-cloud.is-style-outline a){border:1px solid;font-size:unset!important;margin-right:0;padding:1ch 2ch;text-decoration:none!important}.wp-block-table{overflow-x:auto}.wp-block-table table{border-collapse:collapse;width:100%}.wp-block-table thead{border-bottom:3px solid}.wp-block-table tfoot{border-top:3px solid}.wp-block-table td,.wp-block-table th{border:1px solid;padding:.5em}.wp-block-table .has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th{word-break:break-word}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th{word-break:break-word}.wp-block-table .has-subtle-light-gray-background-color{background-color:#f3f4f5}.wp-block-table .has-subtle-pale-green-background-color{background-color:#e9fbe5}.wp-block-table .has-subtle-pale-blue-background-color{background-color:#e7f5fe}.wp-block-table .has-subtle-pale-pink-background-color{background-color:#fcf0ef}.wp-block-table.is-style-stripes{background-color:initial;border-bottom:1px solid #f0f0f0;border-collapse:inherit;border-spacing:0}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f0f0f0}.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#e9fbe5}.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#e7f5fe}.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#fcf0ef}.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th{border-color:#0000}.wp-block-table .has-border-color td,.wp-block-table .has-border-color th,.wp-block-table .has-border-color tr,.wp-block-table .has-border-color>*{border-color:inherit}.wp-block-table table[style*=border-top-color] tr:first-child,.wp-block-table table[style*=border-top-color] tr:first-child td,.wp-block-table table[style*=border-top-color] tr:first-child th,.wp-block-table table[style*=border-top-color]>*,.wp-block-table table[style*=border-top-color]>* td,.wp-block-table table[style*=border-top-color]>* th{border-top-color:inherit}.wp-block-table table[style*=border-top-color] tr:not(:first-child){border-top-color:initial}.wp-block-table table[style*=border-right-color] td:last-child,.wp-block-table table[style*=border-right-color] th,.wp-block-table table[style*=border-right-color] tr,.wp-block-table table[style*=border-right-color]>*{border-right-color:inherit}.wp-block-table table[style*=border-bottom-color] tr:last-child,.wp-block-table table[style*=border-bottom-color] tr:last-child td,.wp-block-table table[style*=border-bottom-color] tr:last-child th,.wp-block-table table[style*=border-bottom-color]>*,.wp-block-table table[style*=border-bottom-color]>* td,.wp-block-table table[style*=border-bottom-color]>* th{border-bottom-color:inherit}.wp-block-table table[style*=border-bottom-color] tr:not(:last-child){border-bottom-color:initial}.wp-block-table table[style*=border-left-color] td:first-child,.wp-block-table table[style*=border-left-color] th,.wp-block-table table[style*=border-left-color] tr,.wp-block-table table[style*=border-left-color]>*{border-left-color:inherit}.wp-block-table table[style*=border-style] td,.wp-block-table table[style*=border-style] th,.wp-block-table table[style*=border-style] tr,.wp-block-table table[style*=border-style]>*{border-style:inherit}.wp-block-table table[style*=border-width] td,.wp-block-table table[style*=border-width] th,.wp-block-table table[style*=border-width] tr,.wp-block-table table[style*=border-width]>*{border-style:inherit;border-width:inherit}:where(.wp-block-term-description){margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}.wp-block-term-description p{margin-bottom:0;margin-top:0}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 1em;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-left:0}.wp-block-text-columns .wp-block-column:last-child{margin-right:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.33333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%}pre.wp-block-verse{overflow:auto;white-space:pre-wrap}:where(pre.wp-block-verse){font-family:inherit}.wp-block-video{box-sizing:border-box}.wp-block-video video{vertical-align:middle;width:100%}@supports (position:sticky){.wp-block-video [poster]{object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{margin-bottom:1em;margin-top:.5em}.editor-styles-wrapper,.entry-content{counter-reset:footnotes}a[data-fn].fn{counter-increment:footnotes;display:inline-flex;font-size:smaller;text-decoration:none;text-indent:-9999999px;vertical-align:super}a[data-fn].fn:after{content:"[" counter(footnotes) "]";float:left;text-indent:0}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#ddd;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}.wp-block-audio figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-audio figcaption{color:#ffffffa6}.wp-block-audio{margin:0 0 1em}.wp-block-code{border:1px solid #ccc;border-radius:4px;font-family:Menlo,Consolas,monaco,monospace;padding:.8em 1em}.wp-block-embed figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed figcaption{color:#ffffffa6}.wp-block-embed{margin:0 0 1em}.blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:#ffffffa6}:root :where(.wp-block-image figcaption){color:#555;font-size:13px;text-align:center}.is-dark-theme :root :where(.wp-block-image figcaption){color:#ffffffa6}.wp-block-image{margin:0 0 1em}.wp-block-pullquote{border-bottom:4px solid;border-top:4px solid;color:currentColor;margin-bottom:1.75em}.wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{color:currentColor;font-size:.8125em;font-style:normal;text-transform:uppercase}.wp-block-quote{border-left:.25em solid;margin:0 0 1.75em;padding-left:1em}.wp-block-quote cite,.wp-block-quote footer{color:currentColor;font-size:.8125em;font-style:normal;position:relative}.wp-block-quote.has-text-align-right{border-left:none;border-right:.25em solid;padding-left:0;padding-right:1em}.wp-block-quote.has-text-align-center{border:none;padding-left:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{border:none}.wp-block-search .wp-block-search__label{font-weight:700}.wp-block-search__button{border:1px solid #ccc;padding:.375em .625em}:where(.wp-block-group.has-background){padding:1.25em 2.375em}.wp-block-separator.has-css-opacity{opacity:.4}.wp-block-separator{border:none;border-bottom:2px solid;margin-left:auto;margin-right:auto}.wp-block-separator.has-alpha-channel-opacity{opacity:1}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){width:100px}.wp-block-separator.has-background:not(.is-style-dots){border-bottom:none;height:1px}.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){height:2px}.wp-block-table{margin:0 0 1em}.wp-block-table td,.wp-block-table th{word-break:normal}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:#ffffffa6}.wp-block-video figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-video figcaption{color:#ffffffa6}.wp-block-video{margin:0 0 1em}:root :where(.wp-block-template-part.has-background){margin-bottom:0;margin-top:0;padding:1.25em 2.375em}/**
 * Grid Block styles.
 * These styles are loaded into both the editor, and the frontend.
 */
/**
 * Padding Options
 */
/* autoprefixer grid: no-autoplace */
.wp-block-jetpack-layout-grid-editor,
.wp-block-jetpack-layout-grid {
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box; }
  .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__none,
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none {
    padding-left: 0px;
    padding-right: 0px; }
  .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__small,
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small {
    padding-left: 8px;
    padding-right: 8px; }
  .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__medium,
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium {
    padding-left: 16px;
    padding-right: 16px; }
  .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__huge,
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge {
    padding-left: 48px;
    padding-right: 48px; }
  .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__nowrap,
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__nowrap {
    padding-left: 0px;
    padding-right: 0px; }
  .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-none,
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-none {
    padding: 0px; }
    .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-none.has-background,
    .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-none.has-background {
      padding: 0px 13px; }
  .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column,
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column {
    padding: 8px; }
    .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column.has-background,
    .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column.has-background {
      padding: 8px 21px; }
  .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column,
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column {
    padding: 16px; }
    .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column.has-background,
    .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column.has-background {
      padding: 16px 29px; }
  .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column,
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column {
    padding: 24px; }
    .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column.has-background,
    .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column.has-background {
      padding: 24px 37px; }
  .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column,
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column {
    padding: 48px; }
    .wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column.has-background,
    .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column.has-background {
      padding: 48px 61px; }

/**
 * Individual Column Options
 */
.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.has-background,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.has-background {
  margin-left: -13px;
  margin-right: -13px;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: .05px;
  padding-bottom: .05px; }

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none {
  padding: 0px; }
  .wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none.has-background,
  .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none.has-background {
    padding: 0px 13px;
    max-width: calc( 100% + 26px); }

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small {
  padding: 8px; }
  .wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small.has-background,
  .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small.has-background {
    padding: 8px 21px;
    max-width: calc( 100% + 42px); }

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium {
  padding: 16px; }
  .wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium.has-background,
  .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium.has-background {
    padding: 16px 29px;
    max-width: calc( 100% + 58px); }

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large {
  padding: 24px; }
  .wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large.has-background,
  .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large.has-background {
    padding: 24px 37px;
    max-width: calc( 100% + 74px); }

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge {
  padding: 48px; }
  .wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge.has-background,
  .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge.has-background {
    padding: 48px 61px;
    max-width: calc( 100% + 122px); }

/**
 * Parent column alignment
 */
.wp-block-jetpack-layout-grid.are-vertically-aligned-top {
  align-items: flex-start; }

.wp-block-jetpack-layout-grid.are-vertically-aligned-center {
  align-items: center; }

.wp-block-jetpack-layout-grid.are-vertically-aligned-bottom {
  align-items: flex-end; }

/**
 * Individual column alignment
 */
.wp-block-jetpack-layout-grid-column.is-vertically-aligned-top {
  align-self: flex-start;
  height: 100%; }

.wp-block-jetpack-layout-grid-column.is-vertically-aligned-center {
  align-self: center; }

.wp-block-jetpack-layout-grid-column.is-vertically-aligned-bottom {
  align-self: flex-end; }

/**
 * Responsive Grid Options. Exclude these from the editor.
 */
/* autoprefixer grid: no-autoplace */
.wp-block-jetpack-layout-grid {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(4, 1fr); }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 1; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 1; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 1; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 1; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 2; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 2; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 2; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 2; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 3; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 3; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 3; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 3; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 4; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 4; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 4; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 4; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 5; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 5; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 5; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 5; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 6; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 6; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 6; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 6; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 7; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 7; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 7; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 7; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 8; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 8; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 8; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 8; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 9; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 9; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 9; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 9; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 10; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 10; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 10; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 10; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 11; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 11; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 11; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 11; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 12; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 12; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 12; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 12; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 1; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 1; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 1; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 1; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 2; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 2; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 2; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 2; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 3; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 3; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 3; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 3; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 4; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 4; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 4; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 4; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 5; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 5; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 5; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 5; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 6; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 6; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 6; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 6; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 7; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 7; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 7; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 7; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 8; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 8; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 8; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 8; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 9; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 9; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 9; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 9; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 10; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 10; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 10; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 10; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 11; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 11; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 11; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 11; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 12; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 12; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 12; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 12; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-row-start: 1; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-row-start: 1; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-row-start: 1; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-row-start: 1; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-row-start: 2; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-row-start: 2; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-row-start: 2; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-row-start: 2; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-row-start: 3; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-row-start: 3; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-row-start: 3; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-row-start: 3; }
  .wp-block-jetpack-layout-grid.column1-mobile-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-row-start: 4; }
  .wp-block-jetpack-layout-grid.column2-mobile-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-row-start: 4; }
  .wp-block-jetpack-layout-grid.column3-mobile-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-row-start: 4; }
  .wp-block-jetpack-layout-grid.column4-mobile-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-row-start: 4; }
  @media (min-width: 600px) {
    .wp-block-jetpack-layout-grid {
      grid-template-columns: repeat(8, 1fr); }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 1; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 1; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 1; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 1; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 2; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 2; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 2; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 2; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 3; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 3; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 3; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 3; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 4; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 4; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 4; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 4; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 5; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 5; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 5; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 5; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 6; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 6; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 6; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 6; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 7; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 7; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 7; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 7; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 8; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 8; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 8; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 8; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 9; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 9; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 9; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 9; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 10; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 10; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 10; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 10; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 11; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 11; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 11; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 11; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 12; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 12; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 12; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 12; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 1; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 1; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 1; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 1; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 2; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 2; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 2; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 2; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 3; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 3; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 3; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 3; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 4; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 4; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 4; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 4; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 5; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 5; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 5; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 5; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 6; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 6; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 6; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 6; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 7; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 7; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 7; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 7; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 8; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 8; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 8; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 8; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 9; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 9; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 9; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 9; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 10; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 10; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 10; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 10; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 11; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 11; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 11; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 11; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 12; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 12; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 12; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 12; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 1; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 1; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 1; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 1; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 2; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 2; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 2; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 2; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 3; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 3; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 3; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 3; }
      .wp-block-jetpack-layout-grid.column1-tablet-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 4; }
      .wp-block-jetpack-layout-grid.column2-tablet-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 4; }
      .wp-block-jetpack-layout-grid.column3-tablet-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 4; }
      .wp-block-jetpack-layout-grid.column4-tablet-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 4; } }
  @media (min-width: 1080px) {
    .wp-block-jetpack-layout-grid {
      grid-template-columns: repeat(12, 1fr); }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 1; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 1; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 1; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 1; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 2; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 2; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 2; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 2; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 3; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 3; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 3; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 3; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 4; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 4; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 4; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 4; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 5; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 5; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 5; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 5; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 6; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 6; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 6; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 6; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 7; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 7; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 7; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 7; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 8; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 8; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 8; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 8; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 9; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 9; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 9; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 9; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 10; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 10; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 10; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 10; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 11; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 11; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 11; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 11; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 12; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 12; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 12; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 12; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 1; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 1; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 1; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 1; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 2; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 2; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 2; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 2; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 3; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 3; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 3; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 3; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 4; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 4; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 4; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 4; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 5; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 5; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 5; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 5; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 6; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 6; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 6; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 6; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 7; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 7; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 7; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 7; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 8; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 8; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 8; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 8; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 9; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 9; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 9; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 9; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 10; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 10; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 10; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 10; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 11; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 11; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 11; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 11; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 12; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 12; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 12; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 12; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 1; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 1; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 1; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 1; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 2; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 2; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 2; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 2; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 3; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 3; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 3; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 3; }
      .wp-block-jetpack-layout-grid.column1-desktop-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 4; }
      .wp-block-jetpack-layout-grid.column2-desktop-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 4; }
      .wp-block-jetpack-layout-grid.column3-desktop-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 4; }
      .wp-block-jetpack-layout-grid.column4-desktop-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 4; } }
  .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column * {
    word-break: break-word;
    word-wrap: break-word; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none {
    grid-gap: 0px; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small {
    grid-gap: 8px; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium {
    grid-gap: 16px; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge {
    grid-gap: 48px; }

.wp-block-jetpack-layout-grid-column {
  max-width: 100%; }
.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-iframe-overlay{height:100%;position:absolute;width:100%}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(/wp-includes/js/mediaelement/mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(/wp-includes/js/mediaelement/mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(/wp-includes/js/mediaelement/mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}.mejs-container{clear:both;max-width:100%}.mejs-container *{font-family:Helvetica,Arial}.mejs-container,.mejs-container .mejs-controls,.mejs-embed,.mejs-embed body{background:#222}.mejs-time{font-weight:400;word-wrap:normal}.mejs-controls a.mejs-horizontal-volume-slider{display:table}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#fff}.mejs-controls .mejs-time-rail .mejs-time-current{background:#0073aa}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail .mejs-time-total{background:rgba(255,255,255,.33)}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail span{border-radius:0}.mejs-overlay-loading{background:0 0}.mejs-controls button:hover{border:none;-webkit-box-shadow:none;box-shadow:none}.me-cannotplay{width:auto!important}.media-embed-details .wp-audio-shortcode{display:inline-block;max-width:400px}.audio-details .embed-media-settings{overflow:visible}.media-embed-details .embed-media-settings .setting span:not(.button-group){max-width:400px;width:auto}.media-embed-details .embed-media-settings .checkbox-setting span{display:inline-block}.media-embed-details .embed-media-settings{padding-top:0;top:28px}.media-embed-details .instructions{padding:16px 0;max-width:600px}.media-embed-details .setting .remove-setting,.media-embed-details .setting p{color:#a00;font-size:10px;text-transform:uppercase}.media-embed-details .setting .remove-setting{padding:5px 0}.media-embed-details .setting a:hover{color:#dc3232}.media-embed-details .embed-media-settings .checkbox-setting{float:none;margin:0 0 10px}.wp-video{max-width:100%;height:auto}.wp_attachment_holder .wp-audio-shortcode,.wp_attachment_holder .wp-video{margin-top:18px}.wp-video-shortcode video,video.wp-video-shortcode{max-width:100%;display:inline-block}.video-details .wp-video-holder{width:100%;max-width:640px}.wp-playlist{border:1px solid #ccc;padding:10px;margin:12px 0 18px;font-size:14px;line-height:1.5}.wp-admin .wp-playlist{margin:0 0 18px}.wp-playlist video{display:inline-block;max-width:100%}.wp-playlist audio{display:none;max-width:100%;width:400px}.wp-playlist .mejs-container{margin:0;max-width:100%}.wp-playlist .mejs-controls .mejs-button button{outline:0}.wp-playlist-light{background:#fff;color:#000}.wp-playlist-dark{color:#fff;background:#000}.wp-playlist-caption{display:block;max-width:88%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:1.5}.wp-playlist-item .wp-playlist-caption{text-decoration:none;color:#000;max-width:-webkit-calc(100% - 40px);max-width:calc(100% - 40px)}.wp-playlist-item-meta{display:block;font-size:14px;line-height:1.5}.wp-playlist-item-title{font-size:14px;line-height:1.5}.wp-playlist-item-album{font-style:italic;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-playlist-item-artist{font-size:12px;text-transform:uppercase}.wp-playlist-item-length{position:absolute;right:3px;top:0;font-size:14px;line-height:1.5}.rtl .wp-playlist-item-length{left:3px;right:auto}.wp-playlist-tracks{margin-top:10px}.wp-playlist-item{position:relative;cursor:pointer;padding:0 3px;border-bottom:1px solid #ccc}.wp-playlist-item:last-child{border-bottom:0}.wp-playlist-light .wp-playlist-caption{color:#333}.wp-playlist-dark .wp-playlist-caption{color:#ddd}.wp-playlist-playing{font-weight:700;background:#f7f7f7}.wp-playlist-light .wp-playlist-playing{background:#fff;color:#000}.wp-playlist-dark .wp-playlist-playing{background:#000;color:#fff}.wp-playlist-current-item{overflow:hidden;margin-bottom:10px;height:60px}.wp-playlist .wp-playlist-current-item img{float:left;max-width:60px;height:auto;margin-right:10px;padding:0;border:0}.rtl .wp-playlist .wp-playlist-current-item img{float:right;margin-left:10px;margin-right:0}.wp-playlist-current-item .wp-playlist-item-artist,.wp-playlist-current-item .wp-playlist-item-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-audio-playlist .me-cannotplay span{padding:5px 15px}/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-widget-author {
	--pk-author-social-link-color: #000000;
	--pk-author-with-bg-color: #FFFFFF;
	--pk-author-with-bg-links-color: #FFFFFF;
	--pk-author-with-bg-links-hover-color: rgba(255,255,255, 0.6);
	--pk-author-with-bg-decsription-color: #FFFFFF;
	--pk-author-avatar-border-radius: 100%;
	--pk-author-description-font-size: 90%;
}

/*--------------------------------------------------------------*/
.pk-widget-author {
	position: relative;
	text-align: center;
}

.pk-widget-author .pk-widget-author-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.pk-widget-author .pk-widget-author-bg img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

.pk-widget-author .pk-widget-author-container {
	position: relative;
	padding: 0 2rem;
	z-index: 2;
}

.pk-widget-author .pk-author-avatar img {
	border-radius: var(--pk-author-avatar-border-radius);
}

.pk-widget-author .pk-author-data {
	margin-top: 1rem;
}

.pk-widget-author .pk-author-data .author-description {
	font-size: var(--pk-author-description-font-size);
}

.pk-widget-author .pk-author-footer {
	margin-top: 1rem;
}

.pk-widget-author .pk-author-button {
	margin-top: 1rem;
}

.pk-widget-author .pk-social-links-wrap {
	margin-top: 1rem;
}

.pk-widget-author .pk-social-links-items {
	justify-content: center;
}

.pk-widget-author .pk-social-links-link {
	color: var(--pk-author-social-link-color);
}

.pk-author-social-links .pk-social-links-link {
	padding: 0 0.25rem;
}

.pk-widget-author-with-bg {
	color: var(--pk-author-with-bg-color);
}

.pk-widget-author-with-bg a,
.pk-widget-author-with-bg .section-heading,
.pk-widget-author-with-bg .pk-social-links-link {
	color: var(--pk-author-with-bg-links-color) !important;
}

.pk-widget-author-with-bg a:hover,
.pk-widget-author-with-bg .pk-social-links-link:hover {
	color: var(--pk-author-with-bg-links-hover-color) !important;
}

.pk-widget-author-with-bg .author-description {
	color: var(--pk-author-with-bg-decsription-color) !important;
}

.pk-widget-author-with-bg .pk-widget-author-container {
	padding: 2rem;
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-coming-soon-container {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	height: 100%;
}

.pk-coming-soon-image {
	position: relative;
	width: 100%;
}

.pk-coming-soon-image img {
	width: 100%;
	height: auto;
}

.pk-coming-soon-content {
	display: flex;
	align-items: center;
	padding: 40px;
	width: 100%;
}

@media (min-width: 992px) {
	.pk-coming-soon-page {
		min-height: 100vh;
	}
	.pk-coming-soon-container {
		flex-direction: row;
		flex-wrap: nowrap;
		min-height: 100vh;
	}
	.pk-coming-soon-image {
		flex: 0 0 50%;
		max-width: 50%;
		min-height: 100vh;
		height: 100%;
	}
	.pk-coming-soon-image img {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.pk-coming-soon-content {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.pk-coming-soon-content:first-child:last-child {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.pk-coming-soon-content .entry-content {
	margin: 0 auto;
	max-width: 640px;
	width: 100%;
}

.pk-coming-soon-content .pk-social-links-items {
	justify-content: center;
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.content,
.entry-content,
.mce-content-body {
	counter-reset: h2;
}

.content h2,
.entry-content h2,
.mce-content-body h2 {
	counter-reset: h3;
}

.content h3,
.entry-content h3,
.mce-content-body h3 {
	counter-reset: h4;
}

.content h4,
.entry-content h4,
.mce-content-body h4 {
	counter-reset: h5;
}

.content h5,
.entry-content h5,
.mce-content-body h5 {
	counter-reset: h6;
}

.pk-list-styled,
.pk-list-positive,
.pk-list-negative {
	line-height: 1.5;
	list-style: none;
	font-size: 1rem;
}

.pk-list-styled:not(:first-child),
.pk-list-positive:not(:first-child),
.pk-list-negative:not(:first-child) {
	margin-top: 1.5rem;
}

.pk-list-styled:not(:last-child),
.pk-list-positive:not(:last-child),
.pk-list-negative:not(:last-child) {
	margin-bottom: 1.5rem;
}

.pk-list-styled li:not(:first-child),
.pk-list-positive li:not(:first-child),
.pk-list-negative li:not(:first-child) {
	margin-top: 0.5rem;
}

.pk-list-styled > li,
.pk-list-positive > li,
.pk-list-negative > li {
	position: relative;
	padding-left: 2.5rem;
}

.pk-list-styled > li:before,
.pk-list-positive > li:before,
.pk-list-negative > li:before {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
}

ol.pk-list-styled,
ol.pk-list-positive,
ol.pk-list-negative {
	counter-reset: ol;
}

ol.pk-list-styled > li:before,
ol.pk-list-positive > li:before,
ol.pk-list-negative > li:before {
	width: 1.5rem;
	height: 1.5rem;
	content: counter(ol);
	counter-increment: ol;
	color: #495057;
	font-size: 1.6rem;
	font-weight: 600;
	background-color: #e9ecef;
	border-radius: 50%;
	line-height: 1;
}

ul.pk-list-styled > li:before {
	content: '';
	width: 0.25rem;
	height: 0.25rem;
	background: #ced4da;
	margin-top: 0.75rem;
	left: 1rem;
}

ol.pk-list-styled ul,
ol.pk-list-styled ol,
ul.pk-list-styled ol,
ul.pk-list-styled ul {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	padding-left: 0;
	font-size: 1.6rem;
}

ol.pk-list-styled ul > li:not(:first-child),
ol.pk-list-styled ol > li:not(:first-child),
ul.pk-list-styled ol > li:not(:first-child),
ul.pk-list-styled ul > li:not(:first-child) {
	margin-top: 0.25rem;
}

ol.pk-list-positive > li:before {
	background-color: #28a745;
	color: #fff;
}

ol.pk-list-negative > li:before {
	background-color: #dc3545;
	color: #fff;
}

ul.pk-list-positive > li:before,
ul.pk-list-negative > li:before {
	width: 1.5rem;
	font-family: 'premiumkits-icons';
}

ul.pk-list-positive > li:before {
	content: "\e912";
	color: #28a745;
}

ul.pk-list-negative > li:before {
	content: "\e913";
	color: #dc3545;
}

.pk-heading-numbered {
	display: flex;
}

.pk-heading-numbered:before {
	margin-right: 1rem;
}

h2.pk-heading-numbered:before {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 2.5rem;
	flex: 0 0 2.5rem;
	border-radius: 50%;
	background: #ced4da;
	color: white;
	counter-increment: h2;
	content: counter(h2);
}

h3.pk-heading-numbered:before {
	counter-increment: h3;
	content: counter(h3);
}

h2.pk-heading-numbered ~ h3.pk-heading-numbered:before {
	content: counter(h2) "." counter(h3);
}

h4.pk-heading-numbered:before {
	counter-increment: h4;
	content: counter(h4);
}

h3.pk-heading-numbered ~ h4.pk-heading-numbered:before {
	content: counter(h3) "." counter(h4);
}

h2.pk-heading-numbered ~ h3.pk-heading-numbered ~ h4.pk-heading-numbered:before {
	content: counter(h2) "." counter(h3) "." counter(h4);
}

h5.pk-heading-numbered:before {
	counter-increment: h5;
	content: counter(h5);
}

h4.pk-heading-numbered ~ h5.pk-heading-numbered:before {
	content: counter(h4) "." counter(h5);
}

h3.pk-heading-numbered ~ h4.pk-heading-numbered ~ h5.pk-heading-numbered:before {
	content: counter(h3) "." counter(h4) "." counter(h5);
}

h2.pk-heading-numbered ~ h3.pk-heading-numbered ~ h4.pk-heading-numbered ~ h5.pk-heading-numbered:before {
	content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5);
}

h6.pk-heading-numbered:before {
	counter-increment: h6;
	content: counter(h6);
}

h5.pk-heading-numbered ~ h6.pk-heading-numbered:before {
	content: counter(h5) "." counter(h6);
}

h4.pk-heading-numbered ~ h5.pk-heading-numbered ~ h6.pk-heading-numbered:before {
	content: counter(h4) "." counter(h5) "." counter(h6);
}

h3.pk-heading-numbered ~ h4.pk-heading-numbered ~ h5.pk-heading-numbered ~ h6.pk-heading-numbered:before {
	content: counter(h3) "." counter(h4) "." counter(h5) "." counter(h6);
}

h2.pk-heading-numbered ~ h3.pk-heading-numbered ~ h4.pk-heading-numbered ~ h5.pk-heading-numbered ~ h6.pk-heading-numbered:before {
	content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6);
}

.content .pk-dropcap,
.entry-content .pk-dropcap,
.mce-content-body .pk-dropcap {
	text-align: left;
}

.content .pk-dropcap:after,
.entry-content .pk-dropcap:after,
.mce-content-body .pk-dropcap:after {
	content: "";
	display: table;
	clear: both;
	padding-top: 14px;
}

.content .pk-dropcap:first-letter,
.entry-content .pk-dropcap:first-letter,
.mce-content-body .pk-dropcap:first-letter {
	display: block;
	float: left;
	margin-top: 0.5rem;
	margin-right: 2rem;
	margin-bottom: 1rem;
	color: black;
	font-size: 2.5rem;
	line-height: 1;
	text-align: center;
}

.content .pk-dropcap-bg-inverse:first-letter,
.entry-content .pk-dropcap-bg-inverse:first-letter,
.mce-content-body .pk-dropcap-bg-inverse:first-letter {
	padding: 0.5rem 1rem;
	background: black;
	color: #fff;
}

.content .pk-dropcap-bg-light:first-letter,
.entry-content .pk-dropcap-bg-light:first-letter,
.mce-content-body .pk-dropcap-bg-light:first-letter {
	padding: 0.5rem 1rem;
	background: #f8f9fa;
}

.content .pk-dropcap-borders:first-letter,
.entry-content .pk-dropcap-borders:first-letter,
.mce-content-body .pk-dropcap-borders:first-letter {
	margin-top: 0.25rem;
	padding: 0.5rem 1rem;
	border: 1px solid #dee2e6;
}

.content .pk-dropcap-border-right:first-letter,
.entry-content .pk-dropcap-border-right:first-letter,
.mce-content-body .pk-dropcap-border-right:first-letter {
	padding-right: 2rem;
	border-right: 1px solid #dee2e6;
	border-radius: 0;
}

.content .pk-callout,
.entry-content .pk-callout,
.mce-content-body .pk-callout {
	font-size: 1.25rem;
	font-weight: 600;
}

.content .pk-content-block,
.entry-content .pk-content-block,
.mce-content-body .pk-content-block {
	margin-bottom: 2rem;
}

.content .pk-content-block > *:last-child,
.entry-content .pk-content-block > *:last-child,
.mce-content-body .pk-content-block > *:last-child {
	margin-bottom: 0;
}

.content .pk-block-alignment-left,
.entry-content .pk-block-alignment-left,
.mce-content-body .pk-block-alignment-left {
	float: left;
	max-width: 50%;
	margin-right: 2rem;
}

.content .pk-block-alignment-right,
.entry-content .pk-block-alignment-right,
.mce-content-body .pk-block-alignment-right {
	float: right;
	max-width: 50%;
	margin-left: 2rem;
}

.content .pk-block-border-left,
.entry-content .pk-block-border-left,
.mce-content-body .pk-block-border-left {
	padding-left: 2rem;
	border-left: 1px solid #dee2e6;
}

.content .pk-block-border-right,
.entry-content .pk-block-border-right,
.mce-content-body .pk-block-border-right {
	padding-right: 2rem;
	border-right: 1px solid #dee2e6;
}

.content .pk-block-border-top:before,
.entry-content .pk-block-border-top:before,
.mce-content-body .pk-block-border-top:before {
	background-color: #dee2e6;
	display: block;
	width: 4rem;
	height: 1px;
	margin: 2rem auto;
	content: "";
}

.content .pk-block-border-bottom:after,
.entry-content .pk-block-border-bottom:after,
.mce-content-body .pk-block-border-bottom:after {
	background-color: #dee2e6;
	display: block;
	width: 4rem;
	height: 1px;
	margin: 2rem auto;
	content: "";
}

.content .pk-block-border-all,
.entry-content .pk-block-border-all,
.mce-content-body .pk-block-border-all {
	padding: 2rem;
	border: 1px solid #dee2e6;
}

.content .pk-block-bg-light,
.entry-content .pk-block-bg-light,
.mce-content-body .pk-block-bg-light {
	background: #f8f9fa;
	padding: 2rem;
}

.content .pk-block-bg-inverse,
.entry-content .pk-block-bg-inverse,
.mce-content-body .pk-block-bg-inverse {
	background: black;
	padding: 2rem;
	color: #fff;
}

.content .pk-block-bg .pk-alert,
.entry-content .pk-block-bg .pk-alert,
.mce-content-body .pk-block-bg .pk-alert {
	background-color: white;
}

.content .pk-block-bg .pk-subscribe-form-wrap form,
.entry-content .pk-block-bg .pk-subscribe-form-wrap form,
.mce-content-body .pk-block-bg .pk-subscribe-form-wrap form {
	box-shadow: none;
}

.content .pk-block-shadows,
.entry-content .pk-block-shadows,
.mce-content-body .pk-block-shadows {
	padding: 2rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.075);
}

@media (max-width: 767.98px) {
	.content .pk-content-block,
	.entry-content .pk-content-block,
	.mce-content-body .pk-content-block {
		float: none;
		width: 100%;
		max-width: 100%;
		border-left: none;
		border-right: none;
		margin-left: 0;
		margin-right: 0;
	}
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-widget-contributors {
	--pk-contributors-item-border-color: #eeeeee;
	--pk-contributors-post-arrow-color: #ced4da;
	--pk-contributors-post-arrow-color-hover: #fff;
	--pk-contributors-post-arrow-backgroynd-hover: #6c757d;
	--pk-contributors-avatar-border-radius: 100%;
	--pk-contributors-post-arrow-border-radius: 100%;
	--pk-contributors-description-font-size: 80%;
	--pk-contributors-post-link-font-size: 1.6rem;
	--pk-contributors-post-link-line-height: 1.25rem;
	--pk-contributors-post-arrow-font-size: 14px;
}

/*--------------------------------------------------------------*/
.pk-widget-contributors .pk-author-item {
	display: flex;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px var(--pk-contributors-item-border-color) solid;
}

.pk-widget-contributors .pk-author-item:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.pk-widget-contributors .pk-author-avatar {
	flex: 0 0 80px;
	width: 80px;
	height: 80px;
	margin-right: 1rem;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

.pk-widget-contributors .pk-author-avatar img {
	border-radius: var(--pk-contributors-avatar-border-radius);
}

.pk-widget-contributors .pk-author-data {
	flex-grow: 1;
	width: 100%;
}

.pk-widget-contributors .pk-author-data .author-name {
	margin-top: 0;
	margin-bottom: .5rem;
}

.pk-widget-contributors .pk-author-data .author-description {
	font-size: var(--pk-contributors-description-font-size);
	margin-bottom: .5rem;
}

.pk-widget-contributors .pk-social-links-wrap {
	margin-top: .5rem;
}

.pk-widget-contributors .pk-author-posts {
	margin-top: 2rem;
}

.pk-widget-contributors .pk-author-posts > .pk-author-posts-single > a {
	display: flex;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	position: relative;
	padding-left: 2rem;
	font-size: var(--pk-contributors-post-link-font-size);
	line-height: var(--pk-contributors-post-link-line-height);
}

.pk-widget-contributors .pk-author-posts > .pk-author-posts-single > a:before {
	position: absolute;
	left: 0;
	top: 4px;
	font-family: 'premiumkits-icons';
	content: "\e940";
	color: var(--pk-contributors-post-arrow-color);
	font-size: var(--pk-contributors-post-arrow-font-size);
	margin-right: 1rem;
	display: inline-block;
	transition: .2s ease all;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: var(--pk-contributors-post-arrow-border-radius);
}

.pk-widget-contributors .pk-author-posts > .pk-author-posts-single > a:hover:before {
	color: var(--pk-contributors-post-arrow-color-hover);
	transition: .2s ease all;
	background: var(--pk-contributors-post-arrow-backgroynd-hover);
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.fb-page-wrapper {
	overflow: hidden;
}

.fb-comments {
	margin-top: 3rem;
}

.fb-comments,
.fb-comments iframe[style],
.fb-comments span {
	width: 100% !important;
	left: 0;
}

/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-featured-categories {
	--pk-featured-image-background: #f8f9fa;
	--pk-featured-content-color: #FFFFFF;
	--pk-featured-overlay-background: #000000;
	--pk-featured-link-color: #FFFFFF;
	--pk-featured-list-count-background: #000000;
	--pk-featured-overlay-opacity: 0.3;
	--pk-featured-name-font-weight: bold;
	--pk-featured-tiles-count-font-size: 0.75rem;
	--pk-featured-list-count-font-size: 0.6875rem;
	--pk-featured-list-count-size: 1.5rem;
	--pk-featured-list-number-font-weight: bold;
}

/*--------------------------------------------------------------*/
.pk-featured-categories .pk-featured-item {
	display: flex;
	flex-direction: column;
	position: relative;
}

.pk-featured-categories .pk-featured-image {
	background: var(--pk-featured-image-background);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.pk-featured-categories .pk-featured-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.pk-featured-categories .pk-featured-content {
	position: relative;
	padding: 40px;
	color: var(--pk-featured-content-color);
}

.pk-featured-categories .pk-featured-content:before {
	position: absolute;
	background: var(--pk-featured-overlay-background);
	opacity: var(--pk-featured-overlay-opacity);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
}

.pk-featured-categories .pk-featured-inner {
	position: relative;
}

.pk-featured-categories .pk-featured-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.pk-featured-categories .pk-featured-link span {
	display: none;
}

.pk-featured-categories-tiles {
	display: grid;
	grid-gap: 40px;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.pk-featured-categories-tiles .pk-featured-item {
	min-height: 170px;
}

.pk-featured-categories-tiles .pk-featured-content {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-grow: 1;
}

.pk-featured-categories-tiles .pk-featured-inner {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition: 0.25s;
}

.pk-featured-categories-tiles .pk-featured-item:hover .pk-featured-inner {
	transform: translate3d(0, -20%, 0);
	opacity: 0;
}

.pk-featured-categories-tiles .pk-featured-name {
	font-weight: var(--pk-featured-name-font-weight);
}

.pk-featured-categories-tiles .pk-featured-link {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pk-featured-link-color);
}

.pk-featured-categories-tiles .pk-featured-link span {
	display: inline-block;
	opacity: 0;
	transform: translate3d(0, 20%, 0);
	transition: 0.25s ease 0s;
}

.pk-featured-categories-tiles .pk-featured-link span:after {
	content: ' →';
}

.pk-featured-categories-tiles .pk-featured-link:hover span {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition: 0.25s ease 0.15s;
}

.pk-featured-categories-tiles .pk-featured-count {
	font-size: var(--pk-featured-tiles-count-font-size);
}

.pk-featured-categories-vertical-list .pk-featured-item {
	margin-top: 0.5rem;
}

.pk-featured-categories-vertical-list .pk-featured-item:first-child {
	margin-top: 0;
}

.pk-featured-categories-vertical-list .pk-featured-content {
	padding: 1rem;
}

.pk-featured-categories-vertical-list .pk-featured-inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.pk-featured-categories-vertical-list .pk-featured-name {
	font-weight: var(--pk-featured-name-font-weight);
}

.pk-featured-categories-vertical-list .pk-featured-count {
	position: relative;
	background: var(--pk-featured-list-count-background);
	min-width: var(--pk-featured-list-count-size);
	height: var(--pk-featured-list-count-size);
	padding: 0 0.25rem;
	font-size: var(--pk-featured-list-count-font-size);
	overflow: hidden;
}

.pk-featured-categories-vertical-list .pk-featured-count:after {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: var(--pk-featured-list-count-size);
	content: '→';
}

.pk-featured-categories-vertical-list .pk-featured-count .pk-featured-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: var(--pk-featured-list-count-size);
	font-weight: var(--pk-featured-list-number-font-weight);
	margin-top: 0;
	transition: 0.25s ease;
}

.pk-featured-categories-vertical-list .pk-featured-count .pk-featured-label {
	display: none;
}

.pk-featured-categories-vertical-list .pk-featured-item:hover .pk-featured-number {
	margin-top: calc(var(--pk-featured-list-count-size) * -1);
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-inline-posts .pk-inline-posts-title {
	margin-bottom: 1.5rem;
}

.pk-inline-posts:not(:last-child) {
	padding-bottom: 40px;
	margin-bottom: 3rem;
	border-bottom: 1px #e9ecef solid;
}

.pk-inline-posts:not(:first-child) {
	padding-top: 40px;
	margin-top: 3rem;
	border-top: 1px #e9ecef solid;
}

.pk-inline-posts-container .pk-overlay {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	width: 100%;
}

.pk-inline-posts-container .pk-overlay-background {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.pk-inline-posts-container .pk-overlay-background figure {
	width: 100%;
	height: 100%;
	margin-bottom: 0;
}

.pk-inline-posts-container .pk-overlay-background img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

.pk-inline-posts-container .pk-overlay-ratio:before {
	content: '';
	display: table;
	box-sizing: border-box;
	width: 0;
	height: 100%;
}

.pk-inline-posts-container .pk-ratio-landscape:before {
	padding-bottom: 75%;
}

.pk-inline-posts-container .pk-overlay-link {
	display: block;
	width: 100%;
	height: 100%;
}

.pk-inline-posts-container .pk-post-inner:not(:last-child) {
	margin-bottom: 1.5rem;
}

.pk-inline-posts-container .pk-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.pk-inline-posts-container .pk-post-meta .sep {
	display: inline-block;
	padding: 0 0.5rem;
}

.pk-inline-posts-container article:not(:first-child) {
	margin-top: 40px;
}

@media (min-width: 576px) {
	.pk-inline-posts-template-list .pk-post-outer {
		display: flex;
		flex-wrap: wrap;
		margin-right: -20px;
		margin-left: -20px;
	}
	.pk-inline-posts-template-list .pk-post-inner {
		position: relative;
		width: 100%;
		padding-right: 20px;
		padding-left: 20px;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.pk-inline-posts-template-list .pk-post-inner:not(:last-child) {
		margin-bottom: 0;
	}
	.pk-inline-posts-template-list .pk-post-inner:first-child:last-child {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pk-inline-posts-template-list .pk-post-inner + .pk-post-inner {
		margin-top: 0;
		display: flex;
		flex-direction: column;
	}
}

.pk-inline-posts-template-grid .pk-post-inner + .pk-post-inner {
	margin-top: 1rem;
}

@media (min-width: 576px) {
	.pk-inline-posts-template-grid {
		display: flex;
		flex-wrap: wrap;
		margin-right: -20px;
		margin-left: -20px;
	}
	.pk-inline-posts-template-grid article {
		position: relative;
		width: 100%;
		padding-right: 20px;
		padding-left: 20px;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.pk-inline-posts-template-grid article:nth-child(-n+2) {
		margin-top: 0;
	}
	.pk-inline-posts-template-grid[data-columns="1"] {
		flex-direction: column;
	}
	.pk-inline-posts-template-grid[data-columns="1"] article {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pk-inline-posts-template-grid[data-columns="1"] article:not(:first-child) {
		margin-top: 40px;
	}
}

@media (min-width: 1200px) {
	.pk-inline-posts-template-grid[data-columns="3"] article {
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}
	.pk-inline-posts-template-grid[data-columns="3"] article:nth-child(-n+3) {
		margin-top: 0;
	}
	.pk-inline-posts-template-grid[data-columns="4"] article {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.pk-inline-posts-template-grid[data-columns="4"] article:nth-child(-n+4) {
		margin-top: 0;
	}
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-instagram-feed {
	--pk-instagram-a-color: inherit;
	--pk-instagram-info-color: #000000;
	--pk-instagram-name-a-color: inherit;
	--pk-instagram-number-color: #000000;
	--pk-instagram-data-color: rgba(255, 255, 255, 0.9);
	--pk-instagram-link-opacity: rgba(0, 0, 0, 0.5);
	--pk-instagram-username-font-size: 2.6rem;
	--pk-instagram-name-font-size: 1.6rem;
	--pk-instagram-counters-font-size: 80%;
	--pk-instagram-number-font-size: 1.6rem;
	--pk-instagram-number-font-weight: bold;
	--pk-instagram-meta-font-size: 14px;
}

/*--------------------------------------------------------------*/
.pk-instagram-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.pk-instagram-container {
	display: flex;
	align-items: center;
}

.pk-avatar-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: none;
	margin-right: 1rem;
	flex: 0 0 50px;
	width: 50px;
	height: 50px;
}

.pk-instagram-avatar {
	border-radius: 50%;
	width: 50px;
	height: 50px;
}

.pk-instagram-info a {
	color: var(--pk-instagram-a-color);
}

.pk-instagram-username {
	color: var(--pk-instagram-info-color);
	font-size: var(--pk-instagram-username-font-size);
	line-height: 1;
	margin-top: 0;
	margin-bottom: 0;
	word-break: break-all;
}

.pk-instagram-name {
	font-size: var(--pk-instagram-name-font-size);
	word-break: break-all;
}

.pk-instagram-name a {
	color: var(--pk-instagram-name-a-color);
}

.pk-instagram-counters {
	display: flex;
	margin-top: 1rem;
	font-size: var(--pk-instagram-counters-font-size);
}

.pk-instagram-counters .counter + .counter {
	margin-left: 0.5rem;
}

.pk-instagram-counters .number {
	color: var(--pk-instagram-number-color);
	font-size: var(--pk-instagram-number-font-size);
	font-weight: var(--pk-instagram-number-font-weight);
}

.pk-instagram-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.pk-instagram-footer .pk-instagram-btn {
	display: block;
	width: 100%;
}

.pk-instagram-items {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 4rem;
}

.pk-instagram-item {
	display: block;
	position: relative;
}

.pk-instagram-item:after {
	position: relative;
	padding-bottom: 100%;
	display: block;
	height: 0;
	z-index: 0;
	content: '';
}

.pk-instagram-link img {
	display: block;
	width: 100%;
	height: 100%;
	transition: 0.25s;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.pk-instagram-link {
	position: absolute;
	display: block;
	border: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	box-shadow: none;
}

.pk-instagram-link:before {
	background: var(--pk-instagram-link-opacity);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	content: '';
	transition: 0.25s;
	z-index: 2;
}

.pk-instagram-link:hover {
	box-shadow: none;
}

.pk-instagram-link:hover:before {
	opacity: 1;
}

.pk-instagram-link:hover img {
	transform: scale(1.1);
}

.pk-instagram-data {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: var(--pk-instagram-data-color);
	z-index: 3;
	opacity: 0;
	transition: 0.25s;
}

.pk-instagram-link:hover .pk-instagram-data {
	opacity: 1;
}

.pk-instagram-meta {
	display: flex;
}

.pk-instagram-meta .pk-meta {
	display: flex;
	align-items: baseline;
	font-size: var(--pk-instagram-meta-font-size);
	margin-left: 10px;
}

.pk-instagram-meta .pk-meta i {
	position: relative;
	margin-right: 5px;
	top: 1px;
}

.pk-instagram-meta .pk-meta:first-child {
	margin-left: 0;
}

.widget .pk-instagram-meta {
	flex-direction: column;
	align-items: center;
}

.widget .pk-instagram-meta .pk-meta {
	margin: 0;
}

.pk-instagram-columns-1 .pk-instagram-item {
	flex: 0 0 100%;
}

.pk-instagram-columns-2 .pk-instagram-item {
	flex: 0 0 50%;
}

.pk-instagram-columns-3 .pk-instagram-item {
	flex: 0 0 33.3333333333%;
}

.pk-instagram-columns-4 .pk-instagram-item {
	flex: 0 0 25%;
}

.pk-instagram-columns-5 .pk-instagram-item {
	flex: 0 0 20%;
}

.pk-instagram-columns-6 .pk-instagram-item {
	flex: 0 0 16.6666666667%;
}

.pk-instagram-columns-7 .pk-instagram-item {
	flex: 0 0 14.2857142857%;
}

.pk-instagram-size-auto .pk-instagram-items {
	margin-left: -5px;
	margin-right: -5px;
}

.pk-instagram-size-auto .pk-instagram-items .pk-instagram-item {
	margin: 5px;
}

.pk-instagram-size-auto.pk-instagram-columns-1 .pk-instagram-item {
	flex: 0 0 calc(100% / 1 - 10px);
}

.pk-instagram-size-auto.pk-instagram-columns-2 .pk-instagram-item {
	flex: 0 0 calc(100% / 2 - 10px);
}

.pk-instagram-size-auto.pk-instagram-columns-3 .pk-instagram-item {
	flex: 0 0 calc(100% / 3 - 10px);
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.pk-instagram-size-auto .pk-instagram-items {
		margin: 0;
	}
	.pk-instagram-size-auto .pk-instagram-items .pk-instagram-item {
		margin: 0;
	}
	.pk-instagram-size-auto.pk-instagram-columns-1 .pk-instagram-item {
		flex: 0 0 100%;
	}
	.pk-instagram-size-auto.pk-instagram-columns-2 .pk-instagram-item {
		flex: 0 0 50%;
	}
	.pk-instagram-size-auto.pk-instagram-columns-3 .pk-instagram-item {
		flex: 0 0 33.3333333333%;
	}
}

@media screen and (max-width: 991px) {
	.pk-instagram-columns:not(.pk-instagram-columns-1):not(.pk-instagram-size-auto) .pk-instagram-item {
		flex: 0 0 50%;
	}
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.gallery-type-justified {
	--pk-twitter-caption-color: #FFFFFF;
	--pk-twitter-caption-background: rgba(0, 0, 0, 0.5);
	--pk-twitter-loader-border-color: rgba(0, 0, 0, 0.25);
	--pk-twitter-loader-color: #777;
	--pk-twitter-caption-font-size: 0.75rem;
}

/*--------------------------------------------------------------*/
.gallery-type-justified {
	overflow: hidden;
	position: relative;
	width: 100%;
	min-height: 1.5rem;
}

.gallery-type-justified .gallery-item {
	display: inline-block;
	overflow: hidden;
	position: absolute;
	margin: 0;
	/* background: #888888; To have gray placeholders while the gallery is loading with waitThumbnailsLoad = false */
	opacity: 0.1;
}

.gallery-type-justified .gallery-item > img,
.gallery-type-justified .gallery-item > a > img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: none;
	opacity: 0;
}

.gallery-type-justified .gallery-item > .caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	padding: 0.5rem;
	opacity: 0;
	color: var(--pk-twitter-caption-color);
	background-color: var(--pk-twitter-caption-background);
	font-size: var(--pk-twitter-caption-font-size);
	transition: 0.2s ease opacity;
}

.gallery-type-justified .gallery-item > .caption.caption-visible {
	opacity: 1;
}

.gallery-type-justified > .entry-visible {
	opacity: 1;
	background: none;
}

.gallery-type-justified > .entry-visible > img,
.gallery-type-justified > .entry-visible > a > img {
	opacity: 1;
}

.gallery-type-justified > .jg-filtered {
	display: none;
}

.gallery-type-justified.justified-loaded:before {
	display: none;
}

.gallery-type-justified:before {
	width: 1.5rem;
	height: 1.5rem;
	border: 2px solid var(--pk-twitter-loader-border-color);
	border-top-color: var(--pk-twitter-loader-color);
	border-radius: 50%;
	position: relative;
	-webkit-animation: loader-rotate 1s linear infinite;
	animation: loader-rotate 1s linear infinite;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	text-align: center;
	content: "";
}

@-webkit-keyframes loader-rotate {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes loader-rotate {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-lazyload {
	--pk-lazyload-background: #ced4da;
}

/*--------------------------------------------------------------*/
.pk-lazyload {
	background-color: var(--pk-lazyload-background);
}

.pk-lazyload.pk-lqip {
	filter: blur(20px);
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
	transition: 0.25s filter linear;
}

.pk-lazyload.pk-lazyload-unstyled {
	background-color: transparent;
	-webkit-animation: none;
	animation: none;
}

@-webkit-keyframes animate-gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes animate-gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.glightbox-container{width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999!important;overflow:hidden;-ms-touch-action:none;touch-action:none;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;overflow:hidden}.glightbox-container.inactive{display:none}.glightbox-container .gcontainer{position:relative;width:100%;height:100%;z-index:9999;overflow:hidden}.glightbox-container .gslider{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;height:100%;left:0;top:0;width:100%;position:relative;overflow:hidden;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.glightbox-container .gslide{width:100%;position:absolute;opacity:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:0}.glightbox-container .gslide.current{opacity:1;z-index:99999;position:relative}.glightbox-container .gslide.prev{opacity:1;z-index:9999}.glightbox-container .gslide-inner-content{width:100%}.glightbox-container .ginner-container{position:relative;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100%;margin:auto;height:100vh}.glightbox-container .ginner-container.gvideo-container{width:100%}.glightbox-container .ginner-container.desc-bottom,.glightbox-container .ginner-container.desc-top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.glightbox-container .ginner-container.desc-left,.glightbox-container .ginner-container.desc-right{max-width:100%!important}.gslide iframe,.gslide video{outline:0!important;border:none;min-height:165px;-webkit-overflow-scrolling:touch;-ms-touch-action:auto;touch-action:auto}.gslide:not(.current){pointer-events:none}.gslide-image{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gslide-image img{max-height:100vh;display:block;padding:0;float:none;outline:0;border:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100vw;width:auto;height:auto;-o-object-fit:cover;object-fit:cover;-ms-touch-action:none;touch-action:none;margin:auto;min-width:200px}.desc-bottom .gslide-image img,.desc-top .gslide-image img{width:auto}.desc-left .gslide-image img,.desc-right .gslide-image img{width:auto;max-width:100%}.gslide-image img.zoomable{position:relative}.gslide-image img.dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.gslide-video{position:relative;max-width:100vh;width:100%!important}.gslide-video .gvideo-wrapper{width:100%;margin:auto}.gslide-video::before{content:'';display:block;position:absolute;width:100%;height:100%;background:rgba(255,0,0,.34);display:none}.gslide-video.playing::before{display:none}.gslide-video.fullscreen{max-width:100%!important;min-width:100%;height:75vh}.gslide-video.fullscreen video{max-width:100%!important;width:100%!important}.gslide-inline{background:#fff;text-align:left;max-height:calc(100vh - 40px);overflow:auto;max-width:100%}.gslide-inline .ginlined-content{padding:20px;width:100%}.gslide-inline .dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.ginlined-content{overflow:auto;display:block!important;opacity:1}.gslide-external{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;min-width:100%;background:#fff;padding:0;overflow:auto;max-height:75vh;height:100%}.gslide-media{display:-webkit-box;display:-ms-flexbox;display:flex;width:auto}.zoomed .gslide-media{-webkit-box-shadow:none!important;box-shadow:none!important}.desc-bottom .gslide-media,.desc-top .gslide-media{margin:0 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gslide-description{position:relative;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}.gslide-description.description-left,.gslide-description.description-right{max-width:100%}.gslide-description.description-bottom,.gslide-description.description-top{margin:0 auto;width:100%}.gslide-description p{margin-bottom:12px}.gslide-description p:last-child{margin-bottom:0}.zoomed .gslide-description{display:none}.glightbox-button-hidden{display:none}.glightbox-mobile .glightbox-container .gslide-description{height:auto!important;width:100%;background:0 0;position:absolute;bottom:0;padding:19px 11px;max-width:100vw!important;-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important;max-height:78vh;overflow:auto!important;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.75)));background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.75) 100%);-webkit-transition:opacity .3s linear;transition:opacity .3s linear;padding-bottom:50px}.glightbox-mobile .glightbox-container .gslide-title{color:#fff;font-size:1em}.glightbox-mobile .glightbox-container .gslide-desc{color:#a1a1a1}.glightbox-mobile .glightbox-container .gslide-desc a{color:#fff;font-weight:700}.glightbox-mobile .glightbox-container .gslide-desc *{color:inherit}.glightbox-mobile .glightbox-container .gslide-desc string{color:#fff}.glightbox-mobile .glightbox-container .gslide-desc .desc-more{color:#fff;opacity:.4}.gdesc-open .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:.4}.gdesc-open .gdesc-inner{padding-bottom:30px}.gdesc-closed .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:1}.greset{-webkit-transition:all .3s ease;transition:all .3s ease}.gabsolute{position:absolute}.grelative{position:relative}.glightbox-desc{display:none!important}.glightbox-open{overflow:hidden}.gloader{height:25px;width:25px;-webkit-animation:lightboxLoader .8s infinite linear;animation:lightboxLoader .8s infinite linear;border:2px solid #fff;border-right-color:transparent;border-radius:50%;position:absolute;display:block;z-index:9999;left:0;right:0;margin:0 auto;top:47%}.goverlay{width:100%;height:calc(100vh + 1px);position:fixed;top:-1px;left:0;background:#000;will-change:opacity}.glightbox-mobile .goverlay{background:#000}.gclose,.gnext,.gprev{z-index:99999;cursor:pointer;width:26px;height:44px;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gclose svg,.gnext svg,.gprev svg{display:block;width:25px;height:auto;margin:0;padding:0}.gclose.disabled,.gnext.disabled,.gprev.disabled{opacity:.1}.gclose .garrow,.gnext .garrow,.gprev .garrow{stroke:#fff}.gbtn.focused{outline:2px solid #0f3d81}iframe.wait-autoplay{opacity:0}.glightbox-closing .gclose,.glightbox-closing .gnext,.glightbox-closing .gprev{opacity:0!important}.glightbox-clean .gslide-description{background:#fff}.glightbox-clean .gdesc-inner{padding:22px 20px}.glightbox-clean .gslide-title{font-size:1em;font-weight:400;font-family:arial;color:#000;margin-bottom:19px;line-height:1.4em}.glightbox-clean .gslide-desc{font-size:.86em;margin-bottom:0;font-family:arial;line-height:1.4em}.glightbox-clean .gslide-video{background:#000}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.75);border-radius:4px}.glightbox-clean .gclose path,.glightbox-clean .gnext path,.glightbox-clean .gprev path{fill:#fff}.glightbox-clean .gprev{position:absolute;top:-100%;left:30px;width:40px;height:50px}.glightbox-clean .gnext{position:absolute;top:-100%;right:30px;width:40px;height:50px}.glightbox-clean .gclose{width:35px;height:35px;top:15px;right:10px;position:absolute}.glightbox-clean .gclose svg{width:18px;height:auto}.glightbox-clean .gclose:hover{opacity:1}.gfadeIn{-webkit-animation:gfadeIn .5s ease;animation:gfadeIn .5s ease}.gfadeOut{-webkit-animation:gfadeOut .5s ease;animation:gfadeOut .5s ease}.gslideOutLeft{-webkit-animation:gslideOutLeft .3s ease;animation:gslideOutLeft .3s ease}.gslideInLeft{-webkit-animation:gslideInLeft .3s ease;animation:gslideInLeft .3s ease}.gslideOutRight{-webkit-animation:gslideOutRight .3s ease;animation:gslideOutRight .3s ease}.gslideInRight{-webkit-animation:gslideInRight .3s ease;animation:gslideInRight .3s ease}.gzoomIn{-webkit-animation:gzoomIn .5s ease;animation:gzoomIn .5s ease}.gzoomOut{-webkit-animation:gzoomOut .5s ease;animation:gzoomOut .5s ease}@-webkit-keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes gfadeIn{from{opacity:0}to{opacity:1}}@keyframes gfadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes gfadeOut{from{opacity:1}to{opacity:0}}@keyframes gfadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@-webkit-keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@-webkit-keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@-webkit-keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@media (min-width:769px){.glightbox-container .ginner-container{width:auto;height:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.glightbox-container .ginner-container.desc-top .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-top .gslide-image,.glightbox-container .ginner-container.desc-top .gslide-image img{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.glightbox-container .ginner-container.desc-left .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-left .gslide-image{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.gslide-image img{max-height:97vh;max-width:100%}.gslide-image img.zoomable{cursor:-webkit-zoom-in;cursor:zoom-in}.zoomed .gslide-image img.zoomable{cursor:-webkit-grab;cursor:grab}.gslide-inline{max-height:95vh}.gslide-external{max-height:100vh}.gslide-description.description-left,.gslide-description.description-right{max-width:275px}.glightbox-open{height:auto}.goverlay{background:rgba(0,0,0,.92)}.glightbox-clean .gslide-media{-webkit-box-shadow:1px 2px 9px 0 rgba(0,0,0,.65);box-shadow:1px 2px 9px 0 rgba(0,0,0,.65)}.glightbox-clean .description-left .gdesc-inner,.glightbox-clean .description-right .gdesc-inner{position:absolute;height:100%;overflow-y:auto}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.32)}.glightbox-clean .gclose:hover,.glightbox-clean .gnext:hover,.glightbox-clean .gprev:hover{background-color:rgba(0,0,0,.7)}.glightbox-clean .gprev{top:45%}.glightbox-clean .gnext{top:45%}}@media (min-width:992px){.glightbox-clean .gclose{opacity:.7;right:20px}}@media screen and (max-height:420px){.goverlay{background:#000}}/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/* Vars */
.pk-zoom-icon-popup {
	--pk-zoom-icon-popup-color: white;
	--pk-zoom-icon-popup-background: rgba(0, 0, 0, 0.6);
	--pk-zoom-icon-popup-font-size: 16px;
}

/* Common Style */
.pk-lightbox-container {
	position: relative;
	max-width: 100%;
}

.pk-zoom-icon-popup {
	display: block;
}

.pk-zoom-icon-popup:after {
	display: block;
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	text-align: center;
	opacity: 0;
	color: var(--pk-zoom-icon-popup-color);
	background: var(--pk-zoom-icon-popup-background);
	transition: all 0.2s ease;
	font-family: 'premiumkits-icons';
	font-size: var(--pk-zoom-icon-popup-font-size);
	content: "\e916";
}

.pk-zoom-icon-popup:hover:after {
	opacity: 1;
}

.pk-zoom-icon-popup img {
	min-width: 100%;
}

.glightbox-clean .gslide-description {
    background: transparent;
}

.glightbox-clean .gdesc-inner {
    padding-left: 0;
    padding-right: 0;
}

.glightbox-clean .gslide-title {
    color: white;
    font-family: inherit;
    font-size: 1rem;
    font-weight: inherit;
}

.glightbox-clean .gslide-desc {
    color: rgba(255, 255, 255, 0.75);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: inherit;
}/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-subscribe-form-wrap {
	--pk-subscribe-with-bg-color: #FFFFFF;
	--pk-subscribe-with-bg-elements-color: #FFFFFF;
	--pk-subscribe-heading-font-size: 1.25rem;
	--pk-subscribe-privacy-font-size: 80%;
}

/*--------------------------------------------------------------*/
.pk-subscribe-form-wrap {
	position: relative;
}

.pk-subscribe-form-wrap .pk-subscribe-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.pk-subscribe-form-wrap .pk-subscribe-bg img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

.pk-subscribe-form-wrap .pk-input-group {
	display: flex;
}

.pk-subscribe-form-wrap .pk-alert {
	margin: 1rem 0 0;
}

.pk-subscribe-form-wrap .pk-font-heading {
	font-size: var(--pk-subscribe-heading-font-size);
}

.pk-subscribe-form-wrap .pk-privacy {
	margin: 1rem 0 0;
	font-size: var(--pk-subscribe-privacy-font-size);
}

.pk-subscribe-form-wrap .pk-privacy label {
	margin-bottom: 0;
	cursor: pointer;
}

.pk-subscribe-form-wrap .pk-privacy input[type="checkbox"] {
	margin-right: 0.5rem;
}

.pk-subscribe-form-wrap .pk-subscribe-message a,
.pk-subscribe-form-wrap .pk-privacy a {
	border: none;
	text-decoration: underline;
}

.pk-subscribe-form-wrap .pk-subscribe-message a:hover,
.pk-subscribe-form-wrap .pk-privacy a:hover {
	text-decoration: none;
}

.pk-subscribe-with-name .pk-input-group {
	flex-direction: column;
}

.pk-subscribe-with-name .pk-input-group input,
.pk-subscribe-with-name .pk-input-group button {
	margin-top: 0.5rem;
}

.pk-subscribe-with-name .pk-input-group input:first-child,
.pk-subscribe-with-name .pk-input-group button:first-child {
	margin-top: 0;
}

.pk-subscribe-with-name .pk-input-group input[type="text"] {
	width: 100%;
}

.pk-subscribe-with-bg {
	color: var(--pk-subscribe-with-bg-color);
	overflow: hidden;
}

.pk-subscribe-with-bg .pk-subscribe-container {
	position: relative;
	padding: 2rem;
	z-index: 2;
}

.pk-subscribe-with-bg .pk-input-group input,
.pk-subscribe-with-bg .pk-input-group button {
	margin-top: 0.5rem;
}

.pk-subscribe-with-bg .pk-input-group input:first-child,
.pk-subscribe-with-bg .pk-input-group button:first-child {
	margin-top: 0;
}

.pk-subscribe-with-bg .section-heading {
	color: var(--pk-subscribe-with-bg-elements-color);
}

.pk-subscribe-with-bg .pk-title,
.pk-subscribe-with-bg .pk-subscribe-message,
.pk-subscribe-with-bg .pk-subscribe-message a,
.pk-subscribe-with-bg .pk-privacy,
.pk-subscribe-with-bg .pk-privacy a {
	color: var(--pk-subscribe-with-bg-elements-color);
}

.pk-subscribe-with-bg .subscription {
	box-shadow: none !important;
}

.pk-subscribe-form-widget .pk-bg-overlay {
	text-align: center;
}

.pk-subscribe-form-widget .pk-bg-overlay .pk-input-group {
	background: transparent;
	display: block;
}

.pk-subscribe-form-widget .pk-bg-overlay .pk-input-group button {
	margin-bottom: 0;
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-pin-it {
	--pk-pinterest-pinit-background: rgba(0,0,0,0.25);
	--pk-pinterest-pinit-background-hover: rgba(0,0,0,0.5);
	--pk-pinterest-pinit-color: #FFFFFF;
	--pk-pinterest-pinit-color-hover: #FFFFFF;
	--pk-pinterest-pinit-font-size: 16px;
}

/*--------------------------------------------------------------*/
.pk-pin-it-container {
	position: relative;
	max-width: 100%;
}

@-webkit-keyframes pk_pin_it_show {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes pk_pin_it_show {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.pk-pin-it {
	position: absolute;
	top: 1rem;
	left: 1rem;
	color: var(--pk-pinterest-pinit-color) !important;
	text-decoration: none !important;
	border: none !important;
	box-shadow: none !important;
	background-color: var(--pk-pinterest-pinit-background);
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	font-size: var(--pk-pinterest-pinit-font-size);
	text-align: center;
	opacity: 1;
	transition: background-color 0.25s ease;
	z-index: 2;
}

.pk-pin-it:hover {
	background-color: var(--pk-pinterest-pinit-background-hover);
	color: var(--pk-pinterest-pinit-color-hover);
}

.pk-pin-it span:first-child {
	display: none;
}

.pk-pin-it.pk-pin-it-visible {
	-webkit-animation: pk_pin_it_show 0.25s ease;
	animation: pk_pin_it_show 0.25s ease;
}

.wp-block-gallery .blocks-gallery-image .pk-pin-it,
.wp-block-gallery .blocks-gallery-item
.wp-block-gallery.is-cropped .blocks-gallery-image .pk-pin-it,
.wp-block-gallery.is-cropped .blocks-gallery-item .pk-pin-it {
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
}

.wp-block-gallery figure.wp-block-image a.pk-pin-it {
	display: block !important;
	width: initial !important;
	height: initial !important;
	flex: initial !important;
	min-width: 32px;
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-widget-posts {
	--pk-posts-thumbnail-width: 80px;
	--pk-posts-thumbnail-border-radius: 100%;
	--pk-posts-thumbnail-gutter: 2rem;
	--pk-posts-number-color: #FFFFFF;
	--pk-posts-number-font-size: 80%;
	--pk-posts-number-top: 0;
	--pk-posts-number-left: 0;
	--pk-posts-number-right: initial;
	--pk-posts-number-bottom: initial;
	--pk-posts-number-width: 30px;
	--pk-posts-number-height: 30px;
	--pk-posts-number-line-height: 30px;
	--pk-posts-number-border-radius: 100%;
}

/*--------------------------------------------------------------*/
.pk-widget-posts .pk-post-item:not(:first-child) {
	margin-top: 1rem;
}

.pk-widget-posts .pk-post-outer {
	display: flex;
}

.pk-widget-posts .pk-post-thumbnail {
	position: relative;
	flex: 0 0 var(--pk-posts-thumbnail-width);
	margin-right: var(--pk-posts-thumbnail-gutter);
}

.pk-widget-posts .pk-post-thumbnail img {
	width: var(--pk-posts-thumbnail-width);
	height: var(--pk-posts-thumbnail-width);
	border-radius: var(--pk-posts-thumbnail-border-radius);
	-o-object-fit: cover;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

.pk-widget-posts .pk-post-data {
	flex-grow: 1;
	width: 100%;
}

.pk-widget-posts .pk-post-number {
	position: absolute;
	top: var(--pk-posts-number-top);
	left: var(--pk-posts-number-left);
	right: var(--pk-posts-number-right);
	bottom: var(--pk-posts-number-bottom);
	width: var(--pk-posts-number-width);
	height: var(--pk-posts-number-height);
	line-height: var(--pk-posts-number-line-height);
	color: var(--pk-posts-number-color);
	text-align: center;
	border-radius: var(--pk-posts-number-border-radius);
	font-size: var(--pk-posts-number-font-size);
}

.pk-widget-posts .pk-post-data .meta-category {
	display: inline-block;
	margin-bottom: 0.25rem;
}

.pk-widget-posts .pk-post-data .entry-title {
	margin-bottom: 0.25rem;
}

.pk-widget-posts .pk-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.pk-widget-posts .pk-post-meta .sep {
	display: inline-block;
	padding: 0 0.5rem;
}

.pk-widget-posts .pk-post-meta-hide {
	display: none;
}

.pk-widget-posts-template-large .pk-post-item:not(:first-child) {
	margin-top: 2rem;
}

.pk-widget-posts-template-large .pk-post-outer {
	display: block;
}

.pk-widget-posts-template-large .pk-post-thumbnail {
	margin-right: 0;
	margin-bottom: 1rem;
}

.pk-widget-posts-template-large .pk-post-thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 0;
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-share-buttons-wrap {
	--pk-share-link-background: #F8F9FA;
	--pk-share-link-color: #000000;
	--pk-share-link-hover-color: #FFFFFF;
	--pk-share-link-hover-count-color: rgba(255,255,255,.9);
	--pk-share-simple-light-link-background: transparent;
	--pk-share-simple-light-link-hover-color: #6c757d;
	--pk-share-simple-dark-link-background: rgba(0,0,0,1);
	--pk-share-simple-dark-link-color: white;
	--pk-share-simple-dark-link-count-color: rgba(255, 255, 255, 0.9);
	--pk-share-simple-dark-link-hover-background: rgba(0,0,0,0.85);
	--pk-share-bold-bg-link-color: #fff;
	--pk-share-bold-bg-link-count-color: rgba(255, 255, 255, 0.9);
	--pk-share-bold-light-link-hover-count-color: #6c757d;
	--pk-share-bold-link-hover-count-color: #6c757d;
	--pk-share-inverse-link-color: #fff;
	--pk-share-inverse-link-count-color: rgba(255,255,255,0.75);
	--pk-share-inverse-total-count-color: rgba(255,255,255,0.75);
	--pk-share-inverse-total-label-color: #fff;
	--pk-share-highlight-background: #fff;
	--pk-share-highlight-box-shadow: 0 2px 9px 0 rgba(0,0,0,0.07);
	--pk-mobile-share-horizontal-background: #F8F9FA;
	--pk-mobile-share-total-background: rgba(0,0,0,1);
	--pk-mobile-share-total-label-color: rgba(255,255,255,1);
	--pk-mobile-share-total-count-color: rgba(255,255,255,0.5);
	--pk-mobile-share-total-count-font-size: 0.75rem;
	--pk-mobile-share-close-font-size: 1.5rem;
	--pk-mobile-share-close-color: #FFF;
	--pk-share-tip-background: #FFFFFF;
	--pk-share-tip-border-color: #dbdbdb;
	--pk-share-tip-border-radius: 2px;
}

.pk-mobile-share-overlay {
	--pk-mobile-share-overlay-background: rgba(0,0,0,0.35);
}

/*--------------------------------------------------------------*/
/* --------------------------------------------------------------*/
.pk-share-buttons-wrap {
	display: flex;
	margin-top: 2rem;
	margin-bottom: 2rem;
	line-height: 1;
}

.pk-share-buttons-wrap .pk-share-buttons-link {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	width: 100%;
	height: 36px;
	padding: 0 1rem;
	background: var(--pk-share-link-background);
	color: var(--pk-share-link-color);
	text-decoration: none;
	transition: .25s ease all;
	border: none;
	box-shadow: none;
	text-decoration:none !important;
}

.pk-share-buttons-wrap .pk-share-buttons-link:hover {
	color: var(--pk-share-link-hover-color);
	box-shadow: none;
}

.pk-share-buttons-wrap .pk-share-buttons-link:hover .pk-share-buttons-count {
	color: var(--pk-share-link-hover-count-color);
}

.pk-share-buttons-wrap .pk-share-buttons-link .pk-share-buttons-count {
	transition: .25s ease all;
	opacity: 0.6;
}

.pk-share-buttons-icon,
.pk-share-buttons-title,
.pk-share-buttons-label,
.pk-share-buttons-count {
	padding: 0 0.25rem;
}

.pk-share-buttons-total {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 2rem;
}

.pk-share-buttons-total .pk-share-buttons-title {
	display: none;
	margin-bottom: .25rem;
}

.pk-share-buttons-total .pk-share-buttons-count {
	margin-bottom: .25rem;
}

.pk-share-buttons-items {
	display: flex;
	flex-grow: 1;
	flex-wrap: wrap;
	margin: -0.25rem;
}

.pk-share-buttons-item {
	display: flex;
	align-items: center;
	padding: 0.25rem;
}

.pk-share-buttons-icon {
	line-height: inherit;
}

.pk-share-buttons-item > .pk-share-buttons-count {
	display: flex;
	align-items: center;
	flex: 1 0 auto;
	padding: 0.25rem 0.25rem;
	margin-left: 0.5rem;
	position: relative;
	background: var(--pk-share-tip-background);
	border-color: var(--pk-share-tip-border-color);
	border: 1px solid var(--pk-share-tip-border-color);
	line-height: 1rem;
	border-radius: var(--pk-share-tip-border-radius);
	cursor: default;
}

.pk-share-buttons-item > .pk-share-buttons-count:after, .pk-share-buttons-item > .pk-share-buttons-count:before {
	right: 100%;
	top: 50%;
	border: solid transparent;
	height: 0;
	width: 0;
	content: " ";
	position: absolute;
	pointer-events: none;
}

.pk-share-buttons-item > .pk-share-buttons-count:after {
	border-color: transparent;
	border-right-color: var(--pk-share-tip-background);
	border-width: 5px;
	margin-top: -5px;
}

.pk-share-buttons-item > .pk-share-buttons-count:before {
	border-color: transparent;
	border-right-color: var(--pk-share-tip-border-color);
	border-width: 6px;
	margin-top: -6px;
}

.pk-share-buttons-no-count .pk-share-buttons-count {
	display: none;
}

.pk-share-buttons-total-no-count {
	display: none;
}

/* ----------------------------- Layouts ---------------------------------*/
.pk-share-buttons-layout-default .pk-share-buttons-item:nth-child(-n+2) {
	flex-grow: 1;
}

.pk-share-buttons-layout-default .pk-share-buttons-item:nth-child(n+3) .pk-share-buttons-title {
	display: none;
}

.pk-share-buttons-layout-default .pk-share-buttons-item:nth-child(n+3) .pk-share-buttons-label {
	display: none;
}

.pk-share-buttons-layout-equal .pk-share-buttons-item {
	flex-grow: 1;
}

/* ----------------------------- Schemes ---------------------------------*/
.pk-share-buttons-scheme-simple-light .pk-share-buttons-item,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item {
	margin-right: 0.25rem;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-item:last-child,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item:last-child,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item:last-child {
	margin-right: 0;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-link,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link {
	background: var(--pk-share-simple-light-link-background);
	padding: 0;
	height: initial;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-link:hover .pk-share-buttons-count,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link:hover .pk-share-buttons-count,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link:hover .pk-share-buttons-count {
	color: var(--pk-share-simple-light-link-hover-color);
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-twitter .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-twitter .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-twitter .pk-share-buttons-link:hover {
	color: #00aced;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-facebook .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-facebook .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-facebook .pk-share-buttons-link:hover {
	color: #3b5998;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-instagram .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-instagram .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-instagram .pk-share-buttons-link:hover {
	color: #675144;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover {
	color: #0084ff;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-xing .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-xing .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-xing .pk-share-buttons-link:hover {
	color: #006567;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-linkedin .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-linkedin .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-linkedin .pk-share-buttons-link:hover {
	color: #007bb6;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-pinterest .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-pinterest .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-pinterest .pk-share-buttons-link:hover {
	color: #cb2027;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover {
	color: #eb4823;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-whatsapp .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-whatsapp .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-whatsapp .pk-share-buttons-link:hover {
	color: #29a628;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-telegram .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-telegram .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-telegram .pk-share-buttons-link:hover {
	color: #2ca5e0;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-line .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-line .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-line .pk-share-buttons-link:hover {
	color: #25af00;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-viber .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-viber .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-viber .pk-share-buttons-link:hover {
	color: #7b519d;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-pocket .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-pocket .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-pocket .pk-share-buttons-link:hover {
	color: #ef4056;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-messenger .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-messenger .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-messenger .pk-share-buttons-link:hover {
	color: #0084ff;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-ok .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-ok .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-ok .pk-share-buttons-link:hover {
	color: #EE8208;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-vk .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-vk .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-vk .pk-share-buttons-link:hover {
	color: #45668e;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-vkontakte .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-vkontakte .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-vkontakte .pk-share-buttons-link:hover {
	color: #45668e;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-flipboard .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-flipboard .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-flipboard .pk-share-buttons-link:hover {
	color: #f52928;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-reddit .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-reddit .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-reddit .pk-share-buttons-link:hover {
	color: #ff4500;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-mix .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-mix .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-mix .pk-share-buttons-link:hover {
	color: #FF8226;
}

.pk-share-buttons-scheme-simple-light .pk-share-buttons-mail .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-mail .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-mail .pk-share-buttons-link:hover {
	color: #121212;
}

.pk-share-buttons-scheme-default .pk-share-buttons-twitter .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-twitter .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-twitter .pk-share-buttons-link:hover {
	background: #00aced;
}

.pk-share-buttons-scheme-default .pk-share-buttons-facebook .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-facebook .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-facebook .pk-share-buttons-link:hover {
	background: #3b5998;
}

.pk-share-buttons-scheme-default .pk-share-buttons-instagram .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-instagram .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-instagram .pk-share-buttons-link:hover {
	background: #675144;
}

.pk-share-buttons-scheme-default .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover {
	background: #0084ff;
}

.pk-share-buttons-scheme-default .pk-share-buttons-xing .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-xing .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-xing .pk-share-buttons-link:hover {
	background: #006567;
}

.pk-share-buttons-scheme-default .pk-share-buttons-linkedin .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-linkedin .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-linkedin .pk-share-buttons-link:hover {
	background: #007bb6;
}

.pk-share-buttons-scheme-default .pk-share-buttons-pinterest .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-pinterest .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-pinterest .pk-share-buttons-link:hover {
	background: #cb2027;
}

.pk-share-buttons-scheme-default .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover {
	background: #eb4823;
}

.pk-share-buttons-scheme-default .pk-share-buttons-whatsapp .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-whatsapp .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-whatsapp .pk-share-buttons-link:hover {
	background: #29a628;
}

.pk-share-buttons-scheme-default .pk-share-buttons-telegram .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-telegram .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-telegram .pk-share-buttons-link:hover {
	background: #2ca5e0;
}

.pk-share-buttons-scheme-default .pk-share-buttons-line .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-line .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-line .pk-share-buttons-link:hover {
	background: #25af00;
}

.pk-share-buttons-scheme-default .pk-share-buttons-viber .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-viber .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-viber .pk-share-buttons-link:hover {
	background: #7b519d;
}

.pk-share-buttons-scheme-default .pk-share-buttons-pocket .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-pocket .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-pocket .pk-share-buttons-link:hover {
	background: #ef4056;
}

.pk-share-buttons-scheme-default .pk-share-buttons-messenger .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-messenger .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-messenger .pk-share-buttons-link:hover {
	background: #0084ff;
}

.pk-share-buttons-scheme-default .pk-share-buttons-ok .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-ok .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-ok .pk-share-buttons-link:hover {
	background: #EE8208;
}

.pk-share-buttons-scheme-default .pk-share-buttons-vk .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-vk .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-vk .pk-share-buttons-link:hover {
	background: #45668e;
}

.pk-share-buttons-scheme-default .pk-share-buttons-vkontakte .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-vkontakte .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-vkontakte .pk-share-buttons-link:hover {
	background: #45668e;
}

.pk-share-buttons-scheme-default .pk-share-buttons-flipboard .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-flipboard .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-flipboard .pk-share-buttons-link:hover {
	background: #f52928;
}

.pk-share-buttons-scheme-default .pk-share-buttons-reddit .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-reddit .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-reddit .pk-share-buttons-link:hover {
	background: #ff4500;
}

.pk-share-buttons-scheme-default .pk-share-buttons-mix .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-mix .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-mix .pk-share-buttons-link:hover {
	background: #FF8226;
}

.pk-share-buttons-scheme-default .pk-share-buttons-mail .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-mail .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-default > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-mail .pk-share-buttons-link:hover {
	background: #121212;
}

.pk-share-buttons-scheme-simple-dark-back .pk-share-buttons-link,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link,
.is-style-pk-share-buttons-simple-dark-back > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link {
	background: var(--pk-share-simple-dark-link-background);
	color: var(--pk-share-simple-dark-link-color);
}

.pk-share-buttons-scheme-simple-dark-back .pk-share-buttons-link .pk-share-buttons-count,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link .pk-share-buttons-count,
.is-style-pk-share-buttons-simple-dark-back > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link .pk-share-buttons-count {
	color: var(--pk-share-simple-dark-link-count-color);
}

.pk-share-buttons-scheme-simple-dark-back .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-simple-dark-back > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link:hover {
	background: var(--pk-share-simple-dark-link-hover-background);
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-link {
	color: var(--pk-share-bold-bg-link-color);
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-link .pk-share-buttons-count,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-link .pk-share-buttons-count {
	color: var(--pk-share-bold-bg-link-count-color);
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-twitter .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-twitter .pk-share-buttons-link {
	background: #00aced;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-twitter .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-twitter .pk-share-buttons-link:hover {
	background: #21c2ff;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-facebook .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-facebook .pk-share-buttons-link {
	background: #3b5998;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-facebook .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-facebook .pk-share-buttons-link:hover {
	background: #4c70ba;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-instagram .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-instagram .pk-share-buttons-link {
	background: #675144;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-instagram .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-instagram .pk-share-buttons-link:hover {
	background: #866958;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-fb-messenger .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-fb-messenger .pk-share-buttons-link {
	background: #0084ff;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover {
	background: #339dff;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-xing .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-xing .pk-share-buttons-link {
	background: #006567;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-xing .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-xing .pk-share-buttons-link:hover {
	background: #00979a;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-linkedin .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-linkedin .pk-share-buttons-link {
	background: #007bb6;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-linkedin .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-linkedin .pk-share-buttons-link:hover {
	background: #009de9;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-pinterest .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-pinterest .pk-share-buttons-link {
	background: #cb2027;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-pinterest .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-pinterest .pk-share-buttons-link:hover {
	background: #e03e44;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-stumbleupon .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-stumbleupon .pk-share-buttons-link {
	background: #eb4823;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover {
	background: #ef6f52;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-whatsapp .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-whatsapp .pk-share-buttons-link {
	background: #29a628;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-whatsapp .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-whatsapp .pk-share-buttons-link:hover {
	background: #34ce33;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-telegram .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-telegram .pk-share-buttons-link {
	background: #2ca5e0;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-telegram .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-telegram .pk-share-buttons-link:hover {
	background: #58b8e7;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-line .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-line .pk-share-buttons-link {
	background: #25af00;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-line .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-line .pk-share-buttons-link:hover {
	background: #30e200;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-viber .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-viber .pk-share-buttons-link {
	background: #7b519d;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-viber .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-viber .pk-share-buttons-link:hover {
	background: #946db4;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-pocket .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-pocket .pk-share-buttons-link {
	background: #ef4056;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-pocket .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-pocket .pk-share-buttons-link:hover {
	background: #f36f80;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-messenger .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-messenger .pk-share-buttons-link {
	background: #0084ff;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-messenger .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-messenger .pk-share-buttons-link:hover {
	background: #339dff;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-ok .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-ok .pk-share-buttons-link {
	background: #EE8208;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-ok .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-ok .pk-share-buttons-link:hover {
	background: #f89b31;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-vk .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-vk .pk-share-buttons-link {
	background: #45668e;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-vk .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-vk .pk-share-buttons-link:hover {
	background: #587fae;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-vkontakte .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-vkontakte .pk-share-buttons-link {
	background: #45668e;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-vkontakte .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-vkontakte .pk-share-buttons-link:hover {
	background: #587fae;
}
.pk-share-buttons-scheme-bold-bg .pk-share-buttons-flipboard .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-flipboard .pk-share-buttons-link {
	background: #f52928;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-flipboard .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-flipboard .pk-share-buttons-link:hover {
	background: #f75a59;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-reddit .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-reddit .pk-share-buttons-link {
	background: #ff4500;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-reddit .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-reddit .pk-share-buttons-link:hover {
	background: #ff6a33;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-mix .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-mix .pk-share-buttons-link {
	background: #FF8226;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-mix .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-mix .pk-share-buttons-link:hover {
	background: #ff9f59;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-mail .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-mail .pk-share-buttons-link {
	background: #121212;
}

.pk-share-buttons-scheme-bold-bg .pk-share-buttons-mail .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-bg .pk-share-buttons-wrap .pk-share-buttons-mail .pk-share-buttons-link:hover {
	background: #2c2b2b;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-item,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item,
.is-style-pk-share-buttons-bold-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item {
	margin-right: 0.25rem;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-item:last-child,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item:last-child,
.is-style-pk-share-buttons-bold-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item:last-child {
	margin-right: 0;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-link,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link {
	background: transparent;
	padding: 0;
	height: initial;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-link:hover > .pk-share-buttons-count,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link:hover > .pk-share-buttons-count,
.is-style-pk-share-buttons-bold-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link:hover > .pk-share-buttons-count {
	color: var(--pk-share-bold-light-link-hover-count-color);
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-twitter .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-twitter .pk-share-buttons-link {
	color: #00aced;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-twitter .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-twitter .pk-share-buttons-link:hover {
	color: #0087ba;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-facebook .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-facebook .pk-share-buttons-link {
	color: #3b5998;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-facebook .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-facebook .pk-share-buttons-link:hover {
	color: #2d4373;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-instagram .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-instagram .pk-share-buttons-link {
	color: #675144;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-instagram .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-instagram .pk-share-buttons-link:hover {
	color: #483930;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-fb-messenger .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-fb-messenger .pk-share-buttons-link {
	color: #0084ff;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover {
	color: #006acc;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-xing .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-xing .pk-share-buttons-link {
	color: #006567;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-xing .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-xing .pk-share-buttons-link:hover {
	color: #003334;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-linkedin .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-linkedin .pk-share-buttons-link {
	color: #007bb6;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-linkedin .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-linkedin .pk-share-buttons-link:hover {
	color: #005983;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-pinterest .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-pinterest .pk-share-buttons-link {
	color: #cb2027;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-pinterest .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-pinterest .pk-share-buttons-link:hover {
	color: #9f191f;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-stumbleupon .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-stumbleupon .pk-share-buttons-link {
	color: #eb4823;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover {
	color: #c93412;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-whatsapp .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-whatsapp .pk-share-buttons-link {
	color: #29a628;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-whatsapp .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-whatsapp .pk-share-buttons-link:hover {
	color: #1f7d1e;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-telegram .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-telegram .pk-share-buttons-link {
	color: #2ca5e0;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-telegram .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-telegram .pk-share-buttons-link:hover {
	color: #1c88bd;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-line .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-line .pk-share-buttons-link {
	color: #25af00;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-line .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-line .pk-share-buttons-link:hover {
	color: #1a7c00;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-viber .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-viber .pk-share-buttons-link {
	color: #7b519d;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-viber .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-viber .pk-share-buttons-link:hover {
	color: #61407b;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-pocket .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-pocket .pk-share-buttons-link {
	color: #ef4056;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-pocket .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-pocket .pk-share-buttons-link:hover {
	color: #e9132e;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-messenger .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-messenger .pk-share-buttons-link {
	color: #0084ff;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-messenger .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-messenger .pk-share-buttons-link:hover {
	color: #006acc;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-ok .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-ok .pk-share-buttons-link {
	color: #EE8208;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-ok .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-ok .pk-share-buttons-link:hover {
	color: #bd6706;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-vk .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-vk .pk-share-buttons-link {
	color: #45668e;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-vk .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-vk .pk-share-buttons-link:hover {
	color: #344d6c;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-vkontakte .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-vkontakte .pk-share-buttons-link {
	color: #45668e;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-vkontakte .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-vkontakte .pk-share-buttons-link:hover {
	color: #344d6c;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-flipboard .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-flipboard .pk-share-buttons-link {
	color: #f52928;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-flipboard .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-flipboard .pk-share-buttons-link:hover {
	color: #e00b0a;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-reddit .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-reddit .pk-share-buttons-link {
	color: #ff4500;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-reddit .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-reddit .pk-share-buttons-link:hover {
	color: #cc3700;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-mix .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-mix .pk-share-buttons-link {
	color: #FF8226;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-mix .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-mix .pk-share-buttons-link:hover {
	color: #f26700;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-mail .pk-share-buttons-link,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-mail .pk-share-buttons-link {
	color: #121212;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-mail .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold-light .pk-share-buttons-wrap .pk-share-buttons-mail .pk-share-buttons-link:hover {
	color: black;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-link:hover > .pk-share-buttons-count,
.is-style-pk-share-buttons-bold .pk-share-buttons-link:hover > .pk-share-buttons-count {
	color: var(--pk-share-bold-link-hover-count-color);
}

.pk-share-buttons-scheme-bold .pk-share-buttons-twitter .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-twitter .pk-share-buttons-link {
	color: #00aced;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-twitter .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-twitter .pk-share-buttons-link:hover {
	color: #0087ba;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-facebook .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-facebook .pk-share-buttons-link {
	color: #3b5998;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-facebook .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-facebook .pk-share-buttons-link:hover {
	color: #2d4373;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-instagram .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-instagram .pk-share-buttons-link {
	color: #675144;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-instagram .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-instagram .pk-share-buttons-link:hover {
	color: #483930;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-fb-messenger .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-fb-messenger .pk-share-buttons-link {
	color: #0084ff;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover {
	color: #006acc;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-xing .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-xing .pk-share-buttons-link {
	color: #006567;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-xing .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-xing .pk-share-buttons-link:hover {
	color: #003334;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-linkedin .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-linkedin .pk-share-buttons-link {
	color: #007bb6;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-linkedin .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-linkedin .pk-share-buttons-link:hover {
	color: #005983;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-pinterest .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-pinterest .pk-share-buttons-link {
	color: #cb2027;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-pinterest .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-pinterest .pk-share-buttons-link:hover {
	color: #9f191f;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-stumbleupon .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-stumbleupon .pk-share-buttons-link {
	color: #eb4823;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover {
	color: #c93412;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-whatsapp .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-whatsapp .pk-share-buttons-link {
	color: #29a628;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-whatsapp .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-whatsapp .pk-share-buttons-link:hover {
	color: #1f7d1e;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-telegram .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-telegram .pk-share-buttons-link {
	color: #2ca5e0;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-telegram .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-telegram .pk-share-buttons-link:hover {
	color: #1c88bd;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-line .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-line .pk-share-buttons-link {
	color: #25af00;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-line .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-line .pk-share-buttons-link:hover {
	color: #1a7c00;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-viber .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-viber .pk-share-buttons-link {
	color: #7b519d;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-viber .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-viber .pk-share-buttons-link:hover {
	color: #61407b;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-pocket .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-pocket .pk-share-buttons-link {
	color: #ef4056;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-pocket .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-pocket .pk-share-buttons-link:hover {
	color: #e9132e;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-messenger .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-messenger .pk-share-buttons-link {
	color: #0084ff;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-messenger .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-messenger .pk-share-buttons-link:hover {
	color: #006acc;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-ok .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-ok .pk-share-buttons-link {
	color: #EE8208;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-ok .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-ok .pk-share-buttons-link:hover {
	color: #bd6706;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-vk .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-vk .pk-share-buttons-link {
	color: #45668e;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-vk .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-vk .pk-share-buttons-link:hover {
	color: #344d6c;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-vkontakte .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-vkontakte .pk-share-buttons-link {
	color: #45668e;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-vkontakte .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-vkontakte .pk-share-buttons-link:hover {
	color: #344d6c;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-flipboard .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-flipboard .pk-share-buttons-link {
	color: #f52928;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-flipboard .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-flipboard .pk-share-buttons-link:hover {
	color: #e00b0a;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-reddit .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-reddit .pk-share-buttons-link {
	color: #ff4500;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-reddit .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-reddit .pk-share-buttons-link:hover {
	color: #cc3700;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-mix .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-mix .pk-share-buttons-link {
	color: #FF8226;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-mix .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-mix .pk-share-buttons-link:hover {
	color: #f26700;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-mail .pk-share-buttons-link,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-mail .pk-share-buttons-link {
	color: #121212;
}

.pk-share-buttons-scheme-bold .pk-share-buttons-mail .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-bold .pk-share-buttons-wrap .pk-share-buttons-mail .pk-share-buttons-link:hover {
	color: black;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-item,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item {
	margin-right: 0.25rem;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-item:last-child,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item:last-child,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item:last-child {
	margin-right: 0;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-link,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link {
	background: transparent;
	padding: 0;
	height: initial;
	color: var(--pk-share-inverse-link-color);
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-link .pk-share-buttons-count,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link .pk-share-buttons-count,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-link .pk-share-buttons-count {
	color: var(--pk-share-inverse-link-count-color);
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-total .pk-share-buttons-count,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-total .pk-share-buttons-count,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-total .pk-share-buttons-count {
	color: var(--pk-share-inverse-total-count-color) !important;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-total .pk-share-buttons-label,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-total .pk-share-buttons-label,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-total .pk-share-buttons-label {
	color: var(--pk-share-inverse-total-label-color) !important;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-twitter .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-twitter .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-twitter .pk-share-buttons-link:hover {
	color: #00aced;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-facebook .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-facebook .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-facebook .pk-share-buttons-link:hover {
	color: #3b5998;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-instagram .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-instagram .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-instagram .pk-share-buttons-link:hover {
	color: #675144;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-fb-messenger .pk-share-buttons-link:hover {
	color: #0084ff;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-xing .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-xing .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-xing .pk-share-buttons-link:hover {
	color: #006567;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-linkedin .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-linkedin .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-linkedin .pk-share-buttons-link:hover {
	color: #007bb6;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-pinterest .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-pinterest .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-pinterest .pk-share-buttons-link:hover {
	color: #cb2027;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-stumbleupon .pk-share-buttons-link:hover {
	color: #eb4823;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-whatsapp .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-whatsapp .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-whatsapp .pk-share-buttons-link:hover {
	color: #29a628;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-telegram .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-telegram .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-telegram .pk-share-buttons-link:hover {
	color: #2ca5e0;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-line .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-line .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-line .pk-share-buttons-link:hover {
	color: #25af00;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-viber .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-viber .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-viber .pk-share-buttons-link:hover {
	color: #7b519d;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-pocket .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-pocket .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-pocket .pk-share-buttons-link:hover {
	color: #ef4056;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-messenger .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-messenger .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-messenger .pk-share-buttons-link:hover {
	color: #0084ff;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-ok .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-ok .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-ok .pk-share-buttons-link:hover {
	color: #EE8208;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-vk .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-vk .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-vk .pk-share-buttons-link:hover {
	color: #45668e;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-vkontakte .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-vkontakte .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-vkontakte .pk-share-buttons-link:hover {
	color: #45668e;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-flipboard .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-flipboard .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-flipboard .pk-share-buttons-link:hover {
	color: #f52928;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-reddit .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-reddit .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-reddit .pk-share-buttons-link:hover {
	color: #ff4500;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-mix .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-mix .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-mix .pk-share-buttons-link:hover {
	color: #FF8226;
}

.pk-share-buttons-scheme-inverse-light .pk-share-buttons-mail .pk-share-buttons-link:hover,
:not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-mail .pk-share-buttons-link:hover,
.is-style-pk-share-buttons-inverse-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-mail .pk-share-buttons-link:hover {
	color: #121212;
}

@media (min-width: 720px) {
	.pk-share-buttons-wrap .pk-share-buttons-item.pk-share-buttons-whatsapp,
	.pk-share-buttons-wrap .pk-share-buttons-item.pk-share-buttons-fb-messenger {
		display: none;
	}
}

/* ----------------------------- Highlight and Shares ---------------------------------*/
.pk-share-buttons-highlight-text {
	display: none;
}

.pk-share-buttons-highlight-clone {
	background: var(--pk-share-highlight-background);
	position: absolute;
	display: block;
	width: auto;
	height: auto;
	padding: 1rem;
	margin: 0;
	z-index: 3;
	box-shadow: var(--pk-share-highlight-box-shadow);
}

/* ----------------------------- Blockquote ---------------------------------*/
.pk-share-buttons-blockquote {
	display: none;
}

.pk-share-buttons-blockquote-clone {
	display: block;
	margin-top: 1.5rem;
	margin-bottom: 0;
}

/* ----------------------------- Mobile Share ---------------------------------*/
.pk-share-buttons-mobile-share {
	position: fixed;
	z-index: 99997;
}

@media (min-width: 720px) {
	.pk-share-buttons-mobile-share {
		display: none !important;
	}
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-horizontal {
	background: var(--pk-mobile-share-horizontal-background);
	width: 100%;
	left: 0;
	bottom: 0;
	margin: 0;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-horizontal .pk-share-buttons-total {
	margin-right: 1.5rem;
	padding-left: 1.5rem;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-horizontal .pk-share-buttons-items {
	margin: 0;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-horizontal .pk-share-buttons-item {
	flex: 1;
	padding: 0;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-horizontal .pk-share-buttons-link {
	height: 100%;
	padding: 1.5rem 0.5rem;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side, .pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side, .pk-share-buttons-mobile-share.pk-share-buttons-layout-popup {
	flex-direction: column;
	overflow: hidden;
	margin: 0;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side .pk-share-buttons-total, .pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side .pk-share-buttons-total, .pk-share-buttons-mobile-share.pk-share-buttons-layout-popup .pk-share-buttons-total {
	position: relative;
	background: var(--pk-mobile-share-total-background);
	flex-direction: row;
	align-items: center;
	padding: 1rem;
	margin: 0;
	order: 2;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition: 0.25s;
	z-index: 1;
	cursor: pointer;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side .pk-share-buttons-total .pk-share-buttons-title, .pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side .pk-share-buttons-total .pk-share-buttons-title, .pk-share-buttons-mobile-share.pk-share-buttons-layout-popup .pk-share-buttons-total .pk-share-buttons-title {
	display: none;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side .pk-share-buttons-total .pk-share-buttons-label, .pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side .pk-share-buttons-total .pk-share-buttons-label, .pk-share-buttons-mobile-share.pk-share-buttons-layout-popup .pk-share-buttons-total .pk-share-buttons-label {
	display: flex;
	align-items: center;
	color: var(--pk-mobile-share-total-label-color);
	margin: 0;
	order: 1;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side .pk-share-buttons-total .pk-share-buttons-label:before, .pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side .pk-share-buttons-total .pk-share-buttons-label:before, .pk-share-buttons-mobile-share.pk-share-buttons-layout-popup .pk-share-buttons-total .pk-share-buttons-label:before {
	font-family: 'premiumkits-icons';
	margin-right: 0.5rem;
	content: "\e93d";
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side .pk-share-buttons-total .pk-share-buttons-count, .pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side .pk-share-buttons-total .pk-share-buttons-count, .pk-share-buttons-mobile-share.pk-share-buttons-layout-popup .pk-share-buttons-total .pk-share-buttons-count {
	color: var(--pk-mobile-share-total-count-color);
	font-size: var(--pk-mobile-share-total-count-font-size);
	margin: 0;
	order: 2;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side .pk-share-buttons-total-no-count, .pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side .pk-share-buttons-total-no-count, .pk-share-buttons-mobile-share.pk-share-buttons-layout-popup .pk-share-buttons-total-no-count {
	display: flex;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side .pk-share-buttons-total-no-count .pk-share-buttons-count, .pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side .pk-share-buttons-total-no-count .pk-share-buttons-count, .pk-share-buttons-mobile-share.pk-share-buttons-layout-popup .pk-share-buttons-total-no-count .pk-share-buttons-count {
	display: none;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side .pk-share-buttons-items, .pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side .pk-share-buttons-items {
	flex-direction: column;
	margin: 0;
	margin-bottom: 1rem;
	order: 1;
	opacity: 1;
	transform: translate3d(0, calc(100% + 1rem), 0);
	transition: 0.5s ease;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side .pk-share-buttons-items:first-child, .pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side .pk-share-buttons-items:first-child {
	transform: translate3d(0, 0, 0);
	margin-bottom: 0;
	opacity: 1;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side .pk-share-buttons-items:after, .pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side .pk-share-buttons-items:after {
	bottom: -1rem;
	right: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-bottom-color: transparent;
	border-width: 5px;
	transform: translateX(50%);
	margin-bottom: -10px;
	transition: 0.5s;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side .pk-share-buttons-item, .pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side .pk-share-buttons-item {
	padding: 0;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side .pk-share-buttons-link, .pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side .pk-share-buttons-link {
	height: 40px;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side {
	left: 1rem;
	bottom: 1rem;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-left-side .pk-share-buttons-items {
	margin-right: auto;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side {
	right: 1rem;
	bottom: 1rem;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-right-side .pk-share-buttons-items {
	margin-left: auto;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-popup {
	display: flex;
	align-items: center;
	justify-content: center;
	right: 1rem;
	bottom: 1rem;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-popup:after {
	position: absolute;
	top: 0;
	right: 0;
	left: -99999px;
	font-family: 'premiumkits-icons';
	font-size: var(--pk-mobile-share-close-font-size);
	color: var(--pk-mobile-share-close-color);
	opacity: 0;
	transition: opacity 0.25s ease;
	cursor: pointer;
	content: "\e913";
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-popup .pk-share-buttons-total {
	bottom: 1rem;
	right: 0;
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition: 0.25s ease;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-popup .pk-share-buttons-items {
	flex-grow: initial;
	margin: 0;
	opacity: 0;
	margin-left: -9999px;
	max-height: calc(100vh - 8rem);
	overflow-y: auto;
	transition: opacity 0.25s ease;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-popup .pk-share-buttons-item {
	flex: 1;
	padding: 0;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-popup .pk-share-buttons-link {
	display: flex;
	flex-direction: column;
	padding: 3rem 1.5rem;
}

.pk-share-buttons-mobile-share.pk-share-buttons-layout-popup .pk-share-buttons-link .pk-share-buttons-count {
	margin-top: 0.25rem;
}

.pk-mobile-share-overlay {
	background: transparent;
	transition: 0.5s;
	z-index: 99996;
}

.pk-mobile-share-active .pk-mobile-share-overlay {
	background: var(--pk-mobile-share-overlay-background);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.pk-mobile-share-active .pk-mobile-share-overlay .pk-share-buttons-layout-left-side .pk-share-buttons-items,
.pk-mobile-share-active .pk-mobile-share-overlay .pk-share-buttons-layout-right-side .pk-share-buttons-items {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.pk-mobile-share-active .pk-mobile-share-overlay .pk-share-buttons-layout-left-side .pk-share-buttons-items:after,
.pk-mobile-share-active .pk-mobile-share-overlay .pk-share-buttons-layout-right-side .pk-share-buttons-items:after {
	border-bottom-color: var(--pk-mobile-share-total-background);
	margin-bottom: 0;
}

.pk-mobile-share-active .pk-mobile-share-overlay .pk-share-buttons-layout-popup {
	overflow: initial;
	top: 1rem;
	left: 1rem;
	width: calc(100% - 2rem);
	height: calc(100% - 2rem);
}

.pk-mobile-share-active .pk-mobile-share-overlay .pk-share-buttons-layout-popup:after {
	left: initial;
	opacity: 1;
}

.pk-mobile-share-active .pk-mobile-share-overlay .pk-share-buttons-layout-popup .pk-share-buttons-total {
	position: absolute;
	transform: translate3d(0, 100%, 0);
	opacity: 0;
}

.pk-mobile-share-active .pk-mobile-share-overlay .pk-share-buttons-layout-popup .pk-share-buttons-items {
	margin-left: 0;
	opacity: 1;
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.gallery-type-slider.gallery {
	display: block;
}

.gallery-type-slider .gallery-item {
	width: 100%;
	max-width: 100%;
	padding: 0;
}

.gallery-type-slider .wp-caption-text {
	margin-top: 1rem;
}

.gallery-type-slider figure {
	margin-bottom: 0;
}

.gallery-type-slider img {
	width: 100%;
	height: auto;
}

.gallery-type-slider > .gallery-item:not(:first-child) {
	position: fixed;
	top: -9999px;
	left: -9999px;
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-social-links-wrap {
	--pk-social-link-color: #000000;
	--pk-social-links-label-color: rgba(0,0,0,.3);
	--pk-social-links-icon-color: inherit;
	--pk-social-links-title-color: inherit;
	--pk-social-nav-count-color: rgba(0,0,0,.5);
	--pk-social-bold-title-color: #000000;
	--pk-social-inverse-link-color: #FFFFFF;
	--pk-social-light-bg-link-background: #f8f9fa;
	--pk-social-light-bg-hover-color: #FFFFFF;
	--pk-social-light-bg-hover-title-color:#FFFFFF;
	--pk-social-light-bg-hover-label-color:rgba(255,255,255,.75);
	--pk-social-light-bg-hover-count-color:rgba(255,255,255,.75);
	--pk-social-bold-bg-link-color: #FFFFFF;
	--pk-social-dark-link-background: #000000;
	--pk-social-dark-link-color: #FFFFFF;
	--pk-social-dark-link-hover-background: #1a1919;
	--pk-social-light-rounded-icon-background: #f8f9fa;
	--pk-social-light-rounded-title-color: #000000;
	--pk-social-bold-rounded-icon-background: #f8f9fa;
	--pk-social-bold-rounded-icon-color: #FFFFFF;
	--pk-social-bold-rounded-title-color: #000000;
	--pk-social-dark-rounded-link-background: #000000;
	--pk-social-dark-rounded-link-color: #FFFFFF;
	--pk-social-dark-rounded-link-hover-background: #1a1919;
	--pk-social-links-title-font-size: 1.6rem;
	--pk-social-vertical-icon-font-size: 110%;
}

/*--------------------------------------------------------------*/
/* --------------------------------------------------------------*/
.pk-social-links-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.125rem;
}

.pk-social-links-item {
	display: flex;
}

.pk-social-links-item {
	padding: 0 0.125rem 0.125rem;
}

.pk-social-links-item .pk-social-links-link {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	align-items: center;
	height: 100%;
	line-height: 1;
	text-align: center;
	color: var(--pk-social-link-color);
	border: none !important;
	text-decoration: none !important;
	box-shadow: none !important;
	transition: background-color 0.2s;
}

.pk-social-links-note {
	display: inline-block !important;
}

.pk-social-links-note-icon:before {
	font-family: 'premiumkits-icons';
	font-size: 1.125em;
	content: "\e946";
}

.pk-social-links-count,
.pk-social-links-label,
.pk-social-links-title {
	margin-top: 0.5rem;
}

.pk-social-links-icon,
.pk-social-links-count,
.pk-social-links-label,
.pk-social-links-title {
	transition: color 0.2s;
}

.pk-social-links-title {
	transition: color 0.2s;
	white-space: nowrap;
	font-size: var(--pk-social-links-title-font-size);
}

.pk-social-links-label {
	color: var(--pk-social-links-label-color);
}

.pk-social-links-no-count .pk-social-links-count {
	display: none;
}

.pk-social-links .pk-social-links-icon {
	color: var(--pk-social-links-icon-color);
}

.pk-social-links .pk-social-links-title {
	color: var(--pk-social-links-title-color);
}

.pk-social-links-twitter .pk-social-links-link:hover {
	color: #00aced;
}

.pk-social-links-facebook .pk-social-links-link:hover {
	color: #3b5998;
}

.pk-social-links-instagram .pk-social-links-link:hover {
	color: #675144;
}

.pk-social-links-fb-messenger .pk-social-links-link:hover {
	color: #0084ff;
}

.pk-social-links-youtube .pk-social-links-link:hover {
	color: #ff0000;
}

.pk-social-links-vimeo .pk-social-links-link:hover {
	color: #00ADEF;
}

.pk-social-links-soundcloud .pk-social-links-link:hover {
	color: #FE8336;
}

.pk-social-links-spotify .pk-social-links-link:hover {
	color: #1ED760;
}

.pk-social-links-dribbble .pk-social-links-link:hover {
	color: #EA4C89;
}

.pk-social-links-behance .pk-social-links-link:hover {
	color: #115EFA;
}

.pk-social-links-github .pk-social-links-link:hover {
	color: #010101;
}

.pk-social-links-tumblr .pk-social-links-link:hover {
	color: #35455C;
}

.pk-social-links-bloglovin .pk-social-links-link:hover {
	color: #00BDF4;
}

.pk-social-links-linkedin .pk-social-links-link:hover {
	color: #007bb6;
}

.pk-social-links-pinterest .pk-social-links-link:hover {
	color: #cb2027;
}

.pk-social-links-stumbleupon .pk-social-links-link:hover {
	color: #eb4823;
}

.pk-social-links-whatsapp .pk-social-links-link:hover {
	color: #29a628;
}

.pk-social-links-telegram .pk-social-links-link:hover {
	color: #2ca5e0;
}

.pk-social-links-line .pk-social-links-link:hover {
	color: #25af00;
}

.pk-social-links-viber .pk-social-links-link:hover {
	color: #7b519d;
}

.pk-social-links-pocket .pk-social-links-link:hover {
	color: #ef4056;
}

.pk-social-links-messenger .pk-social-links-link:hover {
	color: #0084ff;
}

.pk-social-links-ok .pk-social-links-link:hover {
	color: #EE8208;
}

.pk-social-links-vk .pk-social-links-link:hover {
	color: #45668e;
}

.pk-social-links-vkontakte .pk-social-links-link:hover {
	color: #45668e;
}

.pk-social-links-xing .pk-social-links-link:hover {
	color: #006567;
}

.pk-social-links-twitch .pk-social-links-link:hover {
	color: #4B367C;
}

.pk-social-links-flickr .pk-social-links-link:hover {
	color: #FF1981;
}

.pk-social-links-snapchat .pk-social-links-link:hover {
	color: #F0EC00;
}

.pk-social-links-medium .pk-social-links-link:hover {
	color: #1f1f1f;
}

.pk-social-links-reddit .pk-social-links-link:hover {
	color: #ff4500;
}

.pk-social-links-wechat .pk-social-links-link:hover {
	color: #1AAD19;
}

.pk-social-links-tiktok .pk-social-links-link:hover {
	color: #000000;
}

.pk-social-links-discord .pk-social-links-link:hover {
	color: #5b77b8;
}

.pk-social-links-weibo .pk-social-links-link:hover {
	color: #D72829;
}

.pk-social-links-android .pk-social-links-link:hover {
	color: #A4C639;
}

.pk-social-links-apple .pk-social-links-link:hover {
	color: #444444;
}

.pk-social-links-yelp .pk-social-links-link:hover {
	color: #D32323;
}

.pk-social-links-stackoverflow .pk-social-links-link:hover {
	color: #FE7A15;
}

.pk-social-links-codepen .pk-social-links-link:hover {
	color: #000000;
}

.pk-social-links-gitlab .pk-social-links-link:hover {
	color: #E24329;
}

.pk-social-links-freecodecamp .pk-social-links-link:hover {
	color: #006400;
}

.pk-social-links-jsfiddle .pk-social-links-link:hover {
	color: #487AA2;
}

.pk-social-links-bitbucket .pk-social-links-link:hover {
	color: #205081;
}

.pk-social-links-foursquare .pk-social-links-link:hover {
	color: #2D5BE3;
}

.pk-social-links-500px .pk-social-links-link:hover {
	color: #0099E5;
}

.pk-social-links-delicious .pk-social-links-link:hover {
	color: #3399FF;
}

.pk-social-links-deviantart .pk-social-links-link:hover {
	color: #05CC47;
}

.pk-social-links-houzz .pk-social-links-link:hover {
	color: #7AC142;
}

.pk-social-links-meetup .pk-social-links-link:hover {
	color: #EC1C40;
}

.pk-social-links-producthunt .pk-social-links-link:hover {
	color: #DA552F;
}

.pk-social-links-slideshare .pk-social-links-link:hover {
	color: #0077B5;
}

.pk-social-links-tripadvisor .pk-social-links-link:hover {
	color: #589442;
}

.pk-social-links-steam .pk-social-links-link:hover {
	color: #00ADEE;
}

.pk-social-links-thumbtack .pk-social-links-link:hover {
	color: #1AA1D8;
}

.pk-social-links-goodreads .pk-social-links-link:hover {
	color: #BAAC9A;
}

.pk-social-links-mastodon .pk-social-links-link:hover {
	color: #3088D4;
}

.pk-social-links-pixelfed .pk-social-links-link:hover {
	color: #F22349;
}

.pk-social-links-microblog .pk-social-links-link:hover {
	color: #FD8308;
}

.pk-social-links-googlenews .pk-social-links-link:hover {
	color: #4b8cf5;
}

.pk-social-links-flipboard .pk-social-links-link:hover {
	color: #f52928;
}

.pk-social-links-strava .pk-social-links-link:hover {
	color: #FC4C02;
}

.pk-social-links-phone .pk-social-links-link:hover {
	color: #121212;
}

.pk-social-links-mail .pk-social-links-link:hover {
	color: #121212;
}

.pk-social-links-rss .pk-social-links-link:hover {
	color: #FFA500;
}

/* ----------------------------- Templates ---------------------------------*/
.pk-social-links-template-inline.pk-social-links-align-left .pk-social-links-items {
	justify-content: flex-start;
}

.pk-social-links-template-inline.pk-social-links-align-center .pk-social-links-items {
	justify-content: center;
}

.pk-social-links-template-inline.pk-social-links-align-right .pk-social-links-items {
	justify-content: flex-end;
}

.pk-social-links-template-inline .pk-social-links-item {
	min-width: 3rem;
}

.pk-social-links-template-columns .pk-social-links-items {
	justify-content: flex-start;
}

.pk-social-links-template-columns .pk-social-links-item {
	padding: 0;
}

.pk-social-links-template-columns .pk-social-links-link {
	padding: 1rem .5rem !important;
}

.pk-social-links-template-columns .pk-social-links-count + .pk-social-links-label {
	margin-top: 0;
}

.pk-social-links-template-col-2 .pk-social-links-item {
	flex: 0 0 50%;
	max-width: 50%;
}

.pk-social-links-template-col-3 .pk-social-links-item {
	flex: 0 0 33.3333333333%;
	max-width: 33.3333333333%;
}

.pk-social-links-template-col-4 .pk-social-links-item {
	flex: 0 0 25%;
	max-width: 25%;
}

.pk-social-links-template-col-5 .pk-social-links-item {
	flex: 0 0 20%;
	max-width: 20%;
}

.pk-social-links-template-col-6 .pk-social-links-item {
	flex: 0 0 16.6666666667%;
	max-width: 16.6666666667%;
}

.pk-social-links-template-vertical .pk-social-links-items {
	display: block;
	margin: 0;
}

.pk-social-links-template-vertical .pk-social-links-item {
	padding: 0;
}

.pk-social-links-template-vertical .pk-social-links-item a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.pk-social-links-template-vertical .pk-social-links-link {
	padding: .5rem 0;
}

.pk-social-links-template-vertical .pk-social-links-item + .pk-social-links-item {
	margin-top: 1px;
}

.pk-social-links-template-vertical .pk-social-links-icon,
.pk-social-links-template-vertical .pk-social-links-count,
.pk-social-links-template-vertical .pk-social-links-label,
.pk-social-links-template-vertical .pk-social-links-title {
	margin-top: 0;
}

.pk-social-links-template-vertical .pk-social-links-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	font-size: var(--pk-social-vertical-icon-font-size);
	order: 1;
}

.pk-social-links-template-vertical .pk-social-links-title {
	margin-left: 1rem;
	order: 2;
}

.pk-social-links-template-vertical .pk-social-links-label {
	margin-left: 0.5rem;
	order: 3;
}

.pk-social-links-template-vertical .pk-social-links-count {
	margin-left: auto;
	order: 4;
}

.pk-social-links-template-vertical .pk-social-links-count,
.pk-social-links-template-vertical .pk-social-links-label {
	padding: 0 0.125rem;
}

.pk-social-links-template-nav .pk-social-links-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0 -0.225rem;
}

.pk-social-links-template-nav .pk-social-links-item {
	padding: 0 0.225rem;
}

.pk-social-links-template-nav .pk-social-links-item:not(:last-child) {
	margin-right: .25rem;
}

.pk-social-links-template-nav .pk-social-links-item a {
	display: flex;
	flex-direction: row;
	align-items: center;
	line-height: 1;
}

.pk-social-links-template-nav .pk-social-links-icon {
	margin-top: 0;
}

.pk-social-links-template-nav .pk-social-links-count,
.pk-social-links-template-nav .pk-social-links-label,
.pk-social-links-template-nav .pk-social-links-title {
	margin-top: 0;
	margin-left: 0.25rem;
	transition: color 0.2s;
}

.pk-social-links-template-nav .pk-social-links-count {
	color: var(--pk-social-nav-count-color);
}

/* ----------------------------- Schemes ---------------------------------*/
.pk-social-links-scheme-bold .pk-social-links-link:hover .pk-social-links-title,
.is-style-pk-social-links-bold .pk-social-links-link:hover .pk-social-links-title {
	color: var(--pk-social-bold-title-color);
}

.pk-social-links-scheme-bold .pk-social-links-twitter .pk-social-links-link {
	color: #00aced;
}

.pk-social-links-scheme-bold .pk-social-links-twitter .pk-social-links-link:hover .pk-social-links-icon {
	color: #21c2ff;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-twitter .pk-social-links-link {
	color: #00aced !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-twitter .pk-social-links-link:hover .pk-social-links-icon {
	color: #21c2ff !important;
}

.pk-social-links-scheme-bold .pk-social-links-facebook .pk-social-links-link {
	color: #3b5998;
}

.pk-social-links-scheme-bold .pk-social-links-facebook .pk-social-links-link:hover .pk-social-links-icon {
	color: #4c70ba;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-facebook .pk-social-links-link {
	color: #3b5998 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-facebook .pk-social-links-link:hover .pk-social-links-icon {
	color: #4c70ba !important;
}

.pk-social-links-scheme-bold .pk-social-links-instagram .pk-social-links-link {
	color: #675144;
}

.pk-social-links-scheme-bold .pk-social-links-instagram .pk-social-links-link:hover .pk-social-links-icon {
	color: #866958;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-instagram .pk-social-links-link {
	color: #675144 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-instagram .pk-social-links-link:hover .pk-social-links-icon {
	color: #866958 !important;
}

.pk-social-links-scheme-bold .pk-social-links-fb-messenger .pk-social-links-link {
	color: #0084ff;
}

.pk-social-links-scheme-bold .pk-social-links-fb-messenger .pk-social-links-link:hover .pk-social-links-icon {
	color: #339dff;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-fb-messenger .pk-social-links-link {
	color: #0084ff !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-fb-messenger .pk-social-links-link:hover .pk-social-links-icon {
	color: #339dff !important;
}

.pk-social-links-scheme-bold .pk-social-links-youtube .pk-social-links-link {
	color: #ff0000;
}

.pk-social-links-scheme-bold .pk-social-links-youtube .pk-social-links-link:hover .pk-social-links-icon {
	color: #ff3333;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-youtube .pk-social-links-link {
	color: #ff0000 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-youtube .pk-social-links-link:hover .pk-social-links-icon {
	color: #ff3333 !important;
}

.pk-social-links-scheme-bold .pk-social-links-vimeo .pk-social-links-link {
	color: #00ADEF;
}

.pk-social-links-scheme-bold .pk-social-links-vimeo .pk-social-links-link:hover .pk-social-links-icon {
	color: #23c2ff;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-vimeo .pk-social-links-link {
	color: #00ADEF !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-vimeo .pk-social-links-link:hover .pk-social-links-icon {
	color: #23c2ff !important;
}

.pk-social-links-scheme-bold .pk-social-links-soundcloud .pk-social-links-link {
	color: #FE8336;
}

.pk-social-links-scheme-bold .pk-social-links-soundcloud .pk-social-links-link:hover .pk-social-links-icon {
	color: #fea269;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-soundcloud .pk-social-links-link {
	color: #FE8336 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-soundcloud .pk-social-links-link:hover .pk-social-links-icon {
	color: #fea269 !important;
}

.pk-social-links-scheme-bold .pk-social-links-spotify .pk-social-links-link {
	color: #1ED760;
}

.pk-social-links-scheme-bold .pk-social-links-spotify .pk-social-links-link:hover .pk-social-links-icon {
	color: #43e57d;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-spotify .pk-social-links-link {
	color: #1ED760 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-spotify .pk-social-links-link:hover .pk-social-links-icon {
	color: #43e57d !important;
}

.pk-social-links-scheme-bold .pk-social-links-dribbble .pk-social-links-link {
	color: #EA4C89;
}

.pk-social-links-scheme-bold .pk-social-links-dribbble .pk-social-links-link:hover .pk-social-links-icon {
	color: #ef7aa7;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-dribbble .pk-social-links-link {
	color: #EA4C89 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-dribbble .pk-social-links-link:hover .pk-social-links-icon {
	color: #ef7aa7 !important;
}

.pk-social-links-scheme-bold .pk-social-links-behance .pk-social-links-link {
	color: #115EFA;
}

.pk-social-links-scheme-bold .pk-social-links-behance .pk-social-links-link:hover .pk-social-links-icon {
	color: #4380fb;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-behance .pk-social-links-link {
	color: #115EFA !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-behance .pk-social-links-link:hover .pk-social-links-icon {
	color: #4380fb !important;
}

.pk-social-links-scheme-bold .pk-social-links-github .pk-social-links-link {
	color: #010101;
}

.pk-social-links-scheme-bold .pk-social-links-github .pk-social-links-link:hover .pk-social-links-icon {
	color: #1b1a1a;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-github .pk-social-links-link {
	color: #010101 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-github .pk-social-links-link:hover .pk-social-links-icon {
	color: #1b1a1a !important;
}

.pk-social-links-scheme-bold .pk-social-links-tumblr .pk-social-links-link {
	color: #35455C;
}

.pk-social-links-scheme-bold .pk-social-links-tumblr .pk-social-links-link:hover .pk-social-links-icon {
	color: #485d7c;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-tumblr .pk-social-links-link {
	color: #35455C !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-tumblr .pk-social-links-link:hover .pk-social-links-icon {
	color: #485d7c !important;
}

.pk-social-links-scheme-bold .pk-social-links-bloglovin .pk-social-links-link {
	color: #00BDF4;
}

.pk-social-links-scheme-bold .pk-social-links-bloglovin .pk-social-links-link:hover .pk-social-links-icon {
	color: #28cfff;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-bloglovin .pk-social-links-link {
	color: #00BDF4 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-bloglovin .pk-social-links-link:hover .pk-social-links-icon {
	color: #28cfff !important;
}

.pk-social-links-scheme-bold .pk-social-links-linkedin .pk-social-links-link {
	color: #007bb6;
}

.pk-social-links-scheme-bold .pk-social-links-linkedin .pk-social-links-link:hover .pk-social-links-icon {
	color: #009de9;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-linkedin .pk-social-links-link {
	color: #007bb6 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-linkedin .pk-social-links-link:hover .pk-social-links-icon {
	color: #009de9 !important;
}

.pk-social-links-scheme-bold .pk-social-links-pinterest .pk-social-links-link {
	color: #cb2027;
}

.pk-social-links-scheme-bold .pk-social-links-pinterest .pk-social-links-link:hover .pk-social-links-icon {
	color: #e03e44;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-pinterest .pk-social-links-link {
	color: #cb2027 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-pinterest .pk-social-links-link:hover .pk-social-links-icon {
	color: #e03e44 !important;
}

.pk-social-links-scheme-bold .pk-social-links-stumbleupon .pk-social-links-link {
	color: #eb4823;
}

.pk-social-links-scheme-bold .pk-social-links-stumbleupon .pk-social-links-link:hover .pk-social-links-icon {
	color: #ef6f52;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-stumbleupon .pk-social-links-link {
	color: #eb4823 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-stumbleupon .pk-social-links-link:hover .pk-social-links-icon {
	color: #ef6f52 !important;
}

.pk-social-links-scheme-bold .pk-social-links-whatsapp .pk-social-links-link {
	color: #29a628;
}

.pk-social-links-scheme-bold .pk-social-links-whatsapp .pk-social-links-link:hover .pk-social-links-icon {
	color: #34ce33;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-whatsapp .pk-social-links-link {
	color: #29a628 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-whatsapp .pk-social-links-link:hover .pk-social-links-icon {
	color: #34ce33 !important;
}

.pk-social-links-scheme-bold .pk-social-links-telegram .pk-social-links-link {
	color: #2ca5e0;
}

.pk-social-links-scheme-bold .pk-social-links-telegram .pk-social-links-link:hover .pk-social-links-icon {
	color: #58b8e7;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-telegram .pk-social-links-link {
	color: #2ca5e0 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-telegram .pk-social-links-link:hover .pk-social-links-icon {
	color: #58b8e7 !important;
}

.pk-social-links-scheme-bold .pk-social-links-line .pk-social-links-link {
	color: #25af00;
}

.pk-social-links-scheme-bold .pk-social-links-line .pk-social-links-link:hover .pk-social-links-icon {
	color: #30e200;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-line .pk-social-links-link {
	color: #25af00 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-line .pk-social-links-link:hover .pk-social-links-icon {
	color: #30e200 !important;
}

.pk-social-links-scheme-bold .pk-social-links-viber .pk-social-links-link {
	color: #7b519d;
}

.pk-social-links-scheme-bold .pk-social-links-viber .pk-social-links-link:hover .pk-social-links-icon {
	color: #946db4;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-viber .pk-social-links-link {
	color: #7b519d !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-viber .pk-social-links-link:hover .pk-social-links-icon {
	color: #946db4 !important;
}

.pk-social-links-scheme-bold .pk-social-links-pocket .pk-social-links-link {
	color: #ef4056;
}

.pk-social-links-scheme-bold .pk-social-links-pocket .pk-social-links-link:hover .pk-social-links-icon {
	color: #f36f80;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-pocket .pk-social-links-link {
	color: #ef4056 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-pocket .pk-social-links-link:hover .pk-social-links-icon {
	color: #f36f80 !important;
}

.pk-social-links-scheme-bold .pk-social-links-messenger .pk-social-links-link {
	color: #0084ff;
}

.pk-social-links-scheme-bold .pk-social-links-messenger .pk-social-links-link:hover .pk-social-links-icon {
	color: #339dff;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-messenger .pk-social-links-link {
	color: #0084ff !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-messenger .pk-social-links-link:hover .pk-social-links-icon {
	color: #339dff !important;
}

.pk-social-links-scheme-bold .pk-social-links-ok .pk-social-links-link {
	color: #EE8208;
}

.pk-social-links-scheme-bold .pk-social-links-ok .pk-social-links-link:hover .pk-social-links-icon {
	color: #f89b31;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-ok .pk-social-links-link {
	color: #EE8208 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-ok .pk-social-links-link:hover .pk-social-links-icon {
	color: #f89b31 !important;
}

.pk-social-links-scheme-bold .pk-social-links-vk .pk-social-links-link {
	color: #45668e;
}

.pk-social-links-scheme-bold .pk-social-links-vk .pk-social-links-link:hover .pk-social-links-icon {
	color: #587fae;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-vk .pk-social-links-link {
	color: #45668e !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-vk .pk-social-links-link:hover .pk-social-links-icon {
	color: #587fae !important;
}

.pk-social-links-scheme-bold .pk-social-links-vkontakte .pk-social-links-link {
	color: #45668e;
}

.pk-social-links-scheme-bold .pk-social-links-vkontakte .pk-social-links-link:hover .pk-social-links-icon {
	color: #587fae;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-vkontakte .pk-social-links-link {
	color: #45668e !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-vkontakte .pk-social-links-link:hover .pk-social-links-icon {
	color: #587fae !important;
}

.pk-social-links-scheme-bold .pk-social-links-xing .pk-social-links-link {
	color: #006567;
}

.pk-social-links-scheme-bold .pk-social-links-xing .pk-social-links-link:hover .pk-social-links-icon {
	color: #00979a;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-xing .pk-social-links-link {
	color: #006567 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-xing .pk-social-links-link:hover .pk-social-links-icon {
	color: #00979a !important;
}

.pk-social-links-scheme-bold .pk-social-links-twitch .pk-social-links-link {
	color: #4B367C;
}

.pk-social-links-scheme-bold .pk-social-links-twitch .pk-social-links-link:hover .pk-social-links-icon {
	color: #6045a0;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-twitch .pk-social-links-link {
	color: #4B367C !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-twitch .pk-social-links-link:hover .pk-social-links-icon {
	color: #6045a0 !important;
}

.pk-social-links-scheme-bold .pk-social-links-flickr .pk-social-links-link {
	color: #FF1981;
}

.pk-social-links-scheme-bold .pk-social-links-flickr .pk-social-links-link:hover .pk-social-links-icon {
	color: #ff4c9d;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-flickr .pk-social-links-link {
	color: #FF1981 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-flickr .pk-social-links-link:hover .pk-social-links-icon {
	color: #ff4c9d !important;
}

.pk-social-links-scheme-bold .pk-social-links-snapchat .pk-social-links-link {
	color: #F0EC00;
}

.pk-social-links-scheme-bold .pk-social-links-snapchat .pk-social-links-link:hover .pk-social-links-icon {
	color: #fffb24;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-snapchat .pk-social-links-link {
	color: #F0EC00 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-snapchat .pk-social-links-link:hover .pk-social-links-icon {
	color: #fffb24 !important;
}

.pk-social-links-scheme-bold .pk-social-links-medium .pk-social-links-link {
	color: #1f1f1f;
}

.pk-social-links-scheme-bold .pk-social-links-medium .pk-social-links-link:hover .pk-social-links-icon {
	color: #393838;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-medium .pk-social-links-link {
	color: #1f1f1f !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-medium .pk-social-links-link:hover .pk-social-links-icon {
	color: #393838 !important;
}

.pk-social-links-scheme-bold .pk-social-links-reddit .pk-social-links-link {
	color: #ff4500;
}

.pk-social-links-scheme-bold .pk-social-links-reddit .pk-social-links-link:hover .pk-social-links-icon {
	color: #ff6a33;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-reddit .pk-social-links-link {
	color: #ff4500 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-reddit .pk-social-links-link:hover .pk-social-links-icon {
	color: #ff6a33 !important;
}

.pk-social-links-scheme-bold .pk-social-links-wechat .pk-social-links-link {
	color: #1AAD19;
}

.pk-social-links-scheme-bold .pk-social-links-wechat .pk-social-links-link:hover .pk-social-links-icon {
	color: #21da1f;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-wechat .pk-social-links-link {
	color: #1AAD19 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-wechat .pk-social-links-link:hover .pk-social-links-icon {
	color: #21da1f !important;
}

.pk-social-links-scheme-bold .pk-social-links-tiktok .pk-social-links-link {
	color: #000000;
}

.pk-social-links-scheme-bold .pk-social-links-tiktok .pk-social-links-link:hover .pk-social-links-icon {
	color: #1a1919;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-tiktok .pk-social-links-link {
	color: #000000 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-tiktok .pk-social-links-link:hover .pk-social-links-icon {
	color: #1a1919 !important;
}

.pk-social-links-scheme-bold .pk-social-links-discord .pk-social-links-link {
	color: #5b77b8;
}

.pk-social-links-scheme-bold .pk-social-links-discord .pk-social-links-link:hover .pk-social-links-icon {
	color: #7f95c7;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-discord .pk-social-links-link {
	color: #5b77b8 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-discord .pk-social-links-link:hover .pk-social-links-icon {
	color: #7f95c7 !important;
}

.pk-social-links-scheme-bold .pk-social-links-weibo .pk-social-links-link {
	color: #D72829;
}

.pk-social-links-scheme-bold .pk-social-links-weibo .pk-social-links-link:hover .pk-social-links-icon {
	color: #df5354;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-weibo .pk-social-links-link {
	color: #D72829 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-weibo .pk-social-links-link:hover .pk-social-links-icon {
	color: #df5354 !important;
}

.pk-social-links-scheme-bold .pk-social-links-android .pk-social-links-link {
	color: #A4C639;
}

.pk-social-links-scheme-bold .pk-social-links-android .pk-social-links-link:hover .pk-social-links-icon {
	color: #b6d161;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-android .pk-social-links-link {
	color: #A4C639 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-android .pk-social-links-link:hover .pk-social-links-icon {
	color: #b6d161 !important;
}

.pk-social-links-scheme-bold .pk-social-links-apple .pk-social-links-link {
	color: #444444;
}

.pk-social-links-scheme-bold .pk-social-links-apple .pk-social-links-link:hover .pk-social-links-icon {
	color: #5e5d5d;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-apple .pk-social-links-link {
	color: #444444 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-apple .pk-social-links-link:hover .pk-social-links-icon {
	color: #5e5d5d !important;
}

.pk-social-links-scheme-bold .pk-social-links-yelp .pk-social-links-link {
	color: #D32323;
}

.pk-social-links-scheme-bold .pk-social-links-yelp .pk-social-links-link:hover .pk-social-links-icon {
	color: #e14848;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-yelp .pk-social-links-link {
	color: #D32323 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-yelp .pk-social-links-link:hover .pk-social-links-icon {
	color: #e14848 !important;
}

.pk-social-links-scheme-bold .pk-social-links-stackoverflow .pk-social-links-link {
	color: #FE7A15;
}

.pk-social-links-scheme-bold .pk-social-links-stackoverflow .pk-social-links-link:hover .pk-social-links-icon {
	color: #fe9748;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-stackoverflow .pk-social-links-link {
	color: #FE7A15 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-stackoverflow .pk-social-links-link:hover .pk-social-links-icon {
	color: #fe9748 !important;
}

.pk-social-links-scheme-bold .pk-social-links-codepen .pk-social-links-link {
	color: #000000;
}

.pk-social-links-scheme-bold .pk-social-links-codepen .pk-social-links-link:hover .pk-social-links-icon {
	color: #1a1919;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-codepen .pk-social-links-link {
	color: #000000 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-codepen .pk-social-links-link:hover .pk-social-links-icon {
	color: #1a1919 !important;
}

.pk-social-links-scheme-bold .pk-social-links-gitlab .pk-social-links-link {
	color: #E24329;
}

.pk-social-links-scheme-bold .pk-social-links-gitlab .pk-social-links-link:hover .pk-social-links-icon {
	color: #e86a56;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-gitlab .pk-social-links-link {
	color: #E24329 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-gitlab .pk-social-links-link:hover .pk-social-links-icon {
	color: #e86a56 !important;
}

.pk-social-links-scheme-bold .pk-social-links-freecodecamp .pk-social-links-link {
	color: #006400;
}

.pk-social-links-scheme-bold .pk-social-links-freecodecamp .pk-social-links-link:hover .pk-social-links-icon {
	color: #009700;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-freecodecamp .pk-social-links-link {
	color: #006400 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-freecodecamp .pk-social-links-link:hover .pk-social-links-icon {
	color: #009700 !important;
}

.pk-social-links-scheme-bold .pk-social-links-jsfiddle .pk-social-links-link {
	color: #487AA2;
}

.pk-social-links-scheme-bold .pk-social-links-jsfiddle .pk-social-links-link:hover .pk-social-links-icon {
	color: #6393ba;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-jsfiddle .pk-social-links-link {
	color: #487AA2 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-jsfiddle .pk-social-links-link:hover .pk-social-links-icon {
	color: #6393ba !important;
}

.pk-social-links-scheme-bold .pk-social-links-bitbucket .pk-social-links-link {
	color: #205081;
}

.pk-social-links-scheme-bold .pk-social-links-bitbucket .pk-social-links-link:hover .pk-social-links-icon {
	color: #2a69aa;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-bitbucket .pk-social-links-link {
	color: #205081 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-bitbucket .pk-social-links-link:hover .pk-social-links-icon {
	color: #2a69aa !important;
}

.pk-social-links-scheme-bold .pk-social-links-foursquare .pk-social-links-link {
	color: #2D5BE3;
}

.pk-social-links-scheme-bold .pk-social-links-foursquare .pk-social-links-link:hover .pk-social-links-icon {
	color: #5a7ee9;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-foursquare .pk-social-links-link {
	color: #2D5BE3 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-foursquare .pk-social-links-link:hover .pk-social-links-icon {
	color: #5a7ee9 !important;
}

.pk-social-links-scheme-bold .pk-social-links-500px .pk-social-links-link {
	color: #0099E5;
}

.pk-social-links-scheme-bold .pk-social-links-500px .pk-social-links-link:hover .pk-social-links-icon {
	color: #19b3ff;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-500px .pk-social-links-link {
	color: #0099E5 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-500px .pk-social-links-link:hover .pk-social-links-icon {
	color: #19b3ff !important;
}

.pk-social-links-scheme-bold .pk-social-links-delicious .pk-social-links-link {
	color: #3399FF;
}

.pk-social-links-scheme-bold .pk-social-links-delicious .pk-social-links-link:hover .pk-social-links-icon {
	color: #66b3ff;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-delicious .pk-social-links-link {
	color: #3399FF !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-delicious .pk-social-links-link:hover .pk-social-links-icon {
	color: #66b3ff !important;
}

.pk-social-links-scheme-bold .pk-social-links-deviantart .pk-social-links-link {
	color: #05CC47;
}

.pk-social-links-scheme-bold .pk-social-links-deviantart .pk-social-links-link:hover .pk-social-links-icon {
	color: #0bf95a;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-deviantart .pk-social-links-link {
	color: #05CC47 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-deviantart .pk-social-links-link:hover .pk-social-links-icon {
	color: #0bf95a !important;
}

.pk-social-links-scheme-bold .pk-social-links-houzz .pk-social-links-link {
	color: #7AC142;
}

.pk-social-links-scheme-bold .pk-social-links-houzz .pk-social-links-link:hover .pk-social-links-icon {
	color: #95ce68;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-houzz .pk-social-links-link {
	color: #7AC142 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-houzz .pk-social-links-link:hover .pk-social-links-icon {
	color: #95ce68 !important;
}

.pk-social-links-scheme-bold .pk-social-links-meetup .pk-social-links-link {
	color: #EC1C40;
}

.pk-social-links-scheme-bold .pk-social-links-meetup .pk-social-links-link:hover .pk-social-links-icon {
	color: #f04b68;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-meetup .pk-social-links-link {
	color: #EC1C40 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-meetup .pk-social-links-link:hover .pk-social-links-icon {
	color: #f04b68 !important;
}

.pk-social-links-scheme-bold .pk-social-links-producthunt .pk-social-links-link {
	color: #DA552F;
}

.pk-social-links-scheme-bold .pk-social-links-producthunt .pk-social-links-link:hover .pk-social-links-icon {
	color: #e2785a;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-producthunt .pk-social-links-link {
	color: #DA552F !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-producthunt .pk-social-links-link:hover .pk-social-links-icon {
	color: #e2785a !important;
}

.pk-social-links-scheme-bold .pk-social-links-slideshare .pk-social-links-link {
	color: #0077B5;
}

.pk-social-links-scheme-bold .pk-social-links-slideshare .pk-social-links-link:hover .pk-social-links-icon {
	color: #0099e8;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-slideshare .pk-social-links-link {
	color: #0077B5 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-slideshare .pk-social-links-link:hover .pk-social-links-icon {
	color: #0099e8 !important;
}

.pk-social-links-scheme-bold .pk-social-links-tripadvisor .pk-social-links-link {
	color: #589442;
}

.pk-social-links-scheme-bold .pk-social-links-tripadvisor .pk-social-links-link:hover .pk-social-links-icon {
	color: #6fb356;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-tripadvisor .pk-social-links-link {
	color: #589442 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-tripadvisor .pk-social-links-link:hover .pk-social-links-icon {
	color: #6fb356 !important;
}

.pk-social-links-scheme-bold .pk-social-links-steam .pk-social-links-link {
	color: #00ADEE;
}

.pk-social-links-scheme-bold .pk-social-links-steam .pk-social-links-link:hover .pk-social-links-icon {
	color: #22c3ff;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-steam .pk-social-links-link {
	color: #00ADEE !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-steam .pk-social-links-link:hover .pk-social-links-icon {
	color: #22c3ff !important;
}

.pk-social-links-scheme-bold .pk-social-links-thumbtack .pk-social-links-link {
	color: #1AA1D8;
}

.pk-social-links-scheme-bold .pk-social-links-thumbtack .pk-social-links-link:hover .pk-social-links-icon {
	color: #3db6e8;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-thumbtack .pk-social-links-link {
	color: #1AA1D8 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-thumbtack .pk-social-links-link:hover .pk-social-links-icon {
	color: #3db6e8 !important;
}

.pk-social-links-scheme-bold .pk-social-links-goodreads .pk-social-links-link {
	color: #BAAC9A;
}

.pk-social-links-scheme-bold .pk-social-links-goodreads .pk-social-links-link:hover .pk-social-links-icon {
	color: #cfc5b8;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-goodreads .pk-social-links-link {
	color: #BAAC9A !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-goodreads .pk-social-links-link:hover .pk-social-links-icon {
	color: #cfc5b8 !important;
}

.pk-social-links-scheme-bold .pk-social-links-mastodon .pk-social-links-link {
	color: #3088D4;
}

.pk-social-links-scheme-bold .pk-social-links-mastodon .pk-social-links-link:hover .pk-social-links-icon {
	color: #5aa0dd;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-mastodon .pk-social-links-link {
	color: #3088D4 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-mastodon .pk-social-links-link:hover .pk-social-links-icon {
	color: #5aa0dd !important;
}

.pk-social-links-scheme-bold .pk-social-links-pixelfed .pk-social-links-link {
	color: #F22349;
}

.pk-social-links-scheme-bold .pk-social-links-pixelfed .pk-social-links-link:hover .pk-social-links-icon {
	color: #f55371;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-pixelfed .pk-social-links-link {
	color: #F22349 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-pixelfed .pk-social-links-link:hover .pk-social-links-icon {
	color: #f55371 !important;
}

.pk-social-links-scheme-bold .pk-social-links-microblog .pk-social-links-link {
	color: #FD8308;
}

.pk-social-links-scheme-bold .pk-social-links-microblog .pk-social-links-link:hover .pk-social-links-icon {
	color: #fd9c3b;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-microblog .pk-social-links-link {
	color: #FD8308 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-microblog .pk-social-links-link:hover .pk-social-links-icon {
	color: #fd9c3b !important;
}

.pk-social-links-scheme-bold .pk-social-links-googlenews .pk-social-links-link {
	color: #4b8cf5;
}

.pk-social-links-scheme-bold .pk-social-links-googlenews .pk-social-links-link:hover .pk-social-links-icon {
	color: #7babf8;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-googlenews .pk-social-links-link {
	color: #4b8cf5 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-googlenews .pk-social-links-link:hover .pk-social-links-icon {
	color: #7babf8 !important;
}

.pk-social-links-scheme-bold .pk-social-links-flipboard .pk-social-links-link {
	color: #f52928;
}

.pk-social-links-scheme-bold .pk-social-links-flipboard .pk-social-links-link:hover .pk-social-links-icon {
	color: #f75a59;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-flipboard .pk-social-links-link {
	color: #f52928 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-flipboard .pk-social-links-link:hover .pk-social-links-icon {
	color: #f75a59 !important;
}

.pk-social-links-scheme-bold .pk-social-links-strava .pk-social-links-link {
	color: #FC4C02;
}

.pk-social-links-scheme-bold .pk-social-links-strava .pk-social-links-link:hover .pk-social-links-icon {
	color: #fd6f34;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-strava .pk-social-links-link {
	color: #FC4C02 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-strava .pk-social-links-link:hover .pk-social-links-icon {
	color: #fd6f34 !important;
}

.pk-social-links-scheme-bold .pk-social-links-phone .pk-social-links-link {
	color: #121212;
}

.pk-social-links-scheme-bold .pk-social-links-phone .pk-social-links-link:hover .pk-social-links-icon {
	color: #2c2b2b;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-phone .pk-social-links-link {
	color: #121212 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-phone .pk-social-links-link:hover .pk-social-links-icon {
	color: #2c2b2b !important;
}

.pk-social-links-scheme-bold .pk-social-links-mail .pk-social-links-link {
	color: #121212;
}

.pk-social-links-scheme-bold .pk-social-links-mail .pk-social-links-link:hover .pk-social-links-icon {
	color: #2c2b2b;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-mail .pk-social-links-link {
	color: #121212 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-mail .pk-social-links-link:hover .pk-social-links-icon {
	color: #2c2b2b !important;
}

.pk-social-links-scheme-bold .pk-social-links-rss .pk-social-links-link {
	color: #FFA500;
}

.pk-social-links-scheme-bold .pk-social-links-rss .pk-social-links-link:hover .pk-social-links-icon {
	color: #ffb733;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-rss .pk-social-links-link {
	color: #FFA500 !important;
}

.is-style-pk-social-links-bold.cnvs-block-social-links .pk-social-links-rss .pk-social-links-link:hover .pk-social-links-icon {
	color: #ffb733 !important;
}

.pk-social-links-scheme-inverse .pk-social-links-items .pk-social-links-link,
.is-style-pk-social-links-inverse .pk-social-links-items .pk-social-links-link {
	color: var(--pk-social-inverse-link-color) !important;
}

.pk-social-links-scheme-inverse .pk-social-links-items .pk-social-links-link .pk-social-links-icon,
.pk-social-links-scheme-inverse .pk-social-links-items .pk-social-links-link .pk-social-links-title,
.pk-social-links-scheme-inverse .pk-social-links-items .pk-social-links-link .pk-social-links-label,
.pk-social-links-scheme-inverse .pk-social-links-items .pk-social-links-link .pk-social-links-count,
.is-style-pk-social-links-inverse .pk-social-links-items .pk-social-links-link .pk-social-links-icon,
.is-style-pk-social-links-inverse .pk-social-links-items .pk-social-links-link .pk-social-links-title,
.is-style-pk-social-links-inverse .pk-social-links-items .pk-social-links-link .pk-social-links-label,
.is-style-pk-social-links-inverse .pk-social-links-items .pk-social-links-link .pk-social-links-count {
	color: inherit !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-twitter .pk-social-links-link:hover .pk-social-links-icon {
	color: #00aced !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-facebook .pk-social-links-link:hover .pk-social-links-icon {
	color: #3b5998 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-instagram .pk-social-links-link:hover .pk-social-links-icon {
	color: #675144 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-fb-messenger .pk-social-links-link:hover .pk-social-links-icon {
	color: #0084ff !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-youtube .pk-social-links-link:hover .pk-social-links-icon {
	color: #ff0000 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-vimeo .pk-social-links-link:hover .pk-social-links-icon {
	color: #00ADEF !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-soundcloud .pk-social-links-link:hover .pk-social-links-icon {
	color: #FE8336 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-spotify .pk-social-links-link:hover .pk-social-links-icon {
	color: #1ED760 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-dribbble .pk-social-links-link:hover .pk-social-links-icon {
	color: #EA4C89 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-behance .pk-social-links-link:hover .pk-social-links-icon {
	color: #115EFA !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-github .pk-social-links-link:hover .pk-social-links-icon {
	color: #010101 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-tumblr .pk-social-links-link:hover .pk-social-links-icon {
	color: #35455C !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-bloglovin .pk-social-links-link:hover .pk-social-links-icon {
	color: #00BDF4 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-linkedin .pk-social-links-link:hover .pk-social-links-icon {
	color: #007bb6 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-pinterest .pk-social-links-link:hover .pk-social-links-icon {
	color: #cb2027 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-stumbleupon .pk-social-links-link:hover .pk-social-links-icon {
	color: #eb4823 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-whatsapp .pk-social-links-link:hover .pk-social-links-icon {
	color: #29a628 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-telegram .pk-social-links-link:hover .pk-social-links-icon {
	color: #2ca5e0 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-line .pk-social-links-link:hover .pk-social-links-icon {
	color: #25af00 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-viber .pk-social-links-link:hover .pk-social-links-icon {
	color: #7b519d !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-pocket .pk-social-links-link:hover .pk-social-links-icon {
	color: #ef4056 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-messenger .pk-social-links-link:hover .pk-social-links-icon {
	color: #0084ff !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-ok .pk-social-links-link:hover .pk-social-links-icon {
	color: #EE8208 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-vk .pk-social-links-link:hover .pk-social-links-icon {
	color: #45668e !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-vkontakte .pk-social-links-link:hover .pk-social-links-icon {
	color: #45668e !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-xing .pk-social-links-link:hover .pk-social-links-icon {
	color: #006567 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-twitch .pk-social-links-link:hover .pk-social-links-icon {
	color: #4B367C !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-flickr .pk-social-links-link:hover .pk-social-links-icon {
	color: #FF1981 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-snapchat .pk-social-links-link:hover .pk-social-links-icon {
	color: #F0EC00 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-medium .pk-social-links-link:hover .pk-social-links-icon {
	color: #1f1f1f !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-reddit .pk-social-links-link:hover .pk-social-links-icon {
	color: #ff4500 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-wechat .pk-social-links-link:hover .pk-social-links-icon {
	color: #1AAD19 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-tiktok .pk-social-links-link:hover .pk-social-links-icon {
	color: #000000 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-discord .pk-social-links-link:hover .pk-social-links-icon {
	color: #5b77b8 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-weibo .pk-social-links-link:hover .pk-social-links-icon {
	color: #D72829 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-android .pk-social-links-link:hover .pk-social-links-icon {
	color: #A4C639 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-apple .pk-social-links-link:hover .pk-social-links-icon {
	color: #444444 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-yelp .pk-social-links-link:hover .pk-social-links-icon {
	color: #D32323 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-stackoverflow .pk-social-links-link:hover .pk-social-links-icon {
	color: #FE7A15 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-codepen .pk-social-links-link:hover .pk-social-links-icon {
	color: #000000 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-gitlab .pk-social-links-link:hover .pk-social-links-icon {
	color: #E24329 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-freecodecamp .pk-social-links-link:hover .pk-social-links-icon {
	color: #006400 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-jsfiddle .pk-social-links-link:hover .pk-social-links-icon {
	color: #487AA2 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-bitbucket .pk-social-links-link:hover .pk-social-links-icon {
	color: #205081 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-foursquare .pk-social-links-link:hover .pk-social-links-icon {
	color: #2D5BE3 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-500px .pk-social-links-link:hover .pk-social-links-icon {
	color: #0099E5 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-delicious .pk-social-links-link:hover .pk-social-links-icon {
	color: #3399FF !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-deviantart .pk-social-links-link:hover .pk-social-links-icon {
	color: #05CC47 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-houzz .pk-social-links-link:hover .pk-social-links-icon {
	color: #7AC142 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-meetup .pk-social-links-link:hover .pk-social-links-icon {
	color: #EC1C40 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-producthunt .pk-social-links-link:hover .pk-social-links-icon {
	color: #DA552F !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-slideshare .pk-social-links-link:hover .pk-social-links-icon {
	color: #0077B5 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-tripadvisor .pk-social-links-link:hover .pk-social-links-icon {
	color: #589442 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-steam .pk-social-links-link:hover .pk-social-links-icon {
	color: #00ADEE !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-thumbtack .pk-social-links-link:hover .pk-social-links-icon {
	color: #1AA1D8 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-goodreads .pk-social-links-link:hover .pk-social-links-icon {
	color: #BAAC9A !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-mastodon .pk-social-links-link:hover .pk-social-links-icon {
	color: #3088D4 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-pixelfed .pk-social-links-link:hover .pk-social-links-icon {
	color: #F22349 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-microblog .pk-social-links-link:hover .pk-social-links-icon {
	color: #FD8308 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-googlenews .pk-social-links-link:hover .pk-social-links-icon {
	color: #4b8cf5 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-flipboard .pk-social-links-link:hover .pk-social-links-icon {
	color: #f52928 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-strava .pk-social-links-link:hover .pk-social-links-icon {
	color: #FC4C02 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-phone .pk-social-links-link:hover .pk-social-links-icon {
	color: #121212 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-mail .pk-social-links-link:hover .pk-social-links-icon {
	color: #121212 !important;
}

.is-style-pk-social-links-inverse.cnvs-block-social-links .pk-social-links-rss .pk-social-links-link:hover .pk-social-links-icon {
	color: #FFA500 !important;
}

.pk-social-links-scheme-light-bg .pk-social-links-link,
.is-style-pk-social-links-light-bg .pk-social-links-link {
	padding: .8rem 1rem;
	background-color: var(--pk-social-light-bg-link-background);
	color: var(--pk-social-light-bg-color);
}

.pk-social-links-scheme-light-bg .pk-social-links-link .pk-social-links-title,
.is-style-pk-social-links-light-bg .pk-social-links-link .pk-social-links-title {
	color: var(--pk-social-light-bg-title-color);
}

.pk-social-links-scheme-light-bg .pk-social-links-link .pk-social-links-label,
.is-style-pk-social-links-light-bg .pk-social-links-link .pk-social-links-label {
	color: var(--pk-social-light-bg-label-color);
}

.pk-social-links-scheme-light-bg .pk-social-links-link .pk-social-links-count,
.is-style-pk-social-links-light-bg .pk-social-links-link .pk-social-links-count {
	color: var(--pk-social-light-bg-count-color);
}

.pk-social-links-scheme-light-bg .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-link:hover {
	color: var(--pk-social-light-bg-hover-color);
}

.pk-social-links-scheme-light-bg .pk-social-links-link:hover .pk-social-links-title,
.is-style-pk-social-links-light-bg .pk-social-links-link:hover .pk-social-links-title {
	color: var(--pk-social-light-bg-hover-title-color);
}

.pk-social-links-scheme-light-bg .pk-social-links-link:hover .pk-social-links-label,
.is-style-pk-social-links-light-bg .pk-social-links-link:hover .pk-social-links-label {
	color: var(--pk-social-light-bg-hover-label-color);
}

.pk-social-links-scheme-light-bg .pk-social-links-link:hover .pk-social-links-count,
.is-style-pk-social-links-light-bg .pk-social-links-link:hover .pk-social-links-count {
	color: var(--pk-social-light-bg-hover-count-color);
}

.pk-social-links-scheme-light-bg .pk-social-links-twitter .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-twitter .pk-social-links-link:hover {
	background-color: #00aced;
}

.pk-social-links-scheme-light-bg .pk-social-links-facebook .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-facebook .pk-social-links-link:hover {
	background-color: #3b5998;
}

.pk-social-links-scheme-light-bg .pk-social-links-instagram .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-instagram .pk-social-links-link:hover {
	background-color: #675144;
}

.pk-social-links-scheme-light-bg .pk-social-links-fb-messenger .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-fb-messenger .pk-social-links-link:hover {
	background-color: #0084ff;
}

.pk-social-links-scheme-light-bg .pk-social-links-youtube .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-youtube .pk-social-links-link:hover {
	background-color: #ff0000;
}

.pk-social-links-scheme-light-bg .pk-social-links-vimeo .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-vimeo .pk-social-links-link:hover {
	background-color: #00ADEF;
}

.pk-social-links-scheme-light-bg .pk-social-links-soundcloud .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-soundcloud .pk-social-links-link:hover {
	background-color: #FE8336;
}

.pk-social-links-scheme-light-bg .pk-social-links-spotify .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-spotify .pk-social-links-link:hover {
	background-color: #1ED760;
}

.pk-social-links-scheme-light-bg .pk-social-links-dribbble .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-dribbble .pk-social-links-link:hover {
	background-color: #EA4C89;
}

.pk-social-links-scheme-light-bg .pk-social-links-behance .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-behance .pk-social-links-link:hover {
	background-color: #115EFA;
}

.pk-social-links-scheme-light-bg .pk-social-links-github .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-github .pk-social-links-link:hover {
	background-color: #010101;
}

.pk-social-links-scheme-light-bg .pk-social-links-tumblr .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-tumblr .pk-social-links-link:hover {
	background-color: #35455C;
}

.pk-social-links-scheme-light-bg .pk-social-links-bloglovin .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-bloglovin .pk-social-links-link:hover {
	background-color: #00BDF4;
}

.pk-social-links-scheme-light-bg .pk-social-links-linkedin .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-linkedin .pk-social-links-link:hover {
	background-color: #007bb6;
}

.pk-social-links-scheme-light-bg .pk-social-links-pinterest .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-pinterest .pk-social-links-link:hover {
	background-color: #cb2027;
}

.pk-social-links-scheme-light-bg .pk-social-links-stumbleupon .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-stumbleupon .pk-social-links-link:hover {
	background-color: #eb4823;
}

.pk-social-links-scheme-light-bg .pk-social-links-whatsapp .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-whatsapp .pk-social-links-link:hover {
	background-color: #29a628;
}

.pk-social-links-scheme-light-bg .pk-social-links-telegram .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-telegram .pk-social-links-link:hover {
	background-color: #2ca5e0;
}

.pk-social-links-scheme-light-bg .pk-social-links-line .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-line .pk-social-links-link:hover {
	background-color: #25af00;
}

.pk-social-links-scheme-light-bg .pk-social-links-viber .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-viber .pk-social-links-link:hover {
	background-color: #7b519d;
}

.pk-social-links-scheme-light-bg .pk-social-links-pocket .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-pocket .pk-social-links-link:hover {
	background-color: #ef4056;
}

.pk-social-links-scheme-light-bg .pk-social-links-messenger .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-messenger .pk-social-links-link:hover {
	background-color: #0084ff;
}

.pk-social-links-scheme-light-bg .pk-social-links-ok .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-ok .pk-social-links-link:hover {
	background-color: #EE8208;
}

.pk-social-links-scheme-light-bg .pk-social-links-vk .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-vk .pk-social-links-link:hover {
	background-color: #45668e;
}

.pk-social-links-scheme-light-bg .pk-social-links-vkontakte .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-vkontakte .pk-social-links-link:hover {
	background-color: #45668e;
}

.pk-social-links-scheme-light-bg .pk-social-links-xing .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-xing .pk-social-links-link:hover {
	background-color: #006567;
}

.pk-social-links-scheme-light-bg .pk-social-links-twitch .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-twitch .pk-social-links-link:hover {
	background-color: #4B367C;
}

.pk-social-links-scheme-light-bg .pk-social-links-flickr .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-flickr .pk-social-links-link:hover {
	background-color: #FF1981;
}

.pk-social-links-scheme-light-bg .pk-social-links-snapchat .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-snapchat .pk-social-links-link:hover {
	background-color: #F0EC00;
}

.pk-social-links-scheme-light-bg .pk-social-links-medium .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-medium .pk-social-links-link:hover {
	background-color: #1f1f1f;
}

.pk-social-links-scheme-light-bg .pk-social-links-reddit .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-reddit .pk-social-links-link:hover {
	background-color: #ff4500;
}

.pk-social-links-scheme-light-bg .pk-social-links-wechat .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-wechat .pk-social-links-link:hover {
	background-color: #1AAD19;
}

.pk-social-links-scheme-light-bg .pk-social-links-tiktok .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-tiktok .pk-social-links-link:hover {
	background-color: #000000;
}

.pk-social-links-scheme-light-bg .pk-social-links-discord .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-discord .pk-social-links-link:hover {
	background-color: #5b77b8;
}

.pk-social-links-scheme-light-bg .pk-social-links-weibo .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-weibo .pk-social-links-link:hover {
	background-color: #D72829;
}

.pk-social-links-scheme-light-bg .pk-social-links-android .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-android .pk-social-links-link:hover {
	background-color: #A4C639;
}

.pk-social-links-scheme-light-bg .pk-social-links-apple .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-apple .pk-social-links-link:hover {
	background-color: #444444;
}

.pk-social-links-scheme-light-bg .pk-social-links-yelp .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-yelp .pk-social-links-link:hover {
	background-color: #D32323;
}

.pk-social-links-scheme-light-bg .pk-social-links-stackoverflow .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-stackoverflow .pk-social-links-link:hover {
	background-color: #FE7A15;
}

.pk-social-links-scheme-light-bg .pk-social-links-codepen .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-codepen .pk-social-links-link:hover {
	background-color: #000000;
}

.pk-social-links-scheme-light-bg .pk-social-links-gitlab .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-gitlab .pk-social-links-link:hover {
	background-color: #E24329;
}

.pk-social-links-scheme-light-bg .pk-social-links-freecodecamp .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-freecodecamp .pk-social-links-link:hover {
	background-color: #006400;
}

.pk-social-links-scheme-light-bg .pk-social-links-jsfiddle .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-jsfiddle .pk-social-links-link:hover {
	background-color: #487AA2;
}

.pk-social-links-scheme-light-bg .pk-social-links-bitbucket .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-bitbucket .pk-social-links-link:hover {
	background-color: #205081;
}

.pk-social-links-scheme-light-bg .pk-social-links-foursquare .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-foursquare .pk-social-links-link:hover {
	background-color: #2D5BE3;
}

.pk-social-links-scheme-light-bg .pk-social-links-500px .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-500px .pk-social-links-link:hover {
	background-color: #0099E5;
}

.pk-social-links-scheme-light-bg .pk-social-links-delicious .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-delicious .pk-social-links-link:hover {
	background-color: #3399FF;
}

.pk-social-links-scheme-light-bg .pk-social-links-deviantart .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-deviantart .pk-social-links-link:hover {
	background-color: #05CC47;
}

.pk-social-links-scheme-light-bg .pk-social-links-houzz .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-houzz .pk-social-links-link:hover {
	background-color: #7AC142;
}

.pk-social-links-scheme-light-bg .pk-social-links-meetup .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-meetup .pk-social-links-link:hover {
	background-color: #EC1C40;
}

.pk-social-links-scheme-light-bg .pk-social-links-producthunt .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-producthunt .pk-social-links-link:hover {
	background-color: #DA552F;
}

.pk-social-links-scheme-light-bg .pk-social-links-slideshare .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-slideshare .pk-social-links-link:hover {
	background-color: #0077B5;
}

.pk-social-links-scheme-light-bg .pk-social-links-tripadvisor .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-tripadvisor .pk-social-links-link:hover {
	background-color: #589442;
}

.pk-social-links-scheme-light-bg .pk-social-links-steam .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-steam .pk-social-links-link:hover {
	background-color: #00ADEE;
}

.pk-social-links-scheme-light-bg .pk-social-links-thumbtack .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-thumbtack .pk-social-links-link:hover {
	background-color: #1AA1D8;
}

.pk-social-links-scheme-light-bg .pk-social-links-goodreads .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-goodreads .pk-social-links-link:hover {
	background-color: #BAAC9A;
}

.pk-social-links-scheme-light-bg .pk-social-links-mastodon .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-mastodon .pk-social-links-link:hover {
	background-color: #3088D4;
}

.pk-social-links-scheme-light-bg .pk-social-links-pixelfed .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-pixelfed .pk-social-links-link:hover {
	background-color: #F22349;
}

.pk-social-links-scheme-light-bg .pk-social-links-microblog .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-microblog .pk-social-links-link:hover {
	background-color: #FD8308;
}

.pk-social-links-scheme-light-bg .pk-social-links-googlenews .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-googlenews .pk-social-links-link:hover {
	background-color: #4b8cf5;
}

.pk-social-links-scheme-light-bg .pk-social-links-flipboard .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-flipboard .pk-social-links-link:hover {
	background-color: #f52928;
}

.pk-social-links-scheme-light-bg .pk-social-links-strava .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-strava .pk-social-links-link:hover {
	background-color: #FC4C02;
}

.pk-social-links-scheme-light-bg .pk-social-links-phone .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-phone .pk-social-links-link:hover {
	background-color: #121212;
}

.pk-social-links-scheme-light-bg .pk-social-links-mail .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-mail .pk-social-links-link:hover {
	background-color: #121212;
}

.pk-social-links-scheme-light-bg .pk-social-links-rss .pk-social-links-link:hover,
.is-style-pk-social-links-light-bg .pk-social-links-rss .pk-social-links-link:hover {
	background-color: #FFA500;
}

.pk-social-links-scheme-bold-bg .pk-social-links-items .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-items .pk-social-links-link {
	padding: .8rem 1rem;
	color: var(--pk-social-bold-bg-link-color) !important;
}

.pk-social-links-scheme-bold-bg .pk-social-links-items .pk-social-links-link .pk-social-links-icon,
.pk-social-links-scheme-bold-bg .pk-social-links-items .pk-social-links-link .pk-social-links-title,
.pk-social-links-scheme-bold-bg .pk-social-links-items .pk-social-links-link .pk-social-links-label,
.pk-social-links-scheme-bold-bg .pk-social-links-items .pk-social-links-link .pk-social-links-count,
.is-style-pk-social-links-bold-bg .pk-social-links-items .pk-social-links-link .pk-social-links-icon,
.is-style-pk-social-links-bold-bg .pk-social-links-items .pk-social-links-link .pk-social-links-title,
.is-style-pk-social-links-bold-bg .pk-social-links-items .pk-social-links-link .pk-social-links-label,
.is-style-pk-social-links-bold-bg .pk-social-links-items .pk-social-links-link .pk-social-links-count {
	color: inherit !important;
}

.pk-social-links-scheme-bold-bg .pk-social-links-twitter .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-twitter .pk-social-links-link {
	background-color: #00aced;
}

.pk-social-links-scheme-bold-bg .pk-social-links-twitter .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-twitter .pk-social-links-link:hover {
	background-color: #21c2ff;
}

.pk-social-links-scheme-bold-bg .pk-social-links-facebook .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-facebook .pk-social-links-link {
	background-color: #3b5998;
}

.pk-social-links-scheme-bold-bg .pk-social-links-facebook .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-facebook .pk-social-links-link:hover {
	background-color: #4c70ba;
}

.pk-social-links-scheme-bold-bg .pk-social-links-instagram .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-instagram .pk-social-links-link {
	background-color: #675144;
}

.pk-social-links-scheme-bold-bg .pk-social-links-instagram .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-instagram .pk-social-links-link:hover {
	background-color: #866958;
}

.pk-social-links-scheme-bold-bg .pk-social-links-fb-messenger .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-fb-messenger .pk-social-links-link {
	background-color: #0084ff;
}

.pk-social-links-scheme-bold-bg .pk-social-links-fb-messenger .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-fb-messenger .pk-social-links-link:hover {
	background-color: #339dff;
}

.pk-social-links-scheme-bold-bg .pk-social-links-youtube .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-youtube .pk-social-links-link {
	background-color: #ff0000;
}

.pk-social-links-scheme-bold-bg .pk-social-links-youtube .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-youtube .pk-social-links-link:hover {
	background-color: #ff3333;
}

.pk-social-links-scheme-bold-bg .pk-social-links-vimeo .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-vimeo .pk-social-links-link {
	background-color: #00ADEF;
}

.pk-social-links-scheme-bold-bg .pk-social-links-vimeo .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-vimeo .pk-social-links-link:hover {
	background-color: #23c2ff;
}

.pk-social-links-scheme-bold-bg .pk-social-links-soundcloud .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-soundcloud .pk-social-links-link {
	background-color: #FE8336;
}

.pk-social-links-scheme-bold-bg .pk-social-links-soundcloud .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-soundcloud .pk-social-links-link:hover {
	background-color: #fea269;
}

.pk-social-links-scheme-bold-bg .pk-social-links-spotify .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-spotify .pk-social-links-link {
	background-color: #1ED760;
}

.pk-social-links-scheme-bold-bg .pk-social-links-spotify .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-spotify .pk-social-links-link:hover {
	background-color: #43e57d;
}

.pk-social-links-scheme-bold-bg .pk-social-links-dribbble .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-dribbble .pk-social-links-link {
	background-color: #EA4C89;
}

.pk-social-links-scheme-bold-bg .pk-social-links-dribbble .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-dribbble .pk-social-links-link:hover {
	background-color: #ef7aa7;
}

.pk-social-links-scheme-bold-bg .pk-social-links-behance .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-behance .pk-social-links-link {
	background-color: #115EFA;
}

.pk-social-links-scheme-bold-bg .pk-social-links-behance .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-behance .pk-social-links-link:hover {
	background-color: #4380fb;
}

.pk-social-links-scheme-bold-bg .pk-social-links-github .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-github .pk-social-links-link {
	background-color: #010101;
}

.pk-social-links-scheme-bold-bg .pk-social-links-github .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-github .pk-social-links-link:hover {
	background-color: #1b1a1a;
}

.pk-social-links-scheme-bold-bg .pk-social-links-tumblr .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-tumblr .pk-social-links-link {
	background-color: #35455C;
}

.pk-social-links-scheme-bold-bg .pk-social-links-tumblr .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-tumblr .pk-social-links-link:hover {
	background-color: #485d7c;
}

.pk-social-links-scheme-bold-bg .pk-social-links-bloglovin .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-bloglovin .pk-social-links-link {
	background-color: #00BDF4;
}

.pk-social-links-scheme-bold-bg .pk-social-links-bloglovin .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-bloglovin .pk-social-links-link:hover {
	background-color: #28cfff;
}

.pk-social-links-scheme-bold-bg .pk-social-links-linkedin .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-linkedin .pk-social-links-link {
	background-color: #007bb6;
}

.pk-social-links-scheme-bold-bg .pk-social-links-linkedin .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-linkedin .pk-social-links-link:hover {
	background-color: #009de9;
}

.pk-social-links-scheme-bold-bg .pk-social-links-pinterest .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-pinterest .pk-social-links-link {
	background-color: #cb2027;
}

.pk-social-links-scheme-bold-bg .pk-social-links-pinterest .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-pinterest .pk-social-links-link:hover {
	background-color: #e03e44;
}

.pk-social-links-scheme-bold-bg .pk-social-links-stumbleupon .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-stumbleupon .pk-social-links-link {
	background-color: #eb4823;
}

.pk-social-links-scheme-bold-bg .pk-social-links-stumbleupon .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-stumbleupon .pk-social-links-link:hover {
	background-color: #ef6f52;
}

.pk-social-links-scheme-bold-bg .pk-social-links-whatsapp .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-whatsapp .pk-social-links-link {
	background-color: #29a628;
}

.pk-social-links-scheme-bold-bg .pk-social-links-whatsapp .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-whatsapp .pk-social-links-link:hover {
	background-color: #34ce33;
}

.pk-social-links-scheme-bold-bg .pk-social-links-telegram .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-telegram .pk-social-links-link {
	background-color: #2ca5e0;
}

.pk-social-links-scheme-bold-bg .pk-social-links-telegram .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-telegram .pk-social-links-link:hover {
	background-color: #58b8e7;
}

.pk-social-links-scheme-bold-bg .pk-social-links-line .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-line .pk-social-links-link {
	background-color: #25af00;
}

.pk-social-links-scheme-bold-bg .pk-social-links-line .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-line .pk-social-links-link:hover {
	background-color: #30e200;
}

.pk-social-links-scheme-bold-bg .pk-social-links-viber .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-viber .pk-social-links-link {
	background-color: #7b519d;
}

.pk-social-links-scheme-bold-bg .pk-social-links-viber .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-viber .pk-social-links-link:hover {
	background-color: #946db4;
}

.pk-social-links-scheme-bold-bg .pk-social-links-pocket .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-pocket .pk-social-links-link {
	background-color: #ef4056;
}

.pk-social-links-scheme-bold-bg .pk-social-links-pocket .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-pocket .pk-social-links-link:hover {
	background-color: #f36f80;
}

.pk-social-links-scheme-bold-bg .pk-social-links-messenger .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-messenger .pk-social-links-link {
	background-color: #0084ff;
}

.pk-social-links-scheme-bold-bg .pk-social-links-messenger .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-messenger .pk-social-links-link:hover {
	background-color: #339dff;
}

.pk-social-links-scheme-bold-bg .pk-social-links-ok .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-ok .pk-social-links-link {
	background-color: #EE8208;
}

.pk-social-links-scheme-bold-bg .pk-social-links-ok .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-ok .pk-social-links-link:hover {
	background-color: #f89b31;
}

.pk-social-links-scheme-bold-bg .pk-social-links-vk .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-vk .pk-social-links-link {
	background-color: #45668e;
}

.pk-social-links-scheme-bold-bg .pk-social-links-vk .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-vk .pk-social-links-link:hover {
	background-color: #587fae;
}

.pk-social-links-scheme-bold-bg .pk-social-links-vkontakte .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-vkontakte .pk-social-links-link {
	background-color: #45668e;
}

.pk-social-links-scheme-bold-bg .pk-social-links-vkontakte .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-vkontakte .pk-social-links-link:hover {
	background-color: #587fae;
}

.pk-social-links-scheme-bold-bg .pk-social-links-xing .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-xing .pk-social-links-link {
	background-color: #006567;
}

.pk-social-links-scheme-bold-bg .pk-social-links-xing .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-xing .pk-social-links-link:hover {
	background-color: #00979a;
}

.pk-social-links-scheme-bold-bg .pk-social-links-twitch .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-twitch .pk-social-links-link {
	background-color: #4B367C;
}

.pk-social-links-scheme-bold-bg .pk-social-links-twitch .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-twitch .pk-social-links-link:hover {
	background-color: #6045a0;
}

.pk-social-links-scheme-bold-bg .pk-social-links-flickr .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-flickr .pk-social-links-link {
	background-color: #FF1981;
}

.pk-social-links-scheme-bold-bg .pk-social-links-flickr .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-flickr .pk-social-links-link:hover {
	background-color: #ff4c9d;
}

.pk-social-links-scheme-bold-bg .pk-social-links-snapchat .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-snapchat .pk-social-links-link {
	background-color: #F0EC00;
}

.pk-social-links-scheme-bold-bg .pk-social-links-snapchat .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-snapchat .pk-social-links-link:hover {
	background-color: #fffb24;
}

.pk-social-links-scheme-bold-bg .pk-social-links-medium .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-medium .pk-social-links-link {
	background-color: #1f1f1f;
}

.pk-social-links-scheme-bold-bg .pk-social-links-medium .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-medium .pk-social-links-link:hover {
	background-color: #393838;
}

.pk-social-links-scheme-bold-bg .pk-social-links-reddit .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-reddit .pk-social-links-link {
	background-color: #ff4500;
}

.pk-social-links-scheme-bold-bg .pk-social-links-reddit .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-reddit .pk-social-links-link:hover {
	background-color: #ff6a33;
}

.pk-social-links-scheme-bold-bg .pk-social-links-wechat .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-wechat .pk-social-links-link {
	background-color: #1AAD19;
}

.pk-social-links-scheme-bold-bg .pk-social-links-wechat .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-wechat .pk-social-links-link:hover {
	background-color: #21da1f;
}

.pk-social-links-scheme-bold-bg .pk-social-links-tiktok .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-tiktok .pk-social-links-link {
	background-color: #000000;
}

.pk-social-links-scheme-bold-bg .pk-social-links-tiktok .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-tiktok .pk-social-links-link:hover {
	background-color: #1a1919;
}

.pk-social-links-scheme-bold-bg .pk-social-links-discord .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-discord .pk-social-links-link {
	background-color: #5b77b8;
}

.pk-social-links-scheme-bold-bg .pk-social-links-discord .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-discord .pk-social-links-link:hover {
	background-color: #7f95c7;
}

.pk-social-links-scheme-bold-bg .pk-social-links-weibo .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-weibo .pk-social-links-link {
	background-color: #D72829;
}

.pk-social-links-scheme-bold-bg .pk-social-links-weibo .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-weibo .pk-social-links-link:hover {
	background-color: #df5354;
}

.pk-social-links-scheme-bold-bg .pk-social-links-android .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-android .pk-social-links-link {
	background-color: #A4C639;
}

.pk-social-links-scheme-bold-bg .pk-social-links-android .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-android .pk-social-links-link:hover {
	background-color: #b6d161;
}

.pk-social-links-scheme-bold-bg .pk-social-links-apple .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-apple .pk-social-links-link {
	background-color: #444444;
}

.pk-social-links-scheme-bold-bg .pk-social-links-apple .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-apple .pk-social-links-link:hover {
	background-color: #5e5d5d;
}

.pk-social-links-scheme-bold-bg .pk-social-links-yelp .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-yelp .pk-social-links-link {
	background-color: #D32323;
}

.pk-social-links-scheme-bold-bg .pk-social-links-yelp .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-yelp .pk-social-links-link:hover {
	background-color: #e14848;
}

.pk-social-links-scheme-bold-bg .pk-social-links-stackoverflow .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-stackoverflow .pk-social-links-link {
	background-color: #FE7A15;
}

.pk-social-links-scheme-bold-bg .pk-social-links-stackoverflow .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-stackoverflow .pk-social-links-link:hover {
	background-color: #fe9748;
}

.pk-social-links-scheme-bold-bg .pk-social-links-codepen .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-codepen .pk-social-links-link {
	background-color: #000000;
}

.pk-social-links-scheme-bold-bg .pk-social-links-codepen .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-codepen .pk-social-links-link:hover {
	background-color: #1a1919;
}

.pk-social-links-scheme-bold-bg .pk-social-links-gitlab .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-gitlab .pk-social-links-link {
	background-color: #E24329;
}

.pk-social-links-scheme-bold-bg .pk-social-links-gitlab .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-gitlab .pk-social-links-link:hover {
	background-color: #e86a56;
}

.pk-social-links-scheme-bold-bg .pk-social-links-freecodecamp .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-freecodecamp .pk-social-links-link {
	background-color: #006400;
}

.pk-social-links-scheme-bold-bg .pk-social-links-freecodecamp .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-freecodecamp .pk-social-links-link:hover {
	background-color: #009700;
}

.pk-social-links-scheme-bold-bg .pk-social-links-jsfiddle .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-jsfiddle .pk-social-links-link {
	background-color: #487AA2;
}

.pk-social-links-scheme-bold-bg .pk-social-links-jsfiddle .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-jsfiddle .pk-social-links-link:hover {
	background-color: #6393ba;
}

.pk-social-links-scheme-bold-bg .pk-social-links-bitbucket .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-bitbucket .pk-social-links-link {
	background-color: #205081;
}

.pk-social-links-scheme-bold-bg .pk-social-links-bitbucket .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-bitbucket .pk-social-links-link:hover {
	background-color: #2a69aa;
}

.pk-social-links-scheme-bold-bg .pk-social-links-foursquare .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-foursquare .pk-social-links-link {
	background-color: #2D5BE3;
}

.pk-social-links-scheme-bold-bg .pk-social-links-foursquare .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-foursquare .pk-social-links-link:hover {
	background-color: #5a7ee9;
}

.pk-social-links-scheme-bold-bg .pk-social-links-500px .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-500px .pk-social-links-link {
	background-color: #0099E5;
}

.pk-social-links-scheme-bold-bg .pk-social-links-500px .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-500px .pk-social-links-link:hover {
	background-color: #19b3ff;
}

.pk-social-links-scheme-bold-bg .pk-social-links-delicious .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-delicious .pk-social-links-link {
	background-color: #3399FF;
}

.pk-social-links-scheme-bold-bg .pk-social-links-delicious .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-delicious .pk-social-links-link:hover {
	background-color: #66b3ff;
}

.pk-social-links-scheme-bold-bg .pk-social-links-deviantart .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-deviantart .pk-social-links-link {
	background-color: #05CC47;
}

.pk-social-links-scheme-bold-bg .pk-social-links-deviantart .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-deviantart .pk-social-links-link:hover {
	background-color: #0bf95a;
}

.pk-social-links-scheme-bold-bg .pk-social-links-houzz .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-houzz .pk-social-links-link {
	background-color: #7AC142;
}

.pk-social-links-scheme-bold-bg .pk-social-links-houzz .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-houzz .pk-social-links-link:hover {
	background-color: #95ce68;
}

.pk-social-links-scheme-bold-bg .pk-social-links-meetup .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-meetup .pk-social-links-link {
	background-color: #EC1C40;
}

.pk-social-links-scheme-bold-bg .pk-social-links-meetup .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-meetup .pk-social-links-link:hover {
	background-color: #f04b68;
}

.pk-social-links-scheme-bold-bg .pk-social-links-producthunt .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-producthunt .pk-social-links-link {
	background-color: #DA552F;
}

.pk-social-links-scheme-bold-bg .pk-social-links-producthunt .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-producthunt .pk-social-links-link:hover {
	background-color: #e2785a;
}

.pk-social-links-scheme-bold-bg .pk-social-links-slideshare .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-slideshare .pk-social-links-link {
	background-color: #0077B5;
}

.pk-social-links-scheme-bold-bg .pk-social-links-slideshare .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-slideshare .pk-social-links-link:hover {
	background-color: #0099e8;
}

.pk-social-links-scheme-bold-bg .pk-social-links-tripadvisor .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-tripadvisor .pk-social-links-link {
	background-color: #589442;
}

.pk-social-links-scheme-bold-bg .pk-social-links-tripadvisor .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-tripadvisor .pk-social-links-link:hover {
	background-color: #6fb356;
}

.pk-social-links-scheme-bold-bg .pk-social-links-steam .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-steam .pk-social-links-link {
	background-color: #00ADEE;
}

.pk-social-links-scheme-bold-bg .pk-social-links-steam .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-steam .pk-social-links-link:hover {
	background-color: #22c3ff;
}

.pk-social-links-scheme-bold-bg .pk-social-links-thumbtack .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-thumbtack .pk-social-links-link {
	background-color: #1AA1D8;
}

.pk-social-links-scheme-bold-bg .pk-social-links-thumbtack .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-thumbtack .pk-social-links-link:hover {
	background-color: #3db6e8;
}

.pk-social-links-scheme-bold-bg .pk-social-links-goodreads .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-goodreads .pk-social-links-link {
	background-color: #BAAC9A;
}

.pk-social-links-scheme-bold-bg .pk-social-links-goodreads .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-goodreads .pk-social-links-link:hover {
	background-color: #cfc5b8;
}

.pk-social-links-scheme-bold-bg .pk-social-links-mastodon .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-mastodon .pk-social-links-link {
	background-color: #3088D4;
}

.pk-social-links-scheme-bold-bg .pk-social-links-mastodon .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-mastodon .pk-social-links-link:hover {
	background-color: #5aa0dd;
}

.pk-social-links-scheme-bold-bg .pk-social-links-pixelfed .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-pixelfed .pk-social-links-link {
	background-color: #F22349;
}

.pk-social-links-scheme-bold-bg .pk-social-links-pixelfed .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-pixelfed .pk-social-links-link:hover {
	background-color: #f55371;
}

.pk-social-links-scheme-bold-bg .pk-social-links-microblog .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-microblog .pk-social-links-link {
	background-color: #FD8308;
}

.pk-social-links-scheme-bold-bg .pk-social-links-microblog .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-microblog .pk-social-links-link:hover {
	background-color: #fd9c3b;
}

.pk-social-links-scheme-bold-bg .pk-social-links-googlenews .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-googlenews .pk-social-links-link {
	background-color: #4b8cf5;
}

.pk-social-links-scheme-bold-bg .pk-social-links-googlenews .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-googlenews .pk-social-links-link:hover {
	background-color: #7babf8;
}

.pk-social-links-scheme-bold-bg .pk-social-links-flipboard .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-flipboard .pk-social-links-link {
	background-color: #f52928;
}

.pk-social-links-scheme-bold-bg .pk-social-links-flipboard .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-flipboard .pk-social-links-link:hover {
	background-color: #f75a59;
}

.pk-social-links-scheme-bold-bg .pk-social-links-strava .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-strava .pk-social-links-link {
	background-color: #FC4C02;
}

.pk-social-links-scheme-bold-bg .pk-social-links-strava .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-strava .pk-social-links-link:hover {
	background-color: #fd6f34;
}

.pk-social-links-scheme-bold-bg .pk-social-links-phone .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-phone .pk-social-links-link {
	background-color: #121212;
}

.pk-social-links-scheme-bold-bg .pk-social-links-phone .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-phone .pk-social-links-link:hover {
	background-color: #2c2b2b;
}

.pk-social-links-scheme-bold-bg .pk-social-links-mail .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-mail .pk-social-links-link {
	background-color: #121212;
}

.pk-social-links-scheme-bold-bg .pk-social-links-mail .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-mail .pk-social-links-link:hover {
	background-color: #2c2b2b;
}

.pk-social-links-scheme-bold-bg .pk-social-links-rss .pk-social-links-link,
.is-style-pk-social-links-bold-bg .pk-social-links-rss .pk-social-links-link {
	background-color: #FFA500;
}

.pk-social-links-scheme-bold-bg .pk-social-links-rss .pk-social-links-link:hover,
.is-style-pk-social-links-bold-bg .pk-social-links-rss .pk-social-links-link:hover {
	background-color: #ffb733;
}

.pk-social-links-scheme-dark-bg .pk-social-links-items .pk-social-links-link,
.is-style-pk-social-links-dark-bg .pk-social-links-items .pk-social-links-link {
	background: var(--pk-social-dark-link-background);
	padding: .8rem 1rem;
	color: var(--pk-social-dark-link-color) !important;
}

.pk-social-links-scheme-dark-bg .pk-social-links-items .pk-social-links-link .pk-social-links-icon,
.pk-social-links-scheme-dark-bg .pk-social-links-items .pk-social-links-link .pk-social-links-title,
.pk-social-links-scheme-dark-bg .pk-social-links-items .pk-social-links-link .pk-social-links-label,
.pk-social-links-scheme-dark-bg .pk-social-links-items .pk-social-links-link .pk-social-links-count,
.is-style-pk-social-links-dark-bg .pk-social-links-items .pk-social-links-link .pk-social-links-icon,
.is-style-pk-social-links-dark-bg .pk-social-links-items .pk-social-links-link .pk-social-links-title,
.is-style-pk-social-links-dark-bg .pk-social-links-items .pk-social-links-link .pk-social-links-label,
.is-style-pk-social-links-dark-bg .pk-social-links-items .pk-social-links-link .pk-social-links-count {
	color: inherit !important;
}

.pk-social-links-scheme-dark-bg .pk-social-links-items .pk-social-links-link:hover,
.is-style-pk-social-links-dark-bg .pk-social-links-items .pk-social-links-link:hover {
	background-color: var(--pk-social-dark-link-hover-background);
}

.pk-social-links-scheme-light-rounded .pk-social-links-link,
.is-style-pk-social-links-light-rounded .pk-social-links-link {
	background-color: transparent;
	padding: 0;
}

.pk-social-links-scheme-light-rounded .pk-social-links-icon,
.is-style-pk-social-links-light-rounded .pk-social-links-scheme-gutenberg-block .pk-social-links-icon {
	background-color: var(--pk-social-light-rounded-icon-background);
	display: flex;
	align-content: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	border-radius: 50%;
	transition: color 0.2s;
}

.pk-social-links-scheme-light-rounded .pk-social-links-title,
.is-style-pk-social-links-light-rounded .pk-social-links-title {
	color: var(--pk-social-light-rounded-title-color);
}

.is-style-pk-social-links-light-rounded .pk-social-links-twitter .pk-social-links-link {
	color: #00aced !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-twitter .pk-social-links-link:hover .pk-social-links-icon {
	color: #21c2ff !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-facebook .pk-social-links-link {
	color: #3b5998 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-facebook .pk-social-links-link:hover .pk-social-links-icon {
	color: #4c70ba !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-instagram .pk-social-links-link {
	color: #675144 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-instagram .pk-social-links-link:hover .pk-social-links-icon {
	color: #866958 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-fb-messenger .pk-social-links-link {
	color: #0084ff !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-fb-messenger .pk-social-links-link:hover .pk-social-links-icon {
	color: #339dff !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-youtube .pk-social-links-link {
	color: #ff0000 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-youtube .pk-social-links-link:hover .pk-social-links-icon {
	color: #ff3333 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-vimeo .pk-social-links-link {
	color: #00ADEF !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-vimeo .pk-social-links-link:hover .pk-social-links-icon {
	color: #23c2ff !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-soundcloud .pk-social-links-link {
	color: #FE8336 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-soundcloud .pk-social-links-link:hover .pk-social-links-icon {
	color: #fea269 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-spotify .pk-social-links-link {
	color: #1ED760 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-spotify .pk-social-links-link:hover .pk-social-links-icon {
	color: #43e57d !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-dribbble .pk-social-links-link {
	color: #EA4C89 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-dribbble .pk-social-links-link:hover .pk-social-links-icon {
	color: #ef7aa7 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-behance .pk-social-links-link {
	color: #115EFA !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-behance .pk-social-links-link:hover .pk-social-links-icon {
	color: #4380fb !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-github .pk-social-links-link {
	color: #010101 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-github .pk-social-links-link:hover .pk-social-links-icon {
	color: #1b1a1a !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-tumblr .pk-social-links-link {
	color: #35455C !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-tumblr .pk-social-links-link:hover .pk-social-links-icon {
	color: #485d7c !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-bloglovin .pk-social-links-link {
	color: #00BDF4 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-bloglovin .pk-social-links-link:hover .pk-social-links-icon {
	color: #28cfff !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-linkedin .pk-social-links-link {
	color: #007bb6 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-linkedin .pk-social-links-link:hover .pk-social-links-icon {
	color: #009de9 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-pinterest .pk-social-links-link {
	color: #cb2027 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-pinterest .pk-social-links-link:hover .pk-social-links-icon {
	color: #e03e44 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-stumbleupon .pk-social-links-link {
	color: #eb4823 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-stumbleupon .pk-social-links-link:hover .pk-social-links-icon {
	color: #ef6f52 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-whatsapp .pk-social-links-link {
	color: #29a628 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-whatsapp .pk-social-links-link:hover .pk-social-links-icon {
	color: #34ce33 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-telegram .pk-social-links-link {
	color: #2ca5e0 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-telegram .pk-social-links-link:hover .pk-social-links-icon {
	color: #58b8e7 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-line .pk-social-links-link {
	color: #25af00 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-line .pk-social-links-link:hover .pk-social-links-icon {
	color: #30e200 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-viber .pk-social-links-link {
	color: #7b519d !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-viber .pk-social-links-link:hover .pk-social-links-icon {
	color: #946db4 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-pocket .pk-social-links-link {
	color: #ef4056 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-pocket .pk-social-links-link:hover .pk-social-links-icon {
	color: #f36f80 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-messenger .pk-social-links-link {
	color: #0084ff !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-messenger .pk-social-links-link:hover .pk-social-links-icon {
	color: #339dff !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-ok .pk-social-links-link {
	color: #EE8208 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-ok .pk-social-links-link:hover .pk-social-links-icon {
	color: #f89b31 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-vk .pk-social-links-link {
	color: #45668e !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-vk .pk-social-links-link:hover .pk-social-links-icon {
	color: #587fae !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-vkontakte .pk-social-links-link {
	color: #45668e !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-vkontakte .pk-social-links-link:hover .pk-social-links-icon {
	color: #587fae !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-xing .pk-social-links-link {
	color: #006567 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-xing .pk-social-links-link:hover .pk-social-links-icon {
	color: #00979a !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-twitch .pk-social-links-link {
	color: #4B367C !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-twitch .pk-social-links-link:hover .pk-social-links-icon {
	color: #6045a0 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-flickr .pk-social-links-link {
	color: #FF1981 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-flickr .pk-social-links-link:hover .pk-social-links-icon {
	color: #ff4c9d !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-snapchat .pk-social-links-link {
	color: #F0EC00 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-snapchat .pk-social-links-link:hover .pk-social-links-icon {
	color: #fffb24 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-medium .pk-social-links-link {
	color: #1f1f1f !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-medium .pk-social-links-link:hover .pk-social-links-icon {
	color: #393838 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-reddit .pk-social-links-link {
	color: #ff4500 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-reddit .pk-social-links-link:hover .pk-social-links-icon {
	color: #ff6a33 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-wechat .pk-social-links-link {
	color: #1AAD19 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-wechat .pk-social-links-link:hover .pk-social-links-icon {
	color: #21da1f !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-tiktok .pk-social-links-link {
	color: #000000 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-tiktok .pk-social-links-link:hover .pk-social-links-icon {
	color: #1a1919 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-discord .pk-social-links-link {
	color: #5b77b8 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-discord .pk-social-links-link:hover .pk-social-links-icon {
	color: #7f95c7 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-weibo .pk-social-links-link {
	color: #D72829 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-weibo .pk-social-links-link:hover .pk-social-links-icon {
	color: #df5354 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-android .pk-social-links-link {
	color: #A4C639 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-android .pk-social-links-link:hover .pk-social-links-icon {
	color: #b6d161 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-apple .pk-social-links-link {
	color: #444444 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-apple .pk-social-links-link:hover .pk-social-links-icon {
	color: #5e5d5d !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-yelp .pk-social-links-link {
	color: #D32323 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-yelp .pk-social-links-link:hover .pk-social-links-icon {
	color: #e14848 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-stackoverflow .pk-social-links-link {
	color: #FE7A15 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-stackoverflow .pk-social-links-link:hover .pk-social-links-icon {
	color: #fe9748 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-codepen .pk-social-links-link {
	color: #000000 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-codepen .pk-social-links-link:hover .pk-social-links-icon {
	color: #1a1919 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-gitlab .pk-social-links-link {
	color: #E24329 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-gitlab .pk-social-links-link:hover .pk-social-links-icon {
	color: #e86a56 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-freecodecamp .pk-social-links-link {
	color: #006400 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-freecodecamp .pk-social-links-link:hover .pk-social-links-icon {
	color: #009700 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-jsfiddle .pk-social-links-link {
	color: #487AA2 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-jsfiddle .pk-social-links-link:hover .pk-social-links-icon {
	color: #6393ba !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-bitbucket .pk-social-links-link {
	color: #205081 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-bitbucket .pk-social-links-link:hover .pk-social-links-icon {
	color: #2a69aa !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-foursquare .pk-social-links-link {
	color: #2D5BE3 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-foursquare .pk-social-links-link:hover .pk-social-links-icon {
	color: #5a7ee9 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-500px .pk-social-links-link {
	color: #0099E5 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-500px .pk-social-links-link:hover .pk-social-links-icon {
	color: #19b3ff !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-delicious .pk-social-links-link {
	color: #3399FF !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-delicious .pk-social-links-link:hover .pk-social-links-icon {
	color: #66b3ff !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-deviantart .pk-social-links-link {
	color: #05CC47 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-deviantart .pk-social-links-link:hover .pk-social-links-icon {
	color: #0bf95a !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-houzz .pk-social-links-link {
	color: #7AC142 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-houzz .pk-social-links-link:hover .pk-social-links-icon {
	color: #95ce68 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-meetup .pk-social-links-link {
	color: #EC1C40 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-meetup .pk-social-links-link:hover .pk-social-links-icon {
	color: #f04b68 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-producthunt .pk-social-links-link {
	color: #DA552F !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-producthunt .pk-social-links-link:hover .pk-social-links-icon {
	color: #e2785a !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-slideshare .pk-social-links-link {
	color: #0077B5 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-slideshare .pk-social-links-link:hover .pk-social-links-icon {
	color: #0099e8 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-tripadvisor .pk-social-links-link {
	color: #589442 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-tripadvisor .pk-social-links-link:hover .pk-social-links-icon {
	color: #6fb356 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-steam .pk-social-links-link {
	color: #00ADEE !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-steam .pk-social-links-link:hover .pk-social-links-icon {
	color: #22c3ff !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-thumbtack .pk-social-links-link {
	color: #1AA1D8 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-thumbtack .pk-social-links-link:hover .pk-social-links-icon {
	color: #3db6e8 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-goodreads .pk-social-links-link {
	color: #BAAC9A !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-goodreads .pk-social-links-link:hover .pk-social-links-icon {
	color: #cfc5b8 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-mastodon .pk-social-links-link {
	color: #3088D4 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-mastodon .pk-social-links-link:hover .pk-social-links-icon {
	color: #5aa0dd !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-pixelfed .pk-social-links-link {
	color: #F22349 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-pixelfed .pk-social-links-link:hover .pk-social-links-icon {
	color: #f55371 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-microblog .pk-social-links-link {
	color: #FD8308 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-microblog .pk-social-links-link:hover .pk-social-links-icon {
	color: #fd9c3b !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-googlenews .pk-social-links-link {
	color: #4b8cf5 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-googlenews .pk-social-links-link:hover .pk-social-links-icon {
	color: #7babf8 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-flipboard .pk-social-links-link {
	color: #f52928 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-flipboard .pk-social-links-link:hover .pk-social-links-icon {
	color: #f75a59 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-strava .pk-social-links-link {
	color: #FC4C02 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-strava .pk-social-links-link:hover .pk-social-links-icon {
	color: #fd6f34 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-phone .pk-social-links-link {
	color: #121212 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-phone .pk-social-links-link:hover .pk-social-links-icon {
	color: #2c2b2b !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-mail .pk-social-links-link {
	color: #121212 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-mail .pk-social-links-link:hover .pk-social-links-icon {
	color: #2c2b2b !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-rss .pk-social-links-link {
	color: #FFA500 !important;
}

.is-style-pk-social-links-light-rounded .pk-social-links-rss .pk-social-links-link:hover .pk-social-links-icon {
	color: #ffb733 !important;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-scheme-gutenberg-block .pk-social-links-icon {
	background-color: var(--pk-social-bold-rounded-icon-background);
	display: flex;
	align-content: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	border-radius: 50%;
	color: var(--pk-social-bold-rounded-icon-color);
	transition: background-color 0.2s;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-link:hover .pk-social-links-title,
.is-style-pk-social-links-bold-rounded .pk-social-links-link:hover .pk-social-links-title {
	color: var(--pk-social-bold-rounded-title-color);
}

.pk-social-links-scheme-bold-rounded .pk-social-links-twitter .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-twitter .pk-social-links-icon {
	background-color: #00aced;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-twitter .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-twitter .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #21c2ff;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-facebook .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-facebook .pk-social-links-icon {
	background-color: #3b5998;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-facebook .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-facebook .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #4c70ba;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-instagram .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-instagram .pk-social-links-icon {
	background-color: #675144;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-instagram .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-instagram .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #866958;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-fb-messenger .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-fb-messenger .pk-social-links-icon {
	background-color: #0084ff;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-fb-messenger .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-fb-messenger .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #339dff;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-youtube .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-youtube .pk-social-links-icon {
	background-color: #ff0000;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-youtube .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-youtube .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #ff3333;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-vimeo .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-vimeo .pk-social-links-icon {
	background-color: #00ADEF;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-vimeo .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-vimeo .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #23c2ff;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-soundcloud .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-soundcloud .pk-social-links-icon {
	background-color: #FE8336;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-soundcloud .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-soundcloud .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #fea269;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-spotify .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-spotify .pk-social-links-icon {
	background-color: #1ED760;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-spotify .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-spotify .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #43e57d;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-dribbble .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-dribbble .pk-social-links-icon {
	background-color: #EA4C89;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-dribbble .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-dribbble .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #ef7aa7;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-behance .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-behance .pk-social-links-icon {
	background-color: #115EFA;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-behance .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-behance .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #4380fb;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-github .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-github .pk-social-links-icon {
	background-color: #010101;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-github .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-github .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #1b1a1a;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-tumblr .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-tumblr .pk-social-links-icon {
	background-color: #35455C;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-tumblr .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-tumblr .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #485d7c;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-bloglovin .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-bloglovin .pk-social-links-icon {
	background-color: #00BDF4;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-bloglovin .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-bloglovin .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #28cfff;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-linkedin .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-linkedin .pk-social-links-icon {
	background-color: #007bb6;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-linkedin .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-linkedin .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #009de9;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-pinterest .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-pinterest .pk-social-links-icon {
	background-color: #cb2027;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-pinterest .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-pinterest .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #e03e44;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-stumbleupon .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-stumbleupon .pk-social-links-icon {
	background-color: #eb4823;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-stumbleupon .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-stumbleupon .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #ef6f52;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-whatsapp .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-whatsapp .pk-social-links-icon {
	background-color: #29a628;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-whatsapp .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-whatsapp .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #34ce33;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-telegram .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-telegram .pk-social-links-icon {
	background-color: #2ca5e0;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-telegram .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-telegram .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #58b8e7;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-line .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-line .pk-social-links-icon {
	background-color: #25af00;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-line .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-line .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #30e200;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-viber .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-viber .pk-social-links-icon {
	background-color: #7b519d;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-viber .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-viber .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #946db4;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-pocket .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-pocket .pk-social-links-icon {
	background-color: #ef4056;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-pocket .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-pocket .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #f36f80;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-messenger .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-messenger .pk-social-links-icon {
	background-color: #0084ff;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-messenger .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-messenger .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #339dff;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-ok .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-ok .pk-social-links-icon {
	background-color: #EE8208;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-ok .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-ok .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #f89b31;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-vk .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-vk .pk-social-links-icon {
	background-color: #45668e;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-vk .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-vk .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #587fae;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-vkontakte .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-vkontakte .pk-social-links-icon {
	background-color: #45668e;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-vkontakte .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-vkontakte .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #587fae;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-xing .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-xing .pk-social-links-icon {
	background-color: #006567;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-xing .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-xing .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #00979a;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-twitch .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-twitch .pk-social-links-icon {
	background-color: #4B367C;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-twitch .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-twitch .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #6045a0;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-flickr .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-flickr .pk-social-links-icon {
	background-color: #FF1981;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-flickr .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-flickr .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #ff4c9d;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-snapchat .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-snapchat .pk-social-links-icon {
	background-color: #F0EC00;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-snapchat .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-snapchat .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #fffb24;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-medium .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-medium .pk-social-links-icon {
	background-color: #1f1f1f;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-medium .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-medium .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #393838;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-reddit .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-reddit .pk-social-links-icon {
	background-color: #ff4500;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-reddit .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-reddit .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #ff6a33;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-wechat .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-wechat .pk-social-links-icon {
	background-color: #1AAD19;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-wechat .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-wechat .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #21da1f;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-tiktok .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-tiktok .pk-social-links-icon {
	background-color: #000000;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-tiktok .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-tiktok .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #1a1919;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-discord .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-discord .pk-social-links-icon {
	background-color: #5b77b8;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-discord .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-discord .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #7f95c7;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-weibo .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-weibo .pk-social-links-icon {
	background-color: #D72829;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-weibo .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-weibo .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #df5354;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-android .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-android .pk-social-links-icon {
	background-color: #A4C639;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-android .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-android .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #b6d161;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-apple .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-apple .pk-social-links-icon {
	background-color: #444444;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-apple .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-apple .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #5e5d5d;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-yelp .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-yelp .pk-social-links-icon {
	background-color: #D32323;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-yelp .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-yelp .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #e14848;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-stackoverflow .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-stackoverflow .pk-social-links-icon {
	background-color: #FE7A15;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-stackoverflow .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-stackoverflow .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #fe9748;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-codepen .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-codepen .pk-social-links-icon {
	background-color: #000000;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-codepen .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-codepen .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #1a1919;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-gitlab .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-gitlab .pk-social-links-icon {
	background-color: #E24329;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-gitlab .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-gitlab .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #e86a56;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-freecodecamp .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-freecodecamp .pk-social-links-icon {
	background-color: #006400;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-freecodecamp .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-freecodecamp .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #009700;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-jsfiddle .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-jsfiddle .pk-social-links-icon {
	background-color: #487AA2;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-jsfiddle .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-jsfiddle .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #6393ba;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-bitbucket .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-bitbucket .pk-social-links-icon {
	background-color: #205081;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-bitbucket .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-bitbucket .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #2a69aa;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-foursquare .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-foursquare .pk-social-links-icon {
	background-color: #2D5BE3;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-foursquare .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-foursquare .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #5a7ee9;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-500px .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-500px .pk-social-links-icon {
	background-color: #0099E5;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-500px .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-500px .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #19b3ff;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-delicious .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-delicious .pk-social-links-icon {
	background-color: #3399FF;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-delicious .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-delicious .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #66b3ff;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-deviantart .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-deviantart .pk-social-links-icon {
	background-color: #05CC47;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-deviantart .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-deviantart .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #0bf95a;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-houzz .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-houzz .pk-social-links-icon {
	background-color: #7AC142;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-houzz .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-houzz .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #95ce68;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-meetup .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-meetup .pk-social-links-icon {
	background-color: #EC1C40;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-meetup .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-meetup .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #f04b68;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-producthunt .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-producthunt .pk-social-links-icon {
	background-color: #DA552F;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-producthunt .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-producthunt .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #e2785a;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-slideshare .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-slideshare .pk-social-links-icon {
	background-color: #0077B5;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-slideshare .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-slideshare .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #0099e8;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-tripadvisor .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-tripadvisor .pk-social-links-icon {
	background-color: #589442;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-tripadvisor .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-tripadvisor .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #6fb356;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-steam .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-steam .pk-social-links-icon {
	background-color: #00ADEE;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-steam .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-steam .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #22c3ff;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-thumbtack .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-thumbtack .pk-social-links-icon {
	background-color: #1AA1D8;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-thumbtack .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-thumbtack .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #3db6e8;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-goodreads .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-goodreads .pk-social-links-icon {
	background-color: #BAAC9A;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-goodreads .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-goodreads .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #cfc5b8;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-mastodon .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-mastodon .pk-social-links-icon {
	background-color: #3088D4;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-mastodon .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-mastodon .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #5aa0dd;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-pixelfed .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-pixelfed .pk-social-links-icon {
	background-color: #F22349;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-pixelfed .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-pixelfed .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #f55371;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-microblog .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-microblog .pk-social-links-icon {
	background-color: #FD8308;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-microblog .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-microblog .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #fd9c3b;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-googlenews .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-googlenews .pk-social-links-icon {
	background-color: #4b8cf5;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-googlenews .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-googlenews .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #7babf8;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-flipboard .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-flipboard .pk-social-links-icon {
	background-color: #f52928;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-flipboard .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-flipboard .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #f75a59;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-strava .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-strava .pk-social-links-icon {
	background-color: #FC4C02;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-strava .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-strava .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #fd6f34;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-phone .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-phone .pk-social-links-icon {
	background-color: #121212;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-phone .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-phone .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #2c2b2b;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-mail .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-mail .pk-social-links-icon {
	background-color: #121212;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-mail .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-mail .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #2c2b2b;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-rss .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-rss .pk-social-links-icon {
	background-color: #FFA500;
}

.pk-social-links-scheme-bold-rounded .pk-social-links-rss .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-bold-rounded .pk-social-links-rss .pk-social-links-link:hover .pk-social-links-icon {
	background-color: #ffb733;
}

.pk-social-links-scheme-dark-rounded .pk-social-links-icon,
.is-style-pk-social-links-dark-rounded .pk-social-links-scheme-gutenberg-block .pk-social-links-icon {
	background-color: var(--pk-social-dark-rounded-link-background);
	display: flex;
	align-content: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	border-radius: 50%;
	color: var(--pk-social-dark-rounded-link-color);
	transition: background-color 0.2s;
}

.pk-social-links-scheme-dark-rounded .pk-social-links-link:hover .pk-social-links-icon,
.is-style-pk-social-links-dark-rounded .pk-social-links-scheme-gutenberg-block .pk-social-links-link:hover .pk-social-links-icon {
	background-color: var(--pk-social-dark-rounded-link-hover-background);
}

/* ----------------------------- Combinations ---------------------------------*/
.pk-social-links-template-default.pk-social-links-scheme-light-bg .pk-social-links-item,
.pk-social-links-template-default.pk-social-links-scheme-dark-bg .pk-social-links-item,
.pk-social-links-template-default.pk-social-links-scheme-bold-bg .pk-social-links-item,
.is-style-pk-social-links-light-bg .pk-social-links-template-default .pk-social-links-item,
.is-style-pk-social-links-dark-bg .pk-social-links-template-default .pk-social-links-item,
.is-style-pk-social-links-bold-bg .pk-social-links-template-default .pk-social-links-item {
	flex-grow: 1;
	padding: 0.125rem .25rem;
}

.pk-social-links-template-vertical.pk-social-links-scheme-light-rounded .pk-social-links-link,
.pk-social-links-template-vertical.pk-social-links-scheme-dark-rounded .pk-social-links-link,
.pk-social-links-template-vertical.pk-social-links-scheme-bold-rounded .pk-social-links-link,
.is-style-pk-social-links-light-rounded .pk-social-links-template-vertical .pk-social-links-link,
.is-style-pk-social-links-dark-rounded .pk-social-links-template-vertical .pk-social-links-link,
.is-style-pk-social-links-bold-rounded .pk-social-links-template-vertical .pk-social-links-link {
	padding: 0.125rem 0;
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-twitter-wrap {
	--pk-twitter-a-color: inherit;
	--pk-twitter-number-color: #000000;
	--pk-twitter-tweet-border-color: #eeeeee;
	--pk-twitter-a-font-family: inherit;
	--pk-twitter-username-font-size: 1.6rem;
	--pk-twitter-number-font-size: 1.6rem;
	--pk-twitter-number-font-weight: bold;
	--pk-twitter-content-font-size: 90%;
	--pk-twitter-counters-font-size: 80%;
	--pk-twitter-actions-font-size: 80%;
	--pk-twitter-label-font-size: 80%;
	--pk-twitter-count-font-size: 80%;
}

/*--------------------------------------------------------------*/
.pk-twitter-wrap a {
	font-family: var(--pk-twitter-a-font-family);
	box-shadow: none !important;
}

.pk-twitter-header {
	margin-bottom: 1.5rem;
}

.pk-twitter-container {
	display: flex;
	align-items: center;
}

.pk-twitter-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: none;
	margin-right: 1rem;
	flex: 0 0 50px;
	width: 50px;
	height: 50px;
}

.pk-twitter-avatar {
	border-radius: 50%;
	width: 50px;
	height: 50px;
}

.pk-twitter-info a {
	color: var(--pk-twitter-a-color);
}

.pk-twitter-name {
	margin-bottom: 0;
	word-break: break-all;
}

.pk-twitter-username {
	font-size: var(--pk-twitter-username-font-size);
	word-break: break-all;
}

.pk-twitter-counters {
	display: flex;
	margin-top: 1rem;
	font-size: var(--pk-twitter-counters-font-size);
}

.pk-twitter-counters .counter + .counter {
	margin-left: 0.5rem;
}

.pk-twitter-counters .number {
	color: var(--pk-twitter-number-color);
	font-weight: var(--pk-twitter-number-font-weight);
	font-size: var(--pk-twitter-number-font-size);
}

.pk-twitter-tweet:after {
	display: table;
	clear: both;
	width: 100%;
	content: '';
}

.pk-twitter-content {
	font-size: var(--pk-twitter-content-font-size);
}

.pk-twitter-label {
	display: none;
}

.pk-twitter-count {
	margin-left: 0.25rem;
	font-size: var(--pk-twitter-count-font-size);
}

.pk-twitter-label {
	margin-left: 0.25rem;
	font-size: var(--pk-twitter-label-font-size);
}

.pk-twitter-count:empty {
	display: none;
}

.pk-twitter-time {
	display: block;
	float: left;
	margin-top: .25rem;
	height: 20px;
	display: flex;
	align-items: center;
}

.pk-twitter-time:before {
	font-family: "premiumkits-icons";
	content: "\e94c";
	margin-right: .25rem;
}

.pk-twitter-actions {
	float: right;
	margin-top: .25rem;
	font-size: var(--pk-twitter-actions-font-size);
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.pk-twitter-actions ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pk-twitter-actions ul li {
	display: inline-block;
	border: none;
	padding: 0;
	margin: 0;
}

.pk-twitter-actions ul li:not(:last-child) {
	margin-right: .25rem;
}

.pk-twitter-actions ul li a {
	display: flex;
	align-items: center;
	border: none;
}

.pk-twitter-actions ul li .pk-icon {
	text-decoration: none;
}

.pk-twitter-footer {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
}

.pk-twitter-footer .pk-twitter-btn {
	display: block;
	width: 100%;
}

.pk-twitter-default .pk-twitter-tweet {
	padding-top: 1rem;
	margin-top: 1rem;
	border-top: 1px var(--pk-twitter-tweet-border-color) solid;
}
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.pk-widget-about,
.pk-block-about {
	--pk-about-small-color: #adb5bd;
}

/*--------------------------------------------------------------*/
.pk-widget-about,
.pk-block-about {
	text-align: center;
}

.pk-widget-about .pk-about-media,
.pk-block-about .pk-about-media {
	margin-bottom: 1rem;
}

.pk-widget-about .pk-about-media img,
.pk-block-about .pk-about-media img {
	max-width: 100%;
}

.pk-widget-about .pk-about-content,
.pk-widget-about .pk-about-small,
.pk-widget-about .pk-about-button,
.pk-widget-about .pk-social-links-wrap,
.pk-block-about .pk-about-content,
.pk-block-about .pk-about-small,
.pk-block-about .pk-about-button,
.pk-block-about .pk-social-links-wrap {
	margin-top: 1rem;
	margin-bottom: 0;
}

.pk-widget-about .pk-about-small,
.pk-block-about .pk-about-small {
	color: var(--pk-about-small-color);
}

.pk-widget-about .pk-about-button,
.pk-block-about .pk-about-button {
	display: inline-block;
}

.pk-widget-about .pk-social-links-items,
.pk-block-about .pk-social-links-items {
	justify-content: center;
}

.pk-widget-about .pk-social-links-item,
.pk-block-about .pk-social-links-item {
	min-width: 2rem;
}

.widget .pk-widget-about .title-widget {
	margin: 0;
}
/* eslint-disable */
/* If a new version is imported from swiper the selectors should all be namespaced with .jp-carousel-overlay
/* to prevent clashes with other plugins that are overrding swiperjs css
*/
/**
 * Swiper 6.7.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 22, 2021
 */

@font-face {
	font-family: 'swiper-icons';
	src: url( 'data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA' )
		format( 'woff' );
	font-weight: 400;
	font-style: normal;
}
:root {
	--swiper-theme-color: #007aff;
}
.jp-carousel-overlay .swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	/* Fix of Webkit flickering */
	z-index: 1;
}
.jp-carousel-overlay .swiper-container-vertical > .swiper-wrapper {
	flex-direction: column;
}
.jp-carousel-overlay .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}
.jp-carousel-overlay .swiper-container-android .swiper-slide,
.jp-carousel-overlay .swiper-wrapper {
	transform: translate3d( 0px, 0, 0 );
}
.jp-carousel-overlay .swiper-container-multirow > .swiper-wrapper {
	flex-wrap: wrap;
}
.jp-carousel-overlay .swiper-container-multirow-column > .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: column;
}
.jp-carousel-overlay .swiper-container-free-mode > .swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto;
}
.jp-carousel-overlay .swiper-container-pointer-events {
	touch-action: pan-y;
}
.jp-carousel-overlay .swiper-container-pointer-events.swiper-container-vertical {
	touch-action: pan-x;
}
.jp-carousel-overlay .swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}
.jp-carousel-overlay .swiper-slide-invisible-blank {
	visibility: hidden;
}
/* Auto Height */
.jp-carousel-overlay .swiper-container-autoheight,
.jp-carousel-overlay .swiper-container-autoheight .swiper-slide {
	height: auto;
}
.jp-carousel-overlay .swiper-container-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}
/* 3D Effects */
.jp-carousel-overlay .swiper-container-3d {
	perspective: 1200px;
}
.jp-carousel-overlay .swiper-container-3d .swiper-wrapper,
.jp-carousel-overlay .swiper-container-3d .swiper-slide,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom,
.jp-carousel-overlay .swiper-container-3d .swiper-cube-shadow {
	transform-style: preserve-3d;
}
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left {
	background-image: linear-gradient( to left, rgba( 0, 0, 0, 0.5 ), rgba( 0, 0, 0, 0 ) );
}
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right {
	background-image: linear-gradient( to right, rgba( 0, 0, 0, 0.5 ), rgba( 0, 0, 0, 0 ) );
}
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top {
	background-image: linear-gradient( to top, rgba( 0, 0, 0, 0.5 ), rgba( 0, 0, 0, 0 ) );
}
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient( to bottom, rgba( 0, 0, 0, 0.5 ), rgba( 0, 0, 0, 0 ) );
}
/* CSS Mode */
.jp-carousel-overlay .swiper-container-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	/* For Firefox */
	-ms-overflow-style: none;
	/* For Internet Explorer and Edge */
}
.jp-carousel-overlay .swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}
.jp-carousel-overlay .swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}
.jp-carousel-overlay .swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
	scroll-snap-type: x mandatory;
}
.jp-carousel-overlay .swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
	scroll-snap-type: y mandatory;
}
:root {
	--swiper-navigation-size: 44px;
	/*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-button-next {
	position: absolute;
	top: 50%;
	width: calc( var( --swiper-navigation-size ) / 44 * 27 );
	height: var( --swiper-navigation-size );
	margin-top: calc( 0px - ( var( --swiper-navigation-size ) / 2 ) );
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var( --swiper-navigation-color, var( --swiper-theme-color ) );
}
.jp-carousel-overlay .swiper-button-prev.swiper-button-disabled,
.jp-carousel-overlay .swiper-button-next.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}
.jp-carousel-overlay .swiper-button-prev:after,
.jp-carousel-overlay .swiper-button-next:after {
	font-family: swiper-icons;
	font-size: var( --swiper-navigation-size );
	text-transform: none !important;
	letter-spacing: 0;
	text-transform: none;
	font-variant: initial;
	line-height: 1;
}
.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next {
	left: 10px;
	right: auto;
}
.jp-carousel-overlay .swiper-button-prev:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next:after {
	content: 'prev';
}
.jp-carousel-overlay .swiper-button-next,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev {
	right: 10px;
	left: auto;
}
.jp-carousel-overlay .swiper-button-next:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev:after {
	content: 'next';
}
.jp-carousel-overlay .swiper-button-prev.swiper-button-white,
.jp-carousel-overlay .swiper-button-next.swiper-button-white {
	--swiper-navigation-color: #ffffff;
}
.jp-carousel-overlay .swiper-button-prev.swiper-button-black,
.jp-carousel-overlay .swiper-button-next.swiper-button-black {
	--swiper-navigation-color: #000000;
}
.jp-carousel-overlay .swiper-button-lock {
	display: none;
}
:root {
	/*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}
.jp-carousel-overlay .swiper-pagination {
	position: absolute;
	text-align: center;
	transition: 300ms opacity;
	transform: translate3d( 0, 0, 0 );
	z-index: 10;
}
.jp-carousel-overlay .swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}
/* Common Styles */
.jp-carousel-overlay .swiper-pagination-fraction,
.jp-carousel-overlay .swiper-pagination-custom,
.jp-carousel-overlay .swiper-container-horizontal > .swiper-pagination-bullets {
	bottom: 10px;
	left: 0;
	width: 100%;
}
/* Bullets */
.jp-carousel-overlay .swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}
.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale( 0.33 );
	position: relative;
}
.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	transform: scale( 1 );
}
.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale( 1 );
}
.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale( 0.66 );
}
.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale( 0.33 );
}
.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale( 0.66 );
}
.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale( 0.33 );
}
.jp-carousel-overlay .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 50%;
	background: #000;
	opacity: 0.2;
}
.jp-carousel-overlay button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.jp-carousel-overlay .swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}
.jp-carousel-overlay .swiper-pagination-bullet-active {
	opacity: 1;
	background: var( --swiper-pagination-color, var( --swiper-theme-color ) );
}
.jp-carousel-overlay .swiper-container-vertical > .swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	transform: translate3d( 0px, -50%, 0 );
}
.jp-carousel-overlay
	.swiper-container-vertical
	> .swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 6px 0;
	display: block;
}
.jp-carousel-overlay
	.swiper-container-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY( -50% );
	width: 8px;
}
.jp-carousel-overlay
	.swiper-container-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	display: inline-block;
	transition: 200ms transform, 200ms top;
}
.jp-carousel-overlay
	.swiper-container-horizontal
	> .swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 0 4px;
}
.jp-carousel-overlay
	.swiper-container-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX( -50% );
	white-space: nowrap;
}
.jp-carousel-overlay
	.swiper-container-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: 200ms transform, 200ms left;
}
.jp-carousel-overlay
	.swiper-container-horizontal.swiper-container-rtl
	> .swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: 200ms transform, 200ms right;
}
/* Progress */
.jp-carousel-overlay .swiper-pagination-progressbar {
	background: rgba( 0, 0, 0, 0.25 );
	position: absolute;
}
.jp-carousel-overlay .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var( --swiper-pagination-color, var( --swiper-theme-color ) );
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale( 0 );
	transform-origin: left top;
}
.jp-carousel-overlay
	.swiper-container-rtl
	.swiper-pagination-progressbar
	.swiper-pagination-progressbar-fill {
	transform-origin: right top;
}
.jp-carousel-overlay .swiper-container-horizontal > .swiper-pagination-progressbar,
.jp-carousel-overlay
	.swiper-container-vertical
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}
.jp-carousel-overlay .swiper-container-vertical > .swiper-pagination-progressbar,
.jp-carousel-overlay
	.swiper-container-horizontal
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}
.jp-carousel-overlay .swiper-pagination-white {
	--swiper-pagination-color: #ffffff;
}
.jp-carousel-overlay .swiper-pagination-black {
	--swiper-pagination-color: #000000;
}
.jp-carousel-overlay .swiper-pagination-lock {
	display: none;
}
.jp-carousel-overlay .swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.jp-carousel-overlay .swiper-zoom-container > img,
.jp-carousel-overlay .swiper-zoom-container > svg,
.jp-carousel-overlay .swiper-zoom-container > canvas {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.jp-carousel-overlay .swiper-slide-zoomed {
	cursor: move;
}
/* a11y */
.jp-carousel-overlay .swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}
:root {
	--jp-carousel-primary-color: #fff;
	--jp-carousel-primary-subtle-color: #999;
	--jp-carousel-bg-color: #000;
	--jp-carousel-bg-faded-color: #222;
	--jp-carousel-border-color: #3a3a3a;
}

:root .jp-carousel-light {
	--jp-carousel-primary-color: #000;
	--jp-carousel-primary-subtle-color: #646970;
	--jp-carousel-bg-color: #fff;
	--jp-carousel-bg-faded-color: #fbfbfb;
	--jp-carousel-border-color: #dcdcde;
}

.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next,
.jp-carousel-overlay .swiper-button-next,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev {
	background-image: none;
}
/* end of temporary fix */

[data-carousel-extra]:not( .jp-carousel-wrap ) img, [data-carousel-extra]:not( .jp-carousel-wrap ) img + figcaption {
	cursor: pointer;
}

.jp-carousel-wrap * {
	line-height: inherit;
}

.jp-carousel-wrap.swiper-container {
	height: auto;
	width: 100vw;
}

.jp-carousel-overlay .swiper-zoom-container {
	background-size: 200%;
	background-repeat: no-repeat;
	background-position: center;
}

/*
To prevent flash of prev/next image scale transition after pinch zoom we need to hide them.
Swiper does not add a class of `swiper-slide-zoomed` to slides on pinch and zoom
so we have to target all affected elements in touch devices.
*/
.jp-carousel-overlay .swiper-slide.swiper-slide-prev .swiper-zoom-container img,
.jp-carousel-overlay .swiper-slide.swiper-slide-next .swiper-zoom-container img {
	transition: none !important;
}

.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-button-next {
	opacity: 0.5;
	transition: 0.5s opacity ease-out;
	height: initial;
	width: initial;
	padding: 20px 40px;
	background-image: none;
}

.jp-carousel-overlay .swiper-button-prev:hover,
.jp-carousel-overlay .swiper-button-next:hover {
	opacity: 1;
}

.jp-carousel-overlay .swiper-button-next:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next:after,
.jp-carousel-overlay .swiper-button-prev:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev:after {
	content: none;
}

.jp-carousel-overlay .swiper-button-prev svg,
.jp-carousel-overlay .swiper-button-next svg {
	height: 30px;
	width: 28px;
	background: var(--jp-carousel-bg-color);
	border-radius: 4px;
}

.jp-carousel-overlay .swiper-button-prev svg:hover,
.jp-carousel-overlay .swiper-button-next svg:hover {
	background: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-overlay {
	font-family: 'Helvetica Neue', sans-serif !important;
	z-index: 2147483647;
	overflow-x: hidden;
	overflow-y: auto;
	direction: ltr;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--jp-carousel-bg-color);
}

.jp-carousel-overlay * {
	box-sizing: border-box;
}

/* Fix for Twenty Nineteen theme compatibility */
.jp-carousel-overlay h1:before,
.jp-carousel-overlay h2:before,
.jp-carousel-overlay h3:before {
	content: none;
	display: none;
}

.jp-carousel-overlay .swiper-container .swiper-button-prev {
	left: 0;
	right: auto;
}

.jp-carousel-overlay .swiper-container .swiper-button-next {
	right: 0;
	left: auto;
}

.jp-carousel-overlay .swiper-container.swiper-container-rtl .swiper-button-prev,
.jp-carousel-overlay .swiper-container.swiper-container-rtl .swiper-button-next {
	transform: scaleX( -1 );
}

.jp-carousel-container {
	display: grid;
	grid-template-rows: 1fr 64px; /* 1. main carousel, 2. info area as footer */
	height: 100%;
}

.jp-carousel-hide-controls .jp-carousel-container {
	grid-template-rows: 1fr;
}

.jp-carousel-hide-controls .swiper-wrapper {
	margin-top: -32px; /* Compensate for the remove of the height of the info bar. */
}


.jp-carousel-hide-controls .jp-swiper-button-next,
.jp-carousel-hide-controls .jp-swiper-button-prev {
	margin-top: -54px; /* The height of the info bar plus any top padding on the nav button itself. */
}

.jp-carousel-msg {
	font-family: 'Open Sans', sans-serif;
	font-style: normal;
	display: inline-block;
	line-height: 19px;
	padding: 11px 15px;
	font-size: 14px;
	text-align: center;
	margin: 25px 20px 0 2px;
	background-color: var(--jp-carousel-primary-color);
	border-left: 4px solid #ffba00;
	-webkit-box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
	box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
}

.jp-carousel-info {
	display: flex;
	flex-direction: column;
	text-align: left !important;
	-webkit-font-smoothing: subpixel-antialiased !important;
	z-index: 100;
	background-color: var(--jp-carousel-bg-color);
	transition: opacity 200ms ease-out;
	opacity: 1;
}

.jp-carousel-hide-controls .jp-carousel-info {
	visibility: hidden;
	height: 0;
	overflow: hidden;
}

.jp-carousel-info-footer {
	position: relative;
	background-color: var(--jp-carousel-bg-color);
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100vw;
}

.jp-carousel-info-extra {
	display: none;
	background-color: var(--jp-carousel-bg-color);
	padding: 35px;
	width: 100vw;
	border-top: 1px solid var(--jp-carousel-bg-faded-color);
}

.jp-carousel-title-and-caption {
	margin-bottom: 15px;
}

.jp-carousel-info-extra.jp-carousel-show {
	display: block;
}

.jp-carousel-info ::selection {
	background: var(--jp-carousel-primary-color); /* Safari */
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-info ::-moz-selection {
	background: var(--jp-carousel-primary-color); /* Firefox */
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-photo-info {
	left: 0 !important;
	width: 100% !important;
}

.jp-carousel-comments-wrapper {
	padding: 0;
	width: 100% !important;
	display: none;
}

.jp-carousel-comments-wrapper.jp-carousel-show {
	display: block;
}

.jp-carousel-comments-wrapper > .jp-carousel-photo-info {
	display: none;
}

.jp-carousel-transitions .jp-carousel-photo-info {
	-webkit-transition: 400ms ease-out;
	-moz-transition: 400ms ease-out;
	-o-transition: 400ms ease-out;
	transition: 400ms ease-out;
}

.jp-carousel-buttons {
	margin: -18px -20px 15px;
	padding: 8px 10px;
	border-bottom: 1px solid #222;
	background: #222;
	text-align: center;
}

div.jp-carousel-buttons a {
	border: none !important;
	color: var(--jp-carousel-primary-subtle-color);
	font: normal 11px/1.2em 'Helvetica Neue', sans-serif !important;
	letter-spacing: 0 !important;
	padding: 5px 2px 5px 0;
	text-decoration: none !important;
	text-shadow: none !important;
	vertical-align: middle;
	-webkit-font-smoothing: subpixel-antialiased;
}

div.jp-carousel-buttons a:hover {
	color: var(--jp-carousel-primary-color);
	border: none !important;
}

.jp-carousel-transitions div.jp-carousel-buttons a:hover {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

.jp-carousel-slide,
.jp-carousel-slide img {
	-webkit-transform: translate3d( 0, 0, 0 );
	-moz-transform: translate3d( 0, 0, 0 );
	-o-transform: translate3d( 0, 0, 0 );
	-ms-transform: translate3d( 0, 0, 0 );
	transform: translate3d( 0, 0, 0 );
}

.jp-carousel-close-hint {
	cursor: default;
	letter-spacing: 0 !important;
	position: fixed;
	top: 20px;
	right: 30px;
	padding: 10px;
	text-align: right;
	width: 45px;
	height: 45px;
	z-index: 15;
	color: var(--jp-carousel-primary-color);
	cursor: pointer;
	transition: opacity 200ms ease-out;
}

.jp-carousel-transitions .jp-carousel-close-hint {
	-webkit-transition: color 200ms linear;
	-moz-transition: color 200ms linear;
	-o-transition: color 200ms linear;
	transition: color 200ms linear;
}

.jp-carousel-close-hint svg {
	padding: 3px 2px;
	background: var(--jp-carousel-bg-color);
	border-radius: 4px;
}

.jp-carousel-close-hint svg:hover {
	background: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-close-hint:hover {
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-close-hint:hover span {
	border-color: var(--jp-carousel-primary-color);
}

/** Pagination Start **/
.jp-carousel-pagination-container {
	flex: 1;
	margin: 0 15px 0 35px;
}

.jp-swiper-pagination,
.jp-carousel-pagination {
	color: var(--jp-carousel-primary-color);
	font-size: 15px; /* same as .jp-carousel-info-footer .jp-carousel-photo-title  */
	font-weight: normal;
	white-space: nowrap;
	display: none;
	position: static !important;
}

.jp-carousel-pagination-container .swiper-pagination {
	text-align: left;
	line-height: 8px;
}

.jp-carousel-pagination {
	padding-left: 5px;
}

.jp-swiper-pagination .swiper-pagination-bullet {
	background: var(--jp-carousel-primary-subtle-color);
	margin: 0 4px;
}

.jp-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--jp-carousel-primary-color);
}

.jp-swiper-pagination .swiper-pagination-bullet:not( .swiper-pagination-bullet-active ) {
	background: var(--jp-carousel-primary-color);
	opacity: 0.5;
}
/** Pagination End **/

/** Title and Desc Start **/
.jp-carousel-info-footer .jp-carousel-photo-title-container {
	flex-basis: 50vw;
	flex: 4;
	justify-content: center;
	overflow: hidden;
	margin: 0;
}

.jp-carousel-photo-title,
.jp-carousel-photo-caption {
	background: none !important;
	border: none !important;
	display: inline-block;
	font: normal 20px/1.3em 'Helvetica Neue', sans-serif;
	line-height: normal;
	letter-spacing: 0 !important;
	margin: 0 0 10px 0;
	padding: 0;
	overflow: hidden;
	text-shadow: none !important;
	text-transform: none !important;
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-info-footer .jp-carousel-photo-caption {
	text-align: center;
	font-size: 15px; /* same as .jp-carousel-pagination */
	white-space: nowrap;
	color: var(--jp-carousel-primary-subtle-color);
	cursor: pointer;
	margin: 0;
	text-overflow: ellipsis;
}

.jp-carousel-info-footer .jp-carousel-photo-caption p {
	margin: 0;
}

.jp-carousel-photo-title {
	font-size: 32px;
	margin-bottom: 2px;
}

.jp-carousel-photo-description {
	color: var(--jp-carousel-primary-subtle-color);
	font-size: 16px;
	margin: 25px 0;
	width: 100%;
}

.jp-carousel-photo-description {
	overflow: hidden;
	overflow-wrap: break-word;
}

.jp-carousel-photo-description p {
	color: var(--jp-carousel-primary-subtle-color);
	line-height: 1.4;
	margin-bottom: 0;
}

.jp-carousel-photo-description p a,
.jp-carousel-comments p a,
.jp-carousel-info h2 a {
	color: var(--jp-carousel-primary-color) !important;
	border: none !important;
	text-decoration: underline !important;
	font-weight: normal !important;
	font-style: normal !important;
}

.jp-carousel-photo-description p strong,
.jp-carousel-photo-description p b {
	font-weight: bold;
	color: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-photo-description p em,
.jp-carousel-photo-description p i {
	font-style: italic;
	color: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-photo-description p a:hover,
.jp-carousel-comments p a:hover,
.jp-carousel-info h2 a:hover {
	color: var(--jp-carousel-primary-subtle-color) !important;
}

.jp-carousel-photo-description p:empty {
	display: none;
}

.jp-carousel-photo-info h1:before,
.jp-carousel-photo-info h1:after,
.jp-carousel-comments-wrapper h1:before,
.jp-carousel-comments-wrapper h1:after {
	content: none !important;
}

.jp-carousel-caption {
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}

/** Title and Desc End **/

/** Meta Box Start **/
.jp-carousel-image-meta {
	color: var(--jp-carousel-primary-color);
	font-size: 13px;
	font: 12px/1.4 'Helvetica Neue', sans-serif !important;
	width: 100%;
	display: none;
}

.jp-carousel-image-meta.jp-carousel-show {
	display: block;
}

.jp-carousel-image-meta li,
.jp-carousel-image-meta h5 {
	font-family: 'Helvetica Neue', sans-serif !important;
	position: inherit !important;
	top: auto !important;
	right: auto !important;
	left: auto !important;
	bottom: auto !important;
	background: none !important;
	border: none !important;
	font-weight: 400 !important;
	line-height: 1.3em !important;
}

.jp-carousel-image-meta ul {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.jp-carousel-image-meta li {
	width: 48% !important;
	display: inline-block !important;
	vertical-align: top !important;
	margin: 0 2% 15px 0 !important;
	color: var(--jp-carousel-primary-color) !important;
	font-size: 13px !important;
}

.jp-carousel-image-meta h5 {
	color: var(--jp-carousel-primary-subtle-color) !important;
	text-transform: uppercase !important;
	font-size: 10px !important;
	margin: 0 0 2px !important;
	letter-spacing: 0.1em !important;
}

a.jp-carousel-image-download {
	display: inline-block;
	clear: both;
	color: var(--jp-carousel-primary-subtle-color);
	line-height: 1;
	font-weight: 400;
	font-size: 14px;
	text-decoration: none;
}

a.jp-carousel-image-download svg {
	display: inline-block;
	vertical-align: middle;
	margin: 0 3px;
	padding-bottom: 2px;
}

a.jp-carousel-image-download span.photo-size {
	font-size: 11px;
	border-radius: 1em;
	margin-left: 2px;
	display: inline-block;
}

a.jp-carousel-image-download span.photo-size-times {
	padding: 0 1px 0 2px;
}

/** Meta Box End **/

/** Comments Start **/
.jp-carousel-comments {
	font: 15px/1.7 'Helvetica Neue', sans-serif !important;
	font-weight: 400;
	background: none transparent;
	width: 100%;
	bottom: 10px;
	margin-top: 20px;
}

.jp-carousel-comments p a:hover,
.jp-carousel-comments p a:focus,
.jp-carousel-comments p a:active {
	color: var(--jp-carousel-primary-color) !important;
}

.jp-carousel-comment {
	background: none transparent;
	color: var(--jp-carousel-primary-subtle-color);
	overflow: auto;
	width: 100%;
	display: flex;
}

.jp-carousel-comment + .jp-carousel-comment {
	margin-top: 20px;
}

.jp-carousel-comment:last-of-type {
	margin-bottom: 20px;
}

.jp-carousel-comment p {
	color: var(--jp-carousel-primary-subtle-color) !important;
}

.jp-carousel-comment .comment-author {
	font-size: 15px;
	font-weight: 500;
	padding: 0;
	width: auto;
	display: inline;
	float: none;
	border: none;
	margin: 0;
}

.jp-carousel-comment .comment-author a {
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-comment .comment-gravatar {
	float: none;
	margin-right: 10px;
}

.jp-carousel-comment .comment-content {
	border: none;
	padding: 0;
}

.jp-carousel-comment .avatar {
	margin: 0;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	border: none !important;
	padding: 0 !important;
	background-color: transparent !important;
	min-width: 64px;
	min-height: 64px;
	width: 64px;
	height: 64px;
}

.jp-carousel-comment .comment-date {
	color: var(--jp-carousel-primary-subtle-color);
	font-size: 11px;
	border-bottom: 1px solid var(--jp-carousel-bg-faded-color);
	margin-bottom: 6px;
}

#jp-carousel-comment-form {
	margin: 0 0 10px !important;
	width: 100%;
}

#jp-carousel-comment-form.jp-carousel-is-disabled {
	opacity: 0.5;
	pointer-events: none;
}

textarea#jp-carousel-comment-form-comment-field {
	background: var(--jp-carousel-bg-faded-color);
	border: 1px solid var(--jp-carousel-border-color);
	color: var(--jp-carousel-primary-subtle-color);
	font: 16px/1.4 'Helvetica Neue', sans-serif !important;
	width: 100%;
	padding: 10px 10px 5px;
	margin: 0;
	float: none;
	height: 147px;
	-webkit-box-shadow: inset 2px 2px 2px rgba( 0, 0, 0, 0.1 );
	box-shadow: inset 2px 2px 2px rgba( 0, 0, 0, 0.1 );
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

textarea#jp-carousel-comment-form-comment-field::-webkit-input-placeholder {
	color: #555;
}

textarea#jp-carousel-comment-form-comment-field:focus {
	background: var(--jp-carousel-bg-faded-color);
	color: var(--jp-carousel-primary-subtle-color);
}

textarea#jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder {
	color: var(--jp-carousel-primary-subtle-color);
}

#jp-carousel-loading-overlay {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#jp-carousel-loading-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
}

#jp-carousel-library-loading,
#jp-carousel-library-loading:after {
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

#jp-carousel-library-loading {
	float: left;
	margin: 22px 0 0 10px;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 8px solid rgba( 255, 255, 255, 0.2 );
	border-right: 8px solid rgba( 255, 255, 255, 0.2 );
	border-bottom: 8px solid rgba( 255, 255, 255, 0.2 );
	border-left: 8px solid var(--jp-carousel-primary-color);
	-webkit-transform: translateZ( 0 );
	-ms-transform: translateZ( 0 );
	transform: translateZ( 0 );
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}

#jp-carousel-comment-form-spinner,
#jp-carousel-comment-form-spinner:after {
	border-radius: 50%;
	width: 20px;
	height: 20px;
}
#jp-carousel-comment-form-spinner {
	display: none;
	float: left;
	margin: 22px 0 0 10px;
	font-size: 10px;
	position: absolute; /* relative to .jp-carousel-comment-form-container */
	text-indent: -9999em;
	border-top: 4px solid rgba( 255, 255, 255, 0.2 );
	border-right: 4px solid rgba( 255, 255, 255, 0.2 );
	border-bottom: 4px solid rgba( 255, 255, 255, 0.2 );
	border-left: 4px solid var(--jp-carousel-primary-color);
	-webkit-transform: translateZ( 0 );
	-ms-transform: translateZ( 0 );
	transform: translateZ( 0 );
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
	margin: 0 auto;
	top: calc( 50% - 15px );
	left: 0;
	bottom: 0;
	right: 0;
}

@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}
@keyframes load8 {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}

.jp-carousel-info-content-wrapper {
	max-width: 800px;
	margin: auto;
}

#jp-carousel-comment-form-submit-and-info-wrapper {
	display: none;
	overflow: hidden;
	width: 100%;
}

#jp-carousel-comment-form-commenting-as input {
	background: var(--jp-carousel-bg-color);
	border: 1px solid var(--jp-carousel-border-color);
	color: var(--jp-carousel-primary-subtle-color);
	font: 16px/1.4 'Helvetica Neue', sans-serif !important;
	padding: 10px;
	float: left;
	-webkit-box-shadow: inset 2px 2px 2px rgba( 0, 0, 0, 0.2 );
	box-shadow: inset 2px 2px 2px rgba( 0, 0, 0, 0.2 );
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	width: 285px;
}

#jp-carousel-comment-form-commenting-as input:focus {
	background: var(--jp-carousel-bg-faded-color);
	color: var(--jp-carousel-primary-subtle-color);
}

#jp-carousel-comment-form-commenting-as p {
	font: 400 13px/1.7 'Helvetica Neue', sans-serif !important;
	margin: 22px 0 0;
	float: left;
}

#jp-carousel-comment-form-commenting-as fieldset {
	float: left;
	border: none;
	margin: 20px 0 0 0;
	padding: 0;
	clear: both;
}

#jp-carousel-comment-form-commenting-as label {
	font: 400 13px/1.7 'Helvetica Neue', sans-serif !important;
	margin: 0 20px 3px 0;
	float: left;
	width: 100px;
}

#jp-carousel-comment-form-button-submit {
	margin-top: 20px;
	margin-left: auto;
	display: block;
	border: solid 1px var(--jp-carousel-primary-color);
	background: var(--jp-carousel-bg-color);
	border-radius: 3px;
	padding: 8px 16px;
	font-size: 14px;
	color: var(--jp-carousel-primary-color);
}

#jp-carousel-comment-form-button-submit:active,
#jp-carousel-comment-form-button-submit:focus {
	background: var(--jp-carousel-primary-color);
	color: var(--jp-carousel-bg-color);
}

#jp-carousel-comment-form-container {
	margin-bottom: 15px;
	width: 100%;
	margin-top: 20px;
	color: var(--jp-carousel-primary-subtle-color);
	position: relative;
	overflow: hidden;
}

#jp-carousel-comment-post-results {
	display: none;
	overflow: auto;
	width: 100%;
}

#jp-carousel-comment-post-results span {
	display: block;
	text-align: center;
	margin-top: 20px;
	width: 100%;
	overflow: auto;
	padding: 1em 0;
	box-sizing: border-box;
	border-radius: 2px;
	font: 13px/1.4 'Helvetica Neue', sans-serif !important;
	border: 1px solid var(--jp-carousel-border-color);
	-webkit-box-shadow: inset 0px 0px 5px 0px rgba( 0, 0, 0, 0.2 );
	box-shadow: inset 0px 0px 5px 0px rgba( 0, 0, 0, 0.2 );
}

.jp-carousel-comment-post-error {
	color: #df4926;
}

#jp-carousel-comments-closed {
	display: none;
	color: var(--jp-carousel-primary-subtle-color);
}

#jp-carousel-comments-loading {
	font: 400 15px/1.7 'Helvetica Neue', sans-serif !important;
	display: none;
	color: var(--jp-carousel-primary-subtle-color);
	text-align: left;
	margin-bottom: 20px;
	width: 100%;
	bottom: 10px;
	margin-top: 20px;
}

/** Icons Start **/
.jp-carousel-photo-icons-container {
	flex: 1;
	display: block;
	text-align: right;
	margin: 0 20px 0 30px;
	white-space: nowrap;
}

.jp-carousel-icon-btn {
	padding: 16px;
	text-decoration: none;
	border: none;
	background: none;
	display: inline-block;
	height: 64px;
}

.jp-carousel-icon {
	border: none;
	display: inline-block;
	line-height: 0;
	font-weight: 400;
	font-style: normal;
	border-radius: 4px;
	width: 31px; /* Prevent comments indicator from changing icon width */
	padding: 4px 3px 3px;
}

.jp-carousel-icon:hover {
	background: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-icon svg {
	display: inline-block;
}

.jp-carousel-overlay rect {
	fill: var(--jp-carousel-primary-color);
}

.jp-carousel-selected .jp-carousel-icon {
	background: var(--jp-carousel-primary-color);
}
.jp-carousel-selected rect {
	fill: var(--jp-carousel-bg-color);
}

.jp-carousel-icon-comments.jp-carousel-show {
	display: inline-block;
}

.jp-carousel-icon .jp-carousel-has-comments-indicator {
	display: none;
	font-size: 12px;
	vertical-align: top;
	margin-left: -16px;
	line-height: 1;
	padding: 2px 4px;
	border-radius: 4px;
	background: var(--jp-carousel-primary-color);
	color: var(--jp-carousel-bg-color);
	font-weight: normal;
	font-family: 'Helvetica Neue', sans-serif !important;
	position: relative;
}

.jp-carousel-selected .jp-carousel-icon .jp-carousel-has-comments-indicator {
	background: var(--jp-carousel-bg-color);
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-has-comments-indicator.jp-carousel-show {
	display: inline-block;
}

/** Icons End **/

/* Small screens */
@media only screen and ( max-width: 760px ) {
	.jp-carousel-overlay .swiper-container .swiper-button-next,
	.jp-carousel-overlay .swiper-container .swiper-button-prev {
		display: none !important;
	}

	.jp-carousel-buttons {
		display: none !important;
	}

	.jp-carousel-image-meta {
		float: none !important;
		width: 100% !important;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin-left: 0;
	}

	.jp-carousel-close-hint {
		font-size: 26px !important;
		position: fixed !important;
		top: 10px;
		right: 10px;
	}

	/* The admin bar is fixed at top: 0*/
	.admin-bar .jp-carousel-close-hint {
		top: 40px;
	}

	.jp-carousel-slide img {
		opacity: 1;
	}

	.jp-carousel-wrap {
		background-color: var(--jp-carousel-bg-color);
	}

	.jp-carousel-fadeaway {
		display: none;
	}

	.jp-carousel-info > .jp-carousel-photo-info {
		display: none;
	}

	.jp-carousel-comments-wrapper > .jp-carousel-photo-info {
		display: block;
	}

	.jp-carousel-caption {
		overflow: visible !important;
	}

	.jp-carousel-info-footer .jp-carousel-photo-title-container {
		display: none;
	}

	.jp-carousel-photo-icons-container {
		margin: 0 10px 0 0;
		white-space: nowrap;
	}

	.jp-carousel-icon-btn {
		padding-left: 20px;
	}

	.jp-carousel-pagination {
		padding-left: 5px;
	}

	.jp-carousel-pagination-container {
		margin-left: 25px;
	}

	.jp-carousel-comment .avatar {
		min-width: 48px;
	}

	#jp-carousel-comment-form-commenting-as fieldset,
	#jp-carousel-comment-form-commenting-as input {
		width: 100%;
		float: none;
	}
}
/* =Tiled Gallery Default Styles
-------------------------------------------------------------- */

.tiled-gallery {
	clear: both;
	margin: 0 0 20px;
	overflow: hidden;
}
.tiled-gallery img {
	margin: 2px !important; /* Ensure that this value isn't overridden by themes that give content images blanket margins */
}
.tiled-gallery .gallery-group {
	float: left;
	position: relative;
}
.tiled-gallery .tiled-gallery-item {
	float: left;
	margin: 0;
	position: relative;
	width: inherit; /* prevents ie8 bug with inline width styles */
}
.tiled-gallery .gallery-row {
	 overflow: hidden;
}
.tiled-gallery .tiled-gallery-item a { /* Needs to reset some properties for theme compatibility */
	background: transparent;
	border: none;
	color: inherit;
	margin: 0;
	padding: 0;
	text-decoration: none;
	width: auto;
}
.tiled-gallery .tiled-gallery-item img,
.tiled-gallery .tiled-gallery-item img:hover { /* Needs to reset some properties for theme compatibility */
	background: none;
	border: none;
	box-shadow: none;
	max-width: 100%;
	padding: 0;
	vertical-align: middle;
}
.tiled-gallery-caption { /* Captions */
	background: #f0f0f1;
	background: rgba( 255,255,255,0.8 );
	color: #333;
	font-size: 13px;
	font-weight: 400;
	overflow: hidden;
	padding: 10px 0;
	position: absolute;
		bottom: 0;
	text-indent: 10px;
	text-overflow: ellipsis;
	width: 100%;
	white-space: nowrap;
}
.tiled-gallery .tiled-gallery-item-small .tiled-gallery-caption { /* Smaller captions */
	font-size: 11px;
}

/* Hide galleries in widgets until they've been resized to fit.
   Gallery widgets are almost guaranteed to need resizing, and
   the jump is a little more obvious than galleries in content. */
.widget-gallery .tiled-gallery-unresized {
	visibility: hidden;
	height: 0px;
	overflow: hidden;
}

/* =Greyscale
-------------------------------------------------------------- */

.tiled-gallery .tiled-gallery-item img.grayscale {
	-webkit-filter: grayscale(1);
	-ms-filter: grayscale(1);
	-o-filter: grayscale(1);
	filter: grayscale(1);
}
.tiled-gallery .tiled-gallery-item:hover img.grayscale {
	-webkit-filter: none;
	-ms-filter: none;
	-o-filter: none;
	filter: none;
}


/* =Circles Layout
-------------------------------------------------------------- */

.tiled-gallery.type-circle .tiled-gallery-item img {
	border-radius: 50% !important; /* Ensure that circles are displayed in themes that add border-radius to all images as a default */
	object-fit: cover;
}
.tiled-gallery.type-circle .tiled-gallery-caption {
	display: none;
}


/* =Square Layout
-------------------------------------------------------------- */
.tiled-gallery.type-square .tiled-gallery-item img {
	object-fit: cover;
}
@charset "UTF-8";
/*
Theme Name: NewsXpress Pro
Theme URI: https://themeinwp.com/theme/newsxpress
Author: themeinwp
Author URI: https://www.themeinwp.com/
Description: NewsXpress is a feature-rich and user-friendly free WordPress theme designed for news and magazine websites. With its modern and clean design, NewsXpress offers a visually appealing layout that is easy to navigate, making it ideal for delivering content to your readers. This theme comes equipped with a range of customizable options, including multiple homepage layouts, custom widgets, and color schemes, allowing you to tailor your website to your specific needs and branding. It also supports various post formats, making it easy to present a variety of content types, from articles and videos to images and galleries. NewsXpress is optimized for speed and SEO, ensuring that your website loads quickly and ranks well in search engine results. Its responsive design ensures that your content looks great on all devices, whether it's a desktop computer, tablet, or smartphone.
Requires at least: 5.3
Tested up to: 6.4
Requires PHP: 5.6
Version: 1.0.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: newsxpress-pro
Tags: news, blog, photography, grid-layout, one-column, two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-header, custom-logo, custom-menu, featured-images, featured-image-header, flexible-header, post-formats, rtl-language-support, translation-ready, theme-options, threaded-comments, footer-widgets
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Base
	- Progress Bar
	- Preloader
	- Top Bar
	- Site Branding
	- Navigation
	- Color Mode
	- Posts and pages
	- Site Content
	- Banner
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
	- Footer
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments
	- Plugin Support
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
:root {
    --theme-bg-color: #ffffff;
    --theme-text-color: #969FA4;
    --theme-component-color: #0c0c0c;
    --theme-accent-color: #4db2ec;
    --theme-accent-secondary-color: #cc0000;
    --theme-accent-rgb-color: 77, 178, 236;
    --theme-accent-hover-color: #404040;
    --swiper-theme-color: var(--theme-accent-color);
    --preloader-throbber-bg: var(--theme-component-color);
    --theme-white-color: #fff;
    --theme-white-rgb-color: 255, 255, 255;
    --theme-font-size-normal: 1.4rem;
    --theme-font-size-xsmall: 1.4rem;
    --theme-font-size-small: 1.6rem;
    --theme-font-size-medium: 2rem;
    --theme-font-size-big: 2.6rem;
    --theme-font-size-large: 3.6rem;
    --theme-font-size-xlarge: 4.6rem;
    --theme-font-family-general: "Roboto", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Helvetica, sans-serif;
    --theme-font-family-heading: "Bitter", serif;
    --theme-line-height-small: 1.4;
    --theme-line-height-normal: 1.6;
    --theme-line-height-big: 1.8;
}
@media (max-width: 1400px) {
    :root {
        --theme-font-size-large: 3.2rem;
        --theme-font-size-xlarge: 3.8rem;
    }
}
/* Normalize
--------------------------------------------- */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    border: none;
    margin: 0;
    padding: 0;
}
main {
    display: block;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}
a {
    background-color: transparent;
}
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border-style: none;
    vertical-align: top;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
details {
    display: block;
}
summary {
    display: list-item;
}
template {
    display: none;
}
[hidden] {
    display: none;
}
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    word-break: break-word;
    word-wrap: break-word;
}
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
body {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden;
}
/* Typography
--------------------------------------------- */
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
body,
button,
input,
select,
optgroup,
textarea {
    color: var(--theme-text-color);
    font-family: var(--theme-font-family-general);
    font-size: var(--theme-font-size-normal);
    line-height: var(--theme-line-height-normal);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--theme-font-family-heading);
    font-weight: 700;
    clear: both;
    margin-top: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
}
p {
    margin-bottom: 1.5em;
}
dfn,
cite,
em,
i {
    font-style: italic;
}
blockquote {
    margin: 0 1.5em;
}
address {
    margin: 0 0 1.5em;
}
pre {
    background: #eee;
    font-family: "Courier 10 Pitch", courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}
code,
kbd,
tt,
var {
    font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}
mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}
big {
    font-size: 125%;
}
.site-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.site-section-header .site-section-controls {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}
.site-section-controls .theme-swiper-button {
    background: var(--theme-text-color);
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.widget-title,
.widget_block .wp-block-group__inner-container > h2,
.site-section-title {
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.widget-title,
.entry-title,
.widget_block .wp-block-group__inner-container > h2,
.site-section-title {
    line-height: 1.2;
}
.theme-widgetarea-full .widget-title {
    text-align: center;
}
.entry-title-xlarge {
    font-size: var(--theme-font-size-xlarge);
}
.entry-title-large {
    font-size: var(--theme-font-size-large);
}
.entry-title-big {
    font-size: var(--theme-font-size-big);
}
.entry-title-medium,
.single-component-title {
    font-size: var(--theme-font-size-medium);
}
.site-section-title,
.widget-title,
.widget_block .wp-block-group__inner-container > h2,
.entry-title-small {
    font-size: var(--theme-font-size-small);
}
.entry-title-xsmall {
    font-size: var(--theme-font-size-xsmall);
}
@media (max-width: 767px) {
    .entry-title-large {
        font-size: var(--theme-font-size-big);
    }
}
.entry-title:not(.entry-title-large) {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.entry-title a {
    display: inline;
    background: -webkit-gradient(
            linear,
            left top,
            right top,
            from(currentColor),
            to(currentColor)
    );
    background: linear-gradient(to right, currentColor 0%, currentColor 100%);
    background-size: 0px 3px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.entry-title a:hover,
.entry-title a:focus {
    background-size: 100% 3px;
}
/* Elements
--------------------------------------------- */
body {
    background-color: var(--theme-bg-color);
}
hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}
ul,
ol {
    margin: 0 0 1.5em 3em;
}
data-bg-overlay:before ul {
    list-style: disc;
}
ol {
    list-style: decimal;
}
li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}
.reset-list-style,
.reset-list-style ul,
.reset-list-style ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.reset-list-style li {
    margin: 0;
}
dt {
    font-weight: 700;
}
dd {
    margin: 0 1.5em 1.5em;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}
img {
    height: auto;
    max-width: 100%;
}
figure {
    margin: 1em 0;
}
table {
    margin: 0 0 1.5em;
    width: 100%;
}
@media (min-width: 768px) {
    .cursor-dot,
    .cursor-dot-outline {
        z-index: 1100;
        pointer-events: none;
        position: fixed;
        top: 50%;
        left: 50% /* rtl:ignore */;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        border-radius: 50%;
        opacity: 0;
        -webkit-transition: opacity 0.3s ease-in-out,
        -webkit-transform 0.3s ease-in-out;
        transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out,
        -webkit-transform 0.3s ease-in-out;
    }
    .cursor-dot {
        width: 8px;
        height: 8px;
        background-color: var(--theme-accent-color);
    }
    .cursor-dot-outline {
        width: 30px;
        height: 30px;
        background-color: var(--theme-accent-color);
        opacity: 0.4 !important;
    }
}
.text-center {
    text-align: center !important;
}
/*rtl:begin:ignore*/
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
/*rtl:end:ignore*/
.data-bg {
    background-color: #d8d8d8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    position: relative;
}
.data-bg-fixed {
    background-attachment: fixed;
}
.data-bg-large {
    height: 660px;
}
@media (max-width: 767px) {
    .data-bg-large {
        height: 460px;
    }
}
.data-bg-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.article-has-effect,
.article-effect-shine .entry-image {
    overflow: hidden;
}
.article-effect-shine .entry-image:after {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(
            left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 100%
    );
    background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 100%
    );
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.article-effect-shine:hover .entry-image:after,
.article-effect-shine:focus .entry-image:after {
    animation: shine 0.85s;
}
@keyframes shine {
    100% {
        left: 100%;
    }
}
.article-effect-zoom .entry-image .entry-image-link {
    display: block;
    transition: all 0.6s ease;
}
.article-effect-zoom:hover .entry-image .entry-image-link,
.article-effect-zoom:focus .entry-image .entry-image-link {
    transform: scale(1.2);
}
.article-effect-zoom .entry-image {
    overflow: hidden;
}
.article-effect-slide .entry-image-link {
    display: block;
    position: relative;
    overflow: hidden;
}
.article-effect-slide img {
    margin-left: 30px;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: .3s ease-in-out;
    transition: 0.5s ease-in-out;
}
.article-effect-slide:hover img,
.article-effect-slide:focus img {
    margin-left: 0;
}
.theme-menu {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}
.theme-social-navigation a {
    display: block;
}
.theme-social-navigation .svg-icon {
    display: block;
    height: 2rem;
    width: 2rem;
}
/* Links
--------------------------------------------- */
a {
    color: #161616;
    text-decoration: none;
}
a:hover,
a:focus,
a:active,
.read-more-link {
    color: var(--theme-accent-color);
    outline: 0;
}
.read-more-link {
    font-weight: 700;
}
.read-more-link:hover,
.read-more-link:focus {
    color: var(--theme-text-color);
}
a:focus-visible {
    outline: 0.2rem solid;
    outline-offset: 0;
}
.page-content a:not(.more-link):not(.button):not(.wp-block-button__link):not(.read-more-link):not(.remove),
.entry-content a:not(.more-link):not(.button):not(.wp-block-button__link):not(.read-more-link):not(.remove),
.entry-summary a:not(.more-link):not(.button):not(.wp-block-button__link):not(.read-more-link):not(.remove),
.widget_text a:not(.more-link):not(.button) {
    text-decoration: underline;
}
/* Forms
--------------------------------------------- */
fieldset {
    border: 0.2rem solid #dcd7ca;
    padding: 2rem;
}
legend {
    font-size: 0.85em;
    font-weight: 700;
    padding: 0 1rem;
}
label {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
}
label.inline,
input[type="checkbox"] + label {
    display: inline;
    font-weight: 400;
    margin-left: 0.5rem;
}
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    top: 2px;
    display: inline-block;
    margin: 0;
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    background: #fff;
    border-radius: 0;
    border-style: solid;
    border-width: 0.1rem;
    border-color: #dcd7ca;
    box-shadow: none;
    cursor: pointer;
}
input[type="checkbox"]:checked::before {
    /* Use the "Yes" SVG Dashicon */
    content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23000000%27%2F%3E%3C%2Fsvg%3E");
    position: absolute;
    display: inline-block;
    margin: -0.1875rem 0 0 -0.25rem;
    height: 1.75rem;
    width: 1.75rem;
}
input,
textarea,
button,
.button {
    line-height: 1;
}
input,
textarea {
    color: #000;
}
code,
input[type="url"],
input[type="email"],
input[type="tel"] {
    /*rtl:ignore*/
    direction: ltr;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border-radius: 0;
    border-style: solid;
    border-width: 0.1rem;
    box-shadow: none;
    display: block;
    font-size: 1.6rem;
    margin: 0;
    max-width: 100%;
    padding: 1.5rem 1.8rem;
    min-height: 5rem;
    width: 100%;
}
input[type="number"] {
    padding-right: 0.5rem;
}
select {
    font-size: 1em;
}
textarea {
    height: 12rem;
    line-height: 1.5;
    width: 100%;
}
input::-webkit-input-placeholder {
    line-height: normal;
}
input:-ms-input-placeholder {
    line-height: normal;
}
input::-moz-placeholder {
    line-height: revert; /* Reset to the value from the user-agent stylesheet. */
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}
button,
.theme-button,
.wp-block-search__button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid;
    border-color: var(--theme-accent-color);
    border-radius: 3px;
    background-color: var(--theme-accent-color);
    border-radius: 0;
    color: var(--theme-bg-color);
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    opacity: 1;
    padding: 1.5rem 1.8rem;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.15s linear;
    min-height: 5rem;
}
button:focus,
button:hover,
.theme-button:focus,
.theme-button:hover,
.wp-block-search__button:focus,
.wp-block-search__button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
    background: var(--theme-accent-hover-color);
    border-color: var(--theme-accent-hover-color);
    color: var(--theme-bg-color);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    border-color: currentColor;
}
input[type="search"]:focus {
    outline: 0.1rem solid;
}
.theme-button .svg-icon {
    display: block;
    height: 2.2rem;
    width: 2.2rem;
}
[data-theme="dark"] .theme-button.theme-button-transparent,
[data-theme="light"] .theme-button.theme-button-transparent,
.theme-button-transparent {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}
.theme-button.theme-button-transparent {
    color: inherit;
}
[data-theme="dark"] .theme-button.theme-button-transparent:hover,
[data-theme="light"] .theme-button.theme-button-transparent:hover,
[data-theme="dark"] .theme-button.theme-button-transparent:focus,
[data-theme="light"] .theme-button.theme-button-transparent:focus,
.theme-button.theme-button-transparent:hover,
.theme-button.theme-button-transparent:focus {
    background: none;
    border: none;
    box-shadow: none;
}
.theme-button.theme-button-transparent:hover,
.theme-button.theme-button-transparent:focus {
    color: var(--theme-accent-color);
}
.theme-button.theme-button-transparent:focus-visible {
    outline: 0.2rem solid;
    outline-offset: 0;
    text-decoration: none;
}
/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Base
--------------------------------------------- */
.column-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
}
.column-row-collapse {
    margin-right: 0;
    margin-left: 0;
}
.column-row-small {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}
.column-row-center .column {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-content: center;
    align-items: center;
}
@media (max-width: 767px) {
    .column-row {
        margin-right: 0;
        margin-left: 0;
    }
}
.column {
    position: relative;
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}
.column-grid {
    display: grid;
}
.column-row-collapse > .column {
    padding-right: 0;
    padding-left: 0;
}
.column-row-small > .column {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}
@media (max-width: 767px) {
    .column-row .column {
        padding-right: 0;
        padding-left: 0;
    }
}
.column-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.column-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.column-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.column-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.column-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.column-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.column-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.column-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.column-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.column-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.column-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}
.column-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.mt-10 {
    margin-top: 1rem;
}
.mt-15 {
    margin-top: 1.5rem;
}
.mt-20 {
    margin-top: 2rem;
}
.mt-30 {
    margin-top: 3rem;
}
.mb-10 {
    margin-bottom: 1rem;
}
.mb-15 {
    margin-bottom: 1.5rem;
}
.mb-20 {
    margin-bottom: 2rem;
}
.mb-30 {
    margin-bottom: 3rem;
}
@media (min-width: 992px) {
    .column-order-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .column-order-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .column-order-3 {
        -ms-flex-order: 3;
        order: 3;
    }
    .column-border-lr {
        border-left: 0.1rem solid;
        border-right: 0.1rem solid;
    }
    .column-border-l {
        border-left: 0.1rem solid;
    }
    .column-border-r {
        border-right: 0.1rem solid;
    }
}
@media (max-width: 1200px) {
    .order-md-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .order-md-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .order-md-3 {
        -ms-flex-order: 3;
        order: 3;
    }
}
@media (max-width: 1200px) and (min-width: 768px) {
    .order-sm-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .order-sm-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .order-sm-3 {
        -ms-flex-order: 3;
        order: 3;
    }
}
@media (max-width: 1200px) and (min-width: 992px) {
    .column-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .column-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .column-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .column-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .mt-md-10 {
        margin-top: 1rem;
    }
    .mt-md-15 {
        margin-top: 1.5rem;
    }
    .mt-md-20 {
        margin-top: 2rem;
    }
    .mt-md-30 {
        margin-top: 3rem;
    }
    .mb-md-10 {
        margin-bottom: 1rem;
    }
    .mb-md-15 {
        margin-bottom: 1.5rem;
    }
    .mb-md-20 {
        margin-bottom: 2rem;
    }
    .mb-md-30 {
        margin-bottom: 3rem;
    }
}
@media (max-width: 991px) {
    .column-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .column-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .column-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .column-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .mt-sm-10 {
        margin-top: 1rem;
    }
    .mt-sm-15 {
        margin-top: 1.5rem;
    }
    .mt-sm-20 {
        margin-top: 2rem;
    }
    .mt-sm-30 {
        margin-top: 3rem;
    }
    .mb-sm-10 {
        margin-bottom: 1rem;
    }
    .mb-sm-15 {
        margin-bottom: 1.5rem;
    }
    .mb-sm-20 {
        margin-bottom: 2rem;
    }
    .mb-sm-30 {
        margin-bottom: 3rem;
    }
}
@media (max-width: 767px) {
    .column-xs-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .column-xs-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .column-xs-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .column-xs-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .mt-10 {
        margin-top: 1rem;
    }
    .mt-xs-15 {
        margin-top: 1.5rem;
    }
    .mt-xs-20 {
        margin-top: 2rem;
    }
    .mt-xs-30 {
        margin-top: 3rem;
    }
    .mb-xs-10 {
        margin-bottom: 1rem;
    }
    .mb-xs-15 {
        margin-bottom: 1.5rem;
    }
    .mb-xs-20 {
        margin-bottom: 2rem;
    }
    .mb-xs-30 {
        margin-bottom: 3rem;
    }
}
@media (max-width: 767px) {
    .hide-on-mobile {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .hide-on-tablet {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}
@media (min-width: 1025px) {
    .hide-on-desktop {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}
.wrapper {
    max-width: calc(100vw - 3rem);
    margin-left: auto;
    margin-right: auto;
}
.single.no-sidebar .entry-content {
    margin-left: auto;
    margin-right: auto;
}
.wp-block-group .wp-block-group__inner-container > *.alignfull,
.wrapper-fluid {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.alignfull [class*="inner-container"] > .alignwide,
.alignwide [class*="inner-container"] > .alignwide {
    margin-left: auto;
    margin-right: auto;
    width: calc(100vw - 3rem);
    max-width: 100%;
}
@media only screen and (min-width: 482px) {
    .wrapper {
        max-width: calc(100vw - 10rem);
    }
    .wrapper-fluid {
        max-width: 100%;
        width: auto;
    }
    .single.no-sidebar .entry-content {
        max-width: min(calc(100vw - 10rem), 68rem);
    }
    .alignfull [class*="inner-container"] > .alignwide,
    .alignwide [class*="inner-container"] > .alignwide {
        width: calc(100vw - 10rem);
    }
}
@media only screen and (min-width: 992px) {
    .wrapper {
        max-width: min(calc(100vw - 10rem), 154rem);
    }
    .single.no-sidebar .entry-content {
        max-width: min(calc(100vw - 20rem), 68rem);
    }
    .no-sidebar .alignfull {
        margin: 3rem calc(50% - 50vw);
        max-width: 100vw;
        width: 100vw;
    }
    .no-sidebar .alignwide {
        margin-left: calc(50% - 62rem);
        margin-right: calc(50% - 62rem);
        max-width: min(100vw, 154rem);
    }
    .alignfull [class*="inner-container"] > .alignwide,
    .alignwide [class*="inner-container"] > .alignwide {
        width: min(calc(100vw - 10rem), 154rem);
    }
}
@media only screen and (min-width: 482px) {
    .no-sidebar .entry-content > .alignleft {
        /*rtl:ignore*/
        margin-left: calc(0.5 * (100vw - min(calc(100vw - 20rem), 68rem)));
        /*rtl:ignore*/
        margin-right: 2.5rem;
    }
}
@media only screen and (min-width: 482px) {
    .no-sidebar .entry-content > .alignright {
        /*rtl:ignore*/
        margin-left: 2.5rem;
        /*rtl:ignore*/
        margin-right: calc(0.5 * (100vw - min(calc(100vw - 20rem), 68rem)));
    }
}
.site-header,
#site-content,
.site-footer {
    margin-left: auto;
    margin-right: auto;
}
.newsxpress-meta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.newsxpress-meta {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    flex-wrap: wrap;
    line-height: 1;
}
.entry-image {
    position: relative;
}
.entry-image .post-read-time,
.entry-image .newsxpress-entry-categories {
    position: absolute;
}
.entry-image .newsxpress-entry-categories {
    background-image: -moz-linear-gradient(
            to bottom,
            transparent 0,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
    );
    background-image: -ms-linear-gradient(
            to bottom,
            transparent 0,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
    );
    background-image: -o-linear-gradient(
            to bottom,
            transparent 0,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
    );
    background-image: -webkit-linear-gradient(
            to bottom,
            transparent 0,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
    );
    background-image: -webkit-gradient(
            linear,
            center top,
            center bottom,
            from(transparent),
            to(rgba(0, 0, 0, 0.9))
    );
    background-image: linear-gradient(
            to bottom,
            transparent 0,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
    );
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 2rem;
    margin: 0;
}
.entry-image .post-read-time {
    top: 1.5rem;
    right: 1.5rem;
}
.post-read-time {
    background-color: var(--theme-accent-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    max-width: 14rem;
    justify-content: center;
}
.newsxpress-entry-categories {
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.newsxpress-entry-categories a {
    position: relative;
    text-decoration: none;
    color: var(--theme-accent-color);
    -webkit-transition: all 0.234s ease-in-out;
    -o-transition: all 0.234s ease-in-out;
    transition: all 0.234s ease-in-out;
    font-weight: 700;
}
.theme-tiles-post .newsxpress-entry-categories a,
.entry-image .newsxpress-entry-categories a,
.newsxpress_carousel_widget .widget-carousel-slide.style_2 .newsxpress-entry-categories a {
    background-color: var(--theme-accent-secondary-color);
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
}
.theme-tiles-post .newsxpress-entry-categories a:not(:hover):not(:focus),
.entry-image .newsxpress-entry-categories a:not(:hover):not(:focus),
.newsxpress_carousel_widget .widget-carousel-slide.style_2 .newsxpress-entry-categories a:not(:hover):not(:focus) {
    color: var(--theme-white-color);
}
.theme-tiles-post .newsxpress-entry-categories a:hover,
.theme-tiles-post .newsxpress-entry-categories a:focus,
.entry-image .newsxpress-entry-categories a:hover,
.entry-image .newsxpress-entry-categories a:focus,
.newsxpress_carousel_widget .widget-carousel-slide.style_2 .newsxpress-entry-categories a:hover,
.newsxpress_carousel_widget .widget-carousel-slide.style_2 .newsxpress-entry-categories a:focus {
    background-color: var(--theme-accent-color);
    color: var(--theme-white-color);
}
/* Progress Bar
*----------------------------------- */
#newsxpress-progress-bar {
    background-color: var(--theme-accent-color);
    position: fixed;
    width: 0;
    height: 4px;
    z-index: 99999;
}
#newsxpress-progress-bar.top {
    top: 0;
}
.admin-bar #newsxpress-progress-bar.top {
    top: 32px;
}
@media only screen and (max-width: 782px) {
    .admin-bar #newsxpress-progress-bar.top {
        top: 46px;
    }
}
@media only screen and (max-width: 600px) {
    .admin-bar #newsxpress-progress-bar.top {
        top: 0;
    }
}
#newsxpress-progress-bar.bottom {
    bottom: 0;
}
/* Preloader
--------------------------------------------- */
.theme-preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--theme-bg-color);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}
.theme-preloader-spinner {
    width: 100%;
    height: 100vh;
    position: relative;
    display: block;
}
.theme-preloader-spinner-1 .theme-preloader-throbber {
    width: 48px;
    height: 48px;
    border: 3px dotted var(--theme-component-color);
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: -24px;
    margin-top: -24px;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}
.theme-preloader-spinner-1 .theme-preloader-throbber:after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted var(--theme-accent-color);
    border-style: solid solid dotted;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 1s linear infinite;
    transform-origin: center center;
}
.theme-preloader-spinner-2 .theme-preloader-throbber {
    border-radius: 100%;
    height: 10px;
    width: 10px;
    background-color: var(--preloader-throbber-bg);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
    40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
    40px 40px 0px 0px var(--preloader-throbber-bg), -40px -40px 0px 0px var(--preloader-throbber-bg),
    40px -40px 0px 0px var(--preloader-throbber-bg), -40px 40px 0px 0px var(--preloader-throbber-bg);
    -webkit-animation: load 3s infinite linear;
    -moz-animation: load 3s infinite linear;
    -o-animation: load 3s infinite linear;
    animation: load 3s infinite linear;
}
@-webkit-keyframes load {
    0% {
        -webkit-transform: translate(0px, 0px), rotate(0deg);
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        40px 40px 0px 0px var(--preloader-throbber-bg), -40px -40px 0px 0px var(--preloader-throbber-bg),
        40px -40px 0px 0px var(--preloader-throbber-bg), -40px 40px 0px 0px var(--preloader-throbber-bg);
    }
    25% {
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        -40px -40px 0px 0px var(--preloader-throbber-bg), 40px 40px 0px 0px var(--preloader-throbber-bg),
        -40px 40px 0px 0px var(--preloader-throbber-bg), 40px -40px 0px 0px var(--preloader-throbber-bg);
    }
    50% {
        box-shadow: 0px -40px 0px 0px var(--preloader-throbber-bg), 0px 40px 0px 0px var(--preloader-throbber-bg),
        -40px 0px 0px 0px var(--preloader-throbber-bg), 40px 0px 0px 0px var(--preloader-throbber-bg),
        -40px -40px 0px 0px var(--preloader-throbber-bg), 40px 40px 0px 0px var(--preloader-throbber-bg),
        -40px 40px 0px 0px var(--preloader-throbber-bg), 40px -40px 0px 0px var(--preloader-throbber-bg);
    }
    70% {
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
    }
    75% {
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        height: 10px;
        width: 10px;
    }
    80% {
        -webkit-transform: translate(0px, 0px) rotate(360deg);
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        background-color: var(--preloader-throbber-bg);
        height: 40px;
        width: 40px;
    }
    85% {
        -webkit-transform: translate(0px, 0px) rotate(360deg);
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        background-color: var(--preloader-throbber-bg);
        height: 40px;
        width: 40px;
    }
    90% {
        -webkit-transform: translate(0px, 0px) rotate(360deg);
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        background-color: var(--preloader-throbber-bg);
        height: 10px;
        width: 10px;
    }
    95% {
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        40px 40px 0px 0px var(--preloader-throbber-bg), -40px -40px 0px 0px var(--preloader-throbber-bg),
        40px -40px 0px 0px var(--preloader-throbber-bg), -40px 40px 0px 0px var(--preloader-throbber-bg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        40px 40px 0px 0px var(--preloader-throbber-bg), -40px -40px 0px 0px var(--preloader-throbber-bg),
        40px -40px 0px 0px var(--preloader-throbber-bg), -40px 40px 0px 0px var(--preloader-throbber-bg);
    }
}
@-moz-keyframes load {
    0% {
        -moz-transform: translate(0px, 0px), rotate(0deg);
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        40px 40px 0px 0px var(--preloader-throbber-bg), -40px -40px 0px 0px var(--preloader-throbber-bg),
        40px -40px 0px 0px var(--preloader-throbber-bg), -40px 40px 0px 0px var(--preloader-throbber-bg);
    }
    25% {
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        -40px -40px 0px 0px var(--preloader-throbber-bg), 40px 40px 0px 0px var(--preloader-throbber-bg),
        -40px 40px 0px 0px var(--preloader-throbber-bg), 40px -40px 0px 0px var(--preloader-throbber-bg);
    }
    50% {
        box-shadow: 0px -40px 0px 0px var(--preloader-throbber-bg), 0px 40px 0px 0px var(--preloader-throbber-bg),
        -40px 0px 0px 0px var(--preloader-throbber-bg), 40px 0px 0px 0px var(--preloader-throbber-bg),
        -40px -40px 0px 0px var(--preloader-throbber-bg), 40px 40px 0px 0px var(--preloader-throbber-bg),
        -40px 40px 0px 0px var(--preloader-throbber-bg), 40px -40px 0px 0px var(--preloader-throbber-bg);
    }
    70% {
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
    }
    75% {
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        height: 10px;
        width: 10px;
    }
    80% {
        -moz-transform: translate(0px, 0px) rotate(360deg);
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        background-color: var(--preloader-throbber-bg);
        height: 40px;
        width: 40px;
    }
    85% {
        -moz-transform: translate(0px, 0px) rotate(360deg);
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        background-color: var(--preloader-throbber-bg);
        height: 40px;
        width: 40px;
    }
    90% {
        -moz-transform: translate(0px, 0px) rotate(360deg);
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        background-color: var(--preloader-throbber-bg);
        height: 10px;
        width: 10px;
    }
    95% {
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        40px 40px 0px 0px var(--preloader-throbber-bg), -40px -40px 0px 0px var(--preloader-throbber-bg),
        40px -40px 0px 0px var(--preloader-throbber-bg), -40px 40px 0px 0px var(--preloader-throbber-bg);
    }
    100% {
        -moz-transform: rotate(360deg);
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        40px 40px 0px 0px var(--preloader-throbber-bg), -40px -40px 0px 0px var(--preloader-throbber-bg),
        40px -40px 0px 0px var(--preloader-throbber-bg), -40px 40px 0px 0px var(--preloader-throbber-bg);
    }
}
@keyframes load {
    0% {
        transform: translate(0px, 0px), rotate(0deg);
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        40px 40px 0px 0px var(--preloader-throbber-bg), -40px -40px 0px 0px var(--preloader-throbber-bg),
        40px -40px 0px 0px var(--preloader-throbber-bg), -40px 40px 0px 0px var(--preloader-throbber-bg);
    }
    25% {
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        -40px -40px 0px 0px var(--preloader-throbber-bg), 40px 40px 0px 0px var(--preloader-throbber-bg),
        -40px 40px 0px 0px var(--preloader-throbber-bg), 40px -40px 0px 0px var(--preloader-throbber-bg);
    }
    50% {
        box-shadow: 0px -40px 0px 0px var(--preloader-throbber-bg), 0px 40px 0px 0px var(--preloader-throbber-bg),
        -40px 0px 0px 0px var(--preloader-throbber-bg), 40px 0px 0px 0px var(--preloader-throbber-bg),
        -40px -40px 0px 0px var(--preloader-throbber-bg), 40px 40px 0px 0px var(--preloader-throbber-bg),
        -40px 40px 0px 0px var(--preloader-throbber-bg), 40px -40px 0px 0px var(--preloader-throbber-bg);
    }
    70% {
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
    }
    75% {
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        height: 10px;
        width: 10px;
    }
    80% {
        transform: translate(0px, 0px) rotate(360deg);
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        background-color: var(--preloader-throbber-bg);
        height: 40px;
        width: 40px;
    }
    85% {
        transform: translate(0px, 0px) rotate(360deg);
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        background-color: var(--preloader-throbber-bg);
        height: 40px;
        width: 40px;
    }
    90% {
        transform: translate(0px, 0px) rotate(360deg);
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        background-color: var(--preloader-throbber-bg);
        height: 10px;
        width: 10px;
    }
    95% {
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        40px 40px 0px 0px var(--preloader-throbber-bg), -40px -40px 0px 0px var(--preloader-throbber-bg),
        40px -40px 0px 0px var(--preloader-throbber-bg), -40px 40px 0px 0px var(--preloader-throbber-bg);
    }
    100% {
        transform: rotate(360deg);
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        40px 40px 0px 0px var(--preloader-throbber-bg), -40px -40px 0px 0px var(--preloader-throbber-bg),
        40px -40px 0px 0px var(--preloader-throbber-bg), -40px 40px 0px 0px var(--preloader-throbber-bg);
    }
}
@-o-keyframes load {
    0% {
        -o-transforms: translate(0px, 0px), rotate(0deg);
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        40px 40px 0px 0px var(--preloader-throbber-bg), -40px -40px 0px 0px var(--preloader-throbber-bg),
        40px -40px 0px 0px var(--preloader-throbber-bg), -40px 40px 0px 0px var(--preloader-throbber-bg);
    }
    25% {
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        -40px -40px 0px 0px var(--preloader-throbber-bg), 40px 40px 0px 0px var(--preloader-throbber-bg),
        -40px 40px 0px 0px var(--preloader-throbber-bg), 40px -40px 0px 0px var(--preloader-throbber-bg);
    }
    50% {
        box-shadow: 0px -40px 0px 0px var(--preloader-throbber-bg), 0px 40px 0px 0px var(--preloader-throbber-bg),
        -40px 0px 0px 0px var(--preloader-throbber-bg), 40px 0px 0px 0px var(--preloader-throbber-bg),
        -40px -40px 0px 0px var(--preloader-throbber-bg), 40px 40px 0px 0px var(--preloader-throbber-bg),
        -40px 40px 0px 0px var(--preloader-throbber-bg), 40px -40px 0px 0px var(--preloader-throbber-bg);
    }
    70% {
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
    }
    75% {
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        height: 10px;
        width: 10px;
    }
    80% {
        -o-transforms: translate(0px, 0px) rotate(360deg);
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        background-color: var(--preloader-throbber-bg);
        height: 40px;
        width: 40px;
    }
    85% {
        -o-transforms: translate(0px, 0px) rotate(360deg);
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        background-color: var(--preloader-throbber-bg);
        height: 40px;
        width: 40px;
    }
    90% {
        -o-transforms: translate(0px, 0px) rotate(360deg);
        box-shadow: 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg),
        0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg), 0px 0px 0px 0px var(--preloader-throbber-bg);
        background-color: var(--preloader-throbber-bg);
        height: 10px;
        width: 10px;
    }
    95% {
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        40px 40px 0px 0px var(--preloader-throbber-bg), -40px -40px 0px 0px var(--preloader-throbber-bg),
        40px -40px 0px 0px var(--preloader-throbber-bg), -40px 40px 0px 0px var(--preloader-throbber-bg);
    }
    100% {
        -o-transforms: rotate(360deg);
        box-shadow: 0px 40px 0px 0px var(--preloader-throbber-bg), 0px -40px 0px 0px var(--preloader-throbber-bg),
        40px 0px 0px 0px var(--preloader-throbber-bg), -40px 0px 0px 0px var(--preloader-throbber-bg),
        40px 40px 0px 0px var(--preloader-throbber-bg), -40px -40px 0px 0px var(--preloader-throbber-bg),
        40px -40px 0px 0px var(--preloader-throbber-bg), -40px 40px 0px 0px var(--preloader-throbber-bg);
    }
}
/* Top Bar
--------------------------------------------- */
.site-topbar {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}
.site-topbar .site-topbar-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.site-topbar-wrapper .site-topbar-item {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.site-topbar-wrapper .site-topbar-item .theme-button {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.site-topbar .site-topbar-component {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1;
}
.site-header .header-component-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.site-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.site-header.header-has-overlay:before {
    content: "";
    background-color: #000;
    opacity: 0.82;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.site-header.header-has-overlay .masthead-mid-navigation,
.site-header.header-has-overlay .masthead-main-navigation {
    position: relative;
}
.site-header.header-has-height-small {
    min-height: 20rem;
}
.site-header.header-has-height-medium {
    min-height: 25rem;
}
.site-header.header-has-height-large {
    min-height: 30rem;
}
@media (max-width: 575px) {
    .site-header.header-has-height-medium,
    .site-header.header-has-height-large {
        min-height: 25rem;
    }
}
.site-header .masthead-mid-navigation {
    margin-top: auto;
    margin-bottom: auto;
}
.site-header .masthead-mid-navigation .masthead-middle-panel {
    margin-right: 4rem;
}
.site-header .masthead-main-navigation {
    border-bottom: 0.1rem solid;
    position: relative;
}
.site-header .has-sticky-header.sticky-header-active {
    background-color: var(--theme-bg-color);
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    transition: all 150ms linear;
}
.admin-bar .site-header .has-sticky-header.sticky-header-active {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .site-header .has-sticky-header.sticky-header-active {
        top: 46px;
    }
}
@media screen and (max-width: 600px) {
    .admin-bar .site-header .has-sticky-header.sticky-header-active {
        top: 0;
    }
}
.site-header-wrapper {
    display: grid;
    align-items: center;
    justify-items: center;
    grid-template-columns: auto 1fr auto;
}
.has-offcanvas-sidebar .site-header-wrapper {
    grid-template-columns: auto auto 1fr;
}
@media screen and (max-width: 1199px) {
    .masthead-mid-navigation .site-header-wrapper {
        display: block;
    }
    .masthead-mid-navigation .site-header-wrapper .site-header-left {
        margin-bottom: 2rem;
    }
}
.site-header-left,
.site-header-right {
    gap: 2rem;
    display: flex;
    align-content: center;
}
.site-header-left {
    justify-content: flex-start;
    justify-self: start;
}
.site-header-center {
    justify-content: center;
    justify-self: center;
}
.site-header-right {
    justify-content: flex-end;
    justify-self: end;
}
.site-header-wrapper .theme-button {
    display: flex;
    align-items: center;
    min-height: 5rem;
}
.site-header-wrapper .theme-button-offcanvas {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Site Branding
--------------------------------------------- */
.site-branding {
    display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		flex-direction: row;
}
.site-title,
.site-logo,
.site-description {
    line-height: 1;
    margin: 0;
}
.site-title {
    margin-top: 10px;
    font-family: var(--theme-font-family-general);
    font-size: 4.4rem;
    font-weight: 700;
    text-transform: uppercase;
}
.site-title a {
    display: block;
    text-decoration: none;
}
.site-logo {
		margin-top: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}
.site-logo a,
.site-logo img {
    display: block;
}
.site-logo img {
    max-height: 6rem;
    margin: 0;
    width: auto;
}
.site-header .site-branding .site-logo-dark {
    display: none;
    height: 1px;
    visibility: hidden;
    opacity: 0;
}
[data-theme="dark"] .site-header .site-branding.has-dark-logo .site-logo-default {
    display: none;
    height: 1px;
    visibility: hidden;
    opacity: 0;
}
[data-theme="dark"] .site-header .site-branding.has-dark-logo .site-logo-dark {
    display: inline-block;
    height: inherit;
    visibility: visible;
    opacity: 1;
}
.site-logo + .site-title {
    margin-top: 2rem;
}
.site-description {
    font-size: 1.6rem;
    filter: alpha(opacity=85);
    opacity: 0.85;
    position: relative;
    transition: all 0.15s linear;
}
.site-branding-center {
    padding-bottom: 4rem;
    padding-top: 4rem;
    position: relative;
    text-align: center;
    z-index: 1;
}
@media (max-width: 767px) {
    .site-title {
        font-size: var(--theme-font-size-big);
    }
}
/* Navigation
--------------------------------------------- */
.theme-primary-menu {
    /* display: none; */
}
@media only screen and (min-width: 1025px) {
    .theme-primary-menu {
        display: block;
    }
}
ul.primary-menu {
    display: -ms-flexbox;
    display: flex;
    font-size: 2rem;
    font-weight: 500;
    flex-wrap: wrap;
    align-items: center;
}
.primary-menu li {
    font-size: 1.5rem;
    line-height: 1.25;
    position: relative;
}
.primary-menu > li > a {
    padding-right: 2rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    min-height: 5rem;
}
.primary-menu > li .icon {
    font-size: inherit;
    vertical-align: middle;
}
.primary-menu svg {
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    margin-left: 1rem;
    fill: currentColor;
}
.primary-menu .brand-home .svg-icon {
    width: 2.2rem;
    height: 2.2rem;
    margin: 0;
}
.primary-menu a {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 1rem 0;
    text-decoration: none;
    word-break: normal;
    word-wrap: normal;
}
.site-header .primary-menu > li.current-menu-item > a,
.site-header .primary-menu > li.current-menu-item > .link-icon-wrapper > a {
    color: var(--theme-accent-color);
}
/* SUB MENU */
.primary-menu ul {
    background-color: var(--theme-component-color);
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: calc(100% + 1.1rem);
    padding: 1rem 0;
    width: 23rem;
    opacity: 0;
    transition: opacity 0.15s linear, transform 0.15s linear, right 0s 0.15s;
    transform: translateY(0.6rem);
    box-shadow: 0 15px 45px 15px rgba(0, 0, 0, 0.07);
}
.primary-menu li.menu-item-has-children:hover > ul,
.primary-menu li.menu-item-has-children:focus > ul,
.primary-menu li.menu-item-has-children.focus > ul {
    left: 0;
    opacity: 1;
    z-index: 10;
    transform: translateY(0);
    transition: opacity 0.15s linear, transform 0.15s linear;
}
.primary-menu ul::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    border: 1rem solid transparent;
}
.primary-menu ul a {
    background: transparent;
    border: none;
    color: inherit;
    display: block;
    padding: 1rem 2rem;
    transition: background-color 0.15s linear;
    width: 100%;
}
.primary-menu ul a .icon {
    position: absolute;
    right: 2rem;
}
.primary-menu ul a:hover,
.primary-menu ul a:focus {
    color: var(--theme-accent-color);
}
/* DEEP DOWN */
.primary-menu ul ul {
    top: -1rem;
}
.primary-menu li.menu-item-has-children:hover > ul.sub-menu ul,
.primary-menu li.menu-item-has-children:focus > ul.sub-menu ul,
.primary-menu li.menu-item-has-children.focus > ul.sub-menu ul {
    left: 100%;
}
/*
 * Enable nav submenu expansion with tapping on arrows on large-viewport
 * touch interfaces (e.g. tablets or laptops with touch screens).
 * These rules are supported by all browsers (>IE11) and when JS is disabled.
 */
@media (any-pointer: coarse) {
    .primary-menu > li.menu-item-has-children > a {
        padding-right: 0;
        margin-right: 2rem;
    }
    .primary-menu ul li.menu-item-has-children > a {
        margin-right: 4.5rem;
        padding-right: 0;
        width: unset;
    }
}
/* Repeat previous rules for IE11 (when JS enabled for polyfill). */
body.touch-enabled .primary-menu > li.menu-item-has-children > a {
    padding-right: 0;
    margin-right: 2rem;
}
body.touch-enabled .primary-menu ul li.menu-item-has-children > a {
    margin-right: 4.5rem;
    padding-right: 0;
    width: unset;
}
#page.site {
    position: relative;
    width: 100%;
    min-height: 100%;
    z-index: 1;
    transition: transform 0.5s ease-in-out;
}
#page.site::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 32, 53, 0.3);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}
/* Search Canvas
**------------------------------------------------ */
.newsxpress-search-canvas-open #page.site::before {
    display: block;
    opacity: 1;
    visibility: visible;
}
.theme-search-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 11rem 0;
    background-color: var(--theme-bg-color);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.5s ease-in-out;
}
.admin-bar .theme-search-panel {
    top: 32px;
}
@media only screen and (max-width: 782px) {
    .admin-bar .theme-search-panel {
        top: 46px;
    }
}
@media only screen and (max-width: 600px) {
    .admin-bar .theme-search-panel {
        top: 0;
    }
}
.newsxpress-search-canvas-open .theme-search-panel {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.search-panel-wrapper .search-form {
    margin: 0;
    padding: 0;
    display: block;
}
.theme-search-panel input.search-field {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #ddd;
    font-size: 1.8rem;
    width: 20rem;
    max-width: 100%;
    padding: 0 0 2rem 0;
    transition: width 0.3s ease 0.3s;
}
.newsxpress-search-canvas-open .theme-search-panel input.search-field {
    width: calc(100% - 5rem);
}
.theme-search-panel input:focus.search-field {
    border-bottom-color: var(--theme-accent-color);
    outline: none;
}
.theme-search-panel .search-submit {
    position: absolute;
    right: -9999rem;
    top: 45%;
    transform: translateY(-45%);
}
.theme-search-panel .search-submit {
    flex-shrink: 0;
}
.theme-search-panel .search-submit:focus {
    right: 15rem;
}
#theme-toggle-search-button:focus-visible,
.theme-search-panel .search-close:focus-visible {
    outline: 0.2rem solid;
    outline-offset: 0;
}
.theme-search-panel .search-close {
    position: absolute;
    top: 3.5rem;
    right: 4.5rem;
    cursor: pointer;
    fill: var(--theme-accent-color);
}
.theme-search-panel .search-close svg {
    width: 4rem;
    height: 4rem;
}
/* Off Canvas
**------------------------------------------------ */
.newsxpress-offcanvas-menu-open #page.site {
    position: fixed;
    transform: translateX(-42rem);
}
.newsxpress-offcanvas-widget-open #page.site {
    position: fixed;
    transform: translateX(42rem);
}
.newsxpress-offcanvas-menu-open #page.site::before,
.newsxpress-offcanvas-widget-open #page.site::before {
    opacity: 1;
    visibility: visible;
}
.theme-offcanvas-panel {
    background-color: var(--theme-bg-color);
    position: fixed;
    top: 0;
    bottom: 0;
    width: 42rem;
    height: 100vh;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 999;
    padding-bottom: 8rem;
}
.theme-offcanvas-panel-menu {
    right: 0;
    transform: translateX(42rem);
}
.theme-offcanvas-panel-widget {
    left: 0;
    transform: translateX(-42rem);
}
@media only screen and (max-width: 575px) {
    .newsxpress-offcanvas-menu-open #page.site {
        transform: translateX(-29rem);
    }
    .newsxpress-offcanvas-widget-open #page.site {
        transform: translateX(29rem);
    }
    .theme-offcanvas-panel {
        width: 29rem;
    }
    .theme-offcanvas-panel-menu {
        transform: translateX(29rem);
    }
    .theme-offcanvas-panel-widget {
        transform: translateX(-29rem);
    }
}
.newsxpress-offcanvas-menu-open .theme-offcanvas-panel-menu {
    opacity: 1;
    visibility: visible;
}
.newsxpress-offcanvas-widget-open .theme-offcanvas-panel-widget {
    opacity: 1;
    visibility: visible;
}
.theme-offcanvas-header {
    padding: 4rem 2rem;
    border-bottom: 2px solid;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.6rem;
    font-weight: 500;
    justify-content: flex-end;
    width: 100%;
}
.theme-offcanvas-content {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2rem;
}
.theme-offcanvas-header #theme-offcanvas-close {
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    line-height: 1.2;
    padding: 0.5rem;
    cursor: pointer;
}
.theme-offcanvas-header #theme-offcanvas-close span {
    display: inline-block;
    margin: 0;
    margin-right: 0.5rem;
    padding: 0;
}
.offcanvas-sidebar .widget {
    margin: 0;
    padding: 2rem 0;
}
.offcanvas-sidebar .widget:last-child {
    margin-bottom: 3rem;
}
/* Canvas Mobile Menu
**------------------------------------------------ */
.theme-offcanvas-content nav {
    margin-bottom: 3rem;
}
.theme-offcanvas-content .after-menu-offcanvas {
    padding-bottom: 3rem;
}
.theme-offcanvas-menu {
    position: relative;
    width: 100%;
}
.theme-offcanvas-menu li {
    border-style: solid;
    border-width: 0.1rem 0 0 0;
    line-height: 1;
    margin: 0;
}
.theme-offcanvas-menu > li:first-child {
    border-top: none;
}
.theme-offcanvas-menu > li:last-child {
    border-bottom: none;
}
.theme-offcanvas-menu > li:last-child {
    border-bottom-width: 0.1rem;
}
.theme-offcanvas-menu .ancestor-wrapper {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}
.theme-offcanvas-menu a {
    display: block;
    padding: 2rem 0;
    text-decoration: none;
    width: 100%;
}
.theme-offcanvas-menu a:focus-visible {
    outline: none;
    border: 0.2rem solid var(--theme-accent-color);
}
button.sub-menu-toggle {
    border-left: 0.1rem solid #dedfdf;
    flex-shrink: 0;
    margin: 1rem 0;
    min-height: inherit;
    padding: 0 2.5rem;
}
button.sub-menu-toggle:focus {
    outline: 0.1rem solid;
}
button.sub-menu-toggle svg {
    height: 0.9rem;
    transition: transform 0.15s linear;
    width: 1.5rem;
}
button.sub-menu-toggle.active svg {
    transform: rotate(180deg);
}
.theme-offcanvas-menu ul {
    margin: 0;
    width: 100%;
    display: none;
    height: 0;
    overflow: hidden;
    transition: height 350ms ease;
}
.theme-offcanvas-menu ul li {
    padding-left: 1rem;
}
.theme-offcanvas-menu ul li a {
    color: inherit;
    font-weight: 500;
}
/* Color Mode
--------------------------------------------- */
.newsxpress-force-dark #theme-toggle-mode-button {
    display: none;
    opacity: 0;
    visibility: hidden;
}
#colormode-switch-area {
    color: inherit;
    display: flex;
    align-items: center;
    margin-left: 1rem;
}
#colormode-switch-area #mode-icon-switch {
    background: var(--theme-text-color);
    position: relative;
    display: block;
    width: 64px;
    height: 30px;
    margin-left: 1rem;
    border-radius: 15px;
}
#colormode-switch-area #mode-icon-switch:before {
    background: #333;
    transition: all 0.25s;
    border: 4px solid #fff;
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}
[data-theme="dark"] #colormode-switch-area #mode-icon-switch:before {
    background: #fff;
    border-color: #1a1a1a;
    top: 4px;
    left: 36px;
}
#colormode-switch-area .mode-icon-change:before {
    content: "";
    background-color: currentColor;
    height: 22px;
    width: 22px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    -webkit-mask-size: 22px;
    mask-size: 22px;
}
#colormode-switch-area .mode-icon-change:before {
    -webkit-mask: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='22px' height='22px' viewBox='0 0 22 22' version='1.1'%3E%3Cpath d='M 15.53125 0.0507812 C 15.75 0.140625 15.902344 0.335938 15.945312 0.5625 L 16.800781 5.199219 L 21.4375 6.050781 C 21.664062 6.09375 21.859375 6.246094 21.949219 6.460938 C 22.039062 6.675781 22.011719 6.921875 21.878906 7.117188 L 19.203125 11 L 21.878906 14.878906 C 22.011719 15.074219 22.039062 15.320312 21.949219 15.53125 C 21.859375 15.75 21.664062 15.902344 21.4375 15.945312 L 16.800781 16.800781 L 15.945312 21.4375 C 15.902344 21.664062 15.75 21.859375 15.53125 21.949219 C 15.320312 22.039062 15.074219 22.011719 14.878906 21.878906 L 11 19.203125 L 7.121094 21.878906 C 6.925781 22.011719 6.679688 22.039062 6.46875 21.949219 C 6.25 21.859375 6.097656 21.664062 6.054688 21.4375 L 5.199219 16.800781 L 0.5625 15.945312 C 0.335938 15.902344 0.140625 15.75 0.0507812 15.53125 C -0.0390625 15.320312 -0.0117188 15.074219 0.121094 14.878906 L 2.796875 11 L 0.121094 7.121094 C -0.0117188 6.925781 -0.0390625 6.679688 0.0507812 6.46875 C 0.140625 6.25 0.335938 6.097656 0.5625 6.054688 L 5.199219 5.199219 L 6.054688 0.5625 C 6.097656 0.335938 6.25 0.140625 6.46875 0.0507812 C 6.679688 -0.0390625 6.925781 -0.0117188 7.121094 0.121094 L 11 2.796875 L 14.878906 0.121094 C 15.074219 -0.0117188 15.320312 -0.0390625 15.53125 0.0507812 Z M 15.125 11 C 15.125 13.277344 13.277344 15.125 11 15.125 C 8.722656 15.125 6.875 13.277344 6.875 11 C 6.875 8.722656 8.722656 6.875 11 6.875 C 13.277344 6.875 15.125 8.722656 15.125 11 Z M 16.5 11 C 16.5 7.960938 14.039062 5.5 11 5.5 C 7.960938 5.5 5.5 7.960938 5.5 11 C 5.5 14.039062 7.960938 16.5 11 16.5 C 14.039062 16.5 16.5 14.039062 16.5 11 Z M 16.5 11 '/%3E%3C/svg%3E%0A") no-repeat;
    mask: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='22px' height='22px' viewBox='0 0 22 22' version='1.1'%3E%3Cpath d='M 15.53125 0.0507812 C 15.75 0.140625 15.902344 0.335938 15.945312 0.5625 L 16.800781 5.199219 L 21.4375 6.050781 C 21.664062 6.09375 21.859375 6.246094 21.949219 6.460938 C 22.039062 6.675781 22.011719 6.921875 21.878906 7.117188 L 19.203125 11 L 21.878906 14.878906 C 22.011719 15.074219 22.039062 15.320312 21.949219 15.53125 C 21.859375 15.75 21.664062 15.902344 21.4375 15.945312 L 16.800781 16.800781 L 15.945312 21.4375 C 15.902344 21.664062 15.75 21.859375 15.53125 21.949219 C 15.320312 22.039062 15.074219 22.011719 14.878906 21.878906 L 11 19.203125 L 7.121094 21.878906 C 6.925781 22.011719 6.679688 22.039062 6.46875 21.949219 C 6.25 21.859375 6.097656 21.664062 6.054688 21.4375 L 5.199219 16.800781 L 0.5625 15.945312 C 0.335938 15.902344 0.140625 15.75 0.0507812 15.53125 C -0.0390625 15.320312 -0.0117188 15.074219 0.121094 14.878906 L 2.796875 11 L 0.121094 7.121094 C -0.0117188 6.925781 -0.0390625 6.679688 0.0507812 6.46875 C 0.140625 6.25 0.335938 6.097656 0.5625 6.054688 L 5.199219 5.199219 L 6.054688 0.5625 C 6.097656 0.335938 6.25 0.140625 6.46875 0.0507812 C 6.679688 -0.0390625 6.925781 -0.0117188 7.121094 0.121094 L 11 2.796875 L 14.878906 0.121094 C 15.074219 -0.0117188 15.320312 -0.0390625 15.53125 0.0507812 Z M 15.125 11 C 15.125 13.277344 13.277344 15.125 11 15.125 C 8.722656 15.125 6.875 13.277344 6.875 11 C 6.875 8.722656 8.722656 6.875 11 6.875 C 13.277344 6.875 15.125 8.722656 15.125 11 Z M 16.5 11 C 16.5 7.960938 14.039062 5.5 11 5.5 C 7.960938 5.5 5.5 7.960938 5.5 11 C 5.5 14.039062 7.960938 16.5 11 16.5 C 14.039062 16.5 16.5 14.039062 16.5 11 Z M 16.5 11 '/%3E%3C/svg%3E%0A") no-repeat;
}
[data-theme="dark"] #colormode-switch-area .mode-icon-change:before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='svg-icon' viewBox='0 0 20 20'%3E%3Cpath d='M10.544,8.717l1.166-0.855l1.166,0.855l-0.467-1.399l1.012-0.778h-1.244L11.71,5.297l-0.466,1.244H10l1.011,0.778L10.544,8.717z M15.986,9.572l-0.467,1.244h-1.244l1.011,0.777l-0.467,1.4l1.167-0.855l1.165,0.855l-0.466-1.4l1.011-0.777h-1.244L15.986,9.572z M7.007,6.552c0-2.259,0.795-4.33,2.117-5.955C4.34,1.042,0.594,5.07,0.594,9.98c0,5.207,4.211,9.426,9.406,9.426c2.94,0,5.972-1.354,7.696-3.472c-0.289,0.026-0.987,0.044-1.283,0.044C11.219,15.979,7.007,11.759,7.007,6.552 M10,18.55c-4.715,0-8.551-3.845-8.551-8.57c0-3.783,2.407-6.999,5.842-8.131C6.549,3.295,6.152,4.911,6.152,6.552c0,5.368,4.125,9.788,9.365,10.245C13.972,17.893,11.973,18.55,10,18.55 M19.406,2.304h-1.71l-0.642-1.71l-0.642,1.71h-1.71l1.39,1.069l-0.642,1.924l1.604-1.176l1.604,1.176l-0.642-1.924L19.406,2.304z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='svg-icon' viewBox='0 0 20 20'%3E%3Cpath d='M10.544,8.717l1.166-0.855l1.166,0.855l-0.467-1.399l1.012-0.778h-1.244L11.71,5.297l-0.466,1.244H10l1.011,0.778L10.544,8.717z M15.986,9.572l-0.467,1.244h-1.244l1.011,0.777l-0.467,1.4l1.167-0.855l1.165,0.855l-0.466-1.4l1.011-0.777h-1.244L15.986,9.572z M7.007,6.552c0-2.259,0.795-4.33,2.117-5.955C4.34,1.042,0.594,5.07,0.594,9.98c0,5.207,4.211,9.426,9.406,9.426c2.94,0,5.972-1.354,7.696-3.472c-0.289,0.026-0.987,0.044-1.283,0.044C11.219,15.979,7.007,11.759,7.007,6.552 M10,18.55c-4.715,0-8.551-3.845-8.551-8.57c0-3.783,2.407-6.999,5.842-8.131C6.549,3.295,6.152,4.911,6.152,6.552c0,5.368,4.125,9.788,9.365,10.245C13.972,17.893,11.973,18.55,10,18.55 M19.406,2.304h-1.71l-0.642-1.71l-0.642,1.71h-1.71l1.39,1.069l-0.642,1.924l1.604-1.176l1.604,1.176l-0.642-1.924L19.406,2.304z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
}
/* Posts and pages
--------------------------------------------- */
.sticky {
    display: block;
}
.updated:not(.published) {
    display: none;
}
.page-content:before,
.page-content:after,
.entry-content:before,
.entry-content:after,
.entry-summary:before,
.entry-summary:after {
    content: "";
    clear: both;
    display: table;
}
.entry-image {
    position: relative;
}
.entry-image img {
    display: block;
    width: 100%;
}
.entry-image-large img {
    height: 660px;
    object-fit: cover;
}
.entry-image-big img {
    height: 400px;
    object-fit: cover;
}
.entry-image-medium img {
    height: 200px;
    object-fit: cover;
}
.entry-image-small img {
    height: 160px;
    object-fit: cover;
}
.entry-image-thumbnail img {
    height: 100px;
    object-fit: cover;
}
.entry-image-tiny img {
    height: 50px;
    object-fit: cover;
}
@media only screen and (max-width: 575px) {
    .entry-image-large img {
        height: 460px;
    }
}
.entry-image .theme-article-count {
    background-color: var(--theme-accent-color);
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    text-align: center;
    line-height: 3rem;
}
.has-post-thumbnail .entry-image .featured-media-fullscreen {
    background-color: var(--theme-accent-color);
    color: #fff;
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1;
    padding: 1rem;
}
.has-post-thumbnail .entry-image .featured-media-fullscreen:hover,
.has-post-thumbnail .entry-image .featured-media-fullscreen:focus {
    background-color: var(--theme-accent-hover-color);
}
.featured-media-fullscreen .svg-icon {
    display: block;
}
.page-links {
    clear: both;
    margin: 0 0 1.5em;
}
/* Pagination */
.pagination .nav-links {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    margin: -1.5rem 0 0 -2.5rem;
    width: calc(100% + 2.5rem);
}
.pagination .nav-links > * {
    margin: 1.5rem 0 0 2.5rem;
}
.pagination .nav-links .placeholder {
    display: none;
    visibility: hidden;
}
.pagination .dots {
    transform: translateY(-0.3em);
    opacityfilter: alpha(opacity=85);
    opacity: 0.85;
}
@media (min-width: 700px) {
    .pagination .nav-links {
        margin: -2.5rem 0 0 -4rem;
    }
    .pagination .nav-links > * {
        margin: 2.5rem 0 0 4rem;
    }
}
@media (min-width: 1000px) {
    .pagination .nav-links {
        justify-content: space-between;
        margin: 0;
        width: 100%;
    }
    .pagination .nav-links > * {
        margin: 0 2rem;
    }
    .pagination .nav-links > span.page-numbers {
        margin-left: 0;
    }
    .pagination .next,
    .pagination .prev {
        display: block;
    }
    .pagination .prev {
        margin: 0 auto 0 0;
    }
    .pagination .next {
        text-align: right;
        margin: 0 0 0 auto;
    }
}
.post-navigation,
.newsxpress-nav-pagination .posts-navigation,
.newsxpress-nav-pagination .pagination {
    font-size: var(--theme-font-size-small);
    margin-top: 2rem;
}
.post-navigation .nav-links,
.posts-navigation .nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.post-navigation .nav-links > a + a,
.posts-navigation .nav-links > div + div {
    margin-top: 1rem;
}
.post-navigation a,
.posts-navigation a {
    align-items: baseline;
    display: flex;
}
.post-navigation a .arrow,
.post-navigation a .post-thumb,
.posts-navigation a .arrow,
.posts-navigation a .post-thumb {
    margin-right: 1rem;
}
.post-navigation a .post-thumb,
.posts-navigation a .post-thumb {
    width: 100px;
    height: 100px;
}
@media (min-width: 700px) {
    .post-navigation .nav-links,
    .posts-navigation .nav-links {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .post-navigation .nav-links .nav-previous,
    .post-navigation .nav-links .nav-next {
        flex: 1 1 0px;
    }
    .post-navigation a.nav-next,
    .posts-navigation .nav-next a {
        flex-direction: row-reverse;
        text-align: right;
    }
    .post-navigation a.nav-next .arrow,
    .post-navigation a.nav-next .post-thumb,
    .posts-navigation .nav-next a .arrow,
    .posts-navigation .nav-next a .post-thumb {
        margin-right: 0;
        margin-left: 1rem;
    }
    .post-navigation .nav-links > a + a,
    .posts-navigation .nav-links > div + div {
        margin: 0 0 0 2rem;
    }
    .post-navigation .nav-next:only-child,
    .posts-navigation .nav-next:only-child {
        margin-left: auto;
    }
}
.post-navigation .nav-links a {
    flex-direction: column;
}
.sticky-article-link {
    box-sizing: border-box;
    overflow: hidden;
    display: block;
    width: 48px;
    min-height: 90px;
    position: fixed;
    z-index: 99;
    top: 50%;
    margin-top: -40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: width 375ms ease-in-out;
    background-color: var(--theme-bg-color);
    color: var(--theme-text-color);
}
.sticky-article-link:hover,
.sticky-article-link:focus {
    width: 448px;
}
.sticky-article-prev,
.sticky-article-prev .sticky-article-icon {
    left: 0;
    right: auto;
}
.sticky-article-next,
.sticky-article-next .sticky-article-icon {
    right: 0;
    left: auto;
}
.sticky-article-link .sticky-article-icon {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    width: 48px;
    position: absolute;
    z-index: 2;
    margin: 0;
    text-align: center;
    cursor: pointer;
    background-color: inherit;
}
.sticky-article-link .theme-sticky-article {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 1rem;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 400px;
    min-height: 90px;
    position: absolute;
    top: 0;
}
.sticky-article-link .theme-sticky-article .entry-image {
    width: 100px;
    flex-shrink: 0;
}
.sticky-article-prev .theme-sticky-article {
    left: auto;
    right: 0;
    padding-right: 15px;
}
.sticky-article-next .theme-sticky-article {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    padding-left: 15px;
    left: 0;
    right: auto;
}
@media only screen and (max-width: 575px) {
    .sticky-article-navigation {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
}
.theme-single-post-component {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}
.theme-single-post-component .entry-details a {
    text-decoration: none;
}
.theme-single-post-component .entry-image {
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.theme-single-post-component .entry-image:hover {
    opacity: 0.8;
}
.theme-single-post-component .single-component-content {
    display: grid;
    gap: 3rem;
}
@media only screen and (min-width: 482px) {
    .theme-single-post-component .single-component-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (min-width: 1000px) {
    body.has-sidebar .theme-single-post-component .single-component-content {
        grid-template-columns: repeat(3, 1fr);
    }
    body.no-sidebar .theme-single-post-component .single-component-content {
        grid-template-columns: repeat(4, 1fr);
    }
}
.theme-single-post-component {
    position: relative;
}
.single-author-info-area {
    margin-top: 3rem;
    padding: 2rem;
}
.single-author-info-area:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background-color: var(--theme-text-color);
    left: 0;
    right: 0;
    -webkit-mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAADklEQVQIW2NgQAXGZHAAGioAza6+Hk0AAAAASUVORK5CYII=) top left repeat;
    mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAADklEQVQIW2NgQAXGZHAAGioAza6+Hk0AAAAASUVORK5CYII=) top left repeat;
}
@media only screen and (min-width: 482px) {
    .single-author-info-area {
        margin-top: 4rem;
    }
}
@media only screen and (min-width: 992px) {
    .single-author-info-area {
        margin-top: 6rem;
    }
}
.single-author-info-wrapper {
    background-color: var(--theme-bg-color);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2rem;
    margin: 2rem;
    position: relative;
    z-index: 1;
}
.single-author-info-area .author-image {
    width: 11.6rem;
    height: 11.6rem;
}
.single-author-info-area .author-image a {
    display: block;
}
.single-author-info-area .author-name {
    font-size: 1.8rem;
    text-decoration: none;
    display: block;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.single-author-info-area .author-site {
    font-size: 1.2rem;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 0.6rem;
}
@media only screen and (max-width: 575px) {
    .single-author-info-area .single-author-info-wrapper {
        display: flex;
        flex-direction: column;
    }
    .single-author-info-area .author-image {
        width: 100%;
        height: 100%;
    }
    .single-author-info-area .author-details {
        width: 100%;
        padding: 0 20px 20px;
    }
}
/* Site Content
--------------------------------------------- */
#site-content .content-area,
#site-content .widget-area {
    padding-bottom: 2rem;
    padding-top: 2rem;
}
.has-sidebar #site-content .wrapper {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.has-sidebar #site-content #primary,
.has-sidebar #site-content #secondary {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
@media only screen and (min-width: 992px) {
    .has-sidebar #site-content .wrapper {
        flex-direction: row;
    }
    .has-sidebar.left-sidebar #site-content .wrapper {
        flex-direction: row-reverse;
    }
    .has-sidebar #site-content #primary {
        -ms-flex: 0 0 70%;
        flex: 0 0 70%;
        max-width: 70%;
    }
    .has-sidebar #site-content #secondary {
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
        max-width: 30%;
    }
    .has-sidebar.right-sidebar #site-content #primary {
        padding-right: 1.5rem;
    }
    .has-sidebar.left-sidebar #site-content #primary {
        padding-left: 1.5rem;
    }
    .has-sidebar #site-content #secondary,
    .has-sidebar #site-content #secondary {
        min-height: 100vh;
    }
    .has-sidebar.right-sidebar #site-content #secondary .widget {
        padding-left: 1.5rem;
    }
    .has-sidebar.left-sidebar #site-content #secondary .widget {
        padding-left: 1.5rem;
    }
}
@media only screen and (max-width: 991px) {
    .has-sidebar #site-content #primary,
    .has-sidebar #site-content #secondary {
        width: 100%;
        flex: 1;
    }
}
#site-content #secondary .widget .column,
#theme-offcanvas-widget .widget .column,
.theme-footer-top .widget .column {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 3rem;
}
.theme-article-post {
    position: relative;
}
.theme-article-post.theme-article-post-highlights:first-child,
.theme-article-post.theme-article-post-highlights:nth-child(2) {
    background-color: rgba(var(--theme-accent-rgb-color), 0.1);
}
.theme-article-post.theme-article-post-highlights:first-child .entry-details,
.theme-article-post.theme-article-post-highlights:nth-child(2) .entry-details {
    padding: 1rem;
}
.banner-article-post {
    display: flex;
    flex-direction: column;
    position: relative;
}
@media screen and (min-width: 768px) {
    .banner-article-post {
        flex-direction: row;
    }
    .banner-article-post .entry-image {
        flex: 0 0 60%;
        width: 60%;
        display: block;
        order: 1;
    }
    .banner-article-post .entry-details {
        flex: 1;
        padding: 0 20px 0 0;
    }
}
.theme-tiles-post {
    margin-bottom: 2rem;
}
.site-banner-section .theme-tiles-post {
    margin-bottom: 1rem;
}
.theme-tiles-post .entry-image {
    background-color: #000;
}
.theme-tiles-post:hover .entry-image img,
.theme-tiles-post:focus .entry-image img {
    filter: alpha(opacity=85);
    opacity: 0.85;
}
.theme-tiles-post .entry-details {
    background-image: -moz-linear-gradient(
            to bottom,
            transparent 0,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
    );
    background-image: -ms-linear-gradient(
            to bottom,
            transparent 0,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
    );
    background-image: -o-linear-gradient(
            to bottom,
            transparent 0,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
    );
    background-image: -webkit-linear-gradient(
            to bottom,
            transparent 0,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
    );
    background-image: -webkit-gradient(
            linear,
            center top,
            center bottom,
            from(transparent),
            to(rgba(0, 0, 0, 0.9))
    );
    background-image: linear-gradient(
            to bottom,
            transparent 0,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
    );
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
}
.theme-tiles-post .entry-details,
.theme-tiles-post .entry-details a:not(:hover):not(:focus) {
    color: var(--theme-white-color);
}
.theme-widget-focus {
    margin-bottom: 2rem;
    border-bottom: 1px solid;
}
.theme-widget-focus .entry-details {
    min-height: 10rem;
}
.theme-list-post {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid;
}
.theme-list-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.site-read-more-section .theme-list-post,
.widget-story-list .theme-list-post {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}
.theme-list-post .entry-image,
.theme-list-post .entry-details {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}
.theme-list-post .entry-image {
    overflow: hidden;
    position: relative;
    width: calc(100% * 1 / 3.5);
}
.theme-list-post .entry-details {
    flex: 1;
    min-width: 1px;
}
.newsxpress-article-wrapper .entry-summary {
    font-size: 1.6rem;
}
/* Archive style 1
*-------------------------------------------*/
.newsxpress-archive_style_1 > article {
    border-bottom: 1px solid;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}
.newsxpress-archive_style_1 > article .entry-image,
.newsxpress-archive_style_1 > article .entry-header {
    margin-bottom: 2rem;
}
/* Archive style 2
*-------------------------------------------*/
.newsxpress-archive_style_2 > article {
    margin-bottom: 2rem;
}
.newsxpress-archive_style_2 > article .entry-summary {
    margin: 1rem 0 0;
}
.newsxpress-archive_style_2 > article .entry-summary p {
    font-size: 1.4rem;
    margin: 0;
}
.newsxpress-archive_style_2 > article .article-block-wrapper .entry-title-big {
    font-size: var(--theme-font-size-medium);
    margin-top: 1rem;
}
@media screen and (min-width: 768px) {
    .newsxpress-archive_style_2 .article-block-wrapper {
        display: grid;
        grid-template-columns: 45% 55%;
    }
    .newsxpress-archive_style_2 .article-block-wrapper .entry-image {
        border: none;
        grid-column: 1;
        grid-row: span 6;
        flex-direction: column;
        margin: 0 2rem 0 0;
    }
    .newsxpress-archive_style_2 .article-block-wrapper .entry-image .featured-media {
        margin: 0;
    }
}
@media screen and (max-width: 1024px) {
    .newsxpress-archive_style_2 > article .entry-summary {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
}
/* Archive style 3
*-------------------------------------------*/
.newsxpress-archive_style_3 {
    display: grid;
}
.newsxpress-archive_style_3 > article {
    border-style: solid;
    border-width: 0.1rem;
    margin-bottom: 2rem;
}
.newsxpress-archive_style_3 > article .article-block-wrapper {
    padding: 3rem;
}
@media only screen and (min-width: 576px) {
    .newsxpress-archive_style_3 {
        grid-template-columns: 1fr 1fr;
    }
    .newsxpress-archive_style_3 > article:nth-child(3n + 1) {
        grid-column: span 2;
    }
    .newsxpress-archive_style_3 > article:not(:nth-child(3n + 1)) .entry-title {
        font-size: 2rem;
    }
    .newsxpress-archive_style_3 > article:nth-child(3n-2) {
        border-width: 0.1rem;
    }
    .newsxpress-archive_style_3 > article:nth-child(3n-1) {
        border-width: 0 0.05rem 0 0.1rem;
    }
    .newsxpress-archive_style_3 > article:nth-child(3n) {
        border-width: 0 0.1rem 0 0.05rem;
    }
    .newsxpress-archive_style_3 > article {
        margin-bottom: 0;
    }
}
/* Archive style 4
*-------------------------------------------*/
.newsxpress-archive_style_4 {
    display: grid;
    border-width: 1px 0 0 1px;
}
.newsxpress-archive_style_4 .newsxpress-bg-image {
    margin-bottom: 0;
    min-height: 30rem;
    border: none;
    outline: 3px solid var(--theme-bg-color);
    position: relative;
}
.newsxpress-archive_style_4 .newsxpress-bg-image .entry-summary,
.newsxpress-archive_style_4 .newsxpress-bg-image .entry-image,
.newsxpress-archive_style_4 .newsxpress-bg-image .entry-meta,
.newsxpress-archive_style_4 .newsxpress-bg-image .tags-links,
.newsxpress-archive_style_4 .newsxpress-bg-image .edit-link {
    display: none;
}
.newsxpress-archive_style_4 .newsxpress-bg-image a {
    color: #ffffff;
}
.newsxpress-archive_style_4 .newsxpress-bg-image a:hover {
    color: var(--theme-accent-color);
}
.newsxpress-archive_style_4 .newsxpress-bg-image .entry-title {
    font-size: 2rem;
}
.newsxpress-archive_style_4 .newsxpress-bg-image .newsxpress-entry-categories {
    justify-content: center;
}
.newsxpress-archive_style_4 .newsxpress-bg-image::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.6;
    height: 100%;
    width: 100%;
}
.newsxpress-archive_style_4 .newsxpress-bg-image .article-block-wrapper {
    margin: 0;
    padding: 0 2rem;
    max-width: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    text-align: center;
}
@media only screen and (min-width: 576px) {
    .newsxpress-archive_style_4 {
        grid-template-columns: 1fr 1fr;
    }
}
.theme-sticky-component {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    -ms-flex-item-align: start;
    align-self: flex-start;
}
@media (max-width: 991px) {
    .theme-sticky-component {
        position: relative;
    }
}
.site-section {
    border-bottom: 0.1rem solid;
    padding-bottom: 2rem;
    padding-top: 2rem;
    position: relative;
    width: 100%;
}
.site-ticker-section {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}
.trending-tags-section {
    padding-bottom: 1rem;
    padding-top: 1rem;
}
.site-swiper-section {
    padding-bottom: 0;
    padding-top: 0;
}
.site-featured-section .theme-list-post .entry-image {
    width: 15rem;
}
@media (max-width: 1400px) {
    .site-featured-section .theme-list-post .entry-image {
        width: 10rem;
    }
    .site-featured-section .theme-list-post .entry-image-thumbnail img {
        height: 8rem
    }
}
.site-banner-section.data-bg {
    padding-bottom: 3rem;
    margin-bottom: 4rem;
    padding-top: 4rem;
}
.site-banner-section .site-banner-area {
    border-bottom: 0.1rem solid;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.site-banner-section .site-banner-lower {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
    .site-banner-section .site-banner-middle .column {
        border-right: 1px solid;
    }
    .site-banner-section .site-banner-middle .column:last-child {
        border-right: none;
    }
}
.site-read-more-section .theme-default-post .entry-image {
    margin-bottom: 0.5rem;
}
.recommendation-wrapper {
    position: relative;
}
@media screen and (min-width: 768px) {
    .recommendation-wrapper .recommendation-button-prev {
        left: -5rem;
    }
    .theme-widget-carousel .widget-carousel-prev {
        left: 0;
        top: var(--swiper-navigation-top-offset, 35%);
    }
    .recommendation-wrapper .recommendation-button-next {
        right: -5rem;
    }
    .theme-widget-carousel .widget-carousel-next {
        right: 0;
        top: var(--swiper-navigation-top-offset, 35%);
    }
    .theme-widget-carousel .widget-carousel-next:after,
    .theme-widget-carousel .widget-carousel-prev:after,
    .recommendation-wrapper .recommendation-button-next:after,
    .recommendation-wrapper .recommendation-button-prev:after {
        font-size: 3rem;
        filter: alpha(opacity=65);
        opacity: 0.65;
    }
}
/* marquee  */
.theme-marquee {
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
    .theme-marquee {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
}
.marquee-content-container {
    display: flex;
    align-items: center;
}
.marquee-content-left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 5rem;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.marquee-content-left .site-ticker-title {
    font-size: 1.6rem;
    margin: 0;
    padding-left: 3rem;
    padding-right: 1.5rem;
    text-transform: uppercase;
}
.site-ticker-title .ticker-loader {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #fff #fff transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
    left: -24px;
    top: 0;
}
.site-ticker-title .ticker-loader::after,
.site-ticker-title .ticker-loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}
.site-ticker-title .ticker-loader::before {
    width: 32px;
    height: 32px;
    border-color: transparent transparent var(--theme-accent-color) var(--theme-accent-color);
    animation: rotation 1.5s linear infinite;
}
.site-ticker-title .ticker-loader::after {
    border-color: var(--theme-accent-secondary-color) var(--theme-accent-secondary-color) transparent transparent;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
.marquee-content-right {
    width: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}
.theme-marquee-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.8rem;
    padding-right: 0.8rem;
}
.theme-marquee-item .theme-article-post{
    align-items: center;
}
.theme-marquee-item .theme-list-post .entry-image {
    width: 7rem;
}
.theme-marquee-item .theme-list-post .entry-details {
    max-width: 30rem;
}
.webpage-is-ready .marquee-content-right {
    opacity: 1;
    visibility: visible;
}
.webpage-is-ready .theme-marquee {
    height: auto;
}
.rtl .marquee-content-right {
    /*rtl:begin:ignore*/
    direction: ltr;
    /*rtl:end:ignore*/
}
@media only screen and (max-width: 575px) {
    .marquee-content-container {
        display: block;
    }
    .marquee-content-container .marquee-content-left {
        margin-bottom: 2rem;
    }
}
.site-banner-section .swiper .swiper-button-next,
.site-banner-section .swiper .swiper-button-prev {
    top: 2rem;
    left: inherit;
    height: 3rem;
    width: 3rem;
}
.site-banner-section .swiper .swiper-button-next {
    right: 1rem;
}
.site-banner-section .swiper .swiper-button-prev {
    right: 4.2rem;
}
.site-banner-section .swiper .swiper-button-next:after,
.site-banner-section .swiper .swiper-button-prev:after {
    font-size: 1.4rem;
}
.site-banner-layout-3 .column-grid-template .theme-article-post,
.site-banner-layout-4 .column-grid-template .theme-article-post {
    flex: 1;
    position: relative;
    min-height: 28rem;
}
.site-banner-layout-3 .column-grid-template .theme-tiles-post,
.site-banner-layout-4 .column-grid-template .theme-tiles-post {
    margin-bottom: 0;
}
.site-banner-layout-2 .main-banner-slider .theme-tiles-post .entry-details {
    padding: 2rem 2rem 5rem;
}
.site-banner-layout-3
.column-grid-template
.theme-article-post-1
.entry-details,
.site-banner-layout-4 .theme-tiles-post .entry-details {
    padding: 3rem;
}
.site-banner-layout-4 .column-grid-template .theme-article-post-1 {
    grid-area: item1;
}
.site-banner-layout-4 .column-grid-template .theme-article-post-2 {
    grid-area: item2;
}
.site-banner-layout-4 .column-grid-template .theme-article-post-3 {
    grid-area: item3;
}
.site-banner-layout-4 .column-grid-template {
    grid-template-areas: "item1 item2 item3";
    grid-template-columns: 45% 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0.2rem;
}
@media (max-width: 1024px) {
    .site-banner-layout-4 .column-grid-template {
        grid-template-areas: "item1 item1" "item2 item3";
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 575px) {
    .site-banner-layout-4 .column-grid-template {
        display: block;
    }
}
.site-banner-layout-3 .column-grid-template .theme-article-post-1 {
    grid-area: item1;
}
.site-banner-layout-3 .column-grid-template .theme-article-post-2 {
    grid-area: item2;
}
.site-banner-layout-3 .column-grid-template .theme-article-post-3 {
    grid-area: item3;
}
.site-banner-layout-3 .column-grid-template .theme-article-post-4 {
    grid-area: item4;
}
.site-banner-layout-3 .column-grid-template .theme-article-post-5 {
    grid-area: item5;
}
.site-banner-layout-3 .column-grid-template {
    grid-template-areas: "item1 item2 item4" "item1 item3 item5";
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.2rem;
}
.site-banner-layout-3 .column-grid-template .theme-article-post-1 {
    min-height: 56rem;
}
@media only screen and (min-width: 1025px) {
    .site-banner-layout-4
    .column-grid-template
    .theme-article-post-2
    .entry-header
    .entry-title,
    .site-banner-layout-4
    .column-grid-template
    .theme-article-post-3
    .entry-header
    .entry-title {
        font-size: var(--theme-font-size-big);
    }
}
@media (max-width: 1024px) {
    .site-banner-layout-3 .column-grid-template {
        grid-template: unset;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-auto-rows: minmax(auto, 250px);
    }
    .site-banner-layout-3 .column-grid-template .theme-article-post {
        grid-area: initial;
    }
    .site-banner-layout-3 .column-grid-template .theme-article-post-1 {
        grid-column: 1/-1;
    }
}
@media only screen and (max-width: 575px) {
    .site-banner-layout-3 .column-grid-template {
        display: block;
    }
    .site-banner-layout-3 .column-grid-template .theme-article-post-1 {
        min-height: 40rem;
    }
}
.trending-tags-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}
.trending-tags-wrapper .trending-tags-icon {
    background-color: var(--theme-accent-color);
    border-radius: 100%;
    color: #fff;
    display: flex;
    -ms-flex-wrap: wrap;
    align-content: center;
    align-items: center;
    height: 3rem;
    justify-content: center;
    line-height: 1;
    width: 3rem;
}
.trending-tags-wrapper .trending-tags-title .trending-section-title {
    font-size: 1.6rem;
    margin: 0 2rem 0 1rem;
    text-transform: inherit;
}
@media screen and (max-width: 991px) {
    .trending-tags-panel {
        margin-top: 1rem;
    }
}
.trending-tags-wrapper .trending-tags-panel a {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.site-categories-panel {
    background-color: #000;
    position: relative;
    height: 30rem;
    overflow: hidden;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.site-categories-panel::before,
.site-categories-panel::after {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    z-index: 1;
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
.site-categories-panel::before {
    right: 1rem;
    bottom: 1rem;
    border-right: 3px solid rgba(var(--theme-white-rgb-color), 0.8);
    border-bottom: 3px solid rgba(var(--theme-white-rgb-color), 0.8);
}
.site-categories-panel::after {
    left: 1rem;
    top: 1rem;
    border-left: 3px solid rgba(var(--theme-white-rgb-color), 0.8);
    border-top: 3px solid rgba(var(--theme-white-rgb-color), 0.8);
}
.site-categories-panel a {
    display: block;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.site-categories-panel a img {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.site-categories-panel a img {
    display: block;
    height: 46rem;
    object-fit: cover;
    width: 100%;
}
.site-categories-panel:hover::before,
.site-categories-panel:hover:after,
.site-categories-panel:focus::before,
.site-categories-panel:focus:after {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
    height: -webkit-calc(100% - 23px);
    height: calc(100% - 23px);
}
.site-categories-panel:hover img,
.site-categories-panel:focus img {
    -webkit-transform: scale(1.2) rotate(5deg);
    -ms-transform: scale(1.2) rotate(5deg);
    -o-transform: scale(1.2) rotate(5deg);
    transform: scale(1.2) rotate(5deg);
}
.site-categories-panel a.btn-readmore {
    position: absolute;
    left: 50%;
    top: 50%;
    width: unset;
    white-space: nowrap;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--theme-accent-color);
    color: var(--theme-white-color);
    margin: auto;
    text-transform: none;
    padding: 18px 35px;
    z-index: 3;
}
.site-categories-panel a.btn-readmore::after {
    content: "";
    border: 1px solid var(--theme-accent-color);
    background: none;
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    width: auto;
    height: auto;
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
.site-categories-panel a.btn-readmore:hover,
.site-categories-panel a.btn-readmore:focus {
    background-color: var(--theme-accent-hover-color);
    color: var(--theme-white-color);
}
.site-categories-panel a.btn-readmore:hover:after,
.site-categories-panel a.btn-readmore:focus:after {
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    opacity: 0;
    visibility: hidden;
}
.site-separator-section {
    background-color: transparent;
    background-image: linear-gradient(180deg, transparent 40%, var(--theme-component-color) 40%);
    margin-bottom: 0;
    padding-bottom: 4rem;
}
@media screen and (max-width: 991px) {
    .site-separator-section {
        background: none;
    }
}
.site-bg-separator {
    background-color: var(--theme-component-color);
    background-image: url(/wp-content/themes/newsxpress-pro/assets/images/shape.png);
    padding-bottom: 6rem;
    padding-top: 6rem;
}
.site-separator-section .article-bg-light .entry-details,
.site-bg-separator .article-bg-light .entry-details {
    background: #fff;
    padding: 1.5rem;
    min-height: 12rem;
}
.site-swiper-layout-slider .has-post-thumbnail .slider-content {
    position: absolute;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.site-swiper-layout-carousal {
    padding-top: 3rem;
}
.site-swiper-layout-carousal .slider-content {
    padding-top: 1.5rem;
}
.site-swiper-layout-slider .has-post-thumbnail,
.site-swiper-layout-slider .has-post-thumbnail a {
    color: #fff;
}
.site-swiper-section .banner-slider-align.text-center .newsxpress-meta {
    background: none;
    justify-content: center;
}
.site-swiper-section .banner-slider-align.text-left .newsxpress-meta {
    justify-content: flex-start;
}
.site-swiper-section .banner-slider-align.text-right .newsxpress-meta {
    justify-content: flex-end;
}
.theme-widget-slider .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--theme-component-color);
}
.theme-swiper-pagination {
    position: relative;
    margin-top: 1.5rem;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    color: var(--theme-white-color);
    border-radius: 100%;
    width: 5rem;
    height: 5rem;
}
.swiper-button-transparent {
    background: none;
}
.site-banner-layout-1,
.site-banner-layout-3,
.site-banner-layout-4 {
    padding-top: 2rem;
}
/* Single Featured Banner
--------------------------------------------- */
.single-featured-banner {
    position: relative;
    min-height: 60rem;
}
.single-featured-banner .featured-banner-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    width: 100%;
    z-index: 10;
}
.single-featured-banner .featured-banner-content .post-read-time {
    display: inline-block;
    margin-bottom: 2rem;
}
@media (max-width: 767px) {
    .single-featured-banner .featured-banner-content a:not(:hover):not(:focus) {
        color: inherit;
    }
}
.single-featured-banner .featured-banner-content a:not(:hover):not(:focus) {
    color: inherit;
}
.single-featured-banner .featured-banner-media {
    position: relative;
    background-color: #e9e9e9;
}
@media (max-width: 767px) {
    .single-featured-banner .featured-banner-media {
        width: 100%;
    }
    .single-featured-banner .featured-banner-media::before {
        position: absolute;
        content: "";
        inset: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 9;
    }
}
.single-featured-banner .featured-banner-media .data-bg {
    width: 100%;
}
.single-featured-banner
.featured-banner-content
*:where(.entry-breadcrumb .breadcrumbs, .newsxpress-meta-group, .entry-title) {
    color: #fff;
    padding: 0.4rem;
    margin-bottom: 1.6rem;
}
.single-featured-banner .featured-banner-content .entry-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}
.single-featured-banner .featured-banner-content .entry-title {
    display: inline;
    line-height: 1.4;
}
.single-featured-banner
.featured-banner-content
*:where(.entry-breadcrumb .breadcrumbs, .newsxpress-meta-group) {
    display: inline-flex;
}
@media (max-width: 575px) {
    .single-featured-banner
    .featured-banner-content
    *:where(
      .entry-breadcrumb .breadcrumbs,
      .newsxpress-meta-group,
      .entry-title
    ) {
        margin-bottom: 0.8rem;
    }
}
@media (min-width: 768px) {
    .single-featured-banner
    .featured-banner-content
    *:where(
      .entry-breadcrumb .breadcrumbs,
      .newsxpress-meta-group,
      .entry-title
    ) {
        background-color: rgba(0, 0, 0, 0.6);
    }
}
/* Banner
--------------------------------------------- */
/* Comments
--------------------------------------------- */
.single-comments-area {
    margin-bottom: 0;
    padding-top: 3rem;
    position: relative;
    border-top: 1px solid;
}
.single-comments-area:before {
    content: "";
    position: absolute;
    left: 1.5rem;
    top: 3em;
    bottom: 0;
    border-left: 1px solid;
}
.single-comments-area.no-comments:after {
    display: none;
}
.comment-number {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    margin-right: 3rem;
    line-height: 3rem;
    border: 1px solid #afafaf;
    text-align: center;
    color: #afafaf;
    background: white;
}
.comment-number.no-comments {
    position: relative;
    z-index: 1;
}
.comments-area-title .comments-title,
.comments-area-title a,
.comment-reply-title .comments-title,
.comment-reply-title a {
    display: inline-block;
    vertical-align: middle;
}
.comments-area-title .comments-title,
.comment-reply-title .comments-title,
.comment-reply-title {
    margin: 0;
    margin-right: 6px;
    font-size: var(--theme-font-size-medium);
    text-transform: none;
    -webkit-transform: none;
    transform: none;
}
.comments-area-title {
    position: relative;
}
.comments-area-title .comment-number {
    position: relative;
}
.commentlist > .comment,
.commentlist > .pingback,
.commentlist > .trackback {
    padding-left: 3rem;
}
@media not screen and (min-width: 992px) {
    .depth-1 > .comment-article > .comment-number {
        left: 0;
    }
}
.comments_add-comment {
    margin-top: 3px;
}
.commentlist {
    list-style: none;
    margin: 0;
    border-left: 0;
    padding-left: 0;
}
li.comment,
li.pingback,
li.trackback {
    position: relative;
    display: block;
    margin-top: 3em;
    margin-bottom: 3em;
}
li.comment .comment-number,
li.pingback .comment-number,
li.trackback .comment-number {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
@media not screen and (min-width: 992px) {
    li.comment .comment-number,
    li.pingback .comment-number,
    li.trackback .comment-number {
        left: -3em;
    }
}
li.comment:last-child,
li.pingback:last-child,
li.trackback:last-child {
    margin-bottom: 0;
}
li.comment .children,
li.pingback .children,
li.trackback .children {
    position: relative;
    margin: 3rem 0;
}
@media not screen and (min-width: 992px) {
    li.comment .children,
    li.pingback .children,
    li.trackback .children {
        margin-left: 0;
    }
}
@media only screen and (min-width: 992px) {
    li.comment .children li,
    li.pingback .children li,
    li.trackback .children li {
        padding-left: 2em;
    }
    li.comment .children li:before,
    li.pingback .children li:before,
    li.trackback .children li:before {
        content: "";
        position: absolute;
        top: 1.5rem;
        border-top: 1px solid;
    }
}
li.comment .children li .comment-number,
li.pingback .children li .comment-number,
li.trackback .children li .comment-number {
    border: 1px solid #afafaf;
    background: #afafaf;
    color: white;
}
li.depth-2:before {
    left: -54px;
    width: 60px;
}
@media only screen and (min-width: 992px) {
    li.depth-3:before {
        left: -126px;
        width: 126px;
    }
    li.depth-4:before {
        left: -198px;
        width: 198px;
    }
    li.depth-5:before {
        left: -272px;
        width: 272px;
    }
}
.comment__author-name {
    font-size: 14px;
}
.comment__author-name a {
    color: black;
}
.bypostauthor {
    color: inherit;
}
.comment-article {
    margin-bottom: 0;
    margin-left: 3rem;
}
.comment-article:hover .comment-edit-link,
.comment-article:hover .comment-reply-link {
    opacity: 1;
}
.comment__avatar {
    margin-right: 0.75em;
}
.comment__avatar img {
    width: 3.75em;
    height: auto;
}
.comment__avatar:empty {
    display: none;
}
.comment__timestamp {
    color: #3d3e40;
}
.comment__avatar {
    margin-bottom: 24px;
}
.comment__content {
    position: relative;
    margin-bottom: 3rem;
    font-size: 0.875em;
    line-height: 1.71429;
    color: #8c888c;
}
.comment__links {
    display: inline-block;
    margin-left: 1.71429em;
    font-size: 0.875em;
    line-height: 1.71429;
}
.comment-edit-link,
.comment-reply-link {
    color: #3d3e40;
    opacity: 0;
    margin-right: 0.85714em;
    -webkit-transition: opacity 0.15s ease-in-out;
    transition: opacity 0.15s ease-in-out;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
@media not screen and (min-width: 992px) {
    .comment-edit-link,
    .comment-reply-link {
        opacity: 1;
    }
}
.comment-reply-link {
    color: #8c888c;
}
.comment-form p.logged-in-as {
    margin-bottom: 0.75em;
}
.comment-respond {
    position: relative;
    margin-bottom: 1.5em;
}
@media only screen and (min-width: 992px) {
    .comment .comment-respond {
        padding-left: 0;
        margin-right: 0;
    }
}
.comment .comment-respond {
    margin-left: 1.5em;
}
#cancel-comment-reply-link {
    text-decoration: underline;
}
/* Comments Form */
@media only screen and (min-width: 992px) {
    .comment-form {
        padding-left: 4.5em;
    }
}
.comment .comment-form {
    padding-left: 0;
}
.comment-form iframe {
    padding-left: 36px;
}
@media only screen and (min-width: 992px) {
    .comment-form > .comment-subscription-form {
        width: 70%;
    }
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 0;
}
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    margin-bottom: 1.5em;
}
@media not screen and (min-width: 992px) {
    .comment-form-author input,
    .comment-form-email input,
    .comment-form-url input {
        margin-bottom: 0.75em;
    }
}
.comment-form-comment,
.logged-in-as {
    width: 100%;
}
.comment-form-comment textarea,
.comment-subscription-form textarea {
    width: 100%;
    max-width: 100%;
    line-height: 1.5;
}
.form-submit {
    margin-top: 0.75em;
    margin-bottom: 0;
    text-align: right;
}
.form-submit #submit {
    border: 0;
}
@media not screen and (min-width: 992px) {
    .form-submit #submit {
        width: 100%;
    }
}
.comment-subscription-form {
    float: left;
    clear: left;
    margin-top: 0.75em;
    margin-bottom: 0.375em;
}
.comment-subscription-form + .comment-subscription-form {
    margin-top: 0;
}
.comment-subscription-form input[type="checkbox"] {
    margin-right: 0.75em;
    position: relative;
    top: -0.05em;
}
.add-comment {
    margin-top: 3em;
}
.add-comment .add-comment__button {
    position: relative;
    z-index: 1;
    margin-right: 0.5em;
    font-size: 1.5em;
    line-height: 1.5;
}
.add-comment .add-comment__text {
    font-size: 1.25em;
    line-height: 1.2;
    font-weight: bold;
}
/* Comments Navigation */
.comment-navigation {
    position: relative;
    padding-left: 3.75em;
    margin-top: 3em;
    margin-bottom: 3em;
}
.comment-navigation .comment-number {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 30px;
}
.comment-navigation .assistive-text {
    margin-top: 0;
    margin-left: 8px;
    font-size: 28px;
    -webkit-transform: none;
    transform: none;
}
.comment-navigation .nav-previous a,
.comment-navigation .nav-next a {
    font-size: 18px;
}
.comment-navigation .nav-previous {
    float: left;
}
.comment-navigation .nav-previous a:before {
    content: "\2190 ";
}
.comment-navigation .nav-previous a:after {
    content: "";
}
.comment-navigation .nav-next {
    float: right;
}
.comment-navigation .nav-next a:before {
    content: "";
}
.comment-navigation .nav-next a:after {
    content: " \2192";
}
.nocomments {
    -webkit-transform: none;
    transform: none;
}
.nocomments span {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.75em;
    line-height: 1.28571;
    line-height: 48px;
}
.no-comments-box {
    position: relative;
    z-index: 1;
}
div#respond {
    padding-top: 0;
}
div#respond #reply-title {
    padding-left: 4rem;
}
div#respond p.comment-subscription-form label {
    color: #999;
}
.comment-form-cookies-consent input[type="checkbox"] {
    margin-right: 0.75em;
}
/* Widgets
--------------------------------------------- */
.widget {
    margin-bottom: 2rem;
}
.widget:last-child {
    margin-bottom: 0;
}
.widget_search .search-form {
    display: flex;
    flex: auto;
    flex-wrap: nowrap;
    max-width: 100%;
}
.widget_search .search-form label {
    margin: 0;
    width: 100%;
}
.theme-widget-header {
    margin-bottom: 2rem;
}
.widget ul,
.widget ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.widget li {
    margin: 0;
}
.widget select {
    max-width: 100%;
}
.widget_recent_entries ul,
.widget_recent_entries ol,
.widget_categories ul,
.widget_categories ol,
.widget_archive ul,
.widget_archive ol,
.widget_meta ul,
.widget_meta ol,
.widget_recent_comments ul,
.widget_recent_comments ol,
.widget_nav_menu ul,
.widget_nav_menu ol,
.widget_block .wp-block-group__inner-container ul,
.widget_block .wp-block-group__inner-container ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.widget_recent_entries ul li,
.widget_recent_entries ol li,
.widget_categories ul li,
.widget_categories ol li,
.widget_archive ul li,
.widget_archive ol li,
.widget_meta ul li,
.widget_meta ol li,
.widget_recent_comments ul li,
.widget_recent_comments ol li,
.widget_nav_menu ul li a,
.widget_nav_menu ol li a,
.widget_block .wp-block-group__inner-container ul li,
.widget_block .wp-block-group__inner-container ol li {
    display: block;
    border-bottom: 1px solid;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}
.widget_recent_entries ul li:last-child,
.widget_recent_entries ol li:last-child,
.widget_categories ul li:last-child,
.widget_categories ol li:last-child,
.widget_archive ul li:last-child,
.widget_archive ol li:last-child,
.widget_meta ul li:last-child,
.widget_meta ol li:last-child,
.widget_recent_comments ul li:last-child,
.widget_recent_comments ol li:last-child,
.widget_block .wp-block-group__inner-container ul li:last-child,
.widget_block .wp-block-group__inner-container ol li:last-child {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.theme-widget-list.style_2 .theme-widget-article {
    flex-direction: row-reverse;
}
.theme-widget-list.style_3 .theme-widget-article:nth-child(3n + 1) {
    flex-direction: column;
}
.theme-widget-list.style_3 .theme-widget-article:nth-child(3n-1) {
    flex-direction: row-reverse;
}
.theme-widget-list.style_1 .theme-widget-article .entry-image,
.theme-widget-list.style_2 .theme-widget-article .entry-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-item-align: start;
    align-self: flex-start;
}
.theme-widgetarea-small .theme-single-category-widget .theme-widget-article .entry-image {
    margin-bottom: 1.5rem;
}
.theme-widget-list.style_1 .theme-widget-article .entry-details,
.theme-widget-list.style_2 .theme-widget-article .entry-details {
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.theme-recent-widget.theme-widget-list.style_3 .theme-article-post {
    flex-direction: column;
}
.theme-recent-widget.theme-widget-list.style_3 .theme-article-post .entry-image {
    width: 100%;
}
.theme-recent-widget.theme-widget-list.style_3 .theme-article-post .entry-image-thumbnail img {
    height: 200px;
}
#site-content #secondary .theme-single-category-widget .theme-widget-article,
#theme-offcanvas-widget .theme-single-category-widget .theme-widget-article,
.theme-footer-top .theme-single-category-widget .theme-widget-article {
    display: block;
}
#site-content
#secondary
.theme-single-category-widget
.theme-list-post
.entry-image,
#theme-offcanvas-widget
.theme-single-category-widget
.theme-list-post
.entry-image,
.theme-footer-top
.widget
.theme-single-category-widget
.theme-list-post
.entry-image {
    width: 100%;
}
#site-content #secondary .theme-single-category-widget .theme-list-post .entry-image .entry-image-medium img,
#theme-offcanvas-widget .theme-single-category-widget .theme-list-post .entry-image .entry-image-medium img,
.theme-footer-top .widget .theme-single-category-widget .theme-list-post .entry-image .entry-image-medium img {
    height: 240px;
    min-height: inherit;
}
.theme-widget-tab {
    width: 100%;
}
.widget-tab-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid;
}
.tab-header-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}
.tab-header-list li {
    flex: 1;
    text-align: center;
}
.tab-header-list li button {
    background-color: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 0.6rem;
    display: block;
    padding: 10px;
    width: 100%;
}
.tab-header-list li.active button,
.tab-header-list li button:hover,
.tab-header-list li button:focus {
    background-color: var(--theme-accent-color);
}
.tab-header-list li .tab-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
.tab-header-list li .svg-icon {
    height: 2rem;
    width: 2rem;
}
.widget-tab-content .tab-content-panel {
    display: none;
}
.widget-tab-content .tab-content-panel.active {
    display: block;
}
.theme-single-category-widget .theme-list-post .entry-image {
    width: 45%;
}
@media (max-width: 575px) {
    .theme-single-category-widget .theme-list-post .entry-image {
        width: 100%;
    }
}
.theme-single-category-widget.style_3 .theme-list-post {
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}
.theme-single-category-widget.style_3 .theme-list-post:nth-child(3n + 1) .entry-image {
    width: 100%;
}
.theme-single-category-widget.style_3 .theme-list-post:nth-child(3n + 1) .entry-image-medium img {
    min-height: 480px;
}
@media screen and (min-width: 768px) {
    .theme-single-category-widget.style_4 {
        display: grid;
        grid-template-columns: 50% 50%;
        column-gap: 10px;
    }
    .theme-single-category-widget.style_4 > .theme-article-post:first-child {
        border: none;
        grid-column: 1;
        grid-row: span 6;
        flex-direction: column;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .theme-single-category-widget.style_4 > .theme-article-post:first-child .entry-image {
        width: 100%;
    }
    .theme-single-category-widget.style_4 > .theme-article-post:not(:first-child) .entry-image {
        width: 10rem;
    }
    .theme-single-category-widget.style_4 > .theme-article-post:not(:first-child) .entry-image-medium img {
        height: 100px;
    }
    .theme-single-category-widget.style_4 > .theme-article-post:not(:first-child) .entry-title {
        font-size: var(--theme-font-size-small);
    }
}
.theme-author-widget {
    display: grid;
    gap: 2rem;
    max-width: 40rem;
}
.theme-author-widget.has-round-image .author-image {
    border-radius: 100%;
    overflow: hidden;
    width: 20rem;
    height: 20rem;
}
.theme-author-widget.has-round-image .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.theme-author-widget .author-social {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.theme-author-widget .author-social a .svg-icon {
    display: flex;
    width: 3.6rem;
    height: 3.6rem;
    border: 1px solid #dcd7ca;
    padding: 0.5rem;
}
.theme-author-widget .author-social a:hover .svg-icon {
    border-color: var(--theme-accent-color);
    fill: var(--theme-accent-color);
}
.theme-author-widget .author-details .author-name {
    font-size: var(--theme-font-size-medium);
}
.theme-author-widget .author-desc p:last-child {
    margin-bottom: 0;
}
.theme-author-widget.style_2 {
    justify-items: center;
    align-items: center;
    margin: 0 auto;
}
.theme-author-widget.style_2 .author-details {
    display: grid;
    justify-items: center;
    align-items: center;
    text-align: center;
}
.theme-author-widget.style_3 {
    max-width: 100%;
    grid-template-columns: auto 1fr;
    align-items: center;
}
@media only screen and (max-width: 767px) {
    .theme-author-widget.style_3 {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .theme-author-widget.style_3 .author-details {
        display: grid;
        justify-items: center;
        align-items: center;
        text-align: center;
    }
}
.newsxpress-social-menu-widget.style_1 .social-media-title {
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal !important;
    border: 0;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.newsxpress-social-menu-widget ul li a {
    background-color: var(--theme-component-color);
    color: #fff;
}
.newsxpress-social-menu-widget ul li a[href*="bitbucket.org"] {
    background-color: #205081;
}
.newsxpress-social-menu-widget ul li a[href*="dribbble.com"] {
    background-color: #ea4c89;
}
.newsxpress-social-menu-widget ul li a[href*="facebook.com"] {
    background-color: #3b5998;
}
.newsxpress-social-menu-widget ul li a[href*="skype.com"] {
    background-color: #00aff0;
}
.newsxpress-social-menu-widget ul li a[href*="foursquare.com"] {
    background-color: #f94877;
}
.newsxpress-social-menu-widget ul li a[href*="github.com"] {
    background-color: #2ea44f;
}
.newsxpress-social-menu-widget ul li a[href*="instagram.com"] {
    background-color: #8a3ab9;
}
.newsxpress-social-menu-widget ul li a[href*="linkedin.com"] {
    background-color: #0077b5;
}
.newsxpress-social-menu-widget ul li a[href*="pinterest.com"] {
    background-color: #e60023;
}
.newsxpress-social-menu-widget ul li a[href*="reddit.com"] {
    background-color: #ff4500;
}
.newsxpress-social-menu-widget ul li a[href*="slack.com"] {
    background-color: #e01563;
}
.newsxpress-social-menu-widget ul li a[href*="snapchat.com"] {
    background-color: #fffc00;
    color: #000;
}
.newsxpress-social-menu-widget ul li a[href*="tumblr.com"] {
    background-color: #35465c;
}
.newsxpress-social-menu-widget ul li a[href*="twitch.tv"] {
    background-color: #9146ff;
}
.newsxpress-social-menu-widget ul li a[href*="twitter.com"] {
    background-color: #1da1f2;
}
.newsxpress-social-menu-widget ul li a[href*="vimeo.com"] {
    background-color: #1ab7ea;
}
.newsxpress-social-menu-widget ul li a[href*="vk.com"] {
    background-color: #45668e;
}
.newsxpress-social-menu-widget ul li a[href*="whatsapp.com"] {
    background-color: #075e54;
}
.newsxpress-social-menu-widget ul li a[href*="wordpress.org"],
.newsxpress-social-menu-widget ul li a[href*="wordpress.com"] {
    background-color: #0087be;
}
.newsxpress-social-menu-widget ul li a[href*="yelp.com"] {
    background-color: #c41200;
}
.newsxpress-social-menu-widget ul li a[href*="youtube.com"] {
    background-color: #ff0000;
}
.newsxpress-social-menu-widget ul li a[href*="mailto"] {
    background-color: #cc0010;
}
.newsxpress-social-menu-widget ul li a[href*="spotify.com"] {
    background: #1db954;
}
.newsxpress-social-menu-widget ul li a:hover,
.newsxpress-social-menu-widget ul li a:focus {
    background-color: var(--theme-component-color);
    color: #fff;
}
.newsxpress-social-menu-widget.style_1 .newsxpress-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.newsxpress-social-menu-widget.style_1 .newsxpress-social-icons li,
.newsxpress-social-menu-widget.style_3 .newsxpress-social-icons li {
    text-align: center;
}
.newsxpress-social-menu-widget.style_1 .newsxpress-social-icons li a,
.newsxpress-social-menu-widget.style_3 .newsxpress-social-icons li a {
    border-radius: 2px;
    display: flex;
    line-height: 1;
    align-items: center;
    justify-content: center;
}
.newsxpress-social-menu-widget.style_1 .newsxpress-social-icons li a {
    width: 4rem;
    height: 4rem;
}
.newsxpress-social-menu-widget.style_2 .newsxpress-social-icons li:not(:last-child) {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}
.newsxpress-social-menu-widget.style_2 .newsxpress-social-icons li a {
    border-radius: 0.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.5rem;
    width: 100%;
}
.newsxpress-social-menu-widget.style_2 .newsxpress-social-icons li a .svg-icon {
    order: 1;
}
.newsxpress-social-menu-widget.style_2 .newsxpress-social-icons li a .social-media-title {
    order: 2;
}
.newsxpress-social-menu-widget.style_3 .newsxpress-social-icons {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}
.newsxpress-social-menu-widget.style_3 .newsxpress-social-icons li a {
    height: 7rem;
    flex-direction: column-reverse;
}
.newsxpress-social-menu-widget.style_3 .newsxpress-social-icons li a .social-media-title {
    font-size: 80%;
    margin: 0.5rem 0;
}
.theme-footer-panel {
    position: relative;
    margin-bottom: 2rem;
}
.theme-footer-panel > hr {
    border: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
    margin-bottom: 2rem;
}
.theme-footer-panel > .theme-viewmore-link {
    background-color: var(--theme-accent-color);
    color: #fff;
    display: block;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) skewX(-15deg);
    padding: 10px 15px;
    border-radius: 0;
}
.widget-footer-panel > .theme-viewmore-link:hover,
.widget-footer-panel > .theme-viewmore-link:focus {
    background-color: var(--theme-accent-hover-color);
}
.theme-widgetarea-full .newsxpress_carousel_widget {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.newsxpress_carousel_widget .widget-carousel-slide.style_2 .entry-details {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    text-align: center;
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    width: 100%;
}
.newsxpress_carousel_widget .widget-carousel-slide.style_2 .entry-details,
.newsxpress_carousel_widget .widget-carousel-slide.style_2 .entry-details a:not(:hover):not(:focus) {
    color: #fff;
}
.newsxpress_slider_widget .entry-details-wrapper {
    display: flex;
    flex-direction: column;
    padding-bottom: 3rem;
}
.newsxpress_slider_widget .entry-align-center,
.newsxpress_slider_widget .entry-align-center .newsxpress-meta {
    justify-content: center;
    text-align: center;
}
.newsxpress_slider_widget .entry-align-center p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.newsxpress_slider_widget .entry-align-left,
.newsxpress_slider_widget .entry-align-left .newsxpress-meta {
    justify-content: flex-start;
    text-align: left;
}
.newsxpress_slider_widget .entry-align-right,
.newsxpress_slider_widget .entry-align-right .newsxpress-meta {
    justify-content: flex-end;
    text-align: right;
}
.theme-widgetarea-small .newsxpress_slider_widget .entry-title {
    font-size: var(--theme-font-size-small);
}
.theme-widgetarea-full .theme-svg-seperator {
    color: rgba(0, 0, 0, 0.1);
    display: flex;
    height: 100%;
}
.theme-widgetarea-small .theme-svg-seperator {
    display: none;
    opacity: 0;
    visibility: hidden;
}
@media only screen and (min-width: 992px) {
    .theme-widgetarea-full .newsxpress_slider_widget .swiper-slide .entry-details .entry-title-big {
        font-size: var(--theme-font-size-large);
    }
}
@media screen and (min-width: 992px) {
    .theme-widgetarea-full .fullwidth-widget-content,
    .theme-widgetarea-full .theme-widget-footer {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(15, 1fr);
        grid-column-gap: 2rem;
    }
    .theme-widgetarea-full .widget-layout-1 .fullwidth-widget-content,
    .theme-widgetarea-full .widget-layout-1 .theme-widget-footer {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: -webkit-min-content 1fr;
        grid-template-rows: min-content 1fr;
        gap: 0 2rem;
    }
    .theme-widgetarea-full .widget-layout-2 .fullwidth-widget-content .theme-widget-panel.widget-panel-1 {
        grid-column: 1 / span 7;
        grid-row: 2 / span 1;
    }
    .theme-widgetarea-full .widget-layout-2 .fullwidth-widget-content .theme-svg-seperator {
        grid-column: 8 / span 1;
        grid-row: 1 / span 3;
    }
    .theme-widgetarea-full .widget-layout-2 .fullwidth-widget-content .theme-widget-panel.widget-panel-2 {
        grid-column: 9 / span 7;
        grid-row: 2 / span 1;
    }
    .theme-widgetarea-full .widget-layout-3 .fullwidth-widget-content .theme-widget-panel {
        grid-column: 1 / span 15;
    }
    .theme-widgetarea-full .widget-layout-3 .fullwidth-widget-content .widget-story-jumbotron {
        max-width: 100%;
        width: 100%;
    }
    .theme-widgetarea-full .widget-layout-3 .fullwidth-widget-content .widget-story-jumbotron .theme-article-mega {
        display: grid;
        grid-template-columns: repeat(15, 1fr);
        grid-column-gap: 2rem
    }
    .theme-widgetarea-full .widget-layout-4 .fullwidth-widget-content .theme-widget-panel.widget-panel-1 {
        grid-column: 1 / span 4;
    }
    .theme-widgetarea-full .widget-layout-4 .fullwidth-widget-content .theme-widget-panel.widget-panel-2 {
        grid-column: 5 / span 7;
    }
    .theme-widgetarea-full .widget-layout-4 .fullwidth-widget-content .theme-widget-panel.widget-panel-3 {
        grid-column: 12 / span 4
    }
    .theme-widgetarea-full .widget-layout-5 .fullwidth-widget-content .theme-widget-panel.widget-panel-1 {
        grid-column: 1 / span 10;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: -webkit-min-content 1fr;
        grid-template-rows: min-content 1fr;
        gap: 0 2rem
    }
    .theme-widgetarea-full .widget-layout-5 .fullwidth-widget-content .theme-widget-panel.widget-panel-2 {
        grid-column: 11 / span 5
    }
    .theme-widgetarea-full .widget-story-jumbotron .theme-article-mega .entry-image {
        grid-column: 1 / span 10
    }
    .theme-widgetarea-full .widget-story-jumbotron .theme-article-mega .entry-details {
        grid-column: 11 / span 5
    }
    .theme-widgetarea-full .widget-layout-3 .fullwidth-widget-content .theme-widget-panel.widget-panel-2 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: -webkit-min-content 1fr;
        grid-template-rows: min-content 1fr;
        gap: 0 2rem
    }
    .theme-widgetarea-full .widget-footer-panel {
        grid-column: 1 / span 15
    }
    .widget-footer-panel > .theme-viewmore-link {
        top: 60%;
        left: 50%
    }
    .theme-widgetarea-full .widget-layout-contentrich .fullwidth-widget-content .widget-panel-1 {
        grid-column: 1 / span 4
    }
    .theme-widgetarea-full .widget-layout-contentrich .fullwidth-widget-content .widget-panel-2 {
        grid-column: 5 / span 6
    }
    .theme-widgetarea-full .widget-layout-contentrich .fullwidth-widget-content .widget-panel-3 {
        grid-column: 11 / span 5
    }
    .theme-widgetarea-full .theme-widgetarea-categories .fullwidth-widget-content .theme-widget-panel {
        grid-column: 1 / span 16;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: -webkit-min-content 1fr;
        grid-template-rows: min-content 1fr;
        gap: 0 2rem
    }
    .theme-widgetarea-full .widget-layout-video .theme-widget-panel {
        grid-column: 1 / span 15
    }
    .theme-widgetarea-full .newsxpress_fullwidth_metro .fullwidth-widget-content .theme-widget-panel {
        width: 100%;
        grid-column: 1 / -1;
        grid-column-gap: 0
    }
}
@media screen and (min-width: 768px) {
    .content-area .fullwidth-widget-content {
        display: grid;
        grid-template-columns: 2fr 2fr;
        grid-column-gap: 2rem;
    }
    .content-area .newsxpress_fullwidth_metro .fullwidth-widget-content {
        display: block;
    }
    .content-area .widget-layout-2 .fullwidth-widget-content,
    .content-area .widget-layout-3 .fullwidth-widget-content {
        grid-template-columns: unset;
    }
    .content-area .widget-layout-3 .fullwidth-widget-content .widget-story-jumbotron .theme-article-mega {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        grid-column-gap: 2rem;
    }
    .content-area .widget-layout-3 .fullwidth-widget-content .widget-story-jumbotron .theme-article-mega .entry-image {
        grid-column: 1 / span 6;
    }
    .content-area .widget-layout-3 .fullwidth-widget-content .widget-story-jumbotron .theme-article-mega .entry-image-large img {
        height: 380px;
    }
    .content-area .widget-layout-3 .fullwidth-widget-content .widget-story-jumbotron .theme-article-mega .entry-details {
        grid-column: 7 / span 4;
    }
    .content-area .widget-layout-1 .fullwidth-widget-content .theme-widget-panel.widget-panel-1, .content-area .widget-layout-4 .fullwidth-widget-content .theme-widget-panel.widget-panel-1, .content-area .widget-layout-5 .fullwidth-widget-content .theme-widget-panel.widget-panel-1 {
        grid-column: auto / span 1;
    }
    .content-area .widget-layout-1 .fullwidth-widget-content .theme-widget-panel.widget-panel-2, .content-area .widget-layout-4 .fullwidth-widget-content .theme-widget-panel.widget-panel-2, .content-area .widget-layout-5 .fullwidth-widget-content .theme-widget-panel.widget-panel-2 {
        grid-column: auto / span 1;
    }
    .content-area .widget-layout-4 .fullwidth-widget-content .theme-widget-panel.widget-panel-3 {
        grid-column: auto / span 2;
    }
    .content-area .widget-layout-5 .fullwidth-widget-content .theme-widget-panel.widget-panel-1 .entry-image-medium img {
        height: 170px;
    }
    .content-area .widget-layout-5 .fullwidth-widget-content .theme-widget-panel.widget-panel-1 .entry-title {
        font-size: var(--theme-font-size-xsmall);
    }
    .content-area .widget-layout-5 .fullwidth-widget-content .theme-widget-panel.widget-panel-2 .theme-list-post {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    .content-area .widget-layout-5 .fullwidth-widget-content .theme-widget-panel.widget-panel-2 .entry-image-thumbnail img {
        height: 120px;
    }
    .content-area .widget-layout-2 .fullwidth-widget-content .theme-svg-seperator {
        display: none;
        height: 1px;
        visibility: hidden;
        opacity: 0;
    }
    .widget .widget-column-horizontal .theme-widget-focus {
        border: none;
    }
    .widget .widget-column-horizontal .theme-widget-content {
        display: grid;
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .theme-metro-widget {
        display: grid;
        grid-gap: 0.2rem;
    }
    .theme-metro-widget {
        grid-template-areas: "item1 item1 item1 item1" "item2 item2 item3 item3" "item4 item4 item5 item5";
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: auto 1fr 1fr;
    }
    .theme-metro-widget .theme-article-post {
        flex: 1;
        position: relative;
        min-height: 25rem;
        margin: 0;
    }
    .theme-metro-widget .theme-article-post:nth-child(1) {
        grid-area: item1;
    }
    .theme-metro-widget .theme-article-post:nth-child(2) {
        grid-area: item2;
    }
    .theme-metro-widget .theme-article-post:nth-child(3) {
        grid-area: item3;
    }
    .theme-metro-widget .theme-article-post:nth-child(4) {
        grid-area: item4;
    }
    .theme-metro-widget .theme-article-post:nth-child(5) {
        grid-area: item5;
    }
    .theme-metro-widget .theme-article-post:nth-child(6) {
        grid-area: item6;
    }
    .theme-metro-widget .theme-article-post .entry-image,
    .theme-metro-widget .theme-article-post .entry-image-medium,
    .theme-metro-widget .theme-article-post .entry-image-medium img {
        height: 100%;
        max-height: 500px;
    }
    .theme-metro-widget.style_1 .theme-article-post .entry-image,
    .theme-metro-widget.style_1 .theme-article-post .entry-image-medium,
    .theme-metro-widget.style_1 .theme-article-post .entry-image-medium img {
        max-height: 620px;
    }
}
@media screen and (min-width: 992px) {
    .theme-metro-widget.style_1 {
        grid-template-areas: "item1 item2 item4" "item1 item3 item5";
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .theme-metro-widget.style_2 {
        grid-template-areas: "item1 item1 item1 item1" "item2 item3 item4 item5";
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: auto 1fr;
    }
    .theme-metro-widget.style_3 {
        grid-template-areas: "item1 item1 item1 item1" "item2 item2 item3 item3" "item4 item4 item5 item5";
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: auto 1fr 1fr;
    }
}
.theme-widgetarea-small .theme-metro-widget {
    display: block;
}
.theme-widgetarea-small .theme-metro-widget .theme-article-post {
    margin-bottom: 2rem;
}
@media screen and (max-width: 991px) {
    .widget-layout {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .theme-svg-seperator {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
}
.newsxpress-image-widget {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
}
.newsxpress-image-widget.style_1 {
    height: 50rem;
}
.newsxpress-image-widget.style_2 {
    background-color: var(--theme-component-color);
}
.newsxpress-image-widget:before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: 16px;
    bottom: 16px;
    border: 1px solid #fff;
    z-index: 2;
    transition: all .25s ease;
}
.newsxpress-image-widget.style_1:before {
    background-color: #000;
    opacity: 0.05;
}
.newsxpress-image-widget.style_1:hover:before,
.newsxpress-image-widget.style_1:focus:before {
    opacity: 0.15;
}
.newsxpress-image-widget .widget-image-wrapper img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.newsxpress-image-widget.style_1 .widget-image-wrapper img {
    height: 50rem;
}
.newsxpress-image-widget.style_2 .widget-image-wrapper img {
    height: 30rem;
}
.newsxpress-image-widget .widget-desc-wrapper {
    color: #fff;
}
.newsxpress-image-widget.style_1 .widget-desc-wrapper {
    position: absolute;
    display: flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
    left: 16px;
    right: 16px;
    top: 16px;
    bottom: 16px;
    padding: 1rem;
    z-index: 3;
    line-height: 1.5;
}
.newsxpress-image-widget.style_2 .widget-desc-wrapper {
    position: relative;
    display: block;
    margin: 0 40px 40px;
    z-index: 2;
}
.newsxpress-image-widget.style_2 .widget-desc-wrapper:before {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    background-color: var(--theme-component-color);
    height: 80px;
    transform: skewY(8deg);
    z-index: -1;
}
.newsxpress-image-widget .entry-details {
    margin-bottom: 1rem;
}
.newsxpress-image-widget .theme-widget-button {
    text-decoration: underline;
}
.newsxpress-image-widget .theme-widget-button:not(:hover):not(:focus) {
    color: #fff;
}
.newsxpress-image-widget.style_2:hover .theme-widget-button,
.newsxpress-image-widget.style_2:focus .theme-widget-button {
    color: var(--theme-accent-color);
}
/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}
/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}
/* Captions
--------------------------------------------- */
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}
.wp-caption-text {
    text-align: center;
}
/* Galleries
--------------------------------------------- */
.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 1rem;
}
.gallery-item {
    display: inline-block;
    margin: 0;
    text-align: center;
    width: 100%;
}
.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}
.gallery-caption {
    display: block;
}
/* Footer
--------------------------------------------- */
.site-recommendation-section .theme-recommended-post,
.site-recommendation-section .theme-recommended-post .entry-image {
    margin-bottom: 2rem;
}
.site-footer {
    background-color: var(--theme-component-color);
    padding-top: 6rem;
}
.site-footer.footer-has-overlay::before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.site-footer,
.site-footer a:not(:hover):not(:focus) {
    color: var(--theme-white-color);
}
@media screen and (min-width: 1200px) {
    .has-sticky-footer .site,
    .has-sticky-footer .site .site-content-area {
        background-color: inherit;
    }
    .has-sticky-footer .site-content-area {
        position: relative;
    }
    .has-sticky-footer:not(.newsxpress-search-canvas-open) .site-content-area {
        z-index: 1;
    }
    .site-footer[data-sticky-footer="true"] {
        margin: 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        z-index: 0;
    }
    .site-footer[data-sticky-footer="true"].has-footer-stuck {
        opacity: 1;
        visibility: visible;
    }
}
@media screen and (max-width: 1199px) {
    .sticky-footer-spacer {
        display: none !important;
        height: 0 !important;
    }
}
.site-footer .widget-title,
.site-footer .widget_block .wp-block-group__inner-container > h2{
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}
.theme-footer-top,
.theme-footer-middle,
.theme-footer-bottom {
    position: relative;
}
.theme-footer-top {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}
.theme-footer-middle .site-footer-menu{
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid;
    border-top: 1px solid;
}
.footer-social-navigation .theme-menu{
    justify-content: center;
}
.footer-social-navigation .theme-menu .menu-item a{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    gap: 1rem;
}
.theme-footer-bottom {
    padding-bottom: 3rem;
    padding-top: 3rem;
}
.theme-footer-bottom .site-footer-menu{
    padding-top: 1rem;
    margin-top: 1rem;
}
.site-footer.data-bg .theme-footer-bottom{
    background-color: none;
}
[lang^="en-"] .theme-author-credit .theme-copyright-info {
    text-transform: capitalize;
}
@media (min-width: 992px) {
    .theme-footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
@media (max-width: 991px) {
    .theme-footer-bottom > div {
        margin-bottom: 2rem;
    }
}
.theme-footer-bottom .theme-author-credit {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}
@media only screen and (max-width: 991px) {
    .theme-footer-bottom .theme-author-credit {
        flex-direction: column;
        gap: 0;
    }
}
#theme-scroll-to-start {
    background-color: var(--theme-accent-color);
    color: var(--theme-white-color);
    cursor: pointer;
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
}
#theme-scroll-to-start:hover,
#theme-scroll-to-start:focus {
    background-color: var(--theme-accent-hover-color);
}
#theme-scroll-to-start.visible {
    display: flex;
}
@media (max-width: 767px) {
    #theme-scroll-to-start {
        right: 2rem;
    }
}
/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    display: none;
}
/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
    display: block;
}
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* 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 !important;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
.skip-link.screen-reader-text:focus {
    background-color: #eee;
    color: #444;
    font-size: 1.6rem;
}
/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
    outline: 0;
}
/* Alignments
--------------------------------------------- */
.alignleft {
    /*rtl:ignore*/
    text-align: left;
    margin-top: 0;
}
.no-sidebar .entry-content > .alignleft {
    max-width: min(calc(100vw - 20rem), 68rem);
}
@media only screen and (min-width: 482px) {
    .alignleft {
        /*rtl:ignore*/
        float: left;
        /*rtl:ignore*/
        margin-right: 2.5rem;
        margin-bottom: 3rem;
    }
    .no-sidebar .entry-content > .alignleft {
        max-width: calc(
                50% - calc(0.5 * (100vw - min(calc(100vw - 20rem), 68rem)))
        );
    }
}
.aligncenter {
    clear: both;
    display: block;
    float: none;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
.alignright {
    margin-top: 0;
    margin-bottom: 3rem;
}
.no-sidebar .entry-content > .alignright {
    max-width: min(calc(100vw - 20rem), 68rem);
}
@media only screen and (min-width: 482px) {
    .alignright {
        /*rtl:ignore*/
        float: right;
        /*rtl:ignore*/
        margin-left: 2.5rem;
    }
    .no-sidebar .entry-content > .alignright {
        max-width: calc(
                50% - calc(0.5 * (100vw - min(calc(100vw - 20rem), 68rem)))
        );
    }
}
[class*="inner-container"] > .alignleft + *,
[class*="inner-container"] > .alignright + * {
    margin-top: 0;
}
.site-header .masthead-main-navigation,
.site-section,
input,
textarea,
.theme-offcanvas-header,
.theme-offcanvas-menu li,
.single-comments-area,
.single-comments-area:before,
.single-comments-area li.comment .children li:before,
.single-comments-area li.pingback .children li:before,
.single-comments-area li.trackback .children li:before,
.newsxpress-archive_style_1 > article,
.newsxpress-archive_style_3 > article,
.theme-widget-focus,
.theme-list-post,
.widget_recent_entries ul li,
.widget_recent_entries ol li,
.widget_categories ul li,
.widget_categories ol li,
.widget_archive ul li,
.widget_archive ol li,
.widget_meta ul li,
.widget_meta ol li,
.widget_recent_comments ul li,
.widget_recent_comments ol li,
.widget_nav_menu ul li a,
.widget_nav_menu ol li a,
.widget_block .wp-block-group__inner-container ul li,
.widget_block .wp-block-group__inner-container ol li,
.wp-block-tag-cloud.is-style-outline a,
.wp-block-search__input,
.widget-tab-header,
.column-border-lr,
.column-border-l,
.column-border-r,
.site-banner-section .site-banner-area,
.site-banner-section .site-banner-middle .column {
    border-color: rgba(0, 0, 0, 0.1);
}
.site-footer .widget_recent_entries ul li,
.site-footer .widget_recent_entries ol li,
.site-footer .widget_categories ul li,
.site-footer .widget_categories ol li,
.site-footer .widget_archive ul li,
.site-footer .widget_archive ol li,
.site-footer .widget_meta ul li,
.site-footer .widget_meta ol li,
.site-footer .widget_recent_comments ul li,
.site-footer .widget_recent_comments ol li,
.site-footer .widget_nav_menu ul li a,
.site-footer .widget_nav_menu ol li a,
.site-footer .widget_block .wp-block-group__inner-container ul li,
.site-footer .widget_block .wp-block-group__inner-container ol li,
.site-footer .wp-block-tag-cloud.is-style-outline a,
.site-footer .wp-block-search__input,
.site-footer .widget-tab-header,
.site-footer .theme-footer-middle .site-footer-menu{
    border-color: rgba(255, 255, 255, 0.1);
}
.welcome-screen-banner {
    background: var(--theme-bg-color);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    text-align: center;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.welcome-screen-banner.welcome-screen-vanished {
    transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    z-index: -1;
}
.welcome-screen-banner img {
    object-fit: cover;
}
.welcome-screen-banner .welcome-banner-full-viewport img {
    width: 100vw;
    height: 100vh;
}
.welcome-screen-banner .welcome-banner-default,
.welcome-screen-banner .welcome-banner-default .welcome-screen-header,
.welcome-screen-banner .welcome-banner-default .welcome-screen-image {
    display: flex;
}
.welcome-screen-banner .welcome-banner-default {
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background-color: var(--plain-white);
    width: 100%;
    max-width: 100rem;
    margin: 0 auto;
}
@media only screen and (min-width: 482px) {
    .welcome-screen-banner .welcome-banner-default {
        max-width: 30rem;
    }
}
@media only screen and (min-width: 768px) {
    .welcome-screen-banner .welcome-banner-default {
        max-width: 70rem;
    }
}
@media only screen and (min-width: 992px) {
    .welcome-screen-banner .welcome-banner-default {
        max-width: 80rem;
    }
}
.welcome-screen-banner .welcome-banner-default .welcome-screen-image img {
    height: 100%;
    width: 100%;
}
.welcome-screen-banner .welcome-banner-default .welcome-screen-header {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.welcome-screen-banner
.welcome-banner-default
.welcome-screen-header
.welcome-screen-title {
    font-weight: 700;
}
.welcome-screen-banner
.welcome-banner-default
.welcome-screen-header
.welcome-screen-skip {
    padding: 0.3rem 1.5rem;
    border-radius: 2rem;
    text-transform: capitalize;
}
.welcome-screen-banner .welcome-banner-contained {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}
.welcome-screen-banner .welcome-banner-contained .welcome-screen-header {
    order: 2;
}
.welcome-screen-banner .welcome-banner-full-viewport .welcome-screen-cursor {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6rem;
    width: 2rem;
    margin: 0 auto;
    z-index: 100;
    background: none;
    border: none;
}
.mouse-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.mouse-icon {
    height: 35px;
    width: 22px;
    border-radius: 12px;
    border: 2px solid var(--theme-accent-color);
    position: relative;
}
.mouse-icon:after {
    content: "";
    height: 5px;
    width: 3px;
    display: block;
    margin: 5px auto;
    border: 2px solid var(--theme-accent-color);
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -webkit-animation: mouse-wheel 0.6s linear infinite;
    -moz-animation: mouse-wheel 0.6s linear infinite;
}
.mouse-arrow {
    display: block;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-right: 2px solid var(--theme-accent-color);
    border-bottom: 2px solid var(--theme-accent-color);
    margin: 2px 0 3px 6px;
    width: 8px;
    height: 8px;
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    -webkit-animation-delay: 100ms;
    -moz-animation-delay: 100ms;
    -webkit-animation-direction: alternate;
}
.mouse-arrow:after,
.mouse-arrow:before {
    position: absolute;
    content: "";
    display: block;
    border-right: 2px solid var(--theme-accent-color);
    border-bottom: 2px solid var(--theme-accent-color);
    width: 8px;
    height: 8px;
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
}
.mouse-arrow:after {
    margin: 7px 0 3px 7px;
    -webkit-animation-delay: 200ms;
    -moz-animation-delay: 200ms;
    -webkit-animation-direction: alternate;
}
.mouse-arrow:before {
    margin: 14px 0 3px 14px;
    -webkit-animation-delay: 300ms;
    -moz-animation-delay: 300ms;
    -webkit-animation-direction: alternate;
}
@-webkit-keyframes mouse-wheel {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px);
    }
}
@-webkit-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
/* Plugin Support
--------------------------------------------- */
.elementor-html .theme-preloader {
    display: none;
}
.theme-widgetarea .widget_media_image .widget-content {
    text-align: center;
}
/* ---------Additional Css--------------- */
.has-box-shadow {
    box-shadow: 5px 5px 0px var(--theme-accent-color);
    border: 0.1rem solid var(--theme-accent-color);
    background-color: #fff;
    margin: 0.5rem 0.5rem 0.5rem 0;
    padding: 0.5rem;
}
.entry-header.has-box-shadow {
    padding: 3rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.has-box-shadow:hover {
    border-color: var(--theme-accent-color);
    box-shadow: 5px 5px 0px var(--theme-accent-color);
}
.entry-header.has-box-shadow > h1.entry-title.entry-title-large {
    background: linear-gradient(var(--theme-accent-color), var(--theme-accent-color)) no-repeat;
    background-position: bottom;
    background-size: 0% 0%;
    line-height: 1.2;
    transition: 0.6s ease;
    display: inline;
}
.entry-header.has-box-shadow > h1.entry-title.entry-title-large:hover {
    background-size: 100% 35%;
}
/* Single Page */
.featured-banner-style3 {
    position: relative;
    margin-bottom: 14rem;
}
.featured-banner-style3 .has-box-shadow {
    height: 25rem;
}
.featured-banner-style3 .featured-banner-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -22%;
    height: auto;
    width: 100%;
    z-index: 10;
}
.navigation.post-navigation .nav-links .nav-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
}
.navigation.post-navigation .nav-links .nav-title {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 600;
}
.newsxpress-load-posts-btn-wrapper {
    position: relative;
    margin-top: 6rem;
}
.newsxpress-load-posts-btn-wrapper > hr {
    border: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
    margin-bottom: 2rem;
}
.newsxpress-load-posts-btn-wrapper > .ajax-viewmore-link {
    display: block;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ajax-viewmore-link .load-btn {
    padding: 1rem 4rem;
    transform: skewX(-15deg);
}
.ajax-viewmore-link .newsxpress-ajax-loader {
    width: 2rem;
    height: 2rem;
    border: 5px solid var(--theme-accent-color);
    border-bottom-color: #ff3d00;
    border-radius: 50%;
    display: none;
    visibility: hidden;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
    top: calc(50% - 1rem);
    left: 1rem;
    z-index: 1;
}
.ajax-viewmore-link .newsxpress-ajax-loader.active {
    display: inline-block;
    visibility: visible;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.theme-instagram-area {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.theme-instagram-area .pk-instagram-follow {
    background-color: var(--theme-accent-color);
    color: #fff;
    display: block;
    padding: 3rem;
    text-transform: uppercase;
    letter-spacing: 1.6rem;
}
.theme-instagram-area .pk-instagram-follow:hover,
.theme-instagram-area .pk-instagram-follow:focus {
    background-color: var(--theme-component-color);
    color: #fff;
}
.not-found .search-form{
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}
.not-found .search-form label{
    margin:0;
}
@media (min-width: 576px) {
    .not-found .search-form label{
        min-width: 40rem;
    }
}
.not-found .widget {
    padding-bottom: 4rem;
}
.not-found .widget ul li a{
    text-decoration: none !important;
}
.not-found .page-title {
    font-size: clamp(4rem, 40vw, 20rem);
    font-weight: 100;
}/*
 Theme Name:   NewsXpress Pro [HGN]
 Template:     newsxpress-pro
 Description:  HGN Child Theme of NewsXpress Pro
 Author:       Grant Eagon
 Version:      1.0.0
*/

body {
	color: #282828;
}

.home main, .theme-footer-bottom .theme-author-credit, .blog-credits {
	display: none;
}
.site-title {
	font-family: 'Libre Baskerville', 'Bitter', 'Times New Roman', 'Times', serif;
	text-transform: none;
	letter-spacing: -1px;
}
.site-section-title-highlight {
	background: #FFBF00;
	padding: 1px 5px 1px 20px;
	position: relative;
	display: inline-block;
}
.site-section-title-highlight::after {
  content:"";
  position: absolute;
  border-left:10px solid #FFBF00;
  border-top: 10px solid transparent;
  border-bottom: 11px solid transparent;
  top:0;
  right:-10px;
}
.site-section-title-highlight::before {
  content:"";
  position: absolute;
  border-left:10px solid #FFF;
  border-top: 10px solid transparent;
  border-bottom: 11px solid transparent;
  top:0;
  left:0;
}
.site-branding {
	display: flex;
	flex-wrap: nowrap;
}
.site-description {
	flex-basis: 100%;
}

.med-entry-details p, .site-featured-section .entry-details p {
	font-size: 0.85em;
	margin-top: 0em;
	margin-bottom: 1em;
}
.med-entry-details h2, .med-entry-details h3, .site-section.site-featured-section h2 {
	margin-bottom: 0.1em;
}
.med-entry-details .newsxpress-meta.newsxpress-meta-date, .site-section.site-featured-section .entry-date.published {
	font-size: 0.8em;
	color: #444;
}

.site-header .masthead-mid-navigation .masthead-middle-panel {
  margin-right: 0;
}

.primary-menu a {
  font-size: 1.6rem;
}

.admin-bar .site-header .has-sticky-header.sticky-header-active {
  box-shadow: silver 1px 1px 5px;
}

.entry-header.has-box-shadow {
  box-shadow: none;
  border: none;
  background-color: #fff;
  margin: 0.5rem 0.5rem 0.5rem 0;
  padding: 0.5rem;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-item, :not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item, .is-style-pk-share-buttons-bold-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item {
  margin-right: 1em;
  padding: 1em 2em;
  border: 1px solid black;
  border-radius: 3px;
}

.wrapper.solution-partner-wrapper {
  flex-direction: column !important;
}

.site-banner-middle .entry-image {
  margin-bottom: 0.25em;
}

p.bio-inc, .legislator-committees p {
  margin-bottom: 0.15em;
  margin-top: 0;
}

.legislator-committees b {
  margin-top: 1em;
  display: block;
}

.legislator h3 {
  margin-top: 1em;
}

.form-inline {
  display: flex;
}

.subtitle {
  font-size: 1.2em;
}
.section-header .subtitle {
  margin-top: 0;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxmJD1img.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxvJD1img.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxkJD1img.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxlJD1img.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxrJD0.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxmJD1img.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxvJD1img.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxkJD1img.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxlJD1img.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxrJD0.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxmJD1img.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxvJD1img.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxkJD1img.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxlJD1img.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxrJD0.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxmJD1img.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxvJD1img.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxkJD1img.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxlJD1img.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxrJD0.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxmJD1img.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxvJD1img.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxkJD1img.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxlJD1img.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax-HiqOu8IVPmn7erxrJD0.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7coxpPDk.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7e4xpPDk.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7cIxpPDk.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7cYxpPDk.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7f4xp.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7coxpPDk.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7e4xpPDk.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7cIxpPDk.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7cYxpPDk.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7f4xp.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7coxpPDk.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7e4xpPDk.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7cIxpPDk.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7cYxpPDk.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7f4xp.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7coxpPDk.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7e4xpPDk.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7cIxpPDk.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7cYxpPDk.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7f4xp.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7coxpPDk.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7e4xpPDk.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7cIxpPDk.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7cYxpPDk.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/bitter/rax8HiqOu8IVPmn7f4xp.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/libre-baskerville/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcWx8QDP2V.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/libre-baskerville/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcWxEQDA.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/libre-baskerville/kmKnZrc3Hgbbcjq75U4uslyuy4kn0qNXaxMICA.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/libre-baskerville/kmKnZrc3Hgbbcjq75U4uslyuy4kn0qNZaxM.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/libre-baskerville/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTgY5KcCsww.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/libre-baskerville/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTgY3KcA.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TjASc3CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TjASc-CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TjASc2CsTKlA.woff2) format('woff2');*/
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TjASc5CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TjASc1CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TjASc0CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TjASc6CsQ.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2) format('woff2');*/
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2) format('woff2');*/
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOkCnqEu92Fr1Mu51xIIzI.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51S7ACc3CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51S7ACc-CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51S7ACc2CsTKlA.woff2) format('woff2');*/
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51S7ACc5CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51S7ACc1CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51S7ACc0CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51S7ACc6CsQ.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TzBic3CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TzBic-CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TzBic2CsTKlA.woff2) format('woff2');*/
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TzBic5CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TzBic1CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TzBic0CsTKlA.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOjCnqEu92Fr1Mu51TzBic6CsQ.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2) format('woff2');*/
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2) format('woff2');*/
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmSU5fBBc4.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format('woff2');*/
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format('woff2');*/
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2) format('woff2');*/
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2) format('woff2');*/
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmEU9fBBc4.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2) format('woff2');*/
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2) format('woff2');*/
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2) format('woff2');*/
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2) format('woff2');*/
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2) format('woff2');*/
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2) format('woff2');*/
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*src: url(http://localhost:8000/wp-content/fonts/roboto/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format('woff2');*/
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/**
 * Swiper 9.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 15, 2023
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper,.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide,swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:22px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%); width: calc(var(--swiper-navigation-size) / 44 * 66);height:calc(var(--swiper-navigation-size) / 44 * 99);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;background-color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,15px);right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,15px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;-ms-touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification,swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}/*
 Theme Name:   NewsXpress Pro [HGN]
 Template:     newsxpress-pro
 Description:  HGN Child Theme of NewsXpress Pro
 Author:       Grant Eagon
 Version:      1.0.0
*/

body {
	color: #282828;
}

.home main, .theme-footer-bottom .theme-author-credit, .blog-credits {
	display: none;
}
.site-title {
	font-family: 'Libre Baskerville', 'Bitter', 'Times New Roman', 'Times', serif;
	text-transform: none;
	letter-spacing: -1px;
}
.site-section-title-highlight {
	background: #FFBF00;
	padding: 1px 5px 1px 20px;
	position: relative;
	display: inline-block;
}
.site-section-title-highlight::after {
  content:"";
  position: absolute;
  border-left:10px solid #FFBF00;
  border-top: 10px solid transparent;
  border-bottom: 11px solid transparent;
  top:0;
  right:-10px;
}
.site-section-title-highlight::before {
  content:"";
  position: absolute;
  border-left:10px solid #FFF;
  border-top: 10px solid transparent;
  border-bottom: 11px solid transparent;
  top:0;
  left:0;
}
.site-branding {
	display: flex;
	flex-wrap: nowrap;
}
.site-description {
	flex-basis: 100%;
}

.med-entry-details p, .site-featured-section .entry-details p {
	font-size: 0.85em;
	margin-top: 0em;
	margin-bottom: 1em;
}
.med-entry-details h2, .med-entry-details h3, .site-section.site-featured-section h2 {
	margin-bottom: 0.1em;
}
.med-entry-details .newsxpress-meta.newsxpress-meta-date, .site-section.site-featured-section .entry-date.published {
	font-size: 0.8em;
	color: #444;
}

.site-header .masthead-mid-navigation .masthead-middle-panel {
  margin-right: 0;
}

.primary-menu a {
  font-size: 1.6rem;
}

.admin-bar .site-header .has-sticky-header.sticky-header-active {
  box-shadow: silver 1px 1px 5px;
}

.entry-header.has-box-shadow {
  box-shadow: none;
  border: none;
  background-color: #fff;
  margin: 0.5rem 0.5rem 0.5rem 0;
  padding: 0.5rem;
}

.pk-share-buttons-scheme-bold-light .pk-share-buttons-item, :not([class*="is-style-"]) > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item, .is-style-pk-share-buttons-bold-light > .pk-share-buttons-scheme-gutenberg-block .pk-share-buttons-item {
  margin-right: 1em;
  padding: 1em 2em;
  border: 1px solid black;
  border-radius: 3px;
}

.wrapper.solution-partner-wrapper {
  flex-direction: column !important;
}

.site-banner-middle .entry-image {
  margin-bottom: 0.25em;
}

p.bio-inc, .legislator-committees p {
  margin-bottom: 0.15em;
  margin-top: 0;
}

.legislator-committees b {
  margin-top: 1em;
  display: block;
}

.legislator h3 {
  margin-top: 1em;
}

.form-inline {
  display: flex;
}

.subtitle {
  font-size: 1.2em;
}
.section-header .subtitle {
  margin-top: 0;
}
