/*
 ************************************************************
 *
 * CHILD-CAROUSEL
 *
 ************************************************************
 *
 * ----------------------------------------------------------
 *
 * GLOBAL
 *
 * ----------------------------------------------------------
 *
 * - NAV
 */

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


#top .owl-nav button span
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}

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

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

/*
 * - DOTS
 */

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

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

#top .owl-dots .owl-dot:not(:first-child)
{
	margin-left: 8px;
}

#top .owl-dots .owl-dot span
{
	display: block;
	width: 60px;
	height: 4px;
	margin: 0;
	border-radius: 0;
	background-color: var(--color-cvi-1);
}

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

/*
 * - WRAP
 */

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