<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.mega-menu {
	position: relative;
	z-index: 750;
	clear: both;
	width: 100%;
	height: 36px;
}

.mega-menu:before,
.mega-menu:after {
	content: '';
	clear: both;
}

/* Nav List */
.mega-menu &gt; li {
	position: relative;
	@include inline-block;
}

.mega-menu &gt; li.mgm-full-width { position: static; }

.mega-menu &gt; li.mgm-align-right {
	float: right;
	border-right: none;
}

/* Nav Links */
.mega-menu &gt; li &gt; a,
.mega-menu &gt; li &gt; span,
.mega-menu &gt; li &gt; span
{
	position: relative;
	z-index: 550;
	display: block;
	line-height: 33px;
	/*text-transform: uppercase;*/

	-webkit-transition: color .15s ease-in, background-image .2s ease-in;
	-moz-transition: color .15s ease-in, background-image .2s ease-in;
	-o-transition: color .15s ease-in, background-image .2s ease-in;
	-ms-transition: color .15s ease-in, background-image .2s ease-in;
	transition: color .15s ease-in, background-image .2s ease-in;
}

.mega-menu &gt; li &gt; a:active {
	color: #525252;

	-webkit-transition: color 1ms;
	-moz-transition: color 1ms;
	-o-transition: color 1s;
	-ms-transition: color 1s;
	transition: color 1s;
}
/* A quoi ca sert ?
.mega-menu &gt; li.mgm-drop:hover &gt; a:after,
.mega-menu &gt; li.mgm-drop &gt; a.mgm-click:after,
.mega-menu &gt; li.mgm-drop &gt; span.mgm-click:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 38px;
}*/

.mega-menu &gt; li.mgm-drop:hover &gt; a,
.mega-menu &gt; li.mgm-drop:hover &gt; span,
.mega-menu &gt; li.mgm-drop &gt; a.mgm-click,
.mega-menu &gt; li.mgm-drop &gt; span.mgm-click
{ z-index: 750; }


/* // 4. DROPDOWN */
/* ################################################################ */
.mega-menu &gt; li &gt; div,
.mega-menu &gt; li &gt; ul,
.mega-menu &gt; li &gt; ul li &gt; ul {
	position: absolute;
	z-index: 750;
	padding: 0;
	left: -1px;
	text-align:left;

	opacity: 0;
	overflow: hidden;
	visibility: hidden;

	-webkit-transition: all .15s ease-in;
	-moz-transition: all .15s ease-in;
	-o-transition: all .15s ease-in;
	-ms-transition: all .15s ease-in;
	transition: all .15s ease-in;
}

.mega-menu &gt; li.mgm-align-right &gt; div {
	left: auto;
	right: -1px;
}


.mega-menu &gt; li.mgm-drop:hover &gt; div,
.mega-menu &gt; li.mgm-drop:hover &gt; ul,
.mega-menu &gt; li &gt; ul li.mgm-drop:hover &gt; ul {
	opacity: 1;
	overflow: visible;
	visibility: visible;
}

/* Dropdown Columns */
.mega-menu li.mgm-full-width &gt; div { left:50% }

/* Dropdown Levels */
.mega-menu &gt; li &gt; ul,
.mega-menu &gt; li &gt; ul li &gt; ul {
	width: 220px;
}

.mega-menu &gt; li &gt; ul li.mgm-drop:hover &gt; ul { top: 0; border-radius:5px;}

.mega-menu &gt; li &gt; ul li { position: relative; display:block !important; }

.mega-menu &gt; li &gt; ul li &gt; ul {
	position: absolute;
	left: 100%;
}

.mega-menu &gt; li.mgm-align-right &gt; ul {
	left: auto;
	right: 0;
}

.mega-menu &gt; li &gt; ul li.mgm-align-left &gt; ul {
	position: absolute;
	left: auto;
	right: 105%;
}

.mega-menu &gt; li &gt; ul a {
	display: block;
	border-left:none !important;
	border-right:none !important;
}

.mega-menu &gt; li &gt; ul li:last-child a { border-bottom: none !important; box-shadow:none }



/*** --- Multi columns layout -- ****/

.mgm-multi-c {

}
.mgm-multi-c-column {
	float: left;
	width: 100%;
}
ul.mgm-multi-c-column {
	list-style: none;
	padding: 0;

}
ul.mgm-multi-c-column li:not(.mgm-multi-c-title) {
	width: 100%;
	border-left:none;
	padding: 3px 0;
}
ul.mgm-multi-c-column li a {
	padding-right: 0;
	display: block;

}
li.mgm-multi-c-title {
	padding: 12px 0 !important;
	border: 1px solid transparent;
}
li.mgm-multi-c-title:hover,
li.mgm-multi-c-title.active {
	background: none;
	border-radius:3px;
}
li.mgm-multi-c-title a {
	text-transform: uppercase;
}





@media only screen and (max-width: 767px) {

	.mgm-responsive &gt; li,
	.mgm-responsive &gt; li.mgm-align-right { width: 49.5%; }
	.mgm-responsive &gt; li &gt; div {left:-1px;}

}

@media only screen and (max-width: 479px) {

	.mgm-responsive &gt; li,
	.mgm-responsive &gt; li.mgm-align-right {
		display: block;
		width: 100%;
	}
}
</pre></body></html>