/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

:root {
  --generalSpacing: 80px;
  --generalSpacingSmaller: 60px;
  --textLineHeight: 1.5em;
}

@font-face {
	font-display: auto;
}

body {
	color:#333;
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px x(0,0,0,0.004);
  width:100%;
  font-size: 16px;
}
body.fixed {position:fixed;left:0;top:0;}

html.no-scroll {
  margin: 0; 
  height: 100%; 
  overflow: hidden;
}

div[class*=" col-"] {
	margin-left: -.5px;
}

.relative {
	position:relative;
}

.body-wrap {
  position:relative;
  -webkit-transition: -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
  transition: -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
  -o-transition: transform .35s cubic-bezier(.29,.58,.32,1);
  transition: transform .35s cubic-bezier(.29,.58,.32,1);
  transition: transform .35s cubic-bezier(.29,.58,.32,1), -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
}

.body-wrap.cart-open {
  -webkit-transform: translate(-300px, 0px);
      -ms-transform: translate(-300px, 0px);
          transform: translate(-300px, 0px);
}

h1,h2,h3,h4,h5,h6 {
	margin: 0;
}

.line-height {
	line-height: 2em;
}

a,
a:hover,
a:visited,
a:focus {
	color:inherit;
  text-decoration:none;
  outline:none;
}
.ul-reset {
	list-style: none;
  margin: 0;
  padding: 0;
}
.title-general.no-margin {
	margin-bottom: 0;
}
.title-featured{
	text-align: center;
  margin-bottom: 30px;
}
.title-featured .border{
	text-align: center;
  height: 1px;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  opacity: .3;
  background: var(--accentColor);
}
.title-featured .title-inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.title-featured .title{
  margin: 0 10px;
  font-size: 1.5em;
  color: var(--headingsColor);
}
.general-content {
  font-size: 1em;
  line-height: var(--textLineHeight);
  color: var(--textColor);
}

.general-content strong {
	color: var(--accentColor);
}

.general-content *:first-child {
	margin-top: 0;
}

.general-content *:last-child {
	margin-bottom: 0;
}

.general-content h1,
.general-content h2,
.general-content h3,
.general-content h4,
.general-content h5,
.general-content h6 {
	font-weight: bold;
  color: var(--headingsColor);
}

.general-content h1 {
	font-size:2.2em;
  margin-bottom: 20px;
}
.general-content h2 {
	font-size:2em;
  margin-bottom: 20px;
}
.general-content h3 {
	font-size:1.8em;
  margin-bottom: 20px;
}
.general-content h4 {
	font-size:1.6em;
  margin-bottom: 15px;
}
.general-content h5 {
	font-size:1.4em;
  margin-bottom: 10px;
}
.general-content h6 {
	font-size:1.2em;
  margin-bottom: 10px;
}

.general-content a,
.general-content a:visited,
.general-content a:active,
.general-content a:hover {
	text-decoration:none;
  color: var(--accentColor);
}

.general-content ul {
	padding-left: 25px;
}

.general-content ul li {
	list-style: none;
  position: relative;
}

.general-content ul li:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background:var(--accentColor);
  vertical-align: middle;
  margin-right: 15px;
}

.general-content img,
.general-content video {
	height: auto;
}

.general-content img,
.general-content video,
.general-content iframe {
	max-width: 100%;
}

.general-content table {
	width: 100%;
}

.general-content table tr td {
	padding: 5px 15px;
}

.responsive-iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.responsive-iframe iframe,
.responsive-iframe object,
.responsive-iframe embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
	height:60px;
  padding:0px 30px;
  background:var(--accentColor);
  color:#fff;
  font-size:16px;
  border-radius:0;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.btn:active,
.btn:focus,
.btn:visited,
.btn:hover {
	color:#fff;
}

.btn.btn-open {
	background:transparent;
  border:1px solid var(--accentColor);
  color: var(--accentColor);
}

.btn.btn-open:hover {
	background:var(--accentColor);
  color: #fff;;
}

.btn.add-cart {
	background:var(--cartBtnColor);
}

.standard-input {
	height: 45px;
  padding: 0px 15px;
  outline: none;
  border-radius: 0px;
  font-size: 1em;
  background: #f7f7f7;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

textarea.standard-input {
	padding: 10px 15px;
}

.standard-input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	color: #aaa;
}

.standard-input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #aaa;
  opacity: 1;
}

.standard-input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #aaa;
  opacity: 1;
}

.standard-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #aaa;
}

.standard-input::-ms-input-placeholder { /* Microsoft Edge */
	color: #aaa;
}

.icon {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.icon:before {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.inline-flex {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.flex-row {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
}

.flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.flex-wrap {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.space-between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.justify-start {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.justify-center {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.justify-end {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.align-start {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.align-center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.align-end {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.align-stretch {
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
}

.flex-1 {
	-webkit-box-flex:1;
	    -ms-flex:1;
	        flex:1;
}

.block-padding {
	padding-top: var(--generalSpacing);
  padding-bottom: var(--generalSpacing);
}

.block-padding-top {
	padding-top: var(--generalSpacing);
}

.block-padding-bottom {
  padding-bottom: var(--generalSpacing);
}

.block-margin {
	margin-top: var(--generalSpacing);
  margin-bottom: var(--generalSpacing);
}

.block-margin-top {
	margin-top: var(--generalSpacing);
}

.block-margin-bottom {
  margin-bottom: var(--generalSpacing);
}

.block-border {
	border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.block-border-top {
	border-top: 1px solid #eee;
}

.block-border-bottom {
	border-bottom: 1px solid #eee;
}

.block-grey {
	background: #f7f7f7;
}

.image-wrap.grey {
	position: relative;
  background: #fff;
}

.image-wrap.grey:after {
	content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.03);
}

.image-wrap img {
	width: 100%;
}

.sm-tabs-block .page {
	display: none;
}

.sm-tabs-block .page.active {
	display: block;
}

@media (min-width: 1200px) {
  .container {
  	width:100%;
    max-width:1460px;
    padding:0px 30px;
  }
  
  .btn:hover {
    -webkit-filter: brightness(90%);
            filter: brightness(90%);
  }
}

@media(min-width:768px){.container.smaller{width:750px}}@media(min-width:992px){.container.smaller{width:970px}}@media(min-width: 1200px){.container.smaller{max-width: 1020px;width: 100%;}}
@media(max-width: 991px){
	.title-featured .title{
  	font-size: 1.3em;
  }
  :root{
    --generalSpacingSmaller: 40px;
  }
}
@media(max-width: 767px){
	.title-featured .title{
  	font-size: 1.2em;
  }
  body{
    font-size: 14px;
  }
  :root{
    --generalSpacingSmaller: 30px;
  }
}
/* End general styles */

#gui-form-cart table tbody tr td > .price-with-discount {
  margin-bottom: 7px;
  display: block;
}
#gui-form-cart table tbody tr td > .price-with-discount .original-price {
  font-size: 12px;
  text-decoration: line-through;
}

#gui-form-cart table tbody tr td > .discount {
  background: #000;
  color: #fff;
  font-size: 12px;
  width: 100%;
  padding: 5px 10px;
  margin-top: 5px;
  font-weight: bold;
}

.gui.gui-cart > .discount-messsage  .fa {
  border: 1px solid #fff;
  border-radius: 100%;
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}

.gui.gui-cart > .discount-messsage {
  background: #3ca1cd;
  color: #fff;
  margin-bottom: 5px;
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: bold;
}

.gui.gui-cart .gui-page-title {
	margin-top: 15px; 
}

/* Header */
#header {
	background: var(--headerMainBackground);
}

#header:not(.transparent) {
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
}

#header.home {
	position:absolute;
  left:0;
  width:100%;
  z-index:999;
  top:0;
}

#header.transparent {
	background:transparent;
}

#header .main-menu,
#header .header-icons,
#header .open-menu {
	color:var(--headerMainTextColor);
}
#header.transparent .main-menu,
#header.transparent .header-icons,
#header.transparent .open-menu {
	color:var(--headerTransparentTextColor);
}

#header .main-menu .main-nav li:hover a:after {
	background:var(--headerMainTextColor);
}
#header.transparent .main-menu .main-nav li:hover a:after {
	background:var(--headerTransparentTextColor);
}

#header.fixed .header-fixed-wrap {
	position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

#header .topbar {
  background: #f7f7f7;
}

#header .topbar .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	height: 40px;
}

#header .topbar .usp-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

#header .topbar .usp-wrap li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .topbar .usp-wrap li a i {
	margin-right: 5px;
  font-size: 1.2em;
}

#header .main-header {
	padding: 0;
}

#header .main-header .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .main-header .header-col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
/*   justify-content: flex-start; */
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#header .main-header .header-col.search-col {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

#header .main-header .header-col.icons-col {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

#header .main-header .search-wrap {
	width: 100%;
  max-width: 400px;
}

#header .main-header .search-wrap form {
	width: 100%;
  position: relative;
}

#header .main-header .search-wrap form input {
	width: 100%;
  padding-right: 45px;
}

#header .main-header .search-wrap form a {
	position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
}

#header .main-header .logo img {
	height: 80px;
}

#header .main-header .header-icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .main-header .header-icons li:not(:last-child) {
	margin-right: 40px;
}

#header .main-header .header-icons li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#header .main-header .header-icons li a i {
	font-size: 24px;
}

#header .main-header .header-icons li a .i-wrap {
	position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  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-menu {
	border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: #fff;
} */

#header .main-menu {
	white-space:nowrap;
}

#header .main-menu.in-line {
	margin-left:100px;
}

#header .main-menu .main-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-transform:uppercase;
  margin:0px -18px;
}

#header .main-menu.under-logo  {
	margin-top:25px;
}

#header .main-menu.under-logo .main-nav {
	-webkit-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
}

#header .main-menu .main-nav li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

#header .main-menu .main-nav li {
	padding:0px 18px;
}

#header .main-menu .main-nav li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding:2px 0px;
  position:relative;
}

#header .main-menu .main-nav li a:after {
	content:'';
  display:block;
  position:absolute;
  top:100%;
  left:0;
  width:0px;
  height:1px;
  -webkit-transition: width .2s ease-in-out;
  -o-transition: width .2s ease-in-out;
  transition: width .2s ease-in-out;
}

#header .main-menu .main-nav li:hover a:after {
	width:100%;
}

#header .main-menu .main-nav li.active a {
	font-weight: bold;
}

#header .open-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  padding: 0;
  margin: 0;
  font-size: 24px;
}

#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: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
}

