/**
 * Commercial name: SEO-Presta
 * Proprietary-license whose copyright belongs to the Licensor PRESTA MODULE, a company registered under French law
 * under the number 528 531 767, located 90 rue Stanislas Torrents 13006 Marseille
 * support@presta-module.com https://www.presta-module.com
 *
 * SEO-Presta’ source codes are protected and Licensees are not allowed to create any Derivated Work.
 * The distribution or resale of SEO-Presta is strictly forbidden.
 *
 * SEO-Presta shall be used for Licensees’ own use, which allows Customization.
 *
 * Licensees shall not distribute nor resale publicly any Customization of SEO-Presta. However, Licensees are allowed
 * to sale a customization of SEO-Presta as part of a service provided to a designated customer.
 *
 * Limitation of Liability: Under no circumstances and under no legal theory, whether in tort (including negligence),
 * contract, or otherwise, shall the Licensor be liable to anyone for any indirect, special, incidental, or
 * consequential damages of any character arising as a result of this License including, without limitation, damages
 * for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages
 * or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation.
 *
 * Attribution notice: SEO-Presta is a Derivated Work from an Original Work created by PrestaShop SA
 * and its contributors which can be found at https://github.com/PrestaShop/PrestaShop
 */

/**********************************************************************************/
/* Navigation / Large Screens *****************************************************/
/**********************************************************************************/
.clock{
	border: 1px solid red;
}
#seoprestamenu_navigation.default{
	margin-top: -11px
}



.main-navigation {
	text-align:left;
	height:auto;
	line-height:normal;
}

.main-navigation.align_left {
	text-align:left;
}

.main-navigation.align_center {
	text-align:center !important;
}

.main-navigation.align_right {
	text-align:right;
}

.main-navigation > ul {
    vertical-align: middle;
	display:inline;
}

.main-navigation.align_right > ul {
	margin-right:-15px;
}

.main-navigation ul ul {
	display: none;
}

.main-navigation ul li:hover > ul {
	display: flex;
	flex-direction: column;
}

.main-navigation > ul > li.call-to-action
{
	margin: -1px 4px 0;
}

