/* Wis Media Library Elementor frontend */
.wis-mle-widget {
	--wis-mle-columns: 3;
	--wis-mle-gap: 24px;
	--wis-mle-play-size: 3rem;
	--wis-mle-play-icon-size: 1.1rem;
	--wis-mle-play-radius: 50%;
	--wis-mle-play-border-width: 0px;
	--wis-mle-play-border-color: rgba(255, 255, 255, 0.5);
	--wis-mle-play-hover-border-color: #ffffff;
	--wis-mle-play-color: #ffffff;
	--wis-mle-play-hover-color: #ffffff;
	--wis-mle-play-background: rgba(0, 0, 0, 0.55);
	--wis-mle-play-hover-background: rgba(0, 0, 0, 0.75);
	--wis-mle-play-hover-scale: 1;
	--wis-mle-video-overlay-color: #000000;
	--wis-mle-video-overlay-opacity: 0.25;
	--wis-mle-lightbox-background-color: #000000;
	--wis-mle-lightbox-background-opacity: 0.88;
	--wis-mle-lightbox-close-size: 2.5rem;
	--wis-mle-lightbox-close-icon-size: 1rem;
	--wis-mle-lightbox-close-offset: 1.25rem;
	--wis-mle-lightbox-close-radius: 50%;
	--wis-mle-lightbox-close-color: #ffffff;
	--wis-mle-lightbox-close-hover-color: #ffffff;
	--wis-mle-lightbox-close-background: rgba(255, 255, 255, 0);
	--wis-mle-lightbox-close-hover-background: rgba(255, 255, 255, 0.16);
	--wis-mle-lightbox-close-border-width: 1px;
	--wis-mle-lightbox-close-border-color: rgba(255, 255, 255, 0.35);
	--wis-mle-lightbox-close-hover-border-color: #ffffff;
	--wis-mle-pagination-background: transparent;
	--wis-mle-pagination-gap: 8px;
	--wis-mle-pagination-number-size: 38px;
	--wis-mle-pagination-number-color: #222222;
	--wis-mle-pagination-number-background: transparent;
	--wis-mle-pagination-number-border-color: transparent;
	--wis-mle-pagination-number-border-width: 0px;
	--wis-mle-pagination-number-radius: 8px;
	--wis-mle-pagination-number-hover-color: #ffffff;
	--wis-mle-pagination-number-hover-background: #00965e;
	--wis-mle-pagination-number-hover-border-color: #00965e;
	--wis-mle-pagination-number-hover-radius: 8px;
	--wis-mle-pagination-active-color: #ffffff;
	--wis-mle-pagination-active-background: #0c00ff;
	--wis-mle-pagination-active-border-color: #0c00ff;
	--wis-mle-pagination-active-radius: 8px;
	--wis-mle-pagination-arrow-size: 38px;
	--wis-mle-pagination-arrow-icon-size: 22px;
	--wis-mle-pagination-arrow-radius: 8px;
	--wis-mle-pagination-arrow-border-width: 0px;
	--wis-mle-pagination-arrow-color: #222222;
	--wis-mle-pagination-arrow-background: transparent;
	--wis-mle-pagination-arrow-border-color: transparent;
	--wis-mle-pagination-arrow-hover-color: #ffffff;
	--wis-mle-pagination-arrow-hover-background: #00965e;
	--wis-mle-pagination-arrow-hover-border-color: #00965e;
	--wis-mle-product-button-top-gap: 4px;
	--wis-mle-product-thumb-size: 4.5rem;
	--wis-mle-product-thumb-gap: 0.5rem;
	--wis-mle-product-thumb-wrapper-width: auto;
	--wis-mle-product-thumb-wrapper-margin: 0 auto 0 0;
	--wis-mle-product-thumb-justify: flex-start;
	--wis-mle-product-thumb-direction: row;
	--wis-mle-product-thumb-wrap: wrap;
	--wis-mle-product-thumb-image-fit: contain;
	--wis-mle-product-thumb-padding: 0.125rem;
	--wis-mle-product-thumb-radius: 0.375rem;
	--wis-mle-product-thumb-border-style: solid;
	--wis-mle-product-thumb-border-width: 0rem;
	--wis-mle-product-thumb-background: rgba(0, 0, 0, 0);
	--wis-mle-product-thumb-border-color: rgba(0, 0, 0, 0);
	--wis-mle-product-thumb-hover-background: rgba(0, 0, 0, 0);
	--wis-mle-product-thumb-hover-border-color: rgba(0, 0, 0, 0);
	--wis-mle-product-thumb-hover-opacity: 0.85;
	box-sizing: border-box;
}

