/* Header */
#header {
	--topbar_height: 50px;
  --topbar_bg: var(--blue_block);
  --main_header_padding: 28px 0;
  --main_header_bg: #03A9F4;
  --search_width: 404px;
  --logo_height: 70px;
  --icons_spacing: 24px;
  --icons_size: 32px;
  --nav_height: 50px;
  --nav_spacing: 24px;
}

#header.fixed .header-fixed-wrap {
	position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

#header .main-header .center-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#header .topbar {
  background: var(--topbar_bg);
}

#header .topbar .inner {
  display: flex;
  align-items: center;
  justify-content: center;
	height: var(--topbar_height);
}
#header .topbar .topbar-usp {
	display: flex;
  align-items: center;
	font-weight: 700;
  font-size: 1.067em;
}
#header .topbar .topbar-usp strong{
	font-weight: 800;
  color: var(--accent);
}
#header .topbar .topbar-usp i {
	margin-right: 5px;
  font-size: 1.4em;
  color: var(--accent);
}

#header .main-header {
	padding: var(--main_header_padding);
  background: var(--main_header_bg);
}

#header .main-header .inner {
	display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#header .main-header .header-col {
	display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media(min-width:1200px) {
  #header .main-header .header-col.logo-col {
/*   	margin-right:var(--item_spacing); */
  }
}

#header .main-header .header-col.main-menu {
/* 	flex-grow:10; */
  font-size:1.1em;
}

#header .main-header .header-col.search-col {
	justify-content: center;
}

#header .main-header .header-col.icons-col {
	justify-content: flex-end;
}

#header .main-header .search-wrap {
	width: 100%;
  min-width: var(--search_width);
  max-width: var(--search_width);
  position:relative;
}

#header .main-header .search-wrap form {
	width: 100%;
  position: relative;
}

#header .main-header .search-wrap form input {
	width: 100%;
  padding-right: var(--input_height);
  border-color: transparent;
}
#header .main-header .search-wrap form input:focus{
	border-color: var(--accent);
}
#header .main-header .search-wrap form a {
	position: absolute;
  top: 0;
  right: 0;
  width: var(--input_height);
  height: var(--input_height_small);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
#header .main-header .search-wrap form a i{
	color: var(--blue);
  font-size: 1.3em;
}
#header .live-search{
	position: absolute;
  top: 100%;
  left: 0;
  right:0;
  background-color: #fff;
  box-shadow: var(--shadow_small);
  z-index: 99999;
  border-radius: var(--border_radius);
  padding: var(--item_spacing);
  margin: 10px;
  font-size:.95em;
}
#header .live-search .no-results{
  margin-top: 15px;
  color: var(--grey);
  font-style: italic;
}
#header  .live-search .search-query{
	font-size: 1.067em;
}
#header .live-search .results .btn {
	margin-top: 15px;
}
#header .live-search .results .search-products{
  display: flex;
  flex-direction: column;
  margin: -5px;
}
#header .live-search .results .search-products li{
	padding: 5px;
}
#header .main-header .logo img {
	height: var(--logo_height);
}

#header .main-header .header-icons {
	display: flex;
  align-items: center;
  margin-left: var(--nav_spacing);
}

/* #header .main-header .header-icons li:not(:first-child) {
	margin-right: var(--icons_spacing);
} */

#header .main-header .header-icons li a {
	display: flex;
}

#header .main-header .header-icons li a i {
	font-size: var(--icons_size);
}

#header .main-header .header-icons li a .i-wrap {
	position: relative;
  display: flex;
}

