/* SCROLLING FOR iOS */
@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) {
	@media {
		.fancybox-slide {
			overflow: scroll;
			-webkit-overflow-scrolling: touch;
		}
	}
}
@media not all and (min-resolution:.001dpcm) {
	@media {
		.fancybox-slide {
			overflow: scroll;
			-webkit-overflow-scrolling: touch;
		}
	}
}

/* IE */
@media screen and (min-width:0\0) {
	a .icon,
	button .icon {
		-webkit-transition: fill 0.3s;
		-o-transition: fill 0.3s;
		transition: fill 0.3s;
	}
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	a .icon,
	button .icon {
		-webkit-transition: fill 0.3s;
		-o-transition: fill 0.3s;
		transition: fill 0.3s;
	}
}