#language-currency-popup {
	display:none;
  width: 100%;
  max-width: 750px;
  padding: 40px;
  text-align:center;
}

#language-currency-popup .options-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
}

#language-currency-popup .options-wrap .option {
    padding: 10px;
    width: calc(100% / 4);
}

#language-currency-popup .options-wrap .option .inner {
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.07);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#language-currency-popup .options-wrap .option.active .inner, #language-currency-popup .options-wrap .option:hover .inner {
    border-color: var(--accentColor);
}

#language-currency-popup .options-wrap .option .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
  background:#f7f7f7;
}

#language-currency-popup .options-wrap .option.active .text, #language-currency-popup .options-wrap .option:hover .text {
    color: var(--accentColor);
}

#language-currency-popup .options-wrap .option .text {
	font-size:90%;
}

#language-currency-popup .options-wrap .option .icon img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#language-currency-popup .title-small {
  margin-bottom: 20px;	
  font-size:20px;
  color: var(--accentColor);
}

#language-currency-popup .currency-section {
	margin-top:30px;
}

@media (max-width: 1199px) {
  #header .topbar .usp-wrap {
  	display: block;
  }
  
  #header .topbar .usp-wrap.mobile-hidden {
  	height: 40px;
    opacity: 0;
  }
  
  #header .topbar .usp-wrap li a {
  	-webkit-box-pack: center;
  	    -ms-flex-pack: center;
  	        justify-content: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  #header .main-header .logo img {height:75px;margin-right:10px}
}
/* End header */

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  background: #fff;
  z-index: 9999;
  overflow-x: hidden;
  -webkit-transform: translate(-300px, 0px);
      -ms-transform: translate(-300px, 0px);
          transform: translate(-300px, 0px);
  -webkit-transition: -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
  transition: -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
  -o-transition: transform .35s cubic-bezier(.29,.58,.32,1);
  transition: transform .35s cubic-bezier(.29,.58,.32,1);
  transition: transform .35s cubic-bezier(.29,.58,.32,1), -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
}

.mobile-menu.mobile-menu-open {
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}
.body-wrap.mobile-menu-open {
  -webkit-transform: translate(300px, 0px);
      -ms-transform: translate(300px, 0px);
          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;
  -webkit-transition: all .35s cubic-bezier(.29,.58,.32,1);
  -o-transition: all .35s cubic-bezier(.29,.58,.32,1);
  transition: all .35s cubic-bezier(.29,.58,.32,1);
}

.mobile-menu-overlay.mobile-menu-open {
  opacity:1;
  visibility:visible;
}

.mobile-menu .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 45px;
  background: #f7f7f7;
  padding: 10px;
  font-weight: bold;
}

.mobile-menu .login-wrap ul li a .icon-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu .login-wrap ul li.loggedin a.account-link {
	-webkit-box-flex: 10;
	    -ms-flex-positive: 10;
	        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 .categories-wrap {
	padding: 15px;
}

.mobile-menu .categories-wrap > ul {
	margin: -7px 0;
}

.mobile-menu .categories-wrap > ul > li > .cat-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  font-weight: bold;
}

.mobile-menu .categories-wrap > ul > li > .cat-inner > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 0;
}

.mobile-menu .categories-wrap > ul > li > .cat-inner > a {
	-webkit-box-flex: 10;
	    -ms-flex-positive: 10;
	        flex-grow: 10;
}

.mobile-menu .categories-wrap > ul > li > .cat-inner > a.more-cats {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
	-webkit-box-flex: unset;
	    -ms-flex-positive: unset;
	        flex-grow: unset;
  width: 30px;
}

.mobile-menu .categories-wrap a.more-cats i {
	-webkit-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.mobile-menu .categories-wrap li.active > .cat-inner > a.more-cats i {
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.mobile-menu .categories-wrap ul.subs {
  display: none;
  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;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu .categories-wrap ul.subs li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	padding: 5px 0;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}

.mobile-menu .categories-wrap ul.subs li a.more-cats {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
	-webkit-box-flex: unset;
	    -ms-flex-positive: unset;
	        flex-grow: unset;
  width: 30px;
}

.mobile-menu .extra-link {
	display: -webkit-box;
	display: -ms-flexbox;
	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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu ul.shop-settings .flag img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 30px;
  height: 30px;
}


.mobile-menu ul.shop-settings .icon-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 15px;
  border-top: 1px solid #eee;
}

.mobile-menu ul.shop-settings > li > .inner .more-cats i {
	-webkit-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.mobile-menu ul.shop-settings > li.active > .inner .more-cats i {
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0;
}
/* End mobile menu */

/* Headlines */
.headlines .headline {
	background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height:80vh;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:stretch;
      -ms-flex-align:stretch;
          align-items:stretch;
  text-align:center;
}

.headlines .headline .content {
	max-width:650px;
  margin:0 auto;
	color:var(--headlineText);
}

.headlines .headline .inner {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  width:100%;
  background:rgba(0,0,0,.3);
  padding:150px 0px;
}

.headlines .headline .buttons {
	margin-top:30px;
}

.headlines .headline .buttons .btn:nth-child(1) {
	background:transparent;
  color:var(--headlineText);
  border:1px solid var(--headlineButtonColor);
}

.headlines .headline .buttons .btn:nth-child(2) {
	background:var(--headlineButtonColor);
  color:var(--headlineButtonTextColor);
  border:1px solid var(--headlineButtonColor);
}

.headlines .headline .buttons .btn:hover {
	background:var(--accentColor);
  border-color:var(--accentColor);
  color:#fff;
}

.headlines .headline .buttons .btn {
	margin:10px;
  min-width:225px;
}

.headlines .headline .title {
	font-size:3.4em;
}

.headlines .headline .text {
	font-size:1.7em;
  font-weight:bold;
  margin-bottom:5px;
}

.headlines .headline .arrows {
  position: absolute;
  bottom: 30px;
  text-align: center;
  width: 100%;
  left: 0;
  color: #fff;
  font-size: 13px;
  line-height:1em;
}

.headlines .headline .arrows .arrow:nth-child(2) {
	font-size:150%;
}

@media (max-width:767px) {
  .headlines .headline .title {
  	font-size:2.57em;
  }
  .headlines .headline .buttons .btn  {
  	margin:5px;
  }
  .headlines .headline .inner {
  	padding:100px 0;
  }
  .headlines .headline {
  	min-height:90vh;
  }
}
/* End headlines */
/* Products */
.products {
	margin: -10px;
}

.products .product {
	padding: 10px;
}
/* End products */
/* Home Locations - Start */
.home-locations{
	padding-top: var(--generalSpacingSmaller);
}
.home-locations .inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	margin: -10px;
}
.home-locations .locations-image{
	min-height: 379px;
  background-color: #eee;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.home-locations .inner .locations-col{
	padding: 10px;
}
.home-locations .locations-list {
	max-height: 379px;
  overflow-y: scroll;
}
.home-locations .locations-list .location.border-bottom{
  padding-bottom: 20px;
	margin-bottom: 20px;
  position: relative;
}
.home-locations .locations-list .location.border-bottom:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--accentColor);
  opacity: .3;
}
.home-locations .locations-list .location .title{
	color: var(--accentColor);
  font-size: 1.5em;
  margin-bottom: 15px;
}
.home-locations .locations-list .location.border-bottom{
	color: var(--accentColor);
  margin-bottom: 10px;
}
.home-locations .locations-list .location .location-information{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -10px;
}
.home-locations .locations-list .location .location-contact{
  width: 35%;
}
.home-locations .locations-list .location .location-hours{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.home-locations .locations-list .location .location-contact,
.home-locations .locations-list .location .location-hours{
  padding: 10px;
}
.home-locations .locations-list .location .contact-information{
	margin: -3px 0;
}
.home-locations .locations-list .location .contact-information li{
	padding: 3px 0;
}
.home-locations .locations-list .location .contact-information li a{
	color: #727272;
  font-size: 14px;
  display: block;
  -webkit-transition: .15s all ease-in-out;
  -o-transition: .15s all ease-in-out;
  transition: .15s all ease-in-out;
}
.home-locations .locations-list .location ul.working-info{
	margin: -3px 0;
}
.home-locations .locations-list .location ul.working-info li{
	color: #727272;
  padding: 3px 0px;
  position:relative;
  background:transparent;
  z-index:1;
}
.home-locations .locations-list .location ul.working-info li.line:before {
  content:'';
  position:absolute;
  height:1px;
  width:100%;
  background-color: #c3c7d8;
  left:0;
  top:15px;
  z-index:-1;
}
.home-locations .locations-list .location ul.working-info li.line span.date {
	background-color: #fff;
  padding-right:10px;
}
.home-locations .locations-list .location ul.working-info li.line span.time {
  float: right;
  background-color: #fff;
  padding-left:10px;
}
@media(min-width: 1200px){
	.home-locations .locations-list .location .contact-information li:hover a{
  	color: var(--accentColor);
  }
}
@media(max-width: 991px){
	.home-locations .inner{
  	-ms-flex-wrap: wrap;
  	    flex-wrap: wrap;
  }
  .home-locations .locations-image{
  	min-height: 300px;
  }
  .home-locations .locations-list{
  	max-height: unset;
    overflow-y: unset;
  }
  .home-locations .locations-list .location .title{
  	font-size: 1.3em;
    margin-bottom: 5px;
  }
}
@media(max-width: 767px){
  .home-locations .inner{
  	margin: -5px;
  }
  .home-locations .inner .locations-col{
  	padding: 5px;
  }
  .home-locations .location-inner{
  	padding: 20px;
    background: #fef8f0;
  }
  .home-locations .locations-list .location ul.working-info li.line span.date,
  .home-locations .locations-list .location ul.working-info li.line span.time{
  	background-color: #fef8f0;
  }
  .home-locations .locations-list .location .contact-information li a,
  .home-locations .locations-list .location ul.working-info li{
  	color: var(--accentColor);
  }
	.home-locations .locations-list .location .title{
  	font-size: 1.714em;
  }
  .home-locations .locations-list .location .small-title{
  	margin-bottom: 5px;
    font-size: 1.286em;
  }
  .home-locations .locations-list .location .location-contact, .home-locations .locations-list .location .location-hours{
  	padding: 5px 0;
  }
  .home-locations .locations-list .location .location-information{
    margin: -5px 0;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: column;
  	        flex-direction: column;
  }
  .home-locations .locations-list .location .location-contact{
  	width: 100%;
  }
  .home-locations .locations-list .location.border-bottom{
    padding-bottom: 0;
    margin-bottom: 15px;
    border-bottom: 0;
  }
  .home-locations .locations-image{
  	min-height: 250px;
  }
}
/* Home Locations - End */
/* Home Instagram - Start */
.home-instagram{
	padding-top: var(--generalSpacingSmaller);
}

.home-instagram .instagram_gallery {
	display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -10px;
}

.home-instagram .instagram_gallery a {
	width: 25%;
  padding: 10px;
}

.home-instagram .instagram_gallery a img {
	margin: 0px !important;
  width: 100% !important;
}

@media (max-width: 991px) {
  .home-instagram .instagram_gallery {
    margin: -5px;
  }
  
	.home-instagram .instagram_gallery a {
    width: 50%;
    padding: 5px;
  }
}

@media (max-width: 424px) {
	.home-instagram .instagram_gallery a {
    width: 100%;
  }
}
/* Home Instagram - End */
/* Home Partners - Start */
.home-partners{
	padding-top: var(--generalSpacingSmaller);
  overflow: hidden;
}
.home-partners .hallmarks{
	margin: -12px;
}
.home-partners .hallmark-innner.app-style{
	margin: 0 -1%;
}
.home-partners .hallmarks .hallmark{
  padding: 5% 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home-partners .hallmarks .owl-stage-outer,
.home-partners .hallmarks .owl-stage,
.home-partners .hallmarks .owl-stage .owl-item{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.home-partners .hallmarks .hallmark a {
	display:block;
  width:100%;
}
.home-partners .hallmarks .hallmark .image-wrap{
	-webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: .15s all ease-in-out;
  -o-transition: .15s all ease-in-out;
  transition: .15s all ease-in-out;
  opacity: 0.55;
  position:relative;
}

.home-partners .hallmarks .hallmark .image-wrap:after {
	content:'';
  display:block;
  padding-top:40%;
}
.home-partners .hallmarks .hallmark .image-wrap img{
  position:absolute;
  left:0;
  top:0;
  height:100%;
	width: 100%;
  object-fit:contain;
}
@media(min-width: 1200px){
  .home-partners .hallmarks .hallmark:hover .image-wrap{
  	-webkit-filter: grayscale(0%);
  	        filter: grayscale(0%);
    opacity: 1;
  }
}
/* Home Partners - End */
/* Breadcrumbs */
.breadcrumbs {
  font-weight: 500;
  margin: 50px 0 30px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  width: 100%;
  font-size: 13px;
}

.breadcrumbs a.home,
.breadcrumbs .crumb {
  display: inline;
  color: var(--accentColor);
  opacity: 0.7;
}

.breadcrumbs .crumb .dash {
	margin: 0 5px;
  font-weight: bold;
}
.breadcrumbs .crumb:last-child{
	opacity: 1;
}
@media(max-width: 1199px){
	.breadcrumbs{
    margin: 30px 0;
  }
}
@media(max-width: 991px){
	.breadcrumbs{
  	margin: 20px 0;
  }
}
@media(max-width: 767px){
	.breadcrumbs{
  	margin: 15px 0;
  }
}
/* End breadcrumbs */

/* Productpage */
#productpage .row{
	margin: 0 -10px;
}
#productpage .pdp-col{
	padding: 0 10px;
}
#productpage .product-images .productpage-slider {
  margin-bottom: 20px;
}