#header .main-header .header-icons li a .i-wrap .qty {
	position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: #000;
  border-radius: 50%;
  font-size: 13px;
}
#header .main-header .header-icons li a .i-wrap .items {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 20px;
  height: 20px;
  background: #fff;
  text-align: center;
  border: 2px solid var(--color_blue);
  border-radius: 100%;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--blue);
}
#header .main-header .header-icons li {
	position: relative;
}
#header .main-header .header-icons li.language .lang-flag{
	overflow: hidden;
  width: var(--icons_size);
  height: var(--icons_size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
}
#header .main-header .header-icons li.language .lang-flag img{
  object-fit: cover;
  height: 100%;
}
#header .main-header .header-icons li span{
	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#header .main-header .header-icons > li:not(:first-child){
	padding-left: var(--nav_spacing);
  margin-left: var(--nav_spacing);
  border-left: 1px solid #4FC3F7;
}
#header .main-header .header-icons li .icons-title{
	display: flex;
  align-items: center;
  color: #fff;
  margin-top: 8px;
}
#header .main-header .header-icons li .icons-title i {
	font-size:12px;
  margin-left:5px;
}
#header .main-header .header-icons li i{
	color: #fff;
}
#header .main-header .header-icons li.language .language-dropdown{
	opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: absolute;
  top: 100%;
  left: 50%;
  transition: .2s all ease-in-out;
  transform: translate(-50%, 0px);
  margin-left: calc(var(--nav_spacing)/2);
}
#header .main-header .header-icons .language-dropdown .dropdown-inner{
  background-color: #fff;
  padding: 20px;
  box-shadow: var(--shadow_small);
}
#header .main-header .header-icons .language-dropdown .dropdown-inner ul{
	margin: -3px 0;
}
#header .main-header .header-icons .language-dropdown .dropdown-inner ul li{
	padding: 3px 0;
}
#header .main-header .header-icons .language-dropdown .dropdown-inner ul li img {
	width:30px;
  height:20px;
  object-fit:cover;
}
#header .main-menu .main-nav {
	display: flex;
  flex-wrap: wrap;
/*   margin-left: var(--nav_spacing); */
}

#header .main-menu .main-nav li {
	display: flex;
  align-items: stretch;
}

#header .main-menu .main-nav li.icon-only {
	font-size:1.5em;
}

/* #header .main-menu .main-nav li:not(:last-child) {
	margin-right: var(--nav_spacing);
} */

#header .main-menu .main-nav {
	margin: calc(var(--nav_spacing) / 2 *-1);
}

#header .main-menu .main-nav li {
	padding: calc(var(--nav_spacing) / 2);
}

#header .main-menu .main-nav > li > a:not(.btn) {
	display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.067em;
  padding: 20px 0;
}

#header .main-menu .main-nav > li > a.btn {
	align-self:center;
}

#header .main-menu .main-nav li.active > a {
	font-weight: bold;
}

/* #header .main-menu .main-nav li.active > a */
#header .main-menu .main-nav li:hover > a:not(.btn) {
  color: var(--color_orange);
}

#header .open-menu {
	display: flex;
  padding: 15px;
  margin: -15px;
  font-size: 24px;
  color: #fff;
}

#header .search-wrap-mobile {
  background: #f7f7f7;
}

#header .search-wrap-mobile form {
	position: relative;
}

#header .search-wrap-mobile form,
#header .search-wrap-mobile form input {
	width: 100%;
}

#header .search-wrap-mobile form a {
	position: absolute;
  top: 0;
  right: 0;
  width: var(--input_height);
  height: var(--input_height);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
#header .search-wrap-mobile form a i{
	color: var(--blue);
}

#header .usp-bar {
  background: var(--topbar_bg);
}

#header .usp-bar .inner {
  display: flex;
  align-items: center;
	height: var(--topbar_height);
}

#header .usp-bar .topbar-usp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#header .usp-bar .topbar-usp .usp-item a {
	display: flex;
  align-items: center;
  font-weight: 700;
}

#header .usp-bar .topbar-usp .usp-item a i {
	margin-right: 5px;
  font-size: 1.4em;
  color: var(--accent);
}
#header .main-nav .mega-menu{
	display: none;
}
#header .main-nav li:hover > .mega-menu{
	display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100000;
  background-color: #fff;
  border-radius: var(--border_radius);
  box-shadow: var(--shadow_small);
}
#header .main-nav .mega-menu ul li a{
	color: var(--black);
  font-weight: normal;
}
#header .main-nav .mega-menu .menu-inner{
	padding: var(--item_spacing);
}
#header .main-nav .mega-menu .menus{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: -15px;
}
#header .main-nav .mega-menu .menus .menu{
	padding: 15px;
  width: calc(100%/5);
}
#header .main-nav .mega-menu .menus .menu .cat-title{
	margin-bottom: 10px;
  font-size: 1.067em;
}
#header .main-nav .mega-menu .menus .menu ul{
	margin: -3px 0;
}
#header .main-nav .mega-menu .menus .menu ul li{
	padding: 3px 0;
  opacity:.7;
}
#header .main-nav .mega-menu .cat-title a{
	color: var(--black);
}

