/**
 * Owl Carousel custom CSS
 * https://owlcarousel2.github.io/OwlCarousel2/
 * /content/dam/common/css/owl.carousel.custom.css
*/

.owl-carousel-container {
	margin: 2rem auto 4rem;
	border: 1px solid var(--border-3);
}

.owl-carousel {
	padding: 14px 60px;
}

.owl-item:hover {
	cursor: grab;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	display: block;
	width: 30px;
	height: 57px;
	position: absolute;
	top: 42%;
	border: none;
	outline: none;
	padding: 0;
	visibility: visible;
	z-index: 4;
	box-shadow: none;
}

.owl-carousel .owl-nav button.owl-prev {
	background: transparent url('/content/dam/common/images/carousel_btn_left.png') no-repeat scroll 0 0;
	left: 10px;
}

.owl-carousel .owl-nav button.owl-next {
	background: transparent url('/content/dam/common/images/carousel_btn_right.png') no-repeat scroll 0 0;
	right: 10px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-prev:focus {
	background: transparent url('/content/dam/common/images/carousel_btn_left.png') no-repeat scroll 0 -80px;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-next:focus {
	background: transparent url('/content/dam/common/images/carousel_btn_right.png') no-repeat scroll 0 -80px;
}

.owl-theme .owl-dots .owl-dot span {
	width: 12px;
    height: 12px;
    margin: 6px;
}

.owl-carousel .owl-item .screen {
	margin-bottom: 2rem;
	border: 1px solid var(--border-1);
}

.owl-carousel .owl-item .caption {
	margin-bottom: 0.5rem;
}

.owl-carousel .owl-item .caption p {
	width: 90%;
	margin: 0 5% !important;
	font-weight: 500 !important;
	font-size: var(--font-size-md) !important;
	line-height: var(--line-height-sm) !important;
	text-align: center;
}

.owl-carousel .owl-item .caption.magenta b,
.owl-carousel .owl-item .caption.magenta strong {
	color: var(--magenta-darker);
}

.owl-carousel .owl-item .caption.blue b,
.owl-carousel .owl-item .caption.blue strong {
	color: var(--blue-darker);
}

.owl-carousel .owl-item .caption.green b,
.owl-carousel .owl-item .caption.green strong {
	color: var(--green-dark);
}

.owl-carousel .owl-item .caption.orange b,
.owl-carousel .owl-item .caption.orange strong {
	color: var(--orange-dark);
}

.owl-theme .owl-nav {
	margin-top: 10px;
	margin-bottom: 10px;
}

.owl-carousel-container .mobile-hint {
	display: none;
}

@media screen and (max-width: 800px) {
	.owl-carousel {
		padding: 0;
	}

	.owl-carousel .owl-nav button.owl-prev,
	.owl-carousel .owl-nav button.owl-next,
	.owl-theme .owl-dots, .owl-theme .owl-nav {
		display: none;
	}

	.owl-carousel .owl-item .screen {
		border-width: 0 0 1px 0;
	}

	.owl-carousel-container .mobile-hint {
		display: block;
		margin-top: 0.5rem;
		padding: 0.75rem 0;
		background: var(--background-1);
	}

	.owl-carousel-container .mobile-hint p {
		margin: 0 !important;
		font-size: var(--font-size-sm) !important;
		line-height: var(--line-height-xs) !important;
		text-align: center;
		color: var(--gray-dark);
	}
}

