.sl-arrows .sl-arrow {
	position: absolute;
	display: block;
	width: 20px;
	height: 30px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	background: transparent no-repeat left top;
	background-size: contain;
	transition: 0.35s opacity;
}
.sl-arrows .sl-prev {
	left: -50px;
	background-image: url("./images/arrow_prev_01.png");
}
.sl-arrows .sl-next {
	right: -50px;
	background-image: url("./images/arrow_next_01.png");
	transform: none;
}
.sl-arrows .sl-arrow:hover {
	opacity: 0.8;
}

.sl-arrows .sl-arrow::before {
	display: none;
}
.sl-arrows .sl-arrow::after {
	display: none;
}


.list-item-group .sl-slides {
	max-height: 146px;
	overflow: hidden;
}
.list-item-group .sl-slides.slick-initialized {
	max-height: none;
	overflow: visible;
}

.list-item-group .sl-arrows .sl-prev {
	left: -25px;
}
.list-item-group .sl-arrows .sl-next {
	right: -25px;
}

@media screen and (max-width: 768px) {
	.list-item-group .sl-slides {
		max-height: 78px;
		overflow: hidden;
	}
	.list-item-group .sl-slides.slick-initialized {
		max-height: none;
		overflow: visible;
	}
	.list-item-group .sl-arrows .sl-prev {
		left: -15px;
	}
	.list-item-group .sl-arrows .sl-next {
		right: -15px;
	}
	.list-item-group .checked-item-slider .thumb img {
		width: 120px!important;
		height: 90px!important;
	}
}