.slider__list {
    padding: 0px 0px 40px;
}
.slider__item_active .slider__image{
	opacity: 1;
	-webkit-filter: none;
	filter: none;
}
.slider__image{
	opacity: 0.3;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
	transition: all 1s;
	margin: 0 auto;
}
.slider__item.slick-active .slider__image{
	-webkit-filter: none;
	filter: none;
	opacity: 1;
}
.slider__arrows {
    position: absolute;
    width: 100%;
    max-width: 1000px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.slider__arrow{
	display: none;
	position: absolute;
	top: 200px;
	width: 60px;
	height: 60px;
	background-size: cover;
	cursor: pointer;
	opacity: 0.5;
}
.slider__arrow:hover{
	opacity: 1;
}
.slider__arrow_left{left: -85px; background: url(/local/templates/mdm/img/arrow-left.svg) no-repeat;}
.slider__arrow_right{right: -85px; background: url(/local/templates/mdm/img/arrow-right.svg) no-repeat;}
.slider__arrow_left:hover{background: url(/local/templates/mdm/img/arrow-left-hover.png) no-repeat;}
.slider__arrow_right:hover{background: url(/local/templates/mdm/img/arrow-right-hover.png) no-repeat;}

.slider__dots{
	position: absolute;
	bottom: 0;
	left: 50%;
	margin: 0 0 0 -36px;
	padding: 0;
	list-style: none;
}
.slider__dots li{
	display: inline-block;
	margin-right: 4px;
	width: 15px;
	height: 15px;
	background: #737373;
	cursor: pointer;
}
.slider__dots li button{
	display: none;
}
.slider__dots li.slick-active{
	background: #f02d35;
}
@media screen and (max-width: 1220px){
	.slider__dots{
		transform: translateX(-25%);
	}
}
@media screen and (max-width: 1000px) {
	.slider__arrows {display: none;}
}