.wis-mle-grid {
	display: grid;
	grid-template-columns: repeat( var(--wis-mle-columns), minmax(0, 1fr) );
	gap: var(--wis-mle-gap);
	width: 100%;
}

.wis-mle-item {
	position: relative;
	box-sizing: border-box;
	min-width: 0;
}

.wis-mle-item.is-hidden {
	display: none !important;
}

.wis-mle-media-wrap {
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
	line-height: 0;
	overflow: hidden;
	box-sizing: border-box;
}

.wis-mle-ratio {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.wis-mle-ratio::before {
	content: '';
	display: block;
}

.wis-mle-ratio-1-1::before {
	padding-top: 100%;
}

.wis-mle-ratio-4-3::before {
	padding-top: 75%;
}

.wis-mle-ratio-16-9::before {
	padding-top: 56.25%;
}

.wis-mle-ratio > .wis-mle-image,
.wis-mle-ratio > .wis-mle-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.wis-mle-image {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	border: 0;
	box-shadow: none;
}

.wis-mle-video-wrap {
	background: #000000;
	cursor: pointer;
}

.wis-mle-video {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	background: #000000 !important;
	border: 0 !important;
	box-shadow: none !important;
	object-fit: cover;
	object-position: center center;
}

.wis-mle-ratio > .wis-mle-video {
	height: 100% !important;
}

.wis-mle-video-wrap::after {
	position: absolute;
	inset: 0;
	z-index: 2;
	content: '';
	background: var(--wis-mle-video-overlay-color);
	opacity: var(--wis-mle-video-overlay-opacity);
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.wis-mle-video-wrap.is-playing::after {
	opacity: 0;
}

.wis-mle-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--wis-mle-play-size) !important;
	height: var(--wis-mle-play-size) !important;
	min-width: 0;
	min-height: 0;
	padding: 0;
	margin: 0;
	border-width: var(--wis-mle-play-border-width) !important;
	border-style: solid !important;
	border-color: var(--wis-mle-play-border-color) !important;
	border-radius: var(--wis-mle-play-radius) !important;
	background: var(--wis-mle-play-background) !important;
	background-color: var(--wis-mle-play-background) !important;
	background-image: none !important;
	box-shadow: none;
	color: var(--wis-mle-play-color) !important;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	text-shadow: none;
	transform: translate(-50%, -50%);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	box-sizing: border-box;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.wis-mle-play-button:hover,
.wis-mle-play-button:focus:hover {
	border-color: var(--wis-mle-play-hover-border-color) !important;
	background: var(--wis-mle-play-hover-background) !important;
	background-color: var(--wis-mle-play-hover-background) !important;
	color: var(--wis-mle-play-hover-color) !important;
	transform: translate(-50%, -50%) scale(var(--wis-mle-play-hover-scale));
}

.wis-mle-play-button:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.wis-mle-play-button.is-hidden {
	display: none !important;
}

.wis-mle-play-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--wis-mle-play-icon-size) !important;
	height: var(--wis-mle-play-icon-size) !important;
	font-size: var(--wis-mle-play-icon-size) !important;
	line-height: 1;
	color: currentColor !important;
	pointer-events: none;
}

.wis-mle-play-icon svg,
.wis-mle-play-icon i,
.wis-mle-play-icon span {
	display: block;
	width: 1em;
	height: 1em;
	font-size: 1em;
	line-height: 1;
	fill: currentColor !important;
}

.wis-mle-file-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 8rem;
	padding: 1rem;
	background: #f5f5f5;
	color: inherit;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
}

.wis-mle-file-icon {
	font-size: 2rem;
	line-height: 1;
}

.wis-mle-filename {
	font-size: 0.875rem;
	line-height: 1.4;
	word-break: break-word;
}

.wis-mle-content {
	margin-top: 12px;
	box-sizing: border-box;
}

.wis-mle-title {
	margin: 0 0 6px;
	padding: 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
}

.wis-mle-description {
	margin: 0 0 10px;
	font-size: 0.9375rem;
	line-height: 1.55;
}