.main-navigation > ul > li.call-to-action > a {
	border-width:1px;
	border-style:solid;

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.main-navigation > ul > li.menu-item-has-children {
	padding-right:2px;
	margin-right:10px;
}

.main-navigation ul li.menu-item-has-children > a:after,
.main-navigation ul li.menu-item-has-children > span:after {
	 font-family: 'Font Awesome\ 5 Free';
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	content: "\f105";
	display: block;
	width: 10px;
	height: 30px;
	position: absolute;
	right: 20px;
	top: .9em;
	line-height:12px;
	text-align:left;
}

.main-navigation > ul > li.menu-item-has-children > a:after ,
.main-navigation > ul > li.menu-item-has-children > span:after {
	top: 48%;
	right: 10px;
	content: "\f0dd";
	margin-top: -8px;
	line-height: 13px;
	height: auto;
	font-size:11px;
}

.main-navigation ul {
	padding: 0;
	margin:0;
	list-style: none;
	position: relative;
}

.main-navigation ul:after {
	content: "";
	clear: both;
	display: block;
}

.main-navigation ul li {
	display:inline-block;
	white-space:nowrap;
	position:relative;
}

.main-navigation ul li:hover {
	cursor: pointer;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.main-navigation > ul > li > a
{
	opacity: 1;

	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

/*.main-navigation > ul > li:hover > a {
	opacity: 0.6;
}*/

.main-navigation ul li a,
.main-navigation ul li span {
	/* color: #7a7a7a; */
	text-transform: uppercase;
	display: inline-block;
	padding: 18px 25px;
	text-decoration: none;
	line-height:20px;
	/* font-weight: 600;
	text-transform: uppercase; */
}


@-webkit-keyframes main_nav_anim {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@-moz-keyframes main_nav_anim {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@-o-keyframes main_nav_anim {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@keyframes main_nav_anim {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.main-navigation ul ul {
	background: #fff;
	padding:15px 5px;
	position: absolute;
	top: 100%;
	right: 0;
	min-width:220px;
	z-index: 99999;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.20);

	line-height: 23px;

	-webkit-animation-duration: .3s;
	-moz-animation-duration: .3s;
	-o-animation-duration: .3s;
	animation-duration: .3s;

	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;

	-webkit-animation-name: main_nav_anim;
	-moz-animation-name: main_nav_anim;
	-o-animation-name: main_nav_anim;
	animation-name: main_nav_anim;
}

.main-navigation ul ul li {
	float: none;
	text-align:left;
	display:block;
	border-top: 0px solid #ccc;
	position: relative;
	z-index: 99999;
	padding:0 15px;
}
.main-navigation ul ul li:last-child {
	border-bottom: 0px solid #ccc;
}

.main-navigation ul ul li a,
.main-navigation ul ul li span {
	display: block;
	font-size: 14px;
	padding:10px 0;
	border-bottom: 2px solid transparent;
	text-transform: none;
	font-weight: 500;
	color: #000;
}

.main-navigation ul ul li a:hover,
.main-navigation ul ul li span:hover {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-bottom-width:2px;
	border-bottom-style:solid;
	padding-left:10px;
}

.main-navigation ul ul ul {
	position: absolute;
	left: 100%;
	top:-15px;
}
.main-navigation ul ul ul li {
	padding:0;
}

.main-navigation ul ul ul li a,
.main-navigation ul ul ul li span {
	border-color:transparent;
	padding:7px 0;
	margin-bottom:0;
}
.main-navigation ul ul ul li a:hover:before,
.main-navigation ul ul ul li span:hover:before{
	margin-right:10px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/*Mega-Menu*/

.main-navigation .mega-menu ul .sub-menu
{
    position: static;
    display: flex;
    flex-direction: column;
}

.main-navigation .mega-menu li.menu-item-has-children a:after,
.main-navigation .mega-menu li.menu-item-has-children span:after
{
	display:none;
}

.main-navigation .mega-menu ul li
{
	white-space:normal;
}

.main-navigation .mega-menu ul ul
{
	box-shadow: 0px 0px 0px rgba(0,0,0,0);
	font-weight:normal;
	background:none;
}

.main-navigation .mega-menu > ul
{
    position: absolute;
    margin: 0;
    padding: 15px;
    flex-wrap: wrap;
    transform: translate(-48%);
    width: max-content;
    max-width: 660px;
    left: 50px;
    flex-direction: row!important;
}

.main-navigation .mega-menu > ul.with_bg_image
{
	padding:20px 150px 0 0;
	background-position:top right;
	background-repeat:no-repeat;
	background-size:contain;
}

.main-navigation .mega-menu > ul ul
{
	margin:0;
	padding:5px 0 20px 0;
	display: flex;
}

.main-navigation .mega-menu > ul ul ul
{
	margin:0;
	padding:5px 0 0 0;
}

.main-navigation .mega-menu > ul > li
{
    display: flex;
    flex-direction: column;
    max-width: 200px;
}

.main-navigation .mega-menu > ul > li > a,
.main-navigation .mega-menu > ul > li > span
{
	text-transform:uppercase;
	font-weight:bold;
	border-color:#e5e5e5;
	margin-bottom:10px;
}

.main-navigation sup {
    font-weight: 900;
    font-size: 9px;
}

.main-navigation .fa {
	font-size: 14px;
	margin-right: 3px;
}

.main-navigation sup .fa {
    font-size: 9px;
    margin-left: 3px;
}


/**********************************************************************************/
/*  Navigation / Small & Medium Screens *******************************************/
/**********************************************************************************/

.vg-menu.slide-from-right
{
	background: #fff;
  display: none
}

.mobile-navigation {
	padding: 10px 0;
	border-bottom:0;
}

.mobile-navigation ul,
.mobile-navigation li {
	padding:0;
	margin:0;
	list-style:none;
	display:block;
	font-size: 1em;
}

.mobile-navigation ul li {
	text-transform:none;
	display:block;
	position:relative;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mobile-navigation > ul > li {
	text-transform:uppercase;
}

.mobile-navigation .sub-menu {
	display:none;
	position: relative;
	padding: 5px 0 13px 12px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;

	-webkit-backface-visibility: hidden; /*webkit fix*/
    -webkit-transform: translateZ(0); /*webkit fix*/
}

.mobile-navigation .sub-menu.open {
	display:block;

	-webkit-animation-duration: .3s;
	-moz-animation-duration: .3s;
	-o-animation-duration: .3s;
	animation-duration: .3s;

	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;

	-webkit-animation-name: main_nav_anim;
	-moz-animation-name: main_nav_anim;
	-o-animation-name: main_nav_anim;
	animation-name: main_nav_anim;

	-webkit-backface-visibility: hidden; /*webkit fix*/
    -webkit-transform: translateZ(0); /*webkit fix*/
}

.mobile-navigation  .sub-menu.open li:last-child  .sub-menu.open{
	padding-bottom: 20px;
	margin-bottom: -20px;
}

.mobile-navigation  li:last-child  > .sub-menu.open
{
	margin-bottom: -20px;
}

.mobile-navigation .sub-menu .sub-menu
{
	padding: 7px 0 13px 10px;
}

.mobile-navigation .sub-menu .sub-menu .sub-menu {
	padding:0;
	margin:0;
}

.mobile-navigation .menu-item-has-children .more,
.mobile-navigation .menu-item-language .more
{
	display:block;
	position:absolute;
	top:5px;
	right:14px;
	width:30px;
	height:30px;
	margin-top:0px;
	color:#a3a3a3;
	text-align:center;
	 font-family: 'Font Awesome\ 5 Free';
    font-style: normal;
    font-weight: normal;
	content:"";
	font-size:16px;
	vertical-align:middle;
	line-height:30px;
	cursor:pointer;
}

.mobile-navigation .menu-item-language .sub-menu .more {
	display:none;
}

.mobile-navigation a:hover,
.mobile-navigation .menu-item-has-children.current a,
.mobile-navigation .menu-item-has-children.current span
.mobile-navigation .menu-item-has-children.current .more {
	color:#000;
}

.mobile-navigation .sub-menu .sub-menu .menu-item-has-children .more {
/*	border:3px solid #6e6e6e;
	color:#6e6e6e;*/
}

.mobile-navigation a {
	font-size:14px;
	color:#a3a3a3;
	padding:10px 25px;
	display:inline-block;
	text-transform:uppercase;
}

.mobile-navigation.primary-navigation a
{
	font-weight:bold;
}

.mobile-navigation .sub-menu a,
.mobile-navigation .sub-menu span
 {
	font-size:14px;
	line-height:20px;
	font-weight:normal;
	padding: 8px 20px;
	line-height: 20px;
	text-transform:capitalize;
	color:#000;
}

.mobile-navigation a:hover {
	color:#999;
}
.mobile-navigation.sub-menu a:hover {
	color:#000;
}

#menu-hamburger-menu a
{
	font-weight: normal;
}


/*Off-Canvas Search*/

.mobile-search
{
	position: relative;
}

.mobile-search .widget
{
	margin-bottom: 0;
}

.mobile-search .widget form > div
{
	padding-top: 0;
}

.mobile-search .widget_search .search-form:after,
.mobile-search .woocommerce-product-search:after
{
	display: none;
}

.mobile-search .widget_product_search input[type="submit"],
.mobile-search .widget_search #searchsubmit,
.mobile-search .widget_product_search .search-submit,
.mobile-search .mobile_search_submit
{
	color: #a3a3a3;
	text-align: center;

	width: 40px;
	height: 40px;
	line-height: 40px;

	position: absolute;
	top: 6px;
	right: 12px;
}

.mobile-search .widget_product_search #searchsubmit,
.mobile-search .widget_search #searchsubmit,
.mobile-search .widget_product_search .search-submit
{
	font-size: 0;
}

.mobile-search .mobile_search_submit
{
	font-size: 0.875rem;
}

.mobile-search input[type="search"]
{
	font-size: 1.125rem;
	font-weight: bold;
	color: #000;
	border: none;

	border-bottom: 1px solid #e5e5e5;
	padding: 13px 60px 14px 24px;
	height: auto;
}

.mobile-search input[type="search"]::-webkit-input-placeholder { font-weight: 900; color: #a3a3a3; text-transform: lowercase; opacity: 1; }
.mobile-search input[type="search"]::-moz-placeholder { font-weight: 900; color: #a3a3a3; text-transform: lowercase; opacity: 1;} /* firefox 19+ */
.mobile-search input[type="search"]:-ms-input-placeholder { font-weight: 900; color: #a3a3a3; text-transform: lowercase; opacity: 1;} /* ie */
.mobile-search input[type="search"]:-moz-placeholder { font-weight: 900; color: #a3a3a3; text-transform: lowercase; opacity: 1; }


/*Off-Canvas Language and Currency */

.language-and-currency-offcanvas
{
	padding: 36px 24px 21px;
	border-bottom: 1px solid #e5e5e5;
}

.language-and-currency-offcanvas img
{
	display: none;
}

select.topbar-language-switcher,
select.wcml_currency_switcher{
	font-size: 0.8125rem;
	color: #a3a3a3;

	background-color: #fff;
	border-style: solid;
	border-width: 1px;

	font-weight: normal;
	text-transform: uppercase;

	height: 2.5rem;
	margin: 0 0 15px;
	outline: medium none;

}

.language-and-currency-offcanvas .select2-container.topbar-language-switcher,
.language-and-currency-offcanvas .select2-container.wcml_currency_switcher
{
	display: block;
	height: auto;
	line-height: normal;
	padding-top: 0px;
	margin: 0 0 12px 0;
}

.language-and-currency-offcanvas .select2-container .select2-choice
{
	display: inline-block;
	padding-bottom: 7px;
	color: #a3a3a3;
	font-weight: normal;
}

.language-and-currency-offcanvas .select2-container:last-of-type
{
	margin-bottom: 8px;
}
/* Style Calaco */
/* Menu Category */
.menu-category  ul{
	background:#fcfcfc;
	padding-left:0;
}
p.navigation-nav-title{
		margin-top: 10px;
	    line-height: 60px;
	    font-size: 18px;
	    text-transform: uppercase;
	    font-weight: 700;
	    text-align: left;
	    display: block;
	    padding: 0 15px;
	    background: #000;
	    cursor: pointer;
	    color: #fff;

}

.current-menu-parent-txt {
	text-transform: uppercase!important;
    font-size: 16px!important;
    font-weight: 900!important;
}

.current-menu-parent-subtxt {
    font-weight: bold!important;
}

.menu-cat-sep {
	width: 90%!important;
	margin-top: 0!important;
    margin-bottom: 0!important;
}


/* ### RESPONSIVE OVERRIDES */


@media screen and (max-width: 768px) {
	/* Tablets */
	.main-navigation ul li {
		display: block;
		width: 100%;
	}
	.header-top, #header .header-nav {
    padding-right: 0;
    padding-left: 0;
	}
}
@media only screen and (min-width : 1224px) {
	#seoprestamenu_navigation .menu-cat-sep {
	display: none;
	}
}
