/**
 * All of the CSS for your block editor functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.cnvs-block-alert {
	--cnvs-alert-background: #f8f9fa;
	--cnvs-alert-padding: 0.5rem 1rem;
	--cnvs-alert-font-size: 0.875rem;
	--cnvs-alert-margin-bottom: 1rem;
	--cnvs-alert-border-left: 2px solid transparent;
}

/*--------------------------------------------------------------*/
.cnvs-block-alert {
	position: relative;
	padding: var(--cnvs-alert-padding);
	background: var(--cnvs-alert-background);
	font-size: var(--cnvs-alert-font-size);
	margin-bottom: var(--cnvs-alert-margin-bottom);
	border-left: var(--cnvs-alert-border-left);
}

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

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

.cnvs-block-alert .cnvs-block-alert-inner h1, .cnvs-block-alert .cnvs-block-alert-inner h2, .cnvs-block-alert .cnvs-block-alert-inner h3, .cnvs-block-alert .cnvs-block-alert-inner h4, .cnvs-block-alert .cnvs-block-alert-inner h5, .cnvs-block-alert .cnvs-block-alert-inner h6 {
	margin-bottom: 1rem;
}

.cnvs-block-alert .cnvs-block-alert-inner > * {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.cnvs-block-alert .cnvs-block-alert-inner > *:first-child:last-child {
	margin-top: 0;
	margin-bottom: 0;
}

.is-style-cnvs-block-alert-primary {
	border-left-color: #007bff;
}

.is-style-cnvs-block-alert-secondary {
	border-left-color: #6c757d;
}

.is-style-cnvs-block-alert-success {
	border-left-color: #28a745;
}

.is-style-cnvs-block-alert-info {
	border-left-color: #17a2b8;
}

.is-style-cnvs-block-alert-warning {
	border-left-color: #ffc107;
}

.is-style-cnvs-block-alert-danger {
	border-left-color: #dc3545;
}

.is-style-cnvs-block-alert-light {
	border-left-color: #f8f9fa;
}

.is-style-cnvs-block-alert-dark {
	border-left-color: #343a40;
}/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
 * Environment for all styles (variables, additions, etc).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.cnvs-gallery-type-justified {
	overflow: hidden;
	position: relative;
	width: 100%;
	min-height: 1.5rem;
}

.cnvs-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;
}

.cnvs-gallery-type-justified .gallery-item > img, .cnvs-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;
}

.cnvs-gallery-type-justified .gallery-item > .caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	padding: 0.5rem;
	opacity: 0;
	color: white;
	background-color: rgba(0, 0, 0, 0.5);
	font-size: 0.75rem;
	-webkit-transition: 0.2s ease opacity;
	transition: 0.2s ease opacity;
}

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

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

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

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

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

.cnvs-gallery-type-justified:before {
	width: 1.5rem;
	height: 1.5rem;
	border: 2px solid rgba(119, 119, 119, 0.25);
	border-top-color: #777;
	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% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loader-rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		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).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.cnvs-gallery-type-slider.gallery {
	display: block;
}

.cnvs-gallery-type-slider .gallery-item {
	width: 100%;
	max-width: 100%;
	padding: 0;
}

.cnvs-gallery-type-slider .wp-caption-text {
	margin-top: 1rem;
}

.cnvs-gallery-type-slider figure {
	margin-bottom: 0;
}

.cnvs-gallery-type-slider img {
	width: 100%;
	height: auto;
}

.cnvs-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).
 */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.cnvs-block-posts-sidebar {
	--cnvs-posts-sidebar-thumbnail-width: 80px;
	--cnvs-posts-sidebar-thumbnail-gutter: 2rem;
	--cnvs-posts-sidebar-number-top: 0;
	--cnvs-posts-sidebar-number-left: 0;
	--cnvs-posts-sidebar-number-right: initial;
	--cnvs-posts-sidebar-number-bottom: initial;
	--cnvs-posts-sidebar-number-width: 30px;
	--cnvs-posts-sidebar-number-height: 30px;
	--cnvs-posts-sidebar-number-line-height: 30px;
	--cnvs-posts-sidebar-number-background: #000;
	--cnvs-posts-sidebar-number-color: white;
	--cnvs-posts-sidebar-number-font-size: 80%;
	--cnvs-posts-sidebar-number-border-radius: 0;
}

/*--------------------------------------------------------------*/
.cnvs-block-posts-sidebar .cnvs-posts-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.cnvs-block-posts-sidebar .cnvs-post-item:not(:first-child) {
	margin-top: 1rem;
}

.cnvs-block-posts-sidebar .cnvs-post-outer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.cnvs-block-posts-sidebar .cnvs-post-thumbnail {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 var(--cnvs-posts-sidebar-thumbnail-width);
	flex: 0 0 var(--cnvs-posts-sidebar-thumbnail-width);
	margin-right: var(--cnvs-posts-sidebar-thumbnail-gutter);
}

.cnvs-block-posts-sidebar .cnvs-post-thumbnail img {
	width: var(--cnvs-posts-sidebar-thumbnail-width);
	height: var(--cnvs-posts-sidebar-thumbnail-width);
	-o-object-fit: cover;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

.cnvs-block-posts-sidebar .cnvs-post-data {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	width: 100%;
}

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

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

.cnvs-block-posts-sidebar .cnvs-post-data .entry-title {
	margin-top: 0;
	margin-bottom: 0.25rem;
}

.cnvs-block-posts-sidebar .cnvs-post-meta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.cnvs-block-posts-sidebar .cnvs-post-meta .avatar {
	margin-right: .5rem;
}

.cnvs-block-posts-sidebar .cnvs-post-meta a {
	text-decoration: none;
}

.cnvs-block-posts-sidebar .cnvs-post-meta > * + * {
	margin-left: .5rem;
}

.cnvs-block-posts-sidebar .cnvs-post-meta > * + *:before {
	content: "\b7";
	margin-right: .5rem;
}

.cnvs-block-posts-sidebar .cnvs-post-meta .published + .updated {
	display: none;
}

.cnvs-block-posts-sidebar .cnvs-post-meta-hide {
	display: none;
}

.cnvs-block-posts-sidebar-large .cnvs-post-item:not(:first-child) {
	margin-top: 2rem;
}

.cnvs-block-posts-sidebar-large .cnvs-post-outer {
	display: block;
}

.cnvs-block-posts-sidebar-large .cnvs-post-thumbnail {
	margin-right: 0;
	margin-bottom: 1rem;
}

.cnvs-block-posts-sidebar-large .cnvs-post-thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 0;
}