/**
* 2007-2016 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2016 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

.zmega-menu {
	float: left;
	padding-top: 25px;
	width: 100vw;	
	margin-left: -19.25vw;
}
.znav-top {
	position: relative;
	border-bottom: 5px solid #44afc3;
	background: #ffffff;
	margin: 0;
	/*-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-topright: 20px;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;*/
	display: flex;
  justify-content: center;
}
.znav-top > li {
	float: left;
	border-right: 1px solid rgba(0,0,0,0.0);
	margin-bottom: -3px;
}
.znav-top > li.right {
	float: right;
	border-right: none;
	border-left: 1px solid #d6d4d4;
}
.znav-top > li > a {
	text-transform: uppercase;
	color: #5da7c0;
	display: block;
	padding: 17px 20px;
	/*border-bottom: 3px solid #44afc3;*/
	position: relative;
	/*font-family: 'Archivo Black', sans-serif;*/
	font-family: 'Open Sans', sans-serif;
	font-weight: bold;
	font-size: 18px;
	/* text-shadow: 0 1px 0 #000;*/
	 transition: 0.3s cubic-bezier(0, 0.17, 0, 2.64);
	
}
.znav-top > li:hover > a {
	display: flex;
	background: #333333;
	border-bottom-color: #fff;
	color: #222222;
	background-color: #44afc3;
	/*-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-topright: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;*/
	left: 5px;
	ms-transform: skew(-10deg); /* IE 9 */
  	-webkit-transform: skew(-10deg); /* Safari */
  	transform: skew(-10deg); /* Standard syntax */
	text-shadow: 0 1px 0 #bbb, 0 -1px 0 #bbb;
	background-image: linear-gradient(to bottom right, #8cc7d8,#5eaac1, #518c9e);
	box-shadow: inset 5px 0 1px #cbecf6,inset -2px -1px 0 1px #215e95;
}
.znav-top > li > a > sup {
	position: absolute;
	top: -5px;
	right: 5px;
	line-height: 20px;
	padding: 0 4px;
	font-weight: normal;
	text-transform: none;
	background-color: #e47911;
	color: #fff;
}

.znav-top .mobile-toggle-plus {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	font-family: "FontAwesome";
	font-size: 14px;
	z-index: 10;
}
.znav-top .mobile-toggle-plus:before {
	display: block;
	vertical-align: middle;
	width: 40px;
	height: 59px;
	line-height: 59px;
	text-align: center;
	content: "\f067";
	color: #c0c0c0;
}
.znav-top .mobile-toggle-plus.minus:before {
	content: "\f068";
}
.znav-top > li:hover .mobile-toggle-plus:before {
	color: #fff;
}

.znav-top .dropdown {
	position: absolute;
	top: 69px;
	max-width: 100%;
	z-index: 999;
	background: #fff;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 13px;
	-moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 13px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 13px;
	transition: all 0.3s;
	visibility: hidden;
	opacity: 0;	
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	/*-webkit-border-bottom-right-radius: 25px;
	-webkit-border-bottom-left-radius: 25px;
	-moz-border-radius-bottomright: 25px;
	-moz-border-radius-bottomleft: 25px;
	border-bottom-right-radius: 25px;
	border-bottom-left-radius: 25px;*/
}
@media screen and (min-width: 768px) {
	.znav-top .mobile-toggle-plus {
		display: none;
	}
	.znav-top > li.plex:hover .dropdown, .znav-top > li.plex.hover .dropdown {
		visibility: visible;
		opacity: 1;
		top: 59px;
		border-right: 11px solid #5eaac1;
		border-bottom: 7px solid #5eaac1;
		box-shadow: 8px 5px 10px 2px rgba(0, 0, 0, 0.14);
	}
}

.znav-top .zdropdown-1 { width: 234px; }
.znav-top .zdropdown-2 { width: 468px; }
.znav-top .zdropdown-3 { width: 702px; }
.znav-top .zdropdown-4 { width: 936px; }
.znav-top .zdropdown-5 { width: 1170px; }

.znav-top .dropdown .dropdown-content {
	width: 100%;
}
.znav-top .zdropdown-2 .zcontent-1 { width: 50%; }
.znav-top .zdropdown-3 .zcontent-1 { width: 33.33333%; }
.znav-top .zdropdown-3 .zcontent-2 { width: 66.66666%; }
.znav-top .zdropdown-4 .zcontent-1 { width: 25%; }
.znav-top .zdropdown-4 .zcontent-2 { width: 50%; }
.znav-top .zdropdown-4 .zcontent-3 { width: 75%; }
.znav-top .zdropdown-5 .zcontent-1 { width: 20%; }
.znav-top .zdropdown-5 .zcontent-2 { width: 40%; }
.znav-top .zdropdown-5 .zcontent-3 { width: 60%; }
.znav-top .zdropdown-5 .zcontent-4 { width: 80%; }

.znav-top .dropdown .dropdown-bgimage {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
}

.znav-top .category-line, .znav-top .product-line, .znav-top .manufacturer-line {
	overflow: hidden;
	margin: 15px 0;
}
.znav-top .category-item, .znav-top .product-item, .znav-top .manufacturer-item {
	float: left;
	padding: 0 15px;
}
.znav-top .zcontent-1 .category-item, .znav-top .zcontent-1 .product-item, .znav-top .zcontent-1 .manufacturer-item { width: 100%; }
.znav-top .zcontent-2 .category-item, .znav-top .zcontent-2 .product-item, .znav-top .zcontent-2 .manufacturer-item { width: 50%; }
.znav-top .zcontent-3 .category-item, .znav-top .zcontent-3 .product-item, .znav-top .zcontent-3 .manufacturer-item { width: 33.33333%; }
.znav-top .zcontent-4 .category-item, .znav-top .zcontent-4 .product-item, .znav-top .zcontent-4 .manufacturer-item { width: 25%; }
.znav-top .zcontent-5 .category-item, .znav-top .zcontent-5 .product-item, .znav-top .zcontent-5 .manufacturer-item { width: 20%; }

.znav-top .category-item .category-title a {
	text-transform: uppercase;
	font: 600 16px/20px "Open Sans", sans-serif;
	color: #5eaac1;
}
.znav-top .category-item .category-title a:hover {
	color: #515151;
}
.znav-top .category-item li a {
	display: inline-block;
	position: relative;
	color: #605b5b;
	font-size: 13px;
	line-height: 16px;
	font-weight: bold;
	padding-bottom: 10px;
	text-transform: uppercase;
}
.znav-top .category-item li a:before {
	content: "\f105";
	display: inline-block;
	font-family: "FontAwesome";
	padding-right: 10px;
}
.znav-top .category-item li a:hover {
	color: #333333;
}

.znav-top .product-item, .znav-top .manufacturer-item {
	text-align: center;
}
.znav-top .product-item .product-name, .znav-top .manufacturer-item .manufacturer-name {
	font-size: 17px;
	line-height: 23px;
	color: #3a3939;
	margin-bottom: 0;
}
.znav-top .product-item .product_img_link img {
	margin: 0 auto;
}
.znav-top .product-item .product-price {
	font: 600 21px/26px "Open Sans", sans-serif;
	color: #333333;
}
.znav-top .html-item {
	padding: 15px;
}

/* Mobile */
@media screen and (max-width: 767px) {
	.znav-top {
		display: none;
	}
	.znav-top > li, .znav-top > li.right  {
		float: none;
		position: relative;
		border: none;
	}
	.znav-top > li.plex > a {
		padding-right: 41px;
		z-index: 10;
	}
	.znav-top > li > a > sup {
		position: inherit;
		top: -10px;
		margin-left: 5px;
	}
	.znav-top .dropdown {
		display: none;
		visibility: visible;
		opacity: 1;
		position: relative;
		top: 0!important;
		width: 100%;
		overflow: hidden;
		margin-left: 0px!important;
		transition: none;
	}
	.znav-top .dropdown .dropdown-content, .znav-top .dropdown-content .category-item, .znav-top .dropdown-content .product-item, .znav-top .dropdown-content .manufacturer-item {
		width: 100%;
	}
	.znav-top .category-item + .category-item, .znav-top .product-item + .product-item {
		margin-top: 15px;
	}
}
.mobile-title {
	font: 600 18px/22px "Open Sans", sans-serif;
	text-transform: uppercase;
	color: #484848;
	display: block;
	padding: 17px 20px;
	border-bottom: 3px solid #e9e9e9;
	background: #f6f6f6;
	position: relative;
	cursor: pointer;
}
.mobile-title:hover, .mobile-title.hover {
	background: #333333;
	border-bottom-color: #666666;
	color: white;
}
.mobile-title:after {
	font-family: "FontAwesome";
	content: "\f067";
	position: absolute;
	right: 15px;
	top: 18px;
	font-size: 26px;
}
.mobile-title.hover:after {
	content: "\f068";
}