.contact-options-small__icon {
  --size: 32px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  border-radius: 100%;
  background: var(--blue_block);
  color: var(--color_blue) !important;
  font-size: calc(var(--size) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: calc(var(--item_spacing) / 4);
}

.contact-options-small__option:hover .contact-options-small__icon {
	background: var(--color_blue) !important;
  color: #fff !important;
}

.contact-options-small__icon i {
  font-size: unset !important;
  color:unset !important;
}

a.contact-options-small__option {
    display: flex;
    align-items: center;
}

a.contact-options-small__option:not(:last-child) {
    margin-bottom: 4px;
}

.contact-options-small__option:not(:last-child) {
    margin-bottom: calc(var(--item_spacing) / 4) !important;
    padding-bottom: calc(var(--item_spacing) / 4) !important;
    border-bottom: 1px solid #eee;
}

.icons-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  z-index: 9;
  padding: calc(var(--item_spacing) / 2);
  box-shadow: var(--shadow_small);
  opacity:0;
  visibility:hidden;
  transition: opacity .2s ease-in-out;
}

li:hover > .icons-dropdown {
	opacity:1;
  visibility:visible;
}

.contact-options-small {
    font-size: 12px;
    font-weight: bold;
}

.contact-options-small__icon i {
    font-size: unset !important;
}

#header .review-widget-desktop {
  min-width:240px;
  max-width: 240px;
  display: flex;
  align-items: center;
  font-size:12px;
  color:#fff;
}

#header .review-widget-desktop .hallmark .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 90%;
  height: 90%;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

#header .review-widget-desktop .hallmark img {
	position:relative;
}

#header .review-widget-desktop .hallmark {
  min-width: 40px;
  position: relative;
  margin-right:8px;
  color:#000;
}

#header .review-widget-desktop .hallmark a {
	position:absolute;
  font-weight:bold;
  font-size:10px;
  font-weight:bold;
  left:0;
  top:0;
  width:100%;
  height:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

@media(min-width: 1200px){
	#header .main-header .header-icons li.language:hover .language-dropdown{
  	opacity: 1;
    visibility: visible;
    z-index: 2;
  }
  #header .main-header .header-icons .language-dropdown .dropdown-inner ul li:hover a{
  	text-decoration: underline;
  }
  #header .main-nav .mega-menu .menus .menu ul li a:hover{
  	text-decoration: underline;
  }
}
@media(max-width: 1799px){
	#header{
  	--nav_spacing: 15px;
    --search_width: 350px;
    --main_header_padding: 15px 0;
  }
}
@media(max-width: 1699px){
	#header{
    --search_width: 300px;
    --logo_height: 50px;
  }
  #header .main-menu .main-nav li a{
  	font-size: 1em;
  }  
}
@media(max-width: 1599px){
	#header{
    --search_width: 250px;
    --nav_spacing: 10px;
  }
}
@media(max-width: 1399px){
	#header .main-header .main-menu,
  #header .main-header .header-col.search-col,
  #header .main-header .header-col.icons-col.desktop{
  	display: none !important;
  }
  #header .main-header .header-col.review-widget,
  #header .main-header .header-col.icons-col.mobile{
    display: block !important;
  }
  #header .review-col.review-widget .score{
  	color: #fff;
    text-decoration: underline;
    font-weight: 700;
    margin-right: 6px;
  }
  #header .review-col.review-widget .stars{
  	margin: -1px;
    display: flex;
    align-items: center;
  }
  #header .review-col.review-widget .stars i{
  	margin: 1px;
  }
  #header .main-header .header-col.review-col{
  	margin-left: 12px;
  }
  #header .main-header .inner{
  	margin: 0 -15px;
  }
  #header .main-header .header-col{
  	padding: 0 15px;
  }
  #header .main-header .header-col.review-col{
  	flex-grow: 10;
  }
}
@media(max-width: 1199px){
  #header{
    --main_header_padding: 20px 0;
  }
	#header .search-wrap-mobile form input{
  	border-radius: unset;
  }
}
@media(max-width: 767px){
  #header{
  	--logo_height: 28px;
    --nav_spacing: 10px;
    --icons_size: 19px;
  }
  #header .main-header .inner{
  	margin: 0;
  }
  #header .main-header .header-col{
  	padding: 0;
  }
	#header .topbar .topbar-usp{
  	font-size: 0.933em;
    text-align: center;
  }
  #header .search-wrap-mobile form input{
  	padding: 0 15px;
    height: 40px;
  }
  #header .search-wrap-mobile form a{
		height: 40px;
  }
  #header .review-col.review-widget .stars{
  	margin: 0px;
  }
  #header .review-col.review-widget .stars i{
  	margin: 0px;
  }
  #header .review-col.review-widget .score{
  	margin-right: 4px;
  }
  #header .main-header .header-icons li .items {
  	width: 16px;
    height: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    border-radius: 100%;
    margin-left: 2px;
  }
}
/* End header */

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  background: #fff;
  z-index: 9999;
  overflow-x: hidden;
  transform: translate(-300px, 0px);
  transition: transform .35s cubic-bezier(.29,.58,.32,1);
}