.wis-mle-description p {
	margin-top: 0;
	margin-bottom: 0.75em;
}

.wis-mle-description p:last-child {
	margin-bottom: 0;
}


/* -------------------------------------------------------------------------
   Product thumbnail gallery
   ------------------------------------------------------------------------- */
.wis-mle-widget .wis-mle-product-thumbnails-wrapper {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	width: var(--wis-mle-product-thumb-wrapper-width) !important;
	max-width: 100% !important;
	margin: var(--wis-mle-product-thumb-wrapper-margin) !important;
	margin-top: var(--wis-mle-product-button-top-gap) !important;
	line-height: 0 !important;
	box-sizing: border-box !important;
}

.wis-mle-widget .wis-mle-product-thumbnails {
	display: flex !important;
	flex-direction: var(--wis-mle-product-thumb-direction) !important;
	flex-wrap: var(--wis-mle-product-thumb-wrap) !important;
	align-items: flex-start !important;
	justify-content: var(--wis-mle-product-thumb-justify) !important;
	gap: var(--wis-mle-product-thumb-gap) !important;
	width: 100% !important;
	max-width: 100% !important;
	line-height: 0 !important;
	box-sizing: border-box !important;
}

.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail {
	position: relative !important;
	display: block !important;
	flex: 0 0 var(--wis-mle-product-thumb-size) !important;
	width: var(--wis-mle-product-thumb-size) !important;
	height: var(--wis-mle-product-thumb-size) !important;
	min-width: 0 !important;
	min-height: 0 !important;
	max-width: var(--wis-mle-product-thumb-size) !important;
	max-height: var(--wis-mle-product-thumb-size) !important;
	padding: var(--wis-mle-product-thumb-padding) !important;
	margin: 0 !important;
	border-width: var(--wis-mle-product-thumb-border-width) !important;
	border-style: var(--wis-mle-product-thumb-border-style) !important;
	border-color: var(--wis-mle-product-thumb-border-color) !important;
	border-radius: var(--wis-mle-product-thumb-radius) !important;
	background: var(--wis-mle-product-thumb-background) !important;
	background-color: var(--wis-mle-product-thumb-background) !important;
	background-image: none !important;
	box-shadow: none !important;
	color: inherit !important;
	cursor: pointer;
	line-height: 0 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-shadow: none !important;
	transform: none !important;
	transition: border-color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
	appearance: none;
	-webkit-appearance: none;
}

.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail:not(:hover),
.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail:not(:hover):focus,
.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail:not(:hover):focus-visible,
.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail:not(:hover):active {
	border-width: var(--wis-mle-product-thumb-border-width) !important;
	border-style: var(--wis-mle-product-thumb-border-style) !important;
	border-color: var(--wis-mle-product-thumb-border-color) !important;
	background: var(--wis-mle-product-thumb-background) !important;
	background-color: var(--wis-mle-product-thumb-background) !important;
	background-image: none !important;
	box-shadow: none !important;
	outline: 0 !important;
	transform: none !important;
}

.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail:focus,
.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail:focus-visible,
.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail:active {
	outline: 0 !important;
	box-shadow: none !important;
	transform: none !important;
}

@media (hover: hover) and (pointer: fine) {
	.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail:hover,
	.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail:focus:hover {
		border-color: var(--wis-mle-product-thumb-hover-border-color) !important;
		background: var(--wis-mle-product-thumb-hover-background) !important;
		background-color: var(--wis-mle-product-thumb-hover-background) !important;
		background-image: none !important;
		box-shadow: none !important;
		transform: none !important;
		text-decoration: none !important;
	}

	.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail:hover img,
	.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail:hover .wis-mle-product-thumbnail-image {
		opacity: var(--wis-mle-product-thumb-hover-opacity) !important;
	}
}

.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail.is-disabled {
	cursor: default;
	pointer-events: none;
}

.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail img,
.wis-mle-widget .wis-mle-product-thumbnails-wrapper .wis-mle-product-thumbnail-image {
	display: block !important;
	color: transparent !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: max(0rem, calc(var(--wis-mle-product-thumb-radius) - var(--wis-mle-product-thumb-padding))) !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	object-fit: var(--wis-mle-product-thumb-image-fit) !important;
	object-position: center center !important;
	transition: opacity 0.2s ease !important;
	pointer-events: none;
}

