/**handles:powerkit-coming-soon,powerkit-content-formatting,powerkit-сontributors,powerkit-featured-categories,powerkit-inline-posts,powerkit-justified-gallery**/
/**
 * 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: 0.875rem;
	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: 0.875rem;
}

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: 'powerkit-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: 0.875rem;
	--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: 'powerkit-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).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.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).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.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);
	}
}