/*!
* chiefSlider
*   site: https://itchief.ru/javascript/slider
*   github: https://github.com/itchief/ui-components
*
* Copyright 2018-2021 Alexander Maltsev
* Licensed under MIT (https://github.com/itchief/ui-components/blob/master/LICENSE)
*/
.slider {
	position: relative
}

.slider__container {
	overflow: hidden
}

.slider__items {
	display: flex;
	transition: transform .5s ease
}

.slider_disable-transition {
	transition: none
}

.slider__item {
	flex: 0 0 100%;
	max-width: 100%;
	user-select: none
}

.slider__control {
	position: absolute;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	color: #fff;
	text-align: center;
	height: 50px;
	transform: translateY(-50%);
	background: transparent
}

.slider__control_hide {
	display: none
}

.slider__control[data-slide=prev] {
	left: 5px
}

.slider__control[data-slide=next] {
	right: 5px
}

.slider__control:focus,
.slider__control:hover {
	color: #fff;
	text-decoration: none;
	outline: 0;
}

.slider__control::before {
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	background: transparent no-repeat center center;
	background-size: 100% 100%
}

.slider__control[data-slide=prev]::before {
	transform: rotate(180deg);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 492 492'%3E%3Cpath d='M383 227L164 8c-5-5-12-8-19-8s-14 3-19 8l-16 16a27 27 0 000 38l183 184-184 184a27 27 0 000 38l16 16c6 5 12 8 19 8s14-3 20-8l219-219a27 27 0 000-38z'/%3E%3C/svg%3E")
}

.slider__control[data-slide=next]::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 492 492'%3E%3Cpath d='M383 227L164 8c-5-5-12-8-19-8s-14 3-19 8l-16 16a27 27 0 000 38l183 184-184 184a27 27 0 000 38l16 16c6 5 12 8 19 8s14-3 20-8l219-219a27 27 0 000-38z'/%3E%3C/svg%3E")
}

.slider__control[data-slide=prev]:hover::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231c84cc' viewBox='0 0 492 492'%3E%3Cpath d='M383 227L164 8c-5-5-12-8-19-8s-14 3-19 8l-16 16a27 27 0 000 38l183 184-184 184a27 27 0 000 38l16 16c6 5 12 8 19 8s14-3 20-8l219-219a27 27 0 000-38z'/%3E%3C/svg%3E")
}

.slider__control[data-slide=next]:hover::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231c84cc' viewBox='0 0 492 492'%3E%3Cpath d='M383 227L164 8c-5-5-12-8-19-8s-14 3-19 8l-16 16a27 27 0 000 38l183 184-184 184a27 27 0 000 38l16 16c6 5 12 8 19 8s14-3 20-8l219-219a27 27 0 000-38z'/%3E%3C/svg%3E")
}

.slider__indicators {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 15;
	display: flex;
	justify-content: center;
	padding-left: 0;
	margin-right: 15%;
	margin-left: 15%;
	list-style: none;
	margin-top: 0;
	margin-bottom: 0
}

.slider__indicators li {
	box-sizing: content-box;
	flex: 0 1 auto;
	width: 30px;
	height: 5px;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	cursor: pointer;
	background-color: rgba(255, 255, 255, .5);
	background-clip: padding-box;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent
}

.slider__indicators li.active {
	background-color: rgba(255, 255, 255, .9)
}