.ts-slideshow {
	--ts-speed: 800ms;
	width: 100%;
	height: auto;
	position: relative;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	overflow: hidden;
	background: #111;
	color: #fff;
	isolation: isolate;
}

html.ts-slideshow-fill,
html.ts-slideshow-fill.admin-bar,
body.ts-slideshow-fill {
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	height: 100% !important;
	--wp-admin--admin-bar--height: 0px;
}

html.ts-slideshow-fill #wpadminbar,
html.ts-slideshow-fill .skip-link {
	display: none !important;
}

.ts-slideshow--fill {
	position: fixed !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	z-index: 2147483000 !important;
}

.ts-slideshow p,
.ts-slideshow br {
	display: none !important;
	margin: 0 !important;
	padding: 0 !important;
	height: 0 !important;
}

.ts-slideshow__stage {
	position: relative;
	width: 100%;
	height: auto;
}

.ts-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
}

.ts-slide.is-active,
.ts-slide.is-entering,
.ts-slide.is-leaving {
	opacity: 1;
	visibility: visible;
}

.ts-slide.is-active {
	position: relative;
	z-index: 2;
}

.ts-slide.is-leaving {
	position: absolute;
	inset: 0;
	z-index: 3;
}

.ts-slide__media {
	width: 100%;
	height: auto;
	max-width: 100%;
	display: block;
	object-fit: unset;
	object-position: center;
	background: transparent;
}

.ts-slide--video .ts-slide__media,
.ts-slide--youtube .ts-slide__media {
	pointer-events: none;
	width: 100%;
	height: auto;
}

.ts-slide__youtube {
	border: 0;
	aspect-ratio: 16 / 9;
	background: #000;
}

.ts-slideshow--sized,
.ts-slideshow--sized .ts-slideshow__stage {
	height: 100%;
}

.ts-slideshow--sized .ts-slide,
.ts-slideshow--sized .ts-slide.is-active,
.ts-slideshow--sized .ts-slide.is-leaving {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ts-slideshow--sized .ts-slide__media,
.ts-slideshow--sized .ts-slide--video .ts-slide__media,
.ts-slideshow--sized .ts-slide--youtube .ts-slide__media {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.ts-slideshow--sized .ts-slide__youtube {
	aspect-ratio: auto;
}

.ts-slideshow video::-webkit-media-controls {
	display: none !important;
}

.ts-slideshow-empty {
	margin: 0;
	padding: 16px;
	border: 1px dashed #c3c4c7;
	background: #f6f7f7;
}

.ts-slide.ts-trans-fade.is-leaving {
	animation: ts-fade-out var(--ts-speed) ease both;
}

.ts-slide.ts-trans-fade.is-entering {
	animation: ts-fade-in var(--ts-speed) ease both;
}

.ts-slide.ts-trans-slide-left.is-leaving {
	animation: ts-slide-left-out var(--ts-speed) ease both;
}

.ts-slide.ts-trans-slide-left.is-entering {
	animation: ts-slide-left-in var(--ts-speed) ease both;
}

.ts-slide.ts-trans-slide-right.is-leaving {
	animation: ts-slide-right-out var(--ts-speed) ease both;
}

.ts-slide.ts-trans-slide-right.is-entering {
	animation: ts-slide-right-in var(--ts-speed) ease both;
}

.ts-slide.ts-trans-slide-up.is-leaving {
	animation: ts-slide-up-out var(--ts-speed) ease both;
}

.ts-slide.ts-trans-slide-up.is-entering {
	animation: ts-slide-up-in var(--ts-speed) ease both;
}

.ts-slide.ts-trans-slide-down.is-leaving {
	animation: ts-slide-down-out var(--ts-speed) ease both;
}

.ts-slide.ts-trans-slide-down.is-entering {
	animation: ts-slide-down-in var(--ts-speed) ease both;
}

.ts-slide.ts-trans-zoom.is-leaving {
	animation: ts-zoom-out var(--ts-speed) ease both;
}

.ts-slide.ts-trans-zoom.is-entering {
	animation: ts-zoom-in var(--ts-speed) ease both;
}

.ts-slide.ts-trans-wipe.is-leaving {
	animation: ts-wipe-out var(--ts-speed) ease both;
}

.ts-slide.ts-trans-wipe.is-entering {
	animation: ts-wipe-in var(--ts-speed) ease both;
}

.ts-slide.ts-trans-none.is-leaving {
	opacity: 0;
}

.ts-slide.ts-trans-none.is-entering {
	opacity: 1;
}

@keyframes ts-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes ts-fade-out {
	from { opacity: 1; }
	to { opacity: 0; }
}

@keyframes ts-slide-left-in {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}

@keyframes ts-slide-left-out {
	from { transform: translateX(0); }
	to { transform: translateX(-100%); }
}

@keyframes ts-slide-right-in {
	from { transform: translateX(-100%); }
	to { transform: translateX(0); }
}

@keyframes ts-slide-right-out {
	from { transform: translateX(0); }
	to { transform: translateX(100%); }
}

@keyframes ts-slide-up-in {
	from { transform: translateY(100%); }
	to { transform: translateY(0); }
}

@keyframes ts-slide-up-out {
	from { transform: translateY(0); }
	to { transform: translateY(-100%); }
}

@keyframes ts-slide-down-in {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}

@keyframes ts-slide-down-out {
	from { transform: translateY(0); }
	to { transform: translateY(100%); }
}

@keyframes ts-zoom-in {
	from { opacity: 0; transform: scale(1.12); }
	to { opacity: 1; transform: scale(1); }
}

@keyframes ts-zoom-out {
	from { opacity: 1; transform: scale(1); }
	to { opacity: 0; transform: scale(0.92); }
}

@keyframes ts-wipe-in {
	from { clip-path: inset(0 100% 0 0); }
	to { clip-path: inset(0 0 0 0); }
}

@keyframes ts-wipe-out {
	from { clip-path: inset(0 0 0 0); }
	to { clip-path: inset(0 0 0 100%); }
}

@media (prefers-reduced-motion: reduce) {
	.ts-slide.is-entering,
	.ts-slide.is-leaving {
		animation: none !important;
	}
}
