/*
 ************************************************************
 *
 * CHILD-CAROUSEL
 *
 ************************************************************
 *
 * ----------------------------------------------------------
 *
 * GLOBAL
 *
 * ----------------------------------------------------------
 *
 * - 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);
}

/*
 * - WRAP
 */

@media only screen and (max-width: 767px)
{
	.responsive #top .owl-carousel
	{
		width: 100%;
		margin: 0 auto;
		padding: 0 30px;
	}
}

@media only screen and (min-width: 768px)
{
	.responsive #top .owl-carousel
	{
		padding: 0 60px;
	}
}