.ksw-ew-gallery {
	--ksw-ew-main-thumb-gap: 22px;
	--ksw-ew-thumb-gap: 22px;
	--ksw-ew-thumb-width: 240px;
	--ksw-ew-thumb-height: 120px;
	--ksw-ew-thumb-nav-gap: 10px;
	--ksw-ew-thumbs-per-view: 4;
	--ksw-ew-main-object-fit: cover;
	--ksw-ew-main-media-background: #f4f4f5;
	--ksw-ew-main-media-hover-opacity: 1;
	--ksw-ew-main-media-active-opacity: 1;
	--ksw-ew-main-image-hover-scale: 1;
	--ksw-ew-main-image-active-scale: 1;
	--ksw-ew-thumb-object-fit: cover;
	--ksw-ew-thumb-background: transparent;
	--ksw-ew-thumb-hover-background: var(--ksw-ew-thumb-background);
	--ksw-ew-thumb-hover-border-color: transparent;
	--ksw-ew-thumb-active-background: var(--ksw-ew-thumb-background);
	--ksw-ew-thumb-active-opacity: 1;
	--ksw-ew-thumb-hover-scale: 1;
	--ksw-ew-thumb-active-scale: 1;
	--ksw-ew-pagination-top: 24px;
	--ksw-ew-pagination-right: 24px;
	--ksw-ew-pagination-bottom: 24px;
	--ksw-ew-pagination-left: 24px;
	--ksw-ew-pagination-min-width: 58px;
	--ksw-ew-pagination-min-height: 44px;
	--ksw-ew-active-thumb-border-color: transparent;
	--ksw-ew-thumb-hover-opacity: 1;
	--ksw-ew-nav-button-size: 42px;
	--ksw-ew-nav-button-background: #ffffff;
	--ksw-ew-nav-button-hover-background: #f9fafb;
	--ksw-ew-nav-button-hover-color: var(--ksw-ew-nav-button-color);
	--ksw-ew-nav-button-hover-border-color: rgba(17, 24, 39, 0.28);
	--ksw-ew-nav-button-active-background: var(--ksw-ew-nav-button-hover-background);
	--ksw-ew-nav-button-active-color: var(--ksw-ew-nav-button-color);
	--ksw-ew-nav-button-active-border-color: var(--ksw-ew-nav-button-hover-border-color);
	--ksw-ew-nav-button-disabled-background: var(--ksw-ew-nav-button-background);
	--ksw-ew-nav-button-disabled-color: var(--ksw-ew-nav-button-color);
	--ksw-ew-nav-button-disabled-border-color: rgba(17, 24, 39, 0.14);
	--ksw-ew-nav-button-disabled-opacity: 0.42;
	--ksw-ew-nav-button-hover-scale: 1;
	--ksw-ew-nav-button-active-scale: 1;
	--ksw-ew-thumb-arrow-rotation: 0deg;
	--ksw-ew-nav-button-color: #111827;
	--ksw-ew-focus-color: #1f2937;
	--ksw-ew-focus-width: 2px;
	--ksw-ew-focus-offset: 3px;
	display: flex;
	gap: var(--ksw-ew-main-thumb-gap);
	width: 100%;
	box-sizing: border-box;
}

.ksw-ew-gallery,
.ksw-ew-gallery * {
	box-sizing: border-box;
}

.ksw-ew-gallery--thumbs-bottom {
	flex-direction: column;
}

.ksw-ew-gallery--thumbs-left {
	flex-direction: row-reverse;
	align-items: stretch;
}

.ksw-ew-gallery--thumbs-right {
	flex-direction: row;
	align-items: stretch;
}

.ksw-ew-gallery--no-thumbnails {
	display: block;
}

.ksw-ew-gallery__main {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
}

.ksw-ew-gallery__main-track {
	position: relative;
	width: 100%;
	touch-action: auto;
}

.ksw-ew-gallery.ksw-ew-gallery--has-multiple[data-main-swipe="yes"] .ksw-ew-gallery__main-track {
	touch-action: pan-y;
}