#productpage .product-images .productpage-slider-outer.slider-loading {
	width: 100%;
}

#productpage .product-images .productpage-slider-outer.slider-loading:after {
	content: '';
  display: block;
  padding-top: 100%;
}

#productpage .product-images .productpage-slider .image-wrap {
	padding: 10%;
}
#productpage .product-images .thumbs-slider-outer{
	margin: 0 112px;
}
#productpage .product-images .thumbs {
	margin: -10px;
}

#productpage .product-images .thumbs .thumb {
	padding: 10px;
  cursor: pointer;
}

#productpage .product-images .thumbs .thumb .image-wrap {
	padding: 5%;
}

#productpage .product-images .thumbs .thumb .image-wrap img {
  opacity: .6;
}

#productpage .product-images .thumbs .thumb.active .image-wrap img {
	opacity: 1;
}
#productpage .product-info .product-brand {
  display: inline-block;
  margin-bottom: 5px;
  opacity: 0.7;
}
#productpage .product-info .product-title{
	font-size: 1.5em;
  color: var(--accentColor);
}
#productpage .product-info .price{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}
#productpage .product-info .price .price-old{
	margin-right: 10px;
  color: #b4b8cc;
  text-decoration: line-through;
}
#productpage .product-info .price .price-new{
	font-weight: bold;
  font-size: 1.5em;
  color: var(--accentColor);
}
#productpage .product-info .description{
	margin-top: 15px;
}
#productpage .product-info .stock-wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}
#productpage .product-info .stock-wrap .text{
	margin-right: 15px;
  color: var(--accentColor);
}
#productpage .product-info .stock-wrap .stock{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#productpage .product-info .stock-wrap .stock.available i{
	color: #6dd400;
}
#productpage .product-info .stock-wrap .stock.unavailable i{
	color: #fb2d29;
}
#productpage .product-info .stock-wrap .stock .stock-text{
	margin-left: 5px;
  color: #727272;
}
#productpage .product-info .discounts {
	margin-top: 15px; 
}
#productpage .product-info .discounts ul {	
	margin:0;
  padding:0;
  list-style:none;
  font-size: .8em;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .1em;
}
#productpage .product-info .discounts ul li {
	background:#fff;
  padding:10px 15px;
  border-radius:0px;
  border:1px solid rgba(0,0,0,0.07);
  margin-bottom:5px;
}
#productpage .product-info .discounts ul li {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
}
#productpage .product-info .discounts .discount-label {
  height: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 10px;
  text-transform: uppercase;
  text-decoration: none;
  -ms-flex-item-align: start;
  align-self: flex-start;
  white-space: nowrap;
  margin-left: 10px;
  background: #000;
}
#productpage .product-info .product-option{
	margin-top: 20px;
}
#productpage .product-info .variant-blocks {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -6px;
}
#productpage .product-info .variant-blocks .variant-option {
	padding: 6px;
}
#productpage .product-info .variant-blocks .variant-option.disabled {
  opacity: .5;
}
#productpage .product-info .variant-blocks .variant-option input {
	display: none;
}
#productpage .product-info .variant-blocks .variant-option label {
	min-width: 28px;
  min-height: 28px;
  max-height: 28px;
  padding: 0 5px;
/*   border: 1px solid rgba(var(--rgb_accentColor), 0.3); */
  background: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
  font-weight: normal;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  margin: 0;
  cursor: pointer;
  font-size: 12px;
  color: var(--accentColor);
  position: relative;
  margin-bottom: 1px;
}

#productpage .product-info .variant-blocks .variant-option label:after {
	content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accentColor);
  opacity: .3;
}

#productpage .product-info .variant-blocks .variant-option input:checked ~ label {
	background: var(--accentColor);
  border: 1px solid var(--accentColor);
  color: #fff;
}

#productpage .product-info .variant-blocks .variant-option label:hover:after {
/* 	border: 1px solid #aaa; */
  background: #aaa;
  opacity: 1;
}
#productpage .product-info .cart{
	margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#productpage .product-info .cart .add-cart{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}
#productpage .product-info .cart .input-wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#productpage .product-info .cart .change{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border: 1px solid var(--accentColor);
}
#productpage .product-info .cart .change a{
  background-color: #fff8ef;
  color: var(--accentColor);
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: calc(100% / 3);
  max-width: calc(100% / 3);
  text-align: center;
}
#productpage .product-info .cart .change a i{
	font-size: 9px;
}
#productpage .product-info .cart .change input{
  border: 0;
  outline: 0;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: calc(100% / 3);
  max-width: calc(100% / 3);
  text-align: center;
  font-size: 14px;
  color: var(--accentColor);
  border-left: 1px solid var(--accentColor);
  border-right: 1px solid var(--accentColor);
  background:transparent;
  height:auto;
}
#productpage .product-info .quick-cart{
  margin-top: 12px;
}
#productpage .product-info .quick-cart .add-quick-cart{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
	background: transparent;
  border: 1px solid var(--checkoutBtnColor);
  color: var(--checkoutBtnColor);
  -webkit-transition: .15s all ease-in-out;
  -o-transition: .15s all ease-in-out;
  transition: .15s all ease-in-out;
}
#productpage .product-info .share-product{
  margin-top: 20px;
}
#productpage .product-info .share-product .title{
	color: var(--accentColor);
  margin-bottom: 5px;
}
#productpage .product-info .share-product ul.social-links{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	margin: -6px;
}
#productpage .product-info .share-product ul.social-links li{
	padding: 6px;
}
#productpage .product-info .share-product ul.social-links li i{
  color: var(--accentColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  text-align: center;
  font-size: 1.5em;
}
#productpage .product-info .share-product ul.social-links li i.fa-facebook:before{
	margin-top: 8px;
  margin-left: 5px;
  font-size: 19px;
}
#productpage .product-details{
	margin-top: 60px;
}
#productpage .product-details .inner{
	max-width: 630px;
  margin: 0 auto;
}
#productpage .product-details .inner ul.tab-links{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -30px;
}
#productpage .product-details .inner ul.tab-links li{
	padding: 0 30px;
}
#productpage .product-details .inner ul.tab-links li a{
	-webkit-transition: .15s all ease-in-out;
	-o-transition: .15s all ease-in-out;
	transition: .15s all ease-in-out;
  position: relative;
  padding-bottom: 5px;
/*   color: rgba(var(--rgb_accentColor), 0.6); */
  color: var(--accentColor);
  opacity: .6;
}
#productpage .product-details .inner ul.tab-links li.active a{
/* 	color: rgba(var(--rgb_accentColor), 1); */
  opacity: 1;
}
#productpage .product-details .inner ul.tab-links li a:after{
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 0px;
  height: 1px;
  -webkit-transition: width .2s ease-in-out;
  -o-transition: width .2s ease-in-out;
  transition: width .2s ease-in-out;
}
#productpage .product-details .inner ul.tab-links li.active a:after{
  width: 100%;
  background: var(--accentColor);
}
#productpage .product-details .inner .page{
  margin-top: 30px;
}
#productpage .product-details .product-content .general-content h1,
#productpage .product-details .product-content .general-content h2,
#productpage .product-details .product-content .general-content h3,
#productpage .product-details .product-content .general-content h4,
#productpage .product-details .product-content .general-content h5,
#productpage .product-details .product-content .general-content h6{
	color: var(--accentColor);
  margin-bottom: 10px;
  font-size: 1.3em;
}
#productpage .product-details .product-content .general-content a{
	color: var(--accentColor);
}

