.sections_desktop_carousel{
	position: relative;
	display: none;
	padding: 0 50px;
}

.sections_desktop_carousel__viewport{
	overflow: hidden;
	width: 100%;
}

.sections_desktop_carousel__track{
	display: flex;
	align-items: stretch;
	transition: transform 0.3s ease;
	will-change: transform;
}

.sections_desktop_carousel__slide{
	box-sizing: border-box;
	flex: 0 0 25%;
	max-width: 25%;
	padding: 0 10px;
}

.sections_desktop_carousel__slide .item{
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	margin: 0 auto;
}

.sections_desktop_carousel__slide .img{
	width: 100%;
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 14px;
	float: none;
}

.sections_desktop_carousel__slide .img.shine:before,
.sections_desktop_carousel__slide .img.shine:after{
	display: none;
}

.sections_desktop_carousel__slide .thumb{
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.sections_desktop_carousel__slide .thumb img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	max-height: 100%;
}

.sections_desktop_carousel__slide .name{
	width: 100%;
	max-width: 220px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.sections_desktop_carousel__slide .name a{
	display: inline-block;
	text-align: center;
	line-height: 1.35;
}

/* кнопки */

.sections_desktop_carousel__nav{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;

	width: 32px;
	height: 32px;

	border: 1px solid #dcdcdc;
	background: #fff;
	border-radius: 50%;

	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.sections_desktop_carousel__nav:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;

	width: 8px;
	height: 8px;

	border-top: 2px solid #333;
	border-right: 2px solid #333;

	transform-origin: center;
}

.sections_desktop_carousel__nav--prev{
	left: 0;
}

.sections_desktop_carousel__nav--prev:before{
	transform: translate(-30%, -50%) rotate(-135deg);
}

.sections_desktop_carousel__nav--next{
	right: 0;
}

.sections_desktop_carousel__nav--next:before{
	transform: translate(-70%, -50%) rotate(45deg);
}

.sections_desktop_carousel__nav[disabled]{
	opacity: 0.35;
	cursor: default;
}

@media (min-width: 992px){
	.sections_desktop_carousel{
		display: block;
	}

	.sections_mobile_list{
		display: none;
	}
}

@media (min-width: 992px) and (max-width: 1199px){
	.sections_desktop_carousel__slide{
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}
}