.mobile-menu.mobile-menu-open {
  transform: translate(0px, 0px);
}
.body-wrap.mobile-menu-open {
  transform: translate(300px, 0px);
}

.mobile-menu-overlay {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.3);
  z-index:9999;
  overflow:hidden;
  opacity:0;
  visibility:hidden;
  transition: all .35s cubic-bezier(.29,.58,.32,1);
}

.mobile-menu-overlay.mobile-menu-open {
  opacity:1;
  visibility:visible;
}

.mobile-menu .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 80px;
  border-bottom: 1px solid #eee;
}

.mobile-menu .logo img {
	width: 100%;
  height: auto;
}

.mobile-menu .login-wrap {
	padding: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-menu .login-wrap ul {
  margin: -5px 0;
}

.mobile-menu .login-wrap ul li {
	padding: 5px 0;
}

.mobile-menu .login-wrap ul li a {
	display: flex;
  align-items: center;
  height: 45px;
  background: #f7f7f7;
  padding: 10px;
  font-weight: bold;
}

.mobile-menu .login-wrap ul li a .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  margin-right: 10px;
  font-size: 14px;
  text-transform: uppercase;
}

.mobile-menu .login-wrap ul li.loggedin {
	display: flex;
  align-items: center;
}

.mobile-menu .login-wrap ul li.loggedin a.account-link {
	flex-grow: 10;
}

.mobile-menu .login-wrap ul li.loggedin a.logout-link {
	padding: 0;
  background: none;
  margin-left: 15px;
}

.mobile-menu .login-wrap ul li.loggedin a.logout-link .icon-wrap {
	margin: 0;
}

.mobile-menu {
	--spacing: 16px;
  --item_height: 50px;
}

.mobile-menu .categories-wrap {
/* 	padding: 15px; */
}

.mobile-menu .categories-wrap > ul {
/* 	margin: -7px 0; */
}

.mobile-menu .categories-wrap > ul li > .cat-inner {
  display: flex;
  align-items: stretch;
  font-weight: bold;
  padding: calc(var(--spacing) / 2) var(--spacing);
  min-height: var(--item_height);
  border-bottom:1px solid #eee;
  position:relative;
}

.mobile-menu .categories-wrap > ul li.active > .cat-inner {
	color:var(--accent);
  font-weight:bold;
}

.mobile-menu .categories-wrap > ul li > .cat-inner > a {
	display: flex;
  align-items: center;
/*   padding: 7px 0; */
}

.mobile-menu .categories-wrap > ul li > .cat-inner > a {
	flex-grow: 10;
}