#productpage .product-reviews{
	max-height: 250px;
  overflow-y: scroll;
  overflow-x: hidden;
}
#productpage .product-reviews .write-review a.btn { 
  height: 40px;
  margin-bottom: 15px;
}
#productpage .product-reviews .product-review-slider{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#productpage .product-reviews .review-row{
  margin: -15px;
}
#productpage .product-reviews .review-row .review{
	padding: 15px;
}
#productpage .product-reviews .review-row .review.border-bottom{
  border-bottom: 1px solid #eee;
}
#productpage .product-reviews .review-row .review .review-top{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#productpage .product-reviews .review-row .review .stars{
  margin: -1px;
}
#productpage .product-reviews .review-row .review .stars i.yellow{
	color: #f1c40f;
  margin: 1px;
}
#productpage .product-reviews .review-row .review .date{
  font-size: 14px;
}
#productpage .product-reviews .review-row .review .general-content{
  margin-top: 10px;
}
#productpage .product-reviews .review-row .review .title{
  color: var(--accentColor);
}
#productpage .related-products{
	margin-top: 60px;
}
#productpage .related-products-slider{
  position: relative;
}
#productpage .related-products-row{
  margin: -10px;
}
#productpage .related-products-row .product{
	padding: 10px;
}
#productpage .related-products .owl-prev,
#productpage .related-products .owl-next{
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 10px;
}
#productpage .related-products .owl-prev{
	left: 0;
}
#productpage .related-products .owl-next{
  right: 0;
}
#productpage .related-products .owl-prev.disabled,
#productpage .related-products .owl-next.disabled{
	opacity: 0.6;
  cursor: not-allowed;
}
#productpage .related-products .owl-prev i,
#productpage .related-products .owl-next i{
	font-size: 1.2em;
}
@media(min-width: 1200px){
	#productpage .product-info .quick-cart .add-quick-cart:hover{
  	color: #fff;
    background: var(--checkoutBtnColor);
  }
}
@media(max-width: 1199px){
	#productpage .product-info .product-title{
  	font-size: 1.4em;
  }
  #productpage .product-info .price .price-new{
  	font-size: 1.4em;
  }
}
@media(max-width: 991px){
  #productpage .row{
  	margin: -10px 0;
  }
  #productpage .pdp-col{
  	padding: 10px 0;
  }
	#productpage .product-images .productpage-slider .image-wrap{
  	padding: 7% 30%;
  }
  #productpage .product-images .thumbs-slider-outer{
  	margin: unset;
  }
  #productpage .product-images .thumbs .thumb .image-wrap{
  	padding: 7%;
  }
  #productpage .product-details,
  #productpage .related-products{
  	margin-top: 30px;
  }
  #productpage .product-details .inner{
  	max-width: unset;
  }
  #productpage .product-details .inner ul.tab-links{
  	-webkit-box-pack: start;
  	    -ms-flex-pack: start;
  	        justify-content: flex-start;
  }
  #productpage .product-details .inner ul.tab-links{
  	margin: 0 -15px;
  }
  #productpage .product-details .inner ul.tab-links li{
  	padding: 0 15px;
  }
  #productpage .product-details .product-content .general-content h1,
  #productpage .product-details .product-content .general-content h2,
  #productpage .product-details .product-content .general-content h3,
  #productpage .product-details .product-content .general-content h4,
  #productpage .product-details .product-content .general-content h5,
  #productpage .product-details .product-content .general-content h6{
    font-size: 1.2em;
  }
}
@media(max-width: 767px){
	#productpage .product-info .product-title{
  	font-size: 1.3em;
  }
  #productpage .product-info .price .price-new{
  	font-size: 1.3em;
  }
  #productpage .product-info .share-product{
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #productpage .product-info .share-product .title{
  	margin-bottom: unset;
    margin-right: 10px;
  }
  #productpage .product-details .inner ul.tab-links{
  	margin: 0 -10px;
  }
  #productpage .product-details .inner ul.tab-links li{
  	padding: 0 10px;
  }
  #productpage .product-details .inner .page{
  	margin-top: 20px;
  }
  #productpage .product-info .cart .change a,
  #productpage .product-info .cart .change input{
  	min-width: 48px;
    max-width: 48px;
  }
  #productpage .product-info .cart .add-cart,
  #productpage .product-info .quick-cart .add-quick-cart{
  	height: 50px;
  }
  #productpage .product-details .product-content .general-content h1,
  #productpage .product-details .product-content .general-content h2,
  #productpage .product-details .product-content .general-content h3,
  #productpage .product-details .product-content .general-content h4,
  #productpage .product-details .product-content .general-content h5,
  #productpage .product-details .product-content .general-content h6{
    font-size: 1.1em;
  }
}
/* End productpage */

/* Product configure */
#productpage .product-configure .product-configure-inner {
	margin: -15px 0;
}

/* #productpage .product-configure .product-configure-inner .option-wrap {
	padding: 15px 0;
} */

#productpage .product-configure .product-configure-custom-option {
	padding:15px 0px;
}

#productpage .product-configure .ui.selection.dropdown {
	height: 50px;
  line-height: 50px;
  border: 2px solid rgba(0,0,0,.07) !important;
  font-size:1em;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-radius: 3px;
}

#productpage .product-configure .ui.selection.dropdown .text {
  font-size: 1em;
  font-weight: bold;
  color: #aaa;
  height:auto;
  line-height:normal;
  order:1;
}

#productpage .product-configure .ui.selection.dropdown>.dropdown.icon {
  font-size: 1.4em;
  width:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  order:2;
}

#productpage .product-configure .ui.selection.dropdown .menu>.item {
  height: 45px;
  font-size: 1em;
}

#productpage .product-configure label.label-title {
  margin-bottom: 10px;
  color: var(--accentColor);
  font-weight: normal;
}

#productpage .product-configure select {
	height: 50px;
  opacity: 0;
}

#productpage .product-configure .product-configure-inner .option-wrap.product-custom-text,
#productpage .product-configure .product-configure-inner .option-wrap.product-custom-textarea,
#productpage .product-configure .product-configure-inner .option-wrap.product-custom-date,
#productpage .product-configure .product-configure-inner .option-wrap.product-custom-datetime {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#productpage .product-configure input[type="text"],
#productpage .product-configure input[type="date"],
#productpage .product-configure input[type="datetime-local"],
#productpage .product-configure textarea {
	border: 2px solid rgba(0,0,0,0.07);
  height: 45px;
  border-radius: 3px;
  padding: 0 15px;
  width:100%;
}

#productpage .product-configure textarea {
	padding: 15px;
  height: auto;
  min-height: 100px;
  min-width: 100%;
  max-width: 100%;
}

.product-configure-custom-option-date,
.product-configure-custom-option-time {
	display:flex;
  margin:5px -5px;
}
.product-configure-custom-option-date > div,
.product-configure-custom-option-time > div{
	flex:1;
  margin:5px;
}
.product-configure-custom-option-date .product-configure-clear,
.product-configure-custom-option-time .product-configure-clear {
	display:none;
}
/* End product configure */

/* Footer */
#footer .main-footer {
	background: #f7f7f7;
  padding: 50px 0;
}

#footer .main-footer .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -15px;
}

#footer .main-footer .footer-col {
	padding: 15px;
}

#footer .main-footer .logo img {
	height: 30px;
}

#footer .main-footer .footer-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 20px;
}

#footer .main-footer .footer-title .plusmin {
	width: 12px;
  height: 12px;
  position: relative;
}

#footer .main-footer .footer-title .plusmin:before,
#footer .main-footer .footer-title .plusmin:after {
	content: '';
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  -o-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

#footer .main-footer .footer-title .plusmin:after {
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	    -ms-transform: translate(-50%, -50%) rotate(90deg);
	        transform: translate(-50%, -50%) rotate(90deg);
}

#footer .main-footer .footer-links-wrap.active .footer-title .plusmin:after {
	-webkit-transform: translate(-50%, -50%) rotate(0deg);
	    -ms-transform: translate(-50%, -50%) rotate(0deg);
	        transform: translate(-50%, -50%) rotate(0deg);
}

#footer .footer-bottom {
  background: #eee;
  padding: 15px 0;
}

#footer .footer-bottom .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#footer .footer-bottom .payments {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: -2px;
}

#footer .footer-bottom .payments li {
	padding: 2px;
}

#footer .footer-bottom .payments li a {
	display: inline-block;
}

#footer .footer-bottom .payments li img {
	height: 30px;
}

@media (max-width: 1199px) {
  #footer .footer-bottom .inner {
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: column;
  	        flex-direction: column;
  }
  
  #footer .footer-bottom .copyright {
  	text-align: center;
    margin-bottom: 10px;
  }
  
  #footer .footer-bottom .payments {
  	-webkit-box-pack: center;
  	    -ms-flex-pack: center;
  	        justify-content: center;
  }
}

@media (max-width: 991px) {
  #footer .main-footer .inner {
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: column;
  	        flex-direction: column;
    margin: 0;
  }
  
  #footer .main-footer .footer-col {
  	padding: 0;
  }
  
  #footer .main-footer .footer-links-wrap {
  	border-bottom: 1px solid #e4e4e4;
    padding: 15px 0;
  }
  
  #footer .main-footer .footer-title {
  	margin: 0;
    font-size: 1.2em;
  }
  
  #footer .main-footer .footer-links {
  	display: none;
  }
}
/* End footer */

/* messages */
.gui-messages {
	display:none !important;
}

.message-wrap {
	position:fixed;
  left:30px;
  bottom:30px;
  z-index:99999999999;
  display:none;
}

.message-wrap.active {
  display:block;
}