.wis-mle-product-button-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
	margin-top: var(--wis-mle-product-button-top-gap);
	box-sizing: border-box;
	text-align: left;
}

.wis-mle-product-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	padding: 12px 24px;
	background-color: #0c00ff;
	color: #ffffff;
	border: 0 solid transparent;
	border-radius: 0;
	line-height: 1;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, border-radius 0.2s ease, opacity 0.2s ease;
}

.wis-mle-product-button:hover,
.wis-mle-product-button:focus {
	background-color: #0800b8;
	color: #ffffff;
	text-decoration: none !important;
}

.wis-mle-product-buttons-line .wis-mle-grid {
	align-items: stretch !important;
}

.wis-mle-product-buttons-line .wis-mle-item:not(.is-hidden) {
	display: flex !important;
	flex-direction: column !important;
	align-self: stretch !important;
	min-height: 100%;
}

.wis-mle-product-buttons-line .wis-mle-media-wrap {
	flex: 0 0 auto;
}

.wis-mle-product-buttons-line .wis-mle-content {
	display: flex !important;
	flex: 1 1 auto !important;
	flex-direction: column !important;
	width: 100%;
}

.wis-mle-product-buttons-line .wis-mle-description {
	margin-bottom: 0;
}

.wis-mle-product-buttons-line .wis-mle-product-button-wrap {
	margin-top: auto !important;
	padding-top: var(--wis-mle-product-button-top-gap);
}

.wis-mle-product-thumbnails-line .wis-mle-grid {
	align-items: stretch !important;
}

.wis-mle-product-thumbnails-line .wis-mle-item:not(.is-hidden) {
	display: flex !important;
	flex-direction: column !important;
	align-self: stretch !important;
	min-height: 100%;
}

.wis-mle-product-thumbnails-line .wis-mle-media-wrap {
	flex: 0 0 auto;
}

.wis-mle-product-thumbnails-line .wis-mle-content {
	display: flex !important;
	flex: 1 1 auto !important;
	flex-direction: column !important;
	width: 100%;
}

.wis-mle-product-thumbnails-line .wis-mle-description {
	margin-bottom: 0;
}

.wis-mle-product-thumbnails-line .wis-mle-product-thumbnails-wrapper {
	flex: 0 0 auto !important;
	margin-top: auto !important;
	padding-top: var(--wis-mle-product-button-top-gap);
}


.wis-mle-product-thumbnails-line.wis-mle-product-buttons-line .wis-mle-product-button-wrap {
	margin-top: var(--wis-mle-product-button-top-gap) !important;
	padding-top: 0;
}

.wis-mle-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--wis-mle-pagination-gap);
	margin-top: 2rem;
	background: var(--wis-mle-pagination-background);
	box-sizing: border-box;
}

.wis-mle-pagination-icon-template {
	display: none !important;
}

button.wis-mle-pagination-button,
button.wis-mle-pagination-arrow {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0;
	background-image: none !important;
	text-decoration: none !important;
	text-shadow: none !important;
	box-shadow: none !important;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	box-sizing: border-box;
	font: inherit;
	line-height: 1;
	text-align: center;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, border-radius 0.2s ease, opacity 0.2s ease;
}

button.wis-mle-pagination-button {
	min-width: var(--wis-mle-pagination-number-size) !important;
	height: var(--wis-mle-pagination-number-size) !important;
	padding: 0 0.65rem !important;
	border-width: var(--wis-mle-pagination-number-border-width) !important;
	border-style: solid !important;
	border-color: var(--wis-mle-pagination-number-border-color) !important;
	border-radius: var(--wis-mle-pagination-number-radius) !important;
	background: var(--wis-mle-pagination-number-background) !important;
	background-color: var(--wis-mle-pagination-number-background) !important;
	color: var(--wis-mle-pagination-number-color) !important;
}

button.wis-mle-pagination-button:hover,
button.wis-mle-pagination-button:focus {
	border-color: var(--wis-mle-pagination-number-hover-border-color) !important;
	border-radius: var(--wis-mle-pagination-number-hover-radius) !important;
	background: var(--wis-mle-pagination-number-hover-background) !important;
	background-color: var(--wis-mle-pagination-number-hover-background) !important;
	color: var(--wis-mle-pagination-number-hover-color) !important;
}

