.wiloke-menu-slider {
	position: relative;


	.owl-prev,
	.owl-next {
		position: absolute;
		width: 35px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		font-size: 20px;
		top: 0;
		bottom: 0;
		margin: auto;
		color: #fff;
		background-color: #222;
		opacity: 0.5;
		transition: all 0.3s ease;
	}

	.owl-prev {
		left: 0;
	}

	.owl-next {
		right: 0;
	}

	&:hover {
		.owl-next,
		.owl-prev {
			opacity: 1;
		}
	}

	.owl-dots {
		position: absolute;
		bottom: 10px;
		left: 0;
		right: 0;
		padding: 0 20px;
		text-align: center;

		.owl-dot {
			width: 10px;
			height: 10px;
			border-radius: 50%;
			background-color: #a2a2a2;
			display: inline-block;
			margin: 0 3px 3px 3px;

			&:active {
				background-color: #fff;
			}
		}
	}
}