/*
 * Theme Dutch Menu Styles
 *
 *
 */

#td-mega-menu-main > li > ul.td-mega-sub {
	width: auto;
	min-width: 320px;
	max-width: 1140px !important;
	left: -50%;
}

#td-mega-menu-main > li > ul.td-mega-sub:before {
	content: none;
	display: none;
	left: 100% !important;
}

#td-mega-menu-main > li > .sub {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 33.33%;
	min-height: 22px;
	transition: all .5s ease 0s;
	-moz-transition: all .5s ease 0s;
	-webkit-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
}

#td-mega-menu-main > li:hover > .sub {
	opacity: 1;

	transition: all 2.5s ease 0s;
	-moz-transition: all 2.5s ease 0s;
	-webkit-transition: all 2.5s ease 0s;
	-o-transition: all 2.5s ease 0s;
}

.td-mega-menu-main .sub:before {
	content: " ";
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 10px 10px 10px;
	border-color: transparent transparent #007bff transparent;
}

#td-mega-menu-main .sub-content{
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	color: #000;
	display: block;
	width: auto;
	max-width: 1140px !important;
}

@media handheld, only screen and (max-width: 767px) {
	#td-mega-menu-main > li > ul.td-mega-sub {
		min-width: 100%;
		left: 0 !important;
	}
}