/*
 ************************************************************
 * PLUGIN
 ************************************************************
 * ----------------------------------------------------------
 * OWL CAROUSEL
 * ----------------------------------------------------------
 */

@media only screen and (max-width: 767px)
{
	.responsive #top .owl-carousel
	{
		width: 100%;
		margin: 0 auto;
	}
}

/* NAV */

#top .owl-nav button
{
	position: absolute;
	top: 50%;
	font-size: 40px;
	margin-top: -15px;
}

#top .owl-nav .owl-prev
{
	left: 0;
}

#top .owl-nav .owl-next
{
	right: 0;
}

/*
 * - DOTS
 */

#top .owl-dots
{
	height: 30px;
	margin-top: 30px;
	overflow: hidden;
	text-align: center;
}

#top .owl-dots .owl-dot
{
	display: inline-block;
}

#top .owl-dots .owl-dot span
{
	display: block;
	width: 20px;
	height: 20px;
	margin: 5px;
	border-radius: 50%;
	background-color: var(--color-lightgray-2);
}

#top .owl-dots .owl-dot:hover span,
#top .owl-dots .owl-dot.active span
{
	background-color: var(--color-black);
}