.news-gallery.owl-carousel,
.news-gallery .owl-stage-outer,
.news-gallery .owl-stage,
.news-gallery .owl-item,
.news-gallery .item {
	height: 100%;
}

.news-gallery .item {
	background-position: center;
	background-size: cover;
}

.news-gallery {
	position: relative;
}

.news-gallery .owl-nav {
	position: absolute;
	top: 0;
	right: 25px;
	bottom: 0;
	left: 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
}

.news-gallery .owl-nav .owl-prev,
.news-gallery .owl-nav .owl-next {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 50px;
	height: 50px;
	padding-top: 1px;
	color: var(--color-bright);
	font-size: 26px;
	background-color: var(--dimmer-dark);
	border-radius: 50%;
	pointer-events: all;
	transition: background-color 0.1s ease;
}

.news-gallery .owl-nav .owl-prev {
	padding-right: 2px;
}

.news-gallery .owl-nav .owl-next {
	padding-left: 2px;
}

body[data-device="desktop"] .news-gallery .owl-nav .owl-prev:hover,
body[data-device="desktop"] .news-gallery .owl-nav .owl-next:hover {
	background-color: var(--color-secondary);
}

@media (max-width: 1560px) {
	.news-gallery .owl-nav {
		right: 10px;
		left: 10px;
	}

	.news-gallery .owl-nav .owl-prev,
	.news-gallery .owl-nav .owl-next {
		width: 40px;
		height: 40px;
		font-size: 22px;
	}
}

@media (max-width: 1000px) {
	.news-gallery.owl-carousel {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
}
