
.itw-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
	line-height: 0;
}

.itw-images {
	position: relative;
	width: 100%;
	display: block;
	line-height: 0;
	border-radius: 0 30px;
	overflow: hidden;
	background: #f8f8f6;
}

.itw-image {
	display: block;
	width: 100%;
	height: auto;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 400ms ease;
	pointer-events: none;
}

.itw-image-1 {
	position: relative;
}

.itw-image.itw-visible {
	opacity: 1;
	pointer-events: auto;
}

.itw-toggle-bar {
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	white-space: nowrap;
}

.itw-btn {
	cursor: pointer;
	border: none;
	outline: none;
	transition: background-color 200ms ease, color 200ms ease;
	display: inline-block;
	color: var(--e-global-color-text);
	position: relative;
	font-weight: normal;
	font-size: 14px !important;
	text-decoration: none;
	transition: all .3s ease;
	transition: all .3s ease;
	line-height: 1 !important;
}

.itw-toggle-bar button:first-child {
	border-radius: 1px 0 0 20px !important;
}

.itw-toggle-bar button:last-child {
	border-radius: 0 20px 1px 0 !important;
}

.itw-btn:not(.itw-active):hover {
	color: #fff;
}

.itw-btn.itw-active {
	background: #fff;
	color: #111;
}
