.vc-ie-container {
	position: relative;
	display: inline-block;
	max-width: 100%;
}

.vc-ie-images {
	position: relative;
	width: 100%;
}

.vc-ie-images img {
	display: block;
	max-width: 100%;
	height: auto;
	transition: opacity 0.3s ease-in-out;
}

.vc-ie-original.hidden {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
}

.vc-ie-enhanced.hidden {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
}

.vc-ie-original.active,
.vc-ie-enhanced.active {
	opacity: 1;
	pointer-events: auto;
}

/* Fallback for when one is absolute to maintain height */
.vc-ie-original.active {
	position: relative;
}
.vc-ie-enhanced.hidden {
	position: absolute;
}
.vc-ie-enhanced.active {
	position: relative;
}
.vc-ie-original.hidden {
	position: absolute;
}

.vc-ie-notice {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-top: none;
	border-radius: 0 0 6px 6px;
	font-size: 13px;
	color: #495057;
}

.vc-ie-text {
	font-style: italic;
	margin-right: 15px;
}

/* Toggle Switch Styles */
.vc-ie-toggle {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.vc-ie-toggle-label {
	margin-right: 8px;
	font-weight: 600;
}

.vc-ie-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
}

.vc-ie-slider {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 22px;
	background-color: #ccc;
	border-radius: 22px;
	transition: .4s;
}

.vc-ie-slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	border-radius: 50%;
	transition: .4s;
}

.vc-ie-toggle input:checked + .vc-ie-slider {
	background-color: #0071a1;
}

.vc-ie-toggle input:focus + .vc-ie-slider {
	box-shadow: 0 0 1px #0071a1;
}

.vc-ie-toggle input:checked + .vc-ie-slider:before {
	transform: translateX(18px);
}