button.wis-mle-pagination-button.is-active,
button.wis-mle-pagination-button.is-active:hover,
button.wis-mle-pagination-button.is-active:focus {
	border-color: var(--wis-mle-pagination-active-border-color) !important;
	border-radius: var(--wis-mle-pagination-active-radius) !important;
	background: var(--wis-mle-pagination-active-background) !important;
	background-color: var(--wis-mle-pagination-active-background) !important;
	background-image: none !important;
	color: var(--wis-mle-pagination-active-color) !important;
	cursor: default;
}

.wis-mle-pagination-ellipsis {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: var(--wis-mle-pagination-number-size);
	height: var(--wis-mle-pagination-number-size);
	color: var(--wis-mle-pagination-number-color);
	line-height: 1;
	user-select: none;
}

button.wis-mle-pagination-arrow {
	width: var(--wis-mle-pagination-arrow-size) !important;
	min-width: var(--wis-mle-pagination-arrow-size) !important;
	height: var(--wis-mle-pagination-arrow-size) !important;
	padding: 0 !important;
	border-width: var(--wis-mle-pagination-arrow-border-width) !important;
	border-style: solid !important;
	border-color: var(--wis-mle-pagination-arrow-border-color) !important;
	border-radius: var(--wis-mle-pagination-arrow-radius) !important;
	background: var(--wis-mle-pagination-arrow-background) !important;
	background-color: var(--wis-mle-pagination-arrow-background) !important;
	color: var(--wis-mle-pagination-arrow-color) !important;
	font-size: var(--wis-mle-pagination-arrow-icon-size) !important;
	line-height: 1 !important;
}

button.wis-mle-pagination-arrow:hover,
button.wis-mle-pagination-arrow:focus {
	border-color: var(--wis-mle-pagination-arrow-hover-border-color) !important;
	background: var(--wis-mle-pagination-arrow-hover-background) !important;
	background-color: var(--wis-mle-pagination-arrow-hover-background) !important;
	color: var(--wis-mle-pagination-arrow-hover-color) !important;
}

button.wis-mle-pagination-arrow.is-disabled,
button.wis-mle-pagination-arrow:disabled {
	cursor: default;
	opacity: 0.35;
	pointer-events: none;
}

button.wis-mle-pagination-arrow .wis-mle-pagination-arrow-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: var(--wis-mle-pagination-arrow-icon-size) !important;
	min-width: var(--wis-mle-pagination-arrow-icon-size) !important;
	height: var(--wis-mle-pagination-arrow-icon-size) !important;
	min-height: var(--wis-mle-pagination-arrow-icon-size) !important;
	font-size: var(--wis-mle-pagination-arrow-icon-size) !important;
	line-height: 1 !important;
	color: currentColor !important;
	pointer-events: none;
}

button.wis-mle-pagination-arrow .wis-mle-pagination-arrow-icon .wis-mle-pagination-arrow-icon {
	width: inherit !important;
	min-width: inherit !important;
	height: inherit !important;
	min-height: inherit !important;
	font-size: inherit !important;
}

button.wis-mle-pagination-arrow .wis-mle-pagination-arrow-icon svg,
button.wis-mle-pagination-arrow .wis-mle-pagination-arrow-icon i,
button.wis-mle-pagination-arrow .wis-mle-pagination-arrow-icon span {
	display: inline-block !important;
	width: var(--wis-mle-pagination-arrow-icon-size) !important;
	min-width: var(--wis-mle-pagination-arrow-icon-size) !important;
	height: var(--wis-mle-pagination-arrow-icon-size) !important;
	min-height: var(--wis-mle-pagination-arrow-icon-size) !important;
	font-size: var(--wis-mle-pagination-arrow-icon-size) !important;
	line-height: 1 !important;
	fill: currentColor !important;
	color: currentColor !important;
}

button.wis-mle-pagination-arrow .wis-mle-pagination-arrow-icon svg {
	overflow: visible !important;
}

.wis-mle-grid-hover .wis-mle-media-wrap .wis-mle-image,
.wis-mle-grid-hover .wis-mle-media-wrap .wis-mle-video {
	transition: transform 0.35s ease;
}

.wis-mle-grid-hover .wis-mle-media-wrap:hover .wis-mle-image,
.wis-mle-grid-hover .wis-mle-media-wrap:hover .wis-mle-video {
	transform: scale(1.05);
}