.message-wrap .message {
	background:#fff;
  border-radius:0px;
  padding:20px;
  width:350px;
  -webkit-box-shadow: 0px 2px 40px 8px rgba(0,0,0,0.08);
  box-shadow: 0px 2px 40px 8px rgba(0,0,0,0.08);
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  font-size:1.1em;
  opacity:0;
  visibility:hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.message-wrap.active .message {
	-webkit-animation: jump 1s ease 0s 1 normal ;
 	animation: jump 1s ease 0s 1 normal ;
  opacity:1;
  visibility:visible;
  -webkit-transform: translate(0px, 0);
      -ms-transform: translate(0px, 0);
          transform: translate(0px, 0);
}

.message-wrap .message .icon {
	min-width:40px;
  max-width:40px;
  height:40px;
  background:#000;
  color:#fff;
  border-radius:100%;
  text-align:center;
  line-height:40px;
  margin-right:20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.message-wrap .message.error .icon {
  background: #cd3b3b;
}
.message-wrap .message.success .icon {
  background: #2ecc71;
}
.message-wrap .message.info .icon {
  background: #3ca1cd;
}

.message-wrap .text ul {
	margin:0;
  padding:0;
  list-style:none;
}

@-webkit-keyframes jump {
  0%{
	-webkit-transform: translateY(0);
	transform: translateY(0);
  }
  20%{
	-webkit-transform: translateY(0);
	transform: translateY(0);
  }
  40%{
	-webkit-transform: translateY(-30px);
	transform: translateY(-30px);
  }
  50%{
	-webkit-transform: translateY(0);
	transform: translateY(0);
  }
  60%{
	-webkit-transform: translateY(-15px);
	transform: translateY(-15px);
  }
  80%{
	-webkit-transform: translateY(0);
	transform: translateY(0);
  }
  100%{
	-webkit-transform: translateY(0);
	transform: translateY(0);
  }
}

@keyframes jump {
  0%{
	-webkit-transform: translateY(0);
	        transform: translateY(0);
  }
  20%{
	-webkit-transform: translateY(0);
	        transform: translateY(0);
  }
  40%{
	-webkit-transform: translateY(-30px);
	        transform: translateY(-30px);
  }
  50%{
	-webkit-transform: translateY(0);
	        transform: translateY(0);
  }
  60%{
	-webkit-transform: translateY(-15px);
	        transform: translateY(-15px);
  }
  80%{
	-webkit-transform: translateY(0);
	        transform: translateY(0);
  }
  100%{
	-webkit-transform: translateY(0);
	        transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .message-wrap {
    top: auto;
    bottom: 10px;
    z-index: 99999999999;
    left: 0;
    padding: 0px 10px;
  }
  .message-wrap .message {
    padding: 15px;
    width:100%;
  }
  .message-wrap .message .icon {
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    line-height:30px;
    margin-right: 15px;
    font-size: 10px;
  }
}
/* End messages */

/* blog */
#blog {
	margin-top:40px;
}
.blog-articles {
	margin:-15px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}
.blog-articles .blog-article {
	padding:15px;
}
.blog-article .image-wrap .image:after {
	content:'';
  display:block;
  padding-top:60%;
}
#blog .headline-articles {
	padding-bottom:50px;
  margin-bottom:50px; 
  border-bottom:1px solid #f3f3f3;
}
.blog-article .info {
	margin-top:20px;
}
.blog-article .title {
	font-size:2em;
  font-weight:bold;
  margin-bottom:5px;
  display:block;
  line-height:1.1em;
}
.blog-article .summary a {
  font-weight: bold;
  text-decoration: underline;
}
.blog-spinner {
	margin-top:50px;
}
#blog .complete-article .article-title {
	font-size:4em;
  text-align:center;
  margin:0;
  font-weight:bold;
}
#blog .complete-article .image:after {
	display:block;
  padding-top:60%;
  content:'';
}
#blog .complete-article .image-wrap {
	max-width:1100px;
  margin:0 auto;
}
#blog .complete-article .text-container.top-content {
  margin-bottom:40px;
}
#blog .complete-article .date-author,
.blog-article .date-author {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  color:#8a8a8a;
  margin-top:10px;
  font-size:12px;
}
.blog-article .date-author {
	margin-top:0;
  margin-bottom:10px;
}
#blog .complete-article .date-author {
	-webkit-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
}
#blog .complete-article .author,
.blog-article .author {
	margin-right:10px;
  text-transform:lowercase;
}
#blog .complete-article .author span,
.blog-article .author span {
	text-decoration:underline;
  text-transform:none;
}
#blog .complete-article .date,
.blog-article .date {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
#blog .complete-article .date i,
.blog-article .date i {
	margin-right:5px;
}
#blog .complete-article .text-container {
	max-width:700px;
  margin:0 auto;
}
#blog .complete-article .article-text {
	font-size:1.15em;
  margin-top:30px;
}
#blog .complete-article .share ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -5px;
  margin-top: 15px;
}
#blog .complete-article .share ul li {
    padding: 5px;
}
#blog .complete-article .share ul li a {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #aaa;
  color: #fff;
  padding: 0px 20px;
  min-width: 120px;
  font-weight: bold;
}
#blog .complete-article img {
	max-width:100%;
  height:auto;
}
#blog .complete-article .share ul li a i {
    margin-right: 10px;
}
#blog .complete-article .share ul li a.facebook {
	background:#3b5999;
}
#blog .complete-article .share ul li a.twitter {
	background:#55acee;
}
#blog .complete-article .share ul li a.pinterest {
	background:#bd081c;
}
#blog .recent-articles {
  margin:0 auto;
	margin-top:50px;
  padding-top:50px;
  border-top:1px solid #f3f3f3;
}
@media (max-width: 991px) {
  #blog .complete-article .article-title {
  	font-size:3em;
  }
}

@media (max-width: 767px) { 
  #blog {
  	margin-top:30px;
  }
  .blog-article .info {
  	margin-top:10px;
  }
  .blog-article .title {
  	font-size:1.7em;
  }
  #blog .headline-articles {
    border: none;
    padding: 0;
    margin-bottom: 10px;
	}
  #blog .complete-article .article-title {
  	font-size:2.5em;
  }
  #blog .complete-article .share ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -3px;
    margin-top: 15px;
  }
  #blog .complete-article .share ul li {
  	padding:3px;
  }
  #blog .complete-article .text-container.top-content {
  	margin-bottom:25px;
  }
  #blog .complete-article .share ul li a {
  	height:30px;
    font-size:12px;
  }
  #blog .complete-article .article-text {
  	font-size:1.1em;
  }
  #blog .recent-articles {
  	margin-top:30px;
    padding-top:30px;
  }
  #blog .complete-article .image-wrap {
  	margin:0 -15px;
  }
  #blog {
  	margin-top:20px;
  }
}
/* end blog */
/* Fixed Pages - Start */
.fixed-pages{
	padding-top: 50px;
}
#textpage h1,
#tags-page h1,
#brands h1,
#catalog h1{
	margin-bottom: 20px;
  color: var(--accentColor);
  font-size: 2em;
}
/* Tags */
#tags-page .tags {
	margin: -6px;
}
#tags-page .tags a {
	height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;;
  padding: 0 20px;
  background: #f7f7f7;
  margin: 6px;
}
#tags-page .tags a span{
	margin-left: 5px;
}
/* End tags */
/* Brands */
.brands {
	margin: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.brands .brand {
	padding: 10px;
}
.brands .brand .image-wrap{
	padding: 5% 10%;
}
.brands .brand img {
	width:100%;
}
/* End brands */
/* Categories */
.categories {
	margin: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.categories .category {
	padding: 10px;
}
.categories .category img {
	width:100%;
}
/* End categories */
@media(min-width: 1200px){
	.brands:hover .brand .image-wrap{
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
  }
  .brands .brand .image-wrap:hover{
  	-webkit-filter: grayscale(0%);
  	        filter: grayscale(0%);
  }
}
@media(max-width: 991px){
    #textpage h1,
    #tags-page h1,
    #brands h1,
    #catalog h1{
    margin-bottom: 15px;
    font-size: 1.8em;
  }
  .fixed-pages{
    padding-top: 30px;
  }
}
@media(max-width: 767px){
	.brands{
    margin: -5px;
  }
  .brands .brand{
    padding: 5px;
  }
  .categories{
    margin: -5px;
  }
  .categories .category{
    padding: 5px;
  }
}
/* Fixed Pages - End */
/* Cart Side */
.cart-overlay {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  z-index:9999;
  overflow:hidden;
  opacity:0;
  visibility:hidden;
  -webkit-transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
}
.cart-overlay.cart-open {
  opacity:1;
  visibility:visible;
}
.cart-side {
  position: fixed;
  left: 100%;
  top: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 9999999999;
  overflow-x: scroll;
  -ms-transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
  transition: -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
  -o-transition: transform .35s cubic-bezier(.29,.58,.32,1);
  transition: transform .35s cubic-bezier(.29,.58,.32,1);
  transition: transform .35s cubic-bezier(.29,.58,.32,1), -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
}
.cart-side.cart-open {
  -ms-transform: translate(-300px, 0px);
  -webkit-transform: translate(-300px, 0px);
  transform: translate(-300px, 0px);
}
.cart-side .no-cart-products {
  font-size: 14px;
  font-style: italic;
  padding-top: 0;
}
.cart-side table {
  width:100%;
}
.cart-side .cart-title-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 99;
}
.cart-side:hover .cart-title-wrap {
  padding-right:60px;
}
.cart-side .cart-products .product{
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.cart-products .product:last-child{
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.cart-side .cart-body {
  padding-top: 70px;
  width:100%;
  overflow-x:scroll;
}
.cart-side .close-cart {
  position: absolute;
  right: 12px;
  top: 0;
  height: 100%;
  width: 60px;
  text-align: right;
  color: var(--accentColor);
  cursor:pointer;
  font-size: 12px;
}
.cart-side .cart-title {
  padding: 24px 12px;
}
.cart-side .cart-title .title {
  color: var(--accentColor);
}
.cart-side .cart-title .align{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cart-side .cart-title .items {
  font-size:12px;
  color:#aaa;
}
.cart-side .cart-products table {
  width:100%;
}
.cart-side .cart-products table td {
  padding: 4px
}
.cart-side .cart-products table td:nth-child(2) {
	width:100%;
}
.cart-side .cart-products .remove-product i{
  color: var(--accentColor);
  opacity: .3;
	font-size: 10px;
}
.cart-side .align{
  display: table;
  width: 100%;
}
.cart-side .align-bottom{
	display: table-cell;
  vertical-align: bottom;
}
.cart-side .align-100{
  height: 100%;
}
.cart-side .align-middle {
  display: table-cell;
  vertical-align: middle;
}
.cart-side .cart-products .image-wrap {
  width: 60px;
}
.cart-side .cart-products .image-wrap img {
  width: 100%;
}
.cart-side .cart-products .image-wrap .image.img-gray {
	display: block;
  width: auto;
  padding: 10%;
	position: relative;
}
.cart-side .cart-products .image-wrap .image.img-gray:after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.025);
}
.cart-side .cart-products .info a.title {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  color: var(--accentColor);
}
.cart-side .cart-products .info .extra-info {
  font-size: 12px;
}
.cart-side .cart-products .info .extra-info .qty-price{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #727272;
}
.cart-side .cart-products .info .extra-info .qty-price .qty{
	margin-left: 3px;
}
.cart-side .cart-products .info .extra-info ul li strong{
  margin-right: 5px;
}
.cart-side .cart-inner {
	position:absolute;
  width:100%;
  height:100%;
  overflow-x:scroll;
  padding: 0 12px;
}
.cart-side .cart-total {
  width: 100%;
  background: #fff;
  height: 100px;
  margin-top: 8px;
}
.cart-side .cart-total .align{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}
.cart-side .cart-total .total-wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
/*   border-top: 1px solid rgba(var(--rgb_accentColor), 0.3); */
  padding-top: 12px;
  font-size: 14px;
  position: relative;
  margin-top 1px;
}
.cart-side .cart-total .total-wrap:after{
	content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accentColor);
  opacity: .3;
}
.cart-side .cart-total .total-wrap .title,
.cart-side .cart-total .total-wrap .price{
	color: var(--accentColor);
  font-weight: bold;
}
.cart-side .cart-total .btn-wrap{
  margin-top: 1px;
/* 	border-top: 1px solid rgba(var(--rgb_accentColor), 0.3); */
  padding-top: 12px;
  margin-top: 12px;
}
.cart-side .cart-total .btn-wrap:after {
	content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accentColor);
  opacity: .3;
}
.cart-side .cart-total .btn-wrap .btn{
	height: 36px;
  width: 100%;
}
.cart-side .cart-total .btn-wrap .btn .qty{
	margin-left: 3px;
}
.cart-side .cart-total .btn-wrap .btn:last-child{
	margin-top: 12px;
}
.cart-side .cart-total .pay-with{
  margin-top: 15px;
}
.cart-side .cart-total .pay-with .title{
	font-size: 12px;
  color: #727272;
  text-align: center;
  margin-bottom: 10px;
}
.cart-side .cart-total .pay-with .payments-wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cart-side .cart-total .pay-with .payments a{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
  margin: 1px;
}
.cart-side .cart-total .pay-with .payments img{
	height: 30px;
}
@media (max-width: 1199px) {
	.cart-side.close-cart {
    -ms-transform: translate(0%, 0px);
    -webkit-transform: translate(0%, 0px);
    transform: translate(0%, 0px);
  }
}
@media(max-width: 767px){
  .cart-side .cart-products .image-wrap{
  	width: 50px;
  }
  .cart-side .cart-total .btn{
    font-size: 14px;
    padding: 8px 25px;
  }
}
/* End Cart Side */

