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

.owl-prev,
.owl-next {
	position: absolute;
	top: -100px !important;
	width: 20px;
	height: 20px;
	border-radius: 5px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s ease all;
}

.owl-prev {
	right: 50px;
	height: 50px;
	width: 20px;
	top: 0px;
	padding: 0 25px;
	border-radius: 0;
	background: #9cc026;
	color: #fff;
}

.owl-next {
	right: 0px;
	height: 50px;
	width: 20px;
	top: 0px;
	padding: 0 25px;
	border-radius: 0;
	background: #9cc026;
	color: #fff;
}

.owl-prev:after,
.owl-next:after {
	font-family: "FontAwesome";
	font-size: 35px;
	transition: 0.3s ease all;
	position: absolute;
	display: block;
}

.owl-prev.disabled:after,
.owl-next.disabled:after {
	color: #ddd;
}

.owl-prev:after {
	content: "\f104";
}

.owl-next:after {
	content: "\f105";
}

.owl-prev:hover,
.owl-next:hover {
	height: 50px;
	width: 20px;
	top: 0px;
	padding: 0 25px;
	border-radius: 0;
	background: rgb(80 132 218) 94;
	color: #0f69b1;
}

.owl-prev:hover:after,
.owl-next:hover:after {
}

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

.owl-dot {
	border-radius: 50px;
	height: 10px;
	cursor: pointer;
	width: 10px;
	display: inline-block;
	background: rgb(206 208 208 / 55%);
	margin: 0 3px;
}

.owl-dot.active {
	background: #ffffff;
	border: 4px solid #5faf21;
	background-color: #5faf21;
}

.owl-dots {
	text-align: center;
	gap: 5px;
}
