
.ha-nice_slide {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0;
}
.ha-nice_slide__wrapper {
	position: relative;
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0;
	width: 100%;
	margin: 0;
	overflow: hidden;
}
.ha-nice_slide__wrapper.tab {
	display: none;
	margin-bottom: 0;
}
.ha-nice_slide__item {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	margin-left: -1px;
	overflow: hidden;
	-webkit-transition: clip 1s cubic-bezier(0.46, 0.01, 0.17, 1);
	transition: clip 1s cubic-bezier(0.46, 0.01, 0.17, 1);
}
.ha-nice_slide__item img {
	display: none;
	z-index: 2;
	position: absolute;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transform: translate(calc(-50% - 10rem), 0);
	transform: translate(calc(-50% - 10rem), 0);
	-webkit-transition: -webkit-transform 1s cubic-bezier(0.46, 0.01, 0.17, 1);
	transition: -webkit-transform 1s cubic-bezier(0.46, 0.01, 0.17, 1);
	transition: transform 1s cubic-bezier(0.46, 0.01, 0.17, 1);
	transition: transform 1s cubic-bezier(0.46, 0.01, 0.17, 1),
		-webkit-transform 1s cubic-bezier(0.46, 0.01, 0.17, 1);
}
.ha-nice_slide__item img.is-next {
	display: block;
	z-index: 1;
}
.ha-nice_slide__item img.is-active {
	display: block;
	z-index: 2;
}
.ha-nice_slide__item img.is-show {
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.ha-nice_slide__item img.is-show.is-move {
	-webkit-transform: translate(calc(-50% + 10rem), 0);
	transform: translate(calc(-50% + 10rem), 0);
}