.owl-theme .owl-nav.disabled+.owl-dots {
	display: flex;
	justify-content: center;
	gap: 9px;
}

.owl-theme .owl-dots .owl-dot {
	width: 71px;
	height: 5px;

	border-radius: 0;

	background: #000;

	opacity: 0.48;

	> span {
		display: none;
	}

	&.active {
		background: var(--accent);

		opacity: 1;
	}
}

.owl-theme .owl-nav {
  /*default owl-theme theme reset .disabled:hover links */
}
.owl-theme .owl-nav [class*='owl-'] {
  transition: all .3s ease;
}
.owl-theme .owl-nav [class*='owl-'].disabled:hover {
  background-color: #D6D6D6;
}

.owl-carousel .item {
	background-color: #4CAF50;
	border-radius: 5px;
	padding: 20px;
	text-align: center;
	margin: 10px;
}

.owl-theme .owl-nav {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.owl-theme .owl-nav [class*=owl-]:hover {
	opacity: 0.5;
	background: transparent;
}

@media (max-width: 1040px) {
	.owl-theme .owl-nav.disabled+.owl-dots {
		margin: 0 auto;
    margin-top: 10px;
		width: 80%;
	}
}