/* Overschrijven in style.css */
#header .main-header {
  padding:0;
}
#header .open-menu {
  margin: 0;
  padding: 0;
}

body.fixed {
  position: fixed;
  left:0;
  top:0;
}
/* Overschrijven in style.css */

.general-overlay {
	position:fixed;
  left:0;
  top:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,0.4);
  z-index:999;
  opacity:0;
  visibility:hidden;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}
.general-overlay.active {
	opacity:1;
  visibility:visible;
}

/* header */
#header {
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.08);
  box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.08);
}

#header .main-header.sticky {
	position:unset;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.08);
  box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.08);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

#header .main-header.sticky .inner {
	padding:10px 0px;
}

#header .main-header .inner {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
  padding: 20px 0px;
  -webkit-transition: padding .2s ease-in-out;
  -o-transition: padding .2s ease-in-out;
  transition: padding .2s ease-in-out;
}

#header .main-header .logo {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}

#header .main-header .logo.small-logo img {
  height:30px;
}

#header .main-header .logo.medium-logo img {
  height:50px;
}

#header .main-header .logo.large-logo img {
  height:70px;
}
#formSearch {
  margin:0;
}
input.standard-input,
textarea.standard-input{
	height:40px;
  padding:0px 20px;
  outline:none;
  font-size: .85em;
  font-weight: bold;
  letter-spacing: 0.05em;
  background:#fff;
  border:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  -o-appearance:none;
  appearance:none;
}

textarea.standard-input {
	padding:13px 20px;
  max-width:100%;
}

input.standard-input::-webkit-input-placeholder,
textarea.standard-input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #aaa;
  color:rgba(0,0,0,0.4);
}

input.standard-input:-moz-placeholder,
textarea.standard-input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
   opacity:  1;
}

input.standard-input::-moz-placeholder,
textarea.standard-input::-moz-placeholder{ /* Mozilla Firefox 19+ */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
   opacity:  1;
}

input.standard-input:-ms-input-placeholder,
textarea.standard-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
}

input.standard-input::-ms-input-placeholder,
textarea.standard-input::-ms-input-placeholder { /* Microsoft Edge */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
}

.search-bar input[type="text"] {
	height:40px;
  padding:0px 20px;
  padding-right:40px;
  border:none;
  outline:none;
  border:1px solid rgba(0,0,0,.07);
  width:400px;
}

.search-autocomplete {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 9999;
  width: 100%;
  text-align: left;
  display: none;
}

.search-autocomplete .box {
	padding:70px;
  background:#f7f7f7;
/*   margin-top:20px; */
   -webkit-box-shadow: 0px 2px 40px 8px rgba(0,0,0,0.08);
    box-shadow: 0px 2px 40px 8px rgba(0,0,0,0.08);
}

.search-autocomplete .more {
  padding: 0px;
  font-weight: bold;
  text-align: center;
  margin-top:30px;
}

.search-autocomplete .more .btn {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}

.search-autocomplete .more .btn span {
	font-size:80%;
  margin-left:7px;
}

.search-autocomplete.noresults .more {
  display:none;
}

.search-autocomplete .notfound {
  display:none;
  padding: 10px 0px;
  font-size: 13px;
  font-style: italic;
}

.search-autocomplete.noresults .notfound {
  display:block;
}

.search-autocomplete.noresults .search-products {
  display:none;
}

.search-autocomplete .search-products {
  padding:20px 0px;
  margin:0;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:stretch;
      -ms-flex-align:stretch;
          align-items:stretch;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}

.search-autocomplete .search-products .product {
	padding:15px 0px;
}

.search-autocomplete .search-products .product .product-inner {
	padding:0px 15px;
}

.search-autocomplete .search-products .product {
	border-top:1px solid rgba(0,0,0,0.04);
}

.search-autocomplete .search-products .product:nth-child(odd)  .product-inner  {
	border-right:1px solid rgba(0,0,0,0.04);
}

.search-autocomplete .search-products .product:nth-child(1),
.search-autocomplete .search-products .product:nth-child(2) {
	border-top:0;
}

.search-autocomplete .search-products .product .product-inner {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}

.search-autocomplete .search-products .product .image-wrap {
	min-width:75px;
  max-width:75px;
  margin-right:20px;
  position:relative;
  background:#fff;
}

.search-autocomplete .search-products .product .image-wrap:after {
	content:'';
  display:block;
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.03);
}

.search-autocomplete .search-products .product .info .title {
  font-size: 1.1em;
  font-weight: 600;
}

.search-autocomplete .search-products .product .info .brand {
  margin-bottom: 2px;
  font-size: .95em;
  opacity: .85;
}

.search-autocomplete .search-products .product .info .price {
	margin-top:5px;
  opacity: .85;
}
  
.search-autocomplete .search-products .product .image-wrap img {
	width:100%;
}

.search-autocomplete .title-small {
	margin-bottom:30px;
}

.search-autocomplete .inner-wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:start;
      -ms-flex-align:start;
          align-items:flex-start;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
}

.search-autocomplete .side {
	min-width:270px;
  max-width:270px;
  margin-right:30px;
}

.search-autocomplete .side .filter-scroll-wrap {
	position:relative;
}

.search-autocomplete .side .filter-scroll {
	max-height:500px;
	min-height:500px;
  padding-bottom:50px;
  overflow-y:scroll;
  padding-right:15px;
}

.search-autocomplete .side .filter-scroll-wrap:after {
	content:'';
  display:block;
  position:absolute;
  height:50px;
  width:100%;
  bottom:0;
  background: -webkit-linear-gradient(top, rgba(247,247,247,0) 0%,rgba(247,247,247,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(247,247,247,0)),to(rgba(247,247,247,1)));
  background: -o-linear-gradient(top, rgba(247,247,247,0) 0%,rgba(247,247,247,1) 100%);
  background: linear-gradient(to bottom, rgba(247,247,247,0) 0%,rgba(247,247,247,1) 100%);
}

.search-autocomplete .results {
	width:100%;
  max-width:unset;
}

.search-autocomplete .subtitle {
	font-size:1.4em;
  margin-bottom:20px;
}

.search-autocomplete .feat-categories {
	padding:25px;
  background:#fff;
  border-radius:5px;
  margin-bottom:30px;
}

.search-autocomplete .feat-categories .cats ul {
	margin:-5px;
  list-style:none;
  padding:0;
  font-weight:500;
}

.search-autocomplete .feat-categories .cats ul li {
	padding:5px;
  display:inline-block;
  vertical-align:top;
  width:33%;
}
.search-autocomplete .filter-boxes {
  margin-bottom: 20px;
}
.search-autocomplete .filter-boxes .filter-title {
  margin-bottom: 10px;
}
.search-autocomplete .filter-boxes .filter-item {
  padding: 6px 0px;
  padding-left: 8px;
}

.search-bar .icon {
	position:absolute;
  height:40px;
  width:40px;
  right:0;
  top:0;
  line-height:40px;
  text-align:center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.search-bar .icon i {
  color: var(--headerMainBackground);
}
.search-autocomplete .feat-categories .cats li a {
  position: relative;
  font-size: 0.875em;
}
.search-autocomplete .feat-categories .cats li a:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 0px;
  height: 1px;
  -webkit-transition: width .2s ease-in-out;
  -o-transition: width .2s ease-in-out;
  transition: width .2s ease-in-out;
}
.search-autocomplete .feat-categories .cats li a:hover:after {
  width: 100%;
}
.search-autocomplete .feat-categories .cats li a:hover:after {
  background:  var(--accentColor);
}
.search-autocomplete .ui.selection.dropdown {
  width: 100%;
}
.search-autocomplete .ui.selection.dropdown>.dropdown.icon {
  min-width: 40px;
  max-width: 40px;
}
.search-autocomplete .title {
  font-weight: 500;
  font-size: 1.5em;
  color: var(--accentColor);
  margin-bottom: 30px;
}
.search-autocomplete .title-small {
  font-weight: 500;
  font-size: 1.2em;
  color: var(--accentColor);
  margin-bottom: 15px;
}
.search-autocomplete .title span {
  font-weight: bold;
}
.search-autocomplete .subtitle {
  color: var(--accentColor);
  font-weight: 500;
}

