/*Slide*/
.slider {
	margin: 0 auto;
	position: relative;
	height: 100%;
}
.slider-contain {
	height: 100%;
	position: relative;
}
.slider-contain .sliders {
	padding: 0;
	margin: 0 15px;
	top: 15px;
	position: absolute;
	transition: all 0.5s ease-in-out;
	transform: scale(1);
	opacity: 1;
	box-sizing: border-box;
	transform-origin: center;
}
.slider-arrow {
	position: absolute;
	top: 0;
	height: 100%;
}
.slider-arrow .conbox {
	height: 100%;
	position: relative;
}
.slider-arrow .arrow-left {
	position: absolute;
	left: 0;
}
.slider-arrow .arrow-right {
	position: absolute;
	right: 0;
}
.slider-arrow .arrow-left,
.slider-arrow .arrow-right {
	font-size: 24px;
	box-shadow: 0px 0px 10px rgba(188,188,188,0.75);
	background-color: white;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor:pointer;
}
