body{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	overflow-y: auto;
}
/*Скрываю полосу прокрутки*/
body::-webkit-scrollbar{
	display: none;
}

.slider-wrapper {
	overflow: hidden;
}
.tlg-slider {
	display: flex;
	transition: transform 0.5s ease-in-out;
	/*
	Ниже прокрутка пальцем с помощью css
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	overflow-x: scroll;
	*/
}
.slider img {
	height: auto;
	
}
.slider canvas{
	
}
.arrow-box{
	display: flex;
	justify-content: center;
	margin:20px 0;
}
.arrow {
    display: flex;
    align-items: center;
	background-color: #708177;
	color: white;
	padding: 0 12px 3px 12px;
	cursor: pointer;
	z-index: 100;
}
.arrow span{
	display:block;
	font-size: 30px;
	line-height: 30px;
	transform: scale(1.0);
}
.arrow.left {
	left: 10px;
	margin-right:30px;
}
.arrow.right {
	right: 10px;
}
.slider-container {
	position: relative;
}
.slade-item{
	position:relative;
}
.slide-content{
	position:absolute;
	top:0px;
}