#header .main-header {
	position:relative;
  z-index:9999;
}

#header .main-header .icons ul {
	margin:0;
  padding:0;
  list-style:none;
  margin:0px -15px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}

#header .main-header .icons ul li {
	padding:0px 15px;
}

#header .main-header .icons ul li  i {
	font-size:24px;
  color: var(--headerMainTextColor);
}

#header .main-header .icons ul li .icon-wrap {
	display:block;
  position:relative;
}

#header .main-header .icons ul li .items {
  position: absolute;
  right: -10px;
  top: -5px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 13px;
  text-align: center;
  font-weight: bold;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-family: "Open Sans", Helvetica, sans-serif;
}

#header .main-header .icons ul li .items:empty {
	display:none;
}

#header .main-header .hallmark.small img {
  height:30px;
}

#header .main-header .hallmark.medium img {
  height:50px;
}

#header .main-header .hallmark.large img {
  height:70px;
}

#header .main-menu {
	border-top:1px solid rgba(255,255,255,.07);
  position:relative;
  z-index:99;
}

#header .main-menu .main-list {
	margin:0;
  padding:0;
  list-style:none;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;  
  white-space:nowrap;
  flex-wrap:wrap;
}

#header .main-menu ul::-webkit-scrollbar { 
    display: none; 
} 

#header .main-menu .main-list .main-item {
	height:47px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:stretch;
      -ms-flex-align:stretch;
          align-items:stretch;
  position: relative;
}

#header .main-menu ul li > a {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  font-weight:600;
  padding:0px 20px;
  text-decoration:none;
}

#header .main-menu .main-list .main-item:first-child > a {
	padding-left:0;
}

.usp-bar {
	padding-top:20px;
  padding-bottom:20px;
}

.usp-spacer {
	height:20px;
}

.usp-bar ul {
	margin:0;
  padding:0;
  list-style:none;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
  font-size:.85em;
  height: 50px;
  border-top:1px solid rgba(0,0,0,.07);
  border-bottom:1px solid rgba(0,0,0,.07);
  padding:0px 30px;
  font-weight:500;
}

.usp-bar ul li i {
	margin-right:10px;
  font-size:.9em;
}

#header .main-menu ul li .mega-menu {
	position:absolute;
  left:0;
  top:0;
  width:100%;
  top:100%;
  background:#fff;
  padding:30px 0px;
  border-top:1px solid rgba(0,0,0,.07);
  border-bottom:1px solid rgba(0,0,0,.07);
  display:none;
/*   background:#f7f7f7; */
/*   -webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.08);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.08);
  box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.08);
  z-index:-1; */
}

#header .main-menu ul li:hover .mega-menu {
	display:block;
}

#header .main-menu ul li .mega-menu .menus {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:start;
      -ms-flex-align:start;
          align-items:flex-start;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
  margin:-30px;
}

#header .main-menu ul li .mega-menu .menus .menu {
	padding:30px;
  width:20%;
}

#header .main-menu ul li .mega-menu .menus .menu ul {
	display:block;
  font-size:.95em;
  line-height:1.7em;
}

#header .main-menu ul li .mega-menu .menus .menu ul li {
	display:block;
  height:auto;
  color: var(--accentColor);
}

#header .main-menu ul li .mega-menu .menus .menu ul li a {
	padding:0;
  font-weight:normal;
  position: relative;
  display: block;
}
#header .main-menu ul li .mega-menu .menus .menu ul li a:hover {text-decoration:underline;}

#header .main-menu ul li .mega-menu .menus .menu .title {
	font-size:1.15em;
  font-weight:600;
  display:block;
  margin-bottom:7px;
  color: var(--accentColor);
}
#header .main-menu ul li .mega-menu .menus .menu .title:hover {text-decoration:underline;}

#header .main-menu ul ul.simple-menu {
	position:absolute;
  left:0;
  min-width:100%;
  top:100%;
  display:none;
}

#header .main-menu ul li:hover ul.simple-menu {
	display:block;
}

#header .main-menu ul li ul.simple-menu li {
	position:relative;
}
#header .main-menu ul li ul.simple-menu li .subs {
	padding: 0 5px;
  left:100%;
  top:0;
  position:absolute;
}

#header .main-menu ul li ul.simple-menu li ul {
	display:none;
}

#header .main-menu ul li ul.simple-menu li:hover ul {
	display:block;
}

#header .main-menu ul ul.simple-menu li {
	display:block;
  height:40px;
  line-height:40px;
}

#header .main-menu ul ul.simple-menu li a {
	padding:0;
  white-space:nowrap;
  padding:0px 20px;
}

#header .vertical-menu-btn {
  height: 45px;
  font-size: .95em;
  background:none;
  border: 1px solid rgba(255,255,255,0.1);
}

/* #header .vertical-menu-btn.active {
  border-radius:5px 5px 0 0;
} */

#header .vertical-menu-btn i {
  margin-left:7px;
}

#header .vertical-menu-wrap .btn-wrap {
	position:relative;
}

#header .vertical-menu-wrap.active .btn-wrap {
  z-index:9999;
}

#header .vertical-menu  {
	position:absolute;
  left:-5px;
  top:100%;
  color:#fff;
  font-weight:500;
  font-size:.95em;
  opacity:0;
  visibility:hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#header .vertical-menu.active {
	opacity:1;
  visibility:visible;
}

#header .vertical-menu a {
	color:inherit;
  text-decoration:none;
}

#header .vertical-menu ul {
	margin:0;
  padding:0;
  list-style:none;
  width:100%;
  width:300px;
  padding:15px 0px;
  background: var(--headerMainBackground);
  border: 1px solid rgba(255,255,255,0.1);
}

#header .vertical-menu ul li {
  padding:0px 15px;
  position:relative;
  -webkit-transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  opacity:.85;
}

#header .vertical-menu ul li.subs-title {
	font-weight:bold;
}

#header .vertical-menu ul li:hover {
	opacity:1;
}

#header .vertical-menu ul li:last-child > a {
	padding-bottom:0px;
  margin-bottom:0px;
  border-bottom:none;
}

#header .vertical-menu ul li a {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.07);
  padding-bottom:10px;
  margin-bottom:10px;
}

#header .vertical-menu ul li .category-wrap {
	display:flex;
  align-items:center;
}

#header .vertical-menu ul li img {
	width:40px;
  margin-right:10px;
  height:auto;
  border-radius:3px;
}

#header .vertical-menu ul li .arrow-right {
	font-size:.75em;
  -webkit-transform: translate(-2px, 0px);
      -ms-transform: translate(-2px, 0px);
          transform: translate(-2px, 0px);
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  -o-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  margin-left:10px;
}

#header .vertical-menu ul li:hover > a > .arrow-right {
	-webkit-transform: translate(0px, 0px);
	    -ms-transform: translate(0px, 0px);
	        transform: translate(0px, 0px);
}

#header .vertical-menu ul .subs {
  position:absolute;
  visibility:hidden;
  opacity:0;
	left:100%;
  top:-15px;
/*   padding:0px 5px; */
/*   display:none; */
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#header .vertical-menu ul li:hover > .subs {
	opacity:1;
  visibility:visible;
}

#header .vertical-menu ul .subs .subs-title a {
  border: none;
/*   border-bottom: 1px solid #333; */
  color: #b59d7a;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.mobile-bar {
	display:none;
}
/* end header */
/* Header simple submenu */
#header .main-menu ul .simple-menu-wrap {
  position: absolute;
  left: 0;
	min-width: 100%;
  top: 100%;
	padding-top: 5px;
}

#header .main-menu ul ul.simple-menu {
	border-radius: 5px;
}