.wis-mle-grid-hover .wis-mle-file-link {
	transition: opacity 0.25s ease;
}

.wis-mle-grid-hover .wis-mle-file-link:hover {
	opacity: 0.75;
}

.wis-mle-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 4vw, 3rem);
	box-sizing: border-box;
}

.wis-mle-lightbox[hidden] {
	display: none !important;
}

.wis-mle-lightbox-backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: 0 !important;
	background: none !important;
	background-color: var(--wis-mle-lightbox-background-color) !important;
	background-image: none !important;
	opacity: var(--wis-mle-lightbox-background-opacity) !important;
	cursor: pointer;
}

.wis-mle-lightbox-content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(96vw, 1200px);
	max-height: 92vh;
	line-height: 0;
	background: transparent;
	box-sizing: border-box;
}

.wis-mle-lightbox-video {
	display: block !important;
	width: auto !important;
	height: auto !important;
	max-width: min(96vw, 1200px) !important;
	max-height: 92vh !important;
	background: #000000 !important;
	box-shadow: none !important;
}

.wis-mle-lightbox-close {
	position: fixed !important;
	top: var(--wis-mle-lightbox-close-offset) !important;
	right: var(--wis-mle-lightbox-close-offset) !important;
	z-index: 2;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: var(--wis-mle-lightbox-close-size) !important;
	height: var(--wis-mle-lightbox-close-size) !important;
	min-width: 0 !important;
	min-height: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	border-width: var(--wis-mle-lightbox-close-border-width) !important;
	border-style: solid !important;
	border-color: var(--wis-mle-lightbox-close-border-color) !important;
	border-radius: var(--wis-mle-lightbox-close-radius) !important;
	background: var(--wis-mle-lightbox-close-background) !important;
	background-color: var(--wis-mle-lightbox-close-background) !important;
	background-image: none !important;
	box-shadow: none !important;
	color: var(--wis-mle-lightbox-close-color) !important;
	line-height: 1 !important;
	text-align: center;
	text-decoration: none;
	text-shadow: none !important;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	box-sizing: border-box !important;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wis-mle-lightbox-close:hover,
.wis-mle-lightbox-close:focus:hover {
	border-color: var(--wis-mle-lightbox-close-hover-border-color) !important;
	background: var(--wis-mle-lightbox-close-hover-background) !important;
	background-color: var(--wis-mle-lightbox-close-hover-background) !important;
	color: var(--wis-mle-lightbox-close-hover-color) !important;
}

.wis-mle-lightbox-close:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35) !important;
}

.wis-mle-lightbox-close-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--wis-mle-lightbox-close-icon-size);
	height: var(--wis-mle-lightbox-close-icon-size);
	font-size: var(--wis-mle-lightbox-close-icon-size);
	line-height: 1;
	color: currentColor !important;
}

.wis-mle-lightbox-close-icon svg,
.wis-mle-lightbox-close-icon i,
.wis-mle-lightbox-close-icon span {
	display: block;
	width: 1em;
	height: 1em;
	font-size: 1em;
	line-height: 1;
	fill: currentColor !important;
}

html.wis-mle-lightbox-open,
body.wis-mle-lightbox-open {
	overflow: hidden !important;
	overscroll-behavior: none;
}

body.wis-mle-lightbox-open {
	touch-action: none;
}

@media (max-width: 1024px) {
	.wis-mle-grid {
		--wis-mle-columns: 2;
	}
}

@media (max-width: 767px) {
	.wis-mle-grid {
		--wis-mle-columns: 1;
	}
}

/* -------------------------------------------------------------------------
   Pagination hard override for Elementor and theme button defaults
   ------------------------------------------------------------------------- */
.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-button:not(.is-active):not(:hover):not(:focus) {
	background: var(--wis-mle-pagination-number-background) !important;
	background-color: var(--wis-mle-pagination-number-background) !important;
	border-color: var(--wis-mle-pagination-number-border-color) !important;
	color: var(--wis-mle-pagination-number-color) !important;
}

.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-button:not(.is-active):hover,
.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-button:not(.is-active):focus {
	background: var(--wis-mle-pagination-number-hover-background) !important;
	background-color: var(--wis-mle-pagination-number-hover-background) !important;
	border-color: var(--wis-mle-pagination-number-hover-border-color) !important;
	border-radius: var(--wis-mle-pagination-number-hover-radius) !important;
	color: var(--wis-mle-pagination-number-hover-color) !important;
}

