/* @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap'); */
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
	/* font-family: 'Lato', sans-serif; */
}
.sf-menu > li {
	margin-right: 15px;
}
.sf-menu li {
	position: relative;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}
.sf-menu a {
	border: none !important;
}
.sf-menu > li {
	float: left;
	/* background: none !important; */
	/* margin-right: 3px !important; */
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

.sf-menu a {
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
	left: 100%;
}


/*** DEMO SKIN ***/
.sf-menu {
	float: left;
	margin-bottom: 1em;
}
.sf-menu .manufacturers ul {
	min-width: 17em;
	*width: 17em;
}

.sf-menu .many-items:hover > ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	/* grid-auto-rows: minmax(1px, 800px); */
	grid-auto-flow: dense;
	max-height: 800px;
	/* gap: 10px; */
	overflow: hidden;
	/* background: #444; */
}
.sf-menu .many-items:hover > ul li {
	/* background: #444; */
	min-width: 8em;
}
.sf-menu .many-items:hover > ul li a {
	font-size: 14px !important;
}
.sf-menu .many-items:hover > ul li a:hover {
	/* background: #000; */
}

.sf-menu ul {
	/* box-shadow: 2px 2px 6px rgba(0,0,0,.2); */
	min-width: 16em; /* allow long menu items to determine submenu width */
	*width: 16em; /* no auto sub width for IE7, see white-space comment below */
}
.sf-menu ul li,
.sf-menu ul li a
 {
	background: rgb(40, 39, 39) !important;
	opacity: 1 !important;
	color:#fff !important;
}
.sf-menu li a:hover,
.sf-menu ul li a:hover
{
	color:#fff !important;
}
.sf-menu ul li a::after {
	display: block;
	content:'';
	padding-top: 3px;
	border-bottom: 2px solid #1BA7DA;
	width: 0;
	transition: wi;
}
.sf-menu li a:hover::after,
.sf-menu ul li a:hover::after {
	display: block;
	/* height: 3px; */
	/* width: 100%; */
	content:'';
	/* border-bottom: 1px solid red; */
	/* background: red !important; */
	/* padding-top: 3px; */
	/* border-bottom: 2px solid #1BA7DA; */
	width: 0%;
  	animation: widthAnimation .5s forwards;
}
@keyframes widthAnimation {
  0% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}


.sf-menu ul li:hover{
	/* background: rgba(0, 0, 0, 1) !important; */
	/* background: red !important; */
	color: #fff !important;
}
.sf-menu a {
	/* padding: .75em 1em; */
	text-decoration: none;
	zoom: 1; /* IE7 */
}
.sf-menu a {
	color: #fff;
}
.sf-menu li {
	/* background: #000; */
}

.sf-menu li a {
	color:#fff !important;
	margin: 0 !important;
	font-size: 16px !important;
}
.sf-menu li:last-child {
	padding-bottom: 10px !important;
}
.sf-menu ul li ul li {
	min-width: 15em; /* allow long menu items to determine submenu width */
	*width: 15em; /* no auto sub width for IE7, see white-space comment below */
}
.sf-menu ul li a {
	padding: 5px 5px 5px 15px !important;
	background: #444;
	line-height: 16px !important;
	/* font-size: .9vw; */
	font-size: 14px;
}

.top-menu a.dropdown-submenu {
	font-weight: normal !important;
}
.sf-menu ul ul li {
	/* background: #000; */
	/* background: #444; */
}
.sf-menu ul ul li a {
	/* background: #000; */
	background: #444;
	color:#fff;
	transition: none;
}
.sf-menu ul ul li a:hover{
	/* background: #1DAEED; */
	transition: none !important;
}
.sf-menu li:hover,
.sf-menu li.sfHover {
	color:#fff;
}
.sf-menu ul > li:first-child {
	padding-top: 5px;
}

.sf-menu .accesories-items ul {
	min-width: 20em;
	*width: 20em;
}
.sf-menu .accesories-items ul li a{
	font-size: 15px !important;
	padding: 2px 5px 3px 15px !important;
}
.sf-menu .accesories-items ul ul li a{
	font-size: 15px !important;
	padding: 7px 5px 2px 15px !important;
}


/*** arrows (for all except IE7) **/
.sf-menu .sf-arrows .sf-with-ul {
	background: #444;
	color:#fff;
	padding-right: 2.5em;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */
.sf-menu .sf-arrows .sf-with-ul:after {
	content: '\25BA';
	position: absolute;
	top: 50%;
	right: 1em;
	font-size: 6px;
	margin-top: -3px;
	padding-right: 10px;
	height: 0;
	width: 0;
}