#header .main-menu ul li ul.simple-menu li ul {
/* 	margin-left: 5px; */
  border-radius: 5px;
}
/* End header simple submenu */
.icon-user,
.icon-cart {
  font-weight: bold;
}
#header .icons ul li i.bx-menu-alt-left,
#header .mob-icons ul li i.bx-menu-alt-left {
  font-size: 28px
}
}
@media (max-width: 1199px) {
  /* header */
  .search-bar input[type="text"] {
  	width:300px;
  }
  #header .vertical-menu-btn {
  	height:40px;
    padding:0px 15px;
  }
  #header .main-header .icons ul {
  	margin:0px -12px;
  }
  #header .main-header .icons ul li {
  	padding:0px 12px;
  }
  #header .main-header .logo.small-logo img {
  	height:25px;
	}
  #header .main-header .logo.medium-logo img {
    height:40px;
  }
  #header .main-header .logo.large-logo img {
    height:60px;
  }
  #header .main-menu ul li > a {
  	padding:0px 15px;
  }
  .usp-bar ul {
  	padding:0px 20px;
  }
  /* end header */
  .search-autocomplete .inner-wrap {
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
  }
}
@media (max-width: 991px) {
  /* header */
  .search-bar input[type="text"] {
  	width:250px;
  }
  #header .mob-icons i {
    color: var(--headerMainTextColor);
    font-size: 24px;
  }
  /* end header */
  /* search */
  .search-autocomplete {
    position: unset;
	}
  .search-autocomplete .feat-categories {
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 0px;
	}
  .search-autocomplete .subtitle {
  	margin-bottom:10px;
  }
  .search-autocomplete .search-products .product:nth-child(odd) .product-inner {
  	border-right:0;
  }
  .search-autocomplete .search-products .product {
    border-top: 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    width: 100%;
	}
  .search-autocomplete .more {
  	margin-top:10px;
  }
  .search-autocomplete .search-products {
  	padding:10px 0px;
  }
  .mobile-search {
  	text-align:left;
  }
  .mobile-search .search-wrap {
  	margin-bottom:40px;
  }
  .mobile-search .search-wrap input[type="text"] {
    height: 40px;
    padding: 0px 20px;
    padding-right: 40px;
    border: none;
    outline: none;
    border: 1px solid rgba(0,0,0,.07);
    width: 100%;
  }
  .mobile-search .search-wrap .icon {
    position: absolute;
    height: 40px;
    width: 40px;
    right: 0;
    top: 0;
    line-height: 40px;
    text-align: center;
  }
  
  .mobile-search .title {
    font-weight: 500;
    font-size: 1.5em;
    color: var(--accentColor);
    margin-bottom: 15px;
  }
  .mobile-search .title-small {
    font-weight: 500;
    font-size: 1.2em;
    color: var(--accentColor);
    margin-bottom: 15px;
  }
  .mobile-search .title-small span {
    font-weight: bold;
  }
  .search-autocomplete .subtitle {
    color: var(--accentColor);
    font-weight: 500;
	}
  /* end search*/
}
@media (max-width: 767px) { 
    /* header */
  #header .main-header .inner {
  	padding:10px 0px;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
  }
  #header.with-medium-logo .main-header .inner {
  	padding:12.5px 0px;
  }
  #header.with-large-logo .main-header .inner {
  	padding:10px 0px;
  }
  #header .main-header .logo {
  	flex:1;
    justify-content:center;
  }
  #header .main-header .mob-icons {
  	flex:1;
    font-size:18px;
    line-height:18px;
  }
  #header .main-header .mob-icons .user-circle {
  	width: 20px;
    height: 20px;
    font-size: 8px;
    line-height: 20px;
  }
  #header .mob-icons i {
    font-size: 18px;
  }
  #header .main-header .mob-icons ul {
  	margin:0;
    padding:0;
    list-style:none;
    display:flex;
    margin:-7px;
    align-items:center;
  }
  #header .main-header .mob-icons ul a {
  	display:block;
    padding:7px;
    position:relative;
  }
  #header .main-header .mob-icons .items {
    position: absolute;
    right: -4px;
    top: -2px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 10px;
    text-align: center;
    font-weight: bold;
    background: #aaa;
    color: #fff;
    border-radius: 100%;
  }
  #header .main-header .mob-icons.second ul {
  	justify-content:flex-end;
  }
  /* end header */
}
.general-overlay.active {
	opacity:1;
  visibility:visible;
}
.close-popup { /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(247,247,247,0) 0%,rgba(247,247,247,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(247,247,247,0)),to(rgba(247,247,247,1)));
  background: -o-linear-gradient(top, rgba(247,247,247,0) 0%,rgba(247,247,247,1) 100%);
  background: linear-gradient(to bottom, rgba(247,247,247,0) 0%,rgba(247,247,247,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  margin-top:50px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.close-popup .close-popup-inner {
  width:100%;
  overflow:hidden;
}
.close-popup.dark { /* FF3.6-15 */
  background: -webkit-linear-gradient(top,rgba(57, 58, 64,0) 0%,rgba(57, 58, 64,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(57, 58, 64,0)),to(rgba(57, 58, 64,1)));
  background: -webkit-linear-gradient(top, rgba(57, 58, 64,0) 0%,rgba(57, 58, 64,1) 100%);
  background: -o-linear-gradient(top, rgba(57, 58, 64,0) 0%,rgba(57, 58, 64,1) 100%);
  background: linear-gradient(to bottom, rgba(57, 58, 64,0) 0%,rgba(57, 58, 64,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}


.close-popup a {
	padding:0 20px;
  height:26px;
  text-transform:uppercase;
  display:inline-block;
  line-height:26px;
  border-radius:13px;
  font-size:11px;
  border: 1px solid #BABABA;
  color:#BABABA !important;
  font-weight:bold;
  letter-spacing:.05em;
  position:relative;
  text-decoration:none !important;
}

.close-popup.dark a {
  border: 1px solid #777777;
  color:#777777 !important;
}

.close-popup a:before,
.close-popup a:after {
  content: '';
  display: block;
  height: 1px;
  background: #BABABA;
  width: 1000px;
  position: absolute;
  right: 100%;
  margin-right: 15px;
  top: 50%;
}

.close-popup.dark a:before,
.close-popup.dark a:after  {
	background: #777777;
}

.close-popup a:after {
	right:auto;
  left:100%;
  margin-right:15px;
  margin-left:15px;
}
/* mobile menu*/
.mobile-menu {
  left:unset;
	display:none;
}
.mobile-popup.mobile-menu {
	background: -webkit-gradient(linear, right top, left top, from(#1d1d1b), to(#1d1d1b));
	background: -webkit-linear-gradient(right, #1d1d1b 0%, #1d1d1b 100%);
	background: -o-linear-gradient(right, #1d1d1b 0%, #1d1d1b 100%);
	background: linear-gradient(-90deg, #1d1d1b 0%, #1d1d1b 100%);
  color:#fff;
  overflow-x:hidden;
}

.mobile-popup.mobile-menu .title-font {
	color:#fff;
  font-size: 1.4em;
  margin-bottom: 25px;
}

.mobile-popup.mobile-menu .subs .subs-back i {
	font-size:.75em;
  margin-right:10px;
}

.mobile-menu .menu ul {
	margin:0;
  padding:0;
  list-style:none;
  text-align:left;
  font-weight:bold;
  margin-bottom:50px;
}

.mobile-menu .menu ul li {
  border-top:1px solid rgba(255,255,255,0.1);
}
.mobile-menu .menu ul li:last-child {
	border-bottom:1px solid rgba(255,255,255,0.1);
}
.mobile-menu .menu ul li a {
	-webkit-box-flex:10;
	    -ms-flex-positive:10;
	        flex-grow:10;
  padding:15px 20px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
  position:relative;
}

.mobile-menu .menu ul li.active > a {
	margin-bottom:15px;
  margin-top:15px;
  background: rgba(255,255,255,0.05);
}

.mobile-menu .menu ul li .more-cats {
	font-size:.85em;
  position:absolute;
  right:0;
  top:0;
  padding:0px 20px;
  height:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}

.mobile-menu .menu ul li.active > a .more-cats {
	color:#fff;
}

.mobile-menu .menu > ul:last-child li:last-child {
	border-bottom:none;
}

.mobile-menu .menu ul li.highlight a {
	margin-bottom:15px;
  margin-top:15px;
  border-radius:5px;
  background:#505050;
  background: rgba(255,255,255,0.05);
  -webkit-box-pack:start;
      -ms-flex-pack:start;
          justify-content:flex-start;
}
.mobile-menu .menu ul li .user-circle {
	margin-right:10px;
}
.mobile-menu .menu ul li .subs {
  position: absolute;
  left: 100%;
  top: 0;
/*   padding: 25px 20px; */
  padding-bottom: 60px;
  background: -webkit-gradient(linear, right top, left top, from(#1d1d1d), to(#1d1d1d));
  background: -webkit-linear-gradient(right, #1d1d1d 0%, #1d1d1d 100%);
  background: -o-linear-gradient(right, #1d1d1d 0%, #1d1d1d 100%);
  background: linear-gradient(-90deg, #1d1d1d 0%, #1d1d1d 100%);
  width: 100%;
  height: 100%;
  z-index:9;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
.mobile-menu .menu ul li .subs.active {
	-webkit-transform:translate(-100%, 0);
	    -ms-transform:translate(-100%, 0);
	        transform:translate(-100%, 0);
}
.mobile-menu .breads {
	font-weight:normal;
  font-size:10px;
  text-align:center;
  margin-bottom:2px;
  opacity:.3;
}

@media (max-width:991px) and (min-width:768px) {
	.mobile-popup.mobile-menu {
  	position:fixed;
	  top: 120px;
    width: 100%;
    height: calc(100% - 120px);
    display: block;
    z-index: 999;
   	right: 100%;
    width: 100%;
    z-index: 99;
    text-align: center;
    display: block;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-popup.open {
    -webkit-transform: translate(100%, 0px);
    -ms-transform: translate(100%, 0px);
    transform: translate(100%, 0px);
	}
  .close-popup {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 99;
    padding: 0px 20px;
	}
  .mobile-menu .popup-inner {
  	padding:30px;
    position:relative;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .mobile-menu .popup-inner .menu-wrap {
    position: relative;
    overflow: hidden;
  }
  .mobile-popup.mobile-menu .title-small {
  	text-align:center;
    margin-bottom:20px;
  }
  .mobile-popup {
    position: fixed;
    top: 120px;
    right:100%;
    width: 100%;
    height: calc(100% - 120px);
    z-index: 99;
    bottom: 50px;
    background: #f7f7f7;
    padding-bottom:0px;
    text-align: center;
    display:block;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    overflow-y:scroll;
   -webkit-overflow-scrolling: touch;
/*     position:relative; */
  }
  .search-autocomplete .results {
    max-width: unset;
  }
  .mobile-search .popup-inner {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .mobile-popup .menu-wrap {
  	position: relative;
   	overflow: hidden;
  }
  .close-popup {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 99;
    padding: 0px 20px;
	}
  .mobile-popup {
    position: fixed;
    top: 95px;
    right:100%;
    width: 100%;
    height: calc(100% - 95px);
    z-index: 99;
    bottom: 50px;
    background: #f7f7f7;
    padding-bottom:0px;
    text-align: center;
    display:block;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    overflow-y:scroll;
   -webkit-overflow-scrolling: touch;
/*     position:relative; */
  }
  .no-mobile-bar .mobile-popup {
  	bottom:0;
  }
  .mobile-popup.open {
    -webkit-transform: translate(100%, 0px);
    -ms-transform: translate(100%, 0px);
    transform: translate(100%, 0px);
  }
  .mobile-popup .popup-inner {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    position:relative;
    padding: 25px 20px;
    padding-bottom:60px;
  }
}
/* end */

/* Delivery */
#datepicker-wrap {
	margin-top: 15px;
}

#datepicker-input-wrap,
#timepicker-input-wrap {
	position: relative;
}

#datepicker-input-wrap:before,
#timepicker-input-wrap:before,
#timepicker-input-wrap:after {
	content: "\e9d6";
  font-family: 'boxicons'!important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 38px;
  height: 38px;
  position: absolute;
  top: 1px;
  left: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
}

#timepicker-input-wrap select,
#delivery-datepicker {
	width: 100%;
  height: 40px;
  line-height: 40px;
  border: 1px solid #e4e4e4;
  background: #fff;
  padding-left: 50px;
  padding-right: 15px;
  cursor: pointer;
}

#timepicker-input-wrap:before {
	content: "\eba2";
}

#timepicker-input-wrap:after {
  content: "\e9f8";
	background: #fff;
  right: 1px;
  left: auto;
}

#datepicker-input-wrap,
#timepicker-input-wrap {
	margin-top: 10px;
}

.disabled {
	pointer-events: none;
  opacity: .4;
}

#datepicker-message {
  font-size: 14px;
  padding: 10px;
  background: rgb(255 111 0 / 10%);
  color: rgb(255 111 0 / 100%);
  font-weight: bold;
  border: 1px solid rgb(255 111 0 / 100%);
  margin-bottom: 10px;
}
/* End delivery */