/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
	height: 100%;
	position: absolute;
	text-align: center;
	top: 0;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*='owl-'] {
	cursor: pointer;
	display: inline-block;
	height: 100%;
	opacity: 1;
	position: absolute;
	transition: 0.3s;
	width: 10%;
	z-index: 1;
}
.owl-theme .owl-nav [class*='owl-']:hover {
	text-decoration: none;
}
.owl-theme .owl-nav .owl-prev {
	background: url(/images/site/btn_prev_w.png) no-repeat center;
	left: -75px;
}
.owl-theme .owl-nav .owl-next {
	background: url(/images/site/btn_next_w.png) no-repeat center;
	right: -75px;
}
.owl-carousel:hover [class*='owl-'] {
	opacity: 1;
}
.owl-carousel:hover .owl-nav .owl-prev { left: 0; }
.owl-carousel:hover .owl-nav .owl-next { right: 0; }
.owl-theme .owl-nav .disabled {
    cursor: default;
    opacity: 0.5;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  	margin-top: 10px;
}
.owl-theme .owl-dots {
  	text-align: center;
  	-webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
	background: #d6d6d6;
	border-radius: 30px;
	display: block;
	height: 10px;
	margin: 5px 7px;
	transition: opacity 200ms ease;
	width: 10px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

/* news-carousel */

.news-carousel .owl-nav {
	bottom: -53px;
	display: flex;
	gap: 7px;
	height: auto;
	left: 50%;
	position: absolute;
	top: unset;
	transform: translateX(-50%);
	width: auto;
}
.news-carousel .owl-nav [class*='owl-'] {
	align-items: center;
	background: var(--ia-bg-white);
	color: var(--ia-bg-grey);
	display: flex;
	font-size: 28px;
	height: 40px;
	justify-content: center;
	position: relative;
	width: 40px;
}
.news-carousel.owl-carousel .owl-nav .owl-prev,
.news-carousel.owl-carousel:hover .owl-nav .owl-prev { left: unset; }
.news-carousel.owl-carousel .owl-nav .owl-next,
.news-carousel.owl-carousel:hover .owl-nav .owl-next { right: unset; }

@media (max-width: 600px) {
	.news-carousel .owl-nav { gap: 5px; }
	.news-carousel .owl-nav [class*='owl-'] {
		font-size: 24px;
		height: 34px;
		width: 34px;
	}
}
@media (max-width: 500px) {
	.news-carousel .owl-nav { left: 0; transform: none; }
}
@media (max-width: 460px) {
	.news-carousel .owl-nav {
		bottom: unset;
		left: 50%;
		top: 65vw;
		transform: translateX(-50%);
		z-index: 10;
	}
}

/* news-carousel end */

/* stats-carousel */

.stats-carousel .owl-nav.disabled + .owl-dots {
	margin-top: 0;
}
.stats-carousel .owl-dots .owl-dot span {
	margin: 5px 6px;
}
.stats-carousel .owl-dots .owl-dot.active span,
.stats-carousel .owl-dots .owl-dot:hover span {
  	background: var(--ia-bg-pink);
}

/* stats-carousel end */