﻿/* 
- Name: megamenu.js - style.css
- Version: 1.0
- Latest update: 29.01.2016.
- Author: Mario Loncarek
- Author web site: http://marioloncarek.com
*/

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.mega-menu-container{
	border-top:1px #0f0f0f solid;
}
a.mega-menu-mobile{
	display:none;
}
.mega-menu>ul {
	margin: 0 auto;
	padding: 0;
	list-style-type: none;
	list-style-position: outside;
	display: block;
	z-index: 200;
	box-sizing: border-box;
	text-align: center;
	font-size:0;
}
.mega-menu>ul:before,
.mega-menu>ul:after {
	content: "";
	display: table;
}
.mega-menu>ul:after {
	clear: both;
}
.mega-menu>ul>li {
	display:inline-block;
	text-align: left;
}
.mega-menu>ul>li a i.fas{
	font-size: 0.75rem;
	color:#fff;
	display:inline-block;
	vertical-align:middle;
}
.mega-menu>ul>li a:hover i.fas{
	color:#c0c0c0;
}
.mega-menu>ul>li a{
	display: block;
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 60px;
	padding: 0 12px;
	overflow:hidden;
	position:relative;
	transition: 0.7s all;	
}
.mega-menu>ul>li a:focus{
	outline:0;
}
.mega-menu>ul>li a:before {
	content: '';
	width:100%;
	position:absolute;
	border-bottom:2px solid #f3b909;
	bottom:0;
	right:400px;
	transition: 0.4s all;
	z-index:100;
}
.mega-menu>ul>li a:hover:before {
	right:0;
}
.mega-menu>ul>li a:hover,
.mega-menu>ul>li.menu-dropdown-open:hover
{
	color: #c0c0c0;
}
.mega-menu>ul>li>ul {
	display: none;
	width: 90%;
	background: #050505;
	padding: 20px;
	position: absolute;
	z-index: 2000;
	left: 0;
	right:0;
	margin: 0 auto;
	list-style: none;
	box-sizing: border-box;
}
.mega-menu>ul>li>ul:before,
.mega-menu>ul>li>ul:after {
	content: "";
	display: table;
}
.mega-menu>ul>li>ul:after {
	clear: both;
}
.mega-menu>ul>li>ul>li {
	margin: 0 0 20px 0;
	padding: 0;
	list-style: none;
	width: 20%;
	background: none;
	float: left;
}
.mega-menu>ul>li>ul>li a {
	color: #fff;
	padding: 10px;
	width: 90%;
	font-size: 1rem;
	line-height: 20px;
	display: block;
	font-weight: bold;
	text-transform:none;
	border-bottom: solid 1px #0f0f0f;	
}
.mega-menu>ul>li>ul>li a:before {
	border-bottom:0 transparent none;
}
.mega-menu>ul>li>ul>li a:hover {
	color: #c0c0c0;
}
.mega-menu>ul>li>ul>li>ul {
	display: block;
	padding: 0;
	margin: 10px 0 0;
	list-style: none;
	box-sizing: border-box;
}
.mega-menu>ul>li>ul>li>ul:before,
.mega-menu>ul>li>ul>li>ul:after {
	content: "";
	display: table;
}
.mega-menu>ul>li>ul>li>ul:after {
	clear: both;
}
.mega-menu>ul>li>ul>li>ul>li {
	float: left;
	width: 100%;
	padding: 2px;
	margin: 0;
	font-size: 1rem;
}
.mega-menu>ul>li>ul>li>ul>li a {
	border: 0;
	font-weight: normal;
	font-size: 1rem;
	color: #e0e0e0;
	text-transform:none;		
}
.mega-menu>ul>li>ul>li>ul>li a:hover {
	color: #c0c0c0;
	text-indent:5px;
	text-decoration:underline;
}
.mega-menu>ul>li>ul.normal-sub {
	width: 90%;
	background: #050505;
	padding: 20px;
	left: 0;
	right:0;
	margin: 0 auto;
	border: 0 transparent none;
	box-sizing: border-box;
}
.mega-menu>ul>li.first ul li a {
	border-left: 0 transparent none;
}
.mega-menu>ul>li>ul> li.menu_thumb_holder{
	float:left;
}
.mega-menu>ul>li>ul.normal-sub li.menu_section{
	display:block;
}
.mega-menu>ul>li>ul.normal-sub li.menu_section a{
	display:block;
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 1600px){
	.mega-menu>ul>li a {
	    font-size: 0.875rem;
	    padding: 0 10px;
	}	
}
@media only screen and (max-width: 1366px) {
	.mega-menu>ul>li a {
	    text-transform:none;
	}	
}
@media only screen and (max-width: 1280px) {
	.mega-menu>ul>li>ul>li img {
		max-width: 90%;
		width: 90%;
	}
	.mega-menu>ul>li a {
	    font-size:0.875rem;
	    font-weight:normal;
	    padding: 0 7px;
	}	
}
@media only screen and (max-width: 1100px) {
	.mega-menu>ul>li a {
	    padding: 0 5px;
	}
	.mega-menu>ul>li.search_button {
	    display:none;
	}		
}
@media only screen and (max-width: 1024px) {
	.mega-menu-container {
		width: 100%;
	}
	.mega-menu-mobile {
		display: block;
	}
	.mega-menu-dropdown-icon:before {
		display: block;
	}
	.mega-menu>ul {
		display: none;
	}
	.mega-menu>ul>li {
		width: 100%;
		float: none;
		display: block;
		margin: 0 0 10px 0;
	}
	.mega-menu>ul>li a {
		width: 100%;
		display: block;
		line-height: 30px;
	}
	.mega-menu>ul>li>ul {
		position: relative;
	}
	.mega-menu>ul>li>ul.normal-sub {
		width: 100%;
	}
	.mega-menu>ul>li>ul>li {
		float: none;
		width: 100%;
		margin: 5px 0 0 0;
	}
	.mega-menu>ul>li>ul>li:first-child {
		margin: 0;
	}
	.mega-menu>ul>li>ul>li>ul {
		position: relative;
	}
	.mega-menu>ul>li>ul>li>ul>li {
		float: none;
	}
	.mega-menu .show-on-mobile {
		display: block;
		border-top: 1px #18975b dotted;
	}
}
@media only screen and (max-width: 1024px) {
	.arrow-down {
		display: none !important;
	}
}