/* Owl Dots Start */

.owl-dots {
	position: absolute;
	bottom: 10px;
	width: 100%;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	display: flex;
	right: 0;
	align-items: center;
	justify-content: center;
}

.owl-dot {
	border-radius: 50px;
	height: 15px;
	width: 15px;
	display: inline-block;
	background: #fff;
	margin-left: 5px;
	margin-right: 5px;
	border: 1px solid #aaa;
}

.owl-dot.active {
	background: #3d3d3d;
	border-color: #3d3d3d;
	color: wheat;
}

.owl-dots {
	text-align: center;
}

/* Owl Dots End */

/* Owl Nav Start */

.owl-nav.disabled {
	display: none;
}

.owl-prev, .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	background-color: #fff;
	border-radius: 50%;
	border: 2px solid #333;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
}

.owl-prev {
	left: 0;
}

.owl-next {
	right: 0;
}

/* Owl Nav End */