.image-compare .icv__control {
	visibility: hidden;
}

.image-compare-active .icv__wrapper {
	animation: animation-icv__wrapper 2s 1 normal ease-in-out 0.1s;
	-webkit-animation: animation-icv__wrapper 2s 1 normal ease-in-out 0.1s;
}

.image-compare-active .icv__control {
	animation: animation-icv__control 0s 2s forwards;
	-webkit-animation: animation-icv__control 0s 2s forwards;
}

@keyframes animation-icv__wrapper {
	0% {
		width: 94%;
	}

	50% {
		width: 40px;
	}

	100% {
		width: 94%;
	}
}

@-webkit-keyframes animation-icv__wrapper {
	0% {
		width: 94%;
	}

	50% {
		width: 40px;
	}

	100% {
		width: 94%;
	}
}

@keyframes animation-icv__control {
	to {
		visibility: visible;
	}
}

@-webkit-keyframes animation-icv__control {
	to {
		visibility: visible;
	}
}