.ksw-ew-gallery:not([data-ksw-ew-initialized="yes"]) .ksw-ew-gallery__main-track {
	display: grid;
	gap: var(--ksw-ew-main-thumb-gap);
}

.ksw-ew-gallery:not([data-ksw-ew-initialized="yes"]) .ksw-ew-gallery__pagination,
.ksw-ew-gallery:not([data-ksw-ew-initialized="yes"]) .ksw-ew-gallery__main-arrow,
.ksw-ew-gallery:not([data-ksw-ew-initialized="yes"]) .ksw-ew-gallery__thumbs {
	display: none;
}

.ksw-ew-gallery__main-slide {
	width: 100%;
}

.ksw-ew-gallery[data-ksw-ew-initialized="yes"] .ksw-ew-gallery__main-slide {
	grid-area: 1 / 1;
	display: none;
	width: 100%;
	pointer-events: none;
}

.ksw-ew-gallery[data-ksw-ew-initialized="yes"] .ksw-ew-gallery__main-slide.is-active {
	display: block;
	pointer-events: auto;
}

.ksw-ew-gallery[data-ksw-ew-initialized="yes"] .ksw-ew-gallery__main-track {
	display: grid;
	overflow: hidden;
}

.ksw-ew-gallery[data-ksw-ew-initialized="yes"] .ksw-ew-gallery__main-slide.is-entering,
.ksw-ew-gallery[data-ksw-ew-initialized="yes"] .ksw-ew-gallery__main-slide.is-leaving {
	display: block;
}

.ksw-ew-gallery[data-ksw-ew-initialized="yes"] .ksw-ew-gallery__main-slide.is-entering-from-next {
	animation: ksw-ew-main-enter-next 260ms ease both;
}

.ksw-ew-gallery[data-ksw-ew-initialized="yes"] .ksw-ew-gallery__main-slide.is-leaving-to-next {
	animation: ksw-ew-main-leave-next 260ms ease both;
}

.ksw-ew-gallery[data-ksw-ew-initialized="yes"] .ksw-ew-gallery__main-slide.is-entering-from-prev {
	animation: ksw-ew-main-enter-prev 260ms ease both;
}

.ksw-ew-gallery[data-ksw-ew-initialized="yes"] .ksw-ew-gallery__main-slide.is-leaving-to-prev {
	animation: ksw-ew-main-leave-prev 260ms ease both;
}

.ksw-ew-gallery.is-main-dragging .ksw-ew-gallery__main-track {
	cursor: grabbing;
}

@media (hover: hover) and (pointer: fine) {
	.ksw-ew-gallery[data-ksw-ew-initialized="yes"].ksw-ew-gallery--has-multiple[data-main-swipe="yes"] .ksw-ew-gallery__main-track {
		cursor: grab;
	}

	.ksw-ew-gallery.is-main-dragging .ksw-ew-gallery__main-track {
		cursor: grabbing;
	}
}

.ksw-ew-gallery__main-media {
	display: block;
	overflow: hidden;
	width: 100%;
	background: var(--ksw-ew-main-media-background);
	color: inherit;
	text-decoration: none;
	transition: box-shadow 160ms ease, opacity 160ms ease;
}

a.ksw-ew-gallery__main-media {
	cursor: pointer;
}

a.ksw-ew-gallery__main-media:hover,
a.ksw-ew-gallery__main-media:focus-visible {
	opacity: var(--ksw-ew-main-media-hover-opacity);
}

a.ksw-ew-gallery__main-media:active {
	opacity: var(--ksw-ew-main-media-active-opacity);
}

.ksw-ew-gallery__sr-only {
	position: absolute;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	white-space: nowrap;
}

.ksw-ew-gallery__main-image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: var(--ksw-ew-main-object-fit);
	transition: transform 220ms ease;
}

a.ksw-ew-gallery__main-media:hover .ksw-ew-gallery__main-image,
a.ksw-ew-gallery__main-media:focus-visible .ksw-ew-gallery__main-image {
	transform: scale(var(--ksw-ew-main-image-hover-scale));
}

