/*
 * 	Custom theme - Owl Carousel CSS File
 */
.owl-stage {
	display: flex;
	align-items: stretch;
}

.owl-item {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	align-items: stretch;
	justify-content: stretch;
}

.owl-item:not(.active) {
	opacity: 0.5;
}

.owl-nav {
	position: relative;

	display: flex;
	justify-content: center;
	height: 19px;
	margin-top: 70px;

	line-height: 19px;
}

.owl-nav button {
	/* position: absolute; */
	outline: none;
}

.owl-nav button.owl-next {
	right: 0;
}

.owl-nav button.owl-prev {
	left: 0;
}

.owl-nav button svg {
	padding: 0 30px;

	color: #e767a2; /* Избыточно, но оставил для примера fill: currentColor; */

	fill: currentColor;
}

.owl-nav button.disabled span {
	background: #d6d6d6;
}

.owl-dots {
	position: relative;

	display: flex;
	justify-content: center;
	margin-top: 18px;
	margin-right: -7px;
	margin-left: -7px;
}

.owl-dot span {
	display: block;
	width: 12px;
	height: 12px;
	margin: 0 7px;

	border: 1px solid white;
	border-radius: 50%;
}

.owl-dot.active span {
	background: #e37222;
	border-color: #e37222;
}

.owl-dot {
	outline: none;
}