.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-button.is-active,
.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-button.is-active:hover,
.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-button.is-active:focus {
	background: var(--wis-mle-pagination-active-background) !important;
	background-color: var(--wis-mle-pagination-active-background) !important;
	background-image: none !important;
	border-color: var(--wis-mle-pagination-active-border-color) !important;
	border-radius: var(--wis-mle-pagination-active-radius) !important;
	color: var(--wis-mle-pagination-active-color) !important;
}

.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-arrow {
	align-items: center !important;
	background: var(--wis-mle-pagination-arrow-background) !important;
	background-color: var(--wis-mle-pagination-arrow-background) !important;
	border-color: var(--wis-mle-pagination-arrow-border-color) !important;
	border-radius: var(--wis-mle-pagination-arrow-radius) !important;
	border-style: solid !important;
	border-width: var(--wis-mle-pagination-arrow-border-width) !important;
	color: var(--wis-mle-pagination-arrow-color) !important;
	display: inline-flex !important;
	font-size: var(--wis-mle-pagination-arrow-icon-size) !important;
	height: var(--wis-mle-pagination-arrow-size) !important;
	justify-content: center !important;
	line-height: 1 !important;
	max-height: none !important;
	max-width: none !important;
	min-height: var(--wis-mle-pagination-arrow-size) !important;
	min-width: var(--wis-mle-pagination-arrow-size) !important;
	padding: 0 !important;
	width: var(--wis-mle-pagination-arrow-size) !important;
}

.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-arrow:hover,
.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-arrow:focus {
	background: var(--wis-mle-pagination-arrow-hover-background) !important;
	background-color: var(--wis-mle-pagination-arrow-hover-background) !important;
	border-color: var(--wis-mle-pagination-arrow-hover-border-color) !important;
	color: var(--wis-mle-pagination-arrow-hover-color) !important;
}

.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-arrow.is-disabled,
.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-arrow:disabled {
	background: var(--wis-mle-pagination-arrow-background) !important;
	background-color: var(--wis-mle-pagination-arrow-background) !important;
	border-color: var(--wis-mle-pagination-arrow-border-color) !important;
	color: var(--wis-mle-pagination-arrow-color) !important;
}

.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-arrow .wis-mle-pagination-arrow-icon {
	align-items: center !important;
	color: inherit !important;
	display: inline-flex !important;
	flex: 0 0 var(--wis-mle-pagination-arrow-icon-size) !important;
	font-size: var(--wis-mle-pagination-arrow-icon-size) !important;
	height: var(--wis-mle-pagination-arrow-icon-size) !important;
	justify-content: center !important;
	line-height: 1 !important;
	max-height: none !important;
	max-width: none !important;
	min-height: var(--wis-mle-pagination-arrow-icon-size) !important;
	min-width: var(--wis-mle-pagination-arrow-icon-size) !important;
	width: var(--wis-mle-pagination-arrow-icon-size) !important;
}

.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-arrow .wis-mle-pagination-arrow-icon svg,
.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-arrow .wis-mle-pagination-arrow-icon i,
.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-arrow .wis-mle-pagination-arrow-icon span {
	color: inherit !important;
	display: block !important;
	fill: currentColor !important;
	font-size: var(--wis-mle-pagination-arrow-icon-size) !important;
	height: var(--wis-mle-pagination-arrow-icon-size) !important;
	line-height: 1 !important;
	max-height: none !important;
	max-width: none !important;
	min-height: var(--wis-mle-pagination-arrow-icon-size) !important;
	min-width: var(--wis-mle-pagination-arrow-icon-size) !important;
	stroke: currentColor !important;
	width: var(--wis-mle-pagination-arrow-icon-size) !important;
}

.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-arrow .wis-mle-pagination-arrow-icon svg path {
	fill: currentColor !important;
}

/* -------------------------------------------------------------------------
   Pagination clean inline alignment
   ------------------------------------------------------------------------- */
.wis-mle-widget .wis-mle-pagination {
	align-items: center !important;
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	justify-content: center !important;
	line-height: 1 !important;
	white-space: nowrap !important;
}