a.ksw-ew-gallery__main-media:active .ksw-ew-gallery__main-image {
	transform: scale(var(--ksw-ew-main-image-active-scale));
}

.ksw-ew-gallery--aspect-16-9 .ksw-ew-gallery__main-media {
	aspect-ratio: 16 / 9;
}

.ksw-ew-gallery--aspect-4-3 .ksw-ew-gallery__main-media {
	aspect-ratio: 4 / 3;
}

.ksw-ew-gallery--aspect-3-2 .ksw-ew-gallery__main-media {
	aspect-ratio: 3 / 2;
}

.ksw-ew-gallery--aspect-1-1 .ksw-ew-gallery__main-media {
	aspect-ratio: 1 / 1;
}

.ksw-ew-gallery--aspect-16-9 .ksw-ew-gallery__main-image,
.ksw-ew-gallery--aspect-4-3 .ksw-ew-gallery__main-image,
.ksw-ew-gallery--aspect-3-2 .ksw-ew-gallery__main-image,
.ksw-ew-gallery--aspect-1-1 .ksw-ew-gallery__main-image {
	width: 100%;
	height: 100%;
}

.ksw-ew-gallery__pagination {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: var(--ksw-ew-pagination-min-width);
	min-height: var(--ksw-ew-pagination-min-height);
	background: #fffff7;
	color: #3f3f2f;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	pointer-events: none;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.ksw-ew-gallery--pagination-top-left .ksw-ew-gallery__pagination {
	top: var(--ksw-ew-pagination-top);
	left: var(--ksw-ew-pagination-left);
}

.ksw-ew-gallery--pagination-top-right .ksw-ew-gallery__pagination {
	top: var(--ksw-ew-pagination-top);
	right: var(--ksw-ew-pagination-right);
}

.ksw-ew-gallery--pagination-bottom-left .ksw-ew-gallery__pagination {
	bottom: var(--ksw-ew-pagination-bottom);
	left: var(--ksw-ew-pagination-left);
}

.ksw-ew-gallery--pagination-bottom-right .ksw-ew-gallery__pagination {
	right: var(--ksw-ew-pagination-right);
	bottom: var(--ksw-ew-pagination-bottom);
}

.ksw-ew-gallery__pagination-separator {
	opacity: 0.65;
}

.ksw-ew-gallery__main-arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--ksw-ew-nav-button-size);
	height: var(--ksw-ew-nav-button-size);
	padding: 0;
	border: 1px solid rgba(17, 24, 39, 0.14);
	border-radius: 999px;
	background: var(--ksw-ew-nav-button-background);
	color: var(--ksw-ew-nav-button-color);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
	cursor: pointer;
	font-size: calc(var(--ksw-ew-nav-button-size) * 0.58);
	line-height: 1;
	outline: 0;
	transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, opacity 160ms ease, transform 160ms ease;
	transform: translateY(-50%);
	appearance: none;
	-webkit-appearance: none;
}

.ksw-ew-gallery__main-arrow--prev {
	left: 18px;
}

.ksw-ew-gallery__main-arrow--next {
	right: 18px;
}

.ksw-ew-gallery .ksw-ew-gallery__main-arrow:hover,
.ksw-ew-gallery .ksw-ew-gallery__main-arrow:focus,
.ksw-ew-gallery .ksw-ew-gallery__main-arrow:focus-visible {
	background: var(--ksw-ew-nav-button-hover-background);
	border-color: var(--ksw-ew-nav-button-hover-border-color);
	color: var(--ksw-ew-nav-button-hover-color);
	transform: translateY(-50%) scale(var(--ksw-ew-nav-button-hover-scale));
}

.ksw-ew-gallery .ksw-ew-gallery__main-arrow:active:not(:disabled) {
	background: var(--ksw-ew-nav-button-active-background);
	border-color: var(--ksw-ew-nav-button-active-border-color);
	box-shadow: none;
	color: var(--ksw-ew-nav-button-active-color);
	transform: translateY(-50%) scale(var(--ksw-ew-nav-button-active-scale));
}

