/* FT Club Hero Slider
   Every position and size is written by the script; this file only sets up the
   stacking context and the pre animation state so nothing flashes before load. */

.ftchs-wrap {
	position: relative;
	width: 100%;
	max-width: none;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}

.ftchs {
	position: relative;
	width: 100%;
	overflow: hidden;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
}

.ftchs-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	z-index: 0;
}

.ftchs-layer {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	border: 0 solid transparent;
	box-sizing: content-box;
	white-space: nowrap;
	letter-spacing: 0;
	text-align: left;
	transform-origin: 50% 50%;
	backface-visibility: hidden;
	opacity: 0;
	visibility: hidden;
	will-change: transform, opacity;
}

.ftchs-image img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	border: 0;
	-webkit-user-drag: none;
}

.ftchs-button {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out;
}

/* Once the script has measured the module it removes .ftchs-idle and the
   layers become paintable. */
.ftchs.ftchs-ready .ftchs-layer {
	visibility: visible;
}

.ftchs-layer.ftchs-hidden {
	visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
	.ftchs-button {
		transition: none;
	}
}