.wis-mle-widget .wis-mle-pagination > * {
	align-items: center !important;
	box-sizing: border-box !important;
	flex: 0 0 auto !important;
	justify-content: center !important;
	line-height: 1 !important;
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	vertical-align: middle !important;
}

.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-button,
.wis-mle-widget .wis-mle-pagination button.wis-mle-pagination-arrow {
	align-self: center !important;
}

/* -------------------------------------------------------------------------
   Search widget
   ------------------------------------------------------------------------- */
.wis-mle-search-widget {
	box-sizing: border-box;
	width: 100%;
}

.wis-mle-search-input {
	appearance: none;
	box-sizing: border-box;
	display: block;
	max-width: 100%;
	outline: none;
}

.wis-mle-search-input::-webkit-search-cancel-button,
.wis-mle-search-input::-webkit-search-decoration {
	appearance: none;
}

.wis-mle-item.is-search-hidden {
	display: none !important;
}

.wis-mle-search-no-results {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	justify-content: center;
	margin-top: 16px;
}

.wis-mle-search-no-results[hidden] {
	display: none !important;
}

.wis-mle-search-no-results-icon {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	line-height: 1;
}

.wis-mle-search-no-results-icon svg,
.wis-mle-search-no-results-icon i {
	display: block;
	fill: currentColor;
	line-height: 1;
}

.wis-mle-search-no-results-text {
	display: block;
}

/* -------------------------------------------------------------------------
   Search input field with icon
   ------------------------------------------------------------------------- */
.wis-mle-search-widget {
	display: flex;
	width: 100%;
	box-sizing: border-box;
}

.wis-mle-search-field {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	padding: 12px 16px;
	border: 1px solid #d5d5d5;
	background-color: #ffffff;
	box-sizing: border-box;
}

.wis-mle-search-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	font-size: 18px;
	line-height: 1;
	color: #111111;
}

.wis-mle-search-icon svg,
.wis-mle-search-icon i,
.wis-mle-search-icon span {
	display: block;
	width: 1em;
	height: 1em;
	font-size: 1em;
	line-height: 1;
	fill: currentColor;
	color: currentColor;
}

.wis-mle-search-input {
	appearance: none;
	-webkit-appearance: none;
	display: block;
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	color: inherit;
	box-sizing: border-box;
}

/* -------------------------------------------------------------------------
   Search empty state inside the media widget
   ------------------------------------------------------------------------- */
.wis-mle-search-empty {
	--wis-mle-search-empty-icon-size: 28px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
	text-align: center;
	box-sizing: border-box;
}

.wis-mle-search-empty[hidden] {
	display: none !important;
}

.wis-mle-search-empty-icon,
.wis-mle-search-empty-icon-inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--wis-mle-search-empty-icon-size);
	height: var(--wis-mle-search-empty-icon-size);
	font-size: var(--wis-mle-search-empty-icon-size);
	line-height: 1;
}

.wis-mle-search-empty-icon svg,
.wis-mle-search-empty-icon i,
.wis-mle-search-empty-icon span,
.wis-mle-search-empty-icon-inner svg,
.wis-mle-search-empty-icon-inner i,
.wis-mle-search-empty-icon-inner span,
.wis-mle-search-empty-icon .elementor-icon,
.wis-mle-search-empty-icon-inner .elementor-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--wis-mle-search-empty-icon-size) !important;
	height: var(--wis-mle-search-empty-icon-size) !important;
	font-size: var(--wis-mle-search-empty-icon-size) !important;
	line-height: 1 !important;
	fill: currentColor;
	color: currentColor;
}

.wis-mle-search-empty-text {
	display: block;
	width: 100%;
}

.wis-mle-search-empty-align-left .wis-mle-search-empty {
	align-items: flex-start;
	text-align: left;
}

.wis-mle-search-empty-align-center .wis-mle-search-empty {
	align-items: center;
	text-align: center;
}

.wis-mle-search-empty-align-right .wis-mle-search-empty {
	align-items: flex-end;
	text-align: right;
}

/* -------------------------------------------------------------------------
   Search empty state refinement
   ------------------------------------------------------------------------- */
.wis-mle-search-empty .wis-mle-search-empty-icon {
	flex: 0 0 auto;
}

.wis-mle-search-empty .wis-mle-search-empty-icon-inner {
	flex: 0 0 auto;
}