.ksw-ew-gallery__main-arrow:disabled {
	background: var(--ksw-ew-nav-button-disabled-background);
	border-color: var(--ksw-ew-nav-button-disabled-border-color);
	color: var(--ksw-ew-nav-button-disabled-color);
	cursor: default;
	opacity: var(--ksw-ew-nav-button-disabled-opacity);
	transform: translateY(-50%) scale(1);
}

.ksw-ew-gallery__thumbs {
	display: flex;
	flex: 0 0 auto;
	gap: var(--ksw-ew-thumb-nav-gap);
	min-width: 0;
}

.ksw-ew-gallery--thumbs-bottom .ksw-ew-gallery__thumbs {
	width: 100%;
	align-items: center;
}

.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumbs,
.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumbs {
	width: var(--ksw-ew-thumb-width);
	flex-direction: column;
	align-items: stretch;
}

.ksw-ew-gallery__thumb-viewport {
	overflow: hidden;
	min-width: 0;
	user-select: none;
}

.ksw-ew-gallery--thumbs-bottom .ksw-ew-gallery__thumb-viewport {
	touch-action: pan-y;
}

.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumb-viewport,
.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumb-viewport {
	touch-action: pan-x;
}

.ksw-ew-gallery--thumbs-bottom .ksw-ew-gallery__thumb-viewport {
	flex: 1 1 auto;
	width: 100%;
}

.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumb-viewport,
.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumb-viewport {
	width: 100%;
	height: calc((var(--ksw-ew-thumb-height) * var(--ksw-ew-thumbs-per-view)) + (var(--ksw-ew-thumb-gap) * (var(--ksw-ew-thumbs-per-view) - 1)));
	min-height: var(--ksw-ew-thumb-height);
}

.ksw-ew-gallery__thumb-track {
	display: flex;
	gap: var(--ksw-ew-thumb-gap);
	transition: transform 220ms ease;
	will-change: transform;
}

.ksw-ew-gallery.is-dragging .ksw-ew-gallery__thumb-track {
	pointer-events: none;
}

.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumb-track,
.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumb-track {
	flex-direction: column;
}

.ksw-ew-gallery__thumb {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 0;
	border: 0 solid transparent;
	background: var(--ksw-ew-thumb-background);
	cursor: pointer;
	outline: 0;
	appearance: none;
	transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease, transform 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
	.ksw-ew-gallery[data-ksw-ew-initialized="yes"].ksw-ew-gallery--thumbs-scrollable .ksw-ew-gallery__thumb-viewport,
	.ksw-ew-gallery[data-ksw-ew-initialized="yes"].ksw-ew-gallery--thumbs-scrollable .ksw-ew-gallery__thumb-track,
	.ksw-ew-gallery[data-ksw-ew-initialized="yes"].ksw-ew-gallery--thumbs-scrollable .ksw-ew-gallery__thumb {
		cursor: grab;
	}

	.ksw-ew-gallery.is-dragging .ksw-ew-gallery__thumb-viewport,
	.ksw-ew-gallery.is-dragging .ksw-ew-gallery__thumb-track,
	.ksw-ew-gallery.is-dragging .ksw-ew-gallery__thumb {
		cursor: grabbing;
	}
}

.ksw-ew-gallery--thumbs-bottom .ksw-ew-gallery__thumb {
	flex: 0 0 calc((100% - (var(--ksw-ew-thumb-gap) * (var(--ksw-ew-thumbs-per-view) - 1))) / var(--ksw-ew-thumbs-per-view));
	height: var(--ksw-ew-thumb-height);
}

.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumb,
.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumb {
	flex: 0 0 var(--ksw-ew-thumb-height);
	width: 100%;
}

.ksw-ew-gallery__thumb.is-active {
	background: var(--ksw-ew-thumb-active-background);
	border-color: var(--ksw-ew-active-thumb-border-color);
	opacity: var(--ksw-ew-thumb-active-opacity);
	transform: scale(var(--ksw-ew-thumb-active-scale));
}