.mobile-menu .categories-wrap > ul li > .cat-inner > a.more-cats {
	flex-grow: unset;
  width: var(--item_height);
  height: var(--item_height);
  position:absolute;
  display:flex;
  align-items:center;
  justify-content:center;
  right:0;
  top:0;
  color: var(--accent);
}

.mobile-menu .categories-wrap a.more-cats i {
	transition: all .15s ease-in-out;
  font-size:1.2em;
}

.mobile-menu .categories-wrap li.active > .cat-inner > a.more-cats i {
	transform: rotate(90deg);
}

.mobile-menu .categories-wrap ul.subs {
  background: rgba(0,0,0,0.01);
  display: none;
  padding-left:5px;
/*   padding-left: 15px; */
/*   border-left: 2px solid #eee; */
  font-size: .95em;
}

.mobile-menu .categories-wrap ul.subs.active {
	display: block;
}

.mobile-menu .categories-wrap ul.subs li {
	opacity: .8;
  transition: all .15s ease-in-out;
}

.mobile-menu .categories-wrap ul.subs li.active {
	opacity: 1;
}

.mobile-menu .categories-wrap ul.subs li.active > .cat-inner > a {
	font-weight: bold;
}

.mobile-menu .categories-wrap ul.subs li .cat-inner {
	display: flex;
  align-items: center;
}

.mobile-menu .categories-wrap ul.subs li a {
  display: flex;
  align-items: center;
	padding: 5px 0;
  flex-grow: 10;
}

/* .mobile-menu .categories-wrap ul.subs li a.more-cats {
  justify-content: flex-end;
	flex-grow: unset;
  width: 30px;
} */

.mobile-menu .extra-link {
	display: flex;
  width: 100%;
  padding: 15px;
  border-top: 1px solid #eee;
  font-weight: bold;
}

.mobile-menu ul.shop-settings .flag {
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu ul.shop-settings .flag img {
  object-fit: cover;
  width: 30px;
  height: 30px;
}


.mobile-menu ul.shop-settings .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  margin-right: 10px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}
.mobile-menu ul.shop-settings > li > .inner,
.mobile-menu ul.shop-settings > li > .inner .cur-option {
	display: flex;
  align-items: center;
}

.mobile-menu ul.shop-settings .flag,
.mobile-menu ul.shop-settings .icon-wrap {
	margin-right: 10px;
}

.mobile-menu ul.shop-settings > li > .inner > a {
	font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
}

.mobile-menu ul.shop-settings > li > .inner .more-cats i {
	transition: all .15s ease-in-out;
}

.mobile-menu ul.shop-settings > li.active > .inner .more-cats i {
	transform: rotate(90deg);
}

.mobile-menu ul.shop-settings ul.subs {
	display: none;
  padding: 15px;
  padding-top: 0px;
}

.mobile-menu ul.shop-settings ul.subs li a {
	display: flex;
  align-items: center;
  padding: 5px 0;
}
/* End mobile menu */
/* Fixed pages */
.fixed-pages{
	padding-top: 20px;  
}
/* Challenge */
.fixed-pages .gui-challenge{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fixed-pages .gui-challenge .gui-challenge-content{
	margin-top: var(--item_spacing);
}

/* USP tobar */
.usp-topbar {
  width:100%;
  padding:16px 0px;
}

.usp-topbar__slider:not(.owl-loaded) {
	display:block !important;
  height:1.5em;
  overflow:hidden;
  opacity:0;
}

.usp-topbar__slider.no-slider .owl-stage {
	display:flex;
  justify-content:space-between;
}

.usp-topbar__slider.no-slider .owl-stage:after {
	display:none;
}

.usp-topbar__slider.no-slider .owl-item {
	width:auto !important;
}

.usp-topbar__slider:not(.no-slider) {
	text-align:center;
}

.usp-topbar__slider {
	font-weight:700;
}

.usp-topbar__slider i {
  margin-right: 5px;
  font-size: 1.4em;
  color: var(--accent);
}

.usp-topbar__item {
	display:flex;
  align-items:center;
}

.usp-topbar__slider:not(.no-slider) .usp-topbar__item {
	justify-content:center;
}
/* End USP tobar */