/* --------- Клиенты --------- */

#otzyvy .carousel {
	padding: 0;
	width: 100%;
	position: relative;
}

#otzyvy .carousel-inner {
	width: 100%;
	position: relative;
	overflow: hidden;
}

/* Новое */

#otzyvy .carousel-inner form {
	margin: 0 auto;
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* Старндартное */

#otzyvy .carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

#otzyvy .carousel-item.active,
#otzyvy .carousel-item-next,
#otzyvy .carousel-item-prev {
	display: block;
}

#otzyvy .carousel-item-next,
#otzyvy .carousel-item-prev {
	position: absolute;
	top: 0;
}

/* Обёртка стрелок */

#otzyvy .carousel-control-prev,
#otzyvy .carousel-control-next {
	position: absolute;
	top: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 15%;	
	color: #fff;
	text-align: center;
	opacity: 0.3;
	margin: -12px .0rem 0;
	width: 24px;
	height: 24px;
	top: 50%;
}

#otzyvy .carousel-control-prev:hover, .carousel-control-prev:focus,
#otzyvy .carousel-control-next:hover,
#otzyvy .carousel-control-next:focus {
	color: #fff;
	text-decoration: none;
	outline: 0;
	opacity: .9;
}

#otzyvy .carousel-control-prev { left: 0; }
#otzyvy .carousel-control-next { right: 0; }

/* Стрелки */

#otzyvy .carousel-control-prev-icon,
#otzyvy .carousel-control-next-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	background: transparent no-repeat center center;
	background-size: 100% 100%;
}

#otzyvy .carousel-control-prev-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
	background-image: url('../../../images/interface/proekti-back.png');
}

#otzyvy .carousel-control-next-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
	background-image: url('../../../images/interface/proekti-next.png');
}

/* Индикаторы */

#otzyvy .carousel-indicators {
	position: absolute;
	right: 0;
	bottom: -3rem;
	left: 0;
	z-index: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 0;
	margin-right: 15%;
	margin-left: 15%;
	list-style: none;
	/display: none;
}

#otzyvy .carousel-indicators li {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 30px;
	height: 3px;
	margin-right: 8px;
	margin-left: 8px;
	text-indent: -999px;
	width: 14px;
	height: 14px;
	background-color: rgba(0,0,0,.1);
	cursor: pointer;
}

#otzyvy .carousel-indicators li::before {
	position: absolute;
	top: -10px;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 10px;
	content: "";
}

#otzyvy .carousel-indicators li::after {
	position: absolute;
	bottom: -10px;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 10px;
	content: "";
}

#otzyvy .carousel-indicators .active { background-color: rgba(63,114,15,.9); }

#otzyvy .carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 20px;
	left: 15%;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
	text-align: center;
}