.ksw-ew-gallery__thumb:hover:not(.is-active),
.ksw-ew-gallery__thumb:focus-visible:not(.is-active) {
	background: var(--ksw-ew-thumb-hover-background);
	border-color: var(--ksw-ew-thumb-hover-border-color);
	opacity: var(--ksw-ew-thumb-hover-opacity);
	transform: scale(var(--ksw-ew-thumb-hover-scale));
}

.ksw-ew-gallery .ksw-ew-gallery__thumb-arrow:focus-visible,
.ksw-ew-gallery .ksw-ew-gallery__main-arrow:focus-visible,
.ksw-ew-gallery__main-track:focus-visible,
.ksw-ew-gallery__main-media:focus-visible {
	outline: var(--ksw-ew-focus-width) solid var(--ksw-ew-focus-color);
	outline-offset: var(--ksw-ew-focus-offset);
}

.ksw-ew-gallery .ksw-ew-gallery__thumb-arrow:focus,
.ksw-ew-gallery .ksw-ew-gallery__main-arrow:focus {
	outline: 0;
}

.ksw-ew-gallery .ksw-ew-gallery__thumb-arrow:focus,
.ksw-ew-gallery .ksw-ew-gallery__thumb-arrow:focus-visible,
.ksw-ew-gallery .ksw-ew-gallery__main-arrow:focus,
.ksw-ew-gallery .ksw-ew-gallery__main-arrow:focus-visible {
	box-shadow: none;
}

.ksw-ew-gallery__thumb:focus,
.ksw-ew-gallery__thumb:focus-visible {
	outline: 0;
}

.ksw-ew-gallery__thumb-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: var(--ksw-ew-thumb-object-fit);
}

.ksw-ew-gallery__thumb-arrow {
	display: inline-flex;
	flex: 0 0 var(--ksw-ew-nav-button-size);
	align-items: center;
	justify-content: center;
	width: var(--ksw-ew-nav-button-size);
	height: var(--ksw-ew-nav-button-size);
	padding: 0;
	border: 1px solid rgba(17, 24, 39, 0.14);
	border-radius: 999px;
	background: var(--ksw-ew-nav-button-background);
	color: var(--ksw-ew-nav-button-color);
	cursor: pointer;
	font-size: calc(var(--ksw-ew-nav-button-size) * 0.58);
	line-height: 1;
	outline: 0;
	transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, opacity 160ms ease, transform 160ms ease;
	transform: rotate(var(--ksw-ew-thumb-arrow-rotation)) scale(1);
	appearance: none;
	-webkit-appearance: none;
}

.ksw-ew-gallery .ksw-ew-gallery__thumb-arrow:hover,
.ksw-ew-gallery .ksw-ew-gallery__thumb-arrow:focus,
.ksw-ew-gallery .ksw-ew-gallery__thumb-arrow:focus-visible {
	background: var(--ksw-ew-nav-button-hover-background);
	border-color: var(--ksw-ew-nav-button-hover-border-color);
	color: var(--ksw-ew-nav-button-hover-color);
	transform: rotate(var(--ksw-ew-thumb-arrow-rotation)) scale(var(--ksw-ew-nav-button-hover-scale));
}

.ksw-ew-gallery .ksw-ew-gallery__thumb-arrow:active:not(:disabled) {
	background: var(--ksw-ew-nav-button-active-background);
	border-color: var(--ksw-ew-nav-button-active-border-color);
	box-shadow: none;
	color: var(--ksw-ew-nav-button-active-color);
	transform: rotate(var(--ksw-ew-thumb-arrow-rotation)) scale(var(--ksw-ew-nav-button-active-scale));
}

.ksw-ew-gallery__thumb-arrow:disabled {
	background: var(--ksw-ew-nav-button-disabled-background);
	border-color: var(--ksw-ew-nav-button-disabled-border-color);
	color: var(--ksw-ew-nav-button-disabled-color);
	cursor: default;
	opacity: var(--ksw-ew-nav-button-disabled-opacity);
	transform: rotate(var(--ksw-ew-thumb-arrow-rotation)) scale(1);
}

.ksw-ew-gallery[data-ksw-ew-initialized="yes"]:not(.ksw-ew-gallery--thumbs-scrollable) .ksw-ew-gallery__thumb-arrow {
	display: none;
}

.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumb-arrow,
.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumb-arrow {
	align-self: center;
}

.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumb-arrow--prev,
.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumb-arrow--prev {
	--ksw-ew-thumb-arrow-rotation: 90deg;
}

.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumb-arrow--next,
.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumb-arrow--next {
	--ksw-ew-thumb-arrow-rotation: 90deg;
}

.ksw-ew-gallery-empty {
	padding: 18px;
	border: 1px dashed #cbd5e1;
	border-radius: 8px;
	background: #f8fafc;
	color: #475569;
	font-size: 14px;
	line-height: 1.5;
}

@media (max-width: 767px) {
	.ksw-ew-gallery,
	.ksw-ew-gallery--thumbs-left,
	.ksw-ew-gallery--thumbs-right {
		flex-direction: column;
	}

	.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumbs,
	.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumbs {
		width: 100%;
		flex-direction: row;
		align-items: center;
	}

	.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumb-viewport,
	.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumb-viewport {
		width: 100%;
		height: auto;
		touch-action: pan-y;
	}

	.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumb-track,
	.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumb-track {
		flex-direction: row;
	}

	.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumb,
	.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumb {
		flex: 0 0 calc((100% - (var(--ksw-ew-thumb-gap) * (var(--ksw-ew-thumbs-per-view) - 1))) / var(--ksw-ew-thumbs-per-view));
		height: var(--ksw-ew-thumb-height);
	}

	.ksw-ew-gallery__main-arrow--prev {
		left: 10px;
	}

	.ksw-ew-gallery__main-arrow--next {
		right: 10px;
	}

	.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumb-arrow--prev,
	.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumb-arrow--prev,
	.ksw-ew-gallery--thumbs-left .ksw-ew-gallery__thumb-arrow--next,
	.ksw-ew-gallery--thumbs-right .ksw-ew-gallery__thumb-arrow--next {
		--ksw-ew-thumb-arrow-rotation: 0deg;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ksw-ew-gallery {
		--ksw-ew-main-image-hover-scale: 1;
		--ksw-ew-main-image-active-scale: 1;
		--ksw-ew-thumb-hover-scale: 1;
		--ksw-ew-thumb-active-scale: 1;
		--ksw-ew-nav-button-hover-scale: 1;
		--ksw-ew-nav-button-active-scale: 1;
	}

	.ksw-ew-gallery__main-arrow,
	.ksw-ew-gallery__main-image,
	.ksw-ew-gallery__main-media,
	.ksw-ew-gallery__thumb,
	.ksw-ew-gallery__thumb-arrow,
	.ksw-ew-gallery__thumb-track {
		transition: none;
	}

	.ksw-ew-gallery[data-ksw-ew-initialized="yes"] .ksw-ew-gallery__main-slide.is-entering-from-next,
	.ksw-ew-gallery[data-ksw-ew-initialized="yes"] .ksw-ew-gallery__main-slide.is-leaving-to-next,
	.ksw-ew-gallery[data-ksw-ew-initialized="yes"] .ksw-ew-gallery__main-slide.is-entering-from-prev,
	.ksw-ew-gallery[data-ksw-ew-initialized="yes"] .ksw-ew-gallery__main-slide.is-leaving-to-prev {
		animation: none;
	}
}

@keyframes ksw-ew-main-enter-next {
	from {
		opacity: 0;
		transform: translateX(28px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ksw-ew-main-leave-next {
	from {
		opacity: 1;
		transform: translateX(0);
	}

	to {
		opacity: 0;
		transform: translateX(-28px);
	}
}

@keyframes ksw-ew-main-enter-prev {
	from {
		opacity: 0;
		transform: translateX(-28px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ksw-ew-main-leave-prev {
	from {
		opacity: 1;
		transform: translateX(0);
	}

	to {
		opacity: 0;
		transform: translateX(28px);